postgresql/src/backend/libpq/crypt.c

169 lines
3.8 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* crypt.c
2001-11-01 19:10:48 +01:00
* Look into the password file and check the encrypted password with
* the one passed in from the frontend.
*
2001-11-01 19:10:48 +01:00
* Original coding by Todd A. Brandys
*
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
2001-11-01 19:10:48 +01:00
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/backend/libpq/crypt.c,v 1.62 2005/02/20 04:45:57 tgl Exp $
*
*-------------------------------------------------------------------------
*/
2001-11-01 19:10:48 +01:00
#include "postgres.h"
#include <unistd.h>
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
1999-07-16 07:00:38 +02:00
#include "libpq/crypt.h"
2001-08-17 04:59:20 +02:00
#include "libpq/libpq.h"
1997-12-12 17:26:36 +01:00
#include "miscadmin.h"
#include "storage/fd.h"
#include "nodes/pg_list.h"
1999-07-16 07:00:38 +02:00
#include "utils/nabstime.h"
int
md5_crypt_verify(const Port *port, const char *user, char *client_pass)
{
char *shadow_pass = NULL,
*valuntil = NULL,
1999-05-25 18:15:34 +02:00
*crypt_pwd;
int retval = STATUS_ERROR;
2002-09-04 22:31:48 +02:00
List **line;
ListCell *token;
char *crypt_client_pass = client_pass;
2002-09-04 22:31:48 +02:00
if ((line = get_user_line(user)) == NULL)
return STATUS_ERROR;
/* Skip over username and usesysid */
token = list_head(*line);
if (token)
token = lnext(token);
if (token)
token = lnext(token);
if (token)
{
shadow_pass = (char *) lfirst(token);
token = lnext(token);
if (token)
valuntil = (char *) lfirst(token);
}
2002-09-04 22:31:48 +02:00
if (shadow_pass == NULL || *shadow_pass == '\0')
return STATUS_ERROR;
/* We can't do crypt with pg_shadow MD5 passwords */
if (isMD5(shadow_pass) && port->auth_method == uaCrypt)
2001-08-17 04:59:20 +02:00
{
ereport(LOG,
(errmsg("cannot use authentication method \"crypt\" because password is MD5-encrypted")));
2001-08-17 04:59:20 +02:00
return STATUS_ERROR;
}
/*
* Compare with the encrypted or plain password depending on the
* authentication method being used for this connection.
*/
2001-08-17 04:59:20 +02:00
switch (port->auth_method)
{
case uaMD5:
crypt_pwd = palloc(MD5_PASSWD_LEN + 1);
if (isMD5(shadow_pass))
{
/* pg_shadow already encrypted, only do salt */
if (!EncryptMD5(shadow_pass + strlen("md5"),
(char *) port->md5Salt,
2001-08-17 04:59:20 +02:00
sizeof(port->md5Salt), crypt_pwd))
{
pfree(crypt_pwd);
return STATUS_ERROR;
}
}
else
{
/* pg_shadow plain, double-encrypt */
char *crypt_pwd2 = palloc(MD5_PASSWD_LEN + 1);
if (!EncryptMD5(shadow_pass,
port->user_name,
strlen(port->user_name),
2001-08-17 04:59:20 +02:00
crypt_pwd2))
{
pfree(crypt_pwd);
pfree(crypt_pwd2);
return STATUS_ERROR;
}
if (!EncryptMD5(crypt_pwd2 + strlen("md5"),
port->md5Salt,
sizeof(port->md5Salt),
crypt_pwd))
{
pfree(crypt_pwd);
pfree(crypt_pwd2);
return STATUS_ERROR;
}
pfree(crypt_pwd2);
}
break;
case uaCrypt:
{
char salt[3];
StrNCpy(salt, port->cryptSalt, 3);
crypt_pwd = crypt(shadow_pass, salt);
break;
}
default:
if (isMD5(shadow_pass))
{
2003-08-04 02:43:34 +02:00
/*
* Encrypt user-supplied password to match MD5 in
* pg_shadow
*/
crypt_client_pass = palloc(MD5_PASSWD_LEN + 1);
if (!EncryptMD5(client_pass,
port->user_name,
strlen(port->user_name),
crypt_client_pass))
{
pfree(crypt_client_pass);
return STATUS_ERROR;
}
}
crypt_pwd = shadow_pass;
break;
}
if (strcmp(crypt_client_pass, crypt_pwd) == 0)
{
/*
2001-11-01 19:10:48 +01:00
* Password OK, now check to be sure we are not past valuntil
*/
AbsoluteTime vuntil;
2001-11-01 19:10:48 +01:00
if (valuntil == NULL || *valuntil == '\0')
vuntil = INVALID_ABSTIME;
else
vuntil = DatumGetAbsoluteTime(DirectFunctionCall1(abstimein,
2001-03-22 05:01:46 +01:00
CStringGetDatum(valuntil)));
if (vuntil != INVALID_ABSTIME && vuntil < GetCurrentAbsoluteTime())
retval = STATUS_ERROR;
else
retval = STATUS_OK;
}
if (port->auth_method == uaMD5)
pfree(crypt_pwd);
if (crypt_client_pass != client_pass)
pfree(crypt_client_pass);
return retval;
}