Explorar o código

xen: check for kernel memory conflicting with memory layout

Checks whether the pre-allocated memory of the loaded kernel is in
conflict with the target memory map. If this is the case, just panic
instead of run into problems later, as there is nothing we can do
to repair this situation.

Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
Acked-by: Konrad Rzeszutek Wilk <Konrad.wilk@oracle.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Juergen Gross %!s(int64=10) %!d(string=hai) anos
pai
achega
808fdb7193
Modificáronse 1 ficheiros con 12 adicións e 0 borrados
  1. 12 0
      arch/x86/xen/setup.c

+ 12 - 0
arch/x86/xen/setup.c

@@ -27,6 +27,7 @@
 #include <xen/interface/memory.h>
 #include <xen/interface/memory.h>
 #include <xen/interface/physdev.h>
 #include <xen/interface/physdev.h>
 #include <xen/features.h>
 #include <xen/features.h>
+#include <xen/hvc-console.h>
 #include "xen-ops.h"
 #include "xen-ops.h"
 #include "vdso.h"
 #include "vdso.h"
 #include "p2m.h"
 #include "p2m.h"
@@ -790,6 +791,17 @@ char * __init xen_memory_setup(void)
 
 
 	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
 	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
 
 
+	/*
+	 * Check whether the kernel itself conflicts with the target E820 map.
+	 * Failing now is better than running into weird problems later due
+	 * to relocating (and even reusing) pages with kernel text or data.
+	 */
+	if (xen_is_e820_reserved(__pa_symbol(_text),
+			__pa_symbol(__bss_stop) - __pa_symbol(_text))) {
+		xen_raw_console_write("Xen hypervisor allocated kernel memory conflicts with E820 map\n");
+		BUG();
+	}
+
 	xen_reserve_xen_mfnlist();
 	xen_reserve_xen_mfnlist();
 
 
 	/*
 	/*