2 * Blockjob transactions tests
4 * Copyright Red Hat, Inc. 2015
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qemu/main-loop.h"
16 #include "block/blockjob_int.h"
17 #include "sysemu/block-backend.h"
21 unsigned int iterations
;
27 static void test_block_job_complete(BlockJob
*job
, void *opaque
)
29 BlockDriverState
*bs
= blk_bs(job
->blk
);
30 int rc
= (intptr_t)opaque
;
32 if (block_job_is_cancelled(job
)) {
36 block_job_completed(job
, rc
);
40 static void coroutine_fn
test_block_job_run(void *opaque
)
42 TestBlockJob
*s
= opaque
;
43 BlockJob
*job
= &s
->common
;
45 while (s
->iterations
--) {
47 block_job_sleep_ns(job
, QEMU_CLOCK_REALTIME
, 0);
52 if (block_job_is_cancelled(job
)) {
57 block_job_defer_to_main_loop(job
, test_block_job_complete
,
58 (void *)(intptr_t)s
->rc
);
66 static void test_block_job_cb(void *opaque
, int ret
)
68 TestBlockJobCBData
*data
= opaque
;
69 if (!ret
&& block_job_is_cancelled(&data
->job
->common
)) {
76 static const BlockJobDriver test_block_job_driver
= {
77 .instance_size
= sizeof(TestBlockJob
),
78 .start
= test_block_job_run
,
81 /* Create a block job that completes with a given return code after a given
82 * number of event loop iterations. The return code is stored in the given
85 * The event loop iterations can either be handled automatically with a 0 delay
86 * timer, or they can be stepped manually by entering the coroutine.
88 static BlockJob
*test_block_job_start(unsigned int iterations
,
94 TestBlockJobCBData
*data
;
95 static unsigned counter
;
98 data
= g_new0(TestBlockJobCBData
, 1);
100 bs
= bdrv_open("null-co://", NULL
, NULL
, 0, &error_abort
);
101 g_assert_nonnull(bs
);
103 snprintf(job_id
, sizeof(job_id
), "job%u", counter
++);
104 s
= block_job_create(job_id
, &test_block_job_driver
, bs
,
105 0, BLK_PERM_ALL
, 0, BLOCK_JOB_DEFAULT
,
106 test_block_job_cb
, data
, &error_abort
);
107 s
->iterations
= iterations
;
108 s
->use_timer
= use_timer
;
112 data
->result
= result
;
116 static void test_single_job(int expected
)
120 int result
= -EINPROGRESS
;
122 txn
= block_job_txn_new();
123 job
= test_block_job_start(1, true, expected
, &result
);
124 block_job_txn_add_job(txn
, job
);
125 block_job_start(job
);
127 if (expected
== -ECANCELED
) {
128 block_job_cancel(job
);
131 while (result
== -EINPROGRESS
) {
132 aio_poll(qemu_get_aio_context(), true);
134 g_assert_cmpint(result
, ==, expected
);
136 block_job_txn_unref(txn
);
139 static void test_single_job_success(void)
144 static void test_single_job_failure(void)
146 test_single_job(-EIO
);
149 static void test_single_job_cancel(void)
151 test_single_job(-ECANCELED
);
154 static void test_pair_jobs(int expected1
, int expected2
)
159 int result1
= -EINPROGRESS
;
160 int result2
= -EINPROGRESS
;
162 txn
= block_job_txn_new();
163 job1
= test_block_job_start(1, true, expected1
, &result1
);
164 block_job_txn_add_job(txn
, job1
);
165 job2
= test_block_job_start(2, true, expected2
, &result2
);
166 block_job_txn_add_job(txn
, job2
);
167 block_job_start(job1
);
168 block_job_start(job2
);
170 if (expected1
== -ECANCELED
) {
171 block_job_cancel(job1
);
173 if (expected2
== -ECANCELED
) {
174 block_job_cancel(job2
);
177 while (result1
== -EINPROGRESS
|| result2
== -EINPROGRESS
) {
178 aio_poll(qemu_get_aio_context(), true);
181 /* Failure or cancellation of one job cancels the other job */
182 if (expected1
!= 0) {
183 expected2
= -ECANCELED
;
184 } else if (expected2
!= 0) {
185 expected1
= -ECANCELED
;
188 g_assert_cmpint(result1
, ==, expected1
);
189 g_assert_cmpint(result2
, ==, expected2
);
191 block_job_txn_unref(txn
);
194 static void test_pair_jobs_success(void)
196 test_pair_jobs(0, 0);
199 static void test_pair_jobs_failure(void)
201 /* Test both orderings. The two jobs run for a different number of
202 * iterations so the code path is different depending on which job fails
205 test_pair_jobs(-EIO
, 0);
206 test_pair_jobs(0, -EIO
);
209 static void test_pair_jobs_cancel(void)
211 test_pair_jobs(-ECANCELED
, 0);
212 test_pair_jobs(0, -ECANCELED
);
215 static void test_pair_jobs_fail_cancel_race(void)
220 int result1
= -EINPROGRESS
;
221 int result2
= -EINPROGRESS
;
223 txn
= block_job_txn_new();
224 job1
= test_block_job_start(1, true, -ECANCELED
, &result1
);
225 block_job_txn_add_job(txn
, job1
);
226 job2
= test_block_job_start(2, false, 0, &result2
);
227 block_job_txn_add_job(txn
, job2
);
228 block_job_start(job1
);
229 block_job_start(job2
);
231 block_job_cancel(job1
);
233 /* Now make job2 finish before the main loop kicks jobs. This simulates
234 * the race between a pending kick and another job completing.
236 block_job_enter(job2
);
237 block_job_enter(job2
);
239 while (result1
== -EINPROGRESS
|| result2
== -EINPROGRESS
) {
240 aio_poll(qemu_get_aio_context(), true);
243 g_assert_cmpint(result1
, ==, -ECANCELED
);
244 g_assert_cmpint(result2
, ==, -ECANCELED
);
246 block_job_txn_unref(txn
);
249 int main(int argc
, char **argv
)
251 qemu_init_main_loop(&error_abort
);
254 g_test_init(&argc
, &argv
, NULL
);
255 g_test_add_func("/single/success", test_single_job_success
);
256 g_test_add_func("/single/failure", test_single_job_failure
);
257 g_test_add_func("/single/cancel", test_single_job_cancel
);
258 g_test_add_func("/pair/success", test_pair_jobs_success
);
259 g_test_add_func("/pair/failure", test_pair_jobs_failure
);
260 g_test_add_func("/pair/cancel", test_pair_jobs_cancel
);
261 g_test_add_func("/pair/fail-cancel-race", test_pair_jobs_fail_cancel_race
);