Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check incoming IPv6 multicast scope packets #10995

Merged
merged 8 commits into from Nov 2, 2018

Commits on Nov 1, 2018

  1. net: ipv6: Drop interface scope multicast dst address pkt

    If we receive an IPv6 packet with interface scope multicast
    address FF01:: then we must drop it as those addresses are
    reserved for local network traffic only.
    
    Fixes zephyrproject-rtos#10959
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    87786b7 View commit details
    Browse the repository at this point in the history
  2. tests: net: ipv6: Drop pkt for iface scope mcast addresses

    Test that we drop the received packet if the destination
    address is interface scope multicast address.
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    373e2ad View commit details
    Browse the repository at this point in the history
  3. net: ipv6: Drop zero scope multicast packet

    The zero scope is a reserved value so it should not be used
    so drop it.
    
    Fixes zephyrproject-rtos#10958
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    ba1fdb4 View commit details
    Browse the repository at this point in the history
  4. tests: net: ipv6: Drop pkt for zero scope mcast addresses

    Test that we drop the received packet if the destination
    address is zero scope (ff00::) multicast address.
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    de72943 View commit details
    Browse the repository at this point in the history
  5. net: ipv6: Drop site scope multicast dst address pkt

    If we receive an IPv6 packet with site scope multicast
    address FF05:: then we must drop it as those addresses are
    reserved for site network traffic only.
    
    Fixes zephyrproject-rtos#10960
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    fc33a0f View commit details
    Browse the repository at this point in the history
  6. tests: net: ipv6: Drop pkt for site scope mcast addresses

    Test that we drop the received packet if the destination
    address is site scope (ff05::) multicast address.
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    3193d9b View commit details
    Browse the repository at this point in the history
  7. net: ipv6: Drop organisation scope multicast dst address pkt

    If we receive an IPv6 packet with organisation scope multicast
    address FF08:: then we must drop it as those addresses are
    reserved for organisation network traffic only.
    
    Fixes zephyrproject-rtos#10961
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    c7c70fd View commit details
    Browse the repository at this point in the history
  8. tests: net: ipv6: Drop pkt for org scope mcast addresses

    Test that we drop the received packet if the destination
    address is organisation scope (ff08::) multicast address.
    
    Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
    jukkar committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    9428713 View commit details
    Browse the repository at this point in the history