X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=libraries%2Fliblutil%2Fpasswd.c;h=2ccad563b2047984233644c87cd6821118eb1b29;hb=10595e7e5877b224077ae388913f96dbf26e9138;hp=e8e406b67b47f827b7bd9c387bdc08f942216de6;hpb=26c7d69e8c30decc73374fcb41f0d711a1af3500;p=openldap diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index e8e406b67b..2ccad563b2 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -1,13 +1,26 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2007 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ + /* - * lutil_password(credentials, password) + * int lutil_passwd( + * const struct berval *passwd, + * const struct berval *cred, + * const char **schemes ) * - * Returns true if user supplied credentials matches - * the stored password. + * Returns true if user supplied credentials (cred) matches + * the stored password (passwd). * * Due to the use of the crypt(3) function * this routine is NOT thread-safe. @@ -17,138 +30,207 @@ #include #include - #include #include -#include -#include +#if defined(SLAPD_LMHASH) +# include +#endif /* SLAPD_LMHASH */ -#include "lutil_md5.h" -#include "lutil_sha1.h" -#include "lutil.h" +#include + +#ifdef SLAPD_CRYPT +# include -#ifdef HAVE_SHADOW_H +# if defined( HAVE_GETPWNAM ) && defined( HAVE_STRUCT_PASSWD_PW_PASSWD ) +# ifdef HAVE_SHADOW_H # include -#endif -#ifdef HAVE_PWD_H +# endif +# ifdef HAVE_PWD_H # include +# endif +# ifdef HAVE_AIX_SECURITY +# include +# endif +# endif #endif -struct pw_scheme; +#include + +#include "ldap_pvt.h" +#include "lber_pvt.h" -typedef int (*PASSWD_CHK_FUNC)( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +#include "lutil_md5.h" +#include "lutil_sha1.h" +#include "lutil.h" -typedef char * (*PASSWD_GEN_FUNC) ( - const struct pw_scheme *scheme, - const char *passwd ); +static const unsigned char crypt64[] = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890./"; + +#ifdef SLAPD_CRYPT +static char *salt_format = NULL; +static lutil_cryptfunc lutil_crypt; +lutil_cryptfunc *lutil_cryptptr = lutil_crypt; +#endif +/* KLUDGE: + * chk_fn is NULL iff name is {CLEARTEXT} + * otherwise, things will break + */ struct pw_scheme { - char *name; - size_t namelen; - PASSWD_CHK_FUNC chk_fn; - PASSWD_GEN_FUNC gen_fn; + struct berval name; + LUTIL_PASSWD_CHK_FUNC *chk_fn; + LUTIL_PASSWD_HASH_FUNC *hash_fn; }; -/* password check routines */ -static int chk_md5( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); - -static int chk_smd5( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +struct pw_slist { + struct pw_slist *next; + struct pw_scheme s; +}; -static int chk_ssha1( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +/* password check routines */ -static int chk_sha1( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +#define SALT_SIZE 4 -static int chk_crypt( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +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; -static int chk_unix( - const struct pw_scheme *scheme, - const char *passwd, - const char *cred ); +#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; +#endif -/* password generation routines */ -static char *gen_sha1( - const struct pw_scheme *scheme, - const char *passwd ); +#ifdef SLAPD_LMHASH +static LUTIL_PASSWD_CHK_FUNC chk_lanman; +static LUTIL_PASSWD_HASH_FUNC hash_lanman; +#endif -static char *gen_ssha1( - const struct pw_scheme *scheme, - const char *passwd ); +#ifdef SLAPD_CRYPT +static LUTIL_PASSWD_CHK_FUNC chk_crypt; +static LUTIL_PASSWD_HASH_FUNC hash_crypt; -static char *gen_smd5( - const struct pw_scheme *scheme, - const char *passwd ); +#if defined( HAVE_GETPWNAM ) && defined( HAVE_STRUCT_PASSWD_PW_PASSWD ) +static LUTIL_PASSWD_CHK_FUNC chk_unix; +#endif +#endif -static char *gen_md5( - const struct pw_scheme *scheme, - const char *passwd ); +/* password hash routines */ -static char *gen_crypt( - const struct pw_scheme *scheme, - const char *passwd ); +#ifdef SLAPD_CLEARTEXT +static LUTIL_PASSWD_HASH_FUNC hash_clear; +#endif +static struct pw_slist *pw_schemes; +static int pw_inited; -static const struct pw_scheme pw_schemes[] = +static const struct pw_scheme pw_schemes_default[] = { - { "{SSHA}", sizeof("{SSHA}")-1, chk_ssha1, gen_ssha1 }, - { "{SHA}", sizeof("{SHA}")-1, chk_sha1, gen_sha1 }, +#ifdef LUTIL_SHA1_BYTES + { BER_BVC("{SSHA}"), chk_ssha1, hash_ssha1 }, + { BER_BVC("{SHA}"), chk_sha1, hash_sha1 }, +#endif - { "{SMD5}", sizeof("{SMD5}")-1, chk_smd5, gen_smd5 }, - { "{MD5}", sizeof("{MD5}")-1, chk_md5, gen_md5 }, + { BER_BVC("{SMD5}"), chk_smd5, hash_smd5 }, + { BER_BVC("{MD5}"), chk_md5, hash_md5 }, + +#ifdef SLAPD_LMHASH + { BER_BVC("{LANMAN}"), chk_lanman, hash_lanman }, +#endif /* SLAPD_LMHASH */ #ifdef SLAPD_CRYPT - { "{CRYPT}", sizeof("{CRYPT}")-1, chk_crypt, gen_crypt }, -#endif -# if defined( HAVE_GETSPNAM ) \ - || ( defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD ) ) - { "{UNIX}", sizeof("{UNIX}")-1, chk_unix, NULL }, + { BER_BVC("{CRYPT}"), chk_crypt, hash_crypt }, +# if defined( HAVE_GETPWNAM ) && defined( HAVE_STRUCT_PASSWD_PW_PASSWD ) + { BER_BVC("{UNIX}"), chk_unix, NULL }, +# endif #endif #ifdef SLAPD_CLEARTEXT - /* psuedo scheme */ - { "{CLEARTEXT}", 0, NULL, NULL }, + /* pseudo scheme */ + { BER_BVC("{CLEARTEXT}"), NULL, hash_clear }, #endif - NULL, + { BER_BVNULL, NULL, NULL } }; +int lutil_passwd_add( + struct berval *scheme, + LUTIL_PASSWD_CHK_FUNC *chk, + LUTIL_PASSWD_HASH_FUNC *hash ) +{ + struct pw_slist *ptr; + + if (!pw_inited) lutil_passwd_init(); + + ptr = ber_memalloc( sizeof( struct pw_slist )); + if (!ptr) return -1; + ptr->next = pw_schemes; + ptr->s.name = *scheme; + ptr->s.chk_fn = chk; + ptr->s.hash_fn = hash; + pw_schemes = ptr; + return 0; +} + +void lutil_passwd_init() +{ + struct pw_scheme *s; + + pw_inited = 1; + + 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; + } +} + +void lutil_passwd_destroy() +{ + struct pw_slist *ptr, *next; + + for( ptr=pw_schemes; ptr; ptr=next ) { + next = ptr->next; + ber_memfree( ptr ); + } +} + static const struct pw_scheme *get_scheme( const char* scheme ) { - int i; + struct pw_slist *pws; + struct berval bv; + + if (!pw_inited) lutil_passwd_init(); + + bv.bv_val = strchr( scheme, '}' ); + if ( !bv.bv_val ) + return NULL; - for( i=0; pw_schemes[i].name != NULL; i++) { - if( pw_schemes[i].namelen == 0 ) continue; + bv.bv_len = bv.bv_val - scheme + 1; + bv.bv_val = (char *) scheme; - if( strncasecmp(scheme, pw_schemes[i].name, - pw_schemes[i].namelen) == 0 ) - { - return &pw_schemes[i]; + for( pws=pw_schemes; pws; pws=pws->next ) { + if ( ber_bvstrcasecmp(&bv, &pws->s.name ) == 0 ) { + return &(pws->s); } } return NULL; } +int lutil_passwd_scheme( + const char* scheme ) +{ + if( scheme == NULL ) { + return 0; + } + + return get_scheme(scheme) != NULL; +} + static int is_allowed_scheme( const char* scheme, @@ -166,17 +248,23 @@ static int is_allowed_scheme( return 0; } -static const char *passwd_scheme( +static struct berval *passwd_scheme( const struct pw_scheme *scheme, - const char* passwd, + const struct berval * passwd, + struct berval *bv, const char** allowed ) { - if( !is_allowed_scheme( scheme->name, allowed ) ) { + if( !is_allowed_scheme( scheme->name.bv_val, allowed ) ) { return NULL; } - if( strncasecmp( passwd, scheme->name, scheme->namelen ) == 0 ) { - return &passwd[scheme->namelen]; + 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; + } } return NULL; @@ -187,141 +275,223 @@ static const char *passwd_scheme( */ int lutil_passwd( - const char *passwd, /* stored passwd */ - const char *cred, /* user cred */ - const char **schemes ) + const struct berval *passwd, /* stored passwd */ + const struct berval *cred, /* user cred */ + const char **schemes, + const char **text ) { - int i; + struct pw_slist *pws; + + if ( text ) *text = NULL; - if (cred == NULL || passwd == NULL) { + if (cred == NULL || cred->bv_len == 0 || + passwd == NULL || passwd->bv_len == 0 ) + { return -1; } - for( i=0; pw_schemes[i].name != NULL; i++ ) { - if( pw_schemes[i].chk_fn ) { - const char *p = passwd_scheme( &pw_schemes[i], - passwd, schemes ); + if (!pw_inited) lutil_passwd_init(); + + for( pws=pw_schemes; pws; pws=pws->next ) { + if( pws->s.chk_fn ) { + struct berval x; + struct berval *p = passwd_scheme( &(pws->s), + passwd, &x, schemes ); if( p != NULL ) { - return (pw_schemes[i].chk_fn)( &pw_schemes[i], p, cred ); + return (pws->s.chk_fn)( &(pws->s.name), p, cred, text ); } } } #ifdef SLAPD_CLEARTEXT + /* Do we think there is a scheme specifier here that we + * didn't recognize? Assume a scheme name is at least 1 character. + */ + if (( passwd->bv_val[0] == '{' ) && + ( ber_bvchr( passwd, '}' ) > passwd->bv_val+1 )) + { + return 1; + } if( is_allowed_scheme("{CLEARTEXT}", schemes ) ) { - return strcmp( cred, passwd ); + return ( passwd->bv_len == cred->bv_len ) ? + memcmp( passwd->bv_val, cred->bv_val, passwd->bv_len ) + : 1; } -#else - return 1; #endif + return 1; +} + +int lutil_passwd_generate( struct berval *pw, ber_len_t len ) +{ + + if( len < 1 ) return -1; + + pw->bv_len = len; + pw->bv_val = ber_memalloc( len + 1 ); + if( pw->bv_val == NULL ) { + return -1; + } + + if( lutil_entropy( (unsigned char *) pw->bv_val, pw->bv_len) < 0 ) { + return -1; + } + + 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 0; } -char * lutil_passwd_generate( - const char * passwd, - const char * method ) +int lutil_passwd_hash( + const struct berval * passwd, + const char * method, + struct berval *hash, + const char **text ) { const struct pw_scheme *sc = get_scheme( method ); - if( sc == NULL ) return NULL; - if( ! sc->gen_fn ) return NULL; + hash->bv_val = NULL; + hash->bv_len = 0; + + if( sc == NULL ) { + if( text ) *text = "scheme not recognized"; + return -1; + } + + if( ! sc->hash_fn ) { + if( text ) *text = "scheme provided no hash function"; + return -1; + } + + if( text ) *text = NULL; - return (sc->gen_fn)( sc, passwd ); + return (sc->hash_fn)( &sc->name, passwd, hash, text ); } -static char * pw_string( - const struct pw_scheme *sc, - const char *passwd) +/* pw_string is only called when SLAPD_LMHASH or SLAPD_CRYPT is defined */ +#if defined(SLAPD_LMHASH) || defined(SLAPD_CRYPT) +static int pw_string( + const struct berval *sc, + struct berval *passwd ) { - size_t pwlen = strlen( passwd ); - char *pw = ber_memalloc( sc->namelen + pwlen + 1 ); + struct berval pw; + + pw.bv_len = sc->bv_len + passwd->bv_len; + pw.bv_val = ber_memalloc( pw.bv_len + 1 ); + + if( pw.bv_val == NULL ) { + return LUTIL_PASSWD_ERR; + } - if( pw == NULL ) return NULL; + 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 ); - memcpy( pw, sc->name, sc->namelen ); - memcpy( &pw[sc->namelen], passwd, pwlen ); - pw[sc->namelen + pwlen] = '\0'; + pw.bv_val[pw.bv_len] = '\0'; + *passwd = pw; - return pw; + return LUTIL_PASSWD_OK; } +#endif /* SLAPD_LMHASH || SLAPD_CRYPT */ -static char * pw_string64( - const struct pw_scheme *sc, - const unsigned char *hash, size_t hashlen, - const unsigned char *salt, size_t saltlen ) +static int pw_string64( + const struct berval *sc, + const struct berval *hash, + struct berval *b64, + const struct berval *salt ) { int rc; - char *string; + struct berval string; size_t b64len; - size_t len = hashlen + saltlen; - char *b64; - if( saltlen ) { + if( salt ) { /* need to base64 combined string */ - string = ber_memalloc( hashlen + saltlen ); + string.bv_len = hash->bv_len + salt->bv_len; + string.bv_val = ber_memalloc( string.bv_len + 1 ); - if( string == NULL ) { - return NULL; + if( string.bv_val == NULL ) { + return LUTIL_PASSWD_ERR; } - memcpy( string, hash, len ); - memcpy( &string[len], salt, saltlen ); + AC_MEMCPY( string.bv_val, hash->bv_val, + hash->bv_len ); + AC_MEMCPY( &string.bv_val[hash->bv_len], salt->bv_val, + salt->bv_len ); + string.bv_val[string.bv_len] = '\0'; } else { - string = (char *) hash; + string = *hash; } - b64len = LUTIL_BASE64_ENCODE_LEN( len ) + 1; - b64 = ber_memalloc( b64len + sc->namelen ); + b64len = LUTIL_BASE64_ENCODE_LEN( string.bv_len ) + 1; + b64->bv_len = b64len + sc->bv_len; + b64->bv_val = ber_memalloc( b64->bv_len + 1 ); - if( b64 == NULL ) { - if( saltlen ) ber_memfree( string ); - return NULL; + if( b64->bv_val == NULL ) { + if( salt ) ber_memfree( string.bv_val ); + return LUTIL_PASSWD_ERR; } - memcpy(b64, sc->name, sc->namelen); - - rc = lutil_b64_ntop( string, len, &b64[sc->namelen], b64len ); + AC_MEMCPY(b64->bv_val, sc->bv_val, sc->bv_len); - if( saltlen ) ber_memfree( string ); + rc = lutil_b64_ntop( + (unsigned char *) string.bv_val, string.bv_len, + &b64->bv_val[sc->bv_len], b64len ); + if( salt ) ber_memfree( string.bv_val ); + if( rc < 0 ) { - free( b64 ); - return NULL; + return LUTIL_PASSWD_ERR; } - return b64; + /* recompute length */ + b64->bv_len = sc->bv_len + rc; + assert( strlen(b64->bv_val) == b64->bv_len ); + return LUTIL_PASSWD_OK; } /* PASSWORD CHECK ROUTINES */ +#ifdef LUTIL_SHA1_BYTES static int chk_ssha1( - const struct pw_scheme *sc, - const char* passwd, - const char* cred ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { lutil_SHA1_CTX SHA1context; unsigned char SHA1digest[LUTIL_SHA1_BYTES]; - int pw_len = strlen(passwd); int rc; unsigned char *orig_pass = NULL; - - /* base64 un-encode password */ + + /* safety check -- must have some salt */ + if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) <= sizeof(SHA1digest)) { + return LUTIL_PASSWD_ERR; + } + + /* decode base64 password */ orig_pass = (unsigned char *) ber_memalloc( (size_t) ( - LUTIL_BASE64_DECODE_LEN(pw_len) + 1) ); + LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) ); + + if( orig_pass == NULL ) return LUTIL_PASSWD_ERR; - if( orig_pass == NULL ) return -1; + rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len); - if ((rc = lutil_b64_pton(passwd, orig_pass, pw_len)) < 0) { + /* safety check -- must have some salt */ + if (rc <= (int)(sizeof(SHA1digest))) { ber_memfree(orig_pass); - return 1; + return LUTIL_PASSWD_ERR; } /* hash credentials with salt */ lutil_SHA1Init(&SHA1context); lutil_SHA1Update(&SHA1context, - (const unsigned char *) cred, strlen(cred)); + (const unsigned char *) cred->bv_val, cred->bv_len); lutil_SHA1Update(&SHA1context, (const unsigned char *) &orig_pass[sizeof(SHA1digest)], rc - sizeof(SHA1digest)); @@ -330,235 +500,630 @@ static int chk_ssha1( /* compare */ rc = memcmp((char *)orig_pass, (char *)SHA1digest, sizeof(SHA1digest)); ber_memfree(orig_pass); - return rc; + return rc ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; } static int chk_sha1( - const struct pw_scheme *sc, - const char* passwd, - const char* cred ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { lutil_SHA1_CTX SHA1context; unsigned char SHA1digest[LUTIL_SHA1_BYTES]; - char base64digest[LUTIL_BASE64_ENCODE_LEN(sizeof(SHA1digest))+1]; + int rc; + unsigned char *orig_pass = NULL; + + /* safety check */ + if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) < sizeof(SHA1digest)) { + return LUTIL_PASSWD_ERR; + } + + /* base64 un-encode password */ + orig_pass = (unsigned char *) ber_memalloc( (size_t) ( + LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) ); + + if( orig_pass == NULL ) return LUTIL_PASSWD_ERR; + rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len); + + if( rc != sizeof(SHA1digest) ) { + ber_memfree(orig_pass); + return LUTIL_PASSWD_ERR; + } + + /* hash credentials with salt */ lutil_SHA1Init(&SHA1context); lutil_SHA1Update(&SHA1context, - (const unsigned char *) cred, strlen(cred)); + (const unsigned char *) cred->bv_val, cred->bv_len); lutil_SHA1Final(SHA1digest, &SHA1context); - - if (lutil_b64_ntop(SHA1digest, sizeof(SHA1digest), - base64digest, sizeof(base64digest)) < 0) - { - return 1; - } - - return strcmp(passwd, base64digest); + + /* compare */ + rc = memcmp((char *)orig_pass, (char *)SHA1digest, sizeof(SHA1digest)); + ber_memfree(orig_pass); + return rc ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; } +#endif static int chk_smd5( - const struct pw_scheme *sc, - const char* passwd, - const char* cred ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { lutil_MD5_CTX MD5context; unsigned char MD5digest[LUTIL_MD5_BYTES]; - int pw_len = strlen(passwd); int rc; unsigned char *orig_pass = NULL; + /* safety check */ + if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) <= sizeof(MD5digest)) { + return LUTIL_PASSWD_ERR; + } + /* base64 un-encode password */ orig_pass = (unsigned char *) ber_memalloc( (size_t) ( - LUTIL_BASE64_DECODE_LEN(pw_len) + 1) ); + LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) ); + + if( orig_pass == NULL ) return LUTIL_PASSWD_ERR; - if( orig_pass == NULL ) return -1; + rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len); - if ((rc = lutil_b64_pton(passwd, orig_pass, pw_len)) < 0) { + if (rc <= (int)(sizeof(MD5digest))) { ber_memfree(orig_pass); - return 1; + return LUTIL_PASSWD_ERR; } /* hash credentials with salt */ lutil_MD5Init(&MD5context); lutil_MD5Update(&MD5context, - (const unsigned char *) cred, strlen(cred)); + (const unsigned char *) cred->bv_val, + cred->bv_len ); lutil_MD5Update(&MD5context, - (const unsigned char *) &orig_pass[sizeof(MD5digest)], + &orig_pass[sizeof(MD5digest)], rc - sizeof(MD5digest)); lutil_MD5Final(MD5digest, &MD5context); /* compare */ rc = memcmp((char *)orig_pass, (char *)MD5digest, sizeof(MD5digest)); ber_memfree(orig_pass); - return rc; + return rc ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; } static int chk_md5( - const struct pw_scheme *sc, - const char* passwd, - const char* cred ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { lutil_MD5_CTX MD5context; unsigned char MD5digest[LUTIL_MD5_BYTES]; - char base64digest[LUTIL_BASE64_ENCODE_LEN(sizeof(MD5digest))+1]; + int rc; + unsigned char *orig_pass = NULL; + + /* safety check */ + if (LUTIL_BASE64_DECODE_LEN(passwd->bv_len) < sizeof(MD5digest)) { + return LUTIL_PASSWD_ERR; + } + + /* base64 un-encode password */ + orig_pass = (unsigned char *) ber_memalloc( (size_t) ( + LUTIL_BASE64_DECODE_LEN(passwd->bv_len) + 1) ); + + if( orig_pass == NULL ) return LUTIL_PASSWD_ERR; + + rc = lutil_b64_pton(passwd->bv_val, orig_pass, passwd->bv_len); + if ( rc != sizeof(MD5digest) ) { + ber_memfree(orig_pass); + return LUTIL_PASSWD_ERR; + } + /* hash credentials with salt */ lutil_MD5Init(&MD5context); lutil_MD5Update(&MD5context, - (const unsigned char *)cred, strlen(cred)); + (const unsigned char *) cred->bv_val, + cred->bv_len ); lutil_MD5Final(MD5digest, &MD5context); - if ( lutil_b64_ntop(MD5digest, sizeof(MD5digest), - base64digest, sizeof(base64digest)) < 0 ) - { - return 1; - } + /* compare */ + rc = memcmp((char *)orig_pass, (char *)MD5digest, sizeof(MD5digest)); + ber_memfree(orig_pass); + return rc ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; +} + +#ifdef SLAPD_LMHASH +/* 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. + * * + * } + */ - return strcmp(passwd, base64digest); +static void lmPasswd_to_key( + const char *lmPasswd, + des_cblock *key) +{ + const unsigned char *lpw = (const unsigned char *) lmPasswd; + unsigned char *k = (unsigned char *) key; + + /* make room for parity bits */ + k[0] = lpw[0]; + k[1] = ((lpw[0] & 0x01) << 7) | (lpw[1] >> 1); + k[2] = ((lpw[1] & 0x03) << 6) | (lpw[2] >> 2); + k[3] = ((lpw[2] & 0x07) << 5) | (lpw[3] >> 3); + k[4] = ((lpw[3] & 0x0F) << 4) | (lpw[4] >> 4); + k[5] = ((lpw[4] & 0x1F) << 3) | (lpw[5] >> 5); + k[6] = ((lpw[5] & 0x3F) << 2) | (lpw[6] >> 6); + k[7] = ((lpw[6] & 0x7F) << 1); + + des_set_odd_parity( key ); +} + +static int chk_lanman( + const struct berval *scheme, + const struct berval *passwd, + const struct berval *cred, + const char **text ) +{ + 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; ibv_len; i++) { + if(cred->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } + + if( cred->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* 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) ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; } +#endif /* SLAPD_LMHASH */ #ifdef SLAPD_CRYPT +static int lutil_crypt( + const char *key, + const char *salt, + char **hash ) +{ + char *cr = crypt( key, salt ); + int rc; + + if( cr == NULL || cr[0] == '\0' ) { + /* salt must have been invalid */ + rc = LUTIL_PASSWD_ERR; + } else { + if ( hash ) { + *hash = ber_strdup( cr ); + rc = LUTIL_PASSWD_OK; + } else { + rc = strcmp( salt, cr ) ? LUTIL_PASSWD_ERR : LUTIL_PASSWD_OK; + } + } + return rc; +} + static int chk_crypt( - const struct pw_scheme *sc, - const char* passwd, - const char* cred ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { - return strcmp(passwd, crypt(cred, passwd)); + unsigned int i; + + for( i=0; ibv_len; i++) { + if(cred->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } + + if( cred->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* cred must behave like a string */ + } + + if( passwd->bv_len < 2 ) { + return LUTIL_PASSWD_ERR; /* passwd must be at least two characters long */ + } + + for( i=0; ibv_len; i++) { + if(passwd->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } + + if( passwd->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* passwd must behave like a string */ + } + + return lutil_cryptptr( cred->bv_val, passwd->bv_val, NULL ); } -# if defined( HAVE_GETSPNAM ) \ - || ( defined( HAVE_GETPWNAM ) && defined( HAVE_PW_PASSWD ) ) +# if defined( HAVE_GETPWNAM ) && defined( HAVE_STRUCT_PASSWD_PW_PASSWD ) static int chk_unix( - const struct pw_scheme *sc, - const char* cred, - const char* p ) + const struct berval *sc, + const struct berval * passwd, + const struct berval * cred, + const char **text ) { -# ifdef HAVE_GETSPNAM - struct spwd *spwd = getspnam(p); + unsigned int i; + char *pw; + + for( i=0; ibv_len; i++) { + if(cred->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } + if( cred->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* cred must behave like a string */ + } - if(spwd == NULL) { - return 1; /* not found */ + for( i=0; ibv_len; i++) { + if(passwd->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } } - return strcmp(spwd->sp_pwdp, crypt(cred, spwd->sp_pwdp)); -# else - struct passwd *pwd = getpwnam(p); + if( passwd->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* passwd must behave like a string */ + } + + { + struct passwd *pwd = getpwnam(passwd->bv_val); + + if(pwd == NULL) { + return LUTIL_PASSWD_ERR; /* not found */ + } + + pw = pwd->pw_passwd; + } +# ifdef HAVE_GETSPNAM + { + struct spwd *spwd = getspnam(passwd->bv_val); - if(pwd == NULL) { - return 1; /* not found */ + if(spwd != NULL) { + pw = spwd->sp_pwdp; + } } +# endif +# ifdef HAVE_AIX_SECURITY + { + struct userpw *upw = getuserpw(passwd->bv_val); - return strcmp(pwd->pw_passwd, crypt(cred, pwd->pw_passwd)); + if (upw != NULL) { + pw = upw->upw_passwd; + } + } # endif -# endif + + if( pw == NULL || pw[0] == '\0' || pw[1] == '\0' ) { + /* password must must be at least two characters long */ + return LUTIL_PASSWD_ERR; + } + + return lutil_cryptptr( cred->bv_val, pw, NULL ); } +# endif #endif -/* PASSWORD CHECK ROUTINES */ -static char *gen_ssha1( - const struct pw_scheme *scheme, - const char *passwd ) +/* PASSWORD GENERATION ROUTINES */ + +#ifdef LUTIL_SHA1_BYTES +static int hash_ssha1( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) { lutil_SHA1_CTX SHA1context; unsigned char SHA1digest[LUTIL_SHA1_BYTES]; - unsigned char salt[4]; + char saltdata[SALT_SIZE]; + struct berval digest; + struct berval salt; + + digest.bv_val = (char *) SHA1digest; + digest.bv_len = sizeof(SHA1digest); + salt.bv_val = saltdata; + salt.bv_len = sizeof(saltdata); - if( lutil_entropy( salt, sizeof(salt)) < 0 ) { - return NULL; + if( lutil_entropy( (unsigned char *) salt.bv_val, salt.bv_len) < 0 ) { + return LUTIL_PASSWD_ERR; } lutil_SHA1Init( &SHA1context ); lutil_SHA1Update( &SHA1context, - (const unsigned char *)passwd, strlen(passwd) ); + (const unsigned char *)passwd->bv_val, passwd->bv_len ); lutil_SHA1Update( &SHA1context, - (const unsigned char *)salt, sizeof(salt) ); + (const unsigned char *)salt.bv_val, salt.bv_len ); lutil_SHA1Final( SHA1digest, &SHA1context ); - return pw_string64( scheme, - SHA1digest, sizeof(SHA1digest), - salt, sizeof(salt)); + return pw_string64( scheme, &digest, hash, &salt); } -static char *gen_sha1( - const struct pw_scheme *scheme, - const char *passwd ) +static int hash_sha1( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) { lutil_SHA1_CTX SHA1context; - unsigned char SHA1digest[20]; + unsigned char SHA1digest[LUTIL_SHA1_BYTES]; + struct berval digest; + digest.bv_val = (char *) SHA1digest; + digest.bv_len = sizeof(SHA1digest); lutil_SHA1Init( &SHA1context ); lutil_SHA1Update( &SHA1context, - (const unsigned char *)passwd, strlen(passwd) ); + (const unsigned char *)passwd->bv_val, passwd->bv_len ); lutil_SHA1Final( SHA1digest, &SHA1context ); - return pw_string64( scheme, - SHA1digest, sizeof(SHA1digest), - NULL, 0); + return pw_string64( scheme, &digest, hash, NULL); } +#endif -static char *gen_smd5( - const struct pw_scheme *scheme, - const char *passwd ) +static int hash_smd5( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) { lutil_MD5_CTX MD5context; - unsigned char MD5digest[16]; - unsigned char salt[4]; - - if( lutil_entropy( salt, sizeof(salt)) < 0 ) { - return NULL; + unsigned char MD5digest[LUTIL_MD5_BYTES]; + char saltdata[SALT_SIZE]; + struct berval digest; + struct berval salt; + + digest.bv_val = (char *) MD5digest; + digest.bv_len = sizeof(MD5digest); + salt.bv_val = saltdata; + salt.bv_len = sizeof(saltdata); + + if( lutil_entropy( (unsigned char *) salt.bv_val, salt.bv_len) < 0 ) { + return LUTIL_PASSWD_ERR; } lutil_MD5Init( &MD5context ); lutil_MD5Update( &MD5context, - (const unsigned char *) passwd, strlen(passwd) ); + (const unsigned char *) passwd->bv_val, passwd->bv_len ); lutil_MD5Update( &MD5context, - (const unsigned char *) salt, sizeof(salt) ); + (const unsigned char *) salt.bv_val, salt.bv_len ); lutil_MD5Final( MD5digest, &MD5context ); - return pw_string64( scheme, - MD5digest, sizeof(MD5digest), - salt, sizeof(salt) ); + return pw_string64( scheme, &digest, hash, &salt ); } -static char *gen_md5( - const struct pw_scheme *scheme, - const char *passwd ) +static int hash_md5( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) { lutil_MD5_CTX MD5context; - unsigned char MD5digest[16]; + unsigned char MD5digest[LUTIL_MD5_BYTES]; + + struct berval digest; + + digest.bv_val = (char *) MD5digest; + digest.bv_len = sizeof(MD5digest); lutil_MD5Init( &MD5context ); lutil_MD5Update( &MD5context, - (const unsigned char *) passwd, strlen(passwd) ); - + (const unsigned char *) passwd->bv_val, passwd->bv_len ); lutil_MD5Final( MD5digest, &MD5context ); - return pw_string64( scheme, - MD5digest, sizeof(MD5digest), - NULL, 0 ); + return pw_string64( scheme, &digest, hash, NULL ); +; } +#ifdef SLAPD_LMHASH +static int hash_lanman( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) +{ + + int i; + char UcasePassword[15]; + des_cblock key; + des_key_schedule schedule; + des_cblock StdText = "KGS!@#$%"; + des_cblock PasswordHash1, PasswordHash2; + char PasswordHash[33]; + + for( i=0; ibv_len; i++) { + if(passwd->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } + + if( passwd->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* 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 ); + 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] ); + + hash->bv_val = PasswordHash; + hash->bv_len = 32; + + return pw_string( scheme, hash ); +} +#endif /* SLAPD_LMHASH */ + #ifdef SLAPD_CRYPT -static char *gen_crypt( - const struct pw_scheme *scheme, - const char *passwd ) +static int hash_crypt( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) { - static const unsigned char crypt64[] = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890./"; + unsigned char salt[32]; /* salt suitable for most anything */ + unsigned int i; + char *save; + int rc; - char *hash = NULL; - unsigned char salt[2]; + for( i=0; ibv_len; i++) { + if(passwd->bv_val[i] == '\0') { + return LUTIL_PASSWD_ERR; /* NUL character in password */ + } + } - if( lutil_entropy( salt, sizeof(salt)) < 0 ) { - return NULL; + if( passwd->bv_val[i] != '\0' ) { + return LUTIL_PASSWD_ERR; /* passwd must behave like a string */ } - salt[0] = crypt64[ salt[0] % (sizeof(crypt64)-1) ]; - salt[1] = crypt64[ salt[1] % (sizeof(crypt64)-1) ]; + if( lutil_entropy( salt, sizeof( salt ) ) < 0 ) { + return LUTIL_PASSWD_ERR; + } - hash = crypt( passwd, salt ); + for( i=0; i< ( sizeof(salt) - 1 ); i++ ) { + salt[i] = crypt64[ salt[i] % (sizeof(crypt64)-1) ]; + } + 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)]; + strcpy( entropy, (char *) salt ); + snprintf( (char *) salt, sizeof(entropy), salt_format, entropy ); + } - if( hash = NULL ) return NULL; + rc = lutil_cryptptr( passwd->bv_val, (char *) salt, &hash->bv_val ); + if ( rc != LUTIL_PASSWD_OK ) return rc; - return pw_string( scheme, hash ); + if( hash->bv_val == NULL ) return -1; + + hash->bv_len = strlen( hash->bv_val ); + + save = hash->bv_val; + + if( hash->bv_len == 0 ) { + rc = LUTIL_PASSWD_ERR; + } else { + rc = pw_string( scheme, hash ); + } + ber_memfree( save ); + return rc; } #endif + +int lutil_salt_format(const char *format) +{ +#ifdef SLAPD_CRYPT + free( salt_format ); + + salt_format = format != NULL ? ber_strdup( format ) : NULL; +#endif + + return 0; +} + +#ifdef SLAPD_CLEARTEXT +static int hash_clear( + const struct berval *scheme, + const struct berval *passwd, + struct berval *hash, + const char **text ) +{ + ber_dupbv( hash, (struct berval *)passwd ); + return LUTIL_PASSWD_OK; +} +#endif +