mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* 2.4.23: user/kernel pointer bugs (vicam.c, w9968cf.c)
@ 2004-01-07 21:47 Robert T. Johnson
  2004-01-08  2:10 ` Luca Risolia
  0 siblings, 1 reply; 2+ messages in thread
From: Robert T. Johnson @ 2004-01-07 21:47 UTC (permalink / raw)
  To: luca_ing; +Cc: jburks, linux-kernel

I think there are exploitable user/kernel pointer bugs in vicam.c and
w9968cf.c.  The bugs are very simple, so I think the patches speak for
themselves.  Thanks for looking at this, and my apologies if I've made
any mistakes.  Let me know if you have any questions.

Best,
Rob

P.S. Both of these bugs were found using the source code verification
tool, CQual, developed by Jeff Foster, myself, and others, and available
from http://www.cs.umd.edu/~jfoster/cqual/.


--- drivers/usb/vicam.c.orig	Wed Jan  7 13:26:01 2004
+++ drivers/usb/vicam.c	Mon Jan  5 17:23:11 2004
@@ -601,12 +601,19 @@
 	case VIDIOCSWIN:
 		{
 
-			struct video_window *vw = (struct video_window *) arg;
-			DBG("VIDIOCSWIN %d x %d\n", vw->width, vw->height);
+			struct video_window vw;
 
-			if ( vw->width != 320 || vw->height != 240 )
+			if (copy_from_user(&vw, arg, sizeof(vw)))
+			{
 				retval = -EFAULT;
+				break;
+			}
+
+			DBG("VIDIOCSWIN %d x %d\n", vw->width, vw->height);
 			
+			if ( vw.width != 320 || vw.height != 240 )
+				retval = -EFAULT;
+
 			break;
 		}
 


--- drivers/usb/w9968cf.c.orig	Wed Jan  7 13:32:28 2004
+++ drivers/usb/w9968cf.c	Wed Jan  7 13:44:44 2004
@@ -3552,10 +3552,13 @@
 
 	case VIDIOCSYNC: /* wait until the capture of a frame is finished */
 	{
-		unsigned int f_num = *((unsigned int *) arg);
+		unsigned int f_num;
 		struct w9968cf_frame_t* fr;
 		int err = 0;
 
+		if (copy_from_user(&f_num, arg, sizeof(f_num)))
+			return -EFAULT;
+
 		if (f_num >= cam->nbuffers) {
 			DBG(4, "Invalid frame number (%d). "
 			       "VIDIOCMCAPTURE failed.", f_num)
@@ -3620,7 +3623,8 @@
 	{
 		struct video_buffer* buffer = (struct video_buffer*)arg;
 
-		memset(buffer, 0, sizeof(struct video_buffer));
+		if (clear_user(buffer, sizeof(struct video_buffer)))
+			return -EFAULT;
 
 		DBG(5, "VIDIOCGFBUF successfully called.")
 		return 0;


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

* Re: 2.4.23: user/kernel pointer bugs (vicam.c, w9968cf.c)
  2004-01-07 21:47 2.4.23: user/kernel pointer bugs (vicam.c, w9968cf.c) Robert T. Johnson
@ 2004-01-08  2:10 ` Luca Risolia
  0 siblings, 0 replies; 2+ messages in thread
From: Luca Risolia @ 2004-01-08  2:10 UTC (permalink / raw)
  To: Robert T. Johnson; +Cc: linux-kernel

Thanks for your help.

On Wed, Jan 07, 2004 at 01:47:32PM -0800, Robert T. Johnson wrote:
> I think there are exploitable user/kernel pointer bugs in vicam.c and
> w9968cf.c.  The bugs are very simple, so I think the patches speak for
> themselves.  Thanks for looking at this, and my apologies if I've made
> any mistakes.  Let me know if you have any questions.
> 
> Best,
> Rob
> 
> P.S. Both of these bugs were found using the source code verification
> tool, CQual, developed by Jeff Foster, myself, and others, and available
> from http://www.cs.umd.edu/~jfoster/cqual/.
> 
> --- drivers/usb/w9968cf.c.orig	Wed Jan  7 13:32:28 2004
> +++ drivers/usb/w9968cf.c	Wed Jan  7 13:44:44 2004
> @@ -3552,10 +3552,13 @@
>  
>  	case VIDIOCSYNC: /* wait until the capture of a frame is finished */
>  	{
> -		unsigned int f_num = *((unsigned int *) arg);
> +		unsigned int f_num;
>  		struct w9968cf_frame_t* fr;
>  		int err = 0;
>  
> +		if (copy_from_user(&f_num, arg, sizeof(f_num)))
> +			return -EFAULT;
> +
>  		if (f_num >= cam->nbuffers) {
>  			DBG(4, "Invalid frame number (%d). "
>  			       "VIDIOCMCAPTURE failed.", f_num)
> @@ -3620,7 +3623,8 @@
>  	{
>  		struct video_buffer* buffer = (struct video_buffer*)arg;
>  
> -		memset(buffer, 0, sizeof(struct video_buffer));
> +		if (clear_user(buffer, sizeof(struct video_buffer)))
> +			return -EFAULT;
>  
>  		DBG(5, "VIDIOCGFBUF successfully called.")
>  		return 0;
> 

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

end of thread, other threads:[~2004-01-08  1:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-07 21:47 2.4.23: user/kernel pointer bugs (vicam.c, w9968cf.c) Robert T. Johnson
2004-01-08  2:10 ` Luca Risolia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome