chiark / gitweb /
273aa63ef56ee1a0b47666d54c71264089aa631f
[elogind.git] / src / login / logind-session.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   Copyright 2011 Lennart Poettering
6 ***/
7
8 typedef struct Session Session;
9 typedef enum KillWho KillWho;
10
11 #include "list.h"
12 #include "login-util.h"
13 #include "logind-user.h"
14
15 typedef enum SessionState {
16         SESSION_OPENING,  /* Session scope is being created */
17         SESSION_ONLINE,   /* Logged in */
18         SESSION_ACTIVE,   /* Logged in and in the fg */
19         SESSION_CLOSING,  /* Logged out, but scope is still there */
20         _SESSION_STATE_MAX,
21         _SESSION_STATE_INVALID = -1
22 } SessionState;
23
24 typedef enum SessionClass {
25         SESSION_USER,
26         SESSION_GREETER,
27         SESSION_LOCK_SCREEN,
28         SESSION_BACKGROUND,
29         _SESSION_CLASS_MAX,
30         _SESSION_CLASS_INVALID = -1
31 } SessionClass;
32
33 typedef enum SessionType {
34         SESSION_UNSPECIFIED,
35         SESSION_TTY,
36         SESSION_X11,
37         SESSION_WAYLAND,
38         SESSION_MIR,
39         SESSION_WEB,
40         _SESSION_TYPE_MAX,
41         _SESSION_TYPE_INVALID = -1
42 } SessionType;
43
44 #define SESSION_TYPE_IS_GRAPHICAL(type) IN_SET(type, SESSION_X11, SESSION_WAYLAND, SESSION_MIR)
45
46 enum KillWho {
47         KILL_LEADER,
48         KILL_ALL,
49         _KILL_WHO_MAX,
50         _KILL_WHO_INVALID = -1
51 };
52
53 struct Session {
54         Manager *manager;
55
56         const char *id;
57         unsigned int position;
58         SessionType type;
59         SessionClass class;
60
61         char *state_file;
62
63         User *user;
64
65         dual_timestamp timestamp;
66
67         char *tty;
68         char *display;
69
70         bool remote;
71         char *remote_user;
72         char *remote_host;
73         char *service;
74         char *desktop;
75
76         char *scope;
77 #if 0 /// UNNEEDED by elogind
78         char *scope_job;
79 #endif // 0
80
81         Seat *seat;
82         unsigned int vtnr;
83         int vtfd;
84
85         pid_t leader;
86         uint32_t audit_id;
87
88         int fifo_fd;
89         char *fifo_path;
90
91         sd_event_source *fifo_event_source;
92
93         bool idle_hint;
94         dual_timestamp idle_hint_timestamp;
95
96         bool locked_hint;
97
98         bool in_gc_queue:1;
99         bool started:1;
100         bool stopping:1;
101
102         bool was_active:1;
103
104         sd_bus_message *create_message;
105
106         sd_event_source *timer_event_source;
107
108         char *controller;
109         Hashmap *devices;
110         sd_bus_track *track;
111
112         LIST_FIELDS(Session, sessions_by_user);
113         LIST_FIELDS(Session, sessions_by_seat);
114
115         LIST_FIELDS(Session, gc_queue);
116 };
117
118 Session *session_new(Manager *m, const char *id);
119 void session_free(Session *s);
120 void session_set_user(Session *s, User *u);
121 bool session_may_gc(Session *s, bool drop_not_started);
122 void session_add_to_gc_queue(Session *s);
123 int session_activate(Session *s);
124 bool session_is_active(Session *s);
125 int session_get_idle_hint(Session *s, dual_timestamp *t);
126 void session_set_idle_hint(Session *s, bool b);
127 int session_get_locked_hint(Session *s);
128 void session_set_locked_hint(Session *s, bool b);
129 int session_create_fifo(Session *s);
130 int session_start(Session *s, sd_bus_message *properties);
131 int session_stop(Session *s, bool force);
132 int session_finalize(Session *s);
133 int session_release(Session *s);
134 int session_save(Session *s);
135 int session_load(Session *s);
136 int session_kill(Session *s, KillWho who, int signo);
137
138 SessionState session_get_state(Session *u);
139
140 extern const sd_bus_vtable session_vtable[];
141 int session_node_enumerator(sd_bus *bus, const char *path,void *userdata, char ***nodes, sd_bus_error *error);
142 int session_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
143 char *session_bus_path(Session *s);
144
145 int session_send_signal(Session *s, bool new_session);
146 int session_send_changed(Session *s, const char *properties, ...) _sentinel_;
147 int session_send_lock(Session *s, bool lock);
148 int session_send_lock_all(Manager *m, bool lock);
149
150 int session_send_create_reply(Session *s, sd_bus_error *error);
151
152 const char* session_state_to_string(SessionState t) _const_;
153 SessionState session_state_from_string(const char *s) _pure_;
154
155 const char* session_type_to_string(SessionType t) _const_;
156 SessionType session_type_from_string(const char *s) _pure_;
157
158 const char* session_class_to_string(SessionClass t) _const_;
159 SessionClass session_class_from_string(const char *s) _pure_;
160
161 const char *kill_who_to_string(KillWho k) _const_;
162 KillWho kill_who_from_string(const char *s) _pure_;
163
164 int session_prepare_vt(Session *s);
165 void session_restore_vt(Session *s);
166 void session_leave_vt(Session *s);
167
168 bool session_is_controller(Session *s, const char *sender);
169 int session_set_controller(Session *s, const char *sender, bool force, bool prepare);
170 void session_drop_controller(Session *s);
171
172 int bus_session_method_activate(sd_bus_message *message, void *userdata, sd_bus_error *error);
173 int bus_session_method_lock(sd_bus_message *message, void *userdata, sd_bus_error *error);
174 int bus_session_method_terminate(sd_bus_message *message, void *userdata, sd_bus_error *error);
175 int bus_session_method_kill(sd_bus_message *message, void *userdata, sd_bus_error *error);