]>
Commit | Line | Data |
---|---|---|
49ee3590 AL |
1 | /* |
2 | * QTest | |
3 | * | |
4 | * Copyright IBM, Corp. 2012 | |
5 | * Copyright Red Hat, Inc. 2012 | |
872536bf | 6 | * Copyright SUSE LINUX Products GmbH 2013 |
49ee3590 AL |
7 | * |
8 | * Authors: | |
9 | * Anthony Liguori <[email protected]> | |
10 | * Paolo Bonzini <[email protected]> | |
872536bf | 11 | * Andreas Färber <[email protected]> |
49ee3590 AL |
12 | * |
13 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
14 | * See the COPYING file in the top-level directory. | |
15 | * | |
16 | */ | |
17 | #ifndef LIBQTEST_H | |
18 | #define LIBQTEST_H | |
19 | ||
0c460dac | 20 | #include "qapi/qmp/qdict.h" |
49ee3590 AL |
21 | |
22 | typedef struct QTestState QTestState; | |
23 | ||
24 | extern QTestState *global_qtest; | |
25 | ||
26 | /** | |
27 | * qtest_init: | |
28 | * @extra_args: other arguments to pass to QEMU. | |
6acf801d AF |
29 | * |
30 | * Returns: #QTestState instance. | |
49ee3590 AL |
31 | */ |
32 | QTestState *qtest_init(const char *extra_args); | |
33 | ||
34 | /** | |
35 | * qtest_quit: | |
6acf801d | 36 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
37 | * |
38 | * Shut down the QEMU process associated to @s. | |
39 | */ | |
40 | void qtest_quit(QTestState *s); | |
41 | ||
a3ca163c | 42 | /** |
0d1aa05e | 43 | * qtest_qmp_discard_response: |
6acf801d | 44 | * @s: #QTestState instance to operate on. |
a3ca163c KW |
45 | * @fmt...: QMP message to send to qemu |
46 | * | |
0d1aa05e | 47 | * Sends a QMP message to QEMU and consumes the response. |
a3ca163c | 48 | */ |
0d1aa05e | 49 | void qtest_qmp_discard_response(QTestState *s, const char *fmt, ...); |
a3ca163c | 50 | |
0c460dac SH |
51 | /** |
52 | * qtest_qmp: | |
53 | * @s: #QTestState instance to operate on. | |
54 | * @fmt...: QMP message to send to qemu | |
55 | * | |
56 | * Sends a QMP message to QEMU and returns the response. | |
57 | */ | |
58 | QDict *qtest_qmp(QTestState *s, const char *fmt, ...); | |
59 | ||
ba4ed393 JS |
60 | /** |
61 | * qtest_async_qmp: | |
62 | * @s: #QTestState instance to operate on. | |
63 | * @fmt...: QMP message to send to qemu | |
64 | * | |
65 | * Sends a QMP message to QEMU and leaves the response in the stream. | |
66 | */ | |
67 | void qtest_async_qmp(QTestState *s, const char *fmt, ...); | |
68 | ||
b73cf9e9 | 69 | /** |
0d1aa05e | 70 | * qtest_qmpv_discard_response: |
b73cf9e9 AF |
71 | * @s: #QTestState instance to operate on. |
72 | * @fmt: QMP message to send to QEMU | |
73 | * @ap: QMP message arguments | |
74 | * | |
0d1aa05e | 75 | * Sends a QMP message to QEMU and consumes the response. |
b73cf9e9 | 76 | */ |
0d1aa05e | 77 | void qtest_qmpv_discard_response(QTestState *s, const char *fmt, va_list ap); |
b73cf9e9 | 78 | |
0c460dac SH |
79 | /** |
80 | * qtest_qmpv: | |
81 | * @s: #QTestState instance to operate on. | |
82 | * @fmt: QMP message to send to QEMU | |
83 | * @ap: QMP message arguments | |
84 | * | |
85 | * Sends a QMP message to QEMU and returns the response. | |
86 | */ | |
87 | QDict *qtest_qmpv(QTestState *s, const char *fmt, va_list ap); | |
88 | ||
ba4ed393 JS |
89 | /** |
90 | * qtest_async_qmpv: | |
91 | * @s: #QTestState instance to operate on. | |
92 | * @fmt: QMP message to send to QEMU | |
93 | * @ap: QMP message arguments | |
94 | * | |
95 | * Sends a QMP message to QEMU and leaves the response in the stream. | |
96 | */ | |
97 | void qtest_async_qmpv(QTestState *s, const char *fmt, va_list ap); | |
98 | ||
66e0c7b1 AF |
99 | /** |
100 | * qtest_receive: | |
101 | * @s: #QTestState instance to operate on. | |
102 | * | |
103 | * Reads a QMP message from QEMU and returns the response. | |
104 | */ | |
105 | QDict *qtest_qmp_receive(QTestState *s); | |
106 | ||
8fe941f7 JS |
107 | /** |
108 | * qtest_qmp_eventwait: | |
109 | * @s: #QTestState instance to operate on. | |
110 | * @s: #event event to wait for. | |
111 | * | |
112 | * Continuosly polls for QMP responses until it receives the desired event. | |
113 | */ | |
114 | void qtest_qmp_eventwait(QTestState *s, const char *event); | |
115 | ||
5fb48d96 MA |
116 | /** |
117 | * qtest_hmpv: | |
118 | * @s: #QTestState instance to operate on. | |
119 | * @fmt...: HMP command to send to QEMU | |
120 | * | |
121 | * Send HMP command to QEMU via QMP's human-monitor-command. | |
122 | * | |
123 | * Returns: the command's output. The caller should g_free() it. | |
124 | */ | |
125 | char *qtest_hmp(QTestState *s, const char *fmt, ...); | |
126 | ||
127 | /** | |
128 | * qtest_hmpv: | |
129 | * @s: #QTestState instance to operate on. | |
130 | * @fmt: HMP command to send to QEMU | |
131 | * @ap: HMP command arguments | |
132 | * | |
133 | * Send HMP command to QEMU via QMP's human-monitor-command. | |
134 | * | |
135 | * Returns: the command's output. The caller should g_free() it. | |
136 | */ | |
137 | char *qtest_hmpv(QTestState *s, const char *fmt, va_list ap); | |
138 | ||
49ee3590 AL |
139 | /** |
140 | * qtest_get_irq: | |
6acf801d | 141 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
142 | * @num: Interrupt to observe. |
143 | * | |
6acf801d | 144 | * Returns: The level of the @num interrupt. |
49ee3590 AL |
145 | */ |
146 | bool qtest_get_irq(QTestState *s, int num); | |
147 | ||
148 | /** | |
149 | * qtest_irq_intercept_in: | |
6acf801d | 150 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
151 | * @string: QOM path of a device. |
152 | * | |
153 | * Associate qtest irqs with the GPIO-in pins of the device | |
154 | * whose path is specified by @string. | |
155 | */ | |
156 | void qtest_irq_intercept_in(QTestState *s, const char *string); | |
157 | ||
158 | /** | |
159 | * qtest_irq_intercept_out: | |
6acf801d | 160 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
161 | * @string: QOM path of a device. |
162 | * | |
163 | * Associate qtest irqs with the GPIO-out pins of the device | |
164 | * whose path is specified by @string. | |
165 | */ | |
166 | void qtest_irq_intercept_out(QTestState *s, const char *string); | |
167 | ||
168 | /** | |
169 | * qtest_outb: | |
6acf801d | 170 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
171 | * @addr: I/O port to write to. |
172 | * @value: Value being written. | |
173 | * | |
174 | * Write an 8-bit value to an I/O port. | |
175 | */ | |
176 | void qtest_outb(QTestState *s, uint16_t addr, uint8_t value); | |
177 | ||
178 | /** | |
179 | * qtest_outw: | |
6acf801d | 180 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
181 | * @addr: I/O port to write to. |
182 | * @value: Value being written. | |
183 | * | |
184 | * Write a 16-bit value to an I/O port. | |
185 | */ | |
186 | void qtest_outw(QTestState *s, uint16_t addr, uint16_t value); | |
187 | ||
188 | /** | |
189 | * qtest_outl: | |
6acf801d | 190 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
191 | * @addr: I/O port to write to. |
192 | * @value: Value being written. | |
193 | * | |
194 | * Write a 32-bit value to an I/O port. | |
195 | */ | |
196 | void qtest_outl(QTestState *s, uint16_t addr, uint32_t value); | |
197 | ||
198 | /** | |
199 | * qtest_inb: | |
6acf801d | 200 | * @s: #QTestState instance to operate on. |
49ee3590 | 201 | * @addr: I/O port to read from. |
49ee3590 AL |
202 | * |
203 | * Returns an 8-bit value from an I/O port. | |
204 | */ | |
205 | uint8_t qtest_inb(QTestState *s, uint16_t addr); | |
206 | ||
207 | /** | |
208 | * qtest_inw: | |
6acf801d | 209 | * @s: #QTestState instance to operate on. |
49ee3590 | 210 | * @addr: I/O port to read from. |
49ee3590 AL |
211 | * |
212 | * Returns a 16-bit value from an I/O port. | |
213 | */ | |
214 | uint16_t qtest_inw(QTestState *s, uint16_t addr); | |
215 | ||
216 | /** | |
217 | * qtest_inl: | |
6acf801d | 218 | * @s: #QTestState instance to operate on. |
49ee3590 | 219 | * @addr: I/O port to read from. |
49ee3590 AL |
220 | * |
221 | * Returns a 32-bit value from an I/O port. | |
222 | */ | |
223 | uint32_t qtest_inl(QTestState *s, uint16_t addr); | |
224 | ||
872536bf AF |
225 | /** |
226 | * qtest_writeb: | |
227 | * @s: #QTestState instance to operate on. | |
228 | * @addr: Guest address to write to. | |
229 | * @value: Value being written. | |
230 | * | |
231 | * Writes an 8-bit value to memory. | |
232 | */ | |
233 | void qtest_writeb(QTestState *s, uint64_t addr, uint8_t value); | |
234 | ||
235 | /** | |
236 | * qtest_writew: | |
237 | * @s: #QTestState instance to operate on. | |
238 | * @addr: Guest address to write to. | |
239 | * @value: Value being written. | |
240 | * | |
241 | * Writes a 16-bit value to memory. | |
242 | */ | |
243 | void qtest_writew(QTestState *s, uint64_t addr, uint16_t value); | |
244 | ||
245 | /** | |
246 | * qtest_writel: | |
247 | * @s: #QTestState instance to operate on. | |
248 | * @addr: Guest address to write to. | |
249 | * @value: Value being written. | |
250 | * | |
251 | * Writes a 32-bit value to memory. | |
252 | */ | |
253 | void qtest_writel(QTestState *s, uint64_t addr, uint32_t value); | |
254 | ||
255 | /** | |
256 | * qtest_writeq: | |
257 | * @s: #QTestState instance to operate on. | |
258 | * @addr: Guest address to write to. | |
259 | * @value: Value being written. | |
260 | * | |
261 | * Writes a 64-bit value to memory. | |
262 | */ | |
263 | void qtest_writeq(QTestState *s, uint64_t addr, uint64_t value); | |
264 | ||
265 | /** | |
266 | * qtest_readb: | |
267 | * @s: #QTestState instance to operate on. | |
268 | * @addr: Guest address to read from. | |
269 | * | |
270 | * Reads an 8-bit value from memory. | |
271 | * | |
272 | * Returns: Value read. | |
273 | */ | |
274 | uint8_t qtest_readb(QTestState *s, uint64_t addr); | |
275 | ||
276 | /** | |
277 | * qtest_readw: | |
278 | * @s: #QTestState instance to operate on. | |
279 | * @addr: Guest address to read from. | |
280 | * | |
281 | * Reads a 16-bit value from memory. | |
282 | * | |
283 | * Returns: Value read. | |
284 | */ | |
285 | uint16_t qtest_readw(QTestState *s, uint64_t addr); | |
286 | ||
287 | /** | |
288 | * qtest_readl: | |
289 | * @s: #QTestState instance to operate on. | |
290 | * @addr: Guest address to read from. | |
291 | * | |
292 | * Reads a 32-bit value from memory. | |
293 | * | |
294 | * Returns: Value read. | |
295 | */ | |
296 | uint32_t qtest_readl(QTestState *s, uint64_t addr); | |
297 | ||
298 | /** | |
299 | * qtest_readq: | |
300 | * @s: #QTestState instance to operate on. | |
301 | * @addr: Guest address to read from. | |
302 | * | |
303 | * Reads a 64-bit value from memory. | |
304 | * | |
305 | * Returns: Value read. | |
306 | */ | |
307 | uint64_t qtest_readq(QTestState *s, uint64_t addr); | |
308 | ||
49ee3590 AL |
309 | /** |
310 | * qtest_memread: | |
6acf801d | 311 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
312 | * @addr: Guest address to read from. |
313 | * @data: Pointer to where memory contents will be stored. | |
314 | * @size: Number of bytes to read. | |
315 | * | |
316 | * Read guest memory into a buffer. | |
317 | */ | |
318 | void qtest_memread(QTestState *s, uint64_t addr, void *data, size_t size); | |
319 | ||
7a6a740d JS |
320 | /** |
321 | * qtest_bufread: | |
322 | * @s: #QTestState instance to operate on. | |
323 | * @addr: Guest address to read from. | |
324 | * @data: Pointer to where memory contents will be stored. | |
325 | * @size: Number of bytes to read. | |
326 | * | |
327 | * Read guest memory into a buffer and receive using a base64 encoding. | |
328 | */ | |
329 | void qtest_bufread(QTestState *s, uint64_t addr, void *data, size_t size); | |
330 | ||
49ee3590 AL |
331 | /** |
332 | * qtest_memwrite: | |
6acf801d | 333 | * @s: #QTestState instance to operate on. |
49ee3590 AL |
334 | * @addr: Guest address to write to. |
335 | * @data: Pointer to the bytes that will be written to guest memory. | |
336 | * @size: Number of bytes to write. | |
337 | * | |
338 | * Write a buffer to guest memory. | |
339 | */ | |
340 | void qtest_memwrite(QTestState *s, uint64_t addr, const void *data, size_t size); | |
341 | ||
7a6a740d JS |
342 | /** |
343 | * qtest_bufwrite: | |
344 | * @s: #QTestState instance to operate on. | |
345 | * @addr: Guest address to write to. | |
346 | * @data: Pointer to the bytes that will be written to guest memory. | |
347 | * @size: Number of bytes to write. | |
348 | * | |
349 | * Write a buffer to guest memory and transmit using a base64 encoding. | |
350 | */ | |
351 | void qtest_bufwrite(QTestState *s, uint64_t addr, | |
352 | const void *data, size_t size); | |
353 | ||
86298845 JS |
354 | /** |
355 | * qtest_memset: | |
356 | * @s: #QTestState instance to operate on. | |
357 | * @addr: Guest address to write to. | |
358 | * @patt: Byte pattern to fill the guest memory region with. | |
359 | * @size: Number of bytes to write. | |
360 | * | |
361 | * Write a pattern to guest memory. | |
362 | */ | |
363 | void qtest_memset(QTestState *s, uint64_t addr, uint8_t patt, size_t size); | |
364 | ||
49ee3590 AL |
365 | /** |
366 | * qtest_clock_step_next: | |
6acf801d AF |
367 | * @s: #QTestState instance to operate on. |
368 | * | |
bc72ad67 | 369 | * Advance the QEMU_CLOCK_VIRTUAL to the next deadline. |
49ee3590 | 370 | * |
bc72ad67 | 371 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 AL |
372 | */ |
373 | int64_t qtest_clock_step_next(QTestState *s); | |
374 | ||
375 | /** | |
376 | * qtest_clock_step: | |
377 | * @s: QTestState instance to operate on. | |
378 | * @step: Number of nanoseconds to advance the clock by. | |
379 | * | |
bc72ad67 | 380 | * Advance the QEMU_CLOCK_VIRTUAL by @step nanoseconds. |
6acf801d | 381 | * |
bc72ad67 | 382 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 AL |
383 | */ |
384 | int64_t qtest_clock_step(QTestState *s, int64_t step); | |
385 | ||
386 | /** | |
387 | * qtest_clock_set: | |
388 | * @s: QTestState instance to operate on. | |
389 | * @val: Nanoseconds value to advance the clock to. | |
390 | * | |
bc72ad67 | 391 | * Advance the QEMU_CLOCK_VIRTUAL to @val nanoseconds since the VM was launched. |
6acf801d | 392 | * |
bc72ad67 | 393 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 AL |
394 | */ |
395 | int64_t qtest_clock_set(QTestState *s, int64_t val); | |
396 | ||
397 | /** | |
398 | * qtest_get_arch: | |
399 | * | |
6acf801d | 400 | * Returns: The architecture for the QEMU executable under test. |
49ee3590 AL |
401 | */ |
402 | const char *qtest_get_arch(void); | |
403 | ||
404 | /** | |
405 | * qtest_add_func: | |
406 | * @str: Test case path. | |
407 | * @fn: Test case function | |
408 | * | |
409 | * Add a GTester testcase with the given name and function. | |
410 | * The path is prefixed with the architecture under test, as | |
6acf801d | 411 | * returned by qtest_get_arch(). |
49ee3590 | 412 | */ |
041088c7 | 413 | void qtest_add_func(const char *str, void (*fn)(void)); |
49ee3590 | 414 | |
7949c0e3 AF |
415 | /** |
416 | * qtest_add_data_func: | |
417 | * @str: Test case path. | |
418 | * @data: Test case data | |
419 | * @fn: Test case function | |
420 | * | |
421 | * Add a GTester testcase with the given name, data and function. | |
422 | * The path is prefixed with the architecture under test, as | |
423 | * returned by qtest_get_arch(). | |
424 | */ | |
041088c7 MA |
425 | void qtest_add_data_func(const char *str, const void *data, |
426 | void (*fn)(const void *)); | |
7949c0e3 | 427 | |
45b0f830 AF |
428 | /** |
429 | * qtest_add: | |
430 | * @testpath: Test case path | |
431 | * @Fixture: Fixture type | |
432 | * @tdata: Test case data | |
433 | * @fsetup: Test case setup function | |
434 | * @ftest: Test case function | |
435 | * @fteardown: Test case teardown function | |
436 | * | |
437 | * Add a GTester testcase with the given name, data and functions. | |
438 | * The path is prefixed with the architecture under test, as | |
439 | * returned by qtest_get_arch(). | |
440 | */ | |
441 | #define qtest_add(testpath, Fixture, tdata, fsetup, ftest, fteardown) \ | |
442 | do { \ | |
443 | char *path = g_strdup_printf("/%s/%s", qtest_get_arch(), testpath); \ | |
444 | g_test_add(path, Fixture, tdata, fsetup, ftest, fteardown); \ | |
445 | g_free(path); \ | |
446 | } while (0) | |
447 | ||
041088c7 | 448 | void qtest_add_abrt_handler(GHookFunc fn, const void *data); |
063c23d9 | 449 | |
49ee3590 AL |
450 | /** |
451 | * qtest_start: | |
452 | * @args: other arguments to pass to QEMU | |
453 | * | |
6acf801d AF |
454 | * Start QEMU and assign the resulting #QTestState to a global variable. |
455 | * The global variable is used by "shortcut" functions documented below. | |
456 | * | |
457 | * Returns: #QTestState instance. | |
49ee3590 | 458 | */ |
6acf801d AF |
459 | static inline QTestState *qtest_start(const char *args) |
460 | { | |
96b8ca47 SH |
461 | global_qtest = qtest_init(args); |
462 | return global_qtest; | |
6acf801d | 463 | } |
49ee3590 | 464 | |
1d9358e6 MA |
465 | /** |
466 | * qtest_end: | |
467 | * | |
468 | * Shut down the QEMU process started by qtest_start(). | |
469 | */ | |
470 | static inline void qtest_end(void) | |
471 | { | |
472 | qtest_quit(global_qtest); | |
96b8ca47 | 473 | global_qtest = NULL; |
1d9358e6 MA |
474 | } |
475 | ||
0c460dac SH |
476 | /** |
477 | * qmp: | |
478 | * @fmt...: QMP message to send to qemu | |
479 | * | |
480 | * Sends a QMP message to QEMU and returns the response. | |
481 | */ | |
0100f425 | 482 | QDict *qmp(const char *fmt, ...); |
0c460dac | 483 | |
ba4ed393 JS |
484 | /** |
485 | * qmp_async: | |
486 | * @fmt...: QMP message to send to qemu | |
487 | * | |
488 | * Sends a QMP message to QEMU and leaves the response in the stream. | |
489 | */ | |
490 | void qmp_async(const char *fmt, ...); | |
491 | ||
a3ca163c | 492 | /** |
0d1aa05e | 493 | * qmp_discard_response: |
a3ca163c KW |
494 | * @fmt...: QMP message to send to qemu |
495 | * | |
0d1aa05e | 496 | * Sends a QMP message to QEMU and consumes the response. |
a3ca163c | 497 | */ |
0100f425 | 498 | void qmp_discard_response(const char *fmt, ...); |
a3ca163c | 499 | |
66e0c7b1 AF |
500 | /** |
501 | * qmp_receive: | |
502 | * | |
503 | * Reads a QMP message from QEMU and returns the response. | |
504 | */ | |
505 | static inline QDict *qmp_receive(void) | |
506 | { | |
507 | return qtest_qmp_receive(global_qtest); | |
508 | } | |
509 | ||
8fe941f7 JS |
510 | /** |
511 | * qmp_eventwait: | |
512 | * @s: #event event to wait for. | |
513 | * | |
514 | * Continuosly polls for QMP responses until it receives the desired event. | |
515 | */ | |
516 | static inline void qmp_eventwait(const char *event) | |
517 | { | |
518 | return qtest_qmp_eventwait(global_qtest, event); | |
519 | } | |
520 | ||
5fb48d96 MA |
521 | /** |
522 | * hmp: | |
523 | * @fmt...: HMP command to send to QEMU | |
524 | * | |
525 | * Send HMP command to QEMU via QMP's human-monitor-command. | |
526 | * | |
527 | * Returns: the command's output. The caller should g_free() it. | |
528 | */ | |
529 | char *hmp(const char *fmt, ...); | |
530 | ||
49ee3590 AL |
531 | /** |
532 | * get_irq: | |
533 | * @num: Interrupt to observe. | |
534 | * | |
6acf801d | 535 | * Returns: The level of the @num interrupt. |
49ee3590 | 536 | */ |
6acf801d AF |
537 | static inline bool get_irq(int num) |
538 | { | |
539 | return qtest_get_irq(global_qtest, num); | |
540 | } | |
49ee3590 AL |
541 | |
542 | /** | |
543 | * irq_intercept_in: | |
544 | * @string: QOM path of a device. | |
545 | * | |
546 | * Associate qtest irqs with the GPIO-in pins of the device | |
547 | * whose path is specified by @string. | |
548 | */ | |
6acf801d AF |
549 | static inline void irq_intercept_in(const char *string) |
550 | { | |
551 | qtest_irq_intercept_in(global_qtest, string); | |
552 | } | |
49ee3590 AL |
553 | |
554 | /** | |
555 | * qtest_irq_intercept_out: | |
556 | * @string: QOM path of a device. | |
557 | * | |
558 | * Associate qtest irqs with the GPIO-out pins of the device | |
559 | * whose path is specified by @string. | |
560 | */ | |
6acf801d AF |
561 | static inline void irq_intercept_out(const char *string) |
562 | { | |
563 | qtest_irq_intercept_out(global_qtest, string); | |
564 | } | |
49ee3590 AL |
565 | |
566 | /** | |
567 | * outb: | |
568 | * @addr: I/O port to write to. | |
569 | * @value: Value being written. | |
570 | * | |
571 | * Write an 8-bit value to an I/O port. | |
572 | */ | |
6acf801d AF |
573 | static inline void outb(uint16_t addr, uint8_t value) |
574 | { | |
575 | qtest_outb(global_qtest, addr, value); | |
576 | } | |
49ee3590 AL |
577 | |
578 | /** | |
579 | * outw: | |
580 | * @addr: I/O port to write to. | |
581 | * @value: Value being written. | |
582 | * | |
583 | * Write a 16-bit value to an I/O port. | |
584 | */ | |
6acf801d AF |
585 | static inline void outw(uint16_t addr, uint16_t value) |
586 | { | |
587 | qtest_outw(global_qtest, addr, value); | |
588 | } | |
49ee3590 AL |
589 | |
590 | /** | |
591 | * outl: | |
592 | * @addr: I/O port to write to. | |
593 | * @value: Value being written. | |
594 | * | |
595 | * Write a 32-bit value to an I/O port. | |
596 | */ | |
6acf801d AF |
597 | static inline void outl(uint16_t addr, uint32_t value) |
598 | { | |
599 | qtest_outl(global_qtest, addr, value); | |
600 | } | |
49ee3590 AL |
601 | |
602 | /** | |
603 | * inb: | |
604 | * @addr: I/O port to read from. | |
49ee3590 | 605 | * |
6acf801d AF |
606 | * Reads an 8-bit value from an I/O port. |
607 | * | |
608 | * Returns: Value read. | |
49ee3590 | 609 | */ |
6acf801d AF |
610 | static inline uint8_t inb(uint16_t addr) |
611 | { | |
612 | return qtest_inb(global_qtest, addr); | |
613 | } | |
49ee3590 AL |
614 | |
615 | /** | |
616 | * inw: | |
617 | * @addr: I/O port to read from. | |
49ee3590 | 618 | * |
6acf801d AF |
619 | * Reads a 16-bit value from an I/O port. |
620 | * | |
621 | * Returns: Value read. | |
49ee3590 | 622 | */ |
6acf801d AF |
623 | static inline uint16_t inw(uint16_t addr) |
624 | { | |
625 | return qtest_inw(global_qtest, addr); | |
626 | } | |
49ee3590 AL |
627 | |
628 | /** | |
629 | * inl: | |
630 | * @addr: I/O port to read from. | |
49ee3590 | 631 | * |
6acf801d AF |
632 | * Reads a 32-bit value from an I/O port. |
633 | * | |
634 | * Returns: Value read. | |
49ee3590 | 635 | */ |
6acf801d AF |
636 | static inline uint32_t inl(uint16_t addr) |
637 | { | |
638 | return qtest_inl(global_qtest, addr); | |
639 | } | |
49ee3590 | 640 | |
872536bf AF |
641 | /** |
642 | * writeb: | |
643 | * @addr: Guest address to write to. | |
644 | * @value: Value being written. | |
645 | * | |
646 | * Writes an 8-bit value to guest memory. | |
647 | */ | |
648 | static inline void writeb(uint64_t addr, uint8_t value) | |
649 | { | |
650 | qtest_writeb(global_qtest, addr, value); | |
651 | } | |
652 | ||
653 | /** | |
654 | * writew: | |
655 | * @addr: Guest address to write to. | |
656 | * @value: Value being written. | |
657 | * | |
658 | * Writes a 16-bit value to guest memory. | |
659 | */ | |
660 | static inline void writew(uint64_t addr, uint16_t value) | |
661 | { | |
662 | qtest_writew(global_qtest, addr, value); | |
663 | } | |
664 | ||
665 | /** | |
666 | * writel: | |
667 | * @addr: Guest address to write to. | |
668 | * @value: Value being written. | |
669 | * | |
670 | * Writes a 32-bit value to guest memory. | |
671 | */ | |
672 | static inline void writel(uint64_t addr, uint32_t value) | |
673 | { | |
674 | qtest_writel(global_qtest, addr, value); | |
675 | } | |
676 | ||
677 | /** | |
678 | * writeq: | |
679 | * @addr: Guest address to write to. | |
680 | * @value: Value being written. | |
681 | * | |
682 | * Writes a 64-bit value to guest memory. | |
683 | */ | |
684 | static inline void writeq(uint64_t addr, uint64_t value) | |
685 | { | |
686 | qtest_writeq(global_qtest, addr, value); | |
687 | } | |
688 | ||
689 | /** | |
690 | * readb: | |
691 | * @addr: Guest address to read from. | |
692 | * | |
693 | * Reads an 8-bit value from guest memory. | |
694 | * | |
695 | * Returns: Value read. | |
696 | */ | |
697 | static inline uint8_t readb(uint64_t addr) | |
698 | { | |
699 | return qtest_readb(global_qtest, addr); | |
700 | } | |
701 | ||
702 | /** | |
703 | * readw: | |
704 | * @addr: Guest address to read from. | |
705 | * | |
706 | * Reads a 16-bit value from guest memory. | |
707 | * | |
708 | * Returns: Value read. | |
709 | */ | |
710 | static inline uint16_t readw(uint64_t addr) | |
711 | { | |
712 | return qtest_readw(global_qtest, addr); | |
713 | } | |
714 | ||
715 | /** | |
716 | * readl: | |
717 | * @addr: Guest address to read from. | |
718 | * | |
719 | * Reads a 32-bit value from guest memory. | |
720 | * | |
721 | * Returns: Value read. | |
722 | */ | |
723 | static inline uint32_t readl(uint64_t addr) | |
724 | { | |
725 | return qtest_readl(global_qtest, addr); | |
726 | } | |
727 | ||
728 | /** | |
729 | * readq: | |
730 | * @addr: Guest address to read from. | |
731 | * | |
732 | * Reads a 64-bit value from guest memory. | |
733 | * | |
734 | * Returns: Value read. | |
735 | */ | |
736 | static inline uint64_t readq(uint64_t addr) | |
737 | { | |
738 | return qtest_readq(global_qtest, addr); | |
739 | } | |
740 | ||
49ee3590 AL |
741 | /** |
742 | * memread: | |
743 | * @addr: Guest address to read from. | |
744 | * @data: Pointer to where memory contents will be stored. | |
745 | * @size: Number of bytes to read. | |
746 | * | |
747 | * Read guest memory into a buffer. | |
748 | */ | |
6acf801d AF |
749 | static inline void memread(uint64_t addr, void *data, size_t size) |
750 | { | |
751 | qtest_memread(global_qtest, addr, data, size); | |
752 | } | |
49ee3590 | 753 | |
7a6a740d JS |
754 | /** |
755 | * bufread: | |
756 | * @addr: Guest address to read from. | |
757 | * @data: Pointer to where memory contents will be stored. | |
758 | * @size: Number of bytes to read. | |
759 | * | |
760 | * Read guest memory into a buffer, receive using a base64 encoding. | |
761 | */ | |
762 | static inline void bufread(uint64_t addr, void *data, size_t size) | |
763 | { | |
764 | qtest_bufread(global_qtest, addr, data, size); | |
765 | } | |
766 | ||
49ee3590 AL |
767 | /** |
768 | * memwrite: | |
769 | * @addr: Guest address to write to. | |
770 | * @data: Pointer to the bytes that will be written to guest memory. | |
771 | * @size: Number of bytes to write. | |
772 | * | |
773 | * Write a buffer to guest memory. | |
774 | */ | |
6acf801d AF |
775 | static inline void memwrite(uint64_t addr, const void *data, size_t size) |
776 | { | |
777 | qtest_memwrite(global_qtest, addr, data, size); | |
778 | } | |
49ee3590 | 779 | |
7a6a740d JS |
780 | /** |
781 | * bufwrite: | |
782 | * @addr: Guest address to write to. | |
783 | * @data: Pointer to the bytes that will be written to guest memory. | |
784 | * @size: Number of bytes to write. | |
785 | * | |
786 | * Write a buffer to guest memory, transmit using a base64 encoding. | |
787 | */ | |
788 | static inline void bufwrite(uint64_t addr, const void *data, size_t size) | |
789 | { | |
790 | qtest_bufwrite(global_qtest, addr, data, size); | |
791 | } | |
792 | ||
86298845 JS |
793 | /** |
794 | * qmemset: | |
795 | * @addr: Guest address to write to. | |
796 | * @patt: Byte pattern to fill the guest memory region with. | |
797 | * @size: Number of bytes to write. | |
798 | * | |
799 | * Write a pattern to guest memory. | |
800 | */ | |
801 | static inline void qmemset(uint64_t addr, uint8_t patt, size_t size) | |
802 | { | |
803 | qtest_memset(global_qtest, addr, patt, size); | |
804 | } | |
805 | ||
49ee3590 AL |
806 | /** |
807 | * clock_step_next: | |
808 | * | |
bc72ad67 | 809 | * Advance the QEMU_CLOCK_VIRTUAL to the next deadline. |
6acf801d | 810 | * |
bc72ad67 | 811 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 | 812 | */ |
6acf801d AF |
813 | static inline int64_t clock_step_next(void) |
814 | { | |
815 | return qtest_clock_step_next(global_qtest); | |
816 | } | |
49ee3590 AL |
817 | |
818 | /** | |
819 | * clock_step: | |
820 | * @step: Number of nanoseconds to advance the clock by. | |
821 | * | |
bc72ad67 | 822 | * Advance the QEMU_CLOCK_VIRTUAL by @step nanoseconds. |
6acf801d | 823 | * |
bc72ad67 | 824 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 | 825 | */ |
6acf801d AF |
826 | static inline int64_t clock_step(int64_t step) |
827 | { | |
828 | return qtest_clock_step(global_qtest, step); | |
829 | } | |
49ee3590 AL |
830 | |
831 | /** | |
832 | * clock_set: | |
833 | * @val: Nanoseconds value to advance the clock to. | |
834 | * | |
bc72ad67 | 835 | * Advance the QEMU_CLOCK_VIRTUAL to @val nanoseconds since the VM was launched. |
6acf801d | 836 | * |
bc72ad67 | 837 | * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds. |
49ee3590 | 838 | */ |
6acf801d AF |
839 | static inline int64_t clock_set(int64_t val) |
840 | { | |
841 | return qtest_clock_set(global_qtest, val); | |
842 | } | |
49ee3590 | 843 | |
46e0cf76 MM |
844 | /** |
845 | * qtest_big_endian: | |
846 | * | |
847 | * Returns: True if the architecture under test has a big endian configuration. | |
848 | */ | |
849 | bool qtest_big_endian(void); | |
850 | ||
dc47995e MAL |
851 | |
852 | QDict *qmp_fd_receive(int fd); | |
853 | void qmp_fd_sendv(int fd, const char *fmt, va_list ap); | |
854 | void qmp_fd_send(int fd, const char *fmt, ...); | |
855 | QDict *qmp_fdv(int fd, const char *fmt, va_list ap); | |
856 | QDict *qmp_fd(int fd, const char *fmt, ...); | |
857 | ||
49ee3590 | 858 | #endif |