Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224415
b: refs/heads/master
c: 1f1aaf8
h: refs/heads/master
i:
  224413: 5099999
  224411: 4f8f0b2
  224407: 3784061
  224399: 4ae75a8
  224383: 179c830
v: v3
  • Loading branch information
Eric Paris authored and David S. Miller committed Nov 17, 2010
1 parent d535f58 commit ff53a2a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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: ee58681195bf243bafc44ca53f3c24429d096cce
refs/heads/master: 1f1aaf82825865a50cef0b4722607abb12aeee52
16 changes: 8 additions & 8 deletions trunk/security/selinux/hooks.c
Original file line number Diff line number Diff line change
Expand Up @@ -4585,11 +4585,11 @@ static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
secmark_perm = PACKET__SEND;
break;
default:
return NF_DROP;
return NF_DROP_ERR(-ECONNREFUSED);
}
if (secmark_perm == PACKET__FORWARD_OUT) {
if (selinux_skb_peerlbl_sid(skb, family, &peer_sid))
return NF_DROP;
return NF_DROP_ERR(-ECONNREFUSED);
} else
peer_sid = SECINITSID_KERNEL;
} else {
Expand All @@ -4602,28 +4602,28 @@ 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;
return NF_DROP_ERR(-ECONNREFUSED);

if (secmark_active)
if (avc_has_perm(peer_sid, skb->secmark,
SECCLASS_PACKET, secmark_perm, &ad))
return NF_DROP;
return NF_DROP_ERR(-ECONNREFUSED);

if (peerlbl_active) {
u32 if_sid;
u32 node_sid;

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

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

return NF_ACCEPT;
Expand Down

0 comments on commit ff53a2a

Please sign in to comment.