Skip to content

In the Linux kernel, the following vulnerability has been...

Unreviewed Published Dec 4, 2025 to the GitHub Advisory Database • Updated Dec 7, 2025

Package

No package listedSuggest a package

Affected versions

Unknown

Patched versions

Unknown

Description

In the Linux kernel, the following vulnerability has been resolved:

vsock: Ignore signal/timeout on connect() if already established

During connect(), acting on a signal/timeout by disconnecting an already
established socket leads to several issues:

  1. connect() invoking vsock_transport_cancel_pkt() ->
    virtio_transport_purge_skbs() may race with sendmsg() invoking
    virtio_transport_get_credit(). This results in a permanently elevated
    vvs->bytes_unsent. Which, in turn, confuses the SOCK_LINGER handling.

  2. connect() resetting a connected socket's state may race with socket
    being placed in a sockmap. A disconnected socket remaining in a sockmap
    breaks sockmap's assumptions. And gives rise to WARNs.

  3. connect() transitioning SS_CONNECTED -> SS_UNCONNECTED allows for a
    transport change/drop after TCP_ESTABLISHED. Which poses a problem for
    any simultaneous sendmsg() or connect() and may result in a
    use-after-free/null-ptr-deref.

Do not disconnect socket on signal/timeout. Keep the logic for unconnected
sockets: they don't linger, can't be placed in a sockmap, are rejected by
sendmsg().

References

Published by the National Vulnerability Database Dec 4, 2025
Published to the GitHub Advisory Database Dec 4, 2025
Last updated Dec 7, 2025

Severity

Unknown

EPSS score

Exploit Prediction Scoring System (EPSS)

This score estimates the probability of this vulnerability being exploited within the next 30 days. Data provided by FIRST.
(6th percentile)

Weaknesses

No CWEs

CVE ID

CVE-2025-40248

GHSA ID

GHSA-j4rg-4m7w-4hr3

Source code

No known source code

Dependabot alerts are not supported on this advisory because it does not have a package from a supported ecosystem with an affected and fixed version.

Learn more about GitHub language support

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.