Update.
[glibc.git] / pwd / getpw.c
blob52c3db7afb5c92197eb6fbe1b77db56b181e8bbe
1 /* Copyright (C) 1991, 1992, 1996, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <alloca.h>
20 #include <errno.h>
21 #include <stdio.h>
22 #include <unistd.h>
23 #include <pwd.h>
26 /* Re-construct the password-file line for the given uid
27 in the given buffer. This knows the format that the caller
28 will expect, but this need not be the format of the password file. */
30 int __getpw __P ((__uid_t uid, char *buf));
32 int
33 __getpw (uid, buf)
34 __uid_t uid;
35 char *buf;
37 size_t buflen;
38 char *tmpbuf;
39 struct passwd resbuf, *p;
41 if (buf == NULL)
43 __set_errno (EINVAL);
44 return -1;
47 buflen = __sysconf (_SC_GETPW_R_SIZE_MAX);
48 tmpbuf = alloca (buflen);
50 if (__getpwuid_r (uid, &resbuf, tmpbuf, buflen, &p) < 0)
51 return -1;
53 if (sprintf (buf, "%s:%s:%lu:%lu:%s:%s:%s", p->pw_name, p->pw_passwd,
54 (unsigned long int) p->pw_uid, (unsigned long int) p->pw_gid,
55 p->pw_gecos, p->pw_dir, p->pw_shell) < 0)
56 return -1;
58 return 0;
60 weak_alias (__getpw, getpw)