{"cve":{"cve_id":"CVE-2026-53145","is_kev":false,"kev_date_added":null,"kev_vendor_project":null,"kev_product":null,"kev_vulnerability_name":null,"kev_short_description":null,"kev_required_action":null,"kev_due_date":null,"kev_known_ransomware":null,"kev_notes":null,"kev_cwes":null,"epss_score":null,"epss_percentile":null,"epss_as_of":null,"description":"In the Linux kernel, the following vulnerability has been resolved:\n\ndrm/gem: Try to fix change_handle ioctl, attempt 4\n\n[airlied: just added some comments on how to reenable]\nOn-list because the cat is out of the bag and we're clearly not good\nenough to figure this out in private. The story thus far:\n\n5e28b7b94408 (\"drm: Set old handle to NULL before prime swap in\nchange_handle\") tried to fix a race condition between the gem_close and\ngem_change_handle ioctls, but got a few things wrong:\n\n- There's a confusion with the local variable handle, which is actually\n  the new handle, and so the two-stage trick was actually applied to the\n  wrong idr slot. 7164d78559b0 (\"drm/gem: fix race between\n  change_handle and handle_delete\") tried to fix that by adding yet\n  another code block, but forgot to add the error handling. Which meant\n  we now have two paths, both kinda wrong.\n\n- dc366607c41c (\"drm: Replace old pointer to new idr\") tried to apply\n  another fix, but inconsistently, again because of the handle confusion\n  - this would be the right fix (kinda, somewhat, it's a mess) if we'd\n  do the two-stage approach for the new handle. Except that wasn't the\n  intent of the original fix.\n\nWe also didn't have an igt merged for the original ioctl, which is a big\nno-go. This was attempted to address off-list in the original bugfix,\nand amd QA people claimed the bug was fixed now. Very clearly that's not\nthe case. Here's my attempt to sort this out:\n\n- Rename the local variable to new_handle, the old aliasing with\n  args->handle is just too dangerously confusing.\n\n- Merge the gem obj lookup with the two-stage idr_replace so that we\n  avoid getting ourselves confused there.\n\n- This means we don't have a surplus temporary reference anymore, only\n  an inherited from the idr. A concurrent gem_close on the new_handle\n  could steal that. Fix that with the same two-stage approach\n  create_tail uses. This is a bit overkill as documented in the comment,\n  but I also don't trust my ability to understand this all correctly, so\n  go with the established pattern we have from other ioctls instead for\n  maximum paranoia.\n\n- Adjust error paths. I've tried to make the error and success paths\n  common, because they are identical except for which handle is removed\n  and on which we call idr_replace to (re)install the object again. But\n  that made things messier to read, so I've left it at the more verbose\n  version, which unfortunately hides the symmetry in the entire code\n  flow a bit.\n\n- While at it, also replace the 7 space indent with 1 tab.\n\nAnd finally, because I flat out don't trust my abilities here at all\nanymore:\n\n- Disable the ioctl until we have the igt situation and everything else\n  sorted out on-list and with full consensus.\n\nv2:\n\nSashiko noticed that I didn't handle the error path for idr_replace\ncorrectly, it must be checked with IS_ERR_OR_NULL like in\ngem_handle_delete. So yeah, definitely should just the existing paths\n1:1 because this is endless amounts of tricky.\n\nAlso add the Fixes: line for the original ioctl, I forgot that too.","published_at":"2026-06-25T08:38:32.228000Z","last_modified_at":null,"cvss_v3_score":7.8,"cvss_v3_vector":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H","cvss_v3_severity":"HIGH","cvss_v4_score":null,"cvss_v4_vector":null,"cvss_v4_severity":null,"ssvc_decision":null,"ssvc_exploitation":null,"ssvc_automatable":null,"ssvc_technical_impact":null,"cwes":null,"nvd_references":["https://git.kernel.org/stable/c/c0639ede2f24ac224b2079cd35ecd5fd8ad4e3cd","https://git.kernel.org/stable/c/1d9b93df7fc768228906e24220591ec1cddad391","https://git.kernel.org/stable/c/1a4f03d22fb655e5f192244fb2c87d8066fcfca2"],"vuln_status":null,"trending_score":null,"is_trending":false,"has_trended":false,"trended_number_one":false,"trending_peak_score":null,"trending_peak_rank":null,"started_trending_at":null,"trended_number_one_at":null,"summary_generated":null,"summary_generated_at":null,"summary_model":null,"created_at":"2026-06-28T17:55:28.590503Z","updated_at":"2026-06-28T23:30:50.753831Z"},"effective_severity":"HIGH","badges":[],"impact_analysis":[],"cvss_v3_decoded":{"version":"3.1","metrics":[{"metric":"AV","name":"Attack Vector","value":"L","value_label":"Local"},{"metric":"AC","name":"Attack Complexity","value":"L","value_label":"Low"},{"metric":"PR","name":"Privileges Required","value":"L","value_label":"Low"},{"metric":"UI","name":"User Interaction","value":"N","value_label":"None"},{"metric":"S","name":"Scope","value":"U","value_label":"Unchanged"},{"metric":"C","name":"Confidentiality","value":"H","value_label":"High"},{"metric":"I","name":"Integrity","value":"H","value_label":"High"},{"metric":"A","name":"Availability","value":"H","value_label":"High"}]},"cvss_v4_decoded":{"version":null,"metrics":[]},"affected":[{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"672464dd53231509c9c771110798c56d4660e19e","version_start_inclusive":true,"version_end":"c0639ede2f24ac224b2079cd35ecd5fd8ad4e3cd","version_end_inclusive":false,"cpe23_uri":"cve5:linux:linux:672464dd53231509c9c771110798c56d4660e19e:c0639ede2f24ac224b2079cd35ecd5fd8ad4e3cd"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"61bd96d3e5472c253f9c1ab77608f0c8aaa9d025","version_start_inclusive":true,"version_end":"1d9b93df7fc768228906e24220591ec1cddad391","version_end_inclusive":false,"cpe23_uri":"cve5:linux:linux:61bd96d3e5472c253f9c1ab77608f0c8aaa9d025:1d9b93df7fc768228906e24220591ec1cddad391"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"5e28b7b94408897e41c63477aabc9e1db439bc8c","version_start_inclusive":true,"version_end":"1a4f03d22fb655e5f192244fb2c87d8066fcfca2","version_end_inclusive":false,"cpe23_uri":"cve5:linux:linux:5e28b7b94408897e41c63477aabc9e1db439bc8c:1a4f03d22fb655e5f192244fb2c87d8066fcfca2"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"318b995cffcfcaa69a234d28123a3f4ae186a9df","version_start_inclusive":true,"version_end":"318b995cffcfcaa69a234d28123a3f4ae186a9df","version_end_inclusive":true,"cpe23_uri":"cve5:linux:linux:318b995cffcfcaa69a234d28123a3f4ae186a9df:318b995cffcfcaa69a234d28123a3f4ae186a9df"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"38f12d0e10d83b66fa1466400d876a3a8da31542","version_start_inclusive":true,"version_end":"38f12d0e10d83b66fa1466400d876a3a8da31542","version_end_inclusive":true,"cpe23_uri":"cve5:linux:linux:38f12d0e10d83b66fa1466400d876a3a8da31542:38f12d0e10d83b66fa1466400d876a3a8da31542"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"0dfa42cfe4dbe114533480503934f43e33c1e83d","version_start_inclusive":true,"version_end":"0dfa42cfe4dbe114533480503934f43e33c1e83d","version_end_inclusive":true,"cpe23_uri":"cve5:linux:linux:0dfa42cfe4dbe114533480503934f43e33c1e83d:0dfa42cfe4dbe114533480503934f43e33c1e83d"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"cde2c9257cbe8463b9dcf7b1075177b72b5fd938","version_start_inclusive":true,"version_end":"cde2c9257cbe8463b9dcf7b1075177b72b5fd938","version_end_inclusive":true,"cpe23_uri":"cve5:linux:linux:cde2c9257cbe8463b9dcf7b1075177b72b5fd938:cde2c9257cbe8463b9dcf7b1075177b72b5fd938"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"6.18.32","version_start_inclusive":true,"version_end":"6.18.36","version_end_inclusive":false,"cpe23_uri":"cve5:linux:linux:6.18.32:6.18.36"},{"vendor_slug":"linux","vendor_name":"Linux","product_slug":"linux","product_name":"Linux","version_start":"7.0.9","version_start_inclusive":true,"version_end":"7.0.13","version_end_inclusive":false,"cpe23_uri":"cve5:linux:linux:7.0.9:7.0.13"}],"exploit_refs":[],"news":[],"references":[{"url":"https://git.kernel.org/stable/c/c0639ede2f24ac224b2079cd35ecd5fd8ad4e3cd","source_type":"MISC","tags":[]},{"url":"https://git.kernel.org/stable/c/1d9b93df7fc768228906e24220591ec1cddad391","source_type":"MISC","tags":[]},{"url":"https://git.kernel.org/stable/c/1a4f03d22fb655e5f192244fb2c87d8066fcfca2","source_type":"MISC","tags":[]}],"timeline":[{"type":"published","at":"2026-06-25T08:38:32.228000Z","label":"CVE published","source":null}]}