Lucene search

K
cvelistLinuxCVELIST:CVE-2021-47396
HistoryMay 21, 2024 - 3:03 p.m.

CVE-2021-47396 mac80211-hwsim: fix late beacon hrtimer handling

2024-05-2115:03:52
Linux
www.cve.org
vulnerability resolved
late beacon hrtimer
linux kernel
timer handling
simulation
tbtt alignment
hrtimer_forward_now
cve-2021-47396

6.5 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.5%

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

mac80211-hwsim: fix late beacon hrtimer handling

Thomas explained in https://lore.kernel.org/r/87mtoeb4hb.ffs@tglx
that our handling of the hrtimer here is wrong: If the timer fires
late (e.g. due to vCPU scheduling, as reported by Dmitry/syzbot)
then it tries to actually rearm the timer at the next deadline,
which might be in the past already:

1 2 3 N N+1
| | | … | |

^ intended to fire here (1)
^ next deadline here (2)
^ actually fired here

The next time it fires, it’s later, but will still try to schedule
for the next deadline (now 3), etc. until it catches up with N,
but that might take a long time, causing stalls etc.

Now, all of this is simulation, so we just have to fix it, but
note that the behaviour is wrong even per spec, since there’s no
value then in sending all those beacons unaligned - they should be
aligned to the TBTT (1, 2, 3, … in the picture), and if we’re a
bit (or a lot) late, then just resume at that point.

Therefore, change the code to use hrtimer_forward_now() which will
ensure that the next firing of the timer would be at N+1 (in the
picture), i.e. the next interval point after the current time.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/net/wireless/mac80211_hwsim.c"
    ],
    "versions": [
      {
        "version": "01e59e467ecf",
        "lessThan": "9bee85de2c81",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "01e59e467ecf",
        "lessThan": "2c204cf594df",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "01e59e467ecf",
        "lessThan": "ed2adf69e298",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "01e59e467ecf",
        "lessThan": "313bbd1990b6",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/net/wireless/mac80211_hwsim.c"
    ],
    "versions": [
      {
        "version": "3.9",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "3.9",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.4.151",
        "lessThanOrEqual": "5.4.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.71",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.14.10",
        "lessThanOrEqual": "5.14.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

6.5 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.5%

Related for CVELIST:CVE-2021-47396