Merge branch 'ipvlan-packet-scrub'
authorDavid S. Miller <davem@davemloft.net>
Fri, 15 Dec 2017 16:36:54 +0000 (11:36 -0500)
committerDavid S. Miller <davem@davemloft.net>
Fri, 15 Dec 2017 16:36:54 +0000 (11:36 -0500)
commitd31d38a0a911f8ae681db172481c66065f05c3e1
treed80bc791215a1923cff066949151932415ff3bcb
parent8ce38aeb556ab0e71d8f19c32d302444a56a3a9e
parentc0d451c86ca2c2e6d0f52394b5463e0359caa6f2
Merge branch 'ipvlan-packet-scrub'

Mahesh Bandewar says:

====================
ipvlan: packet scrub

While crossing namespace boundary IPvlan aggressively scrubs packets.
This is creating problems. First thing is that scrubbing changes the
packet type in skb meta-data to PACKET_HOST. This causes erroneous
packet delivery when dev_forward_skb() has already marked the packet
type as OTHER_HOST.

On the egress side scrubbing just before calling dev_queue_xmit()
creates another set of problems. Scrubbing remove skb->sk so the
prio update gets missed and more seriously, socket back-pressure
fails making TSQ not function correctly.

The first patch in the series just reverts the earlier change which
was adding a mac-check, but that is unnecessary if packet_type that
dev_forward_skb() has set is honored. The second path removes two of
the scrubs which are causing problems described above.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>