mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
migration: introduce UFFD-WP low-level interface helpers
Glue code to the userfaultfd kernel implementation. Querying feature support, createing file descriptor, feature control, memory region registration, IOCTLs on registered registered regions. Signed-off-by: Andrey Gruzdev <andrey.gruzdev@virtuozzo.com> Reviewed-by: Peter Xu <peterx@redhat.com> Message-Id: <20210129101407.103458-3-andrey.gruzdev@virtuozzo.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Fixed up range.start casting for 32bit
This commit is contained in:
parent
6e8c25b4c6
commit
0e9b5cd6b2
5 changed files with 391 additions and 0 deletions
35
include/qemu/userfaultfd.h
Normal file
35
include/qemu/userfaultfd.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* Linux UFFD-WP support
|
||||
*
|
||||
* Copyright Virtuozzo GmbH, 2020
|
||||
*
|
||||
* Authors:
|
||||
* Andrey Gruzdev <andrey.gruzdev@virtuozzo.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or
|
||||
* later. See the COPYING file in the top-level directory.
|
||||
*/
|
||||
|
||||
#ifndef USERFAULTFD_H
|
||||
#define USERFAULTFD_H
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "exec/hwaddr.h"
|
||||
#include <linux/userfaultfd.h>
|
||||
|
||||
int uffd_query_features(uint64_t *features);
|
||||
int uffd_create_fd(uint64_t features, bool non_blocking);
|
||||
void uffd_close_fd(int uffd_fd);
|
||||
int uffd_register_memory(int uffd_fd, void *addr, uint64_t length,
|
||||
uint64_t mode, uint64_t *ioctls);
|
||||
int uffd_unregister_memory(int uffd_fd, void *addr, uint64_t length);
|
||||
int uffd_change_protection(int uffd_fd, void *addr, uint64_t length,
|
||||
bool wp, bool dont_wake);
|
||||
int uffd_copy_page(int uffd_fd, void *dst_addr, void *src_addr,
|
||||
uint64_t length, bool dont_wake);
|
||||
int uffd_zero_page(int uffd_fd, void *addr, uint64_t length, bool dont_wake);
|
||||
int uffd_wakeup(int uffd_fd, void *addr, uint64_t length);
|
||||
int uffd_read_events(int uffd_fd, struct uffd_msg *msgs, int count);
|
||||
bool uffd_poll_events(int uffd_fd, int tmo);
|
||||
|
||||
#endif /* USERFAULTFD_H */
|
Loading…
Add table
Add a link
Reference in a new issue