chiark / gitweb /
login: wrap CanTTY and CanGraphical seat attributes in libsystemd-login
[elogind.git] / src / systemd / sd-login.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foosdloginhfoo
4 #define foosdloginhfoo
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 #include <sys/types.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /*
32  * A few points:
33  *
34  * Instead of returning an empty string array or empty uid array, we
35  * may return NULL.
36  *
37  * Free the data the library returns with libc free(). String arrays
38  * are NULL terminated and you need to free the array itself in
39  * addition to the strings contained.
40  *
41  * We return error codes as negative errno, kernel-style. 0 or
42  * positive on success.
43  *
44  * These functions access data in /proc, /sys/fs/cgroup and /run. All
45  * of these are virtual file systems, hence the accesses are
46  * relatively cheap.
47  */
48
49 /* Get session from PID. Note that 'shared' processes of a user are
50  * not attached to a session, but only attached to a user. This will
51  * return an error for system processes and 'shared' processes of a
52  * user. */
53 int sd_pid_get_session(pid_t pid, char **session);
54
55 /* Get UID of the owner of the session of the PID (or in case the
56  * process is a 'shared' user process the UID of that user is
57  * returned). This will not return the UID of the process, but rather
58  * the UID of the owner of the cgroup the process is in. This will
59  * return an error for system processes. */
60 int sd_pid_get_owner_uid(pid_t pid, uid_t *uid);
61
62 /* Get systemd unit (i.e. service) name from PID. This will return an
63  * error for non-service processes. */
64 int sd_pid_get_unit(pid_t, char **unit);
65
66 /* Get state from uid. Possible states: offline, lingering, online, active, closing */
67 int sd_uid_get_state(uid_t uid, char**state);
68
69 /* Return 1 if uid has session on seat. If require_active is true will
70  * look for active sessions only. */
71 int sd_uid_is_on_seat(uid_t uid, int require_active, const char *seat);
72
73 /* Return sessions of user. If require_active is true will look for
74  * active sessions only. Returns number of sessions as return
75  * value. If sessions is NULL will just return number of sessions. */
76 int sd_uid_get_sessions(uid_t uid, int require_active, char ***sessions);
77
78 /* Return seats of user is on. If require_active is true will look for
79  * active seats only.  Returns number of seats. If seats is NULL will
80  * just return number of seats.*/
81 int sd_uid_get_seats(uid_t uid, int require_active, char ***seats);
82
83 /* Return 1 if the session is a active. */
84 int sd_session_is_active(const char *session);
85
86 /* Get state from session. Possible states: online, active, closing
87  * (This function is a more generic version of
88  * sd_session_is_active().) */
89 int sd_session_get_state(const char *sessio, char **state);
90
91 /* Determine user id of session */
92 int sd_session_get_uid(const char *session, uid_t *uid);
93
94 /* Determine seat of session */
95 int sd_session_get_seat(const char *session, char **seat);
96
97 /* Determine the (PAM) service name this session was registered by. */
98 int sd_session_get_service(const char *session, char **service);
99
100 /* Determine the type of this session, i.e. one of "tty", "x11" or "unspecified". */
101 int sd_session_get_type(const char *session, char **type);
102
103 /* Determine the class of this session, i.e. one of "user", "greeter" or "lock-screen". */
104 int sd_session_get_class(const char *session, char **clazz);
105
106 /* Determine the X11 display of this session. */
107 int sd_session_get_display(const char *session, char **display);
108
109 /* Return active session and user of seat */
110 int sd_seat_get_active(const char *seat, char **session, uid_t *uid);
111
112 /* Return sessions and users on seat. Returns number of sessions as
113  * return value. If sessions is NULL returns only the number of
114  * sessions. */
115 int sd_seat_get_sessions(const char *seat, char ***sessions, uid_t **uid, unsigned *n_uids);
116
117 /* Return whether the seat is multi-session capable */
118 int sd_seat_can_multi_session(const char *seat);
119
120 /* Return whether the seat is TTY capable, i.e. suitable for showing console UIs */
121 int sd_seat_can_tty(const char *seat);
122
123 /* Return whether the seat is graphics capable, i.e. suitable for showing graphical UIs */
124 int sd_seat_can_graphical(const char *seat);
125
126 /* Get all seats, store in *seats. Returns the number of seats. If
127  * seats is NULL only returns number of seats. */
128 int sd_get_seats(char ***seats);
129
130 /* Get all sessions, store in *sessions. Returns the number of
131  * sessions. If sessions is NULL only returns number of sessions. */
132 int sd_get_sessions(char ***sessions);
133
134 /* Get all logged in users, store in *users. Returns the number of
135  * users. If users is NULL only returns the number of users. */
136 int sd_get_uids(uid_t **users);
137
138 /* Monitor object */
139 typedef struct sd_login_monitor sd_login_monitor;
140
141 /* Create a new monitor. Category must be NULL, "seat", "session",
142  * "uid" to get monitor events for the specific category (or all). */
143 int sd_login_monitor_new(const char *category, sd_login_monitor** ret);
144
145 /* Destroys the passed monitor. Returns NULL. */
146 sd_login_monitor* sd_login_monitor_unref(sd_login_monitor *m);
147
148 /* Flushes the monitor */
149 int sd_login_monitor_flush(sd_login_monitor *m);
150
151 /* Get FD from monitor */
152 int sd_login_monitor_get_fd(sd_login_monitor *m);
153
154 #ifdef __cplusplus
155 }
156 #endif
157
158 #endif