From: | "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Magnus Hagander <magnus(at)hagander(dot)net>, Robert Haas <robertmhaas(at)gmail(dot)com>, Martín Marqués <martin(dot)marques(at)gmail(dot)com>, Isaac Morland <isaac(dot)morland(at)gmail(dot)com>, Gabriele Bartolini <gabriele(dot)bartolini(at)enterprisedb(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Possibility to disable `ALTER SYSTEM` |
Date: | 2024-01-31 05:10:01 |
Message-ID: | CAKFQuwZBT0wzEPxAQzJchb75NLjXMEka4nNxFHbKdvh4+fbvvQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Tuesday, January 30, 2024, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
>
> My larger point here is that trying to enforce restrictions on
> superusers *within* Postgres is simply not a good plan, for
> largely the same reasons that Robert questioned making the
> GUC mechanism police itself. It needs to be done outside,
> either at the filesystem level or via some other kernel-level
> security system.
>
>
The idea of adding a file to the data directory appeals to me.
optional_runtime_features.conf
alter_system=enabled
copy_from_program=enabled
copy_to_program=disabled
If anyone tries to use disabled features the system emits an error:
ERROR: Cannot send copy output to program, action disabled by host.
My main usability question is whether restart required is an acceptable
restriction.
Making said file owned by root (or equivalent) and only readable by the
postgres process user suffices to lock it down. Refusing to start if the
file is writable, and at least one feature is disabled can be considered,
with a startup option to bypass that check if desired.
David J.
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Smith | 2024-01-31 05:10:16 | Re: Synchronizing slots from primary to standby |
Previous Message | Peter Smith | 2024-01-31 04:56:50 | src/bin/pg_upgrade/t/004_subscription.pl test comment fix |