4 * Copyright IBM, Corp. 2012
5 * Copyright Red Hat, Inc. 2012
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
18 #include <sys/types.h>
19 #include <sys/socket.h>
34 QTestState
*global_qtest
;
39 bool irq_level
[MAX_IRQ
];
44 #define g_assert_no_errno(ret) do { \
45 g_assert_cmpint(ret, !=, -1); \
48 QTestState
*qtest_init(const char *extra_args
)
51 struct sockaddr_un addr
;
56 const char *qemu_binary
;
60 qemu_binary
= getenv("QTEST_QEMU_BINARY");
61 g_assert(qemu_binary
!= NULL
);
63 socket_path
= g_strdup_printf("/tmp/qtest-%d.sock", getpid());
64 pid_file
= g_strdup_printf("/tmp/qtest-%d.pid", getpid());
66 s
= g_malloc(sizeof(*s
));
68 sock
= socket(PF_UNIX
, SOCK_STREAM
, 0);
69 g_assert_no_errno(sock
);
71 addr
.sun_family
= AF_UNIX
;
72 snprintf(addr
.sun_path
, sizeof(addr
.sun_path
), "%s", socket_path
);
73 qemu_set_cloexec(sock
);
76 ret
= bind(sock
, (struct sockaddr
*)&addr
, sizeof(addr
));
77 } while (ret
== -1 && errno
== EINTR
);
78 g_assert_no_errno(ret
);
83 command
= g_strdup_printf("%s "
84 "-qtest unix:%s,nowait "
85 "-qtest-log /dev/null "
87 "-machine accel=qtest "
88 "%s", qemu_binary
, socket_path
,
92 ret
= system(command
);
98 ret
= accept(sock
, (struct sockaddr
*)&addr
, &addrlen
);
99 } while (ret
== -1 && errno
== EINTR
);
100 g_assert_no_errno(ret
);
104 s
->rx
= g_string_new("");
105 s
->pid_file
= pid_file
;
106 for (i
= 0; i
< MAX_IRQ
; i
++) {
107 s
->irq_level
[i
] = false;
115 void qtest_quit(QTestState
*s
)
120 f
= fopen(s
->pid_file
, "r");
122 if (fgets(buffer
, sizeof(buffer
), f
)) {
123 pid_t pid
= atoi(buffer
);
127 waitpid(pid
, &status
, 0);
134 static void GCC_FMT_ATTR(2, 3) qtest_sendf(QTestState
*s
, const char *fmt
, ...)
141 str
= g_strdup_vprintf(fmt
, ap
);
146 while (offset
< size
) {
149 len
= write(s
->fd
, str
+ offset
, size
- offset
);
150 if (len
== -1 && errno
== EINTR
) {
154 g_assert_no_errno(len
);
155 g_assert_cmpint(len
, >, 0);
161 static GString
*qtest_recv_line(QTestState
*s
)
167 while ((eol
= strchr(s
->rx
->str
, '\n')) == NULL
) {
171 len
= read(s
->fd
, buffer
, sizeof(buffer
));
172 if (len
== -1 && errno
== EINTR
) {
176 if (len
== -1 || len
== 0) {
177 fprintf(stderr
, "Broken pipe\n");
181 g_string_append_len(s
->rx
, buffer
, len
);
184 offset
= eol
- s
->rx
->str
;
185 line
= g_string_new_len(s
->rx
->str
, offset
);
186 g_string_erase(s
->rx
, 0, offset
+ 1);
191 static gchar
**qtest_rsp(QTestState
*s
, int expected_args
)
198 line
= qtest_recv_line(s
);
199 words
= g_strsplit(line
->str
, " ", 0);
200 g_string_free(line
, TRUE
);
202 if (strcmp(words
[0], "IRQ") == 0) {
205 g_assert(words
[1] != NULL
);
206 g_assert(words
[2] != NULL
);
208 irq
= strtoul(words
[2], NULL
, 0);
209 g_assert_cmpint(irq
, >=, 0);
210 g_assert_cmpint(irq
, <, MAX_IRQ
);
212 if (strcmp(words
[1], "raise") == 0) {
213 s
->irq_level
[irq
] = true;
215 s
->irq_level
[irq
] = false;
222 g_assert(words
[0] != NULL
);
223 g_assert_cmpstr(words
[0], ==, "OK");
226 for (i
= 0; i
< expected_args
; i
++) {
227 g_assert(words
[i
] != NULL
);
236 const char *qtest_get_arch(void)
238 const char *qemu
= getenv("QTEST_QEMU_BINARY");
239 const char *end
= strrchr(qemu
, '/');
241 return end
+ strlen("/qemu-system-");
244 bool qtest_get_irq(QTestState
*s
, int num
)
246 /* dummy operation in order to make sure irq is up to date */
249 return s
->irq_level
[num
];
252 static int64_t qtest_clock_rsp(QTestState
*s
)
256 words
= qtest_rsp(s
, 2);
257 clock
= g_ascii_strtoll(words
[1], NULL
, 0);
262 int64_t qtest_clock_step_next(QTestState
*s
)
264 qtest_sendf(s
, "clock_step\n");
265 return qtest_clock_rsp(s
);
268 int64_t qtest_clock_step(QTestState
*s
, int64_t step
)
270 qtest_sendf(s
, "clock_step %"PRIi64
"\n", step
);
271 return qtest_clock_rsp(s
);
274 int64_t qtest_clock_set(QTestState
*s
, int64_t val
)
276 qtest_sendf(s
, "clock_set %"PRIi64
"\n", val
);
277 return qtest_clock_rsp(s
);
280 void qtest_irq_intercept_out(QTestState
*s
, const char *qom_path
)
282 qtest_sendf(s
, "irq_intercept_out %s\n", qom_path
);
286 void qtest_irq_intercept_in(QTestState
*s
, const char *qom_path
)
288 qtest_sendf(s
, "irq_intercept_in %s\n", qom_path
);
292 static void qtest_out(QTestState
*s
, const char *cmd
, uint16_t addr
, uint32_t value
)
294 qtest_sendf(s
, "%s 0x%x 0x%x\n", cmd
, addr
, value
);
298 void qtest_outb(QTestState
*s
, uint16_t addr
, uint8_t value
)
300 qtest_out(s
, "outb", addr
, value
);
303 void qtest_outw(QTestState
*s
, uint16_t addr
, uint16_t value
)
305 qtest_out(s
, "outw", addr
, value
);
308 void qtest_outl(QTestState
*s
, uint16_t addr
, uint32_t value
)
310 qtest_out(s
, "outl", addr
, value
);
313 static uint32_t qtest_in(QTestState
*s
, const char *cmd
, uint16_t addr
)
318 qtest_sendf(s
, "%s 0x%x\n", cmd
, addr
);
319 args
= qtest_rsp(s
, 2);
320 value
= strtoul(args
[1], NULL
, 0);
326 uint8_t qtest_inb(QTestState
*s
, uint16_t addr
)
328 return qtest_in(s
, "inb", addr
);
331 uint16_t qtest_inw(QTestState
*s
, uint16_t addr
)
333 return qtest_in(s
, "inw", addr
);
336 uint32_t qtest_inl(QTestState
*s
, uint16_t addr
)
338 return qtest_in(s
, "inl", addr
);
341 static int hex2nib(char ch
)
343 if (ch
>= '0' && ch
<= '9') {
345 } else if (ch
>= 'a' && ch
<= 'f') {
346 return 10 + (ch
- 'a');
347 } else if (ch
>= 'A' && ch
<= 'F') {
348 return 10 + (ch
- 'a');
354 void qtest_memread(QTestState
*s
, uint64_t addr
, void *data
, size_t size
)
360 qtest_sendf(s
, "read 0x%" PRIx64
" 0x%zx\n", addr
, size
);
361 args
= qtest_rsp(s
, 2);
363 for (i
= 0; i
< size
; i
++) {
364 ptr
[i
] = hex2nib(args
[1][2 + (i
* 2)]) << 4;
365 ptr
[i
] |= hex2nib(args
[1][2 + (i
* 2) + 1]);
371 void qtest_add_func(const char *str
, void (*fn
))
373 gchar
*path
= g_strdup_printf("/%s/%s", qtest_get_arch(), str
);
374 g_test_add_func(path
, fn
);
377 void qtest_memwrite(QTestState
*s
, uint64_t addr
, const void *data
, size_t size
)
379 const uint8_t *ptr
= data
;
382 qtest_sendf(s
, "write 0x%" PRIx64
" 0x%zx 0x", addr
, size
);
383 for (i
= 0; i
< size
; i
++) {
384 qtest_sendf(s
, "%02x", ptr
[i
]);
386 qtest_sendf(s
, "\n");