diff options
author | guido <guido@FreeBSD.org> | 1994-08-21 19:10:43 +0000 |
---|---|---|
committer | guido <guido@FreeBSD.org> | 1994-08-21 19:10:43 +0000 |
commit | 170df33e71292a07eed8cfa9256defc6cb0c31d5 (patch) | |
tree | 0c828267bb8b6452ff4a67d1a1919d41ac0fb456 /libexec/rexecd | |
parent | c1db1c5a23c7066d9417ed808b01f452874ff7ed (diff) | |
download | FreeBSD-src-170df33e71292a07eed8cfa9256defc6cb0c31d5.zip FreeBSD-src-170df33e71292a07eed8cfa9256defc6cb0c31d5.tar.gz |
Add skey support
Reviewed by:
Submitted by: guido
Diffstat (limited to 'libexec/rexecd')
-rw-r--r-- | libexec/rexecd/Makefile | 5 | ||||
-rw-r--r-- | libexec/rexecd/rexecd.c | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/libexec/rexecd/Makefile b/libexec/rexecd/Makefile index 0b225ba..c9814f4 100644 --- a/libexec/rexecd/Makefile +++ b/libexec/rexecd/Makefile @@ -2,8 +2,9 @@ PROG= rexecd MAN8= rexecd.8 -LDADD= -lcrypt -DPADD= ${LIBCRYPT} +CFLAGS+= -DSKEY +DPADD= ${LIBCRYPT} ${LIBSKEY} +LDADD= -lcrypt -lskey .include <bsd.prog.mk> diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c index 796ad9c..7779934 100644 --- a/libexec/rexecd/rexecd.c +++ b/libexec/rexecd/rexecd.c @@ -100,7 +100,13 @@ doit(f, fromp) struct sockaddr_in *fromp; { char cmdbuf[NCARGS+1], *cp, *namep; +#ifdef SKEY + char *skey_crypt(); + int permit_passwd = authfile(inet_ntoa(fromp->sin_addr)); + char user[16], pass[100]; +#else /* SKEY */ char user[16], pass[16]; +#endif /* SKEY */ struct passwd *pwd; int s; u_short port; @@ -156,7 +162,11 @@ doit(f, fromp) } endpwent(); if (*pwd->pw_passwd != '\0') { +#ifdef SKEY + namep = skey_crypt(pass, pwd->pw_passwd, pwd, permit_passwd); +#else /* SKEY */ namep = crypt(pass, pwd->pw_passwd); +#endif /* SKEY */ if (strcmp(namep, pwd->pw_passwd)) { error("Password incorrect.\n"); exit(1); |