1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/******************************************************************************
*
* tools/libxc/xc_mem_access.c
*
* Interface to low-level memory access mode functionality
*
* Copyright (c) 2011 Virtuata, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; If not, see <http://www.gnu.org/licenses/>.
*/
#include "xc_private.h"
#include <xen/memory.h>
int xc_set_mem_access(xc_interface *xch,
uint32_t domain_id,
xenmem_access_t access,
uint64_t first_pfn,
uint32_t nr)
{
xen_mem_access_op_t mao =
{
.op = XENMEM_access_op_set_access,
.domid = domain_id,
.access = access,
.pfn = first_pfn,
.nr = nr
};
return xc_memory_op(xch, XENMEM_access_op, &mao, sizeof(mao));
}
int xc_set_mem_access_multi(xc_interface *xch,
uint32_t domain_id,
uint8_t *access,
uint64_t *pages,
uint32_t nr)
{
DECLARE_HYPERCALL_BOUNCE(access, nr, XC_HYPERCALL_BUFFER_BOUNCE_IN);
DECLARE_HYPERCALL_BOUNCE(pages, nr * sizeof(uint64_t),
XC_HYPERCALL_BUFFER_BOUNCE_IN);
int rc;
xen_mem_access_op_t mao =
{
.op = XENMEM_access_op_set_access_multi,
.domid = domain_id,
.access = XENMEM_access_default + 1, /* Invalid value */
.pfn = ~0UL, /* Invalid GFN */
.nr = nr,
};
if ( xc_hypercall_bounce_pre(xch, pages) ||
xc_hypercall_bounce_pre(xch, access) )
{
PERROR("Could not bounce memory for XENMEM_access_op_set_access_multi");
return -1;
}
set_xen_guest_handle(mao.pfn_list, pages);
set_xen_guest_handle(mao.access_list, access);
rc = xc_memory_op(xch, XENMEM_access_op, &mao, sizeof(mao));
xc_hypercall_bounce_post(xch, access);
xc_hypercall_bounce_post(xch, pages);
return rc;
}
int xc_get_mem_access(xc_interface *xch,
uint32_t domain_id,
uint64_t pfn,
xenmem_access_t *access)
{
int rc;
xen_mem_access_op_t mao =
{
.op = XENMEM_access_op_get_access,
.domid = domain_id,
.pfn = pfn
};
rc = xc_memory_op(xch, XENMEM_access_op, &mao, sizeof(mao));
if ( rc == 0 )
*access = mao.access;
return rc;
}
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
|