minix/lib/libc/gen/getlastlogx.3
Ben Gras 2fe8fb192f Full switch to clang/ELF. Drop ack. Simplify.
There is important information about booting non-ack images in
docs/UPDATING. ack/aout-format images can't be built any more, and
booting clang/ELF-format ones is a little different. Updating to the
new boot monitor is recommended.

Changes in this commit:

	. drop boot monitor -> allowing dropping ack support
	. facility to copy ELF boot files to /boot so that old boot monitor
	  can still boot fairly easily, see UPDATING
	. no more ack-format libraries -> single-case libraries
	. some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases
	. drop several ack toolchain commands, but not all support
	  commands (e.g. aal is gone but acksize is not yet).
	. a few libc files moved to netbsd libc dir
	. new /bin/date as minix date used code in libc/
	. test compile fix
	. harmonize includes
	. /usr/lib is no longer special: without ack, /usr/lib plays no
	  kind of special bootstrapping role any more and bootstrapping
	  is done exclusively through packages, so releases depend even
	  less on the state of the machine making them now.
	. rename nbsd_lib* to lib*
	. reduce mtree
2012-02-14 14:52:02 +01:00

174 lines
4.4 KiB
Groff

.\" $NetBSD: getlastlogx.3,v 1.2 2008/04/30 13:10:50 martin Exp $
.\"
.\" Copyright (c) 2003 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Thomas Klausner.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd August 26, 2003
.Dt GETLASTLOGX 3
.Os
.Sh NAME
.Nm getlastlogx ,
.Nm getutmp ,
.Nm getutmpx ,
.Nm updlastlogx ,
.Nm updwtmpx ,
.Nm utmpxname
.Nd user accounting database functions
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In utmpx.h
.Ft struct lastlogx *
.Fn getlastlogx "const char *fname" "uid_t uid" "struct lastlogx *ll"
.Ft void
.Fn getutmp "const struct utmpx *ux" "struct utmp *u"
.Ft void
.Fn getutmpx "const struct utmp *u" "struct utmpx *ux"
.Ft int
.Fn updlastlogx "const char *fname" "uid_t uid" "struct lastlogx *ll"
.Ft int
.Fn updwtmpx "const char *file" "const struct utmpx *utx"
.Ft int
.Fn utmpxname "const char *fname"
.Sh DESCRIPTION
The
.Fn getlastlogx
function looks up the entry for the user with user id
.Fa uid
in the
.Xr lastlogx 5
file given by
.Fa fname
and returns it in
.Fa \&ll .
If the provided
.Fa \&ll
is
.Dv NULL ,
the necessary space will be allocated by
.Fn getlastlogx
and should be
.Fn free Ns d
by the caller.
.Pp
The
.Fn getutmp
function fills out the entries in the struct utmp
.Fa u
with the data provided in the struct utmpx
.Fa ux .
.Fn getutmpx
does the opposite, filling out the entries in the struct utmpx
.Fa ux
with the data provided in the struct utmp
.Fa u ,
and initializing all the unknown fields to 0.
The sole exception is the
.Fa ut_type
field, which will be initialized to
.Dv USER_PROCESS .
.Pp
The
.Fn updlastlogx
function tries to update the information for the user with the user id
.Fa uid
in the
.Xr lastlogx 5
file given by
.Fa fname
with the data supplied in
.Fa \&ll .
A
.Ft struct lastlogx
is defined like this:
.Bd -literal
struct lastlogx {
struct timeval ll_tv; /* time entry was created */
char ll_line[_UTX_LINESIZE]; /* tty name */
char ll_host[_UTX_HOSTSIZE]; /* host name */
struct sockaddr_storage ll_ss; /* address where entry was made from */
};
.Ed
All the fields should be filled out by the caller.
.Pp
The
.Fn updwtmpx
function updates the
.Xr wtmpx 5
file
.Fa file
with the
.Xr utmpx 5
entry
.Fa utx .
.Pp
The
.Fn utmpxname
function sets the default
.Xr utmpx 5
database file name to
.Fa fname .
.Sh RETURN VALUES
.Fn getlastlogx
returns the found entry on success, or
.Dv NULL
if it could not open the database, could not find an entry matching
.Fa uid
in there, or could not allocate the necessary space (in case
.Fa \&ll
was
.Dv NULL ) .
.Pp
.Fn utmpxname
returns 1 on success, or 0 if the supplied file name was too long or
did not end with
.Sq x .
.Pp
.Fn updlastlogx
and
.Fn updwtmpx
return 0 on success, or \-1 in case the database or file respectively
could not be opened or the data not written into it.
.Sh SEE ALSO
.Xr endutxent 3 ,
.Xr loginx 3 ,
.Xr utmpx 5
.Sh HISTORY
The functions
.Fn getutmp ,
.Fn getutmpx ,
.Fn updwtmpx ,
and
.Fn utmpxname
first appeared in
.Tn Solaris .
.Nm getlastlogx
and
.Nm updlastlogx
first appeared in
.Nx 2.0 .