From: Paul Moore <paul.moore@hp.com>
To: Eric Paris <eparis@redhat.com>
Cc: netdev@vger.kernel.org, selinux@tycho.nsa.gov, sds@tycho.nsa.gov,
davem@davemloft.net
Subject: Re: [PATCH 2/2] SELinux: indicate fatal error in compat netfilter code
Date: Tue, 23 Nov 2010 11:32:08 -0500 [thread overview]
Message-ID: <1290529928.5359.19.camel@sifl> (raw)
In-Reply-To: <20101123162808.3588.18495.stgit@paris.rdu.redhat.com>
On Tue, 2010-11-23 at 11:28 -0500, Eric Paris wrote:
> The SELinux ip postroute code indicates when policy rejected a packet and
> passes the error back up the stack. The compat code does not. This patch
> sends the same kind of error back up the stack in the compat code.
>
> Based-on-patch-by: Paul Moore <paul.moore@hp.com>
> Signed-off-by: Eric Paris <eparis@redhat.com>
Reviewed-by: Paul Moore <paul.moore@hp.com>
> ---
>
> security/selinux/hooks.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index bd6dc16..dd1690f 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -4529,11 +4529,11 @@ static unsigned int selinux_ip_postroute_compat(struct sk_buff *skb,
> if (selinux_secmark_enabled())
> if (avc_has_perm(sksec->sid, skb->secmark,
> SECCLASS_PACKET, PACKET__SEND, &ad))
> - return NF_DROP;
> + return NF_DROP_ERR(-ECONNREFUSED);
>
> if (selinux_policycap_netpeer)
> if (selinux_xfrm_postroute_last(sksec->sid, skb, &ad, proto))
> - return NF_DROP;
> + return NF_DROP_ERR(-ECONNREFUSED);
>
> return NF_ACCEPT;
> }
>
--
paul moore
linux @ hp
next prev parent reply other threads:[~2010-11-23 16:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-23 16:28 [PATCH 1/2] SELinux: Only return netlink error when we know the return is fatal Eric Paris
2010-11-23 16:28 ` [PATCH 2/2] SELinux: indicate fatal error in compat netfilter code Eric Paris
2010-11-23 16:32 ` Paul Moore [this message]
2010-11-23 18:59 ` David Miller
2010-11-23 16:32 ` [PATCH 1/2] SELinux: Only return netlink error when we know the return is fatal Paul Moore
2010-11-23 18:59 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1290529928.5359.19.camel@sifl \
--to=paul.moore@hp.com \
--cc=davem@davemloft.net \
--cc=eparis@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=sds@tycho.nsa.gov \
--cc=selinux@tycho.nsa.gov \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).