/usr/include/xendevicemodel.h is in libxen-dev 4.9.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | /*
* Copyright (c) 2017 Citrix Systems 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;
* version 2.1 of the License.
*
* 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/>.
*/
#ifndef XENDEVICEMODEL_H
#define XENDEVICEMODEL_H
#ifdef __XEN_TOOLS__
#include <stdint.h>
#include <xen/xen.h>
#include <xen/hvm/dm_op.h>
#include <xen/hvm/hvm_op.h>
/* Callers who don't care don't need to #include <xentoollog.h> */
struct xentoollog_logger;
typedef struct xendevicemodel_handle xendevicemodel_handle;
xendevicemodel_handle *xendevicemodel_open(struct xentoollog_logger *logger,
unsigned int open_flags);
int xendevicemodel_close(xendevicemodel_handle *dmod);
/*
* IOREQ Server API. (See section on IOREQ Servers in public/hvm_op.h).
*/
/**
* This function instantiates an IOREQ Server.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm handle_bufioreq how should the IOREQ Server handle buffered
* requests (HVM_IOREQSRV_BUFIOREQ_*)?
* @parm id pointer to an ioservid_t to receive the IOREQ Server id.
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_create_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, int handle_bufioreq,
ioservid_t *id);
/**
* This function retrieves the necessary information to allow an
* emulator to use an IOREQ Server.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm ioreq_pfn pointer to a xen_pfn_t to receive the synchronous ioreq
* gmfn
* @parm bufioreq_pfn pointer to a xen_pfn_t to receive the buffered ioreq
* gmfn
* @parm bufioreq_port pointer to a evtchn_port_t to receive the buffered
* ioreq event channel
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_get_ioreq_server_info(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id,
xen_pfn_t *ioreq_pfn, xen_pfn_t *bufioreq_pfn,
evtchn_port_t *bufioreq_port);
/**
* This function registers a range of memory or I/O ports for emulation.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm is_mmio is this a range of ports or memory
* @parm start start of range
* @parm end end of range (inclusive).
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_map_io_range_to_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id, int is_mmio,
uint64_t start, uint64_t end);
/**
* This function deregisters a range of memory or I/O ports for emulation.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm is_mmio is this a range of ports or memory
* @parm start start of range
* @parm end end of range (inclusive).
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_unmap_io_range_from_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id, int is_mmio,
uint64_t start, uint64_t end);
/**
* This function registers/deregisters a memory type for emulation.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced.
* @parm id the IOREQ Server id.
* @parm type the memory type to be emulated. For now, only HVMMEM_ioreq_server
* is supported, and in the future new types can be introduced, e.g.
* HVMMEM_ioreq_serverX mapped to ioreq server X.
* @parm flags operations to be emulated; 0 for unmap. For now, only write
* operations will be emulated and can be extended to emulate
* read ones in the future.
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_map_mem_type_to_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id, uint16_t type,
uint32_t flags);
/**
* This function registers a PCI device for config space emulation.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm segment the PCI segment of the device
* @parm bus the PCI bus of the device
* @parm device the 'slot' number of the device
* @parm function the function number of the device
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_map_pcidev_to_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id,
uint16_t segment, uint8_t bus, uint8_t device, uint8_t function);
/**
* This function deregisters a PCI device for config space emulation.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm segment the PCI segment of the device
* @parm bus the PCI bus of the device
* @parm device the 'slot' number of the device
* @parm function the function number of the device
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_unmap_pcidev_from_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id,
uint16_t segment, uint8_t bus, uint8_t device, uint8_t function);
/**
* This function destroys an IOREQ Server.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_destroy_ioreq_server(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id);
/**
* This function sets IOREQ Server state. An IOREQ Server
* will not be passed emulation requests until it is in
* the enabled state.
* Note that the contents of the ioreq_pfn and bufioreq_pfn are
* not meaningful until the IOREQ Server is in the enabled state.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm id the IOREQ Server id.
* @parm enabled the state.
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_set_ioreq_server_state(
xendevicemodel_handle *dmod, domid_t domid, ioservid_t id, int enabled);
/**
* This function sets the level of INTx pin of an emulated PCI device.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm segment the PCI segment number of the emulated device
* @parm bus the PCI bus number of the emulated device
* @parm device the PCI device number of the emulated device
* @parm intx the INTx pin to modify (0 => A .. 3 => D)
* @parm level the level (1 for asserted, 0 for de-asserted)
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_set_pci_intx_level(
xendevicemodel_handle *dmod, domid_t domid, uint16_t segment,
uint8_t bus, uint8_t device, uint8_t intx, unsigned int level);
/**
* This function sets the level of an ISA IRQ line.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm irq the IRQ number (0 - 15)
* @parm level the level (1 for asserted, 0 for de-asserted)
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_set_isa_irq_level(
xendevicemodel_handle *dmod, domid_t domid, uint8_t irq,
unsigned int level);
/**
* This function maps a PCI INTx line to a an IRQ line.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm line the INTx line (0 => A .. 3 => B)
* @parm irq the IRQ number (0 - 15)
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_set_pci_link_route(
xendevicemodel_handle *dmod, domid_t domid, uint8_t link, uint8_t irq);
/**
* This function injects an MSI into a guest.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm msi_addr the MSI address (0xfeexxxxx)
* @parm msi_data the MSI data
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_inject_msi(
xendevicemodel_handle *dmod, domid_t domid, uint64_t msi_addr,
uint32_t msi_data);
/**
* This function enables tracking of changes in the VRAM area.
*
* The following is done atomically:
* - get the dirty bitmap since the last call.
* - set up dirty tracking area for period up to the next call.
* - clear the dirty tracking area.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm first_pfn the start of the area to track
* @parm nr the number of pages to track
* @parm dirty_bitmal a pointer to the bitmap to be updated
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_track_dirty_vram(
xendevicemodel_handle *dmod, domid_t domid, uint64_t first_pfn,
uint32_t nr, unsigned long *dirty_bitmap);
/**
* This function notifies the hypervisor that a set of contiguous
* domain pages have been modified.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm first_pfn the start of the modified area
* @parm nr the number of pages modified
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_modified_memory(
xendevicemodel_handle *dmod, domid_t domid, uint64_t first_pfn,
uint32_t nr);
/**
* This function notifies the hypervisor that a set of discontiguous
* domain pages have been modified.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm extents an array of extent structs, which each hold
a start_pfn and nr (number of pfns).
* @parm nr the number of extents in the array
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_modified_memory_bulk(
xendevicemodel_handle *dmod, domid_t domid,
struct xen_dm_op_modified_memory_extent extents[], uint32_t nr);
/**
* This function notifies the hypervisor that a set of domain pages
* are to be treated in a specific way. (See the definition of
* hvmmem_type_t).
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm mem_type determines how the set is to be treated
* @parm first_pfn the start of the set
* @parm nr the number of pages in the set
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_set_mem_type(
xendevicemodel_handle *dmod, domid_t domid, hvmmem_type_t mem_type,
uint64_t first_pfn, uint32_t nr);
/**
* This function injects an event into a vCPU to take effect the next
* time it resumes.
*
* @parm dmod a handle to an open devicemodel interface.
* @parm domid the domain id to be serviced
* @parm vcpu the vcpu id
* @parm vector the interrupt vector
* @parm type the event type (see the definition of enum x86_event_type)
* @parm error_code the error code or ~0 to skip
* @parm insn_len the instruction length
* @parm cr2 the value of CR2 for page faults
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_inject_event(
xendevicemodel_handle *dmod, domid_t domid, int vcpu, uint8_t vector,
uint8_t type, uint32_t error_code, uint8_t insn_len, uint64_t cr2);
/**
* This function restricts the use of this handle to the specified
* domain.
*
* @parm dmod handle to the open devicemodel interface
* @parm domid the domain id
* @return 0 on success, -1 on failure.
*/
int xendevicemodel_restrict(xendevicemodel_handle *dmod, domid_t domid);
#endif /* __XEN_TOOLS__ */
#endif /* XENDEVICEMODEL_H */
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|