In the Linux kernel, the following vulnerability has been resolved:
bnxt_en: Fix RSS context delete logic
We need to free the corresponding RSS context VNIC
in FW everytime an RSS context is deleted in driver.
Commit 667ac333dbb7 added a check to delete the VNIC
in FW only when netif_running() is true to help delete
RSS contexts with interface down.
Having that condition will make the driver leak VNICs
in FW whenever close() happens with active RSS contexts.
On the subsequent open(), as part of RSS context restoration,
we will end up trying to create extra VNICs for which we
did not make any reservation. FW can fail this request,
thereby making us lose active RSS contexts.
Suppose an RSS context is deleted already and we try to
process a delete request again, then the HWRM functions
will check for validity of the request and they simply
return if the resource is already freed. So, even for
delete-when-down cases, netif_running() check is not
necessary.
Remove the netif_running() condition check when deleting
an RSS context.
A resource leak vulnerability in the Linux kernel's Broadcom NetXtreme driver (bnxt_en) causes Virtual Network Interface Cards (VNICs) to remain allocated in firmware when RSS contexts are deleted with the interface down. This can lead to firmware resource exhaustion, failed RSS context restoration, and potential denial of service on systems using affected Broadcom network adapters. The vulnerability requires a kernel patch to resolve.
IMMEDIATE ACTIONS:
1. Identify systems running Linux kernel versions affected by CVE-2026-43260 using: uname -r and cross-reference with kernel release notes
2. Audit network interface restart logs to identify potential VNIC leaks: grep -i 'rss\|vnic' /var/log/kernel.log
3. Monitor firmware resource utilization on Broadcom adapters using ethtool diagnostics
PATCHING GUIDANCE:
1. Apply the latest Linux kernel security patch that removes the netif_running() condition check in bnxt_en RSS context deletion logic
2. Test patches in non-production environment first, particularly for systems with active RSS contexts
3. Schedule kernel updates during maintenance windows to avoid service disruption
4. Verify RSS context functionality post-patch using: ethtool -x <interface>
COMPENSATING CONTROLS (if immediate patching not possible):
1. Minimize interface down/up cycles by avoiding unnecessary network restarts
2. Implement monitoring for VNIC resource exhaustion alerts from network adapters
3. Implement automated interface state management to prevent cascading failures
4. Monitor RSS context creation failures in application logs
DETECTION RULES:
1. Alert on repeated 'RSS context creation failed' messages in kernel logs
2. Monitor for HWRM firmware command failures related to VNIC operations
3. Track interface state changes and correlate with RSS context loss events
4. Baseline and alert on firmware resource utilization anomalies
الإجراءات الفورية:
1. تحديد الأنظمة التي تقوم بتشغيل إصدارات نواة Linux المتأثرة باستخدام: uname -r والتحقق المرجعي مع ملاحظات إصدار النواة
2. تدقيق سجلات إعادة تشغيل واجهة الشبكة لتحديد تسرب VNICs المحتمل: grep -i 'rss\|vnic' /var/log/kernel.log
3. مراقبة استخدام موارد البرنامج الثابت على محولات Broadcom باستخدام تشخيصات ethtool
إرشادات التصحيح:
1. تطبيق أحدث تصحيح أمان نواة Linux الذي يزيل فحص شرط netif_running() في منطق حذف سياق RSS في bnxt_en
2. اختبار التصحيحات في بيئة غير الإنتاج أولاً، خاصة للأنظمة ذات سياقات RSS النشطة
3. جدولة تحديثات النواة خلال نوافذ الصيانة لتجنب انقطاع الخدمة
4. التحقق من وظيفة سياق RSS بعد التصحيح باستخدام: ethtool -x <interface>
الضوابط البديلة (إذا لم يكن التصحيح الفوري ممكناً):
1. تقليل دورات توقف/تشغيل الواجهة بتجنب إعادة تشغيل الشبكة غير الضرورية
2. تنفيذ مراقبة لتنبيهات استنزاف موارد VNIC من محولات الشبكة
3. تنفيذ إدارة حالة واجهة آلية لمنع الأعطال المتسلسلة
4. مراقبة فشل إنشاء سياق RSS في سجلات التطبيق
قواعد الكشف:
1. تنبيه على رسائل 'فشل إنشاء سياق RSS' المتكررة في سجلات النواة
2. مراقبة فشل أوامر البرنامج الثابت HWRM المتعلقة بعمليات VNIC
3. تتبع تغييرات حالة الواجهة والربط بأحداث فقدان سياق RSS
4. خط الأساس والتنبيه على شذوذ استخدام موارد البرنامج الثابت