Skip to content

Commit

Permalink
Recover host enumeration from zero length descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
GuavTek committed Oct 18, 2024
1 parent 8b1e40c commit ebcd706
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/host/usbh.c
Original file line number Diff line number Diff line change
Expand Up @@ -1645,6 +1645,13 @@ static bool _parse_configuration_descriptor(uint8_t dev_addr, tusb_desc_configur
// desc_iad->bFunctionClass == desc_itf->bInterfaceClass);
}

if ( 0 == tu_desc_len(p_desc) ) {
// A zero length descriptor indicates that the wTotalLength field is wrong.
// Parsed interfaces should still be usable
TU_LOG_USBH("Encountered a zero-length descriptor after %u bytes\r\n", (uint32_t)p_desc - (uint32_t)desc_cfg);
break;
}

TU_ASSERT( TUSB_DESC_INTERFACE == tu_desc_type(p_desc) );
tusb_desc_interface_t const* desc_itf = (tusb_desc_interface_t const*) p_desc;

Expand Down
4 changes: 4 additions & 0 deletions src/tusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,10 @@ uint16_t tu_desc_get_interface_total_len(tusb_desc_interface_t const* desc_itf,
((tusb_desc_interface_t const*) p_desc)->bAlternateSetting == 0) {
break;
}
if (tu_desc_len(p_desc) == 0) {
// Escape infinite loop
break;
}

len += tu_desc_len(p_desc);
p_desc = tu_desc_next(p_desc);
Expand Down

0 comments on commit ebcd706

Please sign in to comment.