• Tom Lane's avatar
    Remove the use of the pg_auth flat file for client authentication. · e710b65c
    Tom Lane authored
    (That flat file is now completely useless, but removal will come later.)
    
    To do this, postpone client authentication into the startup transaction
    that's run by InitPostgres.  We still collect the startup packet and do
    SSL initialization (if needed) at the same time we did before.  The
    AuthenticationTimeout is applied separately to startup packet collection
    and the actual authentication cycle.  (This is a bit annoying, since it
    means a couple extra syscalls; but the signal handling requirements inside
    and outside a transaction are sufficiently different that it seems best
    to treat the timeouts as completely independent.)
    
    A small security disadvantage is that if the given database name is invalid,
    this will be reported to the client before any authentication happens.
    We could work around that by connecting to database "postgres" instead,
    but consensus seems to be that it's not worth introducing such surprising
    behavior.
    
    Processing of all command-line switches and GUC options received from the
    client is now postponed until after authentication.  This means that
    PostAuthDelay is much less useful than it used to be --- if you need to
    investigate problems during InitPostgres you'll have to set PreAuthDelay
    instead.  However, allowing an unauthenticated user to set any GUC options
    whatever seems a bit too risky, so we'll live with that.
    e710b65c
pmsignal.h 1.91 KB