640-bridge-only-accept-EAP-locally.patch 880 B

1234567891011121314151617181920212223242526272829303132
  1. From c6905cfdeb31a5c049db3da434b10fa0d3e83569 Mon Sep 17 00:00:00 2001
  2. From: Felix Fietkau <[email protected]>
  3. Date: Fri, 7 Jul 2017 17:18:54 +0200
  4. Subject: bridge: only accept EAP locally
  5. When bridging, do not forward EAP frames to other ports, only deliver
  6. them locally, regardless of the state.
  7. Signed-off-by: Felix Fietkau <[email protected]>
  8. ---
  9. net/bridge/br_input.c | 7 +++++--
  10. 1 file changed, 5 insertions(+), 2 deletions(-)
  11. --- a/net/bridge/br_input.c
  12. +++ b/net/bridge/br_input.c
  13. @@ -164,11 +164,14 @@ int br_handle_frame_finish(struct net *n
  14. }
  15. }
  16. + BR_INPUT_SKB_CB(skb)->brdev = br->dev;
  17. +
  18. + if (skb->protocol == htons(ETH_P_PAE))
  19. + return br_pass_frame_up(skb);
  20. +
  21. if (p->state == BR_STATE_LEARNING)
  22. goto drop;
  23. - BR_INPUT_SKB_CB(skb)->brdev = br->dev;
  24. -
  25. if (IS_ENABLED(CONFIG_INET) && skb->protocol == htons(ETH_P_ARP))
  26. br_do_proxy_arp(skb, br, vid, p);