CVE-2026-53315
Beschrijving NL
In de Linux kernel is de volgende kwetsbaarheid verholpen:
drm/amd/ras: Fix NULL deref in ras_core_get_utc_second_timestamp()
ras_core_get_utc_second_timestamp() haalt de huidige UTC-tijdstempel op
(in seconden sinds het Unix-tijdperk) via een platformspecifiek RAS-systeem
terugbellen en wordt gebruikt voor het TIMESTEMPELEN van RAS-foutgebeurtenissen. De functie controleert ras_core in de voorwaardelijke verklaring voordat ze
de sys_fn callback. Wanneer de aandoening echter faalt, zal de functie
drukt een foutmelding af met ras_core->dev. Als ras_core NULL is, kan dit leiden tot een potentiële NULL POINTER
dereferentie bij het openen van ras_core->dev. Voeg een vroege NULCONTROLE toe voor ras_core aan het begin van de functie
en retourneer 0 wanneer de aanwijzer niet geldig is. Dit voorkomt de
dereferentie en maakt de stuurstroom overzichtelijker.
Origineel (Engels) tonen
In the Linux kernel, the following vulnerability has been resolved:
drm/amd/ras: Fix NULL deref in ras_core_get_utc_second_timestamp()
ras_core_get_utc_second_timestamp() retrieves the current UTC timestamp
(in seconds since the Unix epoch) through a platform-specific RAS system
callback and is used for timestamping RAS error events.
The function checks ras_core in the conditional statement before calling
the sys_fn callback. However, when the condition fails, the function
prints an error message using ras_core->dev.
If ras_core is NULL, this can lead to a potential NULL pointer
dereference when accessing ras_core->dev.
Add an early NULL check for ras_core at the beginning of the function
and return 0 when the pointer is not valid. This prevents the
dereference and makes the control flow clearer.