mptsas: change .realize function name
[qemu/ar7.git] / tests / libqtest.h
blobd2b48535a6599a3184623f8142aec9ec10203576
1 /*
2 * QTest
4 * Copyright IBM, Corp. 2012
5 * Copyright Red Hat, Inc. 2012
6 * Copyright SUSE LINUX Products GmbH 2013
8 * Authors:
9 * Anthony Liguori <aliguori@us.ibm.com>
10 * Paolo Bonzini <pbonzini@redhat.com>
11 * Andreas Färber <afaerber@suse.de>
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.
17 #ifndef LIBQTEST_H
18 #define LIBQTEST_H
20 #include "qapi/qmp/qdict.h"
22 typedef struct QTestState QTestState;
24 extern QTestState *global_qtest;
26 /**
27 * qtest_init:
28 * @extra_args: other arguments to pass to QEMU.
30 * Returns: #QTestState instance.
32 QTestState *qtest_init(const char *extra_args);
34 /**
35 * qtest_quit:
36 * @s: #QTestState instance to operate on.
38 * Shut down the QEMU process associated to @s.
40 void qtest_quit(QTestState *s);
42 /**
43 * qtest_qmp_discard_response:
44 * @s: #QTestState instance to operate on.
45 * @fmt...: QMP message to send to qemu
47 * Sends a QMP message to QEMU and consumes the response.
49 void qtest_qmp_discard_response(QTestState *s, const char *fmt, ...);
51 /**
52 * qtest_qmp:
53 * @s: #QTestState instance to operate on.
54 * @fmt...: QMP message to send to qemu
56 * Sends a QMP message to QEMU and returns the response.
58 QDict *qtest_qmp(QTestState *s, const char *fmt, ...);
60 /**
61 * qtest_async_qmp:
62 * @s: #QTestState instance to operate on.
63 * @fmt...: QMP message to send to qemu
65 * Sends a QMP message to QEMU and leaves the response in the stream.
67 void qtest_async_qmp(QTestState *s, const char *fmt, ...);
69 /**
70 * qtest_qmpv_discard_response:
71 * @s: #QTestState instance to operate on.
72 * @fmt: QMP message to send to QEMU
73 * @ap: QMP message arguments
75 * Sends a QMP message to QEMU and consumes the response.
77 void qtest_qmpv_discard_response(QTestState *s, const char *fmt, va_list ap);
79 /**
80 * qtest_qmpv:
81 * @s: #QTestState instance to operate on.
82 * @fmt: QMP message to send to QEMU
83 * @ap: QMP message arguments
85 * Sends a QMP message to QEMU and returns the response.
87 QDict *qtest_qmpv(QTestState *s, const char *fmt, va_list ap);
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
95 * Sends a QMP message to QEMU and leaves the response in the stream.
97 void qtest_async_qmpv(QTestState *s, const char *fmt, va_list ap);
99 /**
100 * qtest_receive:
101 * @s: #QTestState instance to operate on.
103 * Reads a QMP message from QEMU and returns the response.
105 QDict *qtest_qmp_receive(QTestState *s);
108 * qtest_qmp_eventwait:
109 * @s: #QTestState instance to operate on.
110 * @s: #event event to wait for.
112 * Continuosly polls for QMP responses until it receives the desired event.
114 void qtest_qmp_eventwait(QTestState *s, const char *event);
117 * qtest_hmpv:
118 * @s: #QTestState instance to operate on.
119 * @fmt...: HMP command to send to QEMU
121 * Send HMP command to QEMU via QMP's human-monitor-command.
123 * Returns: the command's output. The caller should g_free() it.
125 char *qtest_hmp(QTestState *s, const char *fmt, ...);
128 * qtest_hmpv:
129 * @s: #QTestState instance to operate on.
130 * @fmt: HMP command to send to QEMU
131 * @ap: HMP command arguments
133 * Send HMP command to QEMU via QMP's human-monitor-command.
135 * Returns: the command's output. The caller should g_free() it.
137 char *qtest_hmpv(QTestState *s, const char *fmt, va_list ap);
140 * qtest_get_irq:
141 * @s: #QTestState instance to operate on.
142 * @num: Interrupt to observe.
144 * Returns: The level of the @num interrupt.
146 bool qtest_get_irq(QTestState *s, int num);
149 * qtest_irq_intercept_in:
150 * @s: #QTestState instance to operate on.
151 * @string: QOM path of a device.
153 * Associate qtest irqs with the GPIO-in pins of the device
154 * whose path is specified by @string.
156 void qtest_irq_intercept_in(QTestState *s, const char *string);
159 * qtest_irq_intercept_out:
160 * @s: #QTestState instance to operate on.
161 * @string: QOM path of a device.
163 * Associate qtest irqs with the GPIO-out pins of the device
164 * whose path is specified by @string.
166 void qtest_irq_intercept_out(QTestState *s, const char *string);
169 * qtest_outb:
170 * @s: #QTestState instance to operate on.
171 * @addr: I/O port to write to.
172 * @value: Value being written.
174 * Write an 8-bit value to an I/O port.
176 void qtest_outb(QTestState *s, uint16_t addr, uint8_t value);
179 * qtest_outw:
180 * @s: #QTestState instance to operate on.
181 * @addr: I/O port to write to.
182 * @value: Value being written.
184 * Write a 16-bit value to an I/O port.
186 void qtest_outw(QTestState *s, uint16_t addr, uint16_t value);
189 * qtest_outl:
190 * @s: #QTestState instance to operate on.
191 * @addr: I/O port to write to.
192 * @value: Value being written.
194 * Write a 32-bit value to an I/O port.
196 void qtest_outl(QTestState *s, uint16_t addr, uint32_t value);
199 * qtest_inb:
200 * @s: #QTestState instance to operate on.
201 * @addr: I/O port to read from.
203 * Returns an 8-bit value from an I/O port.
205 uint8_t qtest_inb(QTestState *s, uint16_t addr);
208 * qtest_inw:
209 * @s: #QTestState instance to operate on.
210 * @addr: I/O port to read from.
212 * Returns a 16-bit value from an I/O port.
214 uint16_t qtest_inw(QTestState *s, uint16_t addr);
217 * qtest_inl:
218 * @s: #QTestState instance to operate on.
219 * @addr: I/O port to read from.
221 * Returns a 32-bit value from an I/O port.
223 uint32_t qtest_inl(QTestState *s, uint16_t addr);
226 * qtest_writeb:
227 * @s: #QTestState instance to operate on.
228 * @addr: Guest address to write to.
229 * @value: Value being written.
231 * Writes an 8-bit value to memory.
233 void qtest_writeb(QTestState *s, uint64_t addr, uint8_t value);
236 * qtest_writew:
237 * @s: #QTestState instance to operate on.
238 * @addr: Guest address to write to.
239 * @value: Value being written.
241 * Writes a 16-bit value to memory.
243 void qtest_writew(QTestState *s, uint64_t addr, uint16_t value);
246 * qtest_writel:
247 * @s: #QTestState instance to operate on.
248 * @addr: Guest address to write to.
249 * @value: Value being written.
251 * Writes a 32-bit value to memory.
253 void qtest_writel(QTestState *s, uint64_t addr, uint32_t value);
256 * qtest_writeq:
257 * @s: #QTestState instance to operate on.
258 * @addr: Guest address to write to.
259 * @value: Value being written.
261 * Writes a 64-bit value to memory.
263 void qtest_writeq(QTestState *s, uint64_t addr, uint64_t value);
266 * qtest_readb:
267 * @s: #QTestState instance to operate on.
268 * @addr: Guest address to read from.
270 * Reads an 8-bit value from memory.
272 * Returns: Value read.
274 uint8_t qtest_readb(QTestState *s, uint64_t addr);
277 * qtest_readw:
278 * @s: #QTestState instance to operate on.
279 * @addr: Guest address to read from.
281 * Reads a 16-bit value from memory.
283 * Returns: Value read.
285 uint16_t qtest_readw(QTestState *s, uint64_t addr);
288 * qtest_readl:
289 * @s: #QTestState instance to operate on.
290 * @addr: Guest address to read from.
292 * Reads a 32-bit value from memory.
294 * Returns: Value read.
296 uint32_t qtest_readl(QTestState *s, uint64_t addr);
299 * qtest_readq:
300 * @s: #QTestState instance to operate on.
301 * @addr: Guest address to read from.
303 * Reads a 64-bit value from memory.
305 * Returns: Value read.
307 uint64_t qtest_readq(QTestState *s, uint64_t addr);
310 * qtest_memread:
311 * @s: #QTestState instance to operate on.
312 * @addr: Guest address to read from.
313 * @data: Pointer to where memory contents will be stored.
314 * @size: Number of bytes to read.
316 * Read guest memory into a buffer.
318 void qtest_memread(QTestState *s, uint64_t addr, void *data, size_t size);
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.
327 * Read guest memory into a buffer and receive using a base64 encoding.
329 void qtest_bufread(QTestState *s, uint64_t addr, void *data, size_t size);
332 * qtest_memwrite:
333 * @s: #QTestState instance to operate on.
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.
338 * Write a buffer to guest memory.
340 void qtest_memwrite(QTestState *s, uint64_t addr, const void *data, size_t size);
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.
349 * Write a buffer to guest memory and transmit using a base64 encoding.
351 void qtest_bufwrite(QTestState *s, uint64_t addr,
352 const void *data, size_t size);
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.
361 * Write a pattern to guest memory.
363 void qtest_memset(QTestState *s, uint64_t addr, uint8_t patt, size_t size);
366 * qtest_clock_step_next:
367 * @s: #QTestState instance to operate on.
369 * Advance the QEMU_CLOCK_VIRTUAL to the next deadline.
371 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
373 int64_t qtest_clock_step_next(QTestState *s);
376 * qtest_clock_step:
377 * @s: QTestState instance to operate on.
378 * @step: Number of nanoseconds to advance the clock by.
380 * Advance the QEMU_CLOCK_VIRTUAL by @step nanoseconds.
382 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
384 int64_t qtest_clock_step(QTestState *s, int64_t step);
387 * qtest_clock_set:
388 * @s: QTestState instance to operate on.
389 * @val: Nanoseconds value to advance the clock to.
391 * Advance the QEMU_CLOCK_VIRTUAL to @val nanoseconds since the VM was launched.
393 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
395 int64_t qtest_clock_set(QTestState *s, int64_t val);
398 * qtest_get_arch:
400 * Returns: The architecture for the QEMU executable under test.
402 const char *qtest_get_arch(void);
405 * qtest_add_func:
406 * @str: Test case path.
407 * @fn: Test case function
409 * Add a GTester testcase with the given name and function.
410 * The path is prefixed with the architecture under test, as
411 * returned by qtest_get_arch().
413 void qtest_add_func(const char *str, void (*fn)(void));
416 * qtest_add_data_func:
417 * @str: Test case path.
418 * @data: Test case data
419 * @fn: Test case function
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().
425 void qtest_add_data_func(const char *str, const void *data,
426 void (*fn)(const void *));
429 * qtest_add_data_func_full:
430 * @str: Test case path.
431 * @data: Test case data
432 * @fn: Test case function
433 * @data_free_func: GDestroyNotify for data
435 * Add a GTester testcase with the given name, data and function.
436 * The path is prefixed with the architecture under test, as
437 * returned by qtest_get_arch().
439 * @data is passed to @data_free_func() on test completion.
441 void qtest_add_data_func_full(const char *str, void *data,
442 void (*fn)(const void *),
443 GDestroyNotify data_free_func);
446 * qtest_add:
447 * @testpath: Test case path
448 * @Fixture: Fixture type
449 * @tdata: Test case data
450 * @fsetup: Test case setup function
451 * @ftest: Test case function
452 * @fteardown: Test case teardown function
454 * Add a GTester testcase with the given name, data and functions.
455 * The path is prefixed with the architecture under test, as
456 * returned by qtest_get_arch().
458 #define qtest_add(testpath, Fixture, tdata, fsetup, ftest, fteardown) \
459 do { \
460 char *path = g_strdup_printf("/%s/%s", qtest_get_arch(), testpath); \
461 g_test_add(path, Fixture, tdata, fsetup, ftest, fteardown); \
462 g_free(path); \
463 } while (0)
465 void qtest_add_abrt_handler(GHookFunc fn, const void *data);
468 * qtest_start:
469 * @args: other arguments to pass to QEMU
471 * Start QEMU and assign the resulting #QTestState to a global variable.
472 * The global variable is used by "shortcut" functions documented below.
474 * Returns: #QTestState instance.
476 static inline QTestState *qtest_start(const char *args)
478 global_qtest = qtest_init(args);
479 return global_qtest;
483 * qtest_end:
485 * Shut down the QEMU process started by qtest_start().
487 static inline void qtest_end(void)
489 qtest_quit(global_qtest);
490 global_qtest = NULL;
494 * qmp:
495 * @fmt...: QMP message to send to qemu
497 * Sends a QMP message to QEMU and returns the response.
499 QDict *qmp(const char *fmt, ...);
502 * qmp_async:
503 * @fmt...: QMP message to send to qemu
505 * Sends a QMP message to QEMU and leaves the response in the stream.
507 void qmp_async(const char *fmt, ...);
510 * qmp_discard_response:
511 * @fmt...: QMP message to send to qemu
513 * Sends a QMP message to QEMU and consumes the response.
515 void qmp_discard_response(const char *fmt, ...);
518 * qmp_receive:
520 * Reads a QMP message from QEMU and returns the response.
522 static inline QDict *qmp_receive(void)
524 return qtest_qmp_receive(global_qtest);
528 * qmp_eventwait:
529 * @s: #event event to wait for.
531 * Continuosly polls for QMP responses until it receives the desired event.
533 static inline void qmp_eventwait(const char *event)
535 return qtest_qmp_eventwait(global_qtest, event);
539 * hmp:
540 * @fmt...: HMP command to send to QEMU
542 * Send HMP command to QEMU via QMP's human-monitor-command.
544 * Returns: the command's output. The caller should g_free() it.
546 char *hmp(const char *fmt, ...);
549 * get_irq:
550 * @num: Interrupt to observe.
552 * Returns: The level of the @num interrupt.
554 static inline bool get_irq(int num)
556 return qtest_get_irq(global_qtest, num);
560 * irq_intercept_in:
561 * @string: QOM path of a device.
563 * Associate qtest irqs with the GPIO-in pins of the device
564 * whose path is specified by @string.
566 static inline void irq_intercept_in(const char *string)
568 qtest_irq_intercept_in(global_qtest, string);
572 * qtest_irq_intercept_out:
573 * @string: QOM path of a device.
575 * Associate qtest irqs with the GPIO-out pins of the device
576 * whose path is specified by @string.
578 static inline void irq_intercept_out(const char *string)
580 qtest_irq_intercept_out(global_qtest, string);
584 * outb:
585 * @addr: I/O port to write to.
586 * @value: Value being written.
588 * Write an 8-bit value to an I/O port.
590 static inline void outb(uint16_t addr, uint8_t value)
592 qtest_outb(global_qtest, addr, value);
596 * outw:
597 * @addr: I/O port to write to.
598 * @value: Value being written.
600 * Write a 16-bit value to an I/O port.
602 static inline void outw(uint16_t addr, uint16_t value)
604 qtest_outw(global_qtest, addr, value);
608 * outl:
609 * @addr: I/O port to write to.
610 * @value: Value being written.
612 * Write a 32-bit value to an I/O port.
614 static inline void outl(uint16_t addr, uint32_t value)
616 qtest_outl(global_qtest, addr, value);
620 * inb:
621 * @addr: I/O port to read from.
623 * Reads an 8-bit value from an I/O port.
625 * Returns: Value read.
627 static inline uint8_t inb(uint16_t addr)
629 return qtest_inb(global_qtest, addr);
633 * inw:
634 * @addr: I/O port to read from.
636 * Reads a 16-bit value from an I/O port.
638 * Returns: Value read.
640 static inline uint16_t inw(uint16_t addr)
642 return qtest_inw(global_qtest, addr);
646 * inl:
647 * @addr: I/O port to read from.
649 * Reads a 32-bit value from an I/O port.
651 * Returns: Value read.
653 static inline uint32_t inl(uint16_t addr)
655 return qtest_inl(global_qtest, addr);
659 * writeb:
660 * @addr: Guest address to write to.
661 * @value: Value being written.
663 * Writes an 8-bit value to guest memory.
665 static inline void writeb(uint64_t addr, uint8_t value)
667 qtest_writeb(global_qtest, addr, value);
671 * writew:
672 * @addr: Guest address to write to.
673 * @value: Value being written.
675 * Writes a 16-bit value to guest memory.
677 static inline void writew(uint64_t addr, uint16_t value)
679 qtest_writew(global_qtest, addr, value);
683 * writel:
684 * @addr: Guest address to write to.
685 * @value: Value being written.
687 * Writes a 32-bit value to guest memory.
689 static inline void writel(uint64_t addr, uint32_t value)
691 qtest_writel(global_qtest, addr, value);
695 * writeq:
696 * @addr: Guest address to write to.
697 * @value: Value being written.
699 * Writes a 64-bit value to guest memory.
701 static inline void writeq(uint64_t addr, uint64_t value)
703 qtest_writeq(global_qtest, addr, value);
707 * readb:
708 * @addr: Guest address to read from.
710 * Reads an 8-bit value from guest memory.
712 * Returns: Value read.
714 static inline uint8_t readb(uint64_t addr)
716 return qtest_readb(global_qtest, addr);
720 * readw:
721 * @addr: Guest address to read from.
723 * Reads a 16-bit value from guest memory.
725 * Returns: Value read.
727 static inline uint16_t readw(uint64_t addr)
729 return qtest_readw(global_qtest, addr);
733 * readl:
734 * @addr: Guest address to read from.
736 * Reads a 32-bit value from guest memory.
738 * Returns: Value read.
740 static inline uint32_t readl(uint64_t addr)
742 return qtest_readl(global_qtest, addr);
746 * readq:
747 * @addr: Guest address to read from.
749 * Reads a 64-bit value from guest memory.
751 * Returns: Value read.
753 static inline uint64_t readq(uint64_t addr)
755 return qtest_readq(global_qtest, addr);
759 * memread:
760 * @addr: Guest address to read from.
761 * @data: Pointer to where memory contents will be stored.
762 * @size: Number of bytes to read.
764 * Read guest memory into a buffer.
766 static inline void memread(uint64_t addr, void *data, size_t size)
768 qtest_memread(global_qtest, addr, data, size);
772 * bufread:
773 * @addr: Guest address to read from.
774 * @data: Pointer to where memory contents will be stored.
775 * @size: Number of bytes to read.
777 * Read guest memory into a buffer, receive using a base64 encoding.
779 static inline void bufread(uint64_t addr, void *data, size_t size)
781 qtest_bufread(global_qtest, addr, data, size);
785 * memwrite:
786 * @addr: Guest address to write to.
787 * @data: Pointer to the bytes that will be written to guest memory.
788 * @size: Number of bytes to write.
790 * Write a buffer to guest memory.
792 static inline void memwrite(uint64_t addr, const void *data, size_t size)
794 qtest_memwrite(global_qtest, addr, data, size);
798 * bufwrite:
799 * @addr: Guest address to write to.
800 * @data: Pointer to the bytes that will be written to guest memory.
801 * @size: Number of bytes to write.
803 * Write a buffer to guest memory, transmit using a base64 encoding.
805 static inline void bufwrite(uint64_t addr, const void *data, size_t size)
807 qtest_bufwrite(global_qtest, addr, data, size);
811 * qmemset:
812 * @addr: Guest address to write to.
813 * @patt: Byte pattern to fill the guest memory region with.
814 * @size: Number of bytes to write.
816 * Write a pattern to guest memory.
818 static inline void qmemset(uint64_t addr, uint8_t patt, size_t size)
820 qtest_memset(global_qtest, addr, patt, size);
824 * clock_step_next:
826 * Advance the QEMU_CLOCK_VIRTUAL to the next deadline.
828 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
830 static inline int64_t clock_step_next(void)
832 return qtest_clock_step_next(global_qtest);
836 * clock_step:
837 * @step: Number of nanoseconds to advance the clock by.
839 * Advance the QEMU_CLOCK_VIRTUAL by @step nanoseconds.
841 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
843 static inline int64_t clock_step(int64_t step)
845 return qtest_clock_step(global_qtest, step);
849 * clock_set:
850 * @val: Nanoseconds value to advance the clock to.
852 * Advance the QEMU_CLOCK_VIRTUAL to @val nanoseconds since the VM was launched.
854 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
856 static inline int64_t clock_set(int64_t val)
858 return qtest_clock_set(global_qtest, val);
862 * qtest_big_endian:
864 * Returns: True if the architecture under test has a big endian configuration.
866 bool qtest_big_endian(void);
869 QDict *qmp_fd_receive(int fd);
870 void qmp_fd_sendv(int fd, const char *fmt, va_list ap);
871 void qmp_fd_send(int fd, const char *fmt, ...);
872 QDict *qmp_fdv(int fd, const char *fmt, va_list ap);
873 QDict *qmp_fd(int fd, const char *fmt, ...);
875 #endif