31 pass = (
char*)malloc(
LPASS+1);
32 if (pass==NULL)
return NULL;
33 memset(pass, 0,
LPASS+1);
36 pw = getpwnam((
const char*)user_id);
41 strncpy(pass, pw->pw_passwd,
LPASS);
42 if (strcmp(pass,
"*") && strcmp(pass,
"x") && strcmp(pass,
"!"))
return pass;
46 sp = getspnam((
const char*)user_id);
48 strncpy(pass, sp->sp_pwdp,
LPASS);
53#ifdef HAVE_RPCSVC_YPCLNT_H
55 pw = getnisnam(user_id);
57 strncpy(pass, pw->pw_passwd,
LPASS);
67#ifdef HAVE_RPCSVC_YPCLNT_H
77char* get_nis_passwdf(
char* usrid)
79 const char* inmap=
"passwd.byname";
80 int ret, keylen, vallen, usrlen;
87 usrlen = strlen(usrid);
88 uname = (
char*)malloc(usrlen + 2);
89 if (uname==NULL)
return NULL;
90 strncpy(uname, usrid, usrlen);
92 uname[usrlen+1] =
'\0';
94 yp_get_default_domain(&domainname);
96 ret = yp_first(domainname, inmap, &key, &keylen, &val, &vallen);
98 if (!strncmp(val, uname, usrlen+1)) {
100 nis = (
char*)malloc(strlen(val)+1);
101 if (nis==NULL)
return NULL;
102 strncpy(nis, val, strlen(val)+1);
105 ret = yp_next(domainname, inmap, key, keylen, &key, &keylen, &val, &vallen);
122struct passwd* getnisnam(
char* usrid)
128 nis = get_nis_passwdf(usrid);
129 if (nis==NULL)
return NULL;
130 pw = (
struct passwd*)malloc(
sizeof(
struct passwd));
136 pw->pw_name =
awk(nis,
':', 1);
137 pw->pw_passwd =
awk(nis,
':', 2);
138 pw->pw_gecos =
awk(nis,
':', 5);
139 pw->pw_dir =
awk(nis,
':', 6);
140 pw->pw_shell =
awk(nis,
':', 7);
142 buf =
awk(nis,
':', 3);
143 if (buf!=NULL) pw->pw_uid = atoi(buf);
146 buf =
awk(nis,
':', 4);
147 if (buf!=NULL) pw->pw_gid = atoi(buf);
169 if (pw==NULL)
return;
171 freeNull(pw->pw_name);
172 freeNull(pw->pw_passwd);
173 freeNull(pw->pw_gecos);
174 freeNull(pw->pw_dir);
175 freeNull(pw->pw_shell);
200 if (pass==NULL || bsalt==NULL)
return NULL;
203 cpass = crypt(pass, csalt);
206 if (csalt==NULL)
return NULL;
216 int passlen = strlen(cpass);
217 dpass =
cut_str(cpass, lsalt, passlen-1);
218 cpass = crypt(dpass, csalt);
220 dpass =
cut_str(cpass, lsalt, passlen-1);
226 cpass = crypt(dpass, csalt);
253 if (passwd==NULL || cryptpass==NULL)
return FALSE;
257 if (cryptpass[0]==
'$') {
265 salt =
cut_str(cryptpass, 0, lsalt-1);
266 if (!strcmp(crypt(passwd, salt), cryptpass)) {
275 if (!strcmp(crypt(passwd, salt), cryptpass)) {
304 int len = strlen(passwd);
307 if (passwd[0]==
'$' && passwd[2]==
'$' && passwd[11]==
'$') {
308 ret = (
short int)passwd[1] - (
short int)
'1' + 1;
int check_passwd(char *passwd, char *cryptpass)
void free_pw(struct passwd *pw)
int check_salt(char *passwd)
char * x2crypt(char *pass, char *bsalt)
char * get_passwd(char *user_id)