[PATCH 0/7] net: Convert dev_set_mac_address() to struct sockaddr_storage
Kuniyuki Iwashima
kuniyu at amazon.com
Tue May 20 17:19:20 PDT 2025
From: Kees Cook <kees at kernel.org>
Date: Tue, 20 May 2025 15:30:59 -0700
> Hi,
>
> As part of the effort to allow the compiler to reason about object sizes,
> we need to deal with the problematic variably sized struct sockaddr,
> which has no internal runtime size tracking. In much of the network
> stack the use of struct sockaddr_storage has been adopted. Continue the
> transition toward this for more of the internal APIs. Specifically:
>
> - inet_addr_is_any()
> - netif_set_mac_address()
> - dev_set_mac_address()
>
> Only 3 callers of dev_set_mac_address() needed adjustment; all others
> were already using struct sockaddr_storage internally.
I guess dev_set_mac_address_user() was missed on the way ?
For example, tap_ioctl() still uses sockaddr and calls
dev_set_mac_address_user(), which cast it to _storage.
More information about the Linux-nvme
mailing list