Answer in brief
CVE-2026-74575 records a Unknown severity vulnerability in thunderbolt: Prevent XDomain delayed work use-after-free on disconnect. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=559c1e1e013437bf190469efbcbd8bc803285853 <91b40862a02000f490b63f1d315be3ee31e83871 || >=559c1e1e013437bf190469efbcbd8bc803285853 <33c0ee18cf8665c974b00f4e0ba769fbc07efe10 || >=559c1e1e013437bf190469efbcbd8bc803285853 <54a62153c765cd24239cde1f2633f2a2fd005368 || >=559c1e1e013437bf190469efbcbd8bc803285853 <2aa2cde2cc79a79d8ea4a15be9f4a67fc528ae91 || >=559c1e1e013437bf190469efbcbd8bc803285853 <2c5d2d3c3f70cde2565d7b279b544893a2035842 | 91b40862a02000f490b63f1d315be3ee31e83871, 33c0ee18cf8665c974b00f4e0ba769fbc07efe10, 54a62153c765cd24239cde1f2633f2a2fd005368, 2aa2cde2cc79a79d8ea4a15be9f4a67fc528ae91, 2c5d2d3c3f70cde2565d7b279b544893a2035842 |
| Linux/Linuxgeneric | 5.2 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: thunderbolt: Prevent XDomain delayed work use-after-free on disconnect tb_xdp_handle_request() runs on system_wq and queues xd->state_work via queue_delayed_work() in three request handlers: PROPERTIES_CHANGED_REQUEST, UUID_REQUEST (via start_handshake), and LINK_STATE_CHANGE_REQUEST. Similarly, update_xdomain() queues xd->properties_changed_work when local properties change. Concurrently, tb_xdomain_remove() calls stop_handshake() which does cancel_delayed_work_sync() on both delayed works. Later, tb_xdomain_unregister() calls device_unregister() which eventually frees the xdomain. Since commit 559c1e1e0134 ("thunderbolt: Run tb_xdp_handle_request() in system workqueue") moved the request handler off tb->wq, the handler and the remove path are no longer serialized. If queue_delayed_work() executes after cancel_delayed_work_sync() but before the xdomain is freed, the delayed work fires on a freed object. Add xd->removing that tb_xdomain_remove() sets under xd->lock before calling stop_handshake(). Each external queue site holds the same lock and checks removing before calling queue_delayed_work(). This provides the mutual exclusion needed: either the queue site acquires the lock first and queues work that the subsequent cancel will see, or the remove path acquires the lock first and the queue site observes removing == true and skips the queue.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-74575 records a Unknown severity vulnerability in thunderbolt: Prevent XDomain delayed work use-after-free on disconnect. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=559c1e1e013437bf190469efbcbd8bc803285853 <91b40862a02000f490b63f1d315be3ee31e83871 || >=559c1e1e013437bf190469efbcbd8bc803285853 <33c0ee18cf8665c974b00f4e0ba769fbc07efe10 || >=559c1e1e013437bf190469efbcbd8bc803285853 <54a62153c765cd24239cde1f2633f2a2fd005368 || >=559c1e1e013437bf190469efbcbd8bc803285853 <2aa2cde2cc79a79d8ea4a15be9f4a67fc528ae91 || >=559c1e1e013437bf190469efbcbd8bc803285853 <2c5d2d3c3f70cde2565d7b279b544893a2035842 | 91b40862a02000f490b63f1d315be3ee31e83871, 33c0ee18cf8665c974b00f4e0ba769fbc07efe10, 54a62153c765cd24239cde1f2633f2a2fd005368, 2aa2cde2cc79a79d8ea4a15be9f4a67fc528ae91, 2c5d2d3c3f70cde2565d7b279b544893a2035842 |
| Linux/Linuxgeneric | 5.2 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: thunderbolt: Prevent XDomain delayed work use-after-free on disconnect tb_xdp_handle_request() runs on system_wq and queues xd->state_work via queue_delayed_work() in three request handlers: PROPERTIES_CHANGED_REQUEST, UUID_REQUEST (via start_handshake), and LINK_STATE_CHANGE_REQUEST. Similarly, update_xdomain() queues xd->properties_changed_work when local properties change. Concurrently, tb_xdomain_remove() calls stop_handshake() which does cancel_delayed_work_sync() on both delayed works. Later, tb_xdomain_unregister() calls device_unregister() which eventually frees the xdomain. Since commit 559c1e1e0134 ("thunderbolt: Run tb_xdp_handle_request() in system workqueue") moved the request handler off tb->wq, the handler and the remove path are no longer serialized. If queue_delayed_work() executes after cancel_delayed_work_sync() but before the xdomain is freed, the delayed work fires on a freed object. Add xd->removing that tb_xdomain_remove() sets under xd->lock before calling stop_handshake(). Each external queue site holds the same lock and checks removing before calling queue_delayed_work(). This provides the mutual exclusion needed: either the queue site acquires the lock first and queues work that the subsequent cancel will see, or the remove path acquires the lock first and the queue site observes removing == true and skips the queue.
Quoted source text, attributed separately from HOL analysis.