trunk: Tunable connection to postgresql for users from KaiGai Kohei.
This commit is contained in:
parent
41337aa8b9
commit
cb10a2d5bf
|
@ -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().
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -904,6 +904,12 @@ template(`userdom_common_user_template',`
|
|||
pcscd_stream_connect($1_t)
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
tunable_policy(`allow_user_postgresql_connect',`
|
||||
postgresql_stream_connect($1_t)
|
||||
')
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
quota_dontaudit_getattr_db($1_t)
|
||||
')
|
||||
|
|
|
@ -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;
|
||||
|
@ -30,6 +30,13 @@ gen_tunable(allow_ptrace,false)
|
|||
## </desc>
|
||||
gen_tunable(allow_user_mysql_connect,false)
|
||||
|
||||
## <desc>
|
||||
## <p>
|
||||
## Allow users to connect to PostgreSQL
|
||||
## </p>
|
||||
## </desc>
|
||||
gen_tunable(allow_user_postgresql_connect,false)
|
||||
|
||||
## <desc>
|
||||
## <p>
|
||||
## Allow regular users direct mouse access
|
||||
|
|
Loading…
Reference in New Issue