fbdev: Validate info->screen_{base, buffer} in fb_ops implementations
authorThomas Zimmermann <tzimmermann@suse.de>
Fri, 28 Apr 2023 12:24:50 +0000 (14:24 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 8 May 2023 13:28:34 +0000 (15:28 +0200)
Push the test for info->screen_base from fb_read() and fb_write() into
the implementations of struct fb_ops.{fb_read,fb_write}. In cases where
the driver operates on info->screen_buffer, test this field instead.

While bothi fields, screen_base and screen_buffer, are stored in the
same location, they refer to different address spaces. For correctness,
we want to test each field in exactly the code that uses it.

v2:
* also test screen_base in pvr2fb (Geert)
* also test screen_buffer in ivtvfb, arcfb, broadsheetfb,
  hecubafb, metronomefb and ssd1307fb (Geert)
* give a rational for the change (Geert)

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Tested-by: Sui Jingfeng <suijingfeng@loongson.cn>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Helge Deller <deller@gmx.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20230428122452.4856-18-tzimmermann@suse.de
drivers/media/pci/ivtv/ivtvfb.c
drivers/video/fbdev/arcfb.c
drivers/video/fbdev/broadsheetfb.c
drivers/video/fbdev/cobalt_lcdfb.c
drivers/video/fbdev/core/fb_sys_fops.c
drivers/video/fbdev/core/fbmem.c
drivers/video/fbdev/hecubafb.c
drivers/video/fbdev/metronomefb.c
drivers/video/fbdev/pvr2fb.c
drivers/video/fbdev/sm712fb.c
drivers/video/fbdev/ssd1307fb.c

index 22123a2..0aeb9da 100644 (file)
@@ -378,6 +378,9 @@ static ssize_t ivtvfb_write(struct fb_info *info, const char __user *buf,
        unsigned long dma_size;
        u16 lead = 0, tail = 0;
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        total_size = info->screen_size;
 
        if (total_size == 0)
index 088c4b3..7750e02 100644 (file)
@@ -451,6 +451,9 @@ static ssize_t arcfb_write(struct fb_info *info, const char __user *buf,
        struct arcfb_par *par;
        unsigned int xres;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        p = *ppos;
        par = info->par;
        xres = info->var.xres;
index 691de5d..e9c5d5c 100644 (file)
@@ -1013,6 +1013,9 @@ static ssize_t broadsheetfb_write(struct fb_info *info, const char __user *buf,
        int err = 0;
        unsigned long total_size;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->fix.smem_len;
 
        if (p > total_size)
index 5f8b632..26dbd1c 100644 (file)
@@ -129,6 +129,9 @@ static ssize_t cobalt_lcdfb_read(struct fb_info *info, char __user *buf,
        unsigned long pos;
        int len, retval = 0;
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        pos = *ppos;
        if (pos >= LCD_CHARS_MAX || count == 0)
                return 0;
@@ -175,6 +178,9 @@ static ssize_t cobalt_lcdfb_write(struct fb_info *info, const char __user *buf,
        unsigned long pos;
        int len, retval = 0;
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        pos = *ppos;
        if (pos >= LCD_CHARS_MAX || count == 0)
                return 0;
index 7dee5d3..0cb0989 100644 (file)
@@ -22,6 +22,9 @@ ssize_t fb_sys_read(struct fb_info *info, char __user *buf, size_t count,
        unsigned long total_size, c;
        ssize_t ret;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->screen_size;
 
        if (total_size == 0)
@@ -61,6 +64,9 @@ ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
        unsigned long total_size, c;
        size_t ret;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->screen_size;
 
        if (total_size == 0)
index 9c79fb0..bf5a078 100644 (file)
@@ -768,7 +768,7 @@ fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
        int c, cnt = 0, err = 0;
        unsigned long total_size, trailing;
 
-       if (!info || ! info->screen_base)
+       if (!info)
                return -ENODEV;
 
        if (info->state != FBINFO_STATE_RUNNING)
@@ -777,6 +777,9 @@ fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
        if (info->fbops->fb_read)
                return info->fbops->fb_read(info, buf, count, ppos);
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        total_size = info->screen_size;
 
        if (total_size == 0)
@@ -836,7 +839,7 @@ fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
        int c, cnt = 0, err = 0;
        unsigned long total_size, trailing;
 
-       if (!info || !info->screen_base)
+       if (!info)
                return -ENODEV;
 
        if (info->state != FBINFO_STATE_RUNNING)
@@ -845,6 +848,9 @@ fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
        if (info->fbops->fb_write)
                return info->fbops->fb_write(info, buf, count, ppos);
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        total_size = info->screen_size;
 
        if (total_size == 0)
index a2996d3..72308d4 100644 (file)
@@ -163,6 +163,9 @@ static ssize_t hecubafb_write(struct fb_info *info, const char __user *buf,
        int err = 0;
        unsigned long total_size;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->fix.smem_len;
 
        if (p > total_size)
index 2bb068c..7fc5946 100644 (file)
@@ -523,6 +523,9 @@ static ssize_t metronomefb_write(struct fb_info *info, const char __user *buf,
        int err = 0;
        unsigned long total_size;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->fix.smem_len;
 
        if (p > total_size)
index 6888127..550fdb5 100644 (file)
@@ -647,6 +647,9 @@ static ssize_t pvr2fb_write(struct fb_info *info, const char *buf,
        struct page **pages;
        int ret, i;
 
+       if (!info->screen_base)
+               return -ENODEV;
+
        nr_pages = (count + PAGE_SIZE - 1) >> PAGE_SHIFT;
 
        pages = kmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
index 6f852cd..b7ad3c6 100644 (file)
@@ -1028,7 +1028,7 @@ static ssize_t smtcfb_read(struct fb_info *info, char __user *buf,
        int c, i, cnt = 0, err = 0;
        unsigned long total_size;
 
-       if (!info || !info->screen_base)
+       if (!info->screen_base)
                return -ENODEV;
 
        total_size = info->screen_size;
@@ -1091,7 +1091,7 @@ static ssize_t smtcfb_write(struct fb_info *info, const char __user *buf,
        int c, i, cnt = 0, err = 0;
        unsigned long total_size;
 
-       if (!info || !info->screen_base)
+       if (!info->screen_base)
                return -ENODEV;
 
        total_size = info->screen_size;
index 046b999..a8f2975 100644 (file)
@@ -301,6 +301,9 @@ static ssize_t ssd1307fb_write(struct fb_info *info, const char __user *buf,
        void *dst;
        int ret;
 
+       if (!info->screen_buffer)
+               return -ENODEV;
+
        total_size = info->fix.smem_len;
 
        if (p > total_size)