Blame man3/getpw.3

Packit 7cfc04
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" References consulted:
Packit 7cfc04
.\"     Linux libc source code
Packit 7cfc04
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
Packit 7cfc04
.\"     386BSD man pages
Packit 7cfc04
.\" Modified Sat Jul 24 19:23:25 1993 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.\" Modified Mon May 27 21:37:47 1996 by Martin Schulze (joey@linux.de)
Packit 7cfc04
.\"
Packit 7cfc04
.TH GETPW 3 2017-09-15 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
getpw \- reconstruct password line entry
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
Packit 7cfc04
.B #include <sys/types.h>
Packit 7cfc04
.B #include <pwd.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int getpw(uid_t " uid ", char *" buf );
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
.BR getpw ()
Packit 7cfc04
function reconstructs the password line entry for
Packit 7cfc04
the given user ID \fIuid\fP in the buffer \fIbuf\fP.
Packit 7cfc04
The returned buffer contains a line of format
Packit 7cfc04
.PP
Packit 7cfc04
.in +4n
Packit 7cfc04
.EX
Packit 7cfc04
.B name:passwd:uid:gid:gecos:dir:shell
Packit 7cfc04
.EE
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
The \fIpasswd\fP structure is defined in \fI<pwd.h>\fP as follows:
Packit 7cfc04
.PP
Packit 7cfc04
.in +4n
Packit 7cfc04
.EX
Packit 7cfc04
struct passwd {
Packit 7cfc04
    char   *pw_name;       /* username */
Packit 7cfc04
    char   *pw_passwd;     /* user password */
Packit 7cfc04
    uid_t   pw_uid;        /* user ID */
Packit 7cfc04
    gid_t   pw_gid;        /* group ID */
Packit 7cfc04
    char   *pw_gecos;      /* user information */
Packit 7cfc04
    char   *pw_dir;        /* home directory */
Packit 7cfc04
    char   *pw_shell;      /* shell program */
Packit 7cfc04
};
Packit 7cfc04
.EE
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
For more information about the fields of this structure, see
Packit 7cfc04
.BR passwd (5).
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The
Packit 7cfc04
.BR getpw ()
Packit 7cfc04
function returns 0 on success; on error, it returns \-1, and
Packit 7cfc04
.I errno
Packit 7cfc04
is set to indicate the error.
Packit 7cfc04
.PP
Packit 7cfc04
If
Packit 7cfc04
.I uid
Packit 7cfc04
is not found in the password database,
Packit 7cfc04
.BR getpw ()
Packit 7cfc04
returns \-1, sets
Packit 7cfc04
.I errno
Packit 7cfc04
to 0, and leaves
Packit 7cfc04
.I buf
Packit 7cfc04
unchanged.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
.TP
Packit 7cfc04
.BR 0 " or " ENOENT
Packit 7cfc04
No user corresponding to
Packit 7cfc04
.IR uid .
Packit 7cfc04
.TP
Packit 7cfc04
.B EINVAL
Packit 7cfc04
.I buf
Packit 7cfc04
is NULL.
Packit 7cfc04
.TP
Packit 7cfc04
.B ENOMEM
Packit 7cfc04
Insufficient memory to allocate
Packit 7cfc04
.I passwd
Packit 7cfc04
structure.
Packit 7cfc04
.SH FILES
Packit 7cfc04
.TP
Packit 7cfc04
.I /etc/passwd
Packit 7cfc04
password database file
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lb lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR getpw ()
Packit 7cfc04
T}	Thread safety	MT-Safe locale
Packit 7cfc04
.TE
Packit 7cfc04
.sp 1
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
SVr2.
Packit 7cfc04
.SH BUGS
Packit 7cfc04
The
Packit 7cfc04
.BR getpw ()
Packit 7cfc04
function is dangerous as it may overflow the provided buffer
Packit 7cfc04
.IR buf .
Packit 7cfc04
It is obsoleted by
Packit 7cfc04
.BR getpwuid (3).
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR endpwent (3),
Packit 7cfc04
.BR fgetpwent (3),
Packit 7cfc04
.BR getpwent (3),
Packit 7cfc04
.BR getpwnam (3),
Packit 7cfc04
.BR getpwuid (3),
Packit 7cfc04
.BR putpwent (3),
Packit 7cfc04
.BR setpwent (3),
Packit 7cfc04
.BR passwd (5)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.