Re: [HACKERS] Re: New pg_pwd patch and stuff

From: todd brandys <brandys(at)eng3(dot)hep(dot)uiuc(dot)edu>
To: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Re: New pg_pwd patch and stuff
Date: 1998-01-20 17:58:12
Message-ID: Pine.3.89.9801201159.A1743-0100000@eng3.hep.uiuc.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sun, 18 Jan 1998, Bruce Momjian wrote:

> >
> > > Well, I can create the table quite easily. The issue is what type of
> > > flack we will get by haveing pg_user non-readable, and removing the user
> >
> > What if we were to put the pg_user accessibility to the admin setting up
> > PostgreSQL (at least until pg_privileges could become a reality.). If you
> > look in dbinit--toward the end of the script--I run a SQL command to revoke
> > all privileges from public on the pg_user table. If you are not going to
> > use the pg_pwd scheme for authentication, then you don't need to run this
> > command. All we need do for now is print out a little message saying that if
> > you use HBA or Kerberos, then say No to blocking the PUBLIC from accessing
> > pg_user. We also say that if you choose to block access to pg_user, these
> > are the consequences. When a better privileges method is developed this
> > question in the dbinit script can be eliminated.
> >
> > I myself would choose to block access to the pg_user relation. Others may not
> > want it this way. Using the above scenario, the user would have an informed
> > choice that would be taken care of at initialization.
>
> This is exactly what I was thinking yesterday.
>
> I recommend something different. What if we just skip your REVOKE
> command in initdb, but we add a check in user.c, and if they try to set
> a non-NULL password and they have pg_user as world-readable, we prevent
> them from doing it, and tell them explicitly the REVOKE command the
> database administrator must issue to allow passwords to be set.
>
> The advantage of this is that they can use the other database USER commands,
> just not the password commands, and they can easily change their mind.
> It puts the checking for world-readble pg_user at the proper place. I
> am afraid if we didn't someone would answer y to world-readable pg_user,
> then start assigning passwords.
>
> We can also change psql.c to do a \d lookup with pg_user, and if it
> fails, we do another SELECT without pg_user showing just user-ids. That
> way, the administrator will get usernames, but non-priv users will not.
>
> --
> Bruce Momjian
> maillist(at)candle(dot)pha(dot)pa(dot)us
>

I agree that we should do the check for the 'World-readable'
pg_user and give a warning if someone attempts to assign a password.
I still think the admin should be given an option in the dbinit script to
choose whether or no to run the 'REVOKE'. At this point it would be easy
to inform the admin what the trade-offs are, and we will have his/her
undivided attention (They will be more apt to read about it to get past the
prompt.).

These changes should not take long to make. I need to get the current
CVS version (I will do so tonight), and I should have the changes
(performed and tested) in a day or so.

Todd A. Brandys
brandys(at)eng3(dot)hep(dot)uiuc(dot)edu

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message todd brandys 1998-01-20 18:10:23 Re: [HACKERS] Re: New pg_pwd patch and stuff
Previous Message Bruce Momjian 1998-01-20 14:45:33 Re: [HACKERS] Re: [QUESTIONS] Business cases