mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
42aa12e74e
The comm page which is mapped into the guest kernel address space at 0x0 has the unfortunate side effect of allowing guest kernel NULL pointer dereferences to succeed. The only constraint on this address is that it must be within 32KiB of 0x0, so that single lw/sw instructions (which have 16-bit signed offset fields) can be used to access it, using the zero register as a base. So lets move the comm page as high as possible within that constraint so that 0x0 can be left unmapped, at least for page sizes < 32KiB. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Radim Krčmář <rkrcmar@redhat.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Cc: kvm@vger.kernel.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
34 lines
886 B
C
34 lines
886 B
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* commpage, currently used for Virtual COP0 registers.
|
|
* Mapped into the guest kernel @ KVM_GUEST_COMMPAGE_ADDR.
|
|
*
|
|
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
|
|
* Authors: Sanjay Lal <sanjayl@kymasys.com>
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
#include <linux/err.h>
|
|
#include <linux/module.h>
|
|
#include <linux/vmalloc.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/bootmem.h>
|
|
#include <asm/page.h>
|
|
#include <asm/cacheflush.h>
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <linux/kvm_host.h>
|
|
|
|
#include "commpage.h"
|
|
|
|
void kvm_mips_commpage_init(struct kvm_vcpu *vcpu)
|
|
{
|
|
struct kvm_mips_commpage *page = vcpu->arch.kseg0_commpage;
|
|
|
|
/* Specific init values for fields */
|
|
vcpu->arch.cop0 = &page->cop0;
|
|
}
|