Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224474
b: refs/heads/master
c: 04f6d70
h: refs/heads/master
v: v3
  • Loading branch information
Eric Paris authored and David S. Miller committed Nov 23, 2010
1 parent 7284fb6 commit 952db84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eb06acdc85585f28864261f28659157848762ee4
refs/heads/master: 04f6d70f6e64900a5d70a5fc199dd9d5fa787738
8 changes: 4 additions & 4 deletions trunk/security/selinux/hooks.c
Original file line number Diff line number Diff line change
Expand Up @@ -4589,7 +4589,7 @@ static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
}
if (secmark_perm == PACKET__FORWARD_OUT) {
if (selinux_skb_peerlbl_sid(skb, family, &peer_sid))
return NF_DROP_ERR(-ECONNREFUSED);
return NF_DROP;
} else
peer_sid = SECINITSID_KERNEL;
} else {
Expand All @@ -4602,7 +4602,7 @@ static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
ad.u.net.netif = ifindex;
ad.u.net.family = family;
if (selinux_parse_skb(skb, &ad, &addrp, 0, NULL))
return NF_DROP_ERR(-ECONNREFUSED);
return NF_DROP;

if (secmark_active)
if (avc_has_perm(peer_sid, skb->secmark,
Expand All @@ -4614,13 +4614,13 @@ static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
u32 node_sid;

if (sel_netif_sid(ifindex, &if_sid))
return NF_DROP_ERR(-ECONNREFUSED);
return NF_DROP;
if (avc_has_perm(peer_sid, if_sid,
SECCLASS_NETIF, NETIF__EGRESS, &ad))
return NF_DROP_ERR(-ECONNREFUSED);

if (sel_netnode_sid(addrp, family, &node_sid))
return NF_DROP_ERR(-ECONNREFUSED);
return NF_DROP;
if (avc_has_perm(peer_sid, node_sid,
SECCLASS_NODE, NODE__SENDTO, &ad))
return NF_DROP_ERR(-ECONNREFUSED);
Expand Down

0 comments on commit 952db84

Please sign in to comment.