linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] watchdog: sbc_fitpc2_wdt: add __user annotations
@ 2020-10-25 12:45 Rasmus Villemoes
  2020-10-25 17:40 ` Guenter Roeck
  0 siblings, 1 reply; 2+ messages in thread
From: Rasmus Villemoes @ 2020-10-25 12:45 UTC (permalink / raw)
  To: Wim Van Sebroeck, Guenter Roeck
  Cc: Rasmus Villemoes, kernel test robot, linux-watchdog, linux-kernel

After a change to the put_user() macro on x86, kernel test robot has
started sending me complaints (from sparse) about passing kernel
pointers to put_user(). So add the __user annotations to the various
casts in fitpc2_wdt_ioctl(), and while in here, also make the write
method actually match the prototype of file_operations::write.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 drivers/watchdog/sbc_fitpc2_wdt.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/watchdog/sbc_fitpc2_wdt.c b/drivers/watchdog/sbc_fitpc2_wdt.c
index 04483d6453d6a147703e..13db71e165836eb73249 100644
--- a/drivers/watchdog/sbc_fitpc2_wdt.c
+++ b/drivers/watchdog/sbc_fitpc2_wdt.c
@@ -78,7 +78,7 @@ static int fitpc2_wdt_open(struct inode *inode, struct file *file)
 	return stream_open(inode, file);
 }
 
-static ssize_t fitpc2_wdt_write(struct file *file, const char *data,
+static ssize_t fitpc2_wdt_write(struct file *file, const char __user *data,
 						size_t len, loff_t *ppos)
 {
 	size_t i;
@@ -125,16 +125,16 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
 
 	switch (cmd) {
 	case WDIOC_GETSUPPORT:
-		ret = copy_to_user((struct watchdog_info *)arg, &ident,
+		ret = copy_to_user((struct watchdog_info __user *)arg, &ident,
 				   sizeof(ident)) ? -EFAULT : 0;
 		break;
 
 	case WDIOC_GETSTATUS:
-		ret = put_user(0, (int *)arg);
+		ret = put_user(0, (int __user *)arg);
 		break;
 
 	case WDIOC_GETBOOTSTATUS:
-		ret = put_user(0, (int *)arg);
+		ret = put_user(0, (int __user *)arg);
 		break;
 
 	case WDIOC_KEEPALIVE:
@@ -143,7 +143,7 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
 		break;
 
 	case WDIOC_SETTIMEOUT:
-		ret = get_user(time, (int *)arg);
+		ret = get_user(time, (int __user *)arg);
 		if (ret)
 			break;
 
@@ -157,7 +157,7 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
 		fallthrough;
 
 	case WDIOC_GETTIMEOUT:
-		ret = put_user(margin, (int *)arg);
+		ret = put_user(margin, (int __user *)arg);
 		break;
 	}
 
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] watchdog: sbc_fitpc2_wdt: add __user annotations
  2020-10-25 12:45 [PATCH] watchdog: sbc_fitpc2_wdt: add __user annotations Rasmus Villemoes
@ 2020-10-25 17:40 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2020-10-25 17:40 UTC (permalink / raw)
  To: Rasmus Villemoes, Wim Van Sebroeck
  Cc: kernel test robot, linux-watchdog, linux-kernel

On 10/25/20 5:45 AM, Rasmus Villemoes wrote:
> After a change to the put_user() macro on x86, kernel test robot has
> started sending me complaints (from sparse) about passing kernel
> pointers to put_user(). So add the __user annotations to the various
> casts in fitpc2_wdt_ioctl(), and while in here, also make the write
> method actually match the prototype of file_operations::write.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>

It would really be great if we can get rid of all those old drivers.
Can we mark them all as deprecated ?

Reviewed-by: Guenter Roeck <inux@roeck-us.net>

> ---
>  drivers/watchdog/sbc_fitpc2_wdt.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/watchdog/sbc_fitpc2_wdt.c b/drivers/watchdog/sbc_fitpc2_wdt.c
> index 04483d6453d6a147703e..13db71e165836eb73249 100644
> --- a/drivers/watchdog/sbc_fitpc2_wdt.c
> +++ b/drivers/watchdog/sbc_fitpc2_wdt.c
> @@ -78,7 +78,7 @@ static int fitpc2_wdt_open(struct inode *inode, struct file *file)
>  	return stream_open(inode, file);
>  }
>  
> -static ssize_t fitpc2_wdt_write(struct file *file, const char *data,
> +static ssize_t fitpc2_wdt_write(struct file *file, const char __user *data,
>  						size_t len, loff_t *ppos)
>  {
>  	size_t i;
> @@ -125,16 +125,16 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
>  
>  	switch (cmd) {
>  	case WDIOC_GETSUPPORT:
> -		ret = copy_to_user((struct watchdog_info *)arg, &ident,
> +		ret = copy_to_user((struct watchdog_info __user *)arg, &ident,
>  				   sizeof(ident)) ? -EFAULT : 0;
>  		break;
>  
>  	case WDIOC_GETSTATUS:
> -		ret = put_user(0, (int *)arg);
> +		ret = put_user(0, (int __user *)arg);
>  		break;
>  
>  	case WDIOC_GETBOOTSTATUS:
> -		ret = put_user(0, (int *)arg);
> +		ret = put_user(0, (int __user *)arg);
>  		break;
>  
>  	case WDIOC_KEEPALIVE:
> @@ -143,7 +143,7 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
>  		break;
>  
>  	case WDIOC_SETTIMEOUT:
> -		ret = get_user(time, (int *)arg);
> +		ret = get_user(time, (int __user *)arg);
>  		if (ret)
>  			break;
>  
> @@ -157,7 +157,7 @@ static long fitpc2_wdt_ioctl(struct file *file, unsigned int cmd,
>  		fallthrough;
>  
>  	case WDIOC_GETTIMEOUT:
> -		ret = put_user(margin, (int *)arg);
> +		ret = put_user(margin, (int __user *)arg);
>  		break;
>  	}
>  
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-25 17:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-25 12:45 [PATCH] watchdog: sbc_fitpc2_wdt: add __user annotations Rasmus Villemoes
2020-10-25 17:40 ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).