Hi,
I found a bug in the vesafb driver. The video memory size which is
reserved by vesafb do not correspond to the really needed memory.
Currently the needed memory is calculated using
screen_info.lfb_width * vesafb_defined.bits_per_pixel >> 3
This works with most cards because it's usually equal to
vesafb_fix.line_length.
But with some cards (voodoo3 in 24 bits mode) line_length is
greater than width * bytes_per_pixel (probably for alignment
purpose, line_length = 4096 on voodoo3 800x600-24).
Su currently, with such cards, writting in the second buffer
(as memory is allocated for double buffering) can go past the
end of reserved memory, overwritting some other memory area
and leading to a kernel crash.
So I wrote this tiny patch wich correct this bug.
I tested it successfully with different video cards (Matrox,
Nvidia, Sis, 3dfx) in different modes.
I don't know if it's the right place to send a patch for vesafb ?
Could you please direct me to the right place if it's not ?
Aurel
Hi,
I found a bug in the vesafb driver. The video memory size which is
reserved by vesafb do not correspond to the really needed memory.
Oh, while we are at it, I've hacked a patch as well some time ago.
All the size calculation in vesafb is a bit tricky. I've tried to
cleanup that a bit and fix some bugs along the way, but never managed
to submit it. I think the boundary check cleanups should also fix the
bug you've seen.
Ok, here we go ...
The patch does introduce some variables for the different sizes used
and add some comments what they are good for, so it's easier to see
what is actually going on:
- size_vmode: minimum memory required for the video mode.
- size_total: the total amount of memory we have.
- size_remap: the amount of memory vesafb is going to use
(and allocate kernel address space for). By default this
is size_vmode*2, so fbcon has some room to use.
For ressource allocation + mtrr entries size_total video memory is
used through. The later is important for X11 performance, as the
X-Server will try to create a mtrr entry for the whole video memory
and fail in case vesafb creates a small one for size_remap only.
Gerd
Index: linux-2.6.8/drivers/video/vesafb.c
===================================================================
@@ -218,6 +218,9 @@ static int __init vesafb_probe(struct destructplatform_device*dev=to_platform_device(device);structfb_info*info;inti,err;+unsignedintsize_vmode;+unsignedintsize_remap;+unsignedintsize_total;if(screen_info.orig_video_isVGA!=VIDEO_TYPE_VLFB)return-ENXIO;
@@ -229,32 +232,37 @@ static int __init vesafb_probe(struct devesafb_defined.xres=screen_info.lfb_width;vesafb_defined.yres=screen_info.lfb_height;vesafb_fix.line_length=screen_info.lfb_linelength;--/* Allocate enough memory for double buffering */-vesafb_fix.smem_len=screen_info.lfb_width*screen_info.lfb_height*vesafb_defined.bits_per_pixel>>2;--/* check that we don't remap more memory than old cards have */-if(vesafb_fix.smem_len>(screen_info.lfb_size*65536))-vesafb_fix.smem_len=screen_info.lfb_size*65536;--/* Set video size according to vram boot option */-if(vram)-vesafb_fix.smem_len=vram*1024*1024;-vesafb_fix.visual=(vesafb_defined.bits_per_pixel==8)?FB_VISUAL_PSEUDOCOLOR:FB_VISUAL_TRUECOLOR;-/* limit framebuffer size to 16 MB. Otherwise we'll eat tons of-*kerneladdressspacefornothingifthegfxcardhasalotof-*memory(>=128MBisn'tuncommonthesedays...)*/-if(vesafb_fix.smem_len>16*1024*1024)-vesafb_fix.smem_len=16*1024*1024;+/* size_vmode -- that is the amount of memory needed for the+*usedvideomode,i.e.theminimumamountof+*memoryweneed.*/+size_vmode=(vesafb_defined.xres*vesafb_defined.yres*+vesafb_defined.bits_per_pixel)>>3;++/* size_total -- all video memory we have. Used for mtrr+*entriesandboundschecking.*/+size_total=screen_info.lfb_size*65536;+if(size_total<size_vmode)+size_total=size_vmode;+if(vram)+size_total=vram*1024*1024;++/* size_remap -- the amount of video memory we are going to+*useforvesafb.Withmoderncardsitisno+*optiontosimplyusesize_totalasthat+*wastesplentyofkerneladdressspace.*/+size_remap=size_vmode*2;+if(size_remap>size_total)+size_remap=size_total;+vesafb_fix.smem_len=size_remap;#ifndef __i386__screen_info.vesapm_seg=0;#endif-if(!request_mem_region(vesafb_fix.smem_start,vesafb_fix.smem_len,"vesafb")){+if(!request_mem_region(vesafb_fix.smem_start,size_total,"vesafb")){printk(KERN_WARNING"vesafb: abort, cannot reserve video memory at 0x%lx\n",vesafb_fix.smem_start);
@@ -279,8 +287,10 @@ static int __init vesafb_probe(struct degotoerr;}-printk(KERN_INFO"vesafb: framebuffer at 0x%lx, mapped to 0x%p, size %dk\n",-vesafb_fix.smem_start,info->screen_base,vesafb_fix.smem_len/1024);+printk(KERN_INFO"vesafb: framebuffer at 0x%lx, mapped to 0x%p, "+"using %dk, total %dk\n",+vesafb_fix.smem_start,info->screen_base,+size_remap/1024,size_total/1024);printk(KERN_INFO"vesafb: mode is %dx%dx%d, linelength=%d, pages=%d\n",vesafb_defined.xres,vesafb_defined.yres,vesafb_defined.bits_per_pixel,vesafb_fix.line_length,screen_info.pages);
@@ -364,7 +374,7 @@ static int __init vesafb_probe(struct derequest_region(0x3c0,32,"vesafb");if(mtrr){-inttemp_size=vesafb_fix.smem_len;+inttemp_size=size_total;/* Find the largest power-of-two */while(temp_size&(temp_size-1))temp_size&=(temp_size-1);
@@ -395,7 +405,7 @@ static int __init vesafb_probe(struct dereturn0;err:framebuffer_release(info);-release_mem_region(vesafb_fix.smem_start,vesafb_fix.smem_len);+release_mem_region(vesafb_fix.smem_start,size_total);returnerr;}
From: Antonino A. Daplas <hidden> Date: 2004-10-01 20:23:52
On Friday 01 October 2004 23:48, Gerd Knorr wrote:
+ /* size_vmode -- that is the amount of memory needed for the
+ * used video mode, i.e. the minimum amount of
+ * memory we need. */
+ size_vmode = (vesafb_defined.xres * vesafb_defined.yres *
+ vesafb_defined.bits_per_pixel) >> 3;
+
+ /* size_total -- all video memory we have. Used for mtrr
+ * entries and bounds checking. */
+ size_total = screen_info.lfb_size * 65536;
+ if (size_total < size_vmode)
+ size_total = size_vmode;
+ if (vram)
+ size_total = vram * 1024 * 1024;
+
+ /* size_remap -- the amount of video memory we are going to
+ * use for vesafb. With modern cards it is no
+ * option to simply use size_total as that
+ * wastes plenty of kernel address space. */
+ size_remap = size_vmode * 2;
+ if (size_remap > size_total)
+ size_remap = size_total;
+ vesafb_fix.smem_len = size_remap;
Probably a typo, but shouldn't it be...
size_remap = size_vmode * 2;
if (vram)
size_remap = vram * 1024 * 1024;
if (size_remap > size_total)
size_remap = size_total
... so vram doesn't mess up with mtrr and user and fbcon can multibuffer
On 01 Oct 2004 17:48:21 +0200
Gerd Knorr [off-list ref] wrote:
Aurelien Jacobs [off-list ref] writes:
quoted
Hi,
I found a bug in the vesafb driver. The video memory size which is
reserved by vesafb do not correspond to the really needed memory.
Oh, while we are at it, I've hacked a patch as well some time ago.
All the size calculation in vesafb is a bit tricky. I've tried to
cleanup that a bit and fix some bugs along the way, but never managed
to submit it. I think the boundary check cleanups should also fix the
bug you've seen.
Unfortunately not :-(
Your patch still keep the same way to calculate minimum memory
required for the video mode (based on xres*bytes_per_pixel). It's
wrong ! With video cards such as 3dfx in 24 bits mode, line_length
is bigger than xres*bytes_per_pixel (probably for alignment pupose).
So not enough memory is allocated, leading to a crash.
Here is an updated version of your patch with the right way to
calculate size_vmode.
Aurel
From: Andrew Morton <hidden> Date: 2004-10-03 02:03:09
(Gerd re-added to Cc)
Aurelien Jacobs [off-list ref] wrote:
On 01 Oct 2004 17:48:21 +0200
Gerd Knorr [off-list ref] wrote:
quoted
Aurelien Jacobs [off-list ref] writes:
quoted
Hi,
I found a bug in the vesafb driver. The video memory size which is
reserved by vesafb do not correspond to the really needed memory.
Oh, while we are at it, I've hacked a patch as well some time ago.
All the size calculation in vesafb is a bit tricky. I've tried to
cleanup that a bit and fix some bugs along the way, but never managed
to submit it. I think the boundary check cleanups should also fix the
bug you've seen.
Unfortunately not :-(
Your patch still keep the same way to calculate minimum memory
required for the video mode (based on xres*bytes_per_pixel). It's
wrong ! With video cards such as 3dfx in 24 bits mode, line_length
is bigger than xres*bytes_per_pixel (probably for alignment pupose).
So not enough memory is allocated, leading to a crash.
Here is an updated version of your patch with the right way to
calculate size_vmode.
OK, I'll drop the patch which I added to -mm. Could someone please resend
the final version when it's all sorted out?
Thanks.
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
From: Antonino A. Daplas <hidden> Date: 2004-10-03 08:48:06
On Sunday 03 October 2004 09:59, Andrew Morton wrote:
(Gerd re-added to Cc)
Aurelien Jacobs [off-list ref] wrote:
quoted
On 01 Oct 2004 17:48:21 +0200
Gerd Knorr [off-list ref] wrote:
quoted
Aurelien Jacobs [off-list ref] writes:
quoted
Hi,
I found a bug in the vesafb driver. The video memory size which is
reserved by vesafb do not correspond to the really needed memory.
Oh, while we are at it, I've hacked a patch as well some time ago.
All the size calculation in vesafb is a bit tricky. I've tried to
cleanup that a bit and fix some bugs along the way, but never managed
to submit it. I think the boundary check cleanups should also fix the
bug you've seen.
Unfortunately not :-(
Your patch still keep the same way to calculate minimum memory
required for the video mode (based on xres*bytes_per_pixel). It's
wrong ! With video cards such as 3dfx in 24 bits mode, line_length
is bigger than xres*bytes_per_pixel (probably for alignment pupose).
So not enough memory is allocated, leading to a crash.
Here is an updated version of your patch with the right way to
calculate size_vmode.
OK, I'll drop the patch which I added to -mm. Could someone please resend
the final version when it's all sorted out?
Yes, Aurelien is correct, calculating the memory needed for a mode is more
accurate if line_length * yres is used.
I'll submit a patch combining Gerd's, Aurelien's and a few of my changes
later today.
Tony
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
+ /* size_total -- all video memory we have. Used for mtrr
+ * entries and bounds checking. */
+ size_total = screen_info.lfb_size * 65536;
+ if (size_total < size_vmode)
+ size_total = size_vmode;
+ if (vram)
+ size_total = vram * 1024 * 1024;
Probably a typo, but shouldn't it be...
size_remap = size_vmode * 2;
if (vram)
size_remap = vram * 1024 * 1024;
if (size_remap > size_total)
size_remap = size_total
No, it's intentional. Some bioses seem to report bogous values for the
total amount of memory, so you can use vram to fixup that. The
"size_total < size_vmode" check which is kida silly is there for the
very same reason: on a bug-free bios it should never ever trigger, but
looks like it is needed neverless.
We might want to add another parameter to allow the user to adjust
size_remap through. I'll prepare an updated patch one later today,
with other issue (line_length != width * depth) fixed as well.
Gerd
--
return -ENOSIG;