CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's handling of sysfs discipline callbacks for s390/dasd devices, where unallocated private data can lead to a NULL pointer dereference. This flaw can cause a system panic during the dasd_generic_set_online() process, potentially impacting system stability for users of affected Linux distributions. Administrators and developers working with s390 architecture should prioritize addressing this issue to prevent unexpected system crashes.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: s390/dasd: Guard sysfs discipline callbacks against unallocated private data Several sysfs show/store handlers call a discipline callback that dereferences device->private, either directly or through the DASD_DEFINE_ATTR() macro. During dasd_generic_set_online() the discipline is assigned before check_device() allocates device->private, so an unprivileged read of one of these world-readable attributes in that window dereferences a NULL pointer and panics. Guard the dereference inside each callback that actually touches device->private.