CVE-2026-80614: net: emac: Fix NULL pointer dereference in emac_probe

Published Aug 28, 2026
·
Updated

In the Linux kernel, the following vulnerability has been resolved:

net: emac: Fix NULL pointer dereference in emacprobe

Move devmrequestirq() after devmplatformioremapresource() so that dev->emacp is mapped before the interrupt handler can fire. An early interrupt hitting emacirq() would dereference the NULL dev->emacp and crash.

Also remove redundant error message. devmplatformioremapresource() already returns an error message with deverrprobe().

Affected Software

1 affected component
Linux Kernel

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Configuration

    In the emac driver, reorder initialization so devm_platform_ioremap_resource() runs before devm_request_irq(), ensuring the interrupt handler cannot fire before dev->emacp is mapped and preventing a NULL dereference in emac_irq() / emac_probe.

    Linux kernel networking driver (net: emac) devm_request_irq() ordering relative to devm_platform_ioremap_resource() = Move devm_request_irq() after devm_platform_ioremap_resource()
  2. Compensating control

    Remove the redundant error message because devm_request_irq() already returns an error message with dev_err_probe().

Event History

Aug 28, 2026
CVE Published
via MITRE·06:48 AM
Data Sourced
via MITRE·06:48 AM
Description

Frequently Asked Questions

1

What condition is required to trigger the crash?

An interrupt must occur early enough for emac_irq() to run before dev->emacp has been mapped by devm_platform_ioremap_resource(). The interrupt handler then dereferences the NULL dev->emacp pointer and can crash the kernel.

2

Which systems are realistically exposed?

Systems using the Linux kernel EMAC driver are exposed to this initialization-time race. The provided information does not identify affected kernel versions, platforms, or configurations.

3

What change resolves the issue?

The fix maps dev->emacp with devm_platform_ioremap_resource() before registering the interrupt with devm_request_irq(). This prevents the interrupt handler from running while dev->emacp is still NULL.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203