lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 18 Apr 2012 18:09:08 +0400
From:	James Bottomley <James.Bottomley@...senPartnership.com>
To:	Paolo Bonzini <pbonzini@...hat.com>
Cc:	linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org,
	Hu Tao <hutao@...fujitsu.com>
Subject: Re: [PATCH for 3.4] virtio-scsi: fix TMF use-after-free

On Wed, 2012-04-18 at 15:46 +0200, Paolo Bonzini wrote:
> Fix a race in TMF path, where cmd may have been already freed
> by virtscsi_complete_free after waking up from the completion.

There's no may about this; the command will be freed long before the
completion waiter is awoken.  The description could be clearer.

The problem is a use after free in virtscsi_tmf because the
virtio_scsi_command is freed before the completion returns.

The fix is to make callers specifying a completion responsible for
freeing the command in all cases.

James

> Cc: James Bottomley <JBottomley@...allels.com>
> Cc: linux-scsi@...r.kernel.org
> Signed-off-by: Hu Tao <hutao@...fujitsu.com>
> Signed-off-by: Paolo Bonzini <pbonzini@...hat.com>
> ---
>  drivers/scsi/virtio_scsi.c |   24 +++++++++++++-----------
>  1 file changed, 13 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/scsi/virtio_scsi.c b/drivers/scsi/virtio_scsi.c
> index efccd72..1b38431 100644
> --- a/drivers/scsi/virtio_scsi.c
> +++ b/drivers/scsi/virtio_scsi.c
> @@ -175,7 +175,8 @@ static void virtscsi_complete_free(void *buf)
>  
>  	if (cmd->comp)
>  		complete_all(cmd->comp);
> -	mempool_free(cmd, virtscsi_cmd_pool);
> +	else
> +		mempool_free(cmd, virtscsi_cmd_pool);
>  }
>  
>  static void virtscsi_ctrl_done(struct virtqueue *vq)
> @@ -311,21 +312,22 @@ out:
>  static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd)
>  {
>  	DECLARE_COMPLETION_ONSTACK(comp);
> -	int ret;
> +	int ret = FAILED;
>  
>  	cmd->comp = &comp;
> -	ret = virtscsi_kick_cmd(vscsi, vscsi->ctrl_vq, cmd,
> -			       sizeof cmd->req.tmf, sizeof cmd->resp.tmf,
> -			       GFP_NOIO);
> -	if (ret < 0)
> -		return FAILED;
> +	if (virtscsi_kick_cmd(vscsi, vscsi->ctrl_vq, cmd,
> +			      sizeof cmd->req.tmf, sizeof cmd->resp.tmf,
> +			      GFP_NOIO) < 0)
> +		goto out;
>  
>  	wait_for_completion(&comp);
> -	if (cmd->resp.tmf.response != VIRTIO_SCSI_S_OK &&
> -	    cmd->resp.tmf.response != VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
> -		return FAILED;
> +	if (cmd->resp.tmf.response == VIRTIO_SCSI_S_OK ||
> +	    cmd->resp.tmf.response == VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
> +		ret = SUCCESS;
>  
> -	return SUCCESS;
> +out:
> +	mempool_free(cmd, virtscsi_cmd_pool);
> +	return ret;
>  }
>  
>  static int virtscsi_device_reset(struct scsi_cmnd *sc)


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ