xref: /qemu/include/qemu/userfaultfd.h (revision 84615a19)
1 /*
2  * Linux UFFD-WP support
3  *
4  * Copyright Virtuozzo GmbH, 2020
5  *
6  * Authors:
7  *  Andrey Gruzdev   <andrey.gruzdev@virtuozzo.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or
10  * later.  See the COPYING file in the top-level directory.
11  */
12 
13 #ifndef USERFAULTFD_H
14 #define USERFAULTFD_H
15 
16 #ifdef CONFIG_LINUX
17 
18 #include "qemu/osdep.h"
19 #include "exec/hwaddr.h"
20 #include <linux/userfaultfd.h>
21 
22 /**
23  * uffd_open(): Open an userfaultfd handle for current context.
24  *
25  * @flags: The flags we want to pass in when creating the handle.
26  *
27  * Returns: the uffd handle if >=0, or <0 if error happens.
28  */
29 int uffd_open(int flags);
30 int uffd_query_features(uint64_t *features);
31 int uffd_create_fd(uint64_t features, bool non_blocking);
32 void uffd_close_fd(int uffd_fd);
33 int uffd_register_memory(int uffd_fd, void *addr, uint64_t length,
34         uint64_t mode, uint64_t *ioctls);
35 int uffd_unregister_memory(int uffd_fd, void *addr, uint64_t length);
36 int uffd_change_protection(int uffd_fd, void *addr, uint64_t length,
37         bool wp, bool dont_wake);
38 int uffd_copy_page(int uffd_fd, void *dst_addr, void *src_addr,
39         uint64_t length, bool dont_wake);
40 int uffd_zero_page(int uffd_fd, void *addr, uint64_t length, bool dont_wake);
41 int uffd_wakeup(int uffd_fd, void *addr, uint64_t length);
42 int uffd_read_events(int uffd_fd, struct uffd_msg *msgs, int count);
43 bool uffd_poll_events(int uffd_fd, int tmo);
44 
45 #endif /* CONFIG_LINUX */
46 
47 #endif /* USERFAULTFD_H */
48