In the Linux kernel, the following vulnerability has been resolved:
sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl
rmmod sata_fsl.ko command is executed in the PPC64 GNU/Linux,
a bug is reported:The triggering of the BUG is shown in the following stack:
driver_detach device_release_driver_internal __device_release_driver drv->remove(dev) --> platform_drv_remove/platform_remove drv->remove(dev) --> sata_fsl_remove iounmap(host_priv->hcr_base); <---- unmap kfree(host_priv); <---- free devres_release_all release_nodes dr->node.release(dev, dr->data) --> ata_host_stop ap->ops->port_stop(ap) --> sata_fsl_port_stop ioread32(hcr_base + HCONTROL) <---- UAF host->ops->host_stop(host)
The iounmap(host_priv->hcr_base) and kfree(host_priv) functions should not be executed in drv->remove. These functions should be executed in host_stop after port_stop. Therefore, we move these functions to the new function sata_fsl_host_stop and bind the new function to host_stop.
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2021-47549.json"
[
{
"events": [
{
"introduced": "2.6.24"
},
{
"fixed": "4.4.294"
}
]
},
{
"events": [
{
"introduced": "4.5"
},
{
"fixed": "4.9.292"
}
]
},
{
"events": [
{
"introduced": "4.10"
},
{
"fixed": "4.14.257"
}
]
},
{
"events": [
{
"introduced": "4.15"
},
{
"fixed": "4.19.220"
}
]
},
{
"events": [
{
"introduced": "4.20"
},
{
"fixed": "5.4.164"
}
]
},
{
"events": [
{
"introduced": "5.5"
},
{
"fixed": "5.10.84"
}
]
},
{
"events": [
{
"introduced": "5.11"
},
{
"fixed": "5.15.7"
}
]
},
{
"events": [
{
"introduced": "0"
},
{
"last_affected": "5.16-rc1"
}
]
},
{
"events": [
{
"introduced": "0"
},
{
"last_affected": "5.16-rc2"
}
]
},
{
"events": [
{
"introduced": "0"
},
{
"last_affected": "5.16-rc3"
}
]
}
]