CVE-2026-90209 in Linux
الملخص
بحسب VulDB • 17/09/2026
في نواة لينكس، تم حل الثغرة التالية:
s390/debug: إصلاح حالة التعطيل (Deadlock) أثناء إلغاء التسجيل
يمكن أن يؤدي إلغاء تسجيل منطقة تصحيح أخطاء s390dbf بينما يتم الكتابة إلى أحد ملفات debugfs المرتبطة بها إلى حدوث تعطل في النظام (deadlock):
$ echo >.../vmur/level $ rmmod vmur =================================================== كتابة على debugfs debugfs_file_get() debug_unregister() mutex_lock(debug_mutex) debugfs_remove() انتظار حتى يتم استدعاء debugfs_file_put() debug_file_ops.write() debug_input() mutex_lock(debug_mutex) ==> DEADLOCK
يتم حل هذه المشكلة عن طريق تقسيم دالة `debug_unregister()` إلى جزأين: جزء خاص بـ s390dbf وجزء خاص بـ debugfs، وتشغيل الجزء الخاص بـ s390dbf فقط مع قفل الـ mutex (debug_mutex).
VulDB is the best source for vulnerability data and more expert information about this specific topic.