Refactor libpq authentication request processing.

Move the responsibility of reading the data from the authentication request
message from PQconnectPoll() to pg_fe_sendauth(). This way, PQconnectPoll()
doesn't need to know about all the different authentication request types,
and we don't need the extra fields in the pg_conn struct to pass the data
from PQconnectPoll() to pg_fe_sendauth() anymore.

Reviewed by Michael Paquier.

Discussion: https://www.postgresql.org/message-id/6490b975-5ee1-6280-ac1d-af975b19fb9a%40iki.fi
This commit is contained in:
Heikki Linnakangas 2017-04-13 19:34:14 +03:00
parent 5e39f06cfe
commit 61bf96cab0
4 changed files with 203 additions and 171 deletions

View File

@ -100,11 +100,39 @@ pg_GSS_error(const char *mprefix, PGconn *conn,
* Continue GSS authentication with next token as needed. * Continue GSS authentication with next token as needed.
*/ */
static int static int
pg_GSS_continue(PGconn *conn) pg_GSS_continue(PGconn *conn, int payloadlen)
{ {
OM_uint32 maj_stat, OM_uint32 maj_stat,
min_stat, min_stat,
lmin_s; lmin_s;
gss_buffer_desc ginbuf;
gss_buffer_desc goutbuf;
/*
* On first call, there's no input token. On subsequent calls, read the
* input token into a GSS buffer.
*/
if (conn->gctx != GSS_C_NO_CONTEXT)
{
ginbuf.length = payloadlen;
ginbuf.value = malloc(payloadlen);
if (!ginbuf.value)
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("out of memory allocating GSSAPI buffer (%d)\n"),
payloadlen);
return STATUS_ERROR;
}
if (pqGetnchar(ginbuf.value, payloadlen, conn))
{
/*
* Shouldn't happen, because the caller should've ensured that the
* whole message is already in the input buffer.
*/
free(ginbuf.value);
return STATUS_ERROR;
}
}
maj_stat = gss_init_sec_context(&min_stat, maj_stat = gss_init_sec_context(&min_stat,
GSS_C_NO_CREDENTIAL, GSS_C_NO_CREDENTIAL,
@ -114,20 +142,16 @@ pg_GSS_continue(PGconn *conn)
GSS_C_MUTUAL_FLAG, GSS_C_MUTUAL_FLAG,
0, 0,
GSS_C_NO_CHANNEL_BINDINGS, GSS_C_NO_CHANNEL_BINDINGS,
(conn->gctx == GSS_C_NO_CONTEXT) ? GSS_C_NO_BUFFER : &conn->ginbuf, (conn->gctx == GSS_C_NO_CONTEXT) ? GSS_C_NO_BUFFER : &ginbuf,
NULL, NULL,
&conn->goutbuf, &goutbuf,
NULL, NULL,
NULL); NULL);
if (conn->gctx != GSS_C_NO_CONTEXT) if (conn->gctx != GSS_C_NO_CONTEXT)
{ free(ginbuf.value);
free(conn->ginbuf.value);
conn->ginbuf.value = NULL;
conn->ginbuf.length = 0;
}
if (conn->goutbuf.length != 0) if (goutbuf.length != 0)
{ {
/* /*
* GSS generated data to send to the server. We don't care if it's the * GSS generated data to send to the server. We don't care if it's the
@ -135,14 +159,13 @@ pg_GSS_continue(PGconn *conn)
* packet. * packet.
*/ */
if (pqPacketSend(conn, 'p', if (pqPacketSend(conn, 'p',
conn->goutbuf.value, conn->goutbuf.length) goutbuf.value, goutbuf.length) != STATUS_OK)
!= STATUS_OK)
{ {
gss_release_buffer(&lmin_s, &conn->goutbuf); gss_release_buffer(&lmin_s, &goutbuf);
return STATUS_ERROR; return STATUS_ERROR;
} }
} }
gss_release_buffer(&lmin_s, &conn->goutbuf); gss_release_buffer(&lmin_s, &goutbuf);
if (maj_stat != GSS_S_COMPLETE && maj_stat != GSS_S_CONTINUE_NEEDED) if (maj_stat != GSS_S_COMPLETE && maj_stat != GSS_S_CONTINUE_NEEDED)
{ {
@ -165,7 +188,7 @@ pg_GSS_continue(PGconn *conn)
* Send initial GSS authentication token * Send initial GSS authentication token
*/ */
static int static int
pg_GSS_startup(PGconn *conn) pg_GSS_startup(PGconn *conn, int payloadlen)
{ {
OM_uint32 maj_stat, OM_uint32 maj_stat,
min_stat; min_stat;
@ -221,7 +244,7 @@ pg_GSS_startup(PGconn *conn)
*/ */
conn->gctx = GSS_C_NO_CONTEXT; conn->gctx = GSS_C_NO_CONTEXT;
return pg_GSS_continue(conn); return pg_GSS_continue(conn, payloadlen);
} }
#endif /* ENABLE_GSS */ #endif /* ENABLE_GSS */
@ -251,7 +274,7 @@ pg_SSPI_error(PGconn *conn, const char *mprefix, SECURITY_STATUS r)
* Continue SSPI authentication with next token as needed. * Continue SSPI authentication with next token as needed.
*/ */
static int static int
pg_SSPI_continue(PGconn *conn) pg_SSPI_continue(PGconn *conn, int payloadlen)
{ {
SECURITY_STATUS r; SECURITY_STATUS r;
CtxtHandle newContext; CtxtHandle newContext;
@ -260,6 +283,7 @@ pg_SSPI_continue(PGconn *conn)
SecBufferDesc outbuf; SecBufferDesc outbuf;
SecBuffer OutBuffers[1]; SecBuffer OutBuffers[1];
SecBuffer InBuffers[1]; SecBuffer InBuffers[1];
char *inputbuf = NULL;
if (conn->sspictx != NULL) if (conn->sspictx != NULL)
{ {
@ -267,11 +291,29 @@ pg_SSPI_continue(PGconn *conn)
* On runs other than the first we have some data to send. Put this * On runs other than the first we have some data to send. Put this
* data in a SecBuffer type structure. * data in a SecBuffer type structure.
*/ */
inputbuf = malloc(payloadlen);
if (!inputbuf)
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("out of memory allocating SSPI buffer (%d)\n"),
payloadlen);
return STATUS_ERROR;
}
if (pqGetnchar(inputbuf, payloadlen, conn))
{
/*
* Shouldn't happen, because the caller should've ensured that the
* whole message is already in the input buffer.
*/
free(inputbuf);
return STATUS_ERROR;
}
inbuf.ulVersion = SECBUFFER_VERSION; inbuf.ulVersion = SECBUFFER_VERSION;
inbuf.cBuffers = 1; inbuf.cBuffers = 1;
inbuf.pBuffers = InBuffers; inbuf.pBuffers = InBuffers;
InBuffers[0].pvBuffer = conn->ginbuf.value; InBuffers[0].pvBuffer = inputbuf;
InBuffers[0].cbBuffer = conn->ginbuf.length; InBuffers[0].cbBuffer = payloadlen;
InBuffers[0].BufferType = SECBUFFER_TOKEN; InBuffers[0].BufferType = SECBUFFER_TOKEN;
} }
@ -295,6 +337,10 @@ pg_SSPI_continue(PGconn *conn)
&contextAttr, &contextAttr,
NULL); NULL);
/* we don't need the input anymore */
if (inputbuf)
free(inputbuf);
if (r != SEC_E_OK && r != SEC_I_CONTINUE_NEEDED) if (r != SEC_E_OK && r != SEC_I_CONTINUE_NEEDED)
{ {
pg_SSPI_error(conn, libpq_gettext("SSPI continuation error"), r); pg_SSPI_error(conn, libpq_gettext("SSPI continuation error"), r);
@ -313,16 +359,6 @@ pg_SSPI_continue(PGconn *conn)
} }
memcpy(conn->sspictx, &newContext, sizeof(CtxtHandle)); memcpy(conn->sspictx, &newContext, sizeof(CtxtHandle));
} }
else
{
/*
* On subsequent runs when we had data to send, free buffers that
* contained this data.
*/
free(conn->ginbuf.value);
conn->ginbuf.value = NULL;
conn->ginbuf.length = 0;
}
/* /*
* If SSPI returned any data to be sent to the server (as it normally * If SSPI returned any data to be sent to the server (as it normally
@ -369,7 +405,7 @@ pg_SSPI_continue(PGconn *conn)
* which supports both kerberos and NTLM, but is not compatible with Unix. * which supports both kerberos and NTLM, but is not compatible with Unix.
*/ */
static int static int
pg_SSPI_startup(PGconn *conn, int use_negotiate) pg_SSPI_startup(PGconn *conn, int use_negotiate, int payloadlen)
{ {
SECURITY_STATUS r; SECURITY_STATUS r;
TimeStamp expire; TimeStamp expire;
@ -429,16 +465,38 @@ pg_SSPI_startup(PGconn *conn, int use_negotiate)
*/ */
conn->usesspi = 1; conn->usesspi = 1;
return pg_SSPI_continue(conn); return pg_SSPI_continue(conn, payloadlen);
} }
#endif /* ENABLE_SSPI */ #endif /* ENABLE_SSPI */
/* /*
* Initialize SASL authentication exchange. * Initialize SASL authentication exchange.
*/ */
static bool static int
pg_SASL_init(PGconn *conn, const char *auth_mechanism) pg_SASL_init(PGconn *conn, int payloadlen)
{ {
char auth_mechanism[21];
char *initialresponse;
int initialresponselen;
bool done;
bool success;
int res;
/*
* Read the authentication mechanism the server told us to use.
*/
if (payloadlen > sizeof(auth_mechanism) - 1)
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("SASL authentication mechanism not supported\n"));
if (pqGetnchar(auth_mechanism, payloadlen, conn))
{
printfPQExpBuffer(&conn->errorMessage,
"fe_sendauth: invalid authentication request from server: invalid authentication mechanism\n");
return STATUS_ERROR;
}
auth_mechanism[payloadlen] = '\0';
/* /*
* Check the authentication mechanism (only SCRAM-SHA-256 is supported at * Check the authentication mechanism (only SCRAM-SHA-256 is supported at
* the moment.) * the moment.)
@ -465,16 +523,40 @@ pg_SASL_init(PGconn *conn, const char *auth_mechanism)
libpq_gettext("out of memory\n")); libpq_gettext("out of memory\n"));
return STATUS_ERROR; return STATUS_ERROR;
} }
return STATUS_OK;
} }
else else
{ {
printfPQExpBuffer(&conn->errorMessage, printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("SASL authentication mechanism %s not supported\n"), libpq_gettext("SASL authentication mechanism %s not supported\n"),
(char *) conn->auth_req_inbuf); auth_mechanism);
return STATUS_ERROR; return STATUS_ERROR;
} }
/* Send the initial client response */
pg_fe_scram_exchange(conn->sasl_state,
NULL, -1,
&initialresponse, &initialresponselen,
&done, &success, &conn->errorMessage);
if (initialresponse)
{
res = pqPacketSend(conn, 'p', initialresponse, initialresponselen);
free(initialresponse);
if (res != STATUS_OK)
return STATUS_ERROR;
}
if (done && !success)
{
/* Use error message, if set already */
if (conn->errorMessage.len == 0)
printfPQExpBuffer(&conn->errorMessage,
"fe_sendauth: error in SASL authentication\n");
return STATUS_ERROR;
}
return STATUS_OK;
} }
/* /*
@ -483,25 +565,42 @@ pg_SASL_init(PGconn *conn, const char *auth_mechanism)
* the protocol. * the protocol.
*/ */
static int static int
pg_SASL_exchange(PGconn *conn) pg_SASL_continue(PGconn *conn, int payloadlen)
{ {
char *output; char *output;
int outputlen; int outputlen;
bool done; bool done;
bool success; bool success;
int res; int res;
char *challenge;
/* Read the SASL challenge from the AuthenticationSASLContinue message. */
challenge = malloc(payloadlen + 1);
if (!challenge)
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("out of memory allocating SASL buffer (%d)\n"),
payloadlen);
return STATUS_ERROR;
}
if (pqGetnchar(challenge, payloadlen, conn))
{
free(challenge);
return STATUS_ERROR;
}
/* For safety and convenience, ensure the buffer is NULL-terminated. */
challenge[payloadlen] = '\0';
pg_fe_scram_exchange(conn->sasl_state, pg_fe_scram_exchange(conn->sasl_state,
conn->auth_req_inbuf, conn->auth_req_inlen, challenge, payloadlen,
&output, &outputlen, &output, &outputlen,
&done, &success, &conn->errorMessage); &done, &success, &conn->errorMessage);
free(challenge); /* don't need the input anymore */
/* Send the SASL response to the server, if any. */
if (outputlen != 0) if (outputlen != 0)
{ {
/*
* Send the SASL response to the server. We don't care if it's the
* first or subsequent packet, just send the same kind of password
* packet.
*/
res = pqPacketSend(conn, 'p', output, outputlen); res = pqPacketSend(conn, 'p', output, outputlen);
free(output); free(output);
@ -582,6 +681,14 @@ pg_password_sendauth(PGconn *conn, const char *password, AuthRequest areq)
int ret; int ret;
char *crypt_pwd = NULL; char *crypt_pwd = NULL;
const char *pwd_to_send; const char *pwd_to_send;
char md5Salt[4];
/* Read the salt from the AuthenticationMD5 message. */
if (areq == AUTH_REQ_MD5)
{
if (pqGetnchar(md5Salt, 4, conn))
return STATUS_ERROR; /* shouldn't happen */
}
/* Encrypt the password if needed. */ /* Encrypt the password if needed. */
@ -607,8 +714,8 @@ pg_password_sendauth(PGconn *conn, const char *password, AuthRequest areq)
free(crypt_pwd); free(crypt_pwd);
return STATUS_ERROR; return STATUS_ERROR;
} }
if (!pg_md5_encrypt(crypt_pwd2 + strlen("md5"), conn->md5Salt, if (!pg_md5_encrypt(crypt_pwd2 + strlen("md5"), md5Salt,
sizeof(conn->md5Salt), crypt_pwd)) 4, crypt_pwd))
{ {
free(crypt_pwd); free(crypt_pwd);
return STATUS_ERROR; return STATUS_ERROR;
@ -635,10 +742,17 @@ pg_password_sendauth(PGconn *conn, const char *password, AuthRequest areq)
/* /*
* pg_fe_sendauth * pg_fe_sendauth
* client demux routine for outgoing authentication information * client demux routine for processing an authentication request
*
* The server has sent us an authentication challenge (or OK). Send an
* appropriate response. The caller has ensured that the whole message is
* now in the input buffer, and has already read the type and length of
* it. We are responsible for reading any remaining extra data, specific
* to the authentication method. 'payloadlen' is the remaining length in
* the message.
*/ */
int int
pg_fe_sendauth(AuthRequest areq, PGconn *conn) pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn)
{ {
switch (areq) switch (areq)
{ {
@ -676,13 +790,13 @@ pg_fe_sendauth(AuthRequest areq, PGconn *conn)
*/ */
#if defined(ENABLE_GSS) && defined(ENABLE_SSPI) #if defined(ENABLE_GSS) && defined(ENABLE_SSPI)
if (conn->gsslib && (pg_strcasecmp(conn->gsslib, "gssapi") == 0)) if (conn->gsslib && (pg_strcasecmp(conn->gsslib, "gssapi") == 0))
r = pg_GSS_startup(conn); r = pg_GSS_startup(conn, payloadlen);
else else
r = pg_SSPI_startup(conn, 0); r = pg_SSPI_startup(conn, 0, payloadlen);
#elif defined(ENABLE_GSS) && !defined(ENABLE_SSPI) #elif defined(ENABLE_GSS) && !defined(ENABLE_SSPI)
r = pg_GSS_startup(conn); r = pg_GSS_startup(conn, payloadlen);
#elif !defined(ENABLE_GSS) && defined(ENABLE_SSPI) #elif !defined(ENABLE_GSS) && defined(ENABLE_SSPI)
r = pg_SSPI_startup(conn, 0); r = pg_SSPI_startup(conn, 0, payloadlen);
#endif #endif
if (r != STATUS_OK) if (r != STATUS_OK)
{ {
@ -701,13 +815,13 @@ pg_fe_sendauth(AuthRequest areq, PGconn *conn)
pglock_thread(); pglock_thread();
#if defined(ENABLE_GSS) && defined(ENABLE_SSPI) #if defined(ENABLE_GSS) && defined(ENABLE_SSPI)
if (conn->usesspi) if (conn->usesspi)
r = pg_SSPI_continue(conn); r = pg_SSPI_continue(conn, payloadlen);
else else
r = pg_GSS_continue(conn); r = pg_GSS_continue(conn, payloadlen);
#elif defined(ENABLE_GSS) && !defined(ENABLE_SSPI) #elif defined(ENABLE_GSS) && !defined(ENABLE_SSPI)
r = pg_GSS_continue(conn); r = pg_GSS_continue(conn, payloadlen);
#elif !defined(ENABLE_GSS) && defined(ENABLE_SSPI) #elif !defined(ENABLE_GSS) && defined(ENABLE_SSPI)
r = pg_SSPI_continue(conn); r = pg_SSPI_continue(conn, payloadlen);
#endif #endif
if (r != STATUS_OK) if (r != STATUS_OK)
{ {
@ -736,7 +850,7 @@ pg_fe_sendauth(AuthRequest areq, PGconn *conn)
* negotiation instead of Kerberos. * negotiation instead of Kerberos.
*/ */
pglock_thread(); pglock_thread();
if (pg_SSPI_startup(conn, 1) != STATUS_OK) if (pg_SSPI_startup(conn, 1, payloadlen) != STATUS_OK)
{ {
/* Error message already filled in. */ /* Error message already filled in. */
pgunlock_thread(); pgunlock_thread();
@ -796,12 +910,12 @@ pg_fe_sendauth(AuthRequest areq, PGconn *conn)
* The request contains the name (as assigned by IANA) of the * The request contains the name (as assigned by IANA) of the
* authentication mechanism. * authentication mechanism.
*/ */
if (pg_SASL_init(conn, conn->auth_req_inbuf) != STATUS_OK) if (pg_SASL_init(conn, payloadlen) != STATUS_OK)
{ {
/* pg_SASL_init already set the error message */ /* pg_SASL_init already set the error message */
return STATUS_ERROR; return STATUS_ERROR;
} }
/* fall through */ break;
case AUTH_REQ_SASL_CONT: case AUTH_REQ_SASL_CONT:
if (conn->sasl_state == NULL) if (conn->sasl_state == NULL)
@ -810,7 +924,7 @@ pg_fe_sendauth(AuthRequest areq, PGconn *conn)
"fe_sendauth: invalid authentication request from server: AUTH_REQ_SASL_CONT without AUTH_REQ_SASL\n"); "fe_sendauth: invalid authentication request from server: AUTH_REQ_SASL_CONT without AUTH_REQ_SASL\n");
return STATUS_ERROR; return STATUS_ERROR;
} }
if (pg_SASL_exchange(conn) != STATUS_OK) if (pg_SASL_continue(conn, payloadlen) != STATUS_OK)
{ {
/* Use error message, if set already */ /* Use error message, if set already */
if (conn->errorMessage.len == 0) if (conn->errorMessage.len == 0)

View File

@ -19,7 +19,7 @@
/* Prototypes for functions in fe-auth.c */ /* Prototypes for functions in fe-auth.c */
extern int pg_fe_sendauth(AuthRequest areq, PGconn *conn); extern int pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn);
extern char *pg_fe_getauthname(PQExpBuffer errorMessage); extern char *pg_fe_getauthname(PQExpBuffer errorMessage);
/* Prototypes for functions in fe-auth-scram.c */ /* Prototypes for functions in fe-auth-scram.c */

View File

@ -2483,6 +2483,7 @@ keep_going: /* We will come back to here until there is
int msgLength; int msgLength;
int avail; int avail;
AuthRequest areq; AuthRequest areq;
int res;
/* /*
* Scan the message from current point (note that if we find * Scan the message from current point (note that if we find
@ -2672,117 +2673,51 @@ keep_going: /* We will come back to here until there is
/* We'll come back when there are more data */ /* We'll come back when there are more data */
return PGRES_POLLING_READING; return PGRES_POLLING_READING;
} }
msgLength -= 4;
/* Get the password salt if there is one. */
if (areq == AUTH_REQ_MD5)
{
if (pqGetnchar(conn->md5Salt,
sizeof(conn->md5Salt), conn))
{
/* We'll come back when there are more data */
return PGRES_POLLING_READING;
}
}
#if defined(ENABLE_GSS) || defined(ENABLE_SSPI)
/* /*
* Continue GSSAPI/SSPI authentication * Ensure the password salt is in the input buffer, if it's an
* MD5 request. All the other authentication methods that
* contain extra data in the authentication request are only
* supported in protocol version 3, in which case we already
* read the whole message above.
*/ */
if (areq == AUTH_REQ_GSS_CONT) if (areq == AUTH_REQ_MD5 && PG_PROTOCOL_MAJOR(conn->pversion) < 3)
{ {
int llen = msgLength - 4; msgLength += 4;
/* avail = conn->inEnd - conn->inCursor;
* We can be called repeatedly for the same buffer. Avoid if (avail < 4)
* re-allocating the buffer in this case - just re-use the
* old buffer.
*/
if (llen != conn->ginbuf.length)
{ {
if (conn->ginbuf.value) /*
free(conn->ginbuf.value); * Before returning, try to enlarge the input buffer
* if needed to hold the whole message; see notes in
conn->ginbuf.length = llen; * pqParseInput3.
conn->ginbuf.value = malloc(llen); */
if (!conn->ginbuf.value) if (pqCheckInBufferSpace(conn->inCursor + (size_t) 4,
{ conn))
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("out of memory allocating GSSAPI buffer (%d)"),
llen);
goto error_return; goto error_return;
} /* We'll come back when there is more data */
}
if (pqGetnchar(conn->ginbuf.value, llen, conn))
{
/* We'll come back when there is more data. */
return PGRES_POLLING_READING; return PGRES_POLLING_READING;
} }
} }
#endif
/* Get additional payload for SASL, if any */
if ((areq == AUTH_REQ_SASL ||
areq == AUTH_REQ_SASL_CONT) &&
msgLength > 4)
{
int llen = msgLength - 4;
/*
* We can be called repeatedly for the same buffer. Avoid
* re-allocating the buffer in this case - just re-use the
* old buffer.
*/
if (llen != conn->auth_req_inlen)
{
if (conn->auth_req_inbuf)
{
free(conn->auth_req_inbuf);
conn->auth_req_inbuf = NULL;
}
conn->auth_req_inlen = llen;
conn->auth_req_inbuf = malloc(llen + 1);
if (!conn->auth_req_inbuf)
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("out of memory allocating SASL buffer (%d)"),
llen);
goto error_return;
}
}
if (pqGetnchar(conn->auth_req_inbuf, llen, conn))
{
/* We'll come back when there is more data. */
return PGRES_POLLING_READING;
}
/*
* For safety and convenience, always ensure the in-buffer
* is NULL-terminated.
*/
conn->auth_req_inbuf[llen] = '\0';
}
/*
* OK, we successfully read the message; mark data consumed
*/
conn->inStart = conn->inCursor;
/* Respond to the request if necessary. */
/* /*
* Process the rest of the authentication request message, and
* respond to it if necessary.
*
* Note that conn->pghost must be non-NULL if we are going to * Note that conn->pghost must be non-NULL if we are going to
* avoid the Kerberos code doing a hostname look-up. * avoid the Kerberos code doing a hostname look-up.
*/ */
res = pg_fe_sendauth(areq, msgLength, conn);
if (pg_fe_sendauth(areq, conn) != STATUS_OK)
{
conn->errorMessage.len = strlen(conn->errorMessage.data);
goto error_return;
}
conn->errorMessage.len = strlen(conn->errorMessage.data); conn->errorMessage.len = strlen(conn->errorMessage.data);
/* OK, we have processed the message; mark data consumed */
conn->inStart = conn->inCursor;
if (res != STATUS_OK)
goto error_return;
/* /*
* Just make sure that any data sent by pg_fe_sendauth is * Just make sure that any data sent by pg_fe_sendauth is
* flushed out. Although this theoretically could block, it * flushed out. Although this theoretically could block, it
@ -3522,17 +3457,9 @@ closePGconn(PGconn *conn)
gss_delete_sec_context(&min_s, &conn->gctx, GSS_C_NO_BUFFER); gss_delete_sec_context(&min_s, &conn->gctx, GSS_C_NO_BUFFER);
if (conn->gtarg_nam) if (conn->gtarg_nam)
gss_release_name(&min_s, &conn->gtarg_nam); gss_release_name(&min_s, &conn->gtarg_nam);
if (conn->ginbuf.length)
gss_release_buffer(&min_s, &conn->ginbuf);
if (conn->goutbuf.length)
gss_release_buffer(&min_s, &conn->goutbuf);
} }
#endif #endif
#ifdef ENABLE_SSPI #ifdef ENABLE_SSPI
if (conn->ginbuf.length)
free(conn->ginbuf.value);
conn->ginbuf.length = 0;
conn->ginbuf.value = NULL;
if (conn->sspitarget) if (conn->sspitarget)
free(conn->sspitarget); free(conn->sspitarget);
conn->sspitarget = NULL; conn->sspitarget = NULL;

View File

@ -419,7 +419,6 @@ struct pg_conn
/* Miscellaneous stuff */ /* Miscellaneous stuff */
int be_pid; /* PID of backend --- needed for cancels */ int be_pid; /* PID of backend --- needed for cancels */
int be_key; /* key of backend --- needed for cancels */ int be_key; /* key of backend --- needed for cancels */
char md5Salt[4]; /* password salt received from backend */
pgParameterStatus *pstatus; /* ParameterStatus data */ pgParameterStatus *pstatus; /* ParameterStatus data */
int client_encoding; /* encoding id */ int client_encoding; /* encoding id */
bool std_strings; /* standard_conforming_strings */ bool std_strings; /* standard_conforming_strings */
@ -452,10 +451,6 @@ struct pg_conn
PGresult *result; /* result being constructed */ PGresult *result; /* result being constructed */
PGresult *next_result; /* next result (used in single-row mode) */ PGresult *next_result; /* next result (used in single-row mode) */
/* Buffer to hold incoming authentication request data */
char *auth_req_inbuf;
int auth_req_inlen;
/* Assorted state for SASL, SSL, GSS, etc */ /* Assorted state for SASL, SSL, GSS, etc */
void *sasl_state; void *sasl_state;
@ -479,14 +474,10 @@ struct pg_conn
#ifdef ENABLE_GSS #ifdef ENABLE_GSS
gss_ctx_id_t gctx; /* GSS context */ gss_ctx_id_t gctx; /* GSS context */
gss_name_t gtarg_nam; /* GSS target name */ gss_name_t gtarg_nam; /* GSS target name */
gss_buffer_desc ginbuf; /* GSS input token */
gss_buffer_desc goutbuf; /* GSS output token */
#endif #endif
#ifdef ENABLE_SSPI #ifdef ENABLE_SSPI
#ifndef ENABLE_GSS #ifdef ENABLE_GSS
gss_buffer_desc ginbuf; /* GSS input token */
#else
char *gsslib; /* What GSS library to use ("gssapi" or char *gsslib; /* What GSS library to use ("gssapi" or
* "sspi") */ * "sspi") */
#endif #endif