]> xenbits.xensource.com Git - qemu-xen.git/commit
vga: check the validation of memory addr when draw text
authorlinzhecheng <linzhecheng@huawei.com>
Thu, 11 Jan 2018 13:27:24 +0000 (21:27 +0800)
committerAnthony PERARD <anthony.perard@citrix.com>
Mon, 1 Apr 2019 16:09:57 +0000 (17:09 +0100)
commitd2283aa233a0b948915a0e956a6e8af6c07a26f1
tree583620f7c5746d382f6752221d5eefd0efa45687
parent8a0df40718c2a2fce0dd4b3801b4921d7a1333f3
vga: check the validation of memory addr when draw text

Start a vm with qemu-kvm -enable-kvm -vnc :66 -smp 1 -m 1024 -hda
redhat_5.11.qcow2  -device pcnet -vga cirrus,
then use VNC client to connect to VM, and excute the code below in guest
OS will lead to qemu crash:

int main()
 {
    iopl(3);
    srand(time(NULL));
    int a,b;
    while(1){
a = rand()%0x100;
b = 0x3c0 + (rand()%0x20);
        outb(a,b);
    }
    return 0;
}

The above code is writing the registers of VGA randomly.
We can write VGA CRT controller registers index 0x0C or 0x0D
(which is the start address register) to modify the
the display memory address of the upper left pixel
or character of the screen. The address may be out of the
range of vga ram. So we should check the validation of memory address
when reading or writing it to avoid segfault.

Signed-off-by: linzhecheng <linzhecheng@huawei.com>
Message-id: 20180111132724.13744-1-linzhecheng@huawei.com
Fixes: CVE-2018-5683
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
(cherry picked from commit 191f59dc17396bb5a8da50f8c59b6e0a430711a4)
hw/display/vga.c