chiark / gitweb /
dbus: add api for append gid/uid properties
[elogind.git] / src / 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 General Public License as published by
13   the Free Software Foundation; either version 2 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   General Public License for more details.
20
21   You should have received a copy of the GNU 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 SessionType {
34         SESSION_TERMINAL,
35         SESSION_X11,
36         _SESSION_TYPE_MAX,
37         _SESSION_TYPE_INVALID = -1
38 } SessionType;
39
40 struct Session {
41         Manager *manager;
42
43         char *id;
44         SessionType type;
45
46         char *state_file;
47
48         User *user;
49
50         dual_timestamp timestamp;
51
52         char *tty;
53         char *display;
54
55         bool remote;
56         char *remote_host;
57
58         int vtnr;
59         Seat *seat;
60
61         pid_t leader;
62         uint64_t audit_id;
63
64         int pipe_fd;
65
66         char *cgroup_path;
67         char **controllers, **reset_controllers;
68
69         bool kill_processes:1;
70         bool in_gc_queue:1;
71
72         LIST_FIELDS(Session, sessions_by_user);
73         LIST_FIELDS(Session, sessions_by_seat);
74
75         LIST_FIELDS(Session, gc_queue);
76 };
77
78 Session *session_new(Manager *m, User *u, const char *id);
79 void session_free(Session *s);
80 int session_check_gc(Session *s);
81 void session_add_to_gc_queue(Session *s);
82 int session_activate(Session *s);
83 bool session_is_active(Session *s);
84 int session_start(Session *s);
85 int session_stop(Session *s);
86 int session_save(Session *s);
87 int session_load(Session *s);
88
89 const char* session_type_to_string(SessionType t);
90 SessionType session_type_from_string(const char *s);
91
92 #endif