Re: PG13 Trusted Extension usability issue

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: PG13 Trusted Extension usability issue
Дата
Msg-id 30665.1593205561@sss.pgh.pa.us
обсуждение исходный текст
Ответ на RE: PG13 Trusted Extension usability issue  ("Brad Nicholson" <bradn@ca.ibm.com>)
Ответы Re: PG13 Trusted Extension usability issue  (Stephen Frost <sfrost@snowman.net>)
Список pgsql-general
"Brad Nicholson" <bradn@ca.ibm.com> writes:
> Tom Lane <tgl@sss.pgh.pa.us> wrote on 2020/06/26 02:47:25 PM:
>> I'm confused about your point here.  postgresql_fdw has intentionally
>> *not* been marked trusted.  That's partly because it doesn't seem like
>> outside-the-database access is something we want to allow by default,
>> but it's also the case that there are inside-the-database permissions
>> issues.

> Ah - I misread the docs.  Specifically I read this:
> "For many extensions this means superuser privileges are needed. However,
> if the extension is marked trusted in its control file, then it can be
> installed by any user who has CREATE privilege on the current database"
> To mean that you could mark any extension as trusted in the control file to
> allow non-superuser installation.

Well, it's just like anything else in an open-source database: you can
change the code however you want, but the fallout from that is on you.

In the case at hand, you might be able to do what you want by adding
something along the line of

GRANT USAGE ON FOREIGN DATA WRAPPER postgres_fdw
  TO @extowner@ WITH GRANT OPTION;

to the extension install script.  But nobody's researched whether that's
reasonable from a security standpoint, or whether it will play nicely
with dump/reload, etc etc.

            regards, tom lane



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

Предыдущее
От: Gabe Kopley
Дата:
Сообщение: Re: Interpreting autovacuum logs (9.6)
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Interpreting autovacuum logs (9.6)