Re: [PATCH] media: videobuf2: Fix length check for single plane dmabuf queueing

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

 



Gentle ping to Hans for his view.

Quick summary:
For VB2_MEMORY_DMABUF single planar and multi planar APIs differed in
behaviour as to whether userspace had to provide the length of the
dmabuf or not. (Multi-planar it did, single planar it didn't). This
patch made them both the same - userspace had to provide the length.
Laurent has stated that the old behaviour for single planar was that
length = 0  is "take the length of the underlying dmabuf", so we have
a regression. It appears undocumented that multi-planar requires the
length. All docs appear to say that the driver fills in this field
(except in USERPTR mode). vb2_fill_vb2_v4l2_buffer specifically takes
the user provided length field in VB2_MEMORY_DMABUF.

Question: Why are we not using dmabuf size instead of user provided
length for both APIs under all conditions? Userspace doesn't need to
provide the length as that is available from the dmabuf, and the main
check ought to be that the bytesused is big enough against the
underlying dmabuf, not the length that vb2 has.

Scenario:
Allocate a dmabuf (eg using dmaheaps) that is smaller than V4L2 has asked for.
QBUF with VB2_MEMORY_DMABUF, length >= V4L2's requested size,
bytesused = length (ie more used than the dmabuf can take).

I don't believe any of the validation currently catches that. It
nearly does in __prepare_dmabuf with planes[plane].length <
vb->planes[plane].min_length, but in this scenario
planes[plane].length is incorrectly high.
The driver gets passed a buffer that is likely only partially mapped,
and hardware may access memory it shouldn't.


The use case that triggered this is for decoding compressed
bitstreams, therefore the size of the buffer doesn't need to match any
value that V4L2 and vb2 thinks of, as long as the size of the
underlying dmabuf is larger than bytesused. If the driver underneath
can accept any length buffer via VB2_MEMORY_DMABUF, then it gets
around the issue of "how big is the biggest compressed frame in this
stream that I've never seen before?". Should you get a new frame that
is bigger than you predicted, then allocate a new dmabuf that is
bigger and pass that in instead.

Thanks
  Dave

On Fri, 16 Oct 2020 at 15:48, Dave Stevenson
<dave.stevenson@xxxxxxxxxxxxxxx> wrote:
>
> Hi Laurent
>
> Thanks for the reply.
>
> On Fri, 16 Oct 2020 at 13:29, Laurent Pinchart
> <laurent.pinchart@xxxxxxxxxxxxxxxx> wrote:
> >
> > Hi Dave,
> >
> > On Fri, Oct 16, 2020 at 11:20:36AM +0100, Dave Stevenson wrote:
> > > On Thu, 8 Oct 2020 at 03:00, Laurent Pinchart wrote:
> > > >
> > > > Hi John,
> > > >
> > > > Thank you for the patch.
> > > >
> > > > On Wed, Jun 17, 2020 at 02:21:52PM +0100, John Cox wrote:
> > > > > Check against length in v4l2_buffer rather than vb2_buffer when the
> > > > > buffer is a dmabuf. This makes the single plane test the same as the
> > > > > existing multiplanar test.
> > > > >
> > > > > Signed-off-by: John Cox <jc@xxxxxxxxxxxxx>
> > > > > ---
> > > > >  drivers/media/common/videobuf2/videobuf2-v4l2.c | 3 ++-
> > > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > > >
> > > > > diff --git a/drivers/media/common/videobuf2/videobuf2-v4l2.c b/drivers/media/common/videobuf2/videobuf2-v4l2.c
> > > > > index e652f4318284..731c7c99c971 100644
> > > > > --- a/drivers/media/common/videobuf2/videobuf2-v4l2.c
> > > > > +++ b/drivers/media/common/videobuf2/videobuf2-v4l2.c
> > > > > @@ -114,7 +114,8 @@ static int __verify_length(struct vb2_buffer *vb, const struct v4l2_buffer *b)
> > > > >                                 return -EINVAL;
> > > > >                 }
> > > > >         } else {
> > > > > -               length = (b->memory == VB2_MEMORY_USERPTR)
> > > > > +               length = (b->memory == VB2_MEMORY_USERPTR ||
> > > > > +                         b->memory == VB2_MEMORY_DMABUF)
> > > > >                         ? b->length : vb->planes[0].length;
> > > >
> > > > I don't think this is correct, as it breaks DMABUF import. For USERPTR
> > > > the length needs to be passed by userspace, but for DMABUF, we allow
> > > > userspace to set length to 0, and use the length retrieved from the
> > > > dma_buf. With this change, b->length is 0, and the check fails.
> > >
> > > I've just been discussing this with John  - he contracts for Raspberry
> > > Pi for the HEVC stateless decoder amongst other things, which is why
> > > this patch was created in the first place.
> > >
> > > I can't find any reference in the docs to length = 0 && b->memory ==
> > > VB2_MEMORY_DMABUF being "use dmabuf size".
> >
> > For the single-planar API,
> >
> > https://linuxtv.org/downloads/v4l-dvb-apis/userspace-api/v4l/vidioc-qbuf.html
> >
> > "To enqueue a user pointer buffer applications set the memory field to
> > V4L2_MEMORY_USERPTR, the m.userptr field to the address of the buffer
> > and length to its size."
> >
> > There is no similar mention for V4L2_MEMORY_DMABUF.
> >
> > And in https://linuxtv.org/downloads/v4l-dvb-apis/userspace-api/v4l/buffer.html#c.v4l2_buffer
> >
> > "length         Size of the buffer (not the payload) in bytes for the
> > single-planar API.  This is set by the driver based on the calls to
> > ioctl VIDIOC_REQBUFS and/or ioctl VIDIOC_CREATE_BUFS."
> >
> > While this could be clearer, the statement in the documentation of
> > v4l2_buffer isn't overridden by anything in the VIDIOC_QBUF
> > documentation for V4L2_MEMORY_DMABUF. The field should thus be set by
> > drivers, not applications.
>
> I know this is userspace API documentation, but the waters are further
> muddied by it being set by videobuf2 and not the driver itself.
>
> > > And certainly no mention of the single planar API being different from
> > > the multi-planar API (which it was until this patch).
> >
> > I don't see a mention of that either.
> >
> > > Reference to b->memory == VB2_MEMORY_USERPTR meaning that the
> > > b->length is in the description for VIDIOC_QBUF[1]
> > >
> > > John's patch is matching Hans' original patch that did the same thing
> > > for multi-planar [2].
> > > From the commit text:
> > > - in __verify_length() it would use the application-provided length value
> > >   for USERPTR and the vb2 core length for other memory models, but it
> > >   should have used the application-provided length as well for DMABUF.
> > >
> > > If you're saying that length==0 is "use the dmabuf size", then
> > > __verify_length is wrong in both single and multi-planar usage as it
> > > is comparing against vb->planes[X].length, not (struct dma_buf*)->size
> > > (the dma_buf_get isn't done until __prepare_dmabuf).
> >
> > I think it is, and the changes break userspace :-(
>
> Just so I'm clear, you're agreeing that it's wrong in both cases?
>
> Altering both paths to ignore length fields for DMABUF under all
> circumstances and check the dmabuf size later in __prepare_dmabuf
> instead shouldn't change userspace behaviour at all compared to before
> this patch. It also removes the potential for userspace in the
> multiplanar API getting things wrong by providing a length that is
> bigger than the underlying dmabuf, which I believe will currently go
> undetected.
>
> Actually the check in __prepare_dmabuf ought to be corrected to always
> take dbuf->size, not just if planes[N].length == 0 [1], and there
> appear to be other places where the multi-planar API code is
> specifically copying the plane length from the user v4l2_buffer and
> not using the driver provided values (eg [2])
>
> [1] https://elixir.free-electrons.com/linux/latest/source/drivers/media/common/videobuf2/videobuf2-core.c#L1206
> [2] https://elixir.free-electrons.com/linux/latest/source/drivers/media/common/videobuf2/videobuf2-v4l2.c#L220
>
> > After the lookup __prepare_dmabuf does check that planes[plane].length
> > > < vb->planes[plane].min_length. So do both clauses in __verify_length
> > > just need to bypass the length check if length = 0 && b->memory ==
> > > VB2_MEMORY_DMABUF ?
> > >
> > > I note we already have mismatched handling in libcamera in that
> > > multiplanar DMABUF sets length for each plane, but single planar
> > > DMABUF doesn't set buf.length [3]
> > >
> > > For info, the use case all comes down to the old chestnut of "how big
> > > is a compressed frame?".
> > > Feeding encoded bitstream into the HEVC decoder using
> > > VB2_MEMORY_DMABUF, the size of the buffer against the format sizeimage
> > > doesn't matter. The only conditions are that the buffer description is
> > > valid (ie bytesused <= actual buffer size) and the hardware can map
> > > it. If you're using dmaheaps or similar to allocate the buffers
> > > externally and an unexpectedly large compressed frame comes through,
> > > reallocate through dmaheaps and pass it in.
> > > The same argument is true for USERPTR, and that's already accounted
> > > for by relying on the application provided length.
> >
> > The key difference between DMABUF and USERPTR is that the kernel can
> > figure out the allocated buffer length internally in the first case, but
> > not the second case. I'm not sure to understand the use case for passing
> > a different length from userspace to the kernel.
>
> The use case is a different length between that which videobuf2
> believes is correct, and the actual size of the dmabuf.
>
> The situation is feeding in encoded bitstream to a decoder via the OUTPUT queue.
> - Make a first guess that the buffers need to be 512kB each
> - Use an external allocator (eg dmaheaps) to create those buffers
> - Feed them in via VIDIOC_QBUF of type V4L2_MEMORY_DMABUF.
> - Decode a load of frames and come across one that is >512kB.
> Either you:
> - have to tear everything down and resume from a suitable point in the past
> or
> - allocate a bigger buffer with the external allocator and pass that
> in via a new dmabuf handle.
>
> Some drivers won't be able to handle a bigger buffer as they may pass
> the bitstream via other internal buffers that are now too small,
> however they have all the information to know that and bail out. John
> created the patch (a) to match multi-planar, and (b) because videobuf2
> was blocking it due to checking the length against an arbitrary
> internal value rather than the actual dmabuf size. At least after the
> patch you could convey the correct length.
> Shifting to always taking the dmabuf length from the dma buf framework
> still allows the above to work without breaking your length==0 path
> (which now becomes the only path).
>
> Is it API abuse? Possibly, but the details in the spec are a little
> sketchy about what is and isn't permitted (and I know most of us hate
> having to write documentation).
>
> I guess the follow up becomes, if using DMABUF with differently sized
> buffers to that which videobuf2 believes in, and then set bytesuesd =
> 0 (which is documented to mean take the buffer size), do we go through
> the right paths to get the buffer size based on the correct thing?
>
> I wonder what Hans' view is here.
>
> Cheers,
>   Dave
>
> > > [1] https://www.kernel.org/doc/html/latest/userspace-api/media/v4l/vidioc-qbuf.html#vidioc-qbuf
> > > [2] https://github.com/torvalds/linux/commit/8a75ffb81
> > > [3] https://git.linuxtv.org/libcamera.git/tree/src/libcamera/v4l2_videodevice.cpp#n1385
> > >
> > > > >
> > > > >                 if (b->bytesused > length)
> >
> > --
> > Regards,
> >
> > Laurent Pinchart



[Index of Archives]     [Linux Input]     [Video for Linux]     [Gstreamer Embedded]     [Mplayer Users]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]

  Powered by Linux