CVE-2026-80857: fuse: wait for FR_FINISHED on abort_on_kill to prevent use-after-free

Published Sep 4, 2026
·
Updated

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

fuse: wait for FRFINISHED on abortonkill to prevent use-after-free

The abortonkill path in requestwaitanswer() calls fuseabortconn() and returns without waiting for FRFINISHED. If fusedevdowrite() is concurrently processing the same request (FRLOCKED set), the caller frees req->args while it is still being accessed, causing a use-after-free.

Fix this by jumping to the existing waitevent(FRFINISHED) instead of returning early. The wait will not hang because fuseabortconn() ensures all requests are ended.

Affected Software

1 affected component
Linux Linux kernel

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Compensating control

    In the FUSE abort_on_kill path, ensure the request waits for FR_FINISHED (e.g., jump to wait_event(FR_FINISHED) in request_wait_answer / before returning) so fuse_abort_conn() does not return early and trigger a use-after-free when req->args is freed while still accessed.

Event History

Sep 4, 2026
CVE Published
via MITRE·03:55 PM
Data Sourced
via MITRE·03:55 PM
Description

Frequently Asked Questions

1

Under what conditions can this race occur?

It requires the FUSE abort_on_kill path in request_wait_answer() to run while fuse_dev_do_write() is concurrently processing the same request and has set FR_LOCKED.

2

What happens when the race is triggered?

The request caller can free req->args before concurrent FUSE device write processing has finished accessing it, resulting in a use-after-free.

3

How does the fix prevent the issue?

Instead of returning immediately after fuse_abort_conn(), the corrected path waits for FR_FINISHED. fuse_abort_conn() ends outstanding requests, so this wait is not expected to hang.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203