Re: worried about PGPASSWORD drop

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: worried about PGPASSWORD drop
Дата
Msg-id 200208282133.g7SLXYY12462@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: worried about PGPASSWORD drop  (Alvaro Herrera <alvherre@atentus.com>)
Список pgsql-general
Alvaro Herrera wrote:
> Bruce Momjian dijo:
>
> > Tom Lane wrote:
>
> > > If you want to put in security restrictions that are actually useful,
> > > where is the code to verify that PGPASSWORDFILE points at a
> > > non-world-readable file?  That needs to be there now, not later, or
> > > we'll have people moaning about backward compatibility when we finally
> > > do plug that hole.
> >
> > Agreed.
>
> Point taken, will look into it later.

Here is some code from postmaster.c that may help:

    if (stat(checkdir, &stat_buf) == -1)
    {
        if (errno == ENOENT)
            elog(FATAL, "data directory %s was not found", checkdir);
        else
            elog(FATAL, "could not read permissions of directory %s: %m",
                 checkdir);
    }

    if (stat_buf.st_mode & (S_IRWXG | S_IRWXO))
        elog(FATAL, "data directory %s has group or world access; permissions should be u=rwx (0700)",
             checkdir);

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

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

Предыдущее
От: "Markus Wollny"
Дата:
Сообщение: Re: Naming-scheme for db-files
Следующее
От: "Debra LaVille"
Дата:
Сообщение: Attempt to connect to database using libpq++ PgDatabase class fails because CONNECTION_BAD