Know the privileges that users have in your system. Probably all the database users do not need these privileges.
Notes
There could be multiple routines with the same name but with different parameters in the same schema (overloading). Thus, for the unique identification of the routine it is necessary to present also its parameters in addition to the schema name and routine name. In the output data the query removes from the end of the routine name the numbers, which represent the object identifier of the routine in the system catalog.
Type
Problem detection (Each row in the result could represent a flaw in the design)
WITH public_routines AS (SELECT DISTINCT rp.routine_schema, rp.routine_name, r.routine_type, pg_get_function_identity_arguments(translate(substring(rp.specific_name,'_[0-9]+$'),'_','')::int::oid) AS parameters,
translate(substring(rp.specific_name,'_[0-9]+$'),'_','')::int::oid AS routine_oid
FROM information_schema.routine_privileges AS rp,
information_schema.routines AS r
WHERE rp.grantee='PUBLIC' AND rp.routine_schema NOT IN (SELECT schema_name
FROM INFORMATION_SCHEMA.schemata
WHERE schema_name<>'public' AND
schema_owner='postgres' AND schema_name IS NOT NULL) AND
rp.routine_schema=r.routine_schema AND
rp.specific_name=r.specific_name
AND rp.privilege_type='EXECUTE')
SELECT routine_type, routine_schema, routine_name,parameters
FROM public_routines
WHERE EXISTS (SELECT 1
FROM pg_catalog.pg_depend d
WHERE EXISTS (SELECT 1 FROM pg_catalog.pg_extension e WHERE d.refobjid=e.oid) AND
d.objid=public_routines.routine_oid)
ORDER BY routine_schema, routine_name, parameters;
SQL statements that help generate fixes for the identified problem.
SQL Query to Generate Fix
Description
WITH public_routines AS (SELECT DISTINCT rp.routine_schema, rp.routine_name, r.routine_type, pg_get_function_identity_arguments(translate(substring(rp.specific_name,'_[0-9]+$'),'_','')::int::oid) AS parameters,
translate(substring(rp.specific_name,'_[0-9]+$'),'_','')::int::oid AS routine_oid
FROM information_schema.routine_privileges AS rp,
information_schema.routines AS r
WHERE rp.grantee='PUBLIC' AND rp.routine_schema NOT IN (SELECT schema_name
FROM INFORMATION_SCHEMA.schemata
WHERE schema_name<>'public' AND
schema_owner='postgres' AND schema_name IS NOT NULL) AND
rp.routine_schema=r.routine_schema AND
rp.specific_name=r.specific_name
AND rp.privilege_type='EXECUTE'),
schemas_with_public_extension_routines AS (SELECT DISTINCT routine_schema
FROM public_routines
WHERE EXISTS (SELECT 1
FROM pg_catalog.pg_depend d
WHERE EXISTS (SELECT 1 FROM pg_catalog.pg_extension e WHERE d.refobjid=e.oid) AND
d.objid=public_routines.routine_oid))
SELECT format('REVOKE EXECUTE ON ALL FUNCTIONS IN SCHEMA %1$I FROM PUBLIC;', routine_schema) AS statements
FROM schemas_with_public_extension_routines
ORDER BY routine_schema;
Revoke the execution privilege from all the routines in a schema that contains at least one extension routine.
Collections
This query belongs to the following collections:
Name
Description
Find problems automatically
Queries, that results point to problems in the database. Each query in the collection produces an initial assessment. However, a human reviewer has the final say as to whether there is a problem or not .
Categories
This query is classified under the following categories:
Name
Description
Extensions
Queries of this category provide information about extensions in the database.
Security
Queries of this category provide information about the security measures.