]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: vchiq_arm: add __user pointer annotations
authorSzilveszter Székely <szekelyszilv@gmail.com>
Wed, 28 Nov 2018 23:40:32 +0000 (23:40 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Dec 2018 08:44:05 +0000 (09:44 +0100)
Add __user to pointers based on context and suggestions by sparse.

Other sparse warnings still remain, in cases where more change would be
required apart from adding __user.

Signed-off-by: Szilveszter Székely <szekelyszilv@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_if.h
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_ioctl.h

index 0caee2d6946f119b288d186c8971b4849d938520..f28f681192dd4e798289abd4a8a2f1636bf5f98c 100644 (file)
@@ -1593,7 +1593,7 @@ vchiq_compat_ioctl_queue_message(struct file *file,
                                 unsigned long arg)
 {
        VCHIQ_QUEUE_MESSAGE_T *args;
-       struct vchiq_element *elements;
+       struct vchiq_element __user *elements;
        struct vchiq_queue_message32 args32;
        unsigned int count;
 
@@ -1659,7 +1659,7 @@ vchiq_compat_ioctl_queue_bulk(struct file *file,
                              unsigned int cmd,
                              unsigned long arg)
 {
-       VCHIQ_QUEUE_BULK_TRANSFER_T *args;
+       VCHIQ_QUEUE_BULK_TRANSFER_T __user *args;
        struct vchiq_queue_bulk_transfer32 args32;
        struct vchiq_queue_bulk_transfer32 *ptrargs32 =
                (struct vchiq_queue_bulk_transfer32 *)arg;
@@ -1725,16 +1725,16 @@ vchiq_compat_ioctl_await_completion(struct file *file,
                                    unsigned int cmd,
                                    unsigned long arg)
 {
-       VCHIQ_AWAIT_COMPLETION_T *args;
-       VCHIQ_COMPLETION_DATA_T *completion;
+       VCHIQ_AWAIT_COMPLETION_T __user *args;
+       VCHIQ_COMPLETION_DATA_T __user *completion;
        VCHIQ_COMPLETION_DATA_T completiontemp;
        struct vchiq_await_completion32 args32;
        struct vchiq_completion_data32 completion32;
-       unsigned int *msgbufcount32;
+       unsigned int __user *msgbufcount32;
        unsigned int msgbufcount_native;
        compat_uptr_t msgbuf32;
-       void *msgbuf;
-       void **msgbufptr;
+       void __user *msgbuf;
+       void * __user *msgbufptr;
        long ret;
 
        args = compat_alloc_user_space(sizeof(*args) +
@@ -1743,11 +1743,11 @@ vchiq_compat_ioctl_await_completion(struct file *file,
        if (!args)
                return -EFAULT;
 
-       completion = (VCHIQ_COMPLETION_DATA_T *)(args + 1);
-       msgbufptr = (void __user **)(completion + 1);
+       completion = (VCHIQ_COMPLETION_DATA_T __user *)(args + 1);
+       msgbufptr = (void * __user *)(completion + 1);
 
        if (copy_from_user(&args32,
-                          (struct vchiq_completion_data32 *)arg,
+                          (struct vchiq_completion_data32 __user *)arg,
                           sizeof(args32)))
                return -EFAULT;
 
@@ -1875,7 +1875,7 @@ vchiq_compat_ioctl_dequeue_message(struct file *file,
                                   unsigned int cmd,
                                   unsigned long arg)
 {
-       VCHIQ_DEQUEUE_MESSAGE_T *args;
+       VCHIQ_DEQUEUE_MESSAGE_T __user *args;
        struct vchiq_dequeue_message32 args32;
 
        args = compat_alloc_user_space(sizeof(*args));
@@ -1883,7 +1883,7 @@ vchiq_compat_ioctl_dequeue_message(struct file *file,
                return -EFAULT;
 
        if (copy_from_user(&args32,
-                          (struct vchiq_dequeue_message32 *)arg,
+                          (struct vchiq_dequeue_message32 __user *)arg,
                           sizeof(args32)))
                return -EFAULT;
 
@@ -1910,7 +1910,7 @@ vchiq_compat_ioctl_get_config(struct file *file,
                              unsigned int cmd,
                              unsigned long arg)
 {
-       VCHIQ_GET_CONFIG_T *args;
+       VCHIQ_GET_CONFIG_T __user *args;
        struct vchiq_get_config32 args32;
 
        args = compat_alloc_user_space(sizeof(*args));
@@ -1918,7 +1918,7 @@ vchiq_compat_ioctl_get_config(struct file *file,
                return -EFAULT;
 
        if (copy_from_user(&args32,
-                          (struct vchiq_get_config32 *)arg,
+                          (struct vchiq_get_config32 __user *)arg,
                           sizeof(args32)))
                return -EFAULT;
 
index 7b948a173e29241c4d5910b77ecf59606fe028b4..0cdaebee902dae8a48e46a1239b545e7b8115c5b 100644 (file)
@@ -87,7 +87,7 @@ typedef struct vchiq_header_struct {
 } VCHIQ_HEADER_T;
 
 struct vchiq_element {
-       const void *data;
+       const void __user *data;
        unsigned int size;
 };
 
index 9f859953f45cecdb4bd8888da95be0e9a051fabe..858f46bd2ed7f0c316712322fa8472e02036f530 100644 (file)
@@ -50,7 +50,7 @@ typedef struct {
 typedef struct {
        unsigned int handle;
        unsigned int count;
-       const struct vchiq_element *elements;
+       const struct vchiq_element __user *elements;
 } VCHIQ_QUEUE_MESSAGE_T;
 
 typedef struct {
@@ -85,7 +85,7 @@ typedef struct {
 
 typedef struct {
        unsigned int config_size;
-       VCHIQ_CONFIG_T *pconfig;
+       VCHIQ_CONFIG_T __user *pconfig;
 } VCHIQ_GET_CONFIG_T;
 
 typedef struct {