1999-01-11 20:13:43 +00:00
|
|
|
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
1998-01-31 08:39:55 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-01-31 08:39:55 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pwd.h>
|
1999-01-11 20:13:43 +00:00
|
|
|
#include <stdint.h>
|
1998-01-31 08:39:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
1998-10-19 00:40:00 +00:00
|
|
|
#include "nscd-client.h"
|
1998-11-30 14:21:53 +00:00
|
|
|
#include "nscd_proto.h"
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-03-06 11:39:36 +00:00
|
|
|
int __nss_not_use_nscd_passwd;
|
|
|
|
|
1999-02-02 16:27:57 +00:00
|
|
|
static int nscd_getpw_r (const char *key, size_t keylen, request_type type,
|
1998-10-18 15:16:22 +00:00
|
|
|
struct passwd *resultbuf, char *buffer,
|
1999-02-02 16:27:57 +00:00
|
|
|
size_t buflen) internal_function;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
__nscd_getpwnam_r (const char *name, struct passwd *resultbuf, char *buffer,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
|
|
|
if (name == NULL)
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1999-02-02 16:27:57 +00:00
|
|
|
return nscd_getpw_r (name, strlen (name) + 1, GETPWBYNAME, resultbuf,
|
|
|
|
buffer, buflen);
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
__nscd_getpwuid_r (uid_t uid, struct passwd *resultbuf, char *buffer,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
1999-02-02 16:27:57 +00:00
|
|
|
char buf[12];
|
|
|
|
size_t n;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1999-02-02 16:27:57 +00:00
|
|
|
n = __snprintf (buf, sizeof (buf), "%d", uid) + 1;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1999-02-02 16:27:57 +00:00
|
|
|
return nscd_getpw_r (buf, n, GETPWBYUID, resultbuf, buffer, buflen);
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a socket connected to a name. */
|
|
|
|
static int
|
1998-10-18 15:16:22 +00:00
|
|
|
open_socket (void)
|
1998-01-31 08:39:55 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
int sock;
|
1998-03-04 17:14:36 +00:00
|
|
|
int saved_errno = errno;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-03-12 09:35:57 +00:00
|
|
|
sock = __socket (PF_UNIX, SOCK_STREAM, 0);
|
1998-01-31 08:39:55 +00:00
|
|
|
if (sock < 0)
|
1998-03-04 17:14:36 +00:00
|
|
|
{
|
|
|
|
__set_errno (saved_errno);
|
|
|
|
return -1;
|
|
|
|
}
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
strcpy (addr.sun_path, _PATH_NSCDSOCKET);
|
1998-03-12 09:35:57 +00:00
|
|
|
if (__connect (sock, (struct sockaddr *) &addr, sizeof (addr)) < 0)
|
1998-01-31 08:39:55 +00:00
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1998-03-04 17:14:36 +00:00
|
|
|
__set_errno (saved_errno);
|
1998-01-31 08:39:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1999-02-02 16:27:57 +00:00
|
|
|
internal_function
|
|
|
|
nscd_getpw_r (const char *key, size_t keylen, request_type type,
|
|
|
|
struct passwd *resultbuf, char *buffer, size_t buflen)
|
1998-01-31 08:39:55 +00:00
|
|
|
{
|
1998-10-18 15:16:22 +00:00
|
|
|
int sock = open_socket ();
|
1998-01-31 08:39:55 +00:00
|
|
|
request_header req;
|
|
|
|
pw_response_header pw_resp;
|
|
|
|
ssize_t nbytes;
|
|
|
|
|
|
|
|
if (sock == -1)
|
1998-03-06 11:39:36 +00:00
|
|
|
{
|
|
|
|
__nss_not_use_nscd_passwd = 1;
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-03-06 11:39:36 +00:00
|
|
|
}
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
req.version = NSCD_VERSION;
|
|
|
|
req.type = type;
|
1999-02-02 16:27:57 +00:00
|
|
|
req.key_len = keylen;
|
1998-07-16 11:44:36 +00:00
|
|
|
nbytes = __write (sock, &req, sizeof (request_header));
|
1998-01-31 08:39:55 +00:00
|
|
|
if (nbytes != sizeof (request_header))
|
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
1999-02-02 16:27:57 +00:00
|
|
|
nbytes = __write (sock, key, keylen);
|
|
|
|
if (nbytes != keylen)
|
1998-01-31 08:39:55 +00:00
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
1998-07-16 11:44:36 +00:00
|
|
|
nbytes = __read (sock, &pw_resp, sizeof (pw_response_header));
|
1998-01-31 08:39:55 +00:00
|
|
|
if (nbytes != sizeof (pw_response_header))
|
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pw_resp.found == -1)
|
|
|
|
{
|
1998-03-06 11:39:36 +00:00
|
|
|
/* The daemon does not cache this database. */
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1998-03-06 11:39:36 +00:00
|
|
|
__nss_not_use_nscd_passwd = 1;
|
1999-06-17 12:33:08 +00:00
|
|
|
return -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pw_resp.found == 1)
|
|
|
|
{
|
|
|
|
char *p = buffer;
|
1998-10-18 15:16:22 +00:00
|
|
|
size_t total = (pw_resp.pw_name_len + pw_resp.pw_passwd_len
|
|
|
|
+ pw_resp.pw_gecos_len + pw_resp.pw_dir_len
|
|
|
|
+ pw_resp.pw_shell_len);
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
if (buflen < total)
|
1998-01-31 08:39:55 +00:00
|
|
|
{
|
|
|
|
__set_errno (ERANGE);
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1999-06-17 12:33:08 +00:00
|
|
|
return ERANGE;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
/* Set the information we already have. */
|
|
|
|
resultbuf->pw_uid = pw_resp.pw_uid;
|
|
|
|
resultbuf->pw_gid = pw_resp.pw_gid;
|
|
|
|
|
1998-01-31 08:39:55 +00:00
|
|
|
/* get pw_name */
|
1998-10-18 15:16:22 +00:00
|
|
|
resultbuf->pw_name = p;
|
|
|
|
p += pw_resp.pw_name_len;
|
1998-01-31 08:39:55 +00:00
|
|
|
/* get pw_passwd */
|
1998-10-18 15:16:22 +00:00
|
|
|
resultbuf->pw_passwd = p;
|
|
|
|
p += pw_resp.pw_passwd_len;
|
1998-01-31 08:39:55 +00:00
|
|
|
/* get pw_gecos */
|
1998-10-18 15:16:22 +00:00
|
|
|
resultbuf->pw_gecos = p;
|
|
|
|
p += pw_resp.pw_gecos_len;
|
1998-01-31 08:39:55 +00:00
|
|
|
/* get pw_dir */
|
1998-10-18 15:16:22 +00:00
|
|
|
resultbuf->pw_dir = p;
|
|
|
|
p += pw_resp.pw_dir_len;
|
1998-01-31 08:39:55 +00:00
|
|
|
/* get pw_pshell */
|
1998-10-18 15:16:22 +00:00
|
|
|
resultbuf->pw_shell = p;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
nbytes = __read (sock, buffer, total);
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1998-10-18 15:16:22 +00:00
|
|
|
|
1999-06-17 12:33:08 +00:00
|
|
|
return nbytes == total ? 0 : -1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1999-03-14 21:12:49 +00:00
|
|
|
/* The `errno' to some value != ERANGE. */
|
|
|
|
__set_errno (ENOENT);
|
1999-06-17 12:33:08 +00:00
|
|
|
return ENOENT;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
}
|