mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Perform RLS subquery checks as the right user when going via a view.
When accessing a table with RLS via a view, the RLS checks are performed as the view owner. However, the code neglected to propagate that to any subqueries in the RLS checks. Fix that by calling setRuleCheckAsUser() for all RLS policy quals and withCheckOption checks for RTEs with RLS. Back-patch to 9.5 where RLS was added. Per bug #15708 from daurnimator. Discussion: https://postgr.es/m/15708-d65cab2ce9b1717a@postgresql.org
This commit is contained in:
@ -47,6 +47,7 @@
|
||||
#include "nodes/pg_list.h"
|
||||
#include "nodes/plannodes.h"
|
||||
#include "parser/parsetree.h"
|
||||
#include "rewrite/rewriteDefine.h"
|
||||
#include "rewrite/rewriteHandler.h"
|
||||
#include "rewrite/rewriteManip.h"
|
||||
#include "rewrite/rowsecurity.h"
|
||||
@ -381,6 +382,13 @@ get_row_security_policies(Query *root, RangeTblEntry *rte, int rt_index,
|
||||
|
||||
table_close(rel, NoLock);
|
||||
|
||||
/*
|
||||
* Copy checkAsUser to the row security quals and WithCheckOption checks,
|
||||
* in case they contain any subqueries referring to other relations.
|
||||
*/
|
||||
setRuleCheckAsUser((Node *) *securityQuals, rte->checkAsUser);
|
||||
setRuleCheckAsUser((Node *) *withCheckOptions, rte->checkAsUser);
|
||||
|
||||
/*
|
||||
* Mark this query as having row security, so plancache can invalidate it
|
||||
* when necessary (eg: role changes)
|
||||
|
Reference in New Issue
Block a user