From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3404F1381F3 for ; Sun, 25 Nov 2012 21:39:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62461E04ED; Sun, 25 Nov 2012 21:39:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1A76E04ED for ; Sun, 25 Nov 2012 21:39:09 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC6DB33D887 for ; Sun, 25 Nov 2012 21:39:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 32749E5436 for ; Sun, 25 Nov 2012 21:39:07 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1353879499.51abb9d4bde449ab072cd8d922d22b89758ad823.SwifT@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/services/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/services/postgresql.te X-VCS-Directories: policy/modules/services/ X-VCS-Committer: SwifT X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: 51abb9d4bde449ab072cd8d922d22b89758ad823 X-VCS-Branch: master Date: Sun, 25 Nov 2012 21:39:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9d3bee68-e0fb-4af4-80a2-8b56ebbab26d X-Archives-Hash: 7b8db3fcfc9de4ba5b2f8d68616bbfbb commit: 51abb9d4bde449ab072cd8d922d22b89758ad823 Author: Sven Vermeulen siphos be> AuthorDate: Sun Nov 25 21:38:04 2012 +0000 Commit: Sven Vermeulen siphos be> CommitDate: Sun Nov 25 21:38:19 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=51abb9d4 Postgresql 9.2 connects to its unix stream socket When starting postgresql, it fails with the (little saying) error message: pg_ctl: could not start server In the denials, we notice: Nov 24 10:41:52 lerya kernel: [1628900.540506] type=1400 audit(1353750112.021:10143): avc: denied { connectto } for pid=20481 comm="pg_ctl" path="/run/postgresql/.s.PGSQL.5432" ipaddr=... scontext=system_u:system_r:postgresql_t tcontext=system_u:system_r:postgresql_t tclass=unix_stream_socket Hence, allow postgresql to connect to its own stream socket. See also bug #444540 --- policy/modules/services/postgresql.te | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/policy/modules/services/postgresql.te b/policy/modules/services/postgresql.te index 0210aef..906a2c1 100644 --- a/policy/modules/services/postgresql.te +++ b/policy/modules/services/postgresql.te @@ -363,6 +363,10 @@ userdom_dontaudit_use_unpriv_user_fds(postgresql_t) userdom_dontaudit_search_user_home_dirs(postgresql_t) userdom_dontaudit_use_user_terminals(postgresql_t) +ifdef(`distro_gentoo',` + allow postgresql_t self:unix_stream_socket connectto; +') + optional_policy(` mta_getattr_spool(postgresql_t) ')