Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a19faf02 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

net: fix skb_defer_rx_timestamp()

After commit c1f19b51 (net: support time stamping in phy devices.),
kernel might crash if CONFIG_NETWORK_PHY_TIMESTAMPING=y and
skb_defer_rx_timestamp() handles a packet without an ethernet header.

Fixes kernel bugzilla #24102

Reference: https://bugzilla.kernel.org/show_bug.cgi?id=24102


Reported-and-tested-by: default avatarAndrew Watts <akwatts@ymail.com>
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c710245c
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -96,11 +96,13 @@ bool skb_defer_rx_timestamp(struct sk_buff *skb)
	struct phy_device *phydev;
	struct phy_device *phydev;
	unsigned int type;
	unsigned int type;


	skb_push(skb, ETH_HLEN);
	if (skb_headroom(skb) < ETH_HLEN)
		return false;
	__skb_push(skb, ETH_HLEN);


	type = classify(skb);
	type = classify(skb);


	skb_pull(skb, ETH_HLEN);
	__skb_pull(skb, ETH_HLEN);


	switch (type) {
	switch (type) {
	case PTP_CLASS_V1_IPV4:
	case PTP_CLASS_V1_IPV4: