X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fpasswddb.c;h=0c57801c9d0b0fea4e61ad1e06532b8bde5933dc;hb=707cc9ebfa7f462ec58a31cfbad4c1a09fecfa00;hp=a0f4ddc8d896da44d04bde784237d25f0d8985f1;hpb=89d3a004b7c651fd5673abfc192e1472dc4d4197;p=idzebra-moved-to-github.git diff --git a/util/passwddb.c b/util/passwddb.c index a0f4ddc..0c57801 100644 --- a/util/passwddb.c +++ b/util/passwddb.c @@ -1,4 +1,4 @@ -/* $Id: passwddb.c,v 1.16 2007-01-15 15:10:26 adam Exp $ +/* $Id: passwddb.c,v 1.18 2007-10-29 09:23:08 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -32,6 +32,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #endif +#include #include #include @@ -127,19 +128,22 @@ void passwd_db_show(Passwd_db db) int passwd_db_auth(Passwd_db db, const char *user, const char *pass) { struct passwd_entry *pe; + + assert(db); for (pe = db->entries; pe; pe = pe->next) if (user && !strcmp (user, pe->name)) break; if (!pe) return -1; + if (!pass) + return -2; if (pe->encrypt_flag) { #if HAVE_CRYPT_H const char *des_try; + assert(pe->des); if (strlen (pe->des) < 3) return -3; - if (!pass) - return -2; if (pe->des[0] != '$') /* Not MD5? (assume DES) */ { @@ -148,6 +152,7 @@ int passwd_db_auth(Passwd_db db, const char *user, const char *pass) } des_try = crypt (pass, pe->des); + assert(des_try); if (strcmp (des_try, pe->des)) return -2; #else @@ -156,6 +161,8 @@ int passwd_db_auth(Passwd_db db, const char *user, const char *pass) } else { + assert(pass); + assert(pe->des); if (strcmp (pe->des, pass)) return -2; }