net: hsr: fix mac_len checks
[ Upstream commit 48b491a5cc74333c4a6a82fe21cea42c055a3b0b ] Commit 2e9f60932a2c ("net: hsr: check skb can contain struct hsr_ethhdr in fill_frame_info") added the following which resulted in -EINVAL always being returned: if (skb->mac_len < sizeof(struct hsr_ethhdr)) return -EINVAL; mac_len was not being set correctly so this check completely broke HSR/PRP since it was always 14, not 20. Set mac_len correctly and modify the mac_len checks to test in the correct places since sometimes it is legitimately 14. Fixes: 2e9f60932a2c ("net: hsr: check skb can contain struct hsr_ethhdr in fill_frame_info") Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
a6a0af3c90
commit
f6442ee08f
@@ -23,8 +23,8 @@ struct sk_buff *hsr_get_untagged_frame(struct hsr_frame_info *frame,
|
||||
struct sk_buff *prp_get_untagged_frame(struct hsr_frame_info *frame,
|
||||
struct hsr_port *port);
|
||||
bool prp_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port);
|
||||
void prp_fill_frame_info(__be16 proto, struct sk_buff *skb,
|
||||
struct hsr_frame_info *frame);
|
||||
void hsr_fill_frame_info(__be16 proto, struct sk_buff *skb,
|
||||
struct hsr_frame_info *frame);
|
||||
int prp_fill_frame_info(__be16 proto, struct sk_buff *skb,
|
||||
struct hsr_frame_info *frame);
|
||||
int hsr_fill_frame_info(__be16 proto, struct sk_buff *skb,
|
||||
struct hsr_frame_info *frame);
|
||||
#endif /* __HSR_FORWARD_H */
|
||||
|
Reference in New Issue
Block a user