From: Kees Cook <kees@kernel.org>
To: Jakub Kicinski <kuba@kernel.org>
Cc: Kees Cook <kees@kernel.org>,
"Gustavo A. R. Silva" <gustavo@embeddedor.com>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
John Fastabend <john.fastabend@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Paolo Abeni <pabeni@redhat.com>, Simon Horman <horms@kernel.org>,
Kuniyuki Iwashima <kuniyu@google.com>,
Willem de Bruijn <willemb@google.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
bpf@vger.kernel.org, linux-hardening@vger.kernel.org
Subject: [PATCH v3 0/9] net: Introduce struct sockaddr_unspec
Date: Mon, 20 Oct 2025 14:26:29 -0700 [thread overview]
Message-ID: <20251020212125.make.115-kees@kernel.org> (raw)
Hi!
v3:
- fix missed kernel_connect/bind casts in bpf selftests
- fix missed kernel_connect cast in samples/
- drop "bpf: Add size validation to bpf_sock_addr_set_sun_path()",
which is technically unrelated to the sockaddr conversion
v2: https://lore.kernel.org/linux-hardening/20251014223349.it.173-kees@kernel.org/
v1: https://lore.kernel.org/all/20250723230354.work.571-kees@kernel.org/
The historically fixed-size struct sockaddr is part of UAPI and embedded
in many existing structures. The kernel uses struct sockaddr extensively
within the kernel to represent arbitrarily sized sockaddr structures,
which caused problems with the compiler's ability to determine object
sizes correctly. The "temporary" solution was to make sockaddr explicitly
use a flexible array, but this causes problems for embedding struct
sockaddr in structures, where once again the compiler has to guess about
the size of such objects, and causes thousands of warnings under the
coming -Wflex-array-member-not-at-end warning.
Switching to sockaddr_storage internally everywhere wastes a lot of memory,
so we are left with needing two changes:
- introduction of an explicitly arbitrarily sized sockaddr struct
- switch struct sockaddr back to being fixed size
Doing the latter step requires all "arbitrarily sized" uses of struct
sockaddr to be replaced with the new struct from the first step.
So, introduce the new struct and do enough conversions that we can
switch sockaddr back to a fixed-size sa_data.
Thanks!
-Kees
Kees Cook (9):
net: Add struct sockaddr_unspec for sockaddr of unknown length
net/l2tp: Add missing sa_family validation in
pppol2tp_sockaddr_get_info
net: Convert proto_ops bind() callbacks to use sockaddr_unspec
net: Convert proto_ops connect() callbacks to use sockaddr_unspec
net: Remove struct sockaddr from net.h
net: Convert proto callbacks from sockaddr to sockaddr_unspec
bpf: Convert cgroup sockaddr filters to use sockaddr_unspec
consistently
bpf: Convert bpf_sock_addr_kern "uaddr" to sockaddr_unspec
net: Convert struct sockaddr to fixed-size "sa_data[14]"
include/linux/bpf-cgroup.h | 17 ++++++++------
include/linux/filter.h | 2 +-
include/linux/net.h | 9 ++++----
include/linux/socket.h | 23 +++++++++++++++----
include/net/inet_common.h | 13 +++++------
include/net/ip.h | 4 ++--
include/net/ipv6.h | 10 ++++----
include/net/ipv6_stubs.h | 2 +-
include/net/ping.h | 2 +-
include/net/sctp/sctp.h | 2 +-
include/net/sock.h | 14 +++++------
include/net/tcp.h | 2 +-
include/net/udp.h | 2 +-
include/net/vsock_addr.h | 2 +-
net/rds/rds.h | 2 +-
net/smc/smc.h | 4 ++--
.../perf/trace/beauty/include/linux/socket.h | 5 +---
crypto/af_alg.c | 2 +-
drivers/block/drbd/drbd_receiver.c | 6 ++---
drivers/infiniband/hw/erdma/erdma_cm.c | 6 ++---
drivers/infiniband/sw/siw/siw_cm.c | 8 +++----
drivers/isdn/mISDN/l1oip_core.c | 2 +-
drivers/isdn/mISDN/socket.c | 4 ++--
drivers/net/ppp/pppoe.c | 4 ++--
drivers/net/ppp/pptp.c | 8 +++----
drivers/net/wireless/ath/ath10k/qmi.c | 2 +-
drivers/net/wireless/ath/ath11k/qmi.c | 2 +-
drivers/net/wireless/ath/ath12k/qmi.c | 2 +-
drivers/nvme/host/tcp.c | 4 ++--
drivers/nvme/target/tcp.c | 2 +-
drivers/slimbus/qcom-ngd-ctrl.c | 2 +-
drivers/target/iscsi/iscsi_target_login.c | 2 +-
drivers/xen/pvcalls-back.c | 4 ++--
fs/afs/rxrpc.c | 6 ++---
fs/coredump.c | 2 +-
fs/dlm/lowcomms.c | 8 +++----
fs/ocfs2/cluster/tcp.c | 6 ++---
fs/smb/client/connect.c | 4 ++--
fs/smb/server/transport_tcp.c | 4 ++--
kernel/bpf/cgroup.c | 8 +++----
net/9p/trans_fd.c | 8 +++----
net/appletalk/ddp.c | 4 ++--
net/atm/pvc.c | 4 ++--
net/atm/svc.c | 4 ++--
net/ax25/af_ax25.c | 4 ++--
net/bluetooth/hci_sock.c | 2 +-
net/bluetooth/iso.c | 6 ++---
net/bluetooth/l2cap_sock.c | 4 ++--
net/bluetooth/rfcomm/core.c | 6 ++---
net/bluetooth/rfcomm/sock.c | 5 ++--
net/bluetooth/sco.c | 4 ++--
net/caif/caif_socket.c | 2 +-
net/can/bcm.c | 2 +-
net/can/isotp.c | 2 +-
net/can/j1939/socket.c | 4 ++--
net/can/raw.c | 2 +-
net/ceph/messenger.c | 2 +-
net/core/dev.c | 2 +-
net/core/dev_ioctl.c | 2 +-
net/core/filter.c | 5 ++--
net/core/sock.c | 6 ++---
net/ieee802154/socket.c | 12 +++++-----
net/ipv4/af_inet.c | 16 ++++++-------
net/ipv4/arp.c | 2 +-
net/ipv4/datagram.c | 4 ++--
net/ipv4/ping.c | 8 +++----
net/ipv4/raw.c | 3 ++-
net/ipv4/tcp.c | 2 +-
net/ipv4/tcp_ipv4.c | 4 ++--
net/ipv4/udp.c | 6 +++--
net/ipv4/udp_tunnel_core.c | 4 ++--
net/ipv6/af_inet6.c | 6 ++---
net/ipv6/datagram.c | 8 +++----
net/ipv6/ip6_udp_tunnel.c | 4 ++--
net/ipv6/ping.c | 2 +-
net/ipv6/raw.c | 3 ++-
net/ipv6/tcp_ipv6.c | 6 ++---
net/ipv6/udp.c | 5 ++--
net/iucv/af_iucv.c | 6 ++---
net/l2tp/l2tp_core.c | 8 +++----
net/l2tp/l2tp_ip.c | 6 +++--
net/l2tp/l2tp_ip6.c | 5 ++--
net/l2tp/l2tp_ppp.c | 9 +++++++-
net/llc/af_llc.c | 4 ++--
net/mctp/af_mctp.c | 4 ++--
net/mctp/test/route-test.c | 2 +-
net/mctp/test/utils.c | 5 ++--
net/mptcp/pm_kernel.c | 4 ++--
net/mptcp/protocol.c | 5 ++--
net/mptcp/subflow.c | 4 ++--
net/netfilter/ipvs/ip_vs_sync.c | 6 ++---
net/netlink/af_netlink.c | 4 ++--
net/netrom/af_netrom.c | 6 ++---
net/nfc/llcp_sock.c | 6 ++---
net/nfc/rawsock.c | 2 +-
net/packet/af_packet.c | 15 ++++++------
net/phonet/pep.c | 3 ++-
net/phonet/socket.c | 10 ++++----
net/qrtr/af_qrtr.c | 4 ++--
net/qrtr/ns.c | 2 +-
net/rds/af_rds.c | 2 +-
net/rds/bind.c | 2 +-
net/rds/tcp_connect.c | 4 ++--
net/rds/tcp_listen.c | 2 +-
net/rose/af_rose.c | 4 ++--
net/rxrpc/af_rxrpc.c | 4 ++--
net/rxrpc/rxperf.c | 2 +-
net/sctp/socket.c | 13 ++++++-----
net/smc/af_smc.c | 6 ++---
net/socket.c | 14 +++++------
net/sunrpc/clnt.c | 6 ++---
net/sunrpc/svcsock.c | 2 +-
net/sunrpc/xprtsock.c | 9 ++++----
net/tipc/socket.c | 6 ++---
net/unix/af_unix.c | 12 +++++-----
net/vmw_vsock/af_vsock.c | 6 ++---
net/vmw_vsock/vsock_addr.c | 2 +-
net/x25/af_x25.c | 4 ++--
net/xdp/xsk.c | 2 +-
samples/qmi/qmi_sample_client.c | 2 +-
.../selftests/bpf/test_kmods/bpf_testmod.c | 4 ++--
121 files changed, 326 insertions(+), 290 deletions(-)
--
2.34.1
next reply other threads:[~2025-10-20 21:26 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-20 21:26 Kees Cook [this message]
2025-10-20 21:26 ` [PATCH v3 1/9] net: Add struct sockaddr_unspec for sockaddr of unknown length Kees Cook
2025-10-21 9:26 ` David Laight
2025-10-21 19:42 ` Kees Cook
2025-10-22 9:26 ` David Laight
2025-10-23 16:33 ` Kees Cook
2025-10-23 10:43 ` Paolo Abeni
2025-10-23 11:40 ` David Laight
2025-10-23 16:31 ` Kees Cook
2025-10-23 10:59 ` Paolo Abeni
2025-10-23 16:20 ` Kees Cook
2025-10-20 21:26 ` [PATCH v3 2/9] net/l2tp: Add missing sa_family validation in pppol2tp_sockaddr_get_info Kees Cook
2025-10-23 10:47 ` Paolo Abeni
2025-10-23 16:01 ` Kees Cook
2025-10-20 21:26 ` [PATCH v3 3/9] net: Convert proto_ops bind() callbacks to use sockaddr_unspec Kees Cook
2025-10-20 21:26 ` [PATCH v3 4/9] net: Convert proto_ops connect() " Kees Cook
2025-10-20 21:26 ` [PATCH v3 5/9] net: Remove struct sockaddr from net.h Kees Cook
2025-10-20 21:26 ` [PATCH v3 6/9] net: Convert proto callbacks from sockaddr to sockaddr_unspec Kees Cook
2025-10-20 21:26 ` [PATCH v3 7/9] bpf: Convert cgroup sockaddr filters to use sockaddr_unspec consistently Kees Cook
2025-10-20 21:26 ` [PATCH v3 8/9] bpf: Convert bpf_sock_addr_kern "uaddr" to sockaddr_unspec Kees Cook
2025-10-20 21:26 ` [PATCH v3 9/9] net: Convert struct sockaddr to fixed-size "sa_data[14]" Kees Cook
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251020212125.make.115-kees@kernel.org \
--to=kees@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gustavo@embeddedor.com \
--cc=horms@kernel.org \
--cc=john.fastabend@gmail.com \
--cc=kuba@kernel.org \
--cc=kuniyu@google.com \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=willemb@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).