diff mbox series

IB/iser: Fix some error handling in iser_fast_reg_fmr()

Message ID 20190220054041.GB25196@kadam (mailing list archive)
State Changes Requested
Headers show
Series IB/iser: Fix some error handling in iser_fast_reg_fmr() | expand

Commit Message

Dan Carpenter Feb. 20, 2019, 5:40 a.m. UTC
The ib_sg_to_pages() function can return negative error codes.  The
problem with the error handling is that mem->dma_nents is a u32 so
the comparison is type promoted to unsigned int.  A negative error code
thus becomes a large positive value and is treated as valid.

Fixes: 57b26497fabe ("IB/iser: Pass the correct number of entries for dma mapped SGL ")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/infiniband/ulp/iser/iser_memory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sagi Grimberg Feb. 23, 2019, 2:38 a.m. UTC | #1
Thanks Dan

Acked-by: Sagi Grimberg <sagi@grimberg.me>
Max Gurtovoy Feb. 24, 2019, 2:08 p.m. UTC | #2
On 2/20/2019 7:40 AM, Dan Carpenter wrote:
> The ib_sg_to_pages() function can return negative error codes.  The
> problem with the error handling is that mem->dma_nents is a u32 so
> the comparison is type promoted to unsigned int.  A negative error code
> thus becomes a large positive value and is treated as valid.
>
> Fixes: 57b26497fabe ("IB/iser: Pass the correct number of entries for dma mapped SGL ")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>   drivers/infiniband/ulp/iser/iser_memory.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/ulp/iser/iser_memory.c b/drivers/infiniband/ulp/iser/iser_memory.c
> index 2ba70729d7b0..04a9b8f118df 100644
> --- a/drivers/infiniband/ulp/iser/iser_memory.c
> +++ b/drivers/infiniband/ulp/iser/iser_memory.c
> @@ -240,7 +240,7 @@ int iser_fast_reg_fmr(struct iscsi_iser_task *iser_task,
>   	page_vec->fake_mr.page_size = SIZE_4K;
>   	plen = ib_sg_to_pages(&page_vec->fake_mr, mem->sg,
>   			      mem->dma_nents, NULL, iser_set_page);
> -	if (unlikely(plen < mem->dma_nents)) {
> +	if (plen < 0 || plen < mem->dma_nents) {
>   		iser_err("page vec too short to hold this SG\n");
>   		iser_data_buf_dump(mem, device->ib_device);
>   		iser_dump_page_vec(page_vec);

Was the "unlikely" removed in purpose ?

I'm ok with that since Sagi has patches that will remove FMR usage in iSER.

but the below fix is the correct one for future code as well 
(ib_dma_map_sg returns int and not unsigned int):

diff --git a/drivers/infiniband/ulp/iser/iscsi_iser.h 
b/drivers/infiniband/ulp/iser/iscsi_iser.h
index 0bf8512..def8cfe 100644
--- a/drivers/infiniband/ulp/iser/iscsi_iser.h
+++ b/drivers/infiniband/ulp/iser/iscsi_iser.h
@@ -205,7 +205,7 @@ struct iser_data_buf {
     struct scatterlist *sg;
     int                size;
     unsigned long      data_len;
-   unsigned int       dma_nents;
+   int                dma_nents;
  };


thoughts ?
Sagi Grimberg Feb. 25, 2019, 9:27 p.m. UTC | #3
> but the below fix is the correct one for future code as well 
> (ib_dma_map_sg returns int and not unsigned int):
> 
> diff --git a/drivers/infiniband/ulp/iser/iscsi_iser.h 
> b/drivers/infiniband/ulp/iser/iscsi_iser.h
> index 0bf8512..def8cfe 100644
> --- a/drivers/infiniband/ulp/iser/iscsi_iser.h
> +++ b/drivers/infiniband/ulp/iser/iscsi_iser.h
> @@ -205,7 +205,7 @@ struct iser_data_buf {
>      struct scatterlist *sg;
>      int                size;
>      unsigned long      data_len;
> -   unsigned int       dma_nents;
> +   int                dma_nents;
>   };
> 
> 
> thoughts ?

That's fine as well, care to send a patch?
Max Gurtovoy Feb. 26, 2019, 10:24 a.m. UTC | #4
On 2/25/2019 11:27 PM, Sagi Grimberg wrote:
>
>> but the below fix is the correct one for future code as well 
>> (ib_dma_map_sg returns int and not unsigned int):
>>
>> diff --git a/drivers/infiniband/ulp/iser/iscsi_iser.h 
>> b/drivers/infiniband/ulp/iser/iscsi_iser.h
>> index 0bf8512..def8cfe 100644
>> --- a/drivers/infiniband/ulp/iser/iscsi_iser.h
>> +++ b/drivers/infiniband/ulp/iser/iscsi_iser.h
>> @@ -205,7 +205,7 @@ struct iser_data_buf {
>>      struct scatterlist *sg;
>>      int                size;
>>      unsigned long      data_len;
>> -   unsigned int       dma_nents;
>> +   int                dma_nents;
>>   };
>>
>>
>> thoughts ?
>
> That's fine as well, care to send a patch?


Done, please see it in the mailing list.
diff mbox series

Patch

diff --git a/drivers/infiniband/ulp/iser/iser_memory.c b/drivers/infiniband/ulp/iser/iser_memory.c
index 2ba70729d7b0..04a9b8f118df 100644
--- a/drivers/infiniband/ulp/iser/iser_memory.c
+++ b/drivers/infiniband/ulp/iser/iser_memory.c
@@ -240,7 +240,7 @@  int iser_fast_reg_fmr(struct iscsi_iser_task *iser_task,
 	page_vec->fake_mr.page_size = SIZE_4K;
 	plen = ib_sg_to_pages(&page_vec->fake_mr, mem->sg,
 			      mem->dma_nents, NULL, iser_set_page);
-	if (unlikely(plen < mem->dma_nents)) {
+	if (plen < 0 || plen < mem->dma_nents) {
 		iser_err("page vec too short to hold this SG\n");
 		iser_data_buf_dump(mem, device->ib_device);
 		iser_dump_page_vec(page_vec);