#include <TargetConditionals.h>
#define INFO_FILE 1
#if !TARGET_OS_EMBEDDED
#define INFO_NIS 2
#define INFO_OPEN_DIRECTORY 3
#endif
#ifndef __SLICK__
#define _PASSWD_FILE "/etc/master.passwd"
#else
#define _PASSWD_FILE "/etc/passwd"
#endif
#include <stdio.h>
#include <errno.h>
#include <pwd.h>
#include <libc.h>
#include <ctype.h>
#include <string.h>
#include "stringops.h"
#ifdef __SLICK__
#define _PASSWORD_LEN 8
#endif
char* progname = "passwd";
static char *saltchars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./";
extern int file_passwd(char *, char *);
extern int nis_passwd(char *, char *);
#ifdef INFO_OPEN_DIRECTORY
extern int od_passwd(char *, char *, char*);
#endif
void
getpasswd(char *name, int isroot, int minlen, int mixcase, int nonalpha,
char *old_pw, char **new_pw, char **old_clear, char **new_clear)
{
int i, tries, len, pw_ok, upper, lower, alpha, notalpha;
int isNull;
char *p;
static char obuf[_PASSWORD_LEN+1];
static char nbuf[_PASSWORD_LEN+1];
char salt[9];
printf("Changing password for %s.\n", name);
p = "";
isNull = 0;
if (old_pw == NULL) isNull = 1;
if ((isNull == 0) && (old_pw[0] == '\0')) isNull = 1;
if ((isroot == 0) && (isNull == 0))
{
p = getpass("Old password:");
if (strcmp(crypt(p, old_pw), old_pw))
{
errno = EACCES;
fprintf(stderr, "Sorry\n");
exit(1);
}
}
snprintf( obuf, sizeof(obuf), "%s", p );
tries = 0;
nbuf[0] = '\0';
for (;;)
{
p = getpass("New password:");
if (!*p)
{
printf("Password unchanged.\n");
exit(0);
}
tries++;
len = strlen(p);
upper = 0;
lower = 0;
alpha = 0;
notalpha = 0;
for (i = 0; i < len; i++)
{
if (isupper(p[i])) upper++;
if (islower(p[i])) lower++;
if (isalpha(p[i])) alpha++;
else notalpha++;
}
pw_ok = 1;
if (len < minlen) pw_ok = 0;
if ((mixcase == 1) && ((upper == 0) || (lower == 0))) pw_ok = 0;
if ((nonalpha == 1) && (notalpha == 0)) pw_ok = 0;
if ((isroot == 1) && (tries > 2)) pw_ok = 1;
if (tries > 4) pw_ok = 1;
if (pw_ok == 0)
{
if (len < minlen)
printf("Password must be at least %d characters long.\n", minlen);
if ((mixcase == 1) && ((upper == 0) || (lower == 0)))
printf("Password must contain both upper and lower case characters.\n");
if ((nonalpha == 1) && (notalpha == 0))
printf("Password must contain non-alphabetic characters.\n");
continue;
}
snprintf( nbuf, sizeof(nbuf), "%s", p );
if (!strcmp(nbuf, getpass("Retype new password:"))) break;
printf("Mismatch; try again, EOF to quit.\n");
}
srandom((int)time((time_t *)NULL));
salt[0] = saltchars[random() % strlen(saltchars)];
salt[1] = saltchars[random() % strlen(saltchars)];
salt[2] = '\0';
*new_pw = crypt(nbuf, salt);
*old_clear = obuf;
*new_clear = nbuf;
return;
}
void
usage()
{
fprintf(stderr, "usage: %s [-i infosystem] [-l location] [-u authname] [name]\n", progname);
fprintf(stderr, " infosystem:\n");
fprintf(stderr, " file\n");
fprintf(stderr, " NIS\n");
fprintf(stderr, " OpenDirectory\n");
fprintf(stderr, " location (for infosystem):\n");
fprintf(stderr, " file location is path to file (default is %s)\n", _PASSWD_FILE);
fprintf(stderr, " NIS location is NIS domain name\n");
fprintf(stderr, " OpenDirectory location is directory node name\n");
exit(1);
}
int
main(int argc, char *argv[])
{
char* user = NULL;
char* locn = NULL;
char* auth = NULL;
int infosystem, ch;
int free_user = 0;
#ifdef INFO_OPEN_DIRECTORY
infosystem = INFO_OPEN_DIRECTORY;
#else
infosystem = INFO_FILE;
#endif
while ((ch = getopt(argc, argv, "i:l:u:")) != -1)
switch(ch) {
case 'i':
if (!strcasecmp(optarg, "file")) {
infosystem = INFO_FILE;
#ifdef INFO_NIS
} else if (!strcasecmp(optarg, "NIS")) {
infosystem = INFO_NIS;
} else if (!strcasecmp(optarg, "YP")) {
infosystem = INFO_NIS;
#endif
#ifdef INFO_OPEN_DIRECTORY
} else if (!strcasecmp(optarg, "opendirectory")) {
infosystem = INFO_OPEN_DIRECTORY;
#endif
} else {
fprintf(stderr, "%s: Unknown info system \'%s\'.\n",
progname, optarg);
usage();
}
break;
case 'l':
locn = optarg;
break;
case 'u':
auth = optarg;
break;
case '?':
default:
usage();
break;
}
argc -= optind;
argv += optind;
if (argc > 1) {
usage();
} else if (argc == 1) {
user = argv[0];
}
if (user == NULL)
{
struct passwd * userRec = getpwuid(getuid());
if (userRec != NULL && userRec->pw_name != NULL) {
user = strdup(userRec->pw_name);
free_user = 1;
}
if (user == NULL)
{
fprintf(stderr, "you don't have a login name\n");
exit(1);
}
}
switch (infosystem)
{
case INFO_FILE:
file_passwd(user, locn);
break;
#ifdef INFO_NIS
case INFO_NIS:
nis_passwd(user, locn);
break;
#endif
#ifdef INFO_OPEN_DIRECTORY
case INFO_OPEN_DIRECTORY:
od_passwd(user, locn, auth);
break;
#endif
}
if (free_user == 1)
free(user);
exit(0);
}