mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
From: Phil Thompson <phil@river-bank.demon.co.uk>
Attached is the patch to fix the warning messages from my code. I also fixed one which wasn't my code. Apart from the usual warnings about the bison/yacc generated code I only have one other warning message. This is in gramm.y around line 2234. I wasn't sure of the fix. I've also replaced all the calls to free() in gramm.y to calls to pfree(). Without these I was getting backend crashes with GRANT. This might already have been fixed.
This commit is contained in:
parent
2780576e36
commit
8e789e8ef1
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.23 1998/01/27 03:24:54 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.24 1998/01/29 03:23:05 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -390,9 +390,6 @@ void auth_failed(Port *port)
|
|||||||
*/
|
*/
|
||||||
void be_recvauth(Port *port)
|
void be_recvauth(Port *port)
|
||||||
{
|
{
|
||||||
AuthRequest areq;
|
|
||||||
void (*auth_handler)();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get the authentication method to use for this frontend/database
|
* Get the authentication method to use for this frontend/database
|
||||||
* combination.
|
* combination.
|
||||||
@ -400,70 +397,76 @@ void be_recvauth(Port *port)
|
|||||||
|
|
||||||
if (hba_getauthmethod(&port->raddr, port->database, port->auth_arg,
|
if (hba_getauthmethod(&port->raddr, port->database, port->auth_arg,
|
||||||
&port->auth_method) != STATUS_OK)
|
&port->auth_method) != STATUS_OK)
|
||||||
{
|
|
||||||
PacketSendError(&port->pktInfo, "Missing or mis-configured pg_hba.conf file");
|
PacketSendError(&port->pktInfo, "Missing or mis-configured pg_hba.conf file");
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Handle old style authentication. */
|
else if (PG_PROTOCOL_MAJOR(port->proto) == 0)
|
||||||
|
|
||||||
if (PG_PROTOCOL_MAJOR(port->proto) == 0)
|
|
||||||
{
|
{
|
||||||
|
/* Handle old style authentication. */
|
||||||
|
|
||||||
if (old_be_recvauth(port) != STATUS_OK)
|
if (old_be_recvauth(port) != STATUS_OK)
|
||||||
auth_failed(port);
|
auth_failed(port);
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
/* Handle new style authentication. */
|
|
||||||
|
|
||||||
switch (port->auth_method)
|
|
||||||
{
|
{
|
||||||
case uaReject:
|
AuthRequest areq;
|
||||||
auth_failed(port);
|
void (*auth_handler)();
|
||||||
return;
|
|
||||||
|
|
||||||
case uaKrb4:
|
|
||||||
areq = AUTH_REQ_KRB4;
|
|
||||||
auth_handler = handle_krb4_auth;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case uaKrb5:
|
/* Keep the compiler quiet. */
|
||||||
areq = AUTH_REQ_KRB5;
|
|
||||||
auth_handler = handle_krb5_auth;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case uaTrust:
|
|
||||||
areq = AUTH_REQ_OK;
|
areq = AUTH_REQ_OK;
|
||||||
auth_handler = handle_done_auth;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case uaIdent:
|
/* Handle new style authentication. */
|
||||||
if (authident(&port->raddr.in, &port->laddr.in, port->user,
|
|
||||||
port->auth_arg) != STATUS_OK)
|
auth_handler = NULL;
|
||||||
|
|
||||||
|
switch (port->auth_method)
|
||||||
{
|
{
|
||||||
|
case uaReject:
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaKrb4:
|
||||||
|
areq = AUTH_REQ_KRB4;
|
||||||
|
auth_handler = handle_krb4_auth;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaKrb5:
|
||||||
|
areq = AUTH_REQ_KRB5;
|
||||||
|
auth_handler = handle_krb5_auth;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaTrust:
|
||||||
|
areq = AUTH_REQ_OK;
|
||||||
|
auth_handler = handle_done_auth;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaIdent:
|
||||||
|
if (authident(&port->raddr.in, &port->laddr.in,
|
||||||
|
port->user, port->auth_arg) == STATUS_OK)
|
||||||
|
{
|
||||||
|
areq = AUTH_REQ_OK;
|
||||||
|
auth_handler = handle_done_auth;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaPassword:
|
||||||
|
areq = AUTH_REQ_PASSWORD;
|
||||||
|
auth_handler = handle_password_auth;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case uaCrypt:
|
||||||
|
areq = AUTH_REQ_CRYPT;
|
||||||
|
auth_handler = handle_password_auth;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tell the frontend what we want next. */
|
||||||
|
|
||||||
|
if (auth_handler != NULL)
|
||||||
|
sendAuthRequest(port, areq, auth_handler);
|
||||||
|
else
|
||||||
auth_failed(port);
|
auth_failed(port);
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
areq = AUTH_REQ_OK;
|
|
||||||
auth_handler = handle_done_auth;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case uaPassword:
|
|
||||||
areq = AUTH_REQ_PASSWORD;
|
|
||||||
auth_handler = handle_password_auth;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case uaCrypt:
|
|
||||||
areq = AUTH_REQ_CRYPT;
|
|
||||||
auth_handler = handle_password_auth;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tell the frontend what we want next. */
|
|
||||||
|
|
||||||
sendAuthRequest(port, areq, auth_handler);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
4
src/backend/utils/cache/lsyscache.c
vendored
4
src/backend/utils/cache/lsyscache.c
vendored
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.10 1998/01/20 05:04:32 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.11 1998/01/29 03:23:09 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* Eventually, the index information should go through here, too.
|
* Eventually, the index information should go through here, too.
|
||||||
@ -173,7 +173,7 @@ get_atttypmod(Oid relid, AttrNumber attnum)
|
|||||||
0, 0))
|
0, 0))
|
||||||
return att_tup.atttypmod;
|
return att_tup.atttypmod;
|
||||||
else
|
else
|
||||||
return NULL;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------- INDEX CACHE ---------- */
|
/* ---------- INDEX CACHE ---------- */
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.21 1997/12/20 00:10:47 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.22 1998/01/29 03:23:28 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* InitPostgres() is the function called from PostgresMain
|
* InitPostgres() is the function called from PostgresMain
|
||||||
@ -66,7 +66,7 @@
|
|||||||
#include "catalog/catname.h"
|
#include "catalog/catname.h"
|
||||||
#include "catalog/pg_database.h"
|
#include "catalog/pg_database.h"
|
||||||
|
|
||||||
#include "libpq/libpq-be.h"
|
#include "libpq/libpq.h"
|
||||||
|
|
||||||
static void VerifySystemDatabase(void);
|
static void VerifySystemDatabase(void);
|
||||||
static void VerifyMyDatabase(void);
|
static void VerifyMyDatabase(void);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.13 1998/01/26 01:42:25 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.14 1998/01/29 03:24:03 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -477,7 +477,7 @@ pg_password_sendauth(PGconn *conn, const char *password, AuthRequest areq)
|
|||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
|
fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
|
||||||
const char *password, const char *PQerrormsg)
|
const char *password, char *PQerrormsg)
|
||||||
{
|
{
|
||||||
switch (areq)
|
switch (areq)
|
||||||
{
|
{
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: fe-auth.h,v 1.7 1998/01/26 01:42:26 scrappy Exp $
|
* $Id: fe-auth.h,v 1.8 1998/01/29 03:24:21 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
extern int
|
extern int
|
||||||
fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
|
fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
|
||||||
const char *password, const char *PQerromsg);
|
const char *password, char *PQerromsg);
|
||||||
extern void fe_setauthsvc(const char *name, char *PQerrormsg);
|
extern void fe_setauthsvc(const char *name, char *PQerrormsg);
|
||||||
|
|
||||||
#define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */
|
#define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.60 1998/01/28 03:42:27 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.61 1998/01/29 03:24:30 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -808,9 +808,7 @@ PQreset(PGconn *conn)
|
|||||||
* SIDE_EFFECTS: may block.
|
* SIDE_EFFECTS: may block.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
packetSend(PGconn *conn,
|
packetSend(PGconn *conn, const char *buf, size_t len)
|
||||||
char *buf,
|
|
||||||
size_t len)
|
|
||||||
{
|
{
|
||||||
/* Send the total packet size. */
|
/* Send the total packet size. */
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: fe-connect.h,v 1.6 1998/01/26 01:42:30 scrappy Exp $
|
* $Id: fe-connect.h,v 1.7 1998/01/29 03:24:36 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -23,6 +23,6 @@
|
|||||||
*----------------------------------------------------------------
|
*----------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int packetSend(PGconn *conn, char *buf, size_t len);
|
int packetSend(PGconn *conn, const char *buf, size_t len);
|
||||||
|
|
||||||
#endif /* FE_CONNECT_H */
|
#endif /* FE_CONNECT_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user