The function ctl_write_buffer incorrectly set a flag which resulted in a kernel Use-After-Free when a command finished processing.
Malicious software running in a guest VM that exposes virtio_scsi can exploit the vulnerabilities to achieve code execution on the host in the bhyve userspace process, which typically runs as root. Note that bhyve runs in a Capsicum sandbox, so malicious code is constrained by the capabilities available to the bhyve process. A malicious iSCSI initiator could achieve remote code execution on the iSCSI target host.
Referencing memory after it has been freed can cause a program to crash, use unexpected values, or execute code.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Freebsd | Freebsd | 13.0 (including) | 13.3 (excluding) |
Freebsd | Freebsd | 13.3 (including) | 13.3 (including) |
Freebsd | Freebsd | 13.3-p1 (including) | 13.3-p1 (including) |
Freebsd | Freebsd | 13.3-p2 (including) | 13.3-p2 (including) |
Freebsd | Freebsd | 13.3-p3 (including) | 13.3-p3 (including) |
Freebsd | Freebsd | 13.3-p4 (including) | 13.3-p4 (including) |
Freebsd | Freebsd | 13.3-p5 (including) | 13.3-p5 (including) |
Freebsd | Freebsd | 13.4-beta3 (including) | 13.4-beta3 (including) |
Freebsd | Freebsd | 14.0 (including) | 14.0 (including) |
Freebsd | Freebsd | 14.0-beta5 (including) | 14.0-beta5 (including) |
Freebsd | Freebsd | 14.0-p1 (including) | 14.0-p1 (including) |
Freebsd | Freebsd | 14.0-p2 (including) | 14.0-p2 (including) |
Freebsd | Freebsd | 14.0-p3 (including) | 14.0-p3 (including) |
Freebsd | Freebsd | 14.0-p4 (including) | 14.0-p4 (including) |
Freebsd | Freebsd | 14.0-p5 (including) | 14.0-p5 (including) |
Freebsd | Freebsd | 14.0-p6 (including) | 14.0-p6 (including) |
Freebsd | Freebsd | 14.0-p7 (including) | 14.0-p7 (including) |
Freebsd | Freebsd | 14.0-p8 (including) | 14.0-p8 (including) |
Freebsd | Freebsd | 14.0-p9 (including) | 14.0-p9 (including) |
Freebsd | Freebsd | 14.0-rc3 (including) | 14.0-rc3 (including) |
Freebsd | Freebsd | 14.0-rc4-p1 (including) | 14.0-rc4-p1 (including) |
Freebsd | Freebsd | 14.1 (including) | 14.1 (including) |
Freebsd | Freebsd | 14.1-p1 (including) | 14.1-p1 (including) |
Freebsd | Freebsd | 14.1-p2 (including) | 14.1-p2 (including) |
Freebsd | Freebsd | 14.1-p3 (including) | 14.1-p3 (including) |
The use of previously-freed memory can have any number of adverse consequences, ranging from the corruption of valid data to the execution of arbitrary code, depending on the instantiation and timing of the flaw. The simplest way data corruption may occur involves the system’s reuse of the freed memory. Use-after-free errors have two common and sometimes overlapping causes:
In this scenario, the memory in question is allocated to another pointer validly at some point after it has been freed. The original pointer to the freed memory is used again and points to somewhere within the new allocation. As the data is changed, it corrupts the validly used memory; this induces undefined behavior in the process. If the newly allocated data happens to hold a class, in C++ for example, various function pointers may be scattered within the heap data. If one of these function pointers is overwritten with an address to valid shellcode, execution of arbitrary code can be achieved.