Lucene search

K
cvelistLinuxCVELIST:CVE-2024-35898
HistoryMay 19, 2024 - 8:34 a.m.

CVE-2024-35898 netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()

2024-05-1908:34:52
Linux
www.cve.org
3
netfilter
nf_tables
data-race
linux kernel
vulnerability
list_for_each_entry_rcu
rcu_read_lock

AI Score

6.4

Confidence

Low

EPSS

0

Percentile

13.0%

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

netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()

nft_unregister_flowtable_type() within nf_flow_inet_module_exit() can
concurrent with __nft_flowtable_type_get() within nf_tables_newflowtable().
And thhere is not any protection when iterate over nf_tables_flowtables
list in __nft_flowtable_type_get(). Therefore, there is pertential
data-race of nf_tables_flowtables list entry.

Use list_for_each_entry_rcu() to iterate over nf_tables_flowtables list
in __nft_flowtable_type_get(), and use rcu_read_lock() in the caller
nft_flowtable_type_get() to protect the entire type query process.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "net/netfilter/nf_tables_api.c"
    ],
    "versions": [
      {
        "version": "3b49e2e94e6e",
        "lessThan": "69d1fe14a680",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "a347bc8e6251",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "940d41caa71f",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "2485bcfe05ee",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "9b5b7708ec2b",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "8b891153b2e4",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "e684b1674fd1",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "3b49e2e94e6e",
        "lessThan": "24225011d81b",
        "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/netfilter/nf_tables_api.c"
    ],
    "versions": [
      {
        "version": "4.16",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "4.16",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "4.19.312",
        "lessThanOrEqual": "4.19.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.4.274",
        "lessThanOrEqual": "5.4.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.215",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.154",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.85",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.26",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.8.5",
        "lessThanOrEqual": "6.8.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.9",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

AI Score

6.4

Confidence

Low

EPSS

0

Percentile

13.0%