Allowing usernames in pg_hba.conf

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Allowing usernames in pg_hba.conf
Дата
Msg-id 200203100620.g2A6KDn20576@candle.pha.pa.us
обсуждение исходный текст
Ответы Re: Allowing usernames in pg_hba.conf  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
We have the following TODO item:
* Allow usernames to be specified directly in pg_hba.conf (Bruce)

My idea is to allow comma-separated usernames in the AUTH_ARGUMENT
column.  Right now we use it for ident user map files and secondary
password files.  It seems both easily already allow username
restrictions.  Adding usernames directly in pg_hba.conf is basically a
shortcut to creating such secondary files.

My idea is that if AUTH_ARGUMENT starts with "=", it represents a list
of comma-separated usernames.
 host       template1   192.168.12.10 255.255.255.255    md5 =bmomjian,jeffw

Do I need to allow usernames with spaces or quoted usernames?  I don't
think so.

For implementation, I was going to simulate a secondary password file
with no passwords.  We already support that internally as a username
restriction option. Those are loaded into memory as linked lists of text
lines, if I remember correclty.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Index USING in pg_dump
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Allowing usernames in pg_hba.conf