All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org,
	Paul Mackerras <paulus@samba.org>,
	linuxppc-dev@lists.ozlabs.org,
	David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH] vfio powerpc: implemented IOMMU driver for VFIO
Date: Wed, 12 Dec 2012 17:59:08 +1100	[thread overview]
Message-ID: <50C82B3C.1060006@ozlabs.ru> (raw)
In-Reply-To: <1354899707.3224.86.camel@bling.home>

On 08/12/12 04:01, Alex Williamson wrote:
>> +	case VFIO_IOMMU_MAP_DMA: {
>> +		vfio_iommu_spapr_tce_dma_map param;
>> +		struct iommu_table *tbl = container->tbl;
>> +		enum dma_data_direction direction;
>> +		unsigned long locked, lock_limit;
>> +
>> +		if (WARN_ON(!tbl))
>> +			return -ENXIO;
>> +
>> +		minsz = offsetofend(vfio_iommu_spapr_tce_dma_map, size);
>> +
>> +		if (copy_from_user(&param, (void __user *)arg, minsz))
>> +			return -EFAULT;
>> +
>> +		if (param.argsz < minsz)
>> +			return -EINVAL;
>> +
>> +		if ((param.flags & VFIO_DMA_MAP_FLAG_READ) &&
>> +				(param.flags & VFIO_DMA_MAP_FLAG_WRITE))
>> +			direction = DMA_BIDIRECTIONAL;
>> +		else if (param.flags & VFIO_DMA_MAP_FLAG_READ)
>> +			direction = DMA_TO_DEVICE;
>> +		else if (param.flags & VFIO_DMA_MAP_FLAG_WRITE)
>> +			direction = DMA_FROM_DEVICE;
>> +		else
>> +			return -EINVAL;
>
> flags needs to be sanitized too.  Return EINVAL if any unknown bit is
> set or else sloppy users may make it very difficult to make use of those
> flag bits later.


It already returns -EINVAL on any bit set except READ/WRITE, no?


-- 
Alexey

WARNING: multiple messages have this Message-ID (diff)
From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Paul Mackerras <paulus@samba.org>,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	kvm@vger.kernel.org, David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH] vfio powerpc: implemented IOMMU driver for VFIO
Date: Wed, 12 Dec 2012 17:59:08 +1100	[thread overview]
Message-ID: <50C82B3C.1060006@ozlabs.ru> (raw)
In-Reply-To: <1354899707.3224.86.camel@bling.home>

On 08/12/12 04:01, Alex Williamson wrote:
>> +	case VFIO_IOMMU_MAP_DMA: {
>> +		vfio_iommu_spapr_tce_dma_map param;
>> +		struct iommu_table *tbl = container->tbl;
>> +		enum dma_data_direction direction;
>> +		unsigned long locked, lock_limit;
>> +
>> +		if (WARN_ON(!tbl))
>> +			return -ENXIO;
>> +
>> +		minsz = offsetofend(vfio_iommu_spapr_tce_dma_map, size);
>> +
>> +		if (copy_from_user(&param, (void __user *)arg, minsz))
>> +			return -EFAULT;
>> +
>> +		if (param.argsz < minsz)
>> +			return -EINVAL;
>> +
>> +		if ((param.flags & VFIO_DMA_MAP_FLAG_READ) &&
>> +				(param.flags & VFIO_DMA_MAP_FLAG_WRITE))
>> +			direction = DMA_BIDIRECTIONAL;
>> +		else if (param.flags & VFIO_DMA_MAP_FLAG_READ)
>> +			direction = DMA_TO_DEVICE;
>> +		else if (param.flags & VFIO_DMA_MAP_FLAG_WRITE)
>> +			direction = DMA_FROM_DEVICE;
>> +		else
>> +			return -EINVAL;
>
> flags needs to be sanitized too.  Return EINVAL if any unknown bit is
> set or else sloppy users may make it very difficult to make use of those
> flag bits later.


It already returns -EINVAL on any bit set except READ/WRITE, no?


-- 
Alexey

  reply	other threads:[~2012-12-12  6:59 UTC|newest]

Thread overview: 122+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20121113033832.GW4696@truffula.fritz.box>
2012-11-20  0:48 ` [PATCH] vfio powerpc: enabled and supported on powernv platform Alexey Kardashevskiy
2012-11-20  0:48   ` Alexey Kardashevskiy
2012-11-20 18:19   ` Alex Williamson
2012-11-20 18:19     ` Alex Williamson
2012-11-22 11:56     ` Sethi Varun-B16395
2012-11-22 11:56       ` Sethi Varun-B16395
2012-11-22 11:56       ` Sethi Varun-B16395
2012-11-23  2:02       ` Alexey Kardashevskiy
2012-11-23  2:02         ` Alexey Kardashevskiy
2012-11-26 15:18         ` Alex Williamson
2012-11-26 15:18           ` Alex Williamson
2012-11-26 18:04           ` Alex Williamson
2012-11-26 18:04             ` Alex Williamson
2012-11-27  0:21             ` Benjamin Herrenschmidt
2012-11-27  0:21               ` Benjamin Herrenschmidt
2012-11-27  3:28             ` Alexey Kardashevskiy
2012-11-27  3:28               ` Alexey Kardashevskiy
2012-11-27  4:23               ` Alex Williamson
2012-11-27  4:23                 ` Alex Williamson
2012-11-26 15:08       ` Alex Williamson
2012-11-26 15:08         ` Alex Williamson
2012-11-23  9:03     ` [PATCH 0/2] vfio powerpc: implemented and enabled Alexey Kardashevskiy
2012-11-23  9:03       ` Alexey Kardashevskiy
2012-11-23  9:03       ` [PATCH 1/2] vfio powerpc: implemented IOMMU driver for VFIO Alexey Kardashevskiy
2012-11-23  9:03         ` Alexey Kardashevskiy
2012-11-26 18:20         ` Alex Williamson
2012-11-26 18:20           ` Alex Williamson
2012-11-27  4:06           ` Alexey Kardashevskiy
2012-11-27  4:06             ` Alexey Kardashevskiy
2012-11-27  4:29             ` Alex Williamson
2012-11-27  4:29               ` Alex Williamson
2012-11-27  4:58               ` Alexey Kardashevskiy
2012-11-27  4:58                 ` Alexey Kardashevskiy
2012-11-27  5:06                 ` David Gibson
2012-11-27  5:06                   ` David Gibson
2012-11-27  5:07                 ` Alex Williamson
2012-11-27  5:07                   ` Alex Williamson
2012-11-28  7:21                   ` [PATCH] " Alexey Kardashevskiy
2012-11-28  7:21                     ` Alexey Kardashevskiy
2012-11-28 21:01                     ` Alex Williamson
2012-11-28 21:01                       ` Alex Williamson
2012-11-29  3:51                       ` Alexey Kardashevskiy
2012-11-29  3:51                         ` Alexey Kardashevskiy
2012-11-23  9:03       ` [PATCH 2/2] vfio powerpc: enabled on powernv platform Alexey Kardashevskiy
2012-11-23  9:03         ` Alexey Kardashevskiy
2012-11-27  4:41         ` Alex Williamson
2012-11-27  4:41           ` Alex Williamson
2012-11-28  7:18           ` [PATCH] " Alexey Kardashevskiy
2012-11-28  7:18             ` Alexey Kardashevskiy
2012-11-28 21:30             ` Alex Williamson
2012-11-28 21:30               ` Alex Williamson
2012-11-29  3:53               ` Alexey Kardashevskiy
2012-11-29  3:53                 ` Alexey Kardashevskiy
2012-11-29  4:20                 ` Alex Williamson
2012-11-29  4:20                   ` Alex Williamson
2012-11-30  6:14                   ` Alexey Kardashevskiy
2012-11-30  6:14                     ` Alexey Kardashevskiy
2012-11-30 16:48                     ` Alex Williamson
2012-11-30 16:48                       ` Alex Williamson
2012-12-01  0:14                       ` Alexey Kardashevskiy
2012-12-01  0:14                         ` Alexey Kardashevskiy
2012-11-30  6:16                   ` Alexey Kardashevskiy
2012-11-30  6:16                     ` Alexey Kardashevskiy
2012-12-03  2:52       ` [PATCH 0/2] vfio on power: yet another try Alexey Kardashevskiy
2012-12-03  2:52         ` Alexey Kardashevskiy
2012-12-03  2:52         ` [PATCH 1/2] vfio powerpc: enabled on powernv platform Alexey Kardashevskiy
2012-12-03  2:52           ` Alexey Kardashevskiy
2012-12-03 17:35           ` Alex Williamson
2012-12-03 17:35             ` Alex Williamson
2012-12-04  8:12             ` Alexey Kardashevskiy
2012-12-04  8:12               ` Alexey Kardashevskiy
2012-12-04 15:51               ` Alex Williamson
2012-12-04 15:51                 ` Alex Williamson
2012-12-07  7:35                 ` [PATCH] " Alexey Kardashevskiy
2012-12-07  7:35                   ` Alexey Kardashevskiy
2012-12-07 17:38                   ` Alex Williamson
2012-12-07 17:38                     ` Alex Williamson
2012-12-12  6:14                     ` Alexey Kardashevskiy
2012-12-12  6:14                       ` Alexey Kardashevskiy
2012-12-12 14:34                       ` Alex Williamson
2012-12-12 14:34                         ` Alex Williamson
2012-12-13  2:29                         ` Benjamin Herrenschmidt
2012-12-13  2:29                           ` Benjamin Herrenschmidt
2012-12-13  6:27                           ` Alexey Kardashevskiy
2012-12-13  6:27                             ` Alexey Kardashevskiy
2012-12-13  6:28                           ` [PATCH] iommu: moving initialization earlier Alexey Kardashevskiy
     [not found]                             ` <1355380115-4518-1-git-send-email-aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
2012-12-13 15:48                               ` Alex Williamson
2012-12-13 15:48                                 ` Alex Williamson
     [not found]                                 ` <1355413735.2229.1.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
2012-12-16 11:20                                   ` Joerg Roedel
2012-12-16 11:20                                     ` Joerg Roedel
     [not found]                                     ` <20121216112024.GJ1806-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
2013-01-04  8:21                                       ` Alexey Kardashevskiy
2013-01-04  8:21                                         ` Alexey Kardashevskiy
     [not found]                                         ` <50E6910E.7030103-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
2013-01-06  9:49                                           ` Joerg Roedel
2013-01-06  9:49                                             ` Joerg Roedel
2012-12-12 12:34                     ` [PATCH] vfio powerpc: enabled on powernv platform Alexey Kardashevskiy
2012-12-12 12:34                       ` Alexey Kardashevskiy
2012-12-12 12:38                       ` Alexey Kardashevskiy
2012-12-12 12:38                         ` Alexey Kardashevskiy
2012-12-12 23:30                       ` Alex Williamson
2012-12-12 23:30                         ` Alex Williamson
2012-12-13  2:24                         ` Alexey Kardashevskiy
2012-12-13  2:24                           ` Alexey Kardashevskiy
2012-12-13  2:39                         ` Benjamin Herrenschmidt
2012-12-13  2:39                           ` Benjamin Herrenschmidt
2012-12-13  2:57                         ` Benjamin Herrenschmidt
2012-12-13  2:57                           ` Benjamin Herrenschmidt
2012-12-13  3:22                           ` Alex Williamson
2012-12-13  3:22                             ` Alex Williamson
2012-12-03  2:52         ` [PATCH 2/2] vfio powerpc: implemented IOMMU driver for VFIO Alexey Kardashevskiy
2012-12-03  2:52           ` Alexey Kardashevskiy
2012-12-03 17:53           ` Alex Williamson
2012-12-03 17:53             ` Alex Williamson
2012-12-07  7:34             ` [PATCH] " Alexey Kardashevskiy
2012-12-07  7:34               ` Alexey Kardashevskiy
2012-12-07 17:01               ` Alex Williamson
2012-12-07 17:01                 ` Alex Williamson
2012-12-12  6:59                 ` Alexey Kardashevskiy [this message]
2012-12-12  6:59                   ` Alexey Kardashevskiy
2012-12-12 14:36                   ` Alex Williamson
2012-12-12 14:36                     ` Alex Williamson
2012-12-12 12:35                 ` Alexey Kardashevskiy
2012-12-12 12:35                   ` Alexey Kardashevskiy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50C82B3C.1060006@ozlabs.ru \
    --to=aik@ozlabs.ru \
    --cc=alex.williamson@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=paulus@samba.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.