Re: [HACKERS] Re: [COMMITTERS] 'pgsql/src/bin/initdb initdb.sh'

From: jwieck(at)debis(dot)com (Jan Wieck)
To: maillist(at)candle(dot)pha(dot)pa(dot)us (Bruce Momjian)
Cc: pgsql-hackers(at)postgreSQL(dot)org (PostgreSQL HACKERS)
Subject: Re: [HACKERS] Re: [COMMITTERS] 'pgsql/src/bin/initdb initdb.sh'
Date: 1998-02-24 16:19:07
Message-ID: m0y7N4V-000BFRC@orion.SAPserv.Hamburg.dsh.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Bruce wrote:
>
> > But as it was done in most UN*X's, could we rename the
> > pg_user containing the password into pg_shadow and then
> > create a view pg_user that just stars out the password field?
> > This way no existing application code (not even the JDBC
> > etc.) needs any changes, except for the createuser etc.
> > tools that always get installed with the new release.
>
> The only problem with that is that the database administrator now should
> deal with pg_shadow, and not pg_user, and pg_user is not a real table
> anymore. Actually, in Unix, this is true too. I don't think we can
> change the real table to pg_shadow this close to a release, can we?

We can. Here it is. ALL regression tests except for float8
and geometry (only fp differences - diffs checked) passed
'ok'. Checked that createuser and destroyuser work.

This patch changes the catalog pg_user into pg_shadow and
creates a view pg_user that definitely works. Oridinary user
cannot access pg_shadow.

Since your greatest need (to stay with all system stuff named
pg_) is met, you might like it too.

Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#======================================== jwieck(at)debis(dot)com (Jan Wieck) #

diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/catalog/Makefile ./backend/catalog/Makefile
*** /usr/local/pgsql/sup/pgsql/src/backend/catalog/Makefile Wed Jan 7 13:36:12 1998
--- ./backend/catalog/Makefile Tue Feb 24 14:25:33 1998
***************
*** 27,33 ****
GENBKI= ./genbki.sh

GLOBALBKI_SRCS= $(addprefix ../../include/catalog/, \
! pg_database.h pg_variable.h pg_user.h \
pg_group.h pg_log.h \
)

--- 27,33 ----
GENBKI= ./genbki.sh

GLOBALBKI_SRCS= $(addprefix ../../include/catalog/, \
! pg_database.h pg_variable.h pg_shadow.h \
pg_group.h pg_log.h \
)

diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/catalog/aclchk.c ./backend/catalog/aclchk.c
*** /usr/local/pgsql/sup/pgsql/src/backend/catalog/aclchk.c Tue Feb 24 10:22:24 1998
--- ./backend/catalog/aclchk.c Tue Feb 24 14:54:08 1998
***************
*** 32,38 ****
#include "catalog/pg_aggregate.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
! #include "catalog/pg_user.h"
#include "parser/parse_agg.h"
#include "parser/parse_func.h"
#include "utils/syscache.h"
--- 32,38 ----
#include "catalog/pg_aggregate.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
! #include "catalog/pg_shadow.h"
#include "parser/parse_agg.h"
#include "parser/parse_func.h"
#include "utils/syscache.h"
***************
*** 396,409 ****
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_aclcheck: user \"%s\" not found",
usename);
! id = (AclId) ((Form_pg_user) GETSTRUCT(htp))->usesysid;

/*
* for the 'pg_database' relation, check the usecreatedb field before
* checking normal permissions
*/
if (strcmp(DatabaseRelationName, relname) == 0 &&
! (((Form_pg_user) GETSTRUCT(htp))->usecreatedb))
{

/*
--- 396,409 ----
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_aclcheck: user \"%s\" not found",
usename);
! id = (AclId) ((Form_pg_shadow) GETSTRUCT(htp))->usesysid;

/*
* for the 'pg_database' relation, check the usecreatedb field before
* checking normal permissions
*/
if (strcmp(DatabaseRelationName, relname) == 0 &&
! (((Form_pg_shadow) GETSTRUCT(htp))->usecreatedb))
{

/*
***************
*** 417,428 ****

/*
* Deny anyone permission to update a system catalog unless
! * pg_user.usecatupd is set. (This is to let superusers protect
* themselves from themselves.)
*/
if (((mode & ACL_WR) || (mode & ACL_AP)) &&
IsSystemRelationName(relname) &&
! !((Form_pg_user) GETSTRUCT(htp))->usecatupd)
{
elog(DEBUG, "pg_aclcheck: catalog update to \"%s\": permission denied",
relname);
--- 417,428 ----

/*
* Deny anyone permission to update a system catalog unless
! * pg_shadow.usecatupd is set. (This is to let superusers protect
* themselves from themselves.)
*/
if (((mode & ACL_WR) || (mode & ACL_AP)) &&
IsSystemRelationName(relname) &&
! !((Form_pg_shadow) GETSTRUCT(htp))->usecatupd)
{
elog(DEBUG, "pg_aclcheck: catalog update to \"%s\": permission denied",
relname);
***************
*** 432,438 ****
/*
* Otherwise, superusers bypass all permission-checking.
*/
! if (((Form_pg_user) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_aclcheck: \"%s\" is superuser",
--- 432,438 ----
/*
* Otherwise, superusers bypass all permission-checking.
*/
! if (((Form_pg_shadow) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_aclcheck: \"%s\" is superuser",
***************
*** 531,542 ****
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_user) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_user) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_ownercheck: user \"%s\" is superuser",
--- 531,542 ----
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_shadow) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_shadow) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_ownercheck: user \"%s\" is superuser",
***************
*** 597,608 ****
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_func_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_user) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_user) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_ownercheck: user \"%s\" is superuser",
--- 597,608 ----
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_func_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_shadow) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_shadow) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_ownercheck: user \"%s\" is superuser",
***************
*** 638,649 ****
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_aggr_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_user) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_user) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_aggr_ownercheck: user \"%s\" is superuser",
--- 638,649 ----
if (!HeapTupleIsValid(htp))
elog(ERROR, "pg_aggr_ownercheck: user \"%s\" not found",
usename);
! user_id = (AclId) ((Form_pg_shadow) GETSTRUCT(htp))->usesysid;

/*
* Superusers bypass all permission-checking.
*/
! if (((Form_pg_shadow) GETSTRUCT(htp))->usesuper)
{
#ifdef ACLDEBUG_TRACE
elog(DEBUG, "pg_aggr_ownercheck: user \"%s\" is superuser",
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/commands/copy.c ./backend/commands/copy.c
*** /usr/local/pgsql/sup/pgsql/src/backend/commands/copy.c Thu Feb 19 13:05:25 1998
--- ./backend/commands/copy.c Tue Feb 24 14:39:35 1998
***************
*** 32,38 ****
#include <access/genam.h>
#include <catalog/pg_type.h>
#include <catalog/catname.h>
! #include <catalog/pg_user.h>
#include <commands/copy.h>
#include "commands/trigger.h"
#include <storage/fd.h>
--- 32,38 ----
#include <access/genam.h>
#include <catalog/pg_type.h>
#include <catalog/catname.h>
! #include <catalog/pg_shadow.h>
#include <commands/copy.h>
#include "commands/trigger.h"
#include <storage/fd.h>
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/commands/dbcommands.c ./backend/commands/dbcommands.c
*** /usr/local/pgsql/sup/pgsql/src/backend/commands/dbcommands.c Wed Feb 4 09:33:29 1998
--- ./backend/commands/dbcommands.c Tue Feb 24 14:45:45 1998
***************
*** 25,31 ****
#include "utils/elog.h"
#include "catalog/catname.h"
#include "catalog/pg_proc.h"
! #include "catalog/pg_user.h"
#include "catalog/pg_database.h"
#include "utils/syscache.h"
#include "commands/dbcommands.h"
--- 25,31 ----
#include "utils/elog.h"
#include "catalog/catname.h"
#include "catalog/pg_proc.h"
! #include "catalog/pg_shadow.h"
#include "catalog/pg_database.h"
#include "utils/syscache.h"
#include "commands/dbcommands.h"
***************
*** 211,219 ****
userName = GetPgUserName();
utup = SearchSysCacheTuple(USENAME, PointerGetDatum(userName),
0, 0, 0);
! *userIdP = ((Form_pg_user) GETSTRUCT(utup))->usesysid;
! use_super = ((Form_pg_user) GETSTRUCT(utup))->usesuper;
! use_createdb = ((Form_pg_user) GETSTRUCT(utup))->usecreatedb;

/* Check to make sure user has permission to use createdb */
if (!use_createdb)
--- 211,219 ----
userName = GetPgUserName();
utup = SearchSysCacheTuple(USENAME, PointerGetDatum(userName),
0, 0, 0);
! *userIdP = ((Form_pg_shadow) GETSTRUCT(utup))->usesysid;
! use_super = ((Form_pg_shadow) GETSTRUCT(utup))->usesuper;
! use_createdb = ((Form_pg_shadow) GETSTRUCT(utup))->usecreatedb;

/* Check to make sure user has permission to use createdb */
if (!use_createdb)
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/commands/define.c ./backend/commands/define.c
*** /usr/local/pgsql/sup/pgsql/src/backend/commands/define.c Fri Feb 13 18:28:37 1998
--- ./backend/commands/define.c Tue Feb 24 14:39:46 1998
***************
*** 52,58 ****
#include <commands/defrem.h>
#include <optimizer/xfunc.h>
#include <tcop/dest.h>
! #include <catalog/pg_user.h>

static char *defGetString(DefElem *def);
static int defGetTypeLength(DefElem *def);
--- 52,58 ----
#include <commands/defrem.h>
#include <optimizer/xfunc.h>
#include <tcop/dest.h>
! #include <catalog/pg_shadow.h>

static char *defGetString(DefElem *def);
static int defGetTypeLength(DefElem *def);
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/commands/proclang.c ./backend/commands/proclang.c
*** /usr/local/pgsql/sup/pgsql/src/backend/commands/proclang.c Wed Jan 7 13:36:17 1998
--- ./backend/commands/proclang.c Tue Feb 24 14:39:49 1998
***************
*** 11,17 ****

#include "access/heapam.h"
#include "catalog/catname.h"
! #include "catalog/pg_user.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_language.h"
#include "utils/syscache.h"
--- 11,17 ----

#include "access/heapam.h"
#include "catalog/catname.h"
! #include "catalog/pg_shadow.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_language.h"
#include "utils/syscache.h"
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/commands/user.c ./backend/commands/user.c
*** /usr/local/pgsql/sup/pgsql/src/backend/commands/user.c Thu Feb 19 22:31:39 1998
--- ./backend/commands/user.c Tue Feb 24 14:52:21 1998
***************
*** 21,27 ****
#include <miscadmin.h>
#include <catalog/catname.h>
#include <catalog/pg_database.h>
! #include <catalog/pg_user.h>
#include <libpq/crypt.h>
#include <access/heapam.h>
#include <access/xact.h>
--- 21,27 ----
#include <miscadmin.h>
#include <catalog/catname.h>
#include <catalog/pg_database.h>
! #include <catalog/pg_shadow.h>
#include <libpq/crypt.h>
#include <access/heapam.h>
#include <access/xact.h>
***************
*** 38,44 ****
/*---------------------------------------------------------------------
* UpdatePgPwdFile
*
! * copy the modified contents of pg_user to a file used by the postmaster
* for user authentication. The file is stored as $PGDATA/pg_pwd.
*---------------------------------------------------------------------
*/
--- 38,44 ----
/*---------------------------------------------------------------------
* UpdatePgPwdFile
*
! * copy the modified contents of pg_shadow to a file used by the postmaster
* for user authentication. The file is stored as $PGDATA/pg_pwd.
*---------------------------------------------------------------------
*/
***************
*** 56,66 ****
tempname = (char*)malloc(strlen(filename) + 12);
sprintf(tempname, "%s.%d", filename, MyProcPid);

! /* Copy the contents of pg_user to the pg_pwd ASCII file using a the SEPCHAR
* character as the delimiter between fields. Then rename the file to its
* final name.
*/
! sprintf(sql, "copy %s to '%s' using delimiters %s", UserRelationName, tempname, CRYPT_PWD_FILE_SEPCHAR);
pg_exec_query(sql, (char**)NULL, (Oid*)NULL, 0);
rename(tempname, filename);
free((void*)tempname);
--- 56,66 ----
tempname = (char*)malloc(strlen(filename) + 12);
sprintf(tempname, "%s.%d", filename, MyProcPid);

! /* Copy the contents of pg_shadow to the pg_pwd ASCII file using a the SEPCHAR
* character as the delimiter between fields. Then rename the file to its
* final name.
*/
! sprintf(sql, "copy %s to '%s' using delimiters %s", ShadowRelationName, tempname, CRYPT_PWD_FILE_SEPCHAR);
pg_exec_query(sql, (char**)NULL, (Oid*)NULL, 0);
rename(tempname, filename);
free((void*)tempname);
***************
*** 76,90 ****
/*---------------------------------------------------------------------
* DefineUser
*
! * Add the user to the pg_user relation, and if specified make sure the
* user is specified in the desired groups of defined in pg_group.
*---------------------------------------------------------------------
*/
void DefineUser(CreateUserStmt *stmt) {

char* pg_user;
! Relation pg_user_rel;
! TupleDesc pg_user_dsc;
HeapScanDesc scan;
HeapTuple tuple;
Datum datum;
--- 76,90 ----
/*---------------------------------------------------------------------
* DefineUser
*
! * Add the user to the pg_shadow relation, and if specified make sure the
* user is specified in the desired groups of defined in pg_group.
*---------------------------------------------------------------------
*/
void DefineUser(CreateUserStmt *stmt) {

char* pg_user;
! Relation pg_shadow_rel;
! TupleDesc pg_shadow_dsc;
HeapScanDesc scan;
HeapTuple tuple;
Datum datum;
***************
*** 101,134 ****
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can insert into the pg_user
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(UserRelationName, pg_user, ACL_RD | ACL_WR | ACL_AP) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "defineUser: user \"%s\" does not have SELECT and INSERT privilege for \"%s\"",
! pg_user, UserRelationName);
return;
}

! /* Scan the pg_user relation to be certain the user doesn't already exist.
*/
! pg_user_rel = heap_openr(UserRelationName);
! pg_user_dsc = RelationGetTupleDescriptor(pg_user_rel);
! /* Secure a write lock on pg_user so we can be sure of what the next usesysid
* should be.
*/
! RelationSetLockForWrite(pg_user_rel);

! scan = heap_beginscan(pg_user_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_user_usename, pg_user_dsc, &n);

if (!exists && !strncmp((char*)datum, stmt->user, strlen(stmt->user)))
exists = true;

! datum = heap_getattr(tuple, Anum_pg_user_usesysid, pg_user_dsc, &n);
if ((int)datum > max_id)
max_id = (int)datum;

--- 101,134 ----
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can insert into the pg_shadow
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(ShadowRelationName, pg_user, ACL_RD | ACL_WR | ACL_AP) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "defineUser: user \"%s\" does not have SELECT and INSERT privilege for \"%s\"",
! pg_user, ShadowRelationName);
return;
}

! /* Scan the pg_shadow relation to be certain the user doesn't already exist.
*/
! pg_shadow_rel = heap_openr(ShadowRelationName);
! pg_shadow_dsc = RelationGetTupleDescriptor(pg_shadow_rel);
! /* Secure a write lock on pg_shadow so we can be sure of what the next usesysid
* should be.
*/
! RelationSetLockForWrite(pg_shadow_rel);

! scan = heap_beginscan(pg_shadow_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_shadow_usename, pg_shadow_dsc, &n);

if (!exists && !strncmp((char*)datum, stmt->user, strlen(stmt->user)))
exists = true;

! datum = heap_getattr(tuple, Anum_pg_shadow_usesysid, pg_shadow_dsc, &n);
if ((int)datum > max_id)
max_id = (int)datum;

***************
*** 137,144 ****
heap_endscan(scan);

if (exists) {
! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);
UserAbortTransactionBlock();
elog(ERROR, "defineUser: user \"%s\" has already been created", stmt->user);
return;
--- 137,144 ----
heap_endscan(scan);

if (exists) {
! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);
UserAbortTransactionBlock();
elog(ERROR, "defineUser: user \"%s\" has already been created", stmt->user);
return;
***************
*** 146,152 ****

/* Build the insert statment to be executed.
*/
! sprintf(sql, "insert into %s(usename,usesysid,usecreatedb,usetrace,usesuper,usecatupd,passwd", UserRelationName);
/* if (stmt->password)
strcat(sql, ",passwd"); -- removed so that insert empty string when no password */
if (stmt->validUntil)
--- 146,152 ----

/* Build the insert statment to be executed.
*/
! sprintf(sql, "insert into %s(usename,usesysid,usecreatedb,usetrace,usesuper,usecatupd,passwd", ShadowRelationName);
/* if (stmt->password)
strcat(sql, ",passwd"); -- removed so that insert empty string when no password */
if (stmt->validUntil)
***************
*** 186,193 ****
/* This goes after the UpdatePgPwdFile to be certain that two backends to not
* attempt to write to the pg_pwd file at the same time.
*/
! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
--- 186,193 ----
/* This goes after the UpdatePgPwdFile to be certain that two backends to not
* attempt to write to the pg_pwd file at the same time.
*/
! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
***************
*** 197,204 ****
extern void AlterUser(AlterUserStmt *stmt) {

char* pg_user;
! Relation pg_user_rel;
! TupleDesc pg_user_dsc;
HeapScanDesc scan;
HeapTuple tuple;
Datum datum;
--- 197,204 ----
extern void AlterUser(AlterUserStmt *stmt) {

char* pg_user;
! Relation pg_shadow_rel;
! TupleDesc pg_shadow_dsc;
HeapScanDesc scan;
HeapTuple tuple;
Datum datum;
***************
*** 214,242 ****
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can insert into the pg_user
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(UserRelationName, pg_user, ACL_RD | ACL_WR) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "alterUser: user \"%s\" does not have SELECT and UPDATE privilege for \"%s\"",
! pg_user, UserRelationName);
return;
}

! /* Scan the pg_user relation to be certain the user exists.
*/
! pg_user_rel = heap_openr(UserRelationName);
! pg_user_dsc = RelationGetTupleDescriptor(pg_user_rel);
! /* Secure a write lock on pg_user so we can be sure that when the dump of
* the pg_pwd file is done, there is not another backend doing the same.
*/
! RelationSetLockForWrite(pg_user_rel);

! scan = heap_beginscan(pg_user_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_user_usename, pg_user_dsc, &n);

if (!strncmp((char*)datum, stmt->user, strlen(stmt->user))) {
exists = true;
--- 214,242 ----
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can insert into the pg_shadow
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(ShadowRelationName, pg_user, ACL_RD | ACL_WR) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "alterUser: user \"%s\" does not have SELECT and UPDATE privilege for \"%s\"",
! pg_user, ShadowRelationName);
return;
}

! /* Scan the pg_shadow relation to be certain the user exists.
*/
! pg_shadow_rel = heap_openr(ShadowRelationName);
! pg_shadow_dsc = RelationGetTupleDescriptor(pg_shadow_rel);
! /* Secure a write lock on pg_shadow so we can be sure that when the dump of
* the pg_pwd file is done, there is not another backend doing the same.
*/
! RelationSetLockForWrite(pg_shadow_rel);

! scan = heap_beginscan(pg_shadow_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_shadow_usename, pg_shadow_dsc, &n);

if (!strncmp((char*)datum, stmt->user, strlen(stmt->user))) {
exists = true;
***************
*** 247,254 ****
heap_endscan(scan);

if (!exists) {
! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);
UserAbortTransactionBlock();
elog(ERROR, "alterUser: user \"%s\" does not exist", stmt->user);
return;
--- 247,254 ----
heap_endscan(scan);

if (!exists) {
! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);
UserAbortTransactionBlock();
elog(ERROR, "alterUser: user \"%s\" does not exist", stmt->user);
return;
***************
*** 256,262 ****

/* Create the update statement to modify the user.
*/
! sprintf(sql, "update %s set", UserRelationName);
sql_end = sql;
if (stmt->password) {
sql_end += strlen(sql_end);
--- 256,262 ----

/* Create the update statement to modify the user.
*/
! sprintf(sql, "update %s set", ShadowRelationName);
sql_end = sql;
if (stmt->password) {
sql_end += strlen(sql_end);
***************
*** 296,303 ****

UpdatePgPwdFile(sql);

! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
--- 296,303 ----

UpdatePgPwdFile(sql);

! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
***************
*** 307,313 ****
extern void RemoveUser(char* user) {

char* pg_user;
! Relation pg_user_rel,
pg_rel;
TupleDesc pg_dsc;
HeapScanDesc scan;
--- 307,313 ----
extern void RemoveUser(char* user) {

char* pg_user;
! Relation pg_shadow_rel,
pg_rel;
TupleDesc pg_dsc;
HeapScanDesc scan;
***************
*** 324,356 ****
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can delete from the pg_user
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(UserRelationName, pg_user, ACL_RD | ACL_WR) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "removeUser: user \"%s\" does not have SELECT and DELETE privilege for \"%s\"",
! pg_user, UserRelationName);
return;
}

! /* Perform a scan of the pg_user relation to find the usesysid of the user to
* be deleted. If it is not found, then return a warning message.
*/
! pg_user_rel = heap_openr(UserRelationName);
! pg_dsc = RelationGetTupleDescriptor(pg_user_rel);
! /* Secure a write lock on pg_user so we can be sure that when the dump of
* the pg_pwd file is done, there is not another backend doing the same.
*/
! RelationSetLockForWrite(pg_user_rel);

! scan = heap_beginscan(pg_user_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_user_usename, pg_dsc, &n);

if (!strncmp((char*)datum, user, strlen(user))) {
! usesysid = (int)heap_getattr(tuple, Anum_pg_user_usesysid, pg_dsc, &n);
ReleaseBuffer(buffer);
break;
}
--- 324,356 ----
if (!(inblock = IsTransactionBlock()))
BeginTransactionBlock();

! /* Make sure the user attempting to create a user can delete from the pg_shadow
* relation.
*/
pg_user = GetPgUserName();
! if (pg_aclcheck(ShadowRelationName, pg_user, ACL_RD | ACL_WR) != ACLCHECK_OK) {
UserAbortTransactionBlock();
elog(ERROR, "removeUser: user \"%s\" does not have SELECT and DELETE privilege for \"%s\"",
! pg_user, ShadowRelationName);
return;
}

! /* Perform a scan of the pg_shadow relation to find the usesysid of the user to
* be deleted. If it is not found, then return a warning message.
*/
! pg_shadow_rel = heap_openr(ShadowRelationName);
! pg_dsc = RelationGetTupleDescriptor(pg_shadow_rel);
! /* Secure a write lock on pg_shadow so we can be sure that when the dump of
* the pg_pwd file is done, there is not another backend doing the same.
*/
! RelationSetLockForWrite(pg_shadow_rel);

! scan = heap_beginscan(pg_shadow_rel, false, false, 0, NULL);
while (HeapTupleIsValid(tuple = heap_getnext(scan, 0, &buffer))) {
! datum = heap_getattr(tuple, Anum_pg_shadow_usename, pg_dsc, &n);

if (!strncmp((char*)datum, user, strlen(user))) {
! usesysid = (int)heap_getattr(tuple, Anum_pg_shadow_usesysid, pg_dsc, &n);
ReleaseBuffer(buffer);
break;
}
***************
*** 359,366 ****
heap_endscan(scan);

if (usesysid == -1) {
! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);
UserAbortTransactionBlock();
elog(ERROR, "removeUser: user \"%s\" does not exist", user);
return;
--- 359,366 ----
heap_endscan(scan);

if (usesysid == -1) {
! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);
UserAbortTransactionBlock();
elog(ERROR, "removeUser: user \"%s\" does not exist", user);
return;
***************
*** 399,406 ****
if (dbase)
free((void*)dbase);

! /* Since pg_user is global over all databases, one of two things must be done
! * to insure complete consistency. First, pg_user could be made non-global.
* This would elminate the code above for deleting database and would require
* the addition of code to delete tables, views, etc owned by the user.
*
--- 399,406 ----
if (dbase)
free((void*)dbase);

! /* Since pg_shadow is global over all databases, one of two things must be done
! * to insure complete consistency. First, pg_shadow could be made non-global.
* This would elminate the code above for deleting database and would require
* the addition of code to delete tables, views, etc owned by the user.
*
***************
*** 414,428 ****
*
*/

! /* Remove the user from the pg_user table
*/
! sprintf(sql, "delete from %s where usename = '%s'", UserRelationName, user);
pg_exec_query(sql, (char**)NULL, (Oid*)NULL, 0);

UpdatePgPwdFile(sql);

! RelationUnsetLockForWrite(pg_user_rel);
! heap_close(pg_user_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
--- 414,428 ----
*
*/

! /* Remove the user from the pg_shadow table
*/
! sprintf(sql, "delete from %s where usename = '%s'", ShadowRelationName, user);
pg_exec_query(sql, (char**)NULL, (Oid*)NULL, 0);

UpdatePgPwdFile(sql);

! RelationUnsetLockForWrite(pg_shadow_rel);
! heap_close(pg_shadow_rel);

if (IsTransactionBlock() && !inblock)
EndTransactionBlock();
***************
*** 431,455 ****
/*
* CheckPgUserAclNotNull
*
! * check to see if there is an ACL on pg_user
*/
static void CheckPgUserAclNotNull()
{
HeapTuple htp;

! htp = SearchSysCacheTuple(RELNAME, PointerGetDatum(UserRelationName),
0, 0, 0);
if (!HeapTupleIsValid(htp))
{
elog(ERROR, "IsPgUserAclNull: class \"%s\" not found",
! UserRelationName);
}

if (heap_attisnull(htp, Anum_pg_class_relacl))
{
! elog(NOTICE, "To use passwords, you have to revoke permissions on pg_user");
elog(NOTICE, "so normal users can not read the passwords.");
! elog(ERROR, "Try 'REVOKE ALL ON pg_user FROM PUBLIC'");
}

return;
--- 431,455 ----
/*
* CheckPgUserAclNotNull
*
! * check to see if there is an ACL on pg_shadow
*/
static void CheckPgUserAclNotNull()
{
HeapTuple htp;

! htp = SearchSysCacheTuple(RELNAME, PointerGetDatum(ShadowRelationName),
0, 0, 0);
if (!HeapTupleIsValid(htp))
{
elog(ERROR, "IsPgUserAclNull: class \"%s\" not found",
! ShadowRelationName);
}

if (heap_attisnull(htp, Anum_pg_class_relacl))
{
! elog(NOTICE, "To use passwords, you have to revoke permissions on pg_shadow");
elog(NOTICE, "so normal users can not read the passwords.");
! elog(ERROR, "Try 'REVOKE ALL ON pg_shadow FROM PUBLIC'");
}

return;
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/libpq/auth.c ./backend/libpq/auth.c
*** /usr/local/pgsql/sup/pgsql/src/backend/libpq/auth.c Wed Feb 4 09:33:38 1998
--- ./backend/libpq/auth.c Tue Feb 24 14:52:50 1998
***************
*** 605,611 ****

/*
* Use the local flat password file if clear passwords are used and the file is
! * specified. Otherwise use the password in the pg_user table, encrypted or
* not.
*/

--- 605,611 ----

/*
* Use the local flat password file if clear passwords are used and the file is
! * specified. Otherwise use the password in the pg_shadow table, encrypted or
* not.
*/

diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/libpq/crypt.c ./backend/libpq/crypt.c
*** /usr/local/pgsql/sup/pgsql/src/backend/libpq/crypt.c Wed Feb 4 09:33:39 1998
--- ./backend/libpq/crypt.c Tue Feb 24 14:53:38 1998
***************
*** 1,7 ****
/*-------------------------------------------------------------------------
*
* crypt.c--
! * Look into pg_user and check the encrypted password with the one
* passed in from the frontend.
*
* Modification History
--- 1,7 ----
/*-------------------------------------------------------------------------
*
* crypt.c--
! * Look into pg_shadow and check the encrypted password with the one
* passed in from the frontend.
*
* Modification History
***************
*** 119,125 ****

/* We want to delete the flag file before reading the contents of the pg_pwd
* file. If result == 0 then the unlink of the reload file was successful.
! * This means that a backend performed a COPY of the pg_user file to
* pg_pwd. Therefore we must now do a reload.
*/
if (!pwd_cache || !result) {
--- 119,125 ----

/* We want to delete the flag file before reading the contents of the pg_pwd
* file. If result == 0 then the unlink of the reload file was successful.
! * This means that a backend performed a COPY of the pg_shadow file to
* pg_pwd. Therefore we must now do a reload.
*/
if (!pwd_cache || !result) {
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/parser/gram.y ./backend/parser/gram.y
*** /usr/local/pgsql/sup/pgsql/src/backend/parser/gram.y Thu Feb 19 13:05:45 1998
--- ./backend/parser/gram.y Tue Feb 24 14:57:11 1998
***************
*** 88,94 ****
char chr;
char *str;
bool boolean;
! bool* pboolean; /* for pg_user privileges */
List *list;
Node *node;
Value *value;
--- 88,94 ----
char chr;
char *str;
bool boolean;
! bool* pboolean; /* for pg_shadow privileges */
List *list;
Node *node;
Value *value;
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/rewrite/rewriteHandler.c ./backend/rewrite/rewriteHandler.c
*** /usr/local/pgsql/sup/pgsql/src/backend/rewrite/rewriteHandler.c Mon Feb 23 14:21:42 1998
--- ./backend/rewrite/rewriteHandler.c Tue Feb 24 14:45:52 1998
***************
*** 32,38 ****

#include "utils/syscache.h"
#include "utils/acl.h"
! #include "catalog/pg_user.h"

static void ApplyRetrieveRule(Query *parsetree, RewriteRule *rule,
int rt_index, int relation_level,
--- 32,38 ----

#include "utils/syscache.h"
#include "utils/acl.h"
! #include "catalog/pg_shadow.h"

static void ApplyRetrieveRule(Query *parsetree, RewriteRule *rule,
int rt_index, int relation_level,
***************
*** 827,833 ****
view->rd_rel->relowner);
}
StrNCpy(uname.data,
! ((Form_pg_user) GETSTRUCT(utup))->usename.data,
NAMEDATALEN);

/*
--- 827,833 ----
view->rd_rel->relowner);
}
StrNCpy(uname.data,
! ((Form_pg_shadow) GETSTRUCT(utup))->usename.data,
NAMEDATALEN);

/*
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/utils/adt/acl.c ./backend/utils/adt/acl.c
*** /usr/local/pgsql/sup/pgsql/src/backend/utils/adt/acl.c Tue Feb 24 10:22:34 1998
--- ./backend/utils/adt/acl.c Tue Feb 24 14:46:02 1998
***************
*** 19,25 ****
#include "utils/acl.h"
#include "utils/syscache.h"
#include "catalog/catalog.h"
! #include "catalog/pg_user.h"
#include "miscadmin.h"

static char *getid(char *s, char *n);
--- 19,25 ----
#include "utils/acl.h"
#include "utils/syscache.h"
#include "catalog/catalog.h"
! #include "catalog/pg_shadow.h"
#include "miscadmin.h"

static char *getid(char *s, char *n);
***************
*** 158,164 ****
0, 0, 0);
if (!HeapTupleIsValid(htp))
elog(ERROR, "aclparse: non-existent user \"%s\"", name);
! aip->ai_id = ((Form_pg_user) GETSTRUCT(htp))->usesysid;
break;
case ACL_IDTYPE_GID:
aip->ai_id = get_grosysid(name);
--- 158,164 ----
0, 0, 0);
if (!HeapTupleIsValid(htp))
elog(ERROR, "aclparse: non-existent user \"%s\"", name);
! aip->ai_id = ((Form_pg_shadow) GETSTRUCT(htp))->usesysid;
break;
case ACL_IDTYPE_GID:
aip->ai_id = get_grosysid(name);
***************
*** 285,291 ****
pfree(tmp);
}
else
! strncat(p, (char *) &((Form_pg_user)
GETSTRUCT(htp))->usename,
sizeof(NameData));
break;
--- 285,291 ----
pfree(tmp);
}
else
! strncat(p, (char *) &((Form_pg_shadow)
GETSTRUCT(htp))->usename,
sizeof(NameData));
break;
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/utils/cache/syscache.c ./backend/utils/cache/syscache.c
*** /usr/local/pgsql/sup/pgsql/src/backend/utils/cache/syscache.c Thu Feb 12 14:36:23 1998
--- ./backend/utils/cache/syscache.c Tue Feb 24 14:48:38 1998
***************
*** 48,54 ****
#include "catalog/pg_type.h"
#include "catalog/pg_rewrite.h"
#include "catalog/pg_aggregate.h"
! #include "catalog/pg_user.h"
#include "storage/large_object.h"
#include "catalog/pg_listener.h"

--- 48,54 ----
#include "catalog/pg_type.h"
#include "catalog/pg_rewrite.h"
#include "catalog/pg_aggregate.h"
! #include "catalog/pg_shadow.h"
#include "storage/large_object.h"
#include "catalog/pg_listener.h"

***************
*** 254,275 ****
sizeof(FormData_pg_listener),
NULL,
(ScanFunc) NULL},
! {UserRelationName, /* USENAME */
1,
! {Anum_pg_user_usename,
0,
0,
0},
! sizeof(FormData_pg_user),
NULL,
(ScanFunc) NULL},
! {UserRelationName, /* USESYSID */
1,
! {Anum_pg_user_usesysid,
0,
0,
0},
! sizeof(FormData_pg_user),
NULL,
(ScanFunc) NULL},
{GroupRelationName, /* GRONAME */
--- 254,275 ----
sizeof(FormData_pg_listener),
NULL,
(ScanFunc) NULL},
! {ShadowRelationName, /* USENAME */
1,
! {Anum_pg_shadow_usename,
0,
0,
0},
! sizeof(FormData_pg_shadow),
NULL,
(ScanFunc) NULL},
! {ShadowRelationName, /* USESYSID */
1,
! {Anum_pg_shadow_usesysid,
0,
0,
0},
! sizeof(FormData_pg_shadow),
NULL,
(ScanFunc) NULL},
{GroupRelationName, /* GRONAME */
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/utils/init/globals.c ./backend/utils/init/globals.c
*** /usr/local/pgsql/sup/pgsql/src/backend/utils/init/globals.c Wed Feb 4 09:34:08 1998
--- ./backend/utils/init/globals.c Tue Feb 24 14:44:00 1998
***************
*** 110,116 ****
DatabaseRelationName,
GroupRelationName,
LogRelationName,
! UserRelationName,
VariableRelationName,
0
};
--- 110,116 ----
DatabaseRelationName,
GroupRelationName,
LogRelationName,
! ShadowRelationName,
VariableRelationName,
0
};
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/utils/init/miscinit.c ./backend/utils/init/miscinit.c
*** /usr/local/pgsql/sup/pgsql/src/backend/utils/init/miscinit.c Wed Feb 4 09:34:08 1998
--- ./backend/utils/init/miscinit.c Tue Feb 24 14:46:07 1998
***************
*** 32,38 ****
#include "miscadmin.h" /* where the declarations go */

#include "catalog/catname.h"
! #include "catalog/pg_user.h"
#include "catalog/pg_proc.h"
#include "utils/syscache.h"

--- 32,38 ----
#include "miscadmin.h" /* where the declarations go */

#include "catalog/catname.h"
! #include "catalog/pg_shadow.h"
#include "catalog/pg_proc.h"
#include "utils/syscache.h"

***************
*** 339,344 ****
if (!HeapTupleIsValid(userTup))
elog(FATAL, "SetUserId: user \"%s\" is not in \"%s\"",
userName,
! UserRelationName);
! UserId = (Oid) ((Form_pg_user) GETSTRUCT(userTup))->usesysid;
}
--- 339,344 ----
if (!HeapTupleIsValid(userTup))
elog(FATAL, "SetUserId: user \"%s\" is not in \"%s\"",
userName,
! ShadowRelationName);
! UserId = (Oid) ((Form_pg_shadow) GETSTRUCT(userTup))->usesysid;
}
diff -c -r /usr/local/pgsql/sup/pgsql/src/backend/utils/misc/superuser.c ./backend/utils/misc/superuser.c
*** /usr/local/pgsql/sup/pgsql/src/backend/utils/misc/superuser.c Mon Sep 8 04:32:00 1997
--- ./backend/utils/misc/superuser.c Tue Feb 24 14:46:13 1998
***************
*** 17,23 ****

#include <postgres.h>
#include <utils/syscache.h>
! #include <catalog/pg_user.h>

bool
superuser(void)
--- 17,23 ----

#include <postgres.h>
#include <utils/syscache.h>
! #include <catalog/pg_shadow.h>

bool
superuser(void)
***************
*** 33,37 ****
utup = SearchSysCacheTuple(USENAME, PointerGetDatum(UserName),
0, 0, 0);
Assert(utup != NULL);
! return ((Form_pg_user) GETSTRUCT(utup))->usesuper;
}
--- 33,37 ----
utup = SearchSysCacheTuple(USENAME, PointerGetDatum(UserName),
0, 0, 0);
Assert(utup != NULL);
! return ((Form_pg_shadow) GETSTRUCT(utup))->usesuper;
}
diff -c -r /usr/local/pgsql/sup/pgsql/src/bin/createuser/createuser.sh ./bin/createuser/createuser.sh
*** /usr/local/pgsql/sup/pgsql/src/bin/createuser/createuser.sh Wed May 7 04:59:46 1997
--- ./bin/createuser/createuser.sh Tue Feb 24 15:01:24 1998
***************
*** 203,209 ****
CANADDUSER=f
fi

! QUERY="insert into pg_user \
(usename, usesysid, usecreatedb, usetrace, usesuper, usecatupd) \
values \
('$NEWUSER', $SYSID, '$CANCREATE', 't', '$CANADDUSER','t')"
--- 203,209 ----
CANADDUSER=f
fi

! QUERY="insert into pg_shadow \
(usename, usesysid, usecreatedb, usetrace, usesuper, usecatupd) \
values \
('$NEWUSER', $SYSID, '$CANCREATE', 't', '$CANADDUSER','t')"
diff -c -r /usr/local/pgsql/sup/pgsql/src/bin/destroyuser/destroyuser.sh ./bin/destroyuser/destroyuser.sh
*** /usr/local/pgsql/sup/pgsql/src/bin/destroyuser/destroyuser.sh Wed May 7 04:59:52 1997
--- ./bin/destroyuser/destroyuser.sh Tue Feb 24 15:01:58 1998
***************
*** 182,188 ****
done
fi

! QUERY="delete from pg_user where usename = '$DELUSER'"

$PSQL -c "$QUERY" template1
if [ $? -ne 0 ]
--- 182,188 ----
done
fi

! QUERY="delete from pg_shadow where usename = '$DELUSER'"

$PSQL -c "$QUERY" template1
if [ $? -ne 0 ]
diff -c -r /usr/local/pgsql/sup/pgsql/src/bin/initdb/initdb.sh ./bin/initdb/initdb.sh
*** /usr/local/pgsql/sup/pgsql/src/bin/initdb/initdb.sh Tue Feb 24 10:22:35 1998
--- ./bin/initdb/initdb.sh Tue Feb 24 16:42:13 1998
***************
*** 351,371 ****
echo "vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "^DEBUG:"

! echo "COPY pg_user TO '$PGDATA/pg_pwd' USING DELIMITERS '\\t'" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"

! echo "GRANT SELECT ON pg_class TO PUBLIC" |\
! postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
!
! echo "CREATE RULE pg_user_hide_pw as on SELECT to pg_user.passwd DO INSTEAD SELECT '********' as passwd;" | \
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"
!
! echo "create view db_user as select * from pg_user;" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"
! echo "grant select on db_user to public" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"

--- 351,382 ----
echo "vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "^DEBUG:"

! echo "COPY pg_shadow TO '$PGDATA/pg_pwd' USING DELIMITERS '\\t'" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"

! echo "creating public pg_user view"
! echo "CREATE TABLE xpg_user ( \
! usename name, \
! usesysid int4, \
! usecreatedb bool, \
! usetrace bool, \
! usesuper bool, \
! usecatupd bool, \
! passwd text, \
! valuntil abstime);" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"
! echo "UPDATE pg_class SET relname = 'pg_user' WHERE relname = 'xpg_user';" |\
! postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
! grep -v "'DEBUG:"
! echo "CREATE RULE _RETpg_user AS ON SELECT TO pg_user DO INSTEAD \
! SELECT usename, usesysid, usecreatedb, usetrace, \
! usesuper, usecatupd, '********'::text as passwd, \
! valuntil FROM pg_shadow;" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"
! echo "REVOKE ALL on pg_shadow FROM public" |\
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
grep -v "'DEBUG:"

diff -c -r /usr/local/pgsql/sup/pgsql/src/include/catalog/catname.h ./include/catalog/catname.h
*** /usr/local/pgsql/sup/pgsql/src/include/catalog/catname.h Tue Nov 18 11:23:10 1997
--- ./include/catalog/catname.h Tue Feb 24 14:35:39 1998
***************
*** 35,43 ****
#define ProcedureRelationName "pg_proc"
#define RelationRelationName "pg_class"
#define RewriteRelationName "pg_rewrite"
#define StatisticRelationName "pg_statistic"
#define TypeRelationName "pg_type"
- #define UserRelationName "pg_user"
#define VariableRelationName "pg_variable"
#define VersionRelationName "pg_version"
#define AttrDefaultRelationName "pg_attrdef"
--- 35,43 ----
#define ProcedureRelationName "pg_proc"
#define RelationRelationName "pg_class"
#define RewriteRelationName "pg_rewrite"
+ #define ShadowRelationName "pg_shadow"
#define StatisticRelationName "pg_statistic"
#define TypeRelationName "pg_type"
#define VariableRelationName "pg_variable"
#define VersionRelationName "pg_version"
#define AttrDefaultRelationName "pg_attrdef"
diff -c -r /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_attribute.h ./include/catalog/pg_attribute.h
*** /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_attribute.h Thu Feb 19 13:05:54 1998
--- ./include/catalog/pg_attribute.h Tue Feb 24 14:30:35 1998
***************
*** 275,281 ****
DATA(insert OID = 0 ( 1255 cmax 29 0 4 -6 0 -1 -1 t f i f f));

/* ----------------
! * pg_user
* ----------------
*/
DATA(insert OID = 0 ( 1260 usename 19 0 NAMEDATALEN 1 0 -1 -1 f f i f f));
--- 275,281 ----
DATA(insert OID = 0 ( 1255 cmax 29 0 4 -6 0 -1 -1 t f i f f));

/* ----------------
! * pg_shadow
* ----------------
*/
DATA(insert OID = 0 ( 1260 usename 19 0 NAMEDATALEN 1 0 -1 -1 f f i f f));
diff -c -r /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_class.h ./include/catalog/pg_class.h
*** /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_class.h Mon Jan 19 09:36:11 1998
--- ./include/catalog/pg_class.h Tue Feb 24 14:31:23 1998
***************
*** 125,131 ****
DESCR("");
DATA(insert OID = 1259 ( pg_class 83 PGUID 0 0 0 f f r 14 0 0 f _null_ ));
DESCR("");
! DATA(insert OID = 1260 ( pg_user 86 PGUID 0 0 0 f t r 8 0 0 f _null_ ));
DESCR("");
DATA(insert OID = 1261 ( pg_group 87 PGUID 0 0 0 f t s 3 0 0 f _null_ ));
DESCR("");
--- 125,131 ----
DESCR("");
DATA(insert OID = 1259 ( pg_class 83 PGUID 0 0 0 f f r 14 0 0 f _null_ ));
DESCR("");
! DATA(insert OID = 1260 ( pg_shadow 86 PGUID 0 0 0 f t r 8 0 0 f _null_ ));
DESCR("");
DATA(insert OID = 1261 ( pg_group 87 PGUID 0 0 0 f t s 3 0 0 f _null_ ));
DESCR("");
***************
*** 146,152 ****
#define RelOid_pg_attribute 1249
#define RelOid_pg_proc 1255
#define RelOid_pg_class 1259
! #define RelOid_pg_user 1260
#define RelOid_pg_group 1261
#define RelOid_pg_database 1262
#define RelOid_pg_variable 1264
--- 146,152 ----
#define RelOid_pg_attribute 1249
#define RelOid_pg_proc 1255
#define RelOid_pg_class 1259
! #define RelOid_pg_shadow 1260
#define RelOid_pg_group 1261
#define RelOid_pg_database 1262
#define RelOid_pg_variable 1264
diff -c -r /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_type.h ./include/catalog/pg_type.h
*** /usr/local/pgsql/sup/pgsql/src/include/catalog/pg_type.h Wed Feb 11 15:25:43 1998
--- ./include/catalog/pg_type.h Tue Feb 24 14:31:53 1998
***************
*** 212,218 ****
DATA(insert OID = 75 ( pg_attribute PGUID 1 1 t b t \054 1249 0 foo bar foo bar c _null_));
DATA(insert OID = 81 ( pg_proc PGUID 1 1 t b t \054 1255 0 foo bar foo bar c _null_));
DATA(insert OID = 83 ( pg_class PGUID 1 1 t b t \054 1259 0 foo bar foo bar c _null_));
! DATA(insert OID = 86 ( pg_user PGUID 1 1 t b t \054 1260 0 foo bar foo bar c _null_));
DATA(insert OID = 87 ( pg_group PGUID 1 1 t b t \054 1261 0 foo bar foo bar c _null_));
DATA(insert OID = 88 ( pg_database PGUID 1 1 t b t \054 1262 0 foo bar foo bar c _null_));
DATA(insert OID = 90 ( pg_variable PGUID 1 1 t b t \054 1264 0 foo bar foo bar c _null_));
--- 212,218 ----
DATA(insert OID = 75 ( pg_attribute PGUID 1 1 t b t \054 1249 0 foo bar foo bar c _null_));
DATA(insert OID = 81 ( pg_proc PGUID 1 1 t b t \054 1255 0 foo bar foo bar c _null_));
DATA(insert OID = 83 ( pg_class PGUID 1 1 t b t \054 1259 0 foo bar foo bar c _null_));
! DATA(insert OID = 86 ( pg_shadow PGUID 1 1 t b t \054 1260 0 foo bar foo bar c _null_));
DATA(insert OID = 87 ( pg_group PGUID 1 1 t b t \054 1261 0 foo bar foo bar c _null_));
DATA(insert OID = 88 ( pg_database PGUID 1 1 t b t \054 1262 0 foo bar foo bar c _null_));
DATA(insert OID = 90 ( pg_variable PGUID 1 1 t b t \054 1264 0 foo bar foo bar c _null_));
diff -c -r /usr/local/pgsql/sup/pgsql/src/include/utils/acl.h ./include/utils/acl.h
*** /usr/local/pgsql/sup/pgsql/src/include/utils/acl.h Tue Feb 24 10:22:45 1998
--- ./include/utils/acl.h Tue Feb 24 14:58:30 1998
***************
*** 39,45 ****
typedef uint8 AclIdType;

#define ACL_IDTYPE_WORLD 0x00
! #define ACL_IDTYPE_UID 0x01 /* user id - from pg_user */
#define ACL_IDTYPE_GID 0x02 /* group id - from pg_group */

/*
--- 39,45 ----
typedef uint8 AclIdType;

#define ACL_IDTYPE_WORLD 0x00
! #define ACL_IDTYPE_UID 0x01 /* user id - from pg_shadow */
#define ACL_IDTYPE_GID 0x02 /* group id - from pg_group */

/*

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message D. Dante Lorenso 1998-02-24 16:40:04 Redhat 5.0 RPMS request
Previous Message Henry Spencer 1998-02-24 16:14:15 RE: [HACKERS] Re: Appended a string of text to each line in a fil e