Lucene search

K
cvelistLinuxCVELIST:CVE-2022-48909
HistoryAug 22, 2024 - 1:30 a.m.

CVE-2022-48909 net/smc: fix connection leak

2024-08-2201:30:51
Linux
www.cve.org
1
linux kernel
connection leak
net/smc fix

EPSS

0

Percentile

5.1%

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

net/smc: fix connection leak

There’s a potential leak issue under following execution sequence :

smc_release smc_connect_work
if (sk->sk_state == SMC_INIT)
send_clc_confirim
tcp_abort();

sk.sk_state = SMC_ACTIVE
smc_close_active
switch(sk->sk_state) {

case SMC_ACTIVE:
smc_close_final()
// then wait peer closed

Unfortunately, tcp_abort() may discard CLC CONFIRM messages that are
still in the tcp send buffer, in which case our connection token cannot
be delivered to the server side, which means that we cannot get a
passive close message at all. Therefore, it is impossible for the to be
disconnected at all.

This patch tries a very simple way to avoid this issue, once the state
has changed to SMC_ACTIVE after tcp_abort(), we can actively abort the
smc connection, considering that the state is SMC_INIT before
tcp_abort(), abandoning the complete disconnection process should not
cause too much problem.

In fact, this problem may exist as long as the CLC CONFIRM message is
not received by the server. Whether a timer should be added after
smc_close_final() needs to be discussed in the future. But even so, this
patch provides a faster release for connection in above case, it should
also be valuable.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "net/smc/af_smc.c"
    ],
    "versions": [
      {
        "version": "39f41f367b08",
        "lessThan": "2e8d465b83db",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "39f41f367b08",
        "lessThan": "80895b6f9154",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "39f41f367b08",
        "lessThan": "e98d46ccfa84",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "39f41f367b08",
        "lessThan": "9f1c50cf3916",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "net/smc/af_smc.c"
    ],
    "versions": [
      {
        "version": "5.3",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "5.3",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.104",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.27",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.16.13",
        "lessThanOrEqual": "5.16.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.17",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

EPSS

0

Percentile

5.1%