]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/x86/include/asm/kvm_page_track.h
spi-imx: Implements handling of the SPI_READY mode flag.
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / include / asm / kvm_page_track.h
1 #ifndef _ASM_X86_KVM_PAGE_TRACK_H
2 #define _ASM_X86_KVM_PAGE_TRACK_H
3
4 enum kvm_page_track_mode {
5 KVM_PAGE_TRACK_WRITE,
6 KVM_PAGE_TRACK_MAX,
7 };
8
9 /*
10 * The notifier represented by @kvm_page_track_notifier_node is linked into
11 * the head which will be notified when guest is triggering the track event.
12 *
13 * Write access on the head is protected by kvm->mmu_lock, read access
14 * is protected by track_srcu.
15 */
16 struct kvm_page_track_notifier_head {
17 struct srcu_struct track_srcu;
18 struct hlist_head track_notifier_list;
19 };
20
21 struct kvm_page_track_notifier_node {
22 struct hlist_node node;
23
24 /*
25 * It is called when guest is writing the write-tracked page
26 * and write emulation is finished at that time.
27 *
28 * @vcpu: the vcpu where the write access happened.
29 * @gpa: the physical address written by guest.
30 * @new: the data was written to the address.
31 * @bytes: the written length.
32 * @node: this node
33 */
34 void (*track_write)(struct kvm_vcpu *vcpu, gpa_t gpa, const u8 *new,
35 int bytes, struct kvm_page_track_notifier_node *node);
36 /*
37 * It is called when memory slot is being moved or removed
38 * users can drop write-protection for the pages in that memory slot
39 *
40 * @kvm: the kvm where memory slot being moved or removed
41 * @slot: the memory slot being moved or removed
42 * @node: this node
43 */
44 void (*track_flush_slot)(struct kvm *kvm, struct kvm_memory_slot *slot,
45 struct kvm_page_track_notifier_node *node);
46 };
47
48 void kvm_page_track_init(struct kvm *kvm);
49
50 void kvm_page_track_free_memslot(struct kvm_memory_slot *free,
51 struct kvm_memory_slot *dont);
52 int kvm_page_track_create_memslot(struct kvm_memory_slot *slot,
53 unsigned long npages);
54
55 void kvm_slot_page_track_add_page(struct kvm *kvm,
56 struct kvm_memory_slot *slot, gfn_t gfn,
57 enum kvm_page_track_mode mode);
58 void kvm_slot_page_track_remove_page(struct kvm *kvm,
59 struct kvm_memory_slot *slot, gfn_t gfn,
60 enum kvm_page_track_mode mode);
61 bool kvm_page_track_is_active(struct kvm_vcpu *vcpu, gfn_t gfn,
62 enum kvm_page_track_mode mode);
63
64 void
65 kvm_page_track_register_notifier(struct kvm *kvm,
66 struct kvm_page_track_notifier_node *n);
67 void
68 kvm_page_track_unregister_notifier(struct kvm *kvm,
69 struct kvm_page_track_notifier_node *n);
70 void kvm_page_track_write(struct kvm_vcpu *vcpu, gpa_t gpa, const u8 *new,
71 int bytes);
72 void kvm_page_track_flush_slot(struct kvm *kvm, struct kvm_memory_slot *slot);
73 #endif