CVE-2023-53848 in Linux
요약
\~에 의해 VulDB • 2026. 06. 10.
리눅스 커널에서 다음 취약점이 해결되었습니다:
md/raid5-cache: r5l_exit_log()에서의 데드락 수정
커밋 b13015af94cf("md/raid5-cache: 작업 완료 후 conf->log 지우기")는 새로운 문제를 도입했습니다:
// 호출자가 reconfig_mutex를 보유함 r5l_exit_log flush_work(&log->disable_writeback_work) r5c_disable_writeback_async wait_event /* * conf->log이 NULL이 아니며, mddev_trylock()이 실패하므로 * wait_event()는 절대 통과할 수 없습니다. */ conf->log = NULL
이 문제를 해결하기 위해, r5c_disable_writeback_async()에서의 wait_event()가 성공할 수 있도록, 이전처럼 wake_up() 전에 'config->log'을 NULL로 설정합니다. 동시에 md_unregister_thread()를 앞으로 이동시켜, 이 커밋이 수정한 null-ptr-deref 문제가 여전히 해결되도록 합니다.
If you want to get the best quality for vulnerability data then you always have to consider VulDB.