From: Tyrel Datwyler Date: Fri, 12 Aug 2016 22:20:07 +0000 (-0500) Subject: scsi: fix upper bounds check of sense key in scsi_sense_key_string() X-Git-Tag: v3.16.39~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e594d5aec6d3b0965b60615317974ddb49cec9ad;p=thirdparty%2Fkernel%2Fstable.git scsi: fix upper bounds check of sense key in scsi_sense_key_string() commit a87eeb900dbb9f8202f96604d56e47e67c936b9d upstream. Commit 655ee63cf371 ("scsi constants: command, sense key + additional sense string") added a "Completed" sense string with key 0xF to snstext[], but failed to updated the upper bounds check of the sense key in scsi_sense_key_string(). Fixes: 655ee63cf371 ("[SCSI] scsi constants: command, sense key + additional sense strings") Signed-off-by: Tyrel Datwyler Reviewed-by: Bart Van Assche Signed-off-by: Martin K. Petersen [bwh: Backported to 3.16: adjust context] Signed-off-by: Ben Hutchings --- diff --git a/drivers/scsi/constants.c b/drivers/scsi/constants.c index d35a5d6c8d7c8..2cde21be80c13 100644 --- a/drivers/scsi/constants.c +++ b/drivers/scsi/constants.c @@ -1335,9 +1335,10 @@ static const char * const snstext[] = { /* Get sense key string or NULL if not available */ const char * -scsi_sense_key_string(unsigned char key) { +scsi_sense_key_string(unsigned char key) +{ #ifdef CONFIG_SCSI_CONSTANTS - if (key <= 0xE) + if (key < ARRAY_SIZE(snstext)) return snstext[key]; #endif return NULL;