All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix memory corruption issues in grub_vbe_bios_getset_dac_palette()
@ 2009-09-10 19:48 Robert Millan
  2009-09-12 13:06 ` Robert Millan
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Millan @ 2009-09-10 19:48 UTC (permalink / raw)
  To: grub-devel

[-- Attachment #1: Type: text/plain, Size: 628 bytes --]


These were spotted by Colin Watson.  Unfortunately, users report that it
doesn't fix the problem for them.  But the fix almost certainly looks good,
so I'm inclined to commit it.

I'd appreciate if more people can review this code (my proposed changes and
the function as a whole).  I can't see any other vector that could introduce
corruption, other than the VBE interrupt routine itself.

-- 
Robert Millan

  The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and
  how) you may access your data; but nobody's threatening your freedom: we
  still allow you to remove your data and not access it at all."

[-- Attachment #2: grub_vbe_bios_getset_dac_palette.diff --]
[-- Type: text/x-diff, Size: 945 bytes --]

2009-09-10  Robert Millan  <rmh.grub@aybabtu.com>

	Fix memory corruption issue (spotted by Colin Watson).

	* kern/i386/pc/startup.S (grub_vbe_bios_getset_dac_palette): Fix bug
	causing returned size to be stored in an incorrect memory location.
	Fix use of uninitialized value when storing the returned size.

Index: kern/i386/pc/startup.S
===================================================================
--- kern/i386/pc/startup.S	(revision 2583)
+++ kern/i386/pc/startup.S	(working copy)
@@ -1761,18 +1761,18 @@ FUNCTION(grub_vbe_bios_getset_dac_palett
 	movw	$0x4f08, %ax
 	int	$0x10
 
-	movw	%ax, %dx	/* real_to_prot destroys %eax.  */
+	movw	%ax, %cx	/* real_to_prot destroys %eax.  */
 
 	DATA32 call	real_to_prot
 	.code32
 
 	/* Move result back to *dac_mask_size.  */
+	xorl	%eax, %eax
 	movb	%bh, %al
 	movl	%eax, (%edx)
 
 	/* Return value in %eax.  */
-	xorl	%eax, %eax
-	movw	%dx, %ax
+	movw	%cx, %ax
 
 	popl	%ebx
 	popl	%ebp

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

* Re: [PATCH] fix memory corruption issues in grub_vbe_bios_getset_dac_palette()
  2009-09-10 19:48 [PATCH] fix memory corruption issues in grub_vbe_bios_getset_dac_palette() Robert Millan
@ 2009-09-12 13:06 ` Robert Millan
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Millan @ 2009-09-12 13:06 UTC (permalink / raw)
  To: grub-devel


Committed.  Btw, revision of the existing code in this function still
welcome (not all memory corruption bugs associated with it are fixed).

On Thu, Sep 10, 2009 at 09:48:16PM +0200, Robert Millan wrote:
> 
> These were spotted by Colin Watson.  Unfortunately, users report that it
> doesn't fix the problem for them.  But the fix almost certainly looks good,
> so I'm inclined to commit it.
> 
> I'd appreciate if more people can review this code (my proposed changes and
> the function as a whole).  I can't see any other vector that could introduce
> corruption, other than the VBE interrupt routine itself.
> 
> -- 
> Robert Millan
> 
>   The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and
>   how) you may access your data; but nobody's threatening your freedom: we
>   still allow you to remove your data and not access it at all."

> 2009-09-10  Robert Millan  <rmh.grub@aybabtu.com>
> 
> 	Fix memory corruption issue (spotted by Colin Watson).
> 
> 	* kern/i386/pc/startup.S (grub_vbe_bios_getset_dac_palette): Fix bug
> 	causing returned size to be stored in an incorrect memory location.
> 	Fix use of uninitialized value when storing the returned size.
> 
> Index: kern/i386/pc/startup.S
> ===================================================================
> --- kern/i386/pc/startup.S	(revision 2583)
> +++ kern/i386/pc/startup.S	(working copy)
> @@ -1761,18 +1761,18 @@ FUNCTION(grub_vbe_bios_getset_dac_palett
>  	movw	$0x4f08, %ax
>  	int	$0x10
>  
> -	movw	%ax, %dx	/* real_to_prot destroys %eax.  */
> +	movw	%ax, %cx	/* real_to_prot destroys %eax.  */
>  
>  	DATA32 call	real_to_prot
>  	.code32
>  
>  	/* Move result back to *dac_mask_size.  */
> +	xorl	%eax, %eax
>  	movb	%bh, %al
>  	movl	%eax, (%edx)
>  
>  	/* Return value in %eax.  */
> -	xorl	%eax, %eax
> -	movw	%dx, %ax
> +	movw	%cx, %ax
>  
>  	popl	%ebx
>  	popl	%ebp

> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel


-- 
Robert Millan

  The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and
  how) you may access your data; but nobody's threatening your freedom: we
  still allow you to remove your data and not access it at all."



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

end of thread, other threads:[~2009-09-12 13:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-10 19:48 [PATCH] fix memory corruption issues in grub_vbe_bios_getset_dac_palette() Robert Millan
2009-09-12 13:06 ` Robert Millan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.