1998-01-31 08:39:55 +00:00
|
|
|
/* Copyright (C) 1998 Free Software Foundation, Inc.
|
|
|
|
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
|
|
|
|
modify it under the terms of the GNU Library General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#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;
|
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
static int nscd_getpw_r (const char *key, request_type type,
|
|
|
|
struct passwd *resultbuf, char *buffer,
|
|
|
|
size_t buflen);
|
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)
|
|
|
|
return 1;
|
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
return nscd_getpw_r (name, 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)
|
|
|
|
{
|
|
|
|
char *p = buffer;
|
1998-03-05 14:03:24 +00:00
|
|
|
int plen;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
1998-04-08 23:35:13 +00:00
|
|
|
plen = __snprintf (buffer, buflen, "%d", uid);
|
1998-01-31 08:39:55 +00:00
|
|
|
if (plen == -1)
|
|
|
|
{
|
|
|
|
__set_errno (ERANGE);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
p = buffer + plen + 1;
|
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
return nscd_getpw_r (buffer, GETPWBYUID, resultbuf, p, buflen - plen - 1);
|
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
|
1998-10-18 15:16:22 +00:00
|
|
|
nscd_getpw_r (const char *key, 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;
|
|
|
|
return 1;
|
|
|
|
}
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
req.version = NSCD_VERSION;
|
|
|
|
req.type = type;
|
1998-10-18 15:16:22 +00:00
|
|
|
req.key_len = strlen (key) + 1;
|
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);
|
1998-01-31 08:39:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1998-07-16 11:44:36 +00:00
|
|
|
nbytes = __write (sock, key, req.key_len);
|
1998-01-31 08:39:55 +00:00
|
|
|
if (nbytes != req.key_len)
|
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1998-01-31 08:39:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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);
|
1998-01-31 08:39:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
1998-01-31 08:39:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
1998-01-31 08:39:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
return nbytes == total ? 0 : 1;
|
1998-01-31 08:39:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-07-16 11:44:36 +00:00
|
|
|
__close (sock);
|
1998-01-31 08:39:55 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|