~ubuntu-branches/debian/jessie/systemd/jessie

« back to all changes in this revision

Viewing changes to src/login/logind-session.h

  • Committer: Package Import Robot
  • Author(s): Tollef Fog Heen, Tollef Fog Heen, Michael Biebl
  • Date: 2012-04-03 19:59:17 UTC
  • mfrom: (1.1.10) (6.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20120403195917-l532urrbg4pkreas
Tags: 44-1
[ Tollef Fog Heen ]
* New upstream version.
  - Backport 3492207: journal: PAGE_SIZE is not known on ppc and other
    archs
  - Backport 5a2a2a1: journal: react with immediate rotation to a couple
    of more errors
  - Backport 693ce21: util: never follow symlinks in rm_rf_children()
    Fixes CVE-2012-1174, closes: #664364
* Drop output message from init-functions hook, it's pointless.
* Only rmdir /lib/init/rw if it exists.
* Explicitly order debian-fixup before sysinit.target to prevent a
  possible race condition with the creation of sockets.  Thanks to
  Michael Biebl for debugging this.
* Always restart the initctl socket on upgrades, to mask sysvinit
  removing it.

[ Michael Biebl ]
* Remove workaround for non-interactive sessions from pam config again.
* Create compat /dev/initctl symlink in case we are upgrading from a system
  running a newer version of sysvinit (using /run/initctl) and sysvinit is
  replaced with systemd-sysv during the upgrade. Closes: #663219
* Install new man pages.
* Build-Depend on valac (>= 0.12) instead of valac-0.12. Closes: #663323

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_UNSPECIFIED,
 
35
        SESSION_TTY,
 
36
        SESSION_X11,
 
37
        _SESSION_TYPE_MAX,
 
38
        _SESSION_TYPE_INVALID = -1
 
39
} SessionType;
 
40
 
 
41
typedef enum SessionClass {
 
42
        SESSION_USER,
 
43
        SESSION_GREETER,
 
44
        SESSION_LOCK_SCREEN,
 
45
        _SESSION_CLASS_MAX,
 
46
        _SESSION_CLASS_INVALID = -1
 
47
} SessionClass;
 
48
 
 
49
typedef enum KillWho {
 
50
        KILL_LEADER,
 
51
        KILL_ALL,
 
52
        _KILL_WHO_MAX,
 
53
        _KILL_WHO_INVALID = -1
 
54
} KillWho;
 
55
 
 
56
struct Session {
 
57
        Manager *manager;
 
58
 
 
59
        char *id;
 
60
        SessionType type;
 
61
        SessionClass class;
 
62
 
 
63
        char *state_file;
 
64
 
 
65
        User *user;
 
66
 
 
67
        dual_timestamp timestamp;
 
68
 
 
69
        char *tty;
 
70
        char *display;
 
71
 
 
72
        bool remote;
 
73
        char *remote_user;
 
74
        char *remote_host;
 
75
 
 
76
        char *service;
 
77
 
 
78
        int vtnr;
 
79
        Seat *seat;
 
80
 
 
81
        pid_t leader;
 
82
        uint32_t audit_id;
 
83
 
 
84
        int fifo_fd;
 
85
        char *fifo_path;
 
86
 
 
87
        char *cgroup_path;
 
88
        char **controllers, **reset_controllers;
 
89
 
 
90
        bool idle_hint;
 
91
        dual_timestamp idle_hint_timestamp;
 
92
 
 
93
        bool kill_processes;
 
94
        bool in_gc_queue:1;
 
95
        bool started:1;
 
96
 
 
97
        LIST_FIELDS(Session, sessions_by_user);
 
98
        LIST_FIELDS(Session, sessions_by_seat);
 
99
 
 
100
        LIST_FIELDS(Session, gc_queue);
 
101
};
 
102
 
 
103
Session *session_new(Manager *m, User *u, const char *id);
 
104
void session_free(Session *s);
 
105
int session_check_gc(Session *s, bool drop_not_started);
 
106
void session_add_to_gc_queue(Session *s);
 
107
int session_activate(Session *s);
 
108
bool session_is_active(Session *s);
 
109
int session_get_idle_hint(Session *s, dual_timestamp *t);
 
110
void session_set_idle_hint(Session *s, bool b);
 
111
int session_create_fifo(Session *s);
 
112
void session_remove_fifo(Session *s);
 
113
int session_start(Session *s);
 
114
int session_stop(Session *s);
 
115
int session_save(Session *s);
 
116
int session_load(Session *s);
 
117
int session_kill(Session *s, KillWho who, int signo);
 
118
 
 
119
char *session_bus_path(Session *s);
 
120
 
 
121
extern const DBusObjectPathVTable bus_session_vtable;
 
122
 
 
123
int session_send_signal(Session *s, bool new_session);
 
124
int session_send_changed(Session *s, const char *properties);
 
125
int session_send_lock(Session *s, bool lock);
 
126
 
 
127
const char* session_type_to_string(SessionType t);
 
128
SessionType session_type_from_string(const char *s);
 
129
 
 
130
const char* session_class_to_string(SessionClass t);
 
131
SessionClass session_class_from_string(const char *s);
 
132
 
 
133
const char *kill_who_to_string(KillWho k);
 
134
KillWho kill_who_from_string(const char *s);
 
135
 
 
136
#endif