dma-buf/sw-sync: Prevent user overflow on timeline advance
authorChris Wilson <[email protected]>
Thu, 29 Jun 2017 12:59:26 +0000 (13:59 +0100)
committerGustavo Padovan <[email protected]>
Thu, 29 Jun 2017 21:52:05 +0000 (18:52 -0300)
The timeline is u32, which limits any single advance to INT_MAX so that
we can detect all fences that need signaling.

Signed-off-by: Chris Wilson <[email protected]>
Cc: Sumit Semwal <[email protected]>
Cc: Sean Paul <[email protected]>
Cc: Gustavo Padovan <[email protected]>
Reviewed-by: Sean Paul <[email protected]>
Signed-off-by: Gustavo Padovan <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/dma-buf/sw_sync.c

index 4d5d8c5e2534dae335a99f3f1a86f9f34a1e9b16..0e676d08aa70087b2daaa7c0cab0f896d16bcf42 100644 (file)
@@ -345,6 +345,11 @@ static long sw_sync_ioctl_inc(struct sync_timeline *obj, unsigned long arg)
        if (copy_from_user(&value, (void __user *)arg, sizeof(value)))
                return -EFAULT;
 
+       while (value > INT_MAX)  {
+               sync_timeline_signal(obj, INT_MAX);
+               value -= INT_MAX;
+       }
+
        sync_timeline_signal(obj, value);
 
        return 0;