5.5
CVE-2021-46940
- EPSS 0.02%
 - Published 27.02.2024 19:04:05
 - Last modified 21.11.2024 06:34:58
 - Source 416baaa9-dc9f-4396-8d5f-8c081f
 - CVE-Watchlists
 - Open
 
In the Linux kernel, the following vulnerability has been resolved: tools/power turbostat: Fix offset overflow issue in index converting The idx_to_offset() function returns type int (32-bit signed), but MSR_PKG_ENERGY_STAT is u32 and would be interpreted as a negative number. The end result is that it hits the if (offset < 0) check in update_msr_sum() which prevents the timer callback from updating the stat in the background when long durations are used. The similar issue exists in offset_to_idx() and update_msr_sum(). Fix this issue by converting the 'int' to 'off_t' accordingly.
Data is provided by the National Vulnerability Database (NVD)
	Linux ≫ Linux Kernel  Version >= 5.10.0 < 5.10.36
	Linux ≫ Linux Kernel  Version >= 5.11.0 < 5.11.20
	Linux ≫ Linux Kernel  Version >= 5.12.0 < 5.12.3
| Type | Source | Score | Percentile | 
|---|---|---|---|
| EPSS | FIRST.org | 0.02% | 0.03 | 
| Source | Base Score | Exploit Score | Impact Score | Vector string | 
|---|---|---|---|---|
| nvd@nist.gov | 5.5 | 1.8 | 3.6 | 
                 CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H  
             | 
        
CWE-190 Integer Overflow or Wraparound
The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number.