]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/sd_uid_get_state.xml
test-execute: Add tests for new PassEnvironment= directive
[thirdparty/systemd.git] / man / sd_uid_get_state.xml
CommitLineData
0b3b020a
LP
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
0b3b020a
LP
4
5<!--
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
0b3b020a
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
0b3b020a 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
0b3b020a
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22-->
23
56ba3c78 24<refentry id="sd_uid_get_state" conditional='HAVE_PAM'>
0b3b020a 25
798d3a52
ZJS
26 <refentryinfo>
27 <title>sd_uid_get_state</title>
28 <productname>systemd</productname>
29
30 <authorgroup>
31 <author>
32 <contrib>Developer</contrib>
33 <firstname>Lennart</firstname>
34 <surname>Poettering</surname>
35 <email>lennart@poettering.net</email>
36 </author>
37 </authorgroup>
38 </refentryinfo>
39
40 <refmeta>
41 <refentrytitle>sd_uid_get_state</refentrytitle>
42 <manvolnum>3</manvolnum>
43 </refmeta>
44
45 <refnamediv>
46 <refname>sd_uid_get_state</refname>
47 <refname>sd_uid_is_on_seat</refname>
48 <refname>sd_uid_get_sessions</refname>
49 <refname>sd_uid_get_seats</refname>
50 <refname>sd_uid_get_display</refname>
51 <refpurpose>Determine login state of a specific Unix user ID</refpurpose>
52 </refnamediv>
53
54 <refsynopsisdiv>
55 <funcsynopsis>
56 <funcsynopsisinfo>#include &lt;systemd/sd-login.h&gt;</funcsynopsisinfo>
57
58 <funcprototype>
59 <funcdef>int <function>sd_uid_get_state</function></funcdef>
60 <paramdef>uid_t <parameter>uid</parameter></paramdef>
61 <paramdef>char **<parameter>state</parameter></paramdef>
62 </funcprototype>
63
64 <funcprototype>
65 <funcdef>int <function>sd_uid_is_on_seat</function></funcdef>
66 <paramdef>uid_t <parameter>uid</parameter></paramdef>
67 <paramdef>int <parameter>require_active</parameter></paramdef>
68 <paramdef>const char *<parameter>seat</parameter></paramdef>
69 </funcprototype>
70
71 <funcprototype>
72 <funcdef>int <function>sd_uid_get_sessions</function></funcdef>
73 <paramdef>uid_t <parameter>uid</parameter></paramdef>
74 <paramdef>int <parameter>require_active</parameter></paramdef>
75 <paramdef>char ***<parameter>sessions</parameter></paramdef>
76 </funcprototype>
77
78 <funcprototype>
79 <funcdef>int <function>sd_uid_get_seats</function></funcdef>
80 <paramdef>uid_t <parameter>uid</parameter></paramdef>
81 <paramdef>int <parameter>require_active</parameter></paramdef>
82 <paramdef>char ***<parameter>seats</parameter></paramdef>
83 </funcprototype>
84
85 <funcprototype>
86 <funcdef>int <function>sd_uid_get_display</function></funcdef>
87 <paramdef>uid_t <parameter>uid</parameter></paramdef>
88 <paramdef>char **<parameter>session</parameter></paramdef>
89 </funcprototype>
90 </funcsynopsis>
91 </refsynopsisdiv>
92
93 <refsect1>
94 <title>Description</title>
95
96 <para><function>sd_uid_get_state()</function> may be used to
97 determine the login state of a specific Unix user identifier. The
98 following states are currently known: <literal>offline</literal>
99 (user not logged in at all), <literal>lingering</literal> (user
100 not logged in, but some user services running),
101 <literal>online</literal> (user logged in, but not active, i.e.
102 has no session in the foreground), <literal>active</literal> (user
103 logged in, and has at least one active session, i.e. one session
104 in the foreground), <literal>closing</literal> (user not logged
105 in, and not lingering, but some processes are still around). In
106 the future additional states might be defined, client code should
107 be written to be robust in regards to additional state strings
108 being returned. The returned string needs to be freed with the
109 libc
110 <citerefentry project='man-pages'><refentrytitle>free</refentrytitle><manvolnum>3</manvolnum></citerefentry>
111 call after use.</para>
112
113 <para><function>sd_uid_is_on_seat()</function> may be used to
114 determine whether a specific user is logged in or active on a
115 specific seat. Accepts a Unix user identifier and a seat
116 identifier string as parameters. The
117 <parameter>require_active</parameter> parameter is a boolean
118 value. If non-zero (true), this function will test if the user is
119 active (i.e. has a session that is in the foreground and accepting
120 user input) on the specified seat, otherwise (false) only if the
121 user is logged in (and possibly inactive) on the specified
122 seat.</para>
123
124 <para><function>sd_uid_get_sessions()</function> may be used to
125 determine the current sessions of the specified user. Accepts a
126 Unix user identifier as parameter. The
127 <parameter>require_active</parameter> parameter controls whether
128 the returned list shall consist of only those sessions where the
129 user is currently active (&gt; 0), where the user is currently
130 online but possibly inactive (= 0), or logged in at all but
131 possibly closing the session (&lt; 0). The call returns a
132 <constant>NULL</constant> terminated string array of session
133 identifiers in <parameter>sessions</parameter> which needs to be
134 freed by the caller with the libc
135 <citerefentry project='man-pages'><refentrytitle>free</refentrytitle><manvolnum>3</manvolnum></citerefentry>
136 call after use, including all the strings referenced. If the
137 string array parameter is passed as <constant>NULL</constant>, the
138 array will not be filled in, but the return code still indicates
139 the number of current sessions. Note that instead of an empty
140 array <constant>NULL</constant> may be returned and should be
141 considered equivalent to an empty array.</para>
142
143 <para>Similarly, <function>sd_uid_get_seats()</function> may be
144 used to determine the list of seats on which the user currently
145 has sessions. Similar semantics apply, however note that the user
146 may have multiple sessions on the same seat as well as sessions
147 with no attached seat and hence the number of entries in the
148 returned array may differ from the one returned by
149 <function>sd_uid_get_sessions()</function>.</para>
150
151 <para><function>sd_uid_get_display()</function> returns the name
152 of the "primary" session of a user. If the user has graphical
153 sessions, it will be the oldest graphical session. Otherwise, it
154 will be the oldest open session.</para>
155 </refsect1>
156
157 <refsect1>
158 <title>Return Value</title>
159
160 <para>On success, <function>sd_uid_get_state()</function> returns
161 0 or a positive integer. If the test succeeds,
162 <function>sd_uid_is_on_seat()</function> returns a positive
163 integer; if it fails, 0.
164 <function>sd_uid_get_sessions()</function> and
165 <function>sd_uid_get_seats()</function> return the number of
166 entries in the returned arrays.
167 <function>sd_uid_get_display()</function> returns a non-negative
168 code on success. On failure, these calls return a negative
169 errno-style error code.</para>
170 </refsect1>
171
707b66c6
LP
172 <refsect1>
173 <title>Errors</title>
174
175 <para>Returned errors may indicate the following problems:</para>
176
177 <variablelist>
178
179 <varlistentry>
180 <term><constant>-ENODATA</constant></term>
181
a8eaaee7 182 <listitem><para>The given field is not specified for the described
707b66c6
LP
183 user.</para>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry>
188 <term><constant>-ENXIO</constant></term>
189
190 <listitem><para>The specified seat is unknown.</para>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry>
195 <term><constant>-EINVAL</constant></term>
196
197 <listitem><para>An input parameter was invalid (out of range,
7ca41557 198 or NULL, where that is not accepted). This is also returned if
707b66c6
LP
199 the passed user ID is 0xFFFF or 0xFFFFFFFF, which are
200 undefined on Linux.</para></listitem>
201 </varlistentry>
202
203 <varlistentry>
204 <term><constant>-ENOMEM</constant></term>
205
206 <listitem><para>Memory allocation failed.</para></listitem>
207 </varlistentry>
208 </variablelist>
209 </refsect1>
210
798d3a52
ZJS
211 <refsect1>
212 <title>Notes</title>
213
214 <para>Functions described here are available as a shared library,
215 and can be compiled and linked to using the
216 <constant>libsystemd</constant> <citerefentry project='die-net'><refentrytitle>pkg-config</refentrytitle><manvolnum>1</manvolnum></citerefentry>
217 entry.</para>
218 </refsect1>
219
220 <refsect1>
221 <title>History</title>
222
223 <para><function>sd_uid_get_state()</function>,
224 <function>sd_uid_is_on_seat()</function>,
225 <function>sd_uid_get_sessions()</function>, and
226 <function>sd_uid_get_seats()</function> functions were added in
227 systemd-31.</para>
228
229 <para><function>sd_uid_get_display()</function> was added in
230 systemd-213.</para>
231 </refsect1>
232
233 <refsect1>
234 <title>See Also</title>
235
236 <para>
237 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
238 <citerefentry><refentrytitle>sd-login</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
239 <citerefentry><refentrytitle>sd_pid_get_owner_uid</refentrytitle><manvolnum>3</manvolnum></citerefentry>
240 </para>
241 </refsect1>
0b3b020a
LP
242
243</refentry>