Commit 00ebf93c authored by Yaniv Gardi's avatar Yaniv Gardi Committed by Kleber Sacilotto de Souza

scsi: ufs: fix bugs related to null pointer access and array size

BugLink: https://bugs.launchpad.net/bugs/1810967

commit e3ce73d6 upstream.

In this change there are a few fixes of possible NULL pointer access and
possible access to index that exceeds array boundaries.
Signed-off-by: default avatarYaniv Gardi <ygardi@codeaurora.org>
Signed-off-by: default avatarSubhash Jadavani <subhashj@codeaurora.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: default avatarAmit Pundir <amit.pundir@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarJuerg Haefliger <juergh@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent af00ad6a
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
#define QUERY_DESC_MIN_SIZE 2 #define QUERY_DESC_MIN_SIZE 2
#define QUERY_OSF_SIZE (GENERAL_UPIU_REQUEST_SIZE - \ #define QUERY_OSF_SIZE (GENERAL_UPIU_REQUEST_SIZE - \
(sizeof(struct utp_upiu_header))) (sizeof(struct utp_upiu_header)))
#define RESPONSE_UPIU_SENSE_DATA_LENGTH 18
#define UPIU_HEADER_DWORD(byte3, byte2, byte1, byte0)\ #define UPIU_HEADER_DWORD(byte3, byte2, byte1, byte0)\
cpu_to_be32((byte3 << 24) | (byte2 << 16) |\ cpu_to_be32((byte3 << 24) | (byte2 << 16) |\
...@@ -383,7 +384,7 @@ struct utp_cmd_rsp { ...@@ -383,7 +384,7 @@ struct utp_cmd_rsp {
__be32 residual_transfer_count; __be32 residual_transfer_count;
__be32 reserved[4]; __be32 reserved[4];
__be16 sense_data_len; __be16 sense_data_len;
u8 sense_data[18]; u8 sense_data[RESPONSE_UPIU_SENSE_DATA_LENGTH];
}; };
/** /**
......
...@@ -813,10 +813,14 @@ static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp) ...@@ -813,10 +813,14 @@ static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
int len; int len;
if (lrbp->sense_buffer && if (lrbp->sense_buffer &&
ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) { ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
int len_to_copy;
len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len); len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
len_to_copy = min_t(int, RESPONSE_UPIU_SENSE_DATA_LENGTH, len);
memcpy(lrbp->sense_buffer, memcpy(lrbp->sense_buffer,
lrbp->ucd_rsp_ptr->sr.sense_data, lrbp->ucd_rsp_ptr->sr.sense_data,
min_t(int, len, SCSI_SENSE_BUFFERSIZE)); min_t(int, len_to_copy, SCSI_SENSE_BUFFERSIZE));
} }
} }
...@@ -5251,7 +5255,10 @@ EXPORT_SYMBOL(ufshcd_system_suspend); ...@@ -5251,7 +5255,10 @@ EXPORT_SYMBOL(ufshcd_system_suspend);
int ufshcd_system_resume(struct ufs_hba *hba) int ufshcd_system_resume(struct ufs_hba *hba)
{ {
if (!hba || !hba->is_powered || pm_runtime_suspended(hba->dev)) if (!hba)
return -EINVAL;
if (!hba->is_powered || pm_runtime_suspended(hba->dev))
/* /*
* Let the runtime resume take care of resuming * Let the runtime resume take care of resuming
* if runtime suspended. * if runtime suspended.
...@@ -5272,7 +5279,10 @@ EXPORT_SYMBOL(ufshcd_system_resume); ...@@ -5272,7 +5279,10 @@ EXPORT_SYMBOL(ufshcd_system_resume);
*/ */
int ufshcd_runtime_suspend(struct ufs_hba *hba) int ufshcd_runtime_suspend(struct ufs_hba *hba)
{ {
if (!hba || !hba->is_powered) if (!hba)
return -EINVAL;
if (!hba->is_powered)
return 0; return 0;
return ufshcd_suspend(hba, UFS_RUNTIME_PM); return ufshcd_suspend(hba, UFS_RUNTIME_PM);
...@@ -5302,9 +5312,12 @@ EXPORT_SYMBOL(ufshcd_runtime_suspend); ...@@ -5302,9 +5312,12 @@ EXPORT_SYMBOL(ufshcd_runtime_suspend);
*/ */
int ufshcd_runtime_resume(struct ufs_hba *hba) int ufshcd_runtime_resume(struct ufs_hba *hba)
{ {
if (!hba || !hba->is_powered) if (!hba)
return -EINVAL;
if (!hba->is_powered)
return 0; return 0;
else
return ufshcd_resume(hba, UFS_RUNTIME_PM); return ufshcd_resume(hba, UFS_RUNTIME_PM);
} }
EXPORT_SYMBOL(ufshcd_runtime_resume); EXPORT_SYMBOL(ufshcd_runtime_resume);
......
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