]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[NET]: Clone the sk_buff 'iif' field in __skb_clone()
authorPaul Moore <paul.moore@hp.com>
Tue, 8 Jan 2008 05:56:41 +0000 (21:56 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Jan 2008 07:30:17 +0000 (23:30 -0800)
commit02f1c89d6e36507476f78108a3dcc78538be460b
treedc87b78a355096b9dfdfa892b4f94a962020a766
parentd8c9283089287341c85a0a69de32c2287a990e71
[NET]: Clone the sk_buff 'iif' field in __skb_clone()

Both NetLabel and SELinux (other LSMs may grow to use it as well) rely
on the 'iif' field to determine the receiving network interface of
inbound packets.  Unfortunately, at present this field is not
preserved across a skb clone operation which can lead to garbage
values if the cloned skb is sent back through the network stack.  This
patch corrects this problem by properly copying the 'iif' field in
__skb_clone() and removing the 'iif' field assignment from
skb_act_clone() since it is no longer needed.

Also, while we are here, put the assignments in the same order as the
offsets to reduce cacheline bounces.

Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sch_generic.h
net/core/skbuff.c