From: Alex Williamson <alex.williamson@redhat.com>
To: Steven Sistare <steven.sistare@oracle.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
kbuild@lists.01.org, lkp@intel.com, kbuild-all@lists.01.org,
Linux Memory Management List <linux-mm@kvack.org>,
Cornelia Huck <cohuck@redhat.com>
Subject: Re: [kbuild] [linux-next:master 6931/12022] drivers/vfio/vfio_iommu_type1.c:1093 vfio_dma_do_unmap() warn: impossible condition '(size > (~0)) => (0-u32max > u32max)'
Date: Wed, 24 Feb 2021 15:55:24 -0700 [thread overview]
Message-ID: <20210224155524.7371d438@omen.home.shazbot.org> (raw)
In-Reply-To: <9b1b847d-502d-2d6d-6610-a43ff5c7ba26@oracle.com>
On Tue, 23 Feb 2021 18:58:18 -0500
Steven Sistare <steven.sistare@oracle.com> wrote:
> On 2/23/2021 4:52 PM, Steven Sistare wrote:
> > On 2/23/2021 4:10 PM, Alex Williamson wrote:
> >> On Tue, 23 Feb 2021 15:37:31 -0500
> >> Steven Sistare <steven.sistare@oracle.com> wrote:
> >>
> >>> On 2/23/2021 12:45 PM, Alex Williamson wrote:
> >>>> On Tue, 23 Feb 2021 08:56:36 -0500
> >>>> Steven Sistare <steven.sistare@oracle.com> wrote:
> >>>>
> >>>>> On 2/22/2021 6:17 PM, Alex Williamson wrote:
> >>>>>> On Mon, 22 Feb 2021 15:51:45 -0700
> >>>>>> Alex Williamson <alex.williamson@redhat.com> wrote:
> >>>>>>
> >>>>>>> On Mon, 22 Feb 2021 17:10:43 +0300
> >>>>>>> Dan Carpenter <dan.carpenter@oracle.com> wrote:
> >>>>>>>
> >>>>>>>> tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
> >>>>>>>> head: 37dfbfbdca66834bc0f64ec9b35e09ac6c8898da
> >>>>>>>> commit: 0f53afa12baec8c00f5d1d6afb49325ada105253 [6931/12022] vfio/type1: unmap cleanup
> >>>>>>>
> >>>>>>> It's always the patches that claim no functional change... ;)
> >>>>>>>
> >>>>>>>> config: i386-randconfig-m021-20210222 (attached as .config)
> >>>>>>>> compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
> >>>>>>>>
> >>>>>>>> If you fix the issue, kindly add following tag as appropriate
> >>>>>>>> Reported-by: kernel test robot <lkp@intel.com>
> >>>>>>>> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> >>>>>>>>
> >>>>>>>> New smatch warnings:
> >>>>>>>> drivers/vfio/vfio_iommu_type1.c:1093 vfio_dma_do_unmap() warn: impossible condition '(size > (~0)) => (0-u32max > u32max)'
> >>>>>>>>
> >>>>>>>> vim +1093 drivers/vfio/vfio_iommu_type1.c
> >>>>>>>>
> >>>>>>>> 73fa0d10d077d9 Alex Williamson 2012-07-31 1071 static int vfio_dma_do_unmap(struct vfio_iommu *iommu,
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1072 struct vfio_iommu_type1_dma_unmap *unmap,
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1073 struct vfio_bitmap *bitmap)
> >>>>>>>> 73fa0d10d077d9 Alex Williamson 2012-07-31 1074 {
> >>>>>>>> c086de818dd81c Kirti Wankhede 2016-11-17 1075 struct vfio_dma *dma, *dma_last = NULL;
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1076 size_t unmapped = 0, pgsize;
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 1077 int ret = -EINVAL, retries = 0;
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1078 unsigned long pgshift;
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 1079 dma_addr_t iova = unmap->iova;
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 1080 unsigned long size = unmap->size;
> >>>>>>>> ^^^^^^^^^^^^^^^^^^
> >>>>>>>>
> >>>>>>>> 73fa0d10d077d9 Alex Williamson 2012-07-31 1081
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1082 mutex_lock(&iommu->lock);
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1083
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1084 pgshift = __ffs(iommu->pgsize_bitmap);
> >>>>>>>> 331e33d2960c82 Kirti Wankhede 2020-05-29 1085 pgsize = (size_t)1 << pgshift;
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1086
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 1087 if (iova & (pgsize - 1))
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1088 goto unlock;
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1089
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 1090 if (!size || size & (pgsize - 1))
> >>>>>>>> cade075f265b25 Kirti Wankhede 2020-05-29 1091 goto unlock;
> >>>>>>>> 73fa0d10d077d9 Alex Williamson 2012-07-31 1092
> >>>>>>>> 0f53afa12baec8 Steve Sistare 2021-01-29 @1093 if (iova + size - 1 < iova || size > SIZE_MAX)
> >>>>>>>>
> >>>>>>>> size is unsigned long and SIZE_MAX is ULONG_MAX so "size > SIZE_MAX"
> >>>>>>>> does not make sense.
> >>>>>>>
> >>>>>>> I think it made sense before the above commit, where unmap->size is a
> >>>>>>> __u64 and a user could provide a value that exceeds SIZE_MAX on ILP32.
> >>>>>>> Seems like the fix is probably to use a size_t for the local variable
> >>>>>>> and restore this test to compare (unmap->size > SIZE_MAX). Steve?
> >>>>>>
> >>>>>> Actually it seems like VFIO_DMA_UNMAP_FLAG_ALL doesn't work when
> >>>>>> PHYS_ADDR_MAX != SIZE_MAX (ex. x86 PAE - I think).
> >>>>>
> >>>>> It seems like PAE causes problems even before VFIO_DMA_UNMAP_FLAG_ALL.
> >>>>
> >>>> This wouldn't surprise me, I don't know of any actual non-64bit users
> >>>> and pure 32bit support was only lightly validated ages ago.
> >>>>
> >>>>> In the previous vfio_dma_do_unmap code, the u64 unmap->size would be
> >>>>> truncated when passed to vfio_find_dma.
> >>>>
> >>>> We would have failed with -EINVAL before we get there due to this
> >>>> SIZE_MAX test. I think the existing (previous) PAE interface is at
> >>>> least self consistent; I see the mapping path also attempts to check
> >>>> that casting map->size as size_t still matches the original value.
> >>>
> >>> Good point, and it also checks for vaddr and iova overflow and wrap:
> >>>
> >>> vfio_dma_do_map()
> >>> if (map->size != size || map->vaddr != vaddr || map->iova != iova)
> >>> return -EINVAL;
> >>> if (iova + size - 1 < iova || vaddr + size - 1 < vaddr) {
> >>> ret = -EINVAL;
> >>>
> >>> With that, I don't see a problem with PAE, for unmap-all or otherwise.
> >>> We just need "u64 size" in vfio_dma_do_unmap to avoid the smatch warning.
> >>
> >> I'm not convinced. My understanding is that on PAE phys_addr_t is
> >> 64-bit while size_t is 32-bit. dma_addr_t (iova above) seems to follow
> >> phys_addr_t. That suggests to me that our {un}map.iova lives in a
> >> 64-bit address space, but each mapping is limited to 32-bits. The
> >
> > OK, the "map->iova != iova" test does not help because dma_addr_t is 64-bit. My bad.
> > So, I re-propose my fix for unmap-all from previous email.
> >
> > I am not keen on proposing a fix for the potential legacy bugs, vfio_find_dma() and
> > its callers, if no one is reporting bugs and no one uses it with vfio. It has the
> > potential for regression with no upside.
>
> ... but there are no legacy bugs because size is constrained to 32-bits in do_map as
> you pointed out, so all calls to vfio_find_dma are safe.
Right, all legacy call paths are ok afaict, but the unmap-all flag
can't reach any mappings if there are none below an iova of SIZE_MAX.
We should either fix vfio_find_first_dma_node() for this scenario or
disable unmap-all where this is a possibility. Thanks,
Alex
next prev parent reply other threads:[~2021-02-24 22:55 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-22 14:10 [kbuild] [linux-next:master 6931/12022] drivers/vfio/vfio_iommu_type1.c:1093 vfio_dma_do_unmap() warn: impossible condition '(size > (~0)) => (0-u32max > u32max)' Dan Carpenter
2021-02-22 22:51 ` Alex Williamson
2021-02-22 23:17 ` Alex Williamson
2021-02-23 13:56 ` Steven Sistare
2021-02-23 17:45 ` Alex Williamson
2021-02-23 20:37 ` Steven Sistare
2021-02-23 21:10 ` Alex Williamson
2021-02-23 21:52 ` Steven Sistare
2021-02-23 23:58 ` Steven Sistare
2021-02-24 22:55 ` Alex Williamson [this message]
2021-02-25 15:25 ` Steven Sistare
2021-02-25 18:00 ` Alex Williamson
2021-02-25 18:52 ` Steven Sistare
2021-02-25 19:12 ` Alex Williamson
2021-02-23 13:20 ` Steven Sistare
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=20210224155524.7371d438@omen.home.shazbot.org \
--to=alex.williamson@redhat.com \
--cc=cohuck@redhat.com \
--cc=dan.carpenter@oracle.com \
--cc=kbuild-all@lists.01.org \
--cc=kbuild@lists.01.org \
--cc=linux-mm@kvack.org \
--cc=lkp@intel.com \
--cc=steven.sistare@oracle.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).