Re: [PATCH v2] ipv4: ping: fix bind address validity check

From: Carlos Llamas
Date: Fri Jun 17 2022 - 12:39:30 EST


On Fri, Jun 17, 2022 at 10:54:35AM +0200, Riccardo Paolo Bestetti wrote:
> Commit 8ff978b8b222 ("ipv4/raw: support binding to nonlocal addresses")
> introduced a helper function to fold duplicated validity checks of bind
> addresses into inet_addr_valid_or_nonlocal(). However, this caused an
> unintended regression in ping_check_bind_addr(), which previously would
> reject binding to multicast and broadcast addresses, but now these are
> both incorrectly allowed as reported in [1].
>
> This patch restores the original check. A simple reordering is done to
> improve readability and make it evident that multicast and broadcast
> addresses should not be allowed. Also, add an early exit for INADDR_ANY
> which replaces lost behavior added by commit 0ce779a9f501 ("net: Avoid
> unnecessary inet_addr_type() call when addr is INADDR_ANY").
>
> Furthermore, this patch introduces regression selftests to catch these
> specific cases.
>
> [1] https://lore.kernel.org/netdev/CANP3RGdkAcDyAZoT1h8Gtuu0saq+eOrrTiWbxnOs+5zn+cpyKg@xxxxxxxxxxxxxx/
>
> Fixes: 8ff978b8b222 ("ipv4/raw: support binding to nonlocal addresses")
> Cc: Miaohe Lin <linmiaohe@xxxxxxxxxx>
> Reported-by: Maciej Żenczykowski <maze@xxxxxxxxxx>
> Signed-off-by: Carlos Llamas <cmllamas@xxxxxxxxxx>
> Signed-off-by: Riccardo Paolo Bestetti <pbl@xxxxxxxxx>
> ---
> This patch is sent as a follow-up to the discussion on the v1 by Carlos
> Llamas.
>
> Original thread:
> https://lore.kernel.org/netdev/20220617020213.1881452-1-cmllamas@xxxxxxxxxx/
>

Reviewed-by: Carlos Llamas <cmllamas@xxxxxxxxxx>

Thanks Riccardo for adding the test cases. I would appreciate it if next
time you add a co-developed tag or maybe a separate commit as opposed to
overriding the original author. This is fine though.

--
Carlos Llamas