]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'virtio_net-infinite-loop'
authorDavid S. Miller <davem@davemloft.net>
Wed, 10 Mar 2021 00:12:20 +0000 (16:12 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 10 Mar 2021 00:12:20 +0000 (16:12 -0800)
commitafa2e0e91f5faa786ccfdce3235ab76cf2671175
treeaa561ac181147df2e9c5b52ed67706e2e26ba9c9
parentbbeb008bbe2d801d6a82a0799e8f479723691ae8
parentf5bdc79ee1b499ee4498ef14a58663e2c2bd70ff
Merge branch 'virtio_net-infinite-loop'

Balazs Nemeth says:

====================
net: prevent infinite loop caused by incorrect proto from virtio_net_hdr_set_proto

These patches prevent an infinite loop for gso packets with a protocol
from virtio net hdr that doesn't match the protocol in the packet.
Note that packets coming from a device without
header_ops->parse_protocol being implemented will not be caught by
the check in virtio_net_hdr_to_skb, but the infinite loop will still
be prevented by the check in the gso layer.

Changes from v2 to v3:
  - Remove unused *eth.
  - Use MPLS_HLEN to also check if the MPLS header length is a multiple
    of four.
====================

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