]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/logind-session.h
logind: implement D-Bus properties
[thirdparty/systemd.git] / src / logind-session.h
CommitLineData
90821c93
LP
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
25typedef 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
33typedef enum SessionType {
3f49d45a 34 SESSION_TTY,
90821c93
LP
35 SESSION_X11,
36 _SESSION_TYPE_MAX,
37 _SESSION_TYPE_INVALID = -1
38} SessionType;
39
40struct 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;
3f49d45a 56 char *remote_user;
90821c93
LP
57 char *remote_host;
58
59 int vtnr;
60 Seat *seat;
61
62 pid_t leader;
3f49d45a 63 uint32_t audit_id;
90821c93
LP
64
65 int pipe_fd;
66
67 char *cgroup_path;
68 char **controllers, **reset_controllers;
69
3f49d45a 70 bool kill_processes;
14c3baca 71 bool in_gc_queue:1;
90821c93
LP
72
73 LIST_FIELDS(Session, sessions_by_user);
74 LIST_FIELDS(Session, sessions_by_seat);
14c3baca
LP
75
76 LIST_FIELDS(Session, gc_queue);
90821c93
LP
77};
78
79Session *session_new(Manager *m, User *u, const char *id);
80void session_free(Session *s);
14c3baca
LP
81int session_check_gc(Session *s);
82void session_add_to_gc_queue(Session *s);
90821c93
LP
83int session_activate(Session *s);
84bool session_is_active(Session *s);
90821c93
LP
85int session_start(Session *s);
86int session_stop(Session *s);
87int session_save(Session *s);
88int session_load(Session *s);
89
3f49d45a
LP
90char *session_bus_path(Session *s);
91
92extern const DBusObjectPathVTable bus_session_vtable;
93
90821c93
LP
94const char* session_type_to_string(SessionType t);
95SessionType session_type_from_string(const char *s);
96
97#endif