CVE-2024-26974 - Use After Free

Severity

70%

Complexity

10%

Confidentiality

98%

In the Linux kernel, the following vulnerability has been resolved: crypto: qat - resolve race condition during AER recovery During the PCI AER system's error recovery process, the kernel driver may encounter a race condition with freeing the reset_data structure's memory. If the device restart will take more than 10 seconds the function scheduling that restart will exit due to a timeout, and the reset_data structure will be freed. However, this data structure is used for completion notification after the restart is completed, which leads to a UAF bug. This results in a KFENCE bug notice. BUG: KFENCE: use-after-free read in adf_device_reset_worker+0x38/0xa0 [intel_qat] Use-after-free read at 0x00000000bc56fddf (in kfence-#142): adf_device_reset_worker+0x38/0xa0 [intel_qat] process_one_work+0x173/0x340 To resolve this race condition, the memory associated to the container of the work_struct is freed on the worker if the timeout expired, otherwise on the function that schedules the worker. The timeout detection can be done by checking if the caller is still waiting for completion or not by using completion_done() function.

CVSS 3.1 Base Score 7. CVSS Attack Vector: local. CVSS Attack Complexity: high. CVSS Vector: (CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H).

Demo Examples

Use After Free

CWE-416

The following example demonstrates the weakness.


               
}
free(buf3R2);

Use After Free

CWE-416

The following code illustrates a use after free error:


               
}
free(ptr);
logError("operation aborted before commit", ptr);

When an error occurs, the pointer is immediately freed. However, this pointer is later incorrectly used in the logError function.

Demo Examples

Time-of-check Time-of-use (TOCTOU) Race Condition

CWE-367

The following code checks a file, then updates its contents.


               
}
updateThings();

Potentially the file could have been updated between the time of the check and the lstat, especially since the printf has latency.

Time-of-check Time-of-use (TOCTOU) Race Condition

CWE-367

The following code is from a program installed setuid root. The program performs certain file operations on behalf of non-privileged users, and uses access checks to ensure that it does not use its root privileges to perform operations that should otherwise be unavailable the current user. The program uses the access() system call to check if the person running the program has permission to access the specified file before it opens the file and performs the necessary operations.


               
}
...
fprintf(stderr,"Unable to open file %s.\n",file);

The call to access() behaves as expected, and returns 0 if the user running the program has the necessary permissions to write to the file, and -1 otherwise. However, because both access() and fopen() operate on filenames rather than on file handles, there is no guarantee that the file variable still refers to the same file on disk when it is passed to fopen() that it did when it was passed to access(). If an attacker replaces file after the call to access() with a symbolic link to a different file, the program will use its root privileges to operate on the file even if it is a file that the attacker would otherwise be unable to modify. By tricking the program into performing an operation that would otherwise be impermissible, the attacker has gained elevated privileges. This type of vulnerability is not limited to programs with root privileges. If the application is capable of performing any operation that the attacker would not otherwise be allowed perform, then it is a possible target.

Time-of-check Time-of-use (TOCTOU) Race Condition

CWE-367

This code prints the contents of a file if a user has permission.


               
}
}//resolve file if its a symbolic link
$filename = readlink($filename);
return;
return false;

This code attempts to resolve symbolic links before checking the file and printing its contents. However, an attacker may be able to change the file from a real file to a symbolic link between the calls to is_link() and file_get_contents(), allowing the reading of arbitrary files. Note that this code fails to log the attempted access (CWE-778).

Overview

First reported 9 months ago

2024-05-01 06:15:00

Last updated 2 months ago

2024-12-23 14:00:00

Affected Software

Linux Kernel

References

https://git.kernel.org/stable/c/daba62d9eeddcc5b1081be7d348ca836c83c59d7

https://git.kernel.org/stable/c/8e81cd58aee14a470891733181a47d123193ba81

https://git.kernel.org/stable/c/d03092550f526a79cf1ade7f0dfa74906f39eb71

https://git.kernel.org/stable/c/4ae5a97781ce7d6ecc9c7055396535815b64ca4f

https://git.kernel.org/stable/c/226fc408c5fcd23cc4186f05ea3a09a7a9aef2f7

https://git.kernel.org/stable/c/8a5a7611ccc7b1fba8d933a9f22a2e76859d94dc

https://git.kernel.org/stable/c/0c2cf5142bfb634c0ef0a1a69cdf37950747d0be

https://git.kernel.org/stable/c/bb279ead42263e9fb09480f02a4247b2c287d828

https://git.kernel.org/stable/c/7d42e097607c4d246d99225bf2b195b6167a210c

https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html

https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html

https://git.kernel.org/stable/c/0c2cf5142bfb634c0ef0a1a69cdf37950747d0be

Patch

https://git.kernel.org/stable/c/226fc408c5fcd23cc4186f05ea3a09a7a9aef2f7

Patch

https://git.kernel.org/stable/c/4ae5a97781ce7d6ecc9c7055396535815b64ca4f

Patch

https://git.kernel.org/stable/c/7d42e097607c4d246d99225bf2b195b6167a210c

Patch

https://git.kernel.org/stable/c/8a5a7611ccc7b1fba8d933a9f22a2e76859d94dc

Patch

https://git.kernel.org/stable/c/8e81cd58aee14a470891733181a47d123193ba81

Patch

https://git.kernel.org/stable/c/bb279ead42263e9fb09480f02a4247b2c287d828

Patch

https://git.kernel.org/stable/c/d03092550f526a79cf1ade7f0dfa74906f39eb71

Patch

https://git.kernel.org/stable/c/daba62d9eeddcc5b1081be7d348ca836c83c59d7

Patch

https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html

Mailing List, Third Party Advisory

https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html

Mailing List, Third Party Advisory

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.