chiark / gitweb /
b255dc7cde95eaf583a6106f87b51460e2a57de7
[elogind.git] / src / login / logind-session.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foologindsessionhfoo
4 #define foologindsessionhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2011 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 typedef struct Session Session;
26
27 #include "list.h"
28 #include "util.h"
29 #include "logind.h"
30 #include "logind-seat.h"
31 #include "logind-user.h"
32
33 typedef enum SessionState {
34         SESSION_ONLINE,   /* Logged in */
35         SESSION_ACTIVE,   /* Logged in and in the fg */
36         SESSION_CLOSING,  /* Logged out, but processes still remain */
37         _SESSION_STATE_MAX,
38         _SESSION_STATE_INVALID = -1
39 } SessionState;
40
41 typedef enum SessionType {
42         SESSION_UNSPECIFIED,
43         SESSION_TTY,
44         SESSION_X11,
45         _SESSION_TYPE_MAX,
46         _SESSION_TYPE_INVALID = -1
47 } SessionType;
48
49 typedef enum SessionClass {
50         SESSION_USER,
51         SESSION_GREETER,
52         SESSION_LOCK_SCREEN,
53         _SESSION_CLASS_MAX,
54         _SESSION_CLASS_INVALID = -1
55 } SessionClass;
56
57 typedef enum KillWho {
58         KILL_LEADER,
59         KILL_ALL,
60         _KILL_WHO_MAX,
61         _KILL_WHO_INVALID = -1
62 } KillWho;
63
64 struct Session {
65         Manager *manager;
66
67         char *id;
68         SessionType type;
69         SessionClass class;
70
71         char *state_file;
72
73         User *user;
74
75         dual_timestamp timestamp;
76
77         char *tty;
78         char *display;
79
80         bool remote;
81         char *remote_user;
82         char *remote_host;
83
84         char *service;
85
86         int vtnr;
87         Seat *seat;
88
89         pid_t leader;
90         uint32_t audit_id;
91
92         int fifo_fd;
93         char *fifo_path;
94
95         char *cgroup_path;
96         char **controllers, **reset_controllers;
97
98         bool idle_hint;
99         dual_timestamp idle_hint_timestamp;
100
101         bool kill_processes;
102         bool in_gc_queue:1;
103         bool started:1;
104
105         LIST_FIELDS(Session, sessions_by_user);
106         LIST_FIELDS(Session, sessions_by_seat);
107
108         LIST_FIELDS(Session, gc_queue);
109 };
110
111 Session *session_new(Manager *m, User *u, const char *id);
112 void session_free(Session *s);
113 int session_check_gc(Session *s, bool drop_not_started);
114 void session_add_to_gc_queue(Session *s);
115 int session_activate(Session *s);
116 bool session_is_active(Session *s);
117 int session_get_idle_hint(Session *s, dual_timestamp *t);
118 void session_set_idle_hint(Session *s, bool b);
119 int session_create_fifo(Session *s);
120 void session_remove_fifo(Session *s);
121 int session_start(Session *s);
122 int session_stop(Session *s);
123 int session_save(Session *s);
124 int session_load(Session *s);
125 int session_kill(Session *s, KillWho who, int signo);
126
127 char *session_bus_path(Session *s);
128
129 SessionState session_get_state(Session *u);
130
131 extern const DBusObjectPathVTable bus_session_vtable;
132
133 int session_send_signal(Session *s, bool new_session);
134 int session_send_changed(Session *s, const char *properties);
135 int session_send_lock(Session *s, bool lock);
136
137 const char* session_state_to_string(SessionState t);
138 SessionState session_state_from_string(const char *s);
139
140 const char* session_type_to_string(SessionType t);
141 SessionType session_type_from_string(const char *s);
142
143 const char* session_class_to_string(SessionClass t);
144 SessionClass session_class_from_string(const char *s);
145
146 const char *kill_who_to_string(KillWho k);
147 KillWho kill_who_from_string(const char *s);
148
149 #endif