Lucene search

K
vulnrichmentLinuxVULNRICHMENT:CVE-2024-35910
HistoryMay 19, 2024 - 8:35 a.m.

CVE-2024-35910 tcp: properly terminate timers for kernel sockets

2024-05-1908:35:03
Linux
github.com
5
linux
kernel
tcp
sockets
vulnerability
patch
network security

AI Score

6.7

Confidence

Low

EPSS

0

Percentile

13.0%

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial

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

tcp: properly terminate timers for kernel sockets

We had various syzbot reports about tcp timers firing after
the corresponding netns has been dismantled.

Fortunately Josef Bacik could trigger the issue more often,
and could test a patch I wrote two years ago.

When TCP sockets are closed, we call inet_csk_clear_xmit_timers()
to ‘stop’ the timers.

inet_csk_clear_xmit_timers() can be called from any context,
including when socket lock is held.
This is the reason it uses sk_stop_timer(), aka del_timer().
This means that ongoing timers might finish much later.

For user sockets, this is fine because each running timer
holds a reference on the socket, and the user socket holds
a reference on the netns.

For kernel sockets, we risk that the netns is freed before
timer can complete, because kernel sockets do not hold
reference on the netns.

This patch adds inet_csk_clear_xmit_timers_sync() function
that using sk_stop_timer_sync() to make sure all timers
are terminated before the kernel socket is released.
Modules using kernel sockets close them in their netns exit()
handler.

Also add sock_not_owned_by_me() helper to get LOCKDEP
support : inet_csk_clear_xmit_timers_sync() must not be called
while socket lock is held.

It is very possible we can revert in the future commit
3a58f13a881e (“net: rds: acquire refcount on TCP sockets”)
which attempted to solve the issue in rds only.
(net/smc/af_smc.c and net/mptcp/subflow.c have similar code)

We probably can remove the check_net() tests from
tcp_out_of_resources() and __tcp_close() in the future.

CNA Affected

[
  {
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "vendor": "Linux",
    "product": "Linux",
    "versions": [
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "93f0133b9d58",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "44e62f5d3567",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "e3e27d2b446d",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "2e43d8eba6ed",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "91b243de910a",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "c1ae4d1e76ea",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "899265c1389f",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "8a68173691f0",
        "lessThan": "151c9c724d05",
        "versionType": "git"
      }
    ],
    "programFiles": [
      "include/net/inet_connection_sock.h",
      "include/net/sock.h",
      "net/ipv4/inet_connection_sock.c",
      "net/ipv4/tcp.c"
    ],
    "defaultStatus": "unaffected"
  },
  {
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "vendor": "Linux",
    "product": "Linux",
    "versions": [
      {
        "status": "affected",
        "version": "4.2"
      },
      {
        "status": "unaffected",
        "version": "0",
        "lessThan": "4.2",
        "versionType": "custom"
      },
      {
        "status": "unaffected",
        "version": "4.19.312",
        "versionType": "custom",
        "lessThanOrEqual": "4.19.*"
      },
      {
        "status": "unaffected",
        "version": "5.4.274",
        "versionType": "custom",
        "lessThanOrEqual": "5.4.*"
      },
      {
        "status": "unaffected",
        "version": "5.10.215",
        "versionType": "custom",
        "lessThanOrEqual": "5.10.*"
      },
      {
        "status": "unaffected",
        "version": "5.15.154",
        "versionType": "custom",
        "lessThanOrEqual": "5.15.*"
      },
      {
        "status": "unaffected",
        "version": "6.1.85",
        "versionType": "custom",
        "lessThanOrEqual": "6.1.*"
      },
      {
        "status": "unaffected",
        "version": "6.6.26",
        "versionType": "custom",
        "lessThanOrEqual": "6.6.*"
      },
      {
        "status": "unaffected",
        "version": "6.8.5",
        "versionType": "custom",
        "lessThanOrEqual": "6.8.*"
      },
      {
        "status": "unaffected",
        "version": "6.9",
        "versionType": "original_commit_for_fix",
        "lessThanOrEqual": "*"
      }
    ],
    "programFiles": [
      "include/net/inet_connection_sock.h",
      "include/net/sock.h",
      "net/ipv4/inet_connection_sock.c",
      "net/ipv4/tcp.c"
    ],
    "defaultStatus": "affected"
  }
]

AI Score

6.7

Confidence

Low

EPSS

0

Percentile

13.0%

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial