Re: policies with security definer option for allowing inline optimization - Mailing list pgsql-hackers

From Stephen Frost
Subject Re: policies with security definer option for allowing inline optimization
Date
Msg-id 20210402133016.GY20766@tamriel.snowman.net
Whole thread Raw
In response to Re: policies with security definer option for allowing inline optimization  (Isaac Morland <isaac.morland@gmail.com>)
Responses Re: policies with security definer option for allowing inline optimization  (Isaac Morland <isaac.morland@gmail.com>)
List pgsql-hackers
Greetings,

* Isaac Morland (isaac.morland@gmail.com) wrote:
> On Fri, 2 Apr 2021 at 01:44, Dan Lynch <pyramation@gmail.com> wrote:
> > RLS policies quals/checks are optimized inline, and so I generally avoid
> > writing a separate procedure so the optimizer can do it's thing.
> >
> > However, if you need a security definer to avoid recursive RLS if you're
> > doing a more complex query say, on a join table, anyone wish there was a
> > flag on the policy itself to specify that `WITH CHECK` or `USING`
> > expression could be run via security definer?
> >
> > The main reason for this is to avoid writing a separate security definer
> > function so you can benefit from the optimizer.
> >
> > Is this possible? Would this be worth a feature request to postgres core?
>
> If we're going to do this we should do the same for triggers as well.

... and views.

> It's easy to imagine a situation in which RLS policies need to refer to
> information which should not be accessible to the role using the table, and
> similarly it's easy to imagine a situation in which a trigger needs to
> write to another table which should not be accessible to the role using the
> table which has the trigger.

I'm generally +1 on adding the ability for the DBA to choose which user
various things run as.  There's definitely use-cases for both in my
experience.  Also would be great to add the ability to have policies on
views too which would probably help address some of these cases.

Thanks,

Stephen

Attachment

pgsql-hackers by date:

Previous
From: Amit Langote
Date:
Subject: Re: a misbehavior of partition row movement (?)
Next
From: Chapman Flack
Date:
Subject: Re: policies with security definer option for allowing inline optimization