2022-07-28 16:55:21 +02:00
|
|
|
--liquibase formatted sql
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-reference:1 endDelimiter:--//
|
|
|
|
/*
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
2022-07-22 13:31:37 +02:00
|
|
|
CREATE TYPE ReferenceType AS ENUM ('RbacUser', 'RbacRole', 'RbacPermission');
|
|
|
|
|
|
|
|
CREATE TABLE RbacReference
|
|
|
|
(
|
|
|
|
uuid uuid UNIQUE DEFAULT uuid_generate_v4(),
|
|
|
|
type ReferenceType not null
|
|
|
|
);
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
CREATE OR REPLACE FUNCTION assertReferenceType(argument varchar, referenceId uuid, expectedType ReferenceType)
|
|
|
|
RETURNS ReferenceType
|
|
|
|
LANGUAGE plpgsql AS $$
|
2022-07-22 13:31:37 +02:00
|
|
|
DECLARE
|
2022-07-28 16:55:21 +02:00
|
|
|
actualType ReferenceType;
|
2022-07-22 13:31:37 +02:00
|
|
|
BEGIN
|
2022-07-28 16:55:21 +02:00
|
|
|
actualType = (SELECT type FROM RbacReference WHERE uuid=referenceId);
|
|
|
|
IF ( actualType <> expectedType ) THEN
|
|
|
|
RAISE EXCEPTION '% must reference a %, but got a %', argument, expectedType, actualType;
|
|
|
|
end if;
|
|
|
|
RETURN expectedType;
|
2022-07-22 13:31:37 +02:00
|
|
|
END; $$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-user:1 endDelimiter:--//
|
|
|
|
/*
|
2022-07-27 12:32:54 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
|
|
|
CREATE TABLE RbacUser
|
|
|
|
(
|
|
|
|
uuid uuid primary key references RbacReference (uuid) ON DELETE CASCADE,
|
|
|
|
name varchar(63) not null unique
|
|
|
|
);
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION createRbacUser(userName varchar)
|
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
declare
|
|
|
|
objectId uuid;
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO RbacReference (type) VALUES ('RbacUser') RETURNING uuid INTO objectId;
|
|
|
|
INSERT INTO RbacUser (uuid, name) VALUES (objectid, userName);
|
|
|
|
return objectId;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-25 16:38:21 +02:00
|
|
|
CREATE OR REPLACE FUNCTION findRbacUserId(userName varchar)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE sql AS $$
|
2022-07-28 16:55:21 +02:00
|
|
|
SELECT uuid FROM RbacUser WHERE name = userName
|
2022-07-22 13:31:37 +02:00
|
|
|
$$;
|
|
|
|
|
2022-07-25 16:38:21 +02:00
|
|
|
CREATE TYPE RbacWhenNotExists AS ENUM ('fail', 'create');
|
|
|
|
|
2022-07-22 13:31:37 +02:00
|
|
|
CREATE OR REPLACE FUNCTION getRbacUserId(userName varchar, whenNotExists RbacWhenNotExists)
|
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
userUuid uuid;
|
|
|
|
BEGIN
|
2022-07-25 16:38:21 +02:00
|
|
|
userUuid = findRbacUserId(userName);
|
2022-07-22 13:31:37 +02:00
|
|
|
IF ( userUuid IS NULL ) THEN
|
|
|
|
IF ( whenNotExists = 'fail') THEN
|
|
|
|
RAISE EXCEPTION 'RbacUser with name="%" not found', userName;
|
|
|
|
END IF;
|
|
|
|
IF ( whenNotExists = 'create') THEN
|
|
|
|
userUuid = createRbacUser(userName);
|
|
|
|
END IF;
|
|
|
|
END IF;
|
|
|
|
return userUuid;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
2022-07-27 19:54:05 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-object:1 endDelimiter:--//
|
|
|
|
/*
|
2022-07-27 19:54:05 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
|
|
|
CREATE TABLE RbacObject
|
|
|
|
(
|
|
|
|
uuid uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
|
|
objectTable varchar(64) not null,
|
|
|
|
unique (objectTable, uuid)
|
|
|
|
);
|
2022-07-27 19:54:05 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
CREATE OR REPLACE FUNCTION createRbacObject()
|
|
|
|
RETURNS trigger
|
|
|
|
LANGUAGE plpgsql STRICT AS $$
|
2022-07-27 19:54:05 +02:00
|
|
|
DECLARE
|
2022-07-28 16:55:21 +02:00
|
|
|
objectUuid uuid;
|
2022-07-27 19:54:05 +02:00
|
|
|
BEGIN
|
2022-07-28 16:55:21 +02:00
|
|
|
IF TG_OP = 'INSERT' THEN
|
|
|
|
INSERT INTO RbacObject (objectTable) VALUES (TG_TABLE_NAME) RETURNING uuid INTO objectUuid;
|
|
|
|
NEW.uuid = objectUuid;
|
|
|
|
RETURN NEW;
|
|
|
|
ELSE
|
|
|
|
RAISE EXCEPTION 'invalid usage of TRIGGER AFTER INSERT';
|
|
|
|
END IF;
|
2022-07-27 19:54:05 +02:00
|
|
|
END; $$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
|
|
|
|
--//
|
|
|
|
|
|
|
|
--changeset rbac-base-role:1 endDelimiter:--//
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
CREATE TYPE RbacRoleType AS ENUM ('owner', 'admin', 'tenant');
|
|
|
|
|
|
|
|
CREATE TABLE RbacRole
|
|
|
|
(
|
|
|
|
uuid uuid primary key references RbacReference (uuid) ON DELETE CASCADE,
|
|
|
|
objectUuid uuid references RbacObject(uuid) not null,
|
|
|
|
roleType RbacRoleType not null
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TYPE RbacRoleDescriptor AS
|
|
|
|
(
|
|
|
|
objectTable varchar(63), -- TODO: needed? remove?
|
|
|
|
objectUuid uuid,
|
|
|
|
roleType RbacRoleType
|
|
|
|
);
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
CREATE OR REPLACE FUNCTION roleDescriptor(objectTable varchar(63), objectUuid uuid, roleType RbacRoleType )
|
|
|
|
RETURNS RbacRoleDescriptor
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
-- STABLE LEAKPROOF
|
|
|
|
LANGUAGE sql AS $$
|
2022-07-28 16:55:21 +02:00
|
|
|
SELECT objectTable, objectUuid, roleType::RbacRoleType;
|
|
|
|
$$;
|
2022-07-27 19:54:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION createRole(roleDescriptor RbacRoleDescriptor)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
declare
|
|
|
|
referenceId uuid;
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO RbacReference (type) VALUES ('RbacRole') RETURNING uuid INTO referenceId;
|
2022-07-27 19:54:05 +02:00
|
|
|
INSERT INTO RbacRole (uuid, objectUuid, roleType) VALUES (referenceId, roleDescriptor.objectUuid, roleDescriptor.roleType);
|
2022-07-22 13:31:37 +02:00
|
|
|
return referenceId;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
|
|
|
|
|
|
|
CREATE OR REPLACE PROCEDURE deleteRole(roleUUid uuid)
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM RbacRole WHERE uuid=roleUUid;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
CREATE OR REPLACE FUNCTION findRoleId(roleDescriptor RbacRoleDescriptor)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE sql AS $$
|
2022-07-28 16:55:21 +02:00
|
|
|
SELECT uuid FROM RbacRole WHERE objectUuid = roleDescriptor.objectUuid AND roleType = roleDescriptor.roleType;
|
2022-07-22 13:31:37 +02:00
|
|
|
$$;
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
CREATE OR REPLACE FUNCTION getRoleId(roleDescriptor RbacRoleDescriptor, whenNotExists RbacWhenNotExists)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
roleUuid uuid;
|
|
|
|
BEGIN
|
2022-07-27 19:54:05 +02:00
|
|
|
roleUuid = findRoleId(roleDescriptor);
|
2022-07-22 13:31:37 +02:00
|
|
|
IF ( roleUuid IS NULL ) THEN
|
|
|
|
IF ( whenNotExists = 'fail') THEN
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE EXCEPTION 'RbacRole "%#%.%" not found', roleDescriptor.objectTable, roleDescriptor.objectUuid, roleDescriptor.roleType;
|
2022-07-22 13:31:37 +02:00
|
|
|
END IF;
|
|
|
|
IF ( whenNotExists = 'create') THEN
|
2022-07-27 19:54:05 +02:00
|
|
|
roleUuid = createRole(roleDescriptor);
|
2022-07-22 13:31:37 +02:00
|
|
|
END IF;
|
|
|
|
END IF;
|
|
|
|
return roleUuid;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-permission:1 endDelimiter:--//
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
CREATE DOMAIN RbacOp AS VARCHAR(67)
|
|
|
|
CHECK(
|
|
|
|
VALUE = '*'
|
|
|
|
OR VALUE = 'delete'
|
|
|
|
OR VALUE = 'edit'
|
|
|
|
OR VALUE = 'view'
|
|
|
|
OR VALUE = 'assume'
|
|
|
|
OR VALUE ~ '^add-[a-z]+$'
|
|
|
|
);
|
|
|
|
|
|
|
|
-- DROP TABLE IF EXISTS RbacPermission;
|
|
|
|
CREATE TABLE RbacPermission
|
|
|
|
( uuid uuid primary key references RbacReference (uuid) ON DELETE CASCADE,
|
|
|
|
objectUuid uuid not null references RbacObject,
|
|
|
|
op RbacOp not null,
|
|
|
|
unique (objectUuid, op)
|
|
|
|
);
|
|
|
|
|
|
|
|
-- SET SESSION SESSION AUTHORIZATION DEFAULT;
|
|
|
|
-- alter table rbacpermission add constraint rbacpermission_objectuuid_fkey foreign key (objectUuid) references rbacobject(uuid);
|
|
|
|
-- alter table rbacpermission drop constraint rbacpermission_objectuuid;
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION hasPermission(forObjectUuid uuid, forOp RbacOp)
|
|
|
|
RETURNS bool
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT EXISTS (
|
|
|
|
SELECT op
|
|
|
|
FROM RbacPermission p
|
|
|
|
WHERE p.objectUuid=forObjectUuid AND p.op in ('*', forOp)
|
|
|
|
);
|
|
|
|
$$;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION createPermissions(forObjectUuid uuid, permitOps RbacOp[])
|
|
|
|
RETURNS uuid[]
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
refId uuid;
|
|
|
|
permissionIds uuid[] = ARRAY[]::uuid[];
|
|
|
|
BEGIN
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE NOTICE 'createPermission for: % %', forObjectUuid, permitOps;
|
2022-07-22 13:31:37 +02:00
|
|
|
IF ( forObjectUuid IS NULL ) THEN
|
|
|
|
RAISE EXCEPTION 'forObjectUuid must not be null';
|
|
|
|
END IF;
|
|
|
|
IF ( array_length(permitOps, 1) > 1 AND '*' = any(permitOps) ) THEN
|
|
|
|
RAISE EXCEPTION '"*" operation must not be assigned along with other operations: %', permitOps;
|
|
|
|
END IF;
|
|
|
|
|
|
|
|
FOR i IN array_lower(permitOps, 1)..array_upper(permitOps, 1) LOOP
|
|
|
|
refId = (SELECT uuid FROM RbacPermission WHERE objectUuid=forObjectUuid AND op=permitOps[i]);
|
|
|
|
IF (refId IS NULL) THEN
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE NOTICE 'createPermission: % %', forObjectUuid, permitOps[i];
|
2022-07-22 13:31:37 +02:00
|
|
|
INSERT INTO RbacReference ("type") VALUES ('RbacPermission') RETURNING uuid INTO refId;
|
|
|
|
INSERT INTO RbacPermission (uuid, objectUuid, op) VALUES (refId, forObjectUuid, permitOps[i]);
|
|
|
|
END IF;
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE NOTICE 'addPermission: %', refId;
|
2022-07-22 13:31:37 +02:00
|
|
|
permissionIds = permissionIds || refId;
|
|
|
|
END LOOP;
|
2022-07-27 19:54:05 +02:00
|
|
|
|
|
|
|
RAISE NOTICE 'createPermissions returning: %', permissionIds;
|
2022-07-22 13:31:37 +02:00
|
|
|
return permissionIds;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
CREATE OR REPLACE FUNCTION findPermissionId(forObjectUuid uuid, forOp RbacOp)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT uuid FROM RbacPermission p
|
|
|
|
WHERE p.objectUuid=forObjectUuid AND p.op in ('*', forOp)
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
|
|
|
|
|
|
|
--changeset rbac-base-grants:1 endDelimiter:--//
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
CREATE TABLE RbacGrants
|
|
|
|
(
|
|
|
|
ascendantUuid uuid references RbacReference (uuid) ON DELETE CASCADE,
|
|
|
|
descendantUuid uuid references RbacReference (uuid) ON DELETE CASCADE,
|
|
|
|
follow boolean not null default true,
|
|
|
|
primary key (ascendantUuid, descendantUuid)
|
|
|
|
);
|
|
|
|
CREATE INDEX ON RbacGrants (ascendantUuid);
|
|
|
|
CREATE INDEX ON RbacGrants (descendantUuid);
|
|
|
|
|
|
|
|
|
|
|
|
--//
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION findGrantees(grantedId uuid)
|
|
|
|
RETURNS SETOF RbacReference
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT reference.*
|
|
|
|
FROM (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT
|
|
|
|
descendantUuid,
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants
|
|
|
|
WHERE
|
|
|
|
descendantUuid = grantedId
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
|
|
"grant".descendantUuid,
|
|
|
|
"grant".ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants "grant"
|
|
|
|
INNER JOIN grants recur ON recur.ascendantUuid = "grant".descendantUuid
|
|
|
|
) SELECT
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
grants
|
|
|
|
) as grantee
|
|
|
|
JOIN RbacReference reference ON reference.uuid=grantee.ascendantUuid;
|
|
|
|
$$;
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION isGranted(granteeId uuid, grantedId uuid)
|
|
|
|
RETURNS bool
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT granteeId=grantedId OR granteeId IN (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT descendantUuid, ascendantUuid
|
|
|
|
FROM RbacGrants
|
|
|
|
WHERE descendantUuid = grantedId
|
|
|
|
UNION ALL
|
|
|
|
SELECT "grant".descendantUuid, "grant".ascendantUuid
|
|
|
|
FROM RbacGrants "grant"
|
|
|
|
INNER JOIN grants recur ON recur.ascendantUuid = "grant".descendantUuid
|
|
|
|
) SELECT
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
grants
|
|
|
|
);
|
|
|
|
$$;
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION isPermissionGrantedToSubject(permissionId uuid, subjectId uuid)
|
|
|
|
RETURNS BOOL
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT EXISTS (
|
|
|
|
SELECT * FROM RbacUser WHERE uuid IN (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT
|
|
|
|
descendantUuid,
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants g
|
|
|
|
WHERE
|
|
|
|
g.descendantUuid = permissionId
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
|
|
g.descendantUuid,
|
|
|
|
g.ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants g
|
|
|
|
INNER JOIN grants recur ON recur.ascendantUuid = g.descendantUuid
|
|
|
|
) SELECT
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
grants
|
|
|
|
WHERE ascendantUuid=subjectId
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$$;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
CREATE OR REPLACE PROCEDURE grantPermissionsToRole(roleUuid uuid, permissionIds uuid[])
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
BEGIN
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE NOTICE 'grantPermissionsToRole: % -> %', roleUuid, permissionIds;
|
2022-07-22 13:31:37 +02:00
|
|
|
FOR i IN array_lower(permissionIds, 1)..array_upper(permissionIds, 1) LOOP
|
|
|
|
perform assertReferenceType('roleId (ascendant)', roleUuid, 'RbacRole');
|
|
|
|
perform assertReferenceType('permissionId (descendant)', permissionIds[i], 'RbacPermission');
|
|
|
|
|
|
|
|
-- INSERT INTO RbacGrants (ascendantUuid, descendantUuid, apply) VALUES (roleId, permissionIds[i], true); -- assumeV1
|
|
|
|
INSERT INTO RbacGrants (ascendantUuid, descendantUuid) VALUES (roleUuid, permissionIds[i]);
|
|
|
|
END LOOP;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-22 16:52:49 +02:00
|
|
|
CREATE OR REPLACE PROCEDURE grantRoleToRole(subRoleId uuid, superRoleId uuid, doFollow bool = true )
|
2022-07-22 13:31:37 +02:00
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
BEGIN
|
|
|
|
perform assertReferenceType('superRoleId (ascendant)', superRoleId, 'RbacRole');
|
|
|
|
perform assertReferenceType('subRoleId (descendant)', subRoleId, 'RbacRole');
|
|
|
|
|
|
|
|
IF ( isGranted(subRoleId, superRoleId) ) THEN
|
|
|
|
RAISE EXCEPTION 'Cyclic role grant detected between % and %', subRoleId, superRoleId;
|
|
|
|
END IF;
|
|
|
|
|
|
|
|
-- INSERT INTO RbacGrants (ascendantUuid, descendantUuid, apply) VALUES (superRoleId, subRoleId, doapply); -- assumeV1
|
2022-07-25 16:38:21 +02:00
|
|
|
INSERT INTO RbacGrants (ascendantUuid, descendantUuid, follow) VALUES (superRoleId, subRoleId, doFollow)
|
2022-07-22 16:52:49 +02:00
|
|
|
ON CONFLICT DO NOTHING ; -- TODO: remove?
|
2022-07-22 13:31:37 +02:00
|
|
|
END; $$;
|
|
|
|
|
|
|
|
CREATE OR REPLACE PROCEDURE revokeRoleFromRole(subRoleId uuid, superRoleId uuid)
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
BEGIN
|
|
|
|
perform assertReferenceType('superRoleId (ascendant)', superRoleId, 'RbacRole');
|
|
|
|
perform assertReferenceType('subRoleId (descendant)', subRoleId, 'RbacRole');
|
|
|
|
|
|
|
|
IF ( isGranted(subRoleId, superRoleId) ) THEN
|
|
|
|
DELETE FROM RbacGrants WHERE ascendantUuid=superRoleId AND descendantUuid=subRoleId;
|
|
|
|
END IF;
|
|
|
|
END; $$;
|
|
|
|
|
|
|
|
CREATE OR REPLACE PROCEDURE grantRoleToUser(roleId uuid, userId uuid)
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
BEGIN
|
|
|
|
perform assertReferenceType('roleId (ascendant)', roleId, 'RbacRole');
|
|
|
|
perform assertReferenceType('userId (descendant)', userId, 'RbacUser');
|
|
|
|
|
|
|
|
-- INSERT INTO RbacGrants (ascendantUuid, descendantUuid, apply) VALUES (userId, roleId, true); -- assumeV1
|
|
|
|
INSERT INTO RbacGrants (ascendantUuid, descendantUuid) VALUES (userId, roleId)
|
2022-07-25 16:38:21 +02:00
|
|
|
ON CONFLICT DO NOTHING ; -- TODO: remove?
|
2022-07-22 13:31:37 +02:00
|
|
|
END; $$;
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-query-accessible-object-uuids:1 endDelimiter:--//
|
|
|
|
/*
|
2022-07-25 16:38:21 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
2022-07-22 13:31:37 +02:00
|
|
|
CREATE OR REPLACE FUNCTION queryAccessibleObjectUuidsOfSubjectIds(
|
|
|
|
requiredOp RbacOp,
|
2022-07-27 12:32:54 +02:00
|
|
|
forObjectTable varchar, -- reduces the result set, but is not really faster when used in restricted view
|
2022-07-22 13:31:37 +02:00
|
|
|
subjectIds uuid[],
|
2022-07-27 12:32:54 +02:00
|
|
|
maxObjects integer = 8000)
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS SETOF uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
2022-07-22 16:52:49 +02:00
|
|
|
foundRows bigint;
|
2022-07-22 13:31:37 +02:00
|
|
|
BEGIN
|
2022-07-22 16:52:49 +02:00
|
|
|
RETURN QUERY SELECT DISTINCT perm.objectUuid
|
2022-07-22 13:31:37 +02:00
|
|
|
FROM (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT descendantUuid, ascendantUuid, 1 AS level
|
|
|
|
FROM RbacGrants
|
2022-07-22 16:52:49 +02:00
|
|
|
WHERE follow AND ascendantUuid = ANY(subjectIds)
|
|
|
|
UNION DISTINCT
|
|
|
|
SELECT "grant".descendantUuid, "grant".ascendantUuid, level+1 AS level
|
2022-07-22 13:31:37 +02:00
|
|
|
FROM RbacGrants "grant"
|
|
|
|
INNER JOIN grants recur ON recur.descendantUuid = "grant".ascendantUuid
|
2022-07-25 16:38:21 +02:00
|
|
|
WHERE follow
|
2022-07-22 13:31:37 +02:00
|
|
|
) SELECT descendantUuid
|
|
|
|
FROM grants
|
|
|
|
) as granted
|
2022-07-22 16:52:49 +02:00
|
|
|
JOIN RbacPermission perm
|
|
|
|
ON granted.descendantUuid=perm.uuid AND perm.op IN ('*', requiredOp)
|
2022-07-27 12:32:54 +02:00
|
|
|
JOIN RbacObject obj ON obj.uuid=perm.objectUuid AND obj.objectTable=forObjectTable
|
|
|
|
LIMIT maxObjects+1;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
foundRows = lastRowCount();
|
|
|
|
IF foundRows > maxObjects THEN
|
|
|
|
RAISE EXCEPTION 'Too many accessible objects, limit is %, found %.', maxObjects, foundRows
|
|
|
|
USING
|
2022-07-22 16:52:49 +02:00
|
|
|
ERRCODE = 'P0003',
|
2022-07-22 13:31:37 +02:00
|
|
|
HINT = 'Please assume a sub-role and try again.';
|
|
|
|
END IF;
|
|
|
|
END;
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
|
|
|
|
|
|
|
--changeset rbac-base-query-granted-permissions:1 endDelimiter:--//
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
CREATE OR REPLACE FUNCTION queryGrantedPermissionsOfSubjectIds(requiredOp RbacOp, subjectIds uuid[])
|
2022-07-22 13:31:37 +02:00
|
|
|
RETURNS SETOF RbacPermission
|
|
|
|
STRICT
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT DISTINCT *
|
|
|
|
FROM RbacPermission
|
|
|
|
WHERE op = '*' OR op = requiredOp
|
|
|
|
AND uuid IN (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT DISTINCT
|
|
|
|
descendantUuid,
|
|
|
|
ascendantUuid
|
|
|
|
FROM RbacGrants
|
|
|
|
WHERE
|
|
|
|
ascendantUuid = ANY(subjectIds)
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
|
|
"grant".descendantUuid,
|
|
|
|
"grant".ascendantUuid
|
|
|
|
FROM RbacGrants "grant"
|
|
|
|
INNER JOIN grants recur ON recur.descendantUuid = "grant".ascendantUuid
|
|
|
|
) SELECT
|
|
|
|
descendantUuid
|
|
|
|
FROM grants
|
|
|
|
);
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-base-query-users-with-permission-for-object:1 endDelimiter:--//
|
2022-07-27 19:54:05 +02:00
|
|
|
/*
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION queryAllRbacUsersWithPermissionsFor(objectId uuid)
|
|
|
|
RETURNS SETOF RbacUser
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE sql AS $$
|
|
|
|
SELECT * FROM RbacUser WHERE uuid IN (
|
|
|
|
WITH RECURSIVE grants AS (
|
|
|
|
SELECT
|
|
|
|
descendantUuid,
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants
|
|
|
|
WHERE
|
|
|
|
descendantUuid = objectId
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
|
|
"grant".descendantUuid,
|
|
|
|
"grant".ascendantUuid
|
|
|
|
FROM
|
|
|
|
RbacGrants "grant"
|
|
|
|
INNER JOIN grants recur ON recur.ascendantUuid = "grant".descendantUuid
|
|
|
|
) SELECT
|
|
|
|
ascendantUuid
|
|
|
|
FROM
|
|
|
|
grants
|
|
|
|
);
|
|
|
|
$$;
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--changeset rbac-current-user:1 endDelimiter:--//
|
|
|
|
/*
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
*/
|
2022-07-22 13:31:37 +02:00
|
|
|
CREATE OR REPLACE FUNCTION currentUser()
|
|
|
|
RETURNS varchar(63)
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
currentUser VARCHAR(63);
|
|
|
|
BEGIN
|
|
|
|
BEGIN
|
|
|
|
currentUser := current_setting('hsadminng.currentUser');
|
|
|
|
EXCEPTION WHEN OTHERS THEN
|
|
|
|
currentUser := NULL;
|
|
|
|
END;
|
|
|
|
IF (currentUser IS NULL OR currentUser = '') THEN
|
|
|
|
RAISE EXCEPTION 'hsadminng.currentUser must be defined, please use "SET LOCAL ...;"';
|
|
|
|
END IF;
|
|
|
|
RETURN currentUser;
|
|
|
|
END; $$;
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION currentUserId()
|
|
|
|
RETURNS uuid
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
currentUser VARCHAR(63);
|
|
|
|
currentUserId uuid;
|
|
|
|
BEGIN
|
|
|
|
currentUser := currentUser();
|
|
|
|
currentUserId = (SELECT uuid FROM RbacUser WHERE name = currentUser);
|
|
|
|
RETURN currentUserId;
|
|
|
|
END; $$;
|
|
|
|
|
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|
|
|
|
|
|
|
|
--changeset rbac-assumed-roles:1 endDelimiter:--//
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
2022-07-22 13:31:37 +02:00
|
|
|
CREATE OR REPLACE FUNCTION assumedRoles()
|
|
|
|
RETURNS varchar(63)[]
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
|
|
|
currentSubject VARCHAR(63);
|
|
|
|
BEGIN
|
|
|
|
BEGIN
|
|
|
|
currentSubject := current_setting('hsadminng.assumedRoles');
|
2022-07-22 16:52:49 +02:00
|
|
|
EXCEPTION WHEN OTHERS THEN
|
|
|
|
RETURN ARRAY[]::varchar[];
|
|
|
|
END;
|
|
|
|
IF (currentSubject = '') THEN
|
|
|
|
RETURN ARRAY[]::varchar[];
|
|
|
|
END IF;
|
|
|
|
RETURN string_to_array(currentSubject, ';');
|
|
|
|
END; $$;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-28 16:55:21 +02:00
|
|
|
CREATE OR REPLACE FUNCTION pureIdentifier(rawIdentifier varchar)
|
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
begin
|
|
|
|
return regexp_replace(rawIdentifier, '\W+', '');
|
|
|
|
end; $$;
|
|
|
|
|
2022-07-28 10:43:23 +02:00
|
|
|
CREATE OR REPLACE FUNCTION findUuidByIdName(objectTable varchar, objectIdName varchar)
|
|
|
|
RETURNS uuid
|
|
|
|
RETURNS NULL ON NULL INPUT
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
2022-07-28 16:55:21 +02:00
|
|
|
sql varchar;
|
2022-07-28 10:43:23 +02:00
|
|
|
BEGIN
|
2022-07-28 16:55:21 +02:00
|
|
|
objectTable := pureIdentifier(objectTable);
|
|
|
|
objectIdName := pureIdentifier(objectIdName);
|
|
|
|
sql := objectTable || 'UuidByIdName(' || objectIdName || ');';
|
|
|
|
EXECUTE sql;
|
2022-07-28 10:43:23 +02:00
|
|
|
END; $$;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION currentSubjectIds()
|
|
|
|
RETURNS uuid[]
|
|
|
|
STABLE LEAKPROOF
|
|
|
|
LANGUAGE plpgsql AS $$
|
|
|
|
DECLARE
|
2022-07-27 19:54:05 +02:00
|
|
|
currentUserId uuid;
|
|
|
|
roleNames VARCHAR(63)[];
|
|
|
|
roleName VARCHAR(63);
|
|
|
|
objectTableToAssume VARCHAR(63);
|
|
|
|
objectNameToAssume VARCHAR(63);
|
|
|
|
objectUuidToAssume uuid;
|
|
|
|
roleTypeToAssume RbacRoleType;
|
|
|
|
roleIdsToAssume uuid[];
|
|
|
|
roleUuidToAssume uuid;
|
2022-07-22 13:31:37 +02:00
|
|
|
BEGIN
|
|
|
|
currentUserId := currentUserId();
|
2022-07-27 19:54:05 +02:00
|
|
|
roleNames := assumedRoles();
|
|
|
|
IF ( CARDINALITY(roleNames) = 0 ) THEN
|
2022-07-22 16:52:49 +02:00
|
|
|
RETURN ARRAY[currentUserId];
|
2022-07-22 13:31:37 +02:00
|
|
|
END IF;
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
RAISE NOTICE 'assuming roles: %', roleNames;
|
2022-07-22 13:31:37 +02:00
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
FOREACH roleName IN ARRAY roleNames LOOP
|
|
|
|
roleName = overlay(roleName placing '#' from length(roleName) + 1 - strpos(reverse(roleName), '.'));
|
|
|
|
objectTableToAssume = split_part(roleName, '#', 1);
|
|
|
|
objectNameToAssume = split_part(roleName, '#', 2);
|
|
|
|
roleTypeToAssume = split_part(roleName, '#', 3);
|
2022-07-22 16:52:49 +02:00
|
|
|
|
2022-07-28 10:43:23 +02:00
|
|
|
objectUuidToAssume = findUuidByIdName(objectTableToAssume, objectNameToAssume);
|
|
|
|
|
2022-07-27 19:54:05 +02:00
|
|
|
-- TODO: either the result needs to be cached at least per transaction or we need to get rid of SELCT in a loop
|
|
|
|
SELECT uuid AS roleuuidToAssume
|
|
|
|
FROM RbacRole r
|
|
|
|
WHERE r.objectUuid=objectUuidToAssume AND r.roleType=roleTypeToAssume INTO roleUuidToAssume;
|
|
|
|
IF ( NOT isGranted(currentUserId, roleUuidToAssume) ) THEN
|
|
|
|
RAISE EXCEPTION 'user % has no permission to assume role %', currentUser(), roleUuidToAssume;
|
|
|
|
END IF;
|
|
|
|
roleIdsToAssume := roleIdsToAssume || roleUuidToAssume;
|
|
|
|
END LOOP;
|
|
|
|
|
|
|
|
RETURN roleIdsToAssume;
|
2022-07-22 16:52:49 +02:00
|
|
|
END; $$;
|
2022-07-28 16:55:21 +02:00
|
|
|
--//
|