Re: control pg_hba.conf via SQL - Mailing list pgsql-hackers

From Tino Wildenhain
Subject Re: control pg_hba.conf via SQL
Date
Msg-id 442B70B3.9000306@wildenhain.de
Whole thread Raw
In response to Re: control pg_hba.conf via SQL  (Andrew Dunstan <andrew@dunslane.net>)
Responses Re: control pg_hba.conf via SQL  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-hackers
Andrew Dunstan wrote:
> 
> ISTM that the first requirement is for a sane API that will handle the
> fact that HBA lines are ordered. Persistence in itself shouldn't be a
> big problem - we already do that with some shared tables, iirc.
> 
> so we might have some functions like:
> 
>  insert_hba_rule(at_position int, connection_type text, username text,
> dbname text, cidr_host text, method text)
>  move_hba_rule(from_position int, to_position int)
>  delete_hba_rule(at_position int)
> 
> Inventing new SQL syntax might make things a bit tougher.
> 

I dont think it has to be ordered preliminary. Since we are
dealing with subnets and stuff - the ordering already lays
in the data - just like routing tables work: most specific
matches first.

I could think of a solution where pg_hba.conf just
overrides the database table (so you have a starting
point with empty table and/or reentry in case of a
mistake)

regards
Tino


pgsql-hackers by date:

Previous
From: Andrew Dunstan
Date:
Subject: Re: control pg_hba.conf via SQL
Next
From:
Date:
Subject: Re: Initdb on Windows 2003