drm/amd/powerplay: fix off-by-one upper bounds limit checks
authorColin Ian King <colin.king@canonical.com>
Thu, 1 Aug 2019 11:15:41 +0000 (12:15 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 2 Aug 2019 15:30:37 +0000 (10:30 -0500)
There are two occurrances of off-by-one upper bound checking of indexes
causing potential out-of-bounds array reads. Fix these.

Addresses-Coverity: ("Out-of-bounds read")
Fixes: cb33363d0e85 ("drm/amd/powerplay: add smu feature name support")
Fixes: 6b294793e384 ("drm/amd/powerplay: add smu message name support")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/amdgpu_smu.c

index 7414ed9..fb9d6c1 100644 (file)
@@ -38,7 +38,7 @@ static const char* __smu_message_names[] = {
 
 const char *smu_get_message_name(struct smu_context *smu, enum smu_message_type type)
 {
-       if (type < 0 || type > SMU_MSG_MAX_COUNT)
+       if (type < 0 || type >= SMU_MSG_MAX_COUNT)
                return "unknow smu message";
        return __smu_message_names[type];
 }
@@ -51,7 +51,7 @@ static const char* __smu_feature_names[] = {
 
 const char *smu_get_feature_name(struct smu_context *smu, enum smu_feature_mask feature)
 {
-       if (feature < 0 || feature > SMU_FEATURE_COUNT)
+       if (feature < 0 || feature >= SMU_FEATURE_COUNT)
                return "unknow smu feature";
        return __smu_feature_names[feature];
 }