Go to file
Marc Dionne 6b0d4980a5 net: Save and restore msg_namelen in sock_sendmsg
BugLink: https://bugs.launchpad.net/bugs/2054406

[ Upstream commit 01b2885d9415152bcb12ff1f7788f500a74ea0ed ]

Commit 86a7e0b69bd5 ("net: prevent rewrite of msg_name in
sock_sendmsg()") made sock_sendmsg save the incoming msg_name pointer
and restore it before returning, to insulate the caller against
msg_name being changed by the called code.  If the address length
was also changed however, we may return with an inconsistent structure
where the length doesn't match the address, and attempts to reuse it may
lead to lost packets.

For example, a kernel that doesn't have commit 1c5950fc6fe9 ("udp6: fix
potential access to stale information") will replace a v4 mapped address
with its ipv4 equivalent, and shorten namelen accordingly from 28 to 16.
If the caller attempts to reuse the resulting msg structure, it will have
the original ipv6 (v4 mapped) address but an incorrect v4 length.

Fixes: 86a7e0b69bd5 ("net: prevent rewrite of msg_name in sock_sendmsg()")
Signed-off-by: Marc Dionne <marc.dionne@auristor.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Manuel Diewald <manuel.diewald@canonical.com>
Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
2024-02-23 13:48:04 +01:00
Documentation firmware: ti_sci: Replace HTTP links with HTTPS ones 2024-02-02 14:13:03 +01:00
LICENSES
arch ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init 2024-02-23 13:48:04 +01:00
block blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock required!" 2024-02-02 14:13:21 +01:00
certs certs/blacklist_hashes.c: fix const confusion in certs blacklist 2022-08-26 11:10:49 +02:00
crypto crypto: pcrypt - Fix hungtask for PADATA_RESET 2024-02-02 14:13:07 +01:00
debian UBUNTU: debian/dkms-versions -- update from kernel-versions (main/2024.02.05) 2024-02-02 14:15:19 +01:00
debian.master UBUNTU: Upstream stable to v5.4.266 2024-02-12 09:10:26 +01:00
drivers net: bcmgenet: Fix FCS generation for fragmented skbuffs 2024-02-23 13:48:04 +01:00
fs block: Don't invalidate pagecache for invalid falloc modes 2024-02-12 09:10:26 +01:00
include netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() 2024-02-12 09:01:29 +01:00
init init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() 2023-08-09 12:25:43 +02:00
ipc ipc: replace costly bailout check in sysvipc_find_ipc() 2023-02-24 14:01:18 +01:00
kernel ring-buffer: Fix wake ups when buffer_percent is set to 100 2024-02-12 09:10:26 +01:00
lib ida: Fix crash in ida_free when the bitmap is empty 2024-02-02 14:13:22 +01:00
mm mm/cma: use nth_page() in place of direct struct page manipulation 2024-02-02 14:13:10 +01:00
net net: Save and restore msg_namelen in sock_sendmsg 2024-02-23 13:48:04 +01:00
samples samples/bpf: Fix buffer overflow in tcp_basertt 2023-10-02 12:12:01 +02:00
scripts sign-file: Fix incorrect return values check 2024-02-02 14:13:21 +01:00
security ima: detect changes to the backing overlay file 2024-02-02 14:13:17 +01:00
sound ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB 2024-02-12 09:10:25 +01:00
tools tools headers UAPI: Sync linux/perf_event.h with the kernel sources 2024-02-02 14:13:20 +01:00
ubuntu
usr
virt KVM: Destroy target device if coalesced MMIO unregistration fails 2023-05-12 17:15:09 +02:00
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS iio: stx104: Move to addac subdirectory 2023-10-30 11:41:56 +01:00
Makefile Linux 5.4.266 2024-02-12 09:10:26 +01:00
README
Ubuntu.md
dropped.txt
snapcraft.yaml
update-dkms-versions UBUNTU: [Packaging] resync update-dkms-versions helper 2023-11-23 13:49:20 +01:00
update-version-dkms

README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.