]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/sd-login.h
systemctl: fix parsing of LoadError property for systemctl show
[thirdparty/systemd.git] / src / sd-login.h
CommitLineData
74b91131
LP
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 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#include <sys/types.h>
26
034a2a52
LP
27/*
28 * A few points:
29 *
30 * Instead of returning an empty string array or empty uid array, we
31 * may return NULL.
32 *
33 * Free the data we return with libc free().
34 *
d60ef526
LP
35 * We return error codes as negative errno, kernel-style. 0 or
36 * positive on success.
034a2a52
LP
37 *
38 * These functions access data in /proc, /sys/fs/cgroup and /run. All
39 * of these are virtual file systems, hence the accesses are
40 * relatively cheap.
41 */
42
43/* Get session from PID. Note that 'shared' processes of a user are
44 * not attached to a session, but only attached to a user. This will
45 * return an error for system processes and 'shared' processes of a
46 * user. */
74b91131
LP
47int sd_pid_get_session(pid_t pid, char **session);
48
034a2a52
LP
49/* Get UID of the owner of the session of the PID (or in case the
50 * process is a 'shared' user process the UID of that user is
51 * returned). This will not return the UID of the process, but rather
52 * the UID of the owner of the cgroup the process is in. This will
53 * return an error for system processes. */
54int sd_pid_get_owner_uid(pid_t pid, uid_t *uid);
55
74b91131
LP
56/* Get state from uid. Possible states: offline, lingering, online, active */
57int sd_uid_get_state(uid_t uid, char**state);
58
034a2a52
LP
59/* Return 1 if uid has session on seat. If require_active is true will
60 * look for active sessions only. */
61int sd_uid_is_on_seat(uid_t uid, int require_active, const char *seat);
62
d60ef526
LP
63/* Return sessions of user. If require_active is true will look for
64 * active sessions only. Returns number of sessions as return
65 * value. If sessions is NULL will just return number of sessions. */
034a2a52 66int sd_uid_get_sessions(uid_t uid, int require_active, char ***sessions);
74b91131 67
034a2a52 68/* Return seats of user is on. If require_active is true will look for
d60ef526
LP
69 * active seats only. Returns number of seats. If seats is NULL will
70 * just return number of seats.*/
034a2a52 71int sd_uid_get_seats(uid_t uid, int require_active, char ***seats);
74b91131
LP
72
73/* Return 1 if the session is a active */
74int sd_session_is_active(const char *session);
75
76/* Determine user id of session */
77int sd_session_get_uid(const char *session, uid_t *uid);
78
79/* Determine seat of session */
80int sd_session_get_seat(const char *session, char **seat);
81
82/* Return active session and user of seat */
83int sd_seat_get_active(const char *seat, char **session, uid_t *uid);
84
d60ef526
LP
85/* Return sessions and users on seat. Returns number of sessions as
86 * return value. If sessions is NULL returs only the number of
87 * sessions. */
034a2a52
LP
88int sd_seat_get_sessions(const char *seat, char ***sessions, uid_t **uid, unsigned *n_uids);
89
add30678
LP
90/* Return whether the seat is multi-session capable */
91int sd_seat_can_multi_session(const char *seat);
92
d60ef526
LP
93/* Get all seats, store in *seats. Returns the number of seats. If
94 * seats is NULL only returns number of seats. */
034a2a52
LP
95int sd_get_seats(char ***seats);
96
d60ef526
LP
97/* Get all sessions, store in *seessions. Returns the number of
98 * sessions. If sessions is NULL only returns number of sessions. */
034a2a52
LP
99int sd_get_sessions(char ***sessions);
100
d60ef526
LP
101/* Get all logged in users, store in *users. Returns the number of
102 * users. If users is NULL only returns the number of users. */
034a2a52
LP
103int sd_get_uids(uid_t **users);
104
105/* Monitor object */
106typedef struct sd_login_monitor sd_login_monitor;
107
108/* Create a new monitor. Category must be NULL, "seat", "session",
109 * "uid" to get monitor events for the specific category (or all). */
110int sd_login_monitor_new(const char *category, sd_login_monitor** ret);
111
112/* Destroys the passed monitor. Returns NULL. */
113sd_login_monitor* sd_login_monitor_unref(sd_login_monitor *m);
114
115/* Flushes the monitor */
116int sd_login_monitor_flush(sd_login_monitor *m);
117
118/* Get FD from monitor */
119int sd_login_monitor_get_fd(sd_login_monitor *m);
120
74b91131 121#endif