Ooops, forgot the CC the SELinux list. -------- Forwarded Message -------- From: Paul Moore <paul.moore@xxxxxx> To: Steffen Klassert <steffen.klassert@xxxxxxxxxxx> Cc: linux-security-module@xxxxxxxxxxxxxxx Subject: Re: [PATCH 09/10] selinux: xfrm - notify users on dropped packets Date: Wed, 16 Feb 2011 15:59:51 -0500 On Mon, 2011-02-14 at 14:22 +0100, Steffen Klassert wrote: > In selinux_xfrm_state_pol_flow_match we have cases where we drop > packets without asking the avc. No audit message is generated in > this case. Lets at least print out a message to the logs, so the > users don't need to dig in the code to find out why these packets > are dropped. > > Signed-off-by: Steffen Klassert <steffen.klassert@xxxxxxxxxxx> I might remove the exclamation points from the error messages, but otherwise nice addition. Acked-by: Paul Moore <paul.moore@xxxxxx> > --- > security/selinux/xfrm.c | 24 ++++++++++++++++-------- > 1 files changed, 16 insertions(+), 8 deletions(-) > > diff --git a/security/selinux/xfrm.c b/security/selinux/xfrm.c > index 05e1c1c..6d85c17 100644 > --- a/security/selinux/xfrm.c > +++ b/security/selinux/xfrm.c > @@ -120,20 +120,28 @@ int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, struct xfrm_policy * > int rc; > > if (!xp->security) > - if (x->security) > - /* unlabeled policy and labeled SA can't match */ > + if (x->security) { > + if (net_ratelimit()) > + printk("selinux: unlabeled policy and labeled" > + "SA can't match!\n"); > return 0; > - else > + } else > /* unlabeled policy and unlabeled SA match all flows */ > return 1; > else > - if (!x->security) > - /* unlabeled SA and labeled policy can't match */ > + if (!x->security) { > + if (net_ratelimit()) > + printk("selinux: unlabeled SA and labeled" > + "policy can't match!\n"); > return 0; > - else > - if (!selinux_authorizable_xfrm(x)) > - /* Not a SELinux-labeled SA */ > + } else { > + if (!selinux_authorizable_xfrm(x)) { > + if (net_ratelimit()) > + printk("selinux: Not a" > + "SELinux-labeled SA!\n"); > return 0; > + } > + } > > state_sid = x->security->ctx_sid; > pol_sid = xp->security->ctx_sid; -- paul moore linux @ hp -- paul moore linux @ hp -- This message was distributed to subscribers of the selinux mailing list. If you no longer wish to subscribe, send mail to majordomo@xxxxxxxxxxxxx with the words "unsubscribe selinux" without quotes as the message.