I have 3 roles: superuser, poweruser and user. I have table "data" and functions data_select and data_insert.
Now I would like to define, that only superuser can access table "data". Poweruser and user can not access table "data" directly, but only through the functions.
User can run only function data_select, poweruser can run both data_select and data_insert.
So then I can create users alice, bob, ... and inherits them privileges of user or poweuser.
Is this actually achievable? I am fighting with this for the second day and not getting anywhere.
Thank you for your time.
Yes, this is doable.
"superuser" could be an actual
superuser
,postgres
by default. I rename the role for plain users tousr
, becauseuser
is a reserved word - don't use it as identifier.Or you could create daemon roles with no login to own the functions and hold the respective rights on the table. That would be even more secure.
If you are going this route, you will love
ALTER DEFAULT PRIVILEGES
(introduced with PostgreSQL 9.0). More details in this related answer.Read the chapter Writing
SECURITY DEFINER
Functions Safely in the manual.