Why isn't row level security enabled for Postgres views?
Asked Answered
A

3

43

I need strict control of the reading and writing of my Postgres data. Updatable views have always provided very good, strict, control of the reading of my data and allows me to add valuable computed columns. With Postgres 9.5 row level security has introduced a new and powerful way to control my data. But I can't use both technologies views, and row level security together. Why?

Aguila answered 22/11, 2015 at 17:48 Comment(4)
if you enable row level security on the table and then use the updatable view on the table, does the security not work?Proviso
No because the query goes through the view defined role, not the current role.Aguila
Then, how about setting up the row level security on the view defined role?Proviso
I have a few different roles accessing the view, so I lose that information.Aguila
C
36

EDIT: As another reply mentioned below, since PostgreSQL 15 it is possible for views to inherit the RLS policies of their origin table with the security_invoker flag (https://www.postgresql.org/docs/15/sql-createview.html)


Basically because it wasn't possible to retroactively change how views work. I'd like to be able to support SECURITY INVOKER (or equivalent) for views but as far as I know no such feature presently exists.

You can filter access to the view its self with row security normally.

The tables accessed by the view will also have their row security rules applied. However, they'll see the current_user as the view creator because views access tables (and other views) with the rights of the user who created/owns the view.

Maybe it'd be worth raising this on pgsql-hackers if you're willing to step in and help with development of the feature you need, or pgsql-general otherwise?

That said, while views access tables as the creating user and change current_user accordingly, they don't prevent you from using custom GUCs, the session_user, or other contextual information in row security policies. You can use row security with views, just not (usefully) to filter based on current_user.

Consume answered 23/11, 2015 at 3:36 Comment(8)
How would it change how view's work? Isn't RLS fundamentally just the addition of some WHERE clauses? And isn't a view basically just a SQL statement?Aguila
@Aguila Views access tables used by the view with the access rights of the user who created the view. To allow row security to usefully filter access to tables accessed via a view based on the "top level" user who accessed the view would require changing how views access the tables in the view so that current_user is not set, etc. We have session_user, but that doesn't change when you SET SESSION AUTHORIZATION, so it's not useful if you're using pooled connections via pgbouncer or similar.Consume
Wow.. this really needs to be mentioned in the Policies documentation page. I just discovered this problem in our application where all the tables are found in a private schema, and they are only made available to the external API via a view in a different schema. Because this view was created by the superuser, the RLS was completely broken even though it had been tested and worked fine against the real table.Lofton
I did post a message there, but it is pending moderation.Lofton
could I use functions instead of views? who is current_user when a function runs?Heraldry
Seems that yes: functions have SECURITY INVOKER set by default, see postgresql.org/docs/current/sql-createfunction.htmlHeraldry
So to fix this, should one just ALTER the view's owner to the db user that has policies?Gebler
There is a patch worked on to finally address this issue: postgresql.org/message-id/flat/… (commitfest.postgresql.org/37/3466).Featurelength
B
27

You can do this from PostgreSQL v15 on, which introduced the security_invoker option on views. If you turn that on, permissions on the underlying tables are checked as the user who calls the view, and RLS policies for the invoking user are used.

You can change existing views with

ALTER VIEW view_name SET (security_invoker = on);
Balch answered 22/3, 2022 at 13:39 Comment(3)
If someone need it too, the command is CREATE OR REPLACE VIEW "SomeView" WITH (security_invoker=on) AS SELECT ...Gabi
but now the invoking user needs access to the underlying tables for the view to work properly. Can you have both features (table abstraction AND row level security)?Gradation
@Gradation There are ways but not in a comment.Balch
E
9

The row level security policy can still be applied in the WHERE clause of the view. For example:

WHERE my_security_policy_function(person_id)
Extent answered 9/10, 2020 at 16:21 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.