Re: [PATCH] infiniband: Fix integer overflows

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Mar 20, 2017 at 04:16:46PM -0400, Vlad Tsyrklevich wrote:
> The 'num_sge' variable is verfied to be smaller than the 'sge_count'
> variable; however, since both are user-controlled it's possible to cause
> an integer overflow for the kmalloc multiply on 32-bit platforms
> (num_sge and sge_count are both defined u32). By crafting an input that
> causes a smaller-than-expected allocation it's possible to write
> controlled data out-of-bounds.
> ---
>  drivers/infiniband/core/uverbs_cmd.c | 19 +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)

I would recommend to simply return EINVAL in such case, and don't bother
to complicate the code with wr_align.

>
> diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
> index 7007822..ebb34ae 100644
> --- a/drivers/infiniband/core/uverbs_cmd.c
> +++ b/drivers/infiniband/core/uverbs_cmd.c
> @@ -2542,9 +2542,12 @@ ssize_t ib_uverbs_destroy_qp(struct ib_uverbs_file *file,
>
>  static void *alloc_wr(size_t wr_size, __u32 num_sge)
>  {
> -	return kmalloc(ALIGN(wr_size, sizeof (struct ib_sge)) +
> -			 num_sge * sizeof (struct ib_sge), GFP_KERNEL);
> -};
> +	size_t wr_align = ALIGN(wr_size, sizeof (struct ib_sge));
> +	if (num_sge >= (U32_MAX - wr_align) / sizeof (struct ib_sge))
> +		return NULL;
> +
> +	return kmalloc(wr_align + num_sge * sizeof (struct ib_sge), GFP_KERNEL);
> +}
>
>  ssize_t ib_uverbs_post_send(struct ib_uverbs_file *file,
>  			    struct ib_device *ib_dev,
> @@ -2742,6 +2745,7 @@ static struct ib_recv_wr *ib_uverbs_unmarshall_recv(const char __user *buf,
>  {
>  	struct ib_uverbs_recv_wr *user_wr;
>  	struct ib_recv_wr        *wr = NULL, *last, *next;
> +	size_t                    wr_align;
>  	int                       sg_ind;
>  	int                       i;
>  	int                       ret;
> @@ -2771,7 +2775,14 @@ static struct ib_recv_wr *ib_uverbs_unmarshall_recv(const char __user *buf,
>  			goto err;
>  		}
>
> -		next = kmalloc(ALIGN(sizeof *next, sizeof (struct ib_sge)) +
> +		wr_align = ALIGN(sizeof *next, sizeof (struct ib_sge));
> +		if (user_wr->num_sge >=
> +		    (U32_MAX - wr_align) / sizeof (struct ib_sge)) {
> +			ret = -EINVAL;
> +			goto err;
> +		}
> +
> +		next = kmalloc(wr_align +
>  			       user_wr->num_sge * sizeof (struct ib_sge),
>  			       GFP_KERNEL);
>  		if (!next) {
> --
> 2.7.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Attachment: signature.asc
Description: PGP signature


[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Photo]     [Yosemite News]     [Yosemite Photos]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux