mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[HDAUDBUS] Prevent overflow of the AudioGroups array. CORE-14153 CORE-15465
This protects against crashing in case of faulty/malicious hardware, but also works around a bug in HDA_SendVerbs that causes it to return invalid data, thereby suggesting more groups than are actually present.
This commit is contained in:
parent
8423d8b7e1
commit
1f76fb738a
2 changed files with 8 additions and 0 deletions
|
@ -222,6 +222,11 @@ HDA_InitCodec(
|
|||
DPRINT1("NodeId %u GroupType %x\n", NodeId, GroupType);
|
||||
|
||||
if ((GroupType & FUNCTION_GROUP_NODETYPE_MASK) == FUNCTION_GROUP_NODETYPE_AUDIO) {
|
||||
if (Entry->AudioGroupCount >= HDA_MAX_AUDIO_GROUPS)
|
||||
{
|
||||
DPRINT1("Too many audio groups in node %u. Skipping.\n", NodeId);
|
||||
break;
|
||||
}
|
||||
|
||||
AudioGroup = (PHDA_CODEC_AUDIO_GROUP)AllocateItem(NonPagedPool, sizeof(HDA_CODEC_AUDIO_GROUP));
|
||||
if (!AudioGroup)
|
||||
|
@ -682,6 +687,7 @@ HDA_FDORemoveDevice(
|
|||
continue;
|
||||
}
|
||||
|
||||
ASSERT(CodecEntry->AudioGroupCount <= HDA_MAX_AUDIO_GROUPS);
|
||||
for (AFGIndex = 0; AFGIndex < CodecEntry->AudioGroupCount; AFGIndex++)
|
||||
{
|
||||
ChildPDO = CodecEntry->AudioGroups[AFGIndex]->ChildPDO;
|
||||
|
@ -743,6 +749,7 @@ HDA_FDOQueryBusRelations(
|
|||
continue;
|
||||
|
||||
Codec = DeviceExtension->Codecs[CodecIndex];
|
||||
ASSERT(Codec->AudioGroupCount <= HDA_MAX_AUDIO_GROUPS);
|
||||
for (AFGIndex = 0; AFGIndex < Codec->AudioGroupCount; AFGIndex++)
|
||||
{
|
||||
DeviceRelations->Objects[DeviceRelations->Count] = Codec->AudioGroups[AFGIndex]->ChildPDO;
|
||||
|
|
|
@ -63,6 +63,7 @@ HDA_FdoPnp(
|
|||
{
|
||||
CodecEntry = FDODeviceExtension->Codecs[CodecIndex];
|
||||
|
||||
ASSERT(CodecEntry->AudioGroupCount <= HDA_MAX_AUDIO_GROUPS);
|
||||
for (AFGIndex = 0; AFGIndex < CodecEntry->AudioGroupCount; AFGIndex++)
|
||||
{
|
||||
ChildDeviceExtension = static_cast<PHDA_PDO_DEVICE_EXTENSION>(CodecEntry->AudioGroups[AFGIndex]->ChildPDO->DeviceExtension);
|
||||
|
|
Loading…
Reference in a new issue