1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-18 03:00:59 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-18 03:00:59 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-11-07 06:04:14 +08:00
|
|
|
/*
|
2000-03-17 10:07:59 +08:00
|
|
|
* int lutil_passwd(
|
|
|
|
* const struct berval *passwd,
|
|
|
|
* const struct berval *cred,
|
|
|
|
* const char **schemes )
|
1998-11-07 06:04:14 +08:00
|
|
|
*
|
2000-03-17 10:07:59 +08:00
|
|
|
* Returns true if user supplied credentials (cred) matches
|
|
|
|
* the stored password (passwd).
|
1998-11-07 06:04:14 +08:00
|
|
|
*
|
|
|
|
* Due to the use of the crypt(3) function
|
|
|
|
* this routine is NOT thread-safe.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
1999-12-08 14:44:22 +08:00
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
#include <ac/stdlib.h>
|
1998-11-07 06:04:14 +08:00
|
|
|
#include <ac/string.h>
|
2001-02-03 00:07:12 +08:00
|
|
|
#include <ac/unistd.h>
|
1998-11-07 06:04:14 +08:00
|
|
|
|
2000-05-10 12:29:51 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
2002-04-16 12:05:51 +08:00
|
|
|
# ifdef HAVE_SASL_SASL_H
|
|
|
|
# include <sasl/sasl.h>
|
|
|
|
# else
|
|
|
|
# include <sasl.h>
|
|
|
|
# endif
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#ifdef SLAPD_KPASSWD
|
|
|
|
# include <ac/krb.h>
|
|
|
|
# include <ac/krb5.h>
|
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-08-10 08:32:25 +08:00
|
|
|
/* KPASSWD/krb.h brings in a conflicting des.h so don't use both.
|
|
|
|
* configure currently requires OpenSSL to enable LMHASH. Obviously
|
|
|
|
* this requirement can be fulfilled by the KRB DES library as well.
|
|
|
|
*/
|
|
|
|
#if defined(SLAPD_LMHASH) && !defined(DES_ENCRYPT)
|
|
|
|
# include <openssl/des.h>
|
|
|
|
#endif /* SLAPD_LMHASH */
|
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#include <ac/param.h>
|
|
|
|
|
2001-01-18 08:35:09 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
2001-03-15 11:09:52 +08:00
|
|
|
# include <ac/crypt.h>
|
1998-11-07 06:04:14 +08:00
|
|
|
|
2001-03-15 11:09:52 +08:00
|
|
|
# if defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD )
|
|
|
|
# ifdef HAVE_SHADOW_H
|
1999-06-27 04:52:59 +08:00
|
|
|
# include <shadow.h>
|
2001-03-15 11:09:52 +08:00
|
|
|
# endif
|
|
|
|
# ifdef HAVE_PWD_H
|
1999-06-27 04:52:59 +08:00
|
|
|
# include <pwd.h>
|
2001-03-15 11:09:52 +08:00
|
|
|
# endif
|
|
|
|
# ifdef HAVE_AIX_SECURITY
|
2000-05-11 18:10:53 +08:00
|
|
|
# include <userpw.h>
|
2001-03-15 11:09:52 +08:00
|
|
|
# endif
|
|
|
|
# endif
|
2000-05-11 18:10:53 +08:00
|
|
|
#endif
|
1999-06-27 04:52:59 +08:00
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#include <lber.h>
|
|
|
|
|
2000-09-07 02:21:39 +08:00
|
|
|
#include "ldap_pvt.h"
|
2002-09-07 09:51:12 +08:00
|
|
|
#include "lber_pvt.h"
|
2000-09-07 02:21:39 +08:00
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#include "lutil_md5.h"
|
|
|
|
#include "lutil_sha1.h"
|
|
|
|
#include "lutil.h"
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
static const unsigned char crypt64[] =
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890./";
|
|
|
|
|
2001-06-13 11:47:17 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
2001-06-14 10:20:05 +08:00
|
|
|
static char *salt_format = NULL;
|
2001-06-13 11:47:17 +08:00
|
|
|
#endif
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
struct pw_scheme {
|
|
|
|
struct berval name;
|
|
|
|
LUTIL_PASSWD_CHK_FUNC *chk_fn;
|
|
|
|
LUTIL_PASSWD_HASH_FUNC *hash_fn;
|
|
|
|
};
|
|
|
|
|
2003-03-11 13:58:53 +08:00
|
|
|
struct pw_slist {
|
|
|
|
struct pw_slist *next;
|
2003-03-13 07:07:09 +08:00
|
|
|
struct pw_scheme s;
|
1999-12-08 12:37:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* password check routines */
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_md5;
|
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_smd5;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_smd5;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_md5;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
#ifdef LUTIL_SHA1_BYTES
|
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_ssha1;
|
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_sha1;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_sha1;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_ssha1;
|
2001-05-03 03:49:44 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-11-23 04:18:50 +08:00
|
|
|
#ifdef SLAPD_LMHASH
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_lanman;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_lanman;
|
2000-11-23 04:18:50 +08:00
|
|
|
#endif
|
|
|
|
|
2002-09-25 05:21:35 +08:00
|
|
|
#ifdef SLAPD_NS_MTA_MD5
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_ns_mta_md5;
|
2002-09-07 09:51:12 +08:00
|
|
|
#endif
|
|
|
|
|
2000-05-10 12:29:51 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_sasl;
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SLAPD_KPASSWD
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_kerberos;
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
2000-01-09 02:42:11 +08:00
|
|
|
|
2000-05-11 07:26:42 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_crypt;
|
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_crypt;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-05-12 04:00:47 +08:00
|
|
|
#if defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD )
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_CHK_FUNC chk_unix;
|
2000-05-11 07:26:42 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
/* password hash routines */
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-06-12 08:43:34 +08:00
|
|
|
#ifdef SLAPD_CLEARTEXT
|
2003-03-13 07:07:09 +08:00
|
|
|
static LUTIL_PASSWD_HASH_FUNC hash_clear;
|
2002-06-12 08:43:34 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-11 13:58:53 +08:00
|
|
|
static struct pw_slist *pw_schemes;
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
static const struct pw_scheme pw_schemes_default[] =
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2001-05-03 03:49:44 +08:00
|
|
|
#ifdef LUTIL_SHA1_BYTES
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{SSHA}"), chk_ssha1, hash_ssha1 },
|
|
|
|
{ BER_BVC("{SHA}"), chk_sha1, hash_sha1 },
|
2001-05-03 03:49:44 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{SMD5}"), chk_smd5, hash_smd5 },
|
|
|
|
{ BER_BVC("{MD5}"), chk_md5, hash_md5 },
|
1999-06-30 06:24:53 +08:00
|
|
|
|
2000-11-23 04:18:50 +08:00
|
|
|
#ifdef SLAPD_LMHASH
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{LANMAN}"), chk_lanman, hash_lanman },
|
2000-11-23 04:18:50 +08:00
|
|
|
#endif /* SLAPD_LMHASH */
|
|
|
|
|
2002-09-25 05:21:35 +08:00
|
|
|
#ifdef SLAPD_NS_MTA_MD5
|
|
|
|
{ BER_BVC("{NS-MTA-MD5}"), chk_ns_mta_md5, NULL },
|
|
|
|
#endif /* SLAPD_NS_MTA_MD5 */
|
2002-09-07 09:51:12 +08:00
|
|
|
|
2000-05-10 12:29:51 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{SASL}"), chk_sasl, NULL },
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#ifdef SLAPD_KPASSWD
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{KERBEROS}"), chk_kerberos, NULL },
|
2000-01-09 02:42:11 +08:00
|
|
|
#endif
|
|
|
|
|
1999-09-26 06:13:25 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{CRYPT}"), chk_crypt, hash_crypt },
|
2000-05-11 18:10:53 +08:00
|
|
|
# if defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD )
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVC("{UNIX}"), chk_unix, NULL },
|
2000-05-11 07:26:42 +08:00
|
|
|
# endif
|
1999-09-26 06:13:25 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-09-26 06:13:25 +08:00
|
|
|
#ifdef SLAPD_CLEARTEXT
|
2003-03-13 07:07:09 +08:00
|
|
|
/* pseudo scheme */
|
2002-09-07 09:51:12 +08:00
|
|
|
{ {0, "{CLEARTEXT}"}, NULL, hash_clear },
|
1999-09-26 06:13:25 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-09-07 09:51:12 +08:00
|
|
|
{ BER_BVNULL, NULL, NULL }
|
1999-09-26 06:13:25 +08:00
|
|
|
};
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
int lutil_passwd_add(
|
|
|
|
struct berval *scheme,
|
|
|
|
LUTIL_PASSWD_CHK_FUNC *chk,
|
|
|
|
LUTIL_PASSWD_HASH_FUNC *hash )
|
2003-03-11 13:58:53 +08:00
|
|
|
{
|
|
|
|
struct pw_slist *ptr;
|
|
|
|
|
|
|
|
ptr = ber_memalloc( sizeof( struct pw_slist ));
|
|
|
|
if (!ptr) return -1;
|
|
|
|
ptr->next = pw_schemes;
|
2003-03-13 07:07:09 +08:00
|
|
|
ptr->s.name = *scheme;
|
|
|
|
ptr->s.chk_fn = chk;
|
|
|
|
ptr->s.hash_fn = hash;
|
2003-03-11 13:58:53 +08:00
|
|
|
pw_schemes = ptr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lutil_passwd_init()
|
|
|
|
{
|
|
|
|
struct pw_slist *ptr;
|
2003-03-13 07:07:09 +08:00
|
|
|
struct pw_scheme *s;
|
2003-03-11 13:58:53 +08:00
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
for( s=(struct pw_scheme *)pw_schemes_default; s->name.bv_val; s++) {
|
|
|
|
if ( lutil_passwd_add( &s->name, s->chk_fn, s->hash_fn )) break;
|
2003-03-11 13:58:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void lutil_passwd_destroy()
|
|
|
|
{
|
|
|
|
struct pw_slist *ptr, *next;
|
|
|
|
|
|
|
|
for( ptr=pw_schemes; ptr; ptr=next ) {
|
|
|
|
next = ptr->next;
|
|
|
|
ber_memfree( ptr );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
static const struct pw_scheme *get_scheme(
|
1999-12-08 12:37:59 +08:00
|
|
|
const char* scheme )
|
|
|
|
{
|
2003-03-11 13:58:53 +08:00
|
|
|
struct pw_slist *pws;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-11 13:58:53 +08:00
|
|
|
if (!pw_schemes) lutil_passwd_init();
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-03-11 13:58:53 +08:00
|
|
|
for( pws=pw_schemes; pws; pws=pws->next ) {
|
|
|
|
if( strcasecmp(scheme, pws->s.name.bv_val ) == 0 ) {
|
|
|
|
return &(pws->s);
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
1999-09-26 06:13:25 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
int lutil_passwd_scheme(
|
|
|
|
const char* scheme )
|
|
|
|
{
|
|
|
|
if( scheme == NULL ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_scheme(scheme) != NULL;
|
|
|
|
}
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
static int is_allowed_scheme(
|
1999-09-26 06:13:25 +08:00
|
|
|
const char* scheme,
|
|
|
|
const char** schemes )
|
1999-06-30 06:24:53 +08:00
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
int i;
|
1999-06-30 06:24:53 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
if( schemes == NULL ) return 1;
|
|
|
|
|
|
|
|
for( i=0; schemes[i] != NULL; i++ ) {
|
|
|
|
if( strcasecmp( scheme, schemes[i] ) == 0 ) {
|
|
|
|
return 1;
|
|
|
|
}
|
1999-06-30 06:24:53 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
return 0;
|
|
|
|
}
|
1999-06-30 06:24:53 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
static struct berval *passwd_scheme(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct pw_scheme *scheme,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2002-08-07 08:47:57 +08:00
|
|
|
struct berval *bv,
|
1999-12-08 12:37:59 +08:00
|
|
|
const char** allowed )
|
|
|
|
{
|
1999-12-09 09:11:16 +08:00
|
|
|
if( !is_allowed_scheme( scheme->name.bv_val, allowed ) ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
1999-06-30 06:24:53 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( passwd->bv_len >= scheme->name.bv_len ) {
|
|
|
|
if( strncasecmp( passwd->bv_val, scheme->name.bv_val, scheme->name.bv_len ) == 0 ) {
|
|
|
|
bv->bv_val = &passwd->bv_val[scheme->name.bv_len];
|
|
|
|
bv->bv_len = passwd->bv_len - scheme->name.bv_len;
|
|
|
|
|
|
|
|
return bv;
|
|
|
|
}
|
1999-06-30 06:24:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1998-11-07 06:04:14 +08:00
|
|
|
/*
|
1998-12-01 11:36:37 +08:00
|
|
|
* Return 0 if creds are good.
|
1998-11-07 06:04:14 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
lutil_passwd(
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval *passwd, /* stored passwd */
|
|
|
|
const struct berval *cred, /* user cred */
|
2003-04-30 15:52:05 +08:00
|
|
|
const char **schemes,
|
|
|
|
const char **text )
|
1998-11-07 06:04:14 +08:00
|
|
|
{
|
2003-03-11 13:58:53 +08:00
|
|
|
struct pw_slist *pws;
|
1998-11-07 06:04:14 +08:00
|
|
|
|
2003-04-30 15:52:05 +08:00
|
|
|
if ( text ) *text = NULL;
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if (cred == NULL || cred->bv_len == 0 ||
|
|
|
|
passwd == NULL || passwd->bv_len == 0 )
|
|
|
|
{
|
1998-12-01 11:36:37 +08:00
|
|
|
return -1;
|
1998-11-07 06:04:14 +08:00
|
|
|
}
|
|
|
|
|
2003-03-11 13:58:53 +08:00
|
|
|
if (!pw_schemes) lutil_passwd_init();
|
|
|
|
|
|
|
|
for( pws=pw_schemes; pws; pws=pws->next ) {
|
|
|
|
if( pws->s.chk_fn ) {
|
2002-08-07 08:47:57 +08:00
|
|
|
struct berval x;
|
2003-03-11 13:58:53 +08:00
|
|
|
struct berval *p = passwd_scheme( &(pws->s),
|
2002-08-07 08:47:57 +08:00
|
|
|
passwd, &x, schemes );
|
1998-11-07 06:04:14 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
if( p != NULL ) {
|
2003-04-30 15:52:05 +08:00
|
|
|
return (pws->s.chk_fn)( &(pws->s.name), p, cred, text );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-11-07 06:04:14 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-11-07 06:04:14 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
#ifdef SLAPD_CLEARTEXT
|
|
|
|
if( is_allowed_scheme("{CLEARTEXT}", schemes ) ) {
|
2002-07-11 06:04:14 +08:00
|
|
|
return (( passwd->bv_len == cred->bv_len ) &&
|
|
|
|
( passwd->bv_val[0] != '{' /*'}'*/ ))
|
1999-12-09 09:11:16 +08:00
|
|
|
? memcmp( passwd->bv_val, cred->bv_val, passwd->bv_len )
|
|
|
|
: 1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
#endif
|
2000-05-13 08:10:24 +08:00
|
|
|
return 1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-11-07 06:04:14 +08:00
|
|
|
|
1999-12-13 12:53:59 +08:00
|
|
|
struct berval * lutil_passwd_generate( ber_len_t len )
|
1999-12-10 12:52:32 +08:00
|
|
|
{
|
|
|
|
struct berval *pw;
|
|
|
|
|
|
|
|
if( len < 1 ) return NULL;
|
|
|
|
|
|
|
|
pw = ber_memalloc( sizeof( struct berval ) );
|
|
|
|
if( pw == NULL ) return NULL;
|
|
|
|
|
|
|
|
pw->bv_len = len;
|
|
|
|
pw->bv_val = ber_memalloc( len + 1 );
|
|
|
|
|
|
|
|
if( pw->bv_val == NULL ) {
|
|
|
|
ber_memfree( pw );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
if( lutil_entropy( (unsigned char *) pw->bv_val, pw->bv_len) < 0 ) {
|
1999-12-10 12:52:32 +08:00
|
|
|
ber_bvfree( pw );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( len = 0; len < pw->bv_len; len++ ) {
|
|
|
|
pw->bv_val[len] = crypt64[
|
|
|
|
pw->bv_val[len] % (sizeof(crypt64)-1) ];
|
|
|
|
}
|
|
|
|
|
|
|
|
pw->bv_val[len] = '\0';
|
|
|
|
|
|
|
|
return pw;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct berval * lutil_passwd_hash(
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const char * method,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct pw_scheme *sc = get_scheme( method );
|
1998-11-07 06:04:14 +08:00
|
|
|
|
2003-04-30 15:52:05 +08:00
|
|
|
if( text ) *text = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
if( sc == NULL ) return NULL;
|
1999-12-10 12:52:32 +08:00
|
|
|
if( ! sc->hash_fn ) return NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-04-30 15:52:05 +08:00
|
|
|
return (sc->hash_fn)( &sc->name, passwd, text );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2001-12-18 06:42:55 +08:00
|
|
|
/* pw_string is only called when SLAPD_LMHASH or SLAPD_CRYPT is defined */
|
|
|
|
#if defined(SLAPD_LMHASH) || defined(SLAPD_CRYPT)
|
1999-12-09 09:11:16 +08:00
|
|
|
static struct berval * pw_string(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval *passwd )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval *pw = ber_memalloc( sizeof( struct berval ) );
|
1999-12-08 12:37:59 +08:00
|
|
|
if( pw == NULL ) return NULL;
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
pw->bv_len = sc->bv_len + passwd->bv_len;
|
1999-12-09 09:11:16 +08:00
|
|
|
pw->bv_val = ber_memalloc( pw->bv_len + 1 );
|
|
|
|
|
|
|
|
if( pw->bv_val == NULL ) {
|
|
|
|
ber_memfree( pw );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
AC_MEMCPY( pw->bv_val, sc->bv_val, sc->bv_len );
|
|
|
|
AC_MEMCPY( &pw->bv_val[sc->bv_len], passwd->bv_val, passwd->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
pw->bv_val[pw->bv_len] = '\0';
|
1999-12-08 12:37:59 +08:00
|
|
|
return pw;
|
|
|
|
}
|
2001-12-18 06:42:55 +08:00
|
|
|
#endif /* SLAPD_LMHASH || SLAPD_CRYPT */
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
static struct berval * pw_string64(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval *hash,
|
|
|
|
const struct berval *salt )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
int rc;
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval string;
|
|
|
|
struct berval *b64 = ber_memalloc( sizeof(struct berval) );
|
1999-12-08 12:37:59 +08:00
|
|
|
size_t b64len;
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( b64 == NULL ) return NULL;
|
|
|
|
|
|
|
|
if( salt ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
/* need to base64 combined string */
|
1999-12-09 09:11:16 +08:00
|
|
|
string.bv_len = hash->bv_len + salt->bv_len;
|
|
|
|
string.bv_val = ber_memalloc( string.bv_len + 1 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( string.bv_val == NULL ) {
|
|
|
|
ber_memfree( b64 );
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
1998-11-07 06:04:14 +08:00
|
|
|
}
|
|
|
|
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( string.bv_val, hash->bv_val,
|
1999-12-09 09:11:16 +08:00
|
|
|
hash->bv_len );
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( &string.bv_val[hash->bv_len], salt->bv_val,
|
1999-12-09 09:11:16 +08:00
|
|
|
salt->bv_len );
|
|
|
|
string.bv_val[string.bv_len] = '\0';
|
1999-12-08 15:07:18 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
} else {
|
1999-12-09 09:11:16 +08:00
|
|
|
string = *hash;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
b64len = LUTIL_BASE64_ENCODE_LEN( string.bv_len ) + 1;
|
2003-03-13 07:07:09 +08:00
|
|
|
b64->bv_len = b64len + sc->bv_len;
|
1999-12-09 09:11:16 +08:00
|
|
|
b64->bv_val = ber_memalloc( b64->bv_len + 1 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( b64->bv_val == NULL ) {
|
|
|
|
if( salt ) ber_memfree( string.bv_val );
|
|
|
|
ber_memfree( b64 );
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
1998-12-30 05:45:08 +08:00
|
|
|
|
2003-03-13 07:07:09 +08:00
|
|
|
AC_MEMCPY(b64->bv_val, sc->bv_val, sc->bv_len);
|
1999-12-09 09:11:16 +08:00
|
|
|
|
|
|
|
rc = lutil_b64_ntop(
|
2003-05-02 21:29:28 +08:00
|
|
|
(unsigned char *) string.bv_val, string.bv_len,
|
2003-03-13 07:07:09 +08:00
|
|
|
&b64->bv_val[sc->bv_len], b64len );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( salt ) ber_memfree( string.bv_val );
|
2000-04-25 21:28:03 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
if( rc < 0 ) {
|
1999-12-09 09:11:16 +08:00
|
|
|
ber_bvfree( b64 );
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-04-25 21:28:03 +08:00
|
|
|
/* recompute length */
|
2003-03-13 07:07:09 +08:00
|
|
|
b64->bv_len = sc->bv_len + rc;
|
2000-04-25 21:28:03 +08:00
|
|
|
assert( strlen(b64->bv_val) == b64->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
return b64;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* PASSWORD CHECK ROUTINES */
|
|
|
|
|
2001-05-03 03:49:44 +08:00
|
|
|
#ifdef LUTIL_SHA1_BYTES
|
1999-12-08 12:37:59 +08:00
|
|
|
static int chk_ssha1(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_SHA1_CTX SHA1context;
|
1999-12-08 14:44:22 +08:00
|
|
|
unsigned char SHA1digest[LUTIL_SHA1_BYTES];
|
1999-12-08 12:37:59 +08:00
|
|
|
int rc;
|
|
|
|
unsigned char *orig_pass = NULL;
|
2003-01-21 07:46:35 +08:00
|
|
|
|
|
|
|
/* safety check */
|
|
|
|
if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) <= sizeof(SHA1digest)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-04-25 21:28:03 +08:00
|
|
|
/* decode base64 password */
|
1999-12-08 14:44:22 +08:00
|
|
|
orig_pass = (unsigned char *) ber_memalloc( (size_t) (
|
1999-12-09 09:11:16 +08:00
|
|
|
LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-08 14:44:22 +08:00
|
|
|
if( orig_pass == NULL ) return -1;
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len);
|
|
|
|
|
2003-11-23 00:06:38 +08:00
|
|
|
if (rc < 0 || (unsigned)rc <= sizeof(SHA1digest)) {
|
1999-12-08 14:44:22 +08:00
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-12-30 13:32:17 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
/* hash credentials with salt */
|
|
|
|
lutil_SHA1Init(&SHA1context);
|
|
|
|
lutil_SHA1Update(&SHA1context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *) cred->bv_val, cred->bv_len);
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_SHA1Update(&SHA1context,
|
|
|
|
(const unsigned char *) &orig_pass[sizeof(SHA1digest)],
|
|
|
|
rc - sizeof(SHA1digest));
|
|
|
|
lutil_SHA1Final(SHA1digest, &SHA1context);
|
1998-12-30 13:32:17 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
/* compare */
|
|
|
|
rc = memcmp((char *)orig_pass, (char *)SHA1digest, sizeof(SHA1digest));
|
1999-12-08 14:44:22 +08:00
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return rc ? 1 : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-12-30 13:32:17 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
static int chk_sha1(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_SHA1_CTX SHA1context;
|
1999-12-08 14:44:22 +08:00
|
|
|
unsigned char SHA1digest[LUTIL_SHA1_BYTES];
|
1999-12-09 09:11:16 +08:00
|
|
|
int rc;
|
|
|
|
unsigned char *orig_pass = NULL;
|
|
|
|
|
|
|
|
/* base64 un-encode password */
|
|
|
|
orig_pass = (unsigned char *) ber_memalloc( (size_t) (
|
|
|
|
LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( orig_pass == NULL ) return -1;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len);
|
|
|
|
|
|
|
|
if( rc != sizeof(SHA1digest) ) {
|
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1999-12-09 09:11:16 +08:00
|
|
|
|
|
|
|
/* hash credentials with salt */
|
|
|
|
lutil_SHA1Init(&SHA1context);
|
|
|
|
lutil_SHA1Update(&SHA1context,
|
|
|
|
(const unsigned char *) cred->bv_val, cred->bv_len);
|
|
|
|
lutil_SHA1Final(SHA1digest, &SHA1context);
|
|
|
|
|
|
|
|
/* compare */
|
|
|
|
rc = memcmp((char *)orig_pass, (char *)SHA1digest, sizeof(SHA1digest));
|
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return rc ? 1 : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
2001-05-03 03:49:44 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
static int chk_smd5(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_MD5_CTX MD5context;
|
1999-12-08 14:44:22 +08:00
|
|
|
unsigned char MD5digest[LUTIL_MD5_BYTES];
|
1999-12-08 12:37:59 +08:00
|
|
|
int rc;
|
|
|
|
unsigned char *orig_pass = NULL;
|
|
|
|
|
2003-01-21 07:46:35 +08:00
|
|
|
/* safety check */
|
|
|
|
if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) <= sizeof(MD5digest)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
/* base64 un-encode password */
|
1999-12-08 14:44:22 +08:00
|
|
|
orig_pass = (unsigned char *) ber_memalloc( (size_t) (
|
1999-12-09 09:11:16 +08:00
|
|
|
LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-08 14:44:22 +08:00
|
|
|
if( orig_pass == NULL ) return -1;
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len);
|
2003-01-21 07:46:35 +08:00
|
|
|
|
2003-11-23 00:06:38 +08:00
|
|
|
if (rc < 0 || (unsigned)rc <= sizeof(MD5digest)) {
|
1999-12-08 14:44:22 +08:00
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* hash credentials with salt */
|
|
|
|
lutil_MD5Init(&MD5context);
|
|
|
|
lutil_MD5Update(&MD5context,
|
2000-10-18 08:29:21 +08:00
|
|
|
(const unsigned char *) cred->bv_val,
|
|
|
|
cred->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_MD5Update(&MD5context,
|
2000-10-18 08:29:21 +08:00
|
|
|
&orig_pass[sizeof(MD5digest)],
|
1999-12-08 12:37:59 +08:00
|
|
|
rc - sizeof(MD5digest));
|
|
|
|
lutil_MD5Final(MD5digest, &MD5context);
|
|
|
|
|
|
|
|
/* compare */
|
|
|
|
rc = memcmp((char *)orig_pass, (char *)MD5digest, sizeof(MD5digest));
|
1999-12-08 14:44:22 +08:00
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return rc ? 1 : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int chk_md5(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_MD5_CTX MD5context;
|
1999-12-08 14:44:22 +08:00
|
|
|
unsigned char MD5digest[LUTIL_MD5_BYTES];
|
1999-12-09 09:11:16 +08:00
|
|
|
int rc;
|
|
|
|
unsigned char *orig_pass = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
/* base64 un-encode password */
|
|
|
|
orig_pass = (unsigned char *) ber_memalloc( (size_t) (
|
|
|
|
LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
if( orig_pass == NULL ) return -1;
|
|
|
|
|
|
|
|
rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len);
|
|
|
|
if ( rc != sizeof(MD5digest) ) {
|
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
/* hash credentials with salt */
|
|
|
|
lutil_MD5Init(&MD5context);
|
|
|
|
lutil_MD5Update(&MD5context,
|
2000-10-18 08:29:21 +08:00
|
|
|
(const unsigned char *) cred->bv_val,
|
|
|
|
cred->bv_len );
|
1999-12-09 09:11:16 +08:00
|
|
|
lutil_MD5Final(MD5digest, &MD5context);
|
|
|
|
|
|
|
|
/* compare */
|
|
|
|
rc = memcmp((char *)orig_pass, (char *)MD5digest, sizeof(MD5digest));
|
|
|
|
ber_memfree(orig_pass);
|
2000-04-25 21:28:03 +08:00
|
|
|
return rc ? 1 : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-12-30 13:32:17 +08:00
|
|
|
|
2000-11-23 04:18:50 +08:00
|
|
|
#ifdef SLAPD_LMHASH
|
2003-08-10 03:18:28 +08:00
|
|
|
/* pseudocode from RFC2433
|
|
|
|
* A.2 LmPasswordHash()
|
|
|
|
*
|
|
|
|
* LmPasswordHash(
|
|
|
|
* IN 0-to-14-oem-char Password,
|
|
|
|
* OUT 16-octet PasswordHash )
|
|
|
|
* {
|
|
|
|
* Set UcasePassword to the uppercased Password
|
|
|
|
* Zero pad UcasePassword to 14 characters
|
|
|
|
*
|
|
|
|
* DesHash( 1st 7-octets of UcasePassword,
|
|
|
|
* giving 1st 8-octets of PasswordHash )
|
|
|
|
*
|
|
|
|
* DesHash( 2nd 7-octets of UcasePassword,
|
|
|
|
* giving 2nd 8-octets of PasswordHash )
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* A.3 DesHash()
|
|
|
|
*
|
|
|
|
* DesHash(
|
|
|
|
* IN 7-octet Clear,
|
|
|
|
* OUT 8-octet Cypher )
|
|
|
|
* {
|
|
|
|
* *
|
|
|
|
* * Make Cypher an irreversibly encrypted form of Clear by
|
|
|
|
* * encrypting known text using Clear as the secret key.
|
|
|
|
* * The known text consists of the string
|
|
|
|
* *
|
|
|
|
* * KGS!@#$%
|
|
|
|
* *
|
|
|
|
*
|
|
|
|
* Set StdText to "KGS!@#$%"
|
|
|
|
* DesEncrypt( StdText, Clear, giving Cypher )
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* A.4 DesEncrypt()
|
|
|
|
*
|
|
|
|
* DesEncrypt(
|
|
|
|
* IN 8-octet Clear,
|
|
|
|
* IN 7-octet Key,
|
|
|
|
* OUT 8-octet Cypher )
|
|
|
|
* {
|
|
|
|
* *
|
|
|
|
* * Use the DES encryption algorithm [4] in ECB mode [9]
|
|
|
|
* * to encrypt Clear into Cypher such that Cypher can
|
|
|
|
* * only be decrypted back to Clear by providing Key.
|
|
|
|
* * Note that the DES algorithm takes as input a 64-bit
|
|
|
|
* * stream where the 8th, 16th, 24th, etc. bits are
|
|
|
|
* * parity bits ignored by the encrypting algorithm.
|
|
|
|
* * Unless you write your own DES to accept 56-bit input
|
|
|
|
* * without parity, you will need to insert the parity bits
|
|
|
|
* * yourself.
|
|
|
|
* *
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void lmPasswd_to_key(
|
|
|
|
const unsigned char *lmPasswd,
|
|
|
|
des_cblock *key)
|
|
|
|
{
|
|
|
|
/* make room for parity bits */
|
|
|
|
((char *)key)[0] = lmPasswd[0];
|
|
|
|
((char *)key)[1] = ((lmPasswd[0]&0x01)<<7) | (lmPasswd[1]>>1);
|
|
|
|
((char *)key)[2] = ((lmPasswd[1]&0x03)<<6) | (lmPasswd[2]>>2);
|
|
|
|
((char *)key)[3] = ((lmPasswd[2]&0x07)<<5) | (lmPasswd[3]>>3);
|
|
|
|
((char *)key)[4] = ((lmPasswd[3]&0x0F)<<4) | (lmPasswd[4]>>4);
|
|
|
|
((char *)key)[5] = ((lmPasswd[4]&0x1F)<<3) | (lmPasswd[5]>>5);
|
|
|
|
((char *)key)[6] = ((lmPasswd[5]&0x3F)<<2) | (lmPasswd[6]>>6);
|
|
|
|
((char *)key)[7] = ((lmPasswd[6]&0x7F)<<1);
|
|
|
|
|
|
|
|
des_set_odd_parity( key );
|
|
|
|
}
|
|
|
|
|
2000-11-23 04:18:50 +08:00
|
|
|
static int chk_lanman(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2000-11-23 04:18:50 +08:00
|
|
|
const struct berval *passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *cred,
|
|
|
|
const char **text )
|
2000-11-23 04:18:50 +08:00
|
|
|
{
|
2003-08-10 03:18:28 +08:00
|
|
|
int i;
|
|
|
|
char UcasePassword[15];
|
|
|
|
des_cblock key;
|
|
|
|
des_key_schedule schedule;
|
|
|
|
des_cblock StdText = "KGS!@#$%";
|
|
|
|
des_cblock PasswordHash1, PasswordHash2;
|
|
|
|
char PasswordHash[33], storedPasswordHash[33];
|
|
|
|
|
|
|
|
for( i=0; i<cred->bv_len; i++) {
|
|
|
|
if(cred->bv_val[i] == '\0') {
|
|
|
|
return -1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cred->bv_val[i] != '\0' ) {
|
|
|
|
return -1; /* passwd must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy( UcasePassword, cred->bv_val, 14 );
|
|
|
|
UcasePassword[14] = '\0';
|
|
|
|
ldap_pvt_str2upper( UcasePassword );
|
|
|
|
|
|
|
|
lmPasswd_to_key( UcasePassword, &key );
|
|
|
|
des_set_key_unchecked( &key, schedule );
|
|
|
|
des_ecb_encrypt( &StdText, &PasswordHash1, schedule , DES_ENCRYPT );
|
|
|
|
|
|
|
|
lmPasswd_to_key( &UcasePassword[7], &key );
|
|
|
|
des_set_key_unchecked( &key, schedule );
|
|
|
|
des_ecb_encrypt( &StdText, &PasswordHash2, schedule , DES_ENCRYPT );
|
|
|
|
|
|
|
|
sprintf( PasswordHash, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
|
|
|
|
PasswordHash1[0],PasswordHash1[1],PasswordHash1[2],PasswordHash1[3],
|
|
|
|
PasswordHash1[4],PasswordHash1[5],PasswordHash1[6],PasswordHash1[7],
|
|
|
|
PasswordHash2[0],PasswordHash2[1],PasswordHash2[2],PasswordHash2[3],
|
|
|
|
PasswordHash2[4],PasswordHash2[5],PasswordHash2[6],PasswordHash2[7] );
|
|
|
|
|
|
|
|
/* as a precaution convert stored password hash to lower case */
|
|
|
|
strncpy( storedPasswordHash, passwd->bv_val, 32 );
|
|
|
|
storedPasswordHash[32] = '\0';
|
|
|
|
ldap_pvt_str2lower( storedPasswordHash );
|
|
|
|
|
|
|
|
return memcmp( PasswordHash, storedPasswordHash, 32) ? 1 : 0;
|
2000-11-23 04:18:50 +08:00
|
|
|
}
|
|
|
|
#endif /* SLAPD_LMHASH */
|
|
|
|
|
2002-09-25 05:21:35 +08:00
|
|
|
#ifdef SLAPD_NS_MTA_MD5
|
|
|
|
static int chk_ns_mta_md5(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2002-09-07 09:51:12 +08:00
|
|
|
const struct berval *passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *cred,
|
|
|
|
const char **text )
|
2002-09-07 09:51:12 +08:00
|
|
|
{
|
|
|
|
lutil_MD5_CTX MD5context;
|
|
|
|
unsigned char MD5digest[LUTIL_MD5_BYTES], c;
|
2003-08-10 02:47:16 +08:00
|
|
|
char buffer[LUTIL_MD5_BYTES*2];
|
2002-09-07 09:51:12 +08:00
|
|
|
int i;
|
|
|
|
|
2003-10-17 12:40:16 +08:00
|
|
|
if( passwd->bv_len != LUTIL_MD5_BYTES*2 ) {
|
2003-08-10 02:47:16 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-09-07 09:51:12 +08:00
|
|
|
/* hash credentials with salt */
|
|
|
|
lutil_MD5Init(&MD5context);
|
|
|
|
lutil_MD5Update(&MD5context,
|
|
|
|
(const unsigned char *) &passwd->bv_val[32],
|
|
|
|
32 );
|
|
|
|
|
|
|
|
c = 0x59;
|
|
|
|
lutil_MD5Update(&MD5context,
|
|
|
|
(const unsigned char *) &c,
|
|
|
|
1 );
|
|
|
|
|
|
|
|
lutil_MD5Update(&MD5context,
|
|
|
|
(const unsigned char *) cred->bv_val,
|
|
|
|
cred->bv_len );
|
|
|
|
|
|
|
|
c = 0xF7;
|
|
|
|
lutil_MD5Update(&MD5context,
|
|
|
|
(const unsigned char *) &c,
|
|
|
|
1 );
|
|
|
|
|
|
|
|
lutil_MD5Update(&MD5context,
|
|
|
|
(const unsigned char *) &passwd->bv_val[32],
|
|
|
|
32 );
|
|
|
|
|
|
|
|
lutil_MD5Final(MD5digest, &MD5context);
|
|
|
|
|
|
|
|
for( i=0; i < sizeof( MD5digest ); i++ ) {
|
|
|
|
buffer[i+i] = "0123456789abcdef"[(MD5digest[i]>>4) & 0x0F];
|
|
|
|
buffer[i+i+1] = "0123456789abcdef"[ MD5digest[i] & 0x0F];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compare */
|
2003-08-10 02:47:16 +08:00
|
|
|
return memcmp((char *)passwd->bv_val,
|
|
|
|
(char *)buffer, sizeof(buffer)) ? 1 : 0;
|
2002-09-07 09:51:12 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-05-10 12:29:51 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_conn_t *lutil_passwd_sasl_conn = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int chk_sasl(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
2000-05-10 12:29:51 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
2000-05-10 12:29:51 +08:00
|
|
|
{
|
2002-04-11 16:47:37 +08:00
|
|
|
unsigned int i;
|
2000-05-10 12:29:51 +08:00
|
|
|
int rtn;
|
|
|
|
|
|
|
|
for( i=0; i<cred->bv_len; i++) {
|
|
|
|
if(cred->bv_val[i] == '\0') {
|
|
|
|
return 1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cred->bv_val[i] != '\0' ) {
|
|
|
|
return 1; /* cred must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
|
|
|
return 1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
|
|
|
return 1; /* passwd must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
rtn = 1;
|
|
|
|
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
if( lutil_passwd_sasl_conn != NULL ) {
|
|
|
|
int sc;
|
2002-04-16 12:05:51 +08:00
|
|
|
# if SASL_VERSION_MAJOR < 2
|
2000-05-10 12:29:51 +08:00
|
|
|
sc = sasl_checkpass( lutil_passwd_sasl_conn,
|
|
|
|
passwd->bv_val, passwd->bv_len,
|
|
|
|
cred->bv_val, cred->bv_len,
|
2003-04-30 15:52:05 +08:00
|
|
|
text );
|
2002-04-16 12:05:51 +08:00
|
|
|
# else
|
|
|
|
sc = sasl_checkpass( lutil_passwd_sasl_conn,
|
|
|
|
passwd->bv_val, passwd->bv_len,
|
|
|
|
cred->bv_val, cred->bv_len );
|
|
|
|
# endif
|
2000-05-10 12:29:51 +08:00
|
|
|
rtn = ( sc != SASL_OK );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return rtn;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#ifdef SLAPD_KPASSWD
|
|
|
|
static int chk_kerberos(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
2000-01-09 02:42:11 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
2000-01-09 02:42:11 +08:00
|
|
|
{
|
2002-04-11 16:47:37 +08:00
|
|
|
unsigned int i;
|
2000-01-09 02:42:11 +08:00
|
|
|
int rtn;
|
|
|
|
|
|
|
|
for( i=0; i<cred->bv_len; i++) {
|
|
|
|
if(cred->bv_val[i] == '\0') {
|
|
|
|
return 1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cred->bv_val[i] != '\0' ) {
|
|
|
|
return 1; /* cred must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
|
|
|
return 1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
|
|
|
return 1; /* passwd must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
rtn = 1;
|
|
|
|
|
|
|
|
#ifdef HAVE_KRB5 /* HAVE_HEIMDAL_KRB5 */
|
|
|
|
{
|
|
|
|
/* Portions:
|
|
|
|
* Copyright (c) 1997, 1998, 1999 Kungliga Tekniska H\xf6gskolan
|
|
|
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
|
|
|
* 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. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE 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 INSTITUTE 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
krb5_context context;
|
|
|
|
krb5_error_code ret;
|
|
|
|
krb5_creds creds;
|
|
|
|
krb5_get_init_creds_opt get_options;
|
|
|
|
krb5_verify_init_creds_opt verify_options;
|
|
|
|
krb5_principal client, server;
|
|
|
|
#ifdef notdef
|
|
|
|
krb5_preauthtype pre_auth_types[] = {KRB5_PADATA_ENC_TIMESTAMP};
|
|
|
|
#endif
|
|
|
|
|
2000-01-11 05:37:04 +08:00
|
|
|
ret = krb5_init_context( &context );
|
2000-01-09 02:42:11 +08:00
|
|
|
if (ret) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef notdef
|
|
|
|
krb5_get_init_creds_opt_set_preauth_list(&get_options,
|
|
|
|
pre_auth_types, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
krb5_get_init_creds_opt_init( &get_options );
|
|
|
|
|
|
|
|
krb5_verify_init_creds_opt_init( &verify_options );
|
|
|
|
|
|
|
|
ret = krb5_parse_name( context, passwd->bv_val, &client );
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
krb5_free_context( context );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = krb5_get_init_creds_password( context,
|
|
|
|
&creds, client, cred->bv_val, NULL,
|
|
|
|
NULL, 0, NULL, &get_options );
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
krb5_free_principal( context, client );
|
|
|
|
krb5_free_context( context );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2000-08-15 09:55:43 +08:00
|
|
|
char *host = ldap_pvt_get_fqdn( NULL );
|
2000-01-09 02:42:11 +08:00
|
|
|
|
2000-08-15 09:55:43 +08:00
|
|
|
if( host == NULL ) {
|
2000-01-09 02:42:11 +08:00
|
|
|
krb5_free_principal( context, client );
|
|
|
|
krb5_free_context( context );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = krb5_sname_to_principal( context,
|
|
|
|
host, "ldap", KRB5_NT_SRV_HST, &server );
|
2000-08-15 09:55:43 +08:00
|
|
|
|
|
|
|
ber_memfree( host );
|
2000-01-09 02:42:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
krb5_free_principal( context, client );
|
|
|
|
krb5_free_context( context );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = krb5_verify_init_creds( context,
|
|
|
|
&creds, server, NULL, NULL, &verify_options );
|
|
|
|
|
|
|
|
krb5_free_principal( context, client );
|
|
|
|
krb5_free_principal( context, server );
|
2000-09-07 02:21:39 +08:00
|
|
|
krb5_free_cred_contents( context, &creds );
|
2000-01-09 02:42:11 +08:00
|
|
|
krb5_free_context( context );
|
|
|
|
|
|
|
|
rtn = !!ret;
|
|
|
|
}
|
|
|
|
#elif defined(HAVE_KRB4)
|
|
|
|
{
|
|
|
|
/* Borrowed from Heimdal kpopper */
|
|
|
|
/* Portions:
|
|
|
|
* Copyright (c) 1989 Regents of the University of California.
|
|
|
|
* All rights reserved. The Berkeley software License Agreement
|
|
|
|
* specifies the terms and conditions for redistribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int status;
|
|
|
|
char lrealm[REALM_SZ];
|
2000-01-09 02:51:27 +08:00
|
|
|
char tkt[MAXHOSTNAMELEN];
|
2000-01-09 02:42:11 +08:00
|
|
|
|
|
|
|
status = krb_get_lrealm(lrealm,1);
|
|
|
|
if (status == KFAILURE) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-01-09 08:20:00 +08:00
|
|
|
snprintf(tkt, sizeof(tkt), "%s_slapd.%u",
|
2000-01-09 02:42:11 +08:00
|
|
|
TKT_ROOT, (unsigned)getpid());
|
|
|
|
krb_set_tkt_string (tkt);
|
|
|
|
|
|
|
|
status = krb_verify_user( passwd->bv_val, "", lrealm,
|
2000-01-09 08:20:00 +08:00
|
|
|
cred->bv_val, 1, "ldap");
|
2000-01-09 02:42:11 +08:00
|
|
|
|
|
|
|
dest_tkt(); /* no point in keeping the tickets */
|
|
|
|
|
|
|
|
return status == KFAILURE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return rtn;
|
|
|
|
}
|
|
|
|
#endif /* SLAPD_KPASSWD */
|
|
|
|
|
1998-12-30 05:45:08 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
1999-12-08 12:37:59 +08:00
|
|
|
static int chk_crypt(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2000-01-18 01:09:33 +08:00
|
|
|
char *cr;
|
2002-04-11 16:47:37 +08:00
|
|
|
unsigned int i;
|
1999-12-09 09:24:38 +08:00
|
|
|
|
|
|
|
for( i=0; i<cred->bv_len; i++) {
|
|
|
|
if(cred->bv_val[i] == '\0') {
|
|
|
|
return 1; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cred->bv_val[i] != '\0' ) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* cred must behave like a string */
|
1999-12-09 09:24:38 +08:00
|
|
|
}
|
|
|
|
|
2000-01-18 01:09:33 +08:00
|
|
|
if( passwd->bv_len < 2 ) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* passwd must be at least two characters long */
|
2000-01-18 01:09:33 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:24:38 +08:00
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* NUL character in password */
|
1999-12-09 09:24:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* passwd must behave like a string */
|
1999-12-09 09:24:38 +08:00
|
|
|
}
|
|
|
|
|
2000-01-18 01:09:33 +08:00
|
|
|
cr = crypt( cred->bv_val, passwd->bv_val );
|
|
|
|
|
|
|
|
if( cr == NULL || cr[0] == '\0' ) {
|
|
|
|
/* salt must have been invalid */
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
2000-01-18 01:09:33 +08:00
|
|
|
}
|
|
|
|
|
2000-04-25 21:28:03 +08:00
|
|
|
return strcmp( passwd->bv_val, cr ) ? 1 : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1998-12-30 05:45:08 +08:00
|
|
|
|
2000-05-11 18:10:53 +08:00
|
|
|
# if defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD )
|
1999-12-08 12:37:59 +08:00
|
|
|
static int chk_unix(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *sc,
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval * passwd,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval * cred,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2002-04-11 16:47:37 +08:00
|
|
|
unsigned int i;
|
2000-01-18 00:53:15 +08:00
|
|
|
char *pw,*cr;
|
1999-12-09 09:11:16 +08:00
|
|
|
|
|
|
|
for( i=0; i<cred->bv_len; i++) {
|
|
|
|
if(cred->bv_val[i] == '\0') {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* NUL character in password */
|
1999-12-09 09:11:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if( cred->bv_val[i] != '\0' ) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* cred must behave like a string */
|
1999-12-09 09:11:16 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:24:38 +08:00
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* NUL character in password */
|
1999-12-09 09:24:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* passwd must behave like a string */
|
1999-12-09 09:24:38 +08:00
|
|
|
}
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
{
|
2000-05-11 18:10:53 +08:00
|
|
|
struct passwd *pwd = getpwnam(passwd->bv_val);
|
1999-12-09 09:11:16 +08:00
|
|
|
|
2000-05-11 18:10:53 +08:00
|
|
|
if(pwd == NULL) {
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1; /* not found */
|
1999-12-09 09:11:16 +08:00
|
|
|
}
|
1999-06-27 04:52:59 +08:00
|
|
|
|
2000-05-11 18:10:53 +08:00
|
|
|
pw = pwd->pw_passwd;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
2000-05-11 18:10:53 +08:00
|
|
|
# ifdef HAVE_GETSPNAM
|
1999-12-09 09:11:16 +08:00
|
|
|
{
|
2000-05-11 18:10:53 +08:00
|
|
|
struct spwd *spwd = getspnam(passwd->bv_val);
|
1999-06-27 04:52:59 +08:00
|
|
|
|
2000-05-11 18:10:53 +08:00
|
|
|
if(spwd != NULL) {
|
|
|
|
pw = spwd->sp_pwdp;
|
1999-12-09 09:11:16 +08:00
|
|
|
}
|
2000-05-11 18:10:53 +08:00
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# ifdef HAVE_AIX_SECURITY
|
|
|
|
{
|
|
|
|
struct userpw *upw = getuserpw(passwd->bv_val);
|
1999-06-27 04:52:59 +08:00
|
|
|
|
2000-05-11 18:10:53 +08:00
|
|
|
if (upw != NULL) {
|
|
|
|
pw = upw->upw_passwd;
|
|
|
|
}
|
1999-12-09 09:11:16 +08:00
|
|
|
}
|
1999-06-27 04:52:59 +08:00
|
|
|
# endif
|
1999-12-09 09:11:16 +08:00
|
|
|
|
2000-01-18 01:09:33 +08:00
|
|
|
if( pw == NULL || pw[0] == '\0' || pw[1] == '\0' ) {
|
|
|
|
/* password must must be at least two characters long */
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
2000-01-18 01:09:33 +08:00
|
|
|
}
|
1999-12-09 09:11:16 +08:00
|
|
|
|
2000-01-18 00:53:15 +08:00
|
|
|
cr = crypt(cred->bv_val, pw);
|
|
|
|
|
2000-01-18 01:09:33 +08:00
|
|
|
if( cr == NULL || cr[0] == '\0' ) {
|
|
|
|
/* salt must have been invalid */
|
2000-04-25 21:28:03 +08:00
|
|
|
return -1;
|
2000-01-18 01:09:33 +08:00
|
|
|
}
|
2000-01-18 00:53:15 +08:00
|
|
|
|
2000-04-25 21:28:03 +08:00
|
|
|
return strcmp(pw, cr) ? 1 : 0;
|
1999-12-09 09:11:16 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
1999-12-09 09:11:16 +08:00
|
|
|
# endif
|
1998-12-30 05:45:08 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-01-18 00:53:15 +08:00
|
|
|
/* PASSWORD GENERATION ROUTINES */
|
|
|
|
|
2001-05-03 03:49:44 +08:00
|
|
|
#ifdef LUTIL_SHA1_BYTES
|
1999-12-10 12:52:32 +08:00
|
|
|
static struct berval *hash_ssha1(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_SHA1_CTX SHA1context;
|
1999-12-08 14:44:22 +08:00
|
|
|
unsigned char SHA1digest[LUTIL_SHA1_BYTES];
|
2003-05-02 21:29:28 +08:00
|
|
|
char saltdata[4];
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval digest;
|
|
|
|
struct berval salt;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
digest.bv_val = (char *) SHA1digest;
|
1999-12-09 09:11:16 +08:00
|
|
|
digest.bv_len = sizeof(SHA1digest);
|
|
|
|
salt.bv_val = saltdata;
|
|
|
|
salt.bv_len = sizeof(saltdata);
|
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
if( lutil_entropy( (unsigned char *) salt.bv_val, salt.bv_len) < 0 ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
1998-11-07 06:04:14 +08:00
|
|
|
}
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_SHA1Init( &SHA1context );
|
|
|
|
lutil_SHA1Update( &SHA1context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *)passwd->bv_val, passwd->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_SHA1Update( &SHA1context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *)salt.bv_val, salt.bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_SHA1Final( SHA1digest, &SHA1context );
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
return pw_string64( scheme, &digest, &salt);
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
static struct berval *hash_sha1(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_SHA1_CTX SHA1context;
|
2000-06-04 01:24:21 +08:00
|
|
|
unsigned char SHA1digest[LUTIL_SHA1_BYTES];
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval digest;
|
2003-05-02 21:29:28 +08:00
|
|
|
digest.bv_val = (char *) SHA1digest;
|
1999-12-09 09:11:16 +08:00
|
|
|
digest.bv_len = sizeof(SHA1digest);
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
lutil_SHA1Init( &SHA1context );
|
|
|
|
lutil_SHA1Update( &SHA1context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *)passwd->bv_val, passwd->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_SHA1Final( SHA1digest, &SHA1context );
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
return pw_string64( scheme, &digest, NULL);
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
2001-05-03 03:49:44 +08:00
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
static struct berval *hash_smd5(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_MD5_CTX MD5context;
|
2000-06-04 01:24:21 +08:00
|
|
|
unsigned char MD5digest[LUTIL_MD5_BYTES];
|
2003-05-02 21:29:28 +08:00
|
|
|
char saltdata[4];
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval digest;
|
|
|
|
struct berval salt;
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
digest.bv_val = (char *) MD5digest;
|
1999-12-09 09:11:16 +08:00
|
|
|
digest.bv_len = sizeof(MD5digest);
|
|
|
|
salt.bv_val = saltdata;
|
|
|
|
salt.bv_len = sizeof(saltdata);
|
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
if( lutil_entropy( (unsigned char *) salt.bv_val, salt.bv_len) < 0 ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
lutil_MD5Init( &MD5context );
|
|
|
|
lutil_MD5Update( &MD5context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *) passwd->bv_val, passwd->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_MD5Update( &MD5context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *) salt.bv_val, salt.bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_MD5Final( MD5digest, &MD5context );
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
return pw_string64( scheme, &digest, &salt );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
static struct berval *hash_md5(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
|
|
|
lutil_MD5_CTX MD5context;
|
2000-06-04 01:24:21 +08:00
|
|
|
unsigned char MD5digest[LUTIL_MD5_BYTES];
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval digest;
|
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
digest.bv_val = (char *) MD5digest;
|
1999-12-09 09:11:16 +08:00
|
|
|
digest.bv_len = sizeof(MD5digest);
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_MD5Init( &MD5context );
|
|
|
|
lutil_MD5Update( &MD5context,
|
1999-12-09 09:11:16 +08:00
|
|
|
(const unsigned char *) passwd->bv_val, passwd->bv_len );
|
1999-12-08 12:37:59 +08:00
|
|
|
lutil_MD5Final( MD5digest, &MD5context );
|
|
|
|
|
1999-12-09 09:11:16 +08:00
|
|
|
return pw_string64( scheme, &digest, NULL );
|
|
|
|
;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2000-11-23 04:18:50 +08:00
|
|
|
#ifdef SLAPD_LMHASH
|
|
|
|
static struct berval *hash_lanman(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
2000-11-23 04:18:50 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
int i;
|
|
|
|
char UcasePassword[15];
|
|
|
|
des_cblock key;
|
|
|
|
des_key_schedule schedule;
|
|
|
|
des_cblock StdText = "KGS!@#$%";
|
2003-08-10 03:18:28 +08:00
|
|
|
des_cblock PasswordHash1, PasswordHash2;
|
|
|
|
char PasswordHash[33];
|
2000-11-23 04:18:50 +08:00
|
|
|
struct berval hash;
|
|
|
|
|
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
|
|
|
return NULL; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
|
|
|
return NULL; /* passwd must behave like a string */
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy( UcasePassword, passwd->bv_val, 14 );
|
|
|
|
UcasePassword[14] = '\0';
|
|
|
|
ldap_pvt_str2upper( UcasePassword );
|
|
|
|
|
|
|
|
lmPasswd_to_key( UcasePassword, &key );
|
|
|
|
des_set_key_unchecked( &key, schedule );
|
2003-08-10 03:18:28 +08:00
|
|
|
des_ecb_encrypt( &StdText, &PasswordHash1, schedule , DES_ENCRYPT );
|
2000-11-23 04:18:50 +08:00
|
|
|
|
|
|
|
lmPasswd_to_key( &UcasePassword[7], &key );
|
|
|
|
des_set_key_unchecked( &key, schedule );
|
2003-08-10 03:18:28 +08:00
|
|
|
des_ecb_encrypt( &StdText, &PasswordHash2, schedule , DES_ENCRYPT );
|
2000-11-23 04:18:50 +08:00
|
|
|
|
2003-08-10 03:18:28 +08:00
|
|
|
sprintf( PasswordHash, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
|
|
|
|
PasswordHash1[0],PasswordHash1[1],PasswordHash1[2],PasswordHash1[3],
|
|
|
|
PasswordHash1[4],PasswordHash1[5],PasswordHash1[6],PasswordHash1[7],
|
|
|
|
PasswordHash2[0],PasswordHash2[1],PasswordHash2[2],PasswordHash2[3],
|
|
|
|
PasswordHash2[4],PasswordHash2[5],PasswordHash2[6],PasswordHash2[7] );
|
2000-11-23 04:18:50 +08:00
|
|
|
|
2003-08-10 03:18:28 +08:00
|
|
|
hash.bv_val = PasswordHash;
|
2000-11-23 04:18:50 +08:00
|
|
|
hash.bv_len = 32;
|
|
|
|
|
|
|
|
return pw_string( scheme, &hash );
|
|
|
|
}
|
|
|
|
#endif /* SLAPD_LMHASH */
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
1999-12-10 12:52:32 +08:00
|
|
|
static struct berval *hash_crypt(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
1999-12-09 09:24:38 +08:00
|
|
|
struct berval hash;
|
2001-06-13 11:47:17 +08:00
|
|
|
unsigned char salt[32]; /* salt suitable for most anything */
|
2002-04-11 16:47:37 +08:00
|
|
|
unsigned int i;
|
1999-12-09 09:24:38 +08:00
|
|
|
|
|
|
|
for( i=0; i<passwd->bv_len; i++) {
|
|
|
|
if(passwd->bv_val[i] == '\0') {
|
|
|
|
return NULL; /* NUL character in password */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( passwd->bv_val[i] != '\0' ) {
|
|
|
|
return NULL; /* passwd must behave like a string */
|
|
|
|
}
|
1998-12-01 11:36:37 +08:00
|
|
|
|
2001-06-13 11:47:17 +08:00
|
|
|
if( lutil_entropy( salt, sizeof( salt ) ) < 0 ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-06-13 11:47:17 +08:00
|
|
|
for( i=0; i< ( sizeof(salt) - 1 ); i++ ) {
|
2001-01-20 09:15:28 +08:00
|
|
|
salt[i] = crypt64[ salt[i] % (sizeof(crypt64)-1) ];
|
|
|
|
}
|
2001-06-13 11:47:17 +08:00
|
|
|
salt[sizeof( salt ) - 1 ] = '\0';
|
|
|
|
|
|
|
|
if( salt_format != NULL ) {
|
|
|
|
/* copy the salt we made into entropy before snprintfing
|
|
|
|
it back into the salt */
|
|
|
|
char entropy[sizeof(salt)];
|
2003-05-02 21:29:28 +08:00
|
|
|
strcpy( entropy, (char *) salt );
|
|
|
|
snprintf( (char *) salt, sizeof(entropy), salt_format, entropy );
|
2001-06-13 11:47:17 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2003-05-02 21:29:28 +08:00
|
|
|
hash.bv_val = crypt( passwd->bv_val, (char *) salt );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-16 10:18:50 +08:00
|
|
|
if( hash.bv_val == NULL ) return NULL;
|
2000-01-18 00:53:15 +08:00
|
|
|
|
1999-12-09 09:24:38 +08:00
|
|
|
hash.bv_len = strlen( hash.bv_val );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-01-18 00:53:15 +08:00
|
|
|
if( hash.bv_len == 0 ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-12-09 09:24:38 +08:00
|
|
|
return pw_string( scheme, &hash );
|
1998-11-07 06:04:14 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
#endif
|
2001-06-13 11:47:17 +08:00
|
|
|
|
|
|
|
int lutil_salt_format(const char *format)
|
|
|
|
{
|
|
|
|
#ifdef SLAPD_CRYPT
|
2001-06-14 10:20:05 +08:00
|
|
|
free( salt_format );
|
2001-06-13 13:40:24 +08:00
|
|
|
|
2001-06-14 10:20:05 +08:00
|
|
|
salt_format = format != NULL ? strdup( format ) : NULL;
|
2001-06-13 11:47:17 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-12 08:43:34 +08:00
|
|
|
|
|
|
|
#ifdef SLAPD_CLEARTEXT
|
|
|
|
static struct berval *hash_clear(
|
2003-03-13 07:07:09 +08:00
|
|
|
const struct berval *scheme,
|
2003-04-30 15:52:05 +08:00
|
|
|
const struct berval *passwd,
|
|
|
|
const char **text )
|
2002-06-12 08:43:34 +08:00
|
|
|
{
|
|
|
|
return ber_bvdup( (struct berval *) passwd );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|