Commit bd1f64df authored by Ville Syrjälä's avatar Ville Syrjälä

drm/edid: Clarify validate_displayid()

Throw out the magic '5' from validate_displayid() and replace with
the actual thing we mean sizeof(header)+checksum. Also rewrite the
checksum loop to be less hard to parse for mere mortals.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200313162054.16009-9-ville.syrjala@linux.intel.comReviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 5f706b4a
...@@ -5097,7 +5097,7 @@ u32 drm_add_display_info(struct drm_connector *connector, const struct edid *edi ...@@ -5097,7 +5097,7 @@ u32 drm_add_display_info(struct drm_connector *connector, const struct edid *edi
static int validate_displayid(u8 *displayid, int length, int idx) static int validate_displayid(u8 *displayid, int length, int idx)
{ {
int i; int i, dispid_length;
u8 csum = 0; u8 csum = 0;
struct displayid_hdr *base; struct displayid_hdr *base;
...@@ -5106,15 +5106,18 @@ static int validate_displayid(u8 *displayid, int length, int idx) ...@@ -5106,15 +5106,18 @@ static int validate_displayid(u8 *displayid, int length, int idx)
DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n", DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n",
base->rev, base->bytes, base->prod_id, base->ext_count); base->rev, base->bytes, base->prod_id, base->ext_count);
if (base->bytes + 5 > length - idx) /* +1 for DispID checksum */
dispid_length = sizeof(*base) + base->bytes + 1;
if (dispid_length > length - idx)
return -EINVAL; return -EINVAL;
for (i = idx; i <= base->bytes + 5; i++) {
csum += displayid[i]; for (i = 0; i < dispid_length; i++)
} csum += displayid[idx + i];
if (csum) { if (csum) {
DRM_NOTE("DisplayID checksum invalid, remainder is %d\n", csum); DRM_NOTE("DisplayID checksum invalid, remainder is %d\n", csum);
return -EINVAL; return -EINVAL;
} }
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment