diff --git a/Changelog b/Changelog index 0e09011..6f9a3fb 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,4 @@ +- Tunable connection to postgresql for users from KaiGai Kohei. - Memprotect support patch from Stephen Smalley. - Add logging_send_audit_msgs() interface and deprecate send_audit_msgs_pattern(). diff --git a/policy/modules/services/postgresql.te b/policy/modules/services/postgresql.te index ab075ab..e5a6a25 100644 --- a/policy/modules/services/postgresql.te +++ b/policy/modules/services/postgresql.te @@ -175,16 +175,6 @@ optional_policy(` ') ifdef(`TODO',` -ifdef(`targeted_policy', `', ` -bool allow_user_postgresql_connect false; - -if (allow_user_postgresql_connect) { -# allow any user domain to connect to the database server -allow userdomain postgresql_t:unix_stream_socket connectto; -allow userdomain postgresql_var_run_t:sock_file write; -allow userdomain postgresql_tmp_t:sock_file write; -} -') ifdef(`distro_debian', ` init_exec_script_files(postgresql_t) # gross hack diff --git a/policy/modules/system/userdomain.if b/policy/modules/system/userdomain.if index 60f6fd8..fcd4572 100644 --- a/policy/modules/system/userdomain.if +++ b/policy/modules/system/userdomain.if @@ -905,6 +905,12 @@ template(`userdom_common_user_template',` ') optional_policy(` + tunable_policy(`allow_user_postgresql_connect',` + postgresql_stream_connect($1_t) + ') + ') + + optional_policy(` quota_dontaudit_getattr_db($1_t) ') diff --git a/policy/modules/system/userdomain.te b/policy/modules/system/userdomain.te index 1ad652d..22ac2f2 100644 --- a/policy/modules/system/userdomain.te +++ b/policy/modules/system/userdomain.te @@ -1,5 +1,5 @@ -policy_module(userdomain,2.2.2) +policy_module(userdomain,2.2.3) gen_require(` role sysadm_r, staff_r, user_r; @@ -32,6 +32,13 @@ gen_tunable(allow_user_mysql_connect,false) ## ## +## Allow users to connect to PostgreSQL +## +## +gen_tunable(allow_user_postgresql_connect,false) + +## +## ## Allow regular users direct mouse access ## ##
+## Allow users to connect to PostgreSQL +##
## Allow regular users direct mouse access ##