Update.
[glibc.git] / nscd / nscd_getpw_r.c
blobaf361759f2e4d2b446c548161b1dc29329154cbc
1 /* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <errno.h>
21 #include <pwd.h>
22 #include <stdint.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/socket.h>
28 #include <sys/uio.h>
29 #include <sys/un.h>
31 #include "nscd-client.h"
32 #include "nscd_proto.h"
34 int __nss_not_use_nscd_passwd;
36 static int nscd_getpw_r (const char *key, size_t keylen, request_type type,
37 struct passwd *resultbuf, char *buffer,
38 size_t buflen) internal_function;
40 int
41 __nscd_getpwnam_r (const char *name, struct passwd *resultbuf, char *buffer,
42 size_t buflen)
44 if (name == NULL)
45 return -1;
47 return nscd_getpw_r (name, strlen (name) + 1, GETPWBYNAME, resultbuf,
48 buffer, buflen);
51 int
52 __nscd_getpwuid_r (uid_t uid, struct passwd *resultbuf, char *buffer,
53 size_t buflen)
55 char buf[12];
56 size_t n;
58 n = __snprintf (buf, sizeof (buf), "%d", uid) + 1;
60 return nscd_getpw_r (buf, n, GETPWBYUID, resultbuf, buffer, buflen);
63 /* Create a socket connected to a name. */
64 static int
65 open_socket (void)
67 struct sockaddr_un addr;
68 int sock;
69 int saved_errno = errno;
71 sock = __socket (PF_UNIX, SOCK_STREAM, 0);
72 if (sock < 0)
74 __set_errno (saved_errno);
75 return -1;
78 addr.sun_family = AF_UNIX;
79 strcpy (addr.sun_path, _PATH_NSCDSOCKET);
80 if (__connect (sock, (struct sockaddr *) &addr, sizeof (addr)) < 0)
82 __close (sock);
83 __set_errno (saved_errno);
84 return -1;
87 return sock;
90 static int
91 internal_function
92 nscd_getpw_r (const char *key, size_t keylen, request_type type,
93 struct passwd *resultbuf, char *buffer, size_t buflen)
95 int sock = open_socket ();
96 request_header req;
97 pw_response_header pw_resp;
98 ssize_t nbytes;
100 if (sock == -1)
102 __nss_not_use_nscd_passwd = 1;
103 return -1;
106 req.version = NSCD_VERSION;
107 req.type = type;
108 req.key_len = keylen;
109 nbytes = __write (sock, &req, sizeof (request_header));
110 if (nbytes != sizeof (request_header))
112 __close (sock);
113 return -1;
116 nbytes = __write (sock, key, keylen);
117 if (nbytes != keylen)
119 __close (sock);
120 return -1;
123 nbytes = __read (sock, &pw_resp, sizeof (pw_response_header));
124 if (nbytes != sizeof (pw_response_header))
126 __close (sock);
127 return -1;
130 if (pw_resp.found == -1)
132 /* The daemon does not cache this database. */
133 __close (sock);
134 __nss_not_use_nscd_passwd = 1;
135 return -1;
138 if (pw_resp.found == 1)
140 char *p = buffer;
141 size_t total = (pw_resp.pw_name_len + pw_resp.pw_passwd_len
142 + pw_resp.pw_gecos_len + pw_resp.pw_dir_len
143 + pw_resp.pw_shell_len);
145 if (buflen < total)
147 __set_errno (ERANGE);
148 __close (sock);
149 return ERANGE;
152 /* Set the information we already have. */
153 resultbuf->pw_uid = pw_resp.pw_uid;
154 resultbuf->pw_gid = pw_resp.pw_gid;
156 /* get pw_name */
157 resultbuf->pw_name = p;
158 p += pw_resp.pw_name_len;
159 /* get pw_passwd */
160 resultbuf->pw_passwd = p;
161 p += pw_resp.pw_passwd_len;
162 /* get pw_gecos */
163 resultbuf->pw_gecos = p;
164 p += pw_resp.pw_gecos_len;
165 /* get pw_dir */
166 resultbuf->pw_dir = p;
167 p += pw_resp.pw_dir_len;
168 /* get pw_pshell */
169 resultbuf->pw_shell = p;
171 nbytes = __read (sock, buffer, total);
173 __close (sock);
175 return nbytes == total ? 0 : -1;
177 else
179 __close (sock);
180 /* The `errno' to some value != ERANGE. */
181 __set_errno (ENOENT);
182 return ENOENT;