1 .\" $NetBSD: endutxent.3,v 1.5 2008/04/30 13:10:50 martin Exp $
3 .\" Copyright (c) 2002 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Thomas Klausner.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
40 .Nd user accounting database functions
50 .Fn getutxid "const struct utmpx *id"
52 .Fn getutxline "const struct utmpx *line"
54 .Fn pututxline "const struct utmpx *utx"
58 These functions provide access to the
60 user accounting database.
63 reads the next entry from the database;
64 if the database was not yet open, it also opens it.
66 resets the database, so that the next
68 call will get the first entry.
73 returns the next entry of the type specified in its argument's
83 entry which has the same name as specified in the
92 entry line to the accounting database, replacing a previous entry for
93 the same user if it exists.
94 Only the superuser may write to the accounting database.
95 .Ss The utmpx structure
98 structure has the following definition:
102 char ut_user[_UTX_USERSIZE]; /* login name */
103 char ut_id[_UTX_IDSIZE]; /* id */
104 char ut_line[_UTX_LINESIZE]; /* tty name */
105 pid_t ut_pid; /* process id creating the entry */
106 short ut_type; /* type of this entry */
107 struct timeval ut_tv; /* time entry was created */
108 char ut_host[_UTX_HOSTSIZE]; /* host name */
109 __uint32_t ut_pad[16]; /* reserved for future use */
116 .Bl -tag -width ".Dv LOGIN_PROCESSXX" -compact -offset indent
118 Time of a system boot.
120 A session leader exited.
122 No valid user accounting information.
127 The session leader of a logged-in user.
129 Time after system clock change.
131 Time before system clock change.
134 Provided for compatibility, not used.
138 Time of system shutdown (extension to the standards).
143 the other fields with meaningful values are as follows:
144 .Bl -tag -width ".Dv LOGIN_PROCESSXX" -compact -offset indent
160 (implementation-defined name of the login process),
172 (login name of the user),
176 (hostname of remote user)
181 .Ss Other extensions to the standards
184 value may also be OR-ed with the following masks:
185 .Bl -tag -width XXXX -compact -offset indent
186 .It Dv UTMPX_AUTOFILL_MASK
187 Depending on the main part of
189 value, other fields are automatically filled in (as specified in the
190 meaningful fields table above).
193 field will be set using the convention of the last four characters of the
195 field (itself filled in automatically from the tty name of the device connected
196 to the standard input, output or error, whichever is available).
197 Note that it is more efficient to fill in as many values as are already
198 available beforehand, rather than have then automatically filled in.
199 .It Dv UTMPX_DEAD_IF_CORRESPONDING_MASK
203 .Dv DEAD_PROCESS, a call to
205 will succeed only if a corresponding entry already exists with a
211 Note that the above mask values do not show up in any file format, or in
212 any subsequent reads of the data.
218 equivalent capability,
220 automatically writes to the appropriate files.
221 Additional APIs to read these files is available in
225 .Ss Backward compatibility
228 will automatically write equivalent entries into the
234 Programs that read these old files should work as expected.
235 However, directly writing to these files does not make corresponding
242 equivalent files, so such write-access is deprecated.
245 returns the next entry, or
247 on failure (end of database or problems reading from the database).
251 return the matching structure on success, or
253 if no match was found.
256 returns the structure that was successfully written, or
258 is returned and the global variable
260 is set to indicate the error.
262 No errors are defined for the
273 function may fail if:
276 The process does not have appropriate privileges.
279 .Dv UTMPX_DEAD_IF_CORRESPONDING_MASK
280 flags was specified along with
282 but no corresponding entry with
287 Other errors may be returned if
288 .Dv UTMPX_AUTOFILL_MASK
289 was specified, and a field could not be auto-filled.
291 .Xr endutxent_wtmp 3 ,
304 (XSI extension), and previously to
316 (XSI extension), and previously to
326 .\" is for compatibility with
334 .\" files first appeared in