0320-videobuf2-v4l2-Verify-planes-array-in-buffer-dequeue.patch 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. From 2d8ae9f2f45a2f5b777088cbab6e5ea15744d1d5 Mon Sep 17 00:00:00 2001
  2. From: Sakari Ailus <sakari.ailus@linux.intel.com>
  3. Date: Sun, 3 Apr 2016 16:31:03 -0300
  4. Subject: [PATCH 320/381] videobuf2-v4l2: Verify planes array in buffer
  5. dequeueing
  6. commit 2c1f6951a8a82e6de0d82b1158b5e493fc6c54ab upstream.
  7. When a buffer is being dequeued using VIDIOC_DQBUF IOCTL, the exact buffer
  8. which will be dequeued is not known until the buffer has been removed from
  9. the queue. The number of planes is specific to a buffer, not to the queue.
  10. This does lead to the situation where multi-plane buffers may be requested
  11. and queued with n planes, but VIDIOC_DQBUF IOCTL may be passed an argument
  12. struct with fewer planes.
  13. __fill_v4l2_buffer() however uses the number of planes from the dequeued
  14. videobuf2 buffer, overwriting kernel memory (the m.planes array allocated
  15. in video_usercopy() in v4l2-ioctl.c) if the user provided fewer
  16. planes than the dequeued buffer had. Oops!
  17. Fixes: b0e0e1f83de3 ("[media] media: videobuf2: Prepare to divide videobuf2")
  18. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
  19. Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
  20. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
  21. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  22. ---
  23. drivers/media/v4l2-core/videobuf2-v4l2.c | 6 ++++++
  24. 1 file changed, 6 insertions(+)
  25. --- a/drivers/media/v4l2-core/videobuf2-v4l2.c
  26. +++ b/drivers/media/v4l2-core/videobuf2-v4l2.c
  27. @@ -67,6 +67,11 @@ static int __verify_planes_array(struct
  28. return 0;
  29. }
  30. +static int __verify_planes_array_core(struct vb2_buffer *vb, const void *pb)
  31. +{
  32. + return __verify_planes_array(vb, pb);
  33. +}
  34. +
  35. /**
  36. * __verify_length() - Verify that the bytesused value for each plane fits in
  37. * the plane length and that the data offset doesn't exceed the bytesused value.
  38. @@ -432,6 +437,7 @@ static int __fill_vb2_buffer(struct vb2_
  39. }
  40. static const struct vb2_buf_ops v4l2_buf_ops = {
  41. + .verify_planes_array = __verify_planes_array_core,
  42. .fill_user_buffer = __fill_v4l2_buffer,
  43. .fill_vb2_buffer = __fill_vb2_buffer,
  44. .set_timestamp = __set_timestamp,