Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 2 | #include <linux/types.h> |
| 3 | #include <linux/crash_dump.h> |
| 4 | |
| 5 | #include <xen/interface/xen.h> |
| 6 | #include <xen/hvm.h> |
| 7 | |
| 8 | #include "mmu.h" |
| 9 | |
| 10 | #ifdef CONFIG_PROC_VMCORE |
| 11 | /* |
David Hildenbrand | 434b90f | 2021-11-08 18:31:33 -0800 | [diff] [blame] | 12 | * The kdump kernel has to check whether a pfn of the crashed kernel |
| 13 | * was a ballooned page. vmcore is using this function to decide |
| 14 | * whether to access a pfn of the crashed kernel. |
David Hildenbrand | cc5f2704 | 2021-11-08 18:31:48 -0800 | [diff] [blame] | 15 | * Returns "false" if the pfn is not backed by a RAM page, the caller may |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 16 | * handle the pfn special in this case. |
| 17 | */ |
David Hildenbrand | cc5f2704 | 2021-11-08 18:31:48 -0800 | [diff] [blame] | 18 | static bool xen_vmcore_pfn_is_ram(struct vmcore_cb *cb, unsigned long pfn) |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 19 | { |
| 20 | struct xen_hvm_get_mem_type a = { |
| 21 | .domid = DOMID_SELF, |
| 22 | .pfn = pfn, |
| 23 | }; |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 24 | |
David Hildenbrand | 934fadf | 2021-11-08 18:31:41 -0800 | [diff] [blame] | 25 | if (HYPERVISOR_hvm_op(HVMOP_get_mem_type, &a)) { |
| 26 | pr_warn_once("Unexpected HVMOP_get_mem_type failure\n"); |
David Hildenbrand | cc5f2704 | 2021-11-08 18:31:48 -0800 | [diff] [blame] | 27 | return true; |
David Hildenbrand | 934fadf | 2021-11-08 18:31:41 -0800 | [diff] [blame] | 28 | } |
David Hildenbrand | d452a48 | 2021-11-08 18:31:37 -0800 | [diff] [blame] | 29 | return a.mem_type != HVMMEM_mmio_dm; |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 30 | } |
David Hildenbrand | cc5f2704 | 2021-11-08 18:31:48 -0800 | [diff] [blame] | 31 | static struct vmcore_cb xen_vmcore_cb = { |
| 32 | .pfn_is_ram = xen_vmcore_pfn_is_ram, |
| 33 | }; |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 34 | #endif |
| 35 | |
| 36 | static void xen_hvm_exit_mmap(struct mm_struct *mm) |
| 37 | { |
| 38 | struct xen_hvm_pagetable_dying a; |
| 39 | int rc; |
| 40 | |
| 41 | a.domid = DOMID_SELF; |
| 42 | a.gpa = __pa(mm->pgd); |
| 43 | rc = HYPERVISOR_hvm_op(HVMOP_pagetable_dying, &a); |
| 44 | WARN_ON_ONCE(rc < 0); |
| 45 | } |
| 46 | |
| 47 | static int is_pagetable_dying_supported(void) |
| 48 | { |
| 49 | struct xen_hvm_pagetable_dying a; |
| 50 | int rc = 0; |
| 51 | |
| 52 | a.domid = DOMID_SELF; |
| 53 | a.gpa = 0x00; |
| 54 | rc = HYPERVISOR_hvm_op(HVMOP_pagetable_dying, &a); |
| 55 | if (rc < 0) { |
| 56 | printk(KERN_DEBUG "HVMOP_pagetable_dying not supported\n"); |
| 57 | return 0; |
| 58 | } |
| 59 | return 1; |
| 60 | } |
| 61 | |
| 62 | void __init xen_hvm_init_mmu_ops(void) |
| 63 | { |
| 64 | if (is_pagetable_dying_supported()) |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 65 | pv_ops.mmu.exit_mmap = xen_hvm_exit_mmap; |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 66 | #ifdef CONFIG_PROC_VMCORE |
David Hildenbrand | cc5f2704 | 2021-11-08 18:31:48 -0800 | [diff] [blame] | 67 | register_vmcore_cb(&xen_vmcore_cb); |
Vitaly Kuznetsov | feef87eb | 2017-03-14 18:35:47 +0100 | [diff] [blame] | 68 | #endif |
| 69 | } |