1995-08-13 16:12:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Bill Paul.
|
|
|
|
* 4. Neither the name of the author nor the names of any co-contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* NIS interface routines for chpass
|
|
|
|
*
|
|
|
|
* Written by Bill Paul <wpaul@ctr.columbia.edu>
|
|
|
|
* Center for Telecommunications Research
|
|
|
|
* Columbia University, New York City
|
|
|
|
*
|
1995-09-02 03:56:21 +00:00
|
|
|
* $Id: pw_yp.c,v 1.1 1995/08/13 16:12:27 wpaul Exp $
|
1995-08-13 16:12:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef YP
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <db.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <utmp.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
|
|
|
#include <rpcsvc/ypclnt.h>
|
|
|
|
#include <rpcsvc/yppasswd.h>
|
|
|
|
#include <pw_util.h>
|
|
|
|
#include "pw_yp.h"
|
|
|
|
|
|
|
|
#define PERM_SECURE (S_IRUSR|S_IWUSR)
|
|
|
|
HASHINFO openinfo = {
|
|
|
|
4096, /* bsize */
|
|
|
|
32, /* ffactor */
|
|
|
|
256, /* nelem */
|
|
|
|
2048 * 1024, /* cachesize */
|
|
|
|
NULL, /* hash */
|
|
|
|
0, /* lorder */
|
|
|
|
};
|
|
|
|
|
|
|
|
int _use_yp = 0;
|
|
|
|
|
1995-09-02 03:56:21 +00:00
|
|
|
/* Save the local and NIS password information */
|
|
|
|
struct passwd local_password;
|
|
|
|
struct passwd yp_password;
|
|
|
|
|
|
|
|
|
|
|
|
void copy_yp_pass(p, x, m)
|
|
|
|
char *p;
|
|
|
|
int x, m;
|
|
|
|
{
|
|
|
|
register char *t, *s = p;
|
|
|
|
|
|
|
|
yp_password.pw_fields = 0;
|
|
|
|
|
|
|
|
t = (char *)malloc(m + 10);
|
|
|
|
|
|
|
|
/* Turn all colons into NULLs */
|
|
|
|
while (strchr(s, ':')) {
|
|
|
|
s = (strchr(s, ':') + 1);
|
|
|
|
*(s - 1)= '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
#define EXPAND(e) e = t; while (*t++ = *p++);
|
|
|
|
EXPAND(yp_password.pw_name);
|
|
|
|
yp_password.pw_fields |= _PWF_NAME;
|
|
|
|
EXPAND(yp_password.pw_passwd);
|
|
|
|
yp_password.pw_fields |= _PWF_PASSWD;
|
|
|
|
yp_password.pw_uid = atoi(p);
|
|
|
|
p += (strlen(p) + 1);
|
|
|
|
yp_password.pw_fields |= _PWF_UID;
|
|
|
|
yp_password.pw_gid = atoi(p);
|
|
|
|
p += (strlen(p) + 1);
|
|
|
|
yp_password.pw_fields |= _PWF_GID;
|
|
|
|
if (x) {
|
|
|
|
EXPAND(yp_password.pw_class);
|
|
|
|
yp_password.pw_fields |= _PWF_CLASS;
|
|
|
|
yp_password.pw_change = atol(p);
|
|
|
|
p += (strlen(p) + 1);
|
|
|
|
yp_password.pw_fields |= _PWF_CHANGE;
|
|
|
|
yp_password.pw_expire = atol(p);
|
|
|
|
p += (strlen(p) + 1);
|
|
|
|
yp_password.pw_expire |= _PWF_EXPIRE;
|
|
|
|
}
|
|
|
|
EXPAND(yp_password.pw_gecos);
|
|
|
|
yp_password.pw_fields |= _PWF_GECOS;
|
|
|
|
EXPAND(yp_password.pw_dir);
|
|
|
|
yp_password.pw_fields |= _PWF_DIR;
|
|
|
|
EXPAND(yp_password.pw_shell);
|
|
|
|
yp_password.pw_fields |= _PWF_SHELL;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void copy_local_pass(p,m)
|
|
|
|
char *p;
|
|
|
|
int m;
|
|
|
|
{
|
|
|
|
register char *t;
|
|
|
|
|
|
|
|
t = (char *)malloc(m + 10);
|
|
|
|
|
|
|
|
EXPAND(local_password.pw_name);
|
|
|
|
EXPAND(local_password.pw_passwd);
|
|
|
|
bcopy(p, (char *)&local_password.pw_uid, sizeof(int));
|
|
|
|
p += sizeof(int);
|
|
|
|
bcopy(p, (char *)&local_password.pw_gid, sizeof(int));
|
|
|
|
p += sizeof(int);
|
|
|
|
bcopy(p, (char *)&local_password.pw_change, sizeof(time_t));
|
|
|
|
p += sizeof(time_t);
|
|
|
|
EXPAND(local_password.pw_class);
|
|
|
|
EXPAND(local_password.pw_gecos);
|
|
|
|
EXPAND(local_password.pw_dir);
|
|
|
|
EXPAND(local_password.pw_shell);
|
|
|
|
bcopy(p, (char *)&local_password.pw_expire, sizeof(time_t));
|
|
|
|
p += sizeof(time_t);
|
|
|
|
bcopy(p, (char *)&local_password.pw_fields, sizeof local_password.pw_fields);
|
|
|
|
p += sizeof local_password.pw_fields;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1995-08-13 16:12:28 +00:00
|
|
|
/*
|
|
|
|
* Check if the user we're working with is local or in NIS.
|
|
|
|
*/
|
|
|
|
int use_yp (user)
|
|
|
|
char *user;
|
|
|
|
{
|
1995-09-02 03:56:21 +00:00
|
|
|
int user_local = 0, user_yp = 0, user_exists = 0;
|
1995-08-13 16:12:28 +00:00
|
|
|
DB *dbp;
|
|
|
|
DBT key,data;
|
|
|
|
char bf[UT_NAMESIZE + 2];
|
1995-09-02 03:56:21 +00:00
|
|
|
char *domain;
|
|
|
|
char *result;
|
|
|
|
int resultlen, rval;
|
|
|
|
|
1995-08-13 16:12:28 +00:00
|
|
|
|
1995-09-02 03:56:21 +00:00
|
|
|
/* Is the user anywhere */
|
|
|
|
if (getpwnam(user) != NULL)
|
|
|
|
user_exists = 1;
|
|
|
|
|
|
|
|
if ((dbp = dbopen(_PATH_SMP_DB, O_RDONLY, PERM_SECURE,
|
1995-08-13 16:12:28 +00:00
|
|
|
DB_HASH, &openinfo)) == NULL)
|
|
|
|
errx(1, "error opening database: %s.", _PATH_MP_DB);
|
1995-09-02 03:56:21 +00:00
|
|
|
|
|
|
|
/* Is NIS turned on */
|
1995-08-13 16:12:28 +00:00
|
|
|
bf[0] = _PW_KEYYPENABLED;
|
|
|
|
key.data = (u_char *)bf;
|
|
|
|
key.size = 1;
|
1995-09-02 03:56:21 +00:00
|
|
|
if (!(dbp->get)(dbp,&key,&data,0)) {
|
|
|
|
if ((rval = yp_get_default_domain(&domain))) {
|
|
|
|
warnx("can't get local NIS domain name: %s",yperr_string(rval));
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Is the user in the NIS passwd map */
|
|
|
|
if (!yp_match(domain, "passwd.byname", user, strlen(user),
|
|
|
|
&result, &resultlen)) {
|
|
|
|
user_yp = 1;
|
|
|
|
copy_yp_pass(result, 0, resultlen);
|
|
|
|
free(result);
|
|
|
|
}
|
|
|
|
/* Is the user in the NIS passwd map */
|
|
|
|
if (user_yp && !yp_match(domain, "master.passwd.byname",
|
|
|
|
user, strlen(user),
|
|
|
|
&result, &resultlen)) {
|
|
|
|
copy_yp_pass(result, 1, resultlen);
|
|
|
|
}
|
|
|
|
free(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Is the user in the local password database */
|
1995-08-13 16:12:28 +00:00
|
|
|
|
|
|
|
bf[0] = _PW_KEYBYNAME;
|
|
|
|
bcopy((char *)user, bf + 1, MIN(strlen(user), UT_NAMESIZE));
|
|
|
|
key.data = (u_char *)bf;
|
|
|
|
key.size = strlen(user) + 1;
|
1995-09-02 03:56:21 +00:00
|
|
|
if (!(dbp->get)(dbp,&key,&data,0)) {
|
|
|
|
user_local = 1;
|
|
|
|
copy_local_pass(data.data, data.size);
|
|
|
|
}
|
1995-08-13 16:12:28 +00:00
|
|
|
|
1995-09-02 03:56:21 +00:00
|
|
|
(dbp->close)(dbp);
|
1995-08-13 16:12:28 +00:00
|
|
|
|
1995-09-02 03:56:21 +00:00
|
|
|
if (user_local && user_yp && user_exists)
|
|
|
|
return(USER_YP_AND_LOCAL);
|
|
|
|
else if (!user_local && user_yp && user_exists)
|
|
|
|
return(USER_YP_ONLY);
|
|
|
|
else if (user_local && !user_yp && user_exists)
|
|
|
|
return(USER_LOCAL_ONLY);
|
|
|
|
else if (!user_exists)
|
|
|
|
return(USER_UNKNOWN);
|
|
|
|
return(-1);
|
1995-08-13 16:12:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the name of the NIS master server for this domain
|
|
|
|
* and make sure it's running yppasswdd.
|
|
|
|
*/
|
|
|
|
static char *get_yp_master(void)
|
|
|
|
{
|
|
|
|
char *domain, *mastername;
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
/* Get default NIS domain. */
|
|
|
|
|
|
|
|
if ((rval = yp_get_default_domain(&domain))) {
|
|
|
|
warnx("can't get local NIS domain name: %s",yperr_string(rval));
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get master server of passwd map. */
|
|
|
|
|
|
|
|
if ((rval = yp_master(domain, "passwd.byname", &mastername))) {
|
|
|
|
warnx("can't get master NIS server: %s", yperr_string(rval));
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if yppasswdd is out there. */
|
|
|
|
|
|
|
|
if ((rval = getrpcport(mastername, YPPASSWDPROG, YPPASSWDPROC_UPDATE,
|
|
|
|
IPPROTO_UDP)) == 0) {
|
|
|
|
warnx("yppasswdd not running on NIS master server");
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure it's on a reserved port.
|
|
|
|
* XXX Might break with yppasswdd servers running on Solaris 2.x.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (rval >= IPPORT_RESERVED) {
|
|
|
|
warnx("yppasswdd server not running on reserved port");
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Everything checks out: return the name of the server. */
|
|
|
|
|
|
|
|
return (mastername);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Ask the user for his NIS password and submit the new information
|
|
|
|
* to yppasswdd. Note that yppasswdd requires password authentication
|
|
|
|
* and only allows changes to existing records rather than the addition
|
|
|
|
* of new records. (To do actual updates we would need something like
|
|
|
|
* secure RPC and ypupdated, which FreeBSD doesn't have yet.) This means
|
|
|
|
* that the superuser cannot use chpass(1) to add new users records to
|
|
|
|
* the NIS password database.
|
|
|
|
*/
|
|
|
|
void yp_submit(pw)
|
|
|
|
struct passwd *pw;
|
|
|
|
{
|
|
|
|
struct yppasswd yppasswd;
|
|
|
|
CLIENT *clnt;
|
|
|
|
char *master, *password, *encpass;
|
|
|
|
int rval, status = 0;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
/* Populate the yppasswd structure that gets handed to yppasswdd. */
|
|
|
|
/*
|
|
|
|
* XXX This is done first to work around what looks like a very
|
|
|
|
* strange memory corruption bug: the text fields pointed to
|
|
|
|
* by the members of the 'pw' structure appear to be clobbered
|
|
|
|
* after get_yp_master() returns (in particular, it happens
|
|
|
|
* during getrpcport()). I don't know exactly where the problem
|
|
|
|
* lies: I traced it all the way to gethostbyname(), then gave
|
|
|
|
* up.
|
|
|
|
*/
|
|
|
|
yppasswd.newpw.pw_passwd = strdup(pw->pw_passwd);
|
|
|
|
yppasswd.newpw.pw_name = strdup(pw->pw_name);
|
|
|
|
yppasswd.newpw.pw_uid = pw->pw_uid;
|
|
|
|
yppasswd.newpw.pw_gid = pw->pw_gid;
|
|
|
|
yppasswd.newpw.pw_gecos = strdup(pw->pw_gecos);
|
|
|
|
yppasswd.newpw.pw_dir = strdup(pw->pw_dir);
|
|
|
|
yppasswd.newpw.pw_shell = strdup(pw->pw_shell);
|
|
|
|
|
|
|
|
/* Get NIS master server name */
|
|
|
|
|
|
|
|
master = get_yp_master();
|
|
|
|
|
|
|
|
/* Get the user's password for authentication purposes. */
|
|
|
|
|
|
|
|
printf ("Changing NIS information for %s on %s\n",
|
|
|
|
yppasswd.newpw.pw_name, master);
|
|
|
|
encpass = (getpwnam(yppasswd.newpw.pw_name))->pw_passwd;
|
|
|
|
password = getpass("Please enter password: ");
|
|
|
|
if (strncmp(crypt(password, encpass), encpass, strlen(encpass))) {
|
|
|
|
warnx("Password incorrect.");
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
yppasswd.oldpass = password; /* XXX */
|
|
|
|
|
|
|
|
/* Create a handle to yppasswdd. */
|
|
|
|
|
|
|
|
clnt = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
|
|
|
|
clnt->cl_auth = authunix_create_default();
|
|
|
|
|
|
|
|
/* Set a timeout and make the RPC call. */
|
|
|
|
|
|
|
|
tv.tv_sec = 20;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
rval = clnt_call(clnt, YPPASSWDPROC_UPDATE, xdr_yppasswd,
|
|
|
|
(char *)&yppasswd, xdr_int, (char *)&status, &tv);
|
|
|
|
|
|
|
|
/* Call failed: signal the error. */
|
|
|
|
|
|
|
|
if (rval) {
|
|
|
|
warnx("NIS update failed: %s", clnt_sperrno(rval));
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Success. */
|
|
|
|
|
|
|
|
auth_destroy(clnt->cl_auth);
|
|
|
|
clnt_destroy(clnt);
|
|
|
|
warnx("NIS information changed on host %s", master);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* YP */
|