]> git.proxmox.com Git - mirror_qemu.git/blob - tests/test-blockjob-txn.c
job: Move cancelled to Job
[mirror_qemu.git] / tests / test-blockjob-txn.c
1 /*
2 * Blockjob transactions tests
3 *
4 * Copyright Red Hat, Inc. 2015
5 *
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
8 *
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.
11 */
12
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"
18
19 typedef struct {
20 BlockJob common;
21 unsigned int iterations;
22 bool use_timer;
23 int rc;
24 int *result;
25 } TestBlockJob;
26
27 static void test_block_job_complete(BlockJob *job, void *opaque)
28 {
29 BlockDriverState *bs = blk_bs(job->blk);
30 int rc = (intptr_t)opaque;
31
32 if (job_is_cancelled(&job->job)) {
33 rc = -ECANCELED;
34 }
35
36 block_job_completed(job, rc);
37 bdrv_unref(bs);
38 }
39
40 static void coroutine_fn test_block_job_run(void *opaque)
41 {
42 TestBlockJob *s = opaque;
43 BlockJob *job = &s->common;
44
45 while (s->iterations--) {
46 if (s->use_timer) {
47 block_job_sleep_ns(job, 0);
48 } else {
49 block_job_yield(job);
50 }
51
52 if (job_is_cancelled(&job->job)) {
53 break;
54 }
55 }
56
57 block_job_defer_to_main_loop(job, test_block_job_complete,
58 (void *)(intptr_t)s->rc);
59 }
60
61 typedef struct {
62 TestBlockJob *job;
63 int *result;
64 } TestBlockJobCBData;
65
66 static void test_block_job_cb(void *opaque, int ret)
67 {
68 TestBlockJobCBData *data = opaque;
69 if (!ret && job_is_cancelled(&data->job->common.job)) {
70 ret = -ECANCELED;
71 }
72 *data->result = ret;
73 g_free(data);
74 }
75
76 static const BlockJobDriver test_block_job_driver = {
77 .job_driver = {
78 .instance_size = sizeof(TestBlockJob),
79 .free = block_job_free,
80 },
81 .start = test_block_job_run,
82 };
83
84 /* Create a block job that completes with a given return code after a given
85 * number of event loop iterations. The return code is stored in the given
86 * result pointer.
87 *
88 * The event loop iterations can either be handled automatically with a 0 delay
89 * timer, or they can be stepped manually by entering the coroutine.
90 */
91 static BlockJob *test_block_job_start(unsigned int iterations,
92 bool use_timer,
93 int rc, int *result, BlockJobTxn *txn)
94 {
95 BlockDriverState *bs;
96 TestBlockJob *s;
97 TestBlockJobCBData *data;
98 static unsigned counter;
99 char job_id[24];
100
101 data = g_new0(TestBlockJobCBData, 1);
102
103 bs = bdrv_open("null-co://", NULL, NULL, 0, &error_abort);
104 g_assert_nonnull(bs);
105
106 snprintf(job_id, sizeof(job_id), "job%u", counter++);
107 s = block_job_create(job_id, &test_block_job_driver, txn, bs,
108 0, BLK_PERM_ALL, 0, BLOCK_JOB_DEFAULT,
109 test_block_job_cb, data, &error_abort);
110 s->iterations = iterations;
111 s->use_timer = use_timer;
112 s->rc = rc;
113 s->result = result;
114 data->job = s;
115 data->result = result;
116 return &s->common;
117 }
118
119 static void test_single_job(int expected)
120 {
121 BlockJob *job;
122 BlockJobTxn *txn;
123 int result = -EINPROGRESS;
124
125 txn = block_job_txn_new();
126 job = test_block_job_start(1, true, expected, &result, txn);
127 block_job_start(job);
128
129 if (expected == -ECANCELED) {
130 block_job_cancel(job, false);
131 }
132
133 while (result == -EINPROGRESS) {
134 aio_poll(qemu_get_aio_context(), true);
135 }
136 g_assert_cmpint(result, ==, expected);
137
138 block_job_txn_unref(txn);
139 }
140
141 static void test_single_job_success(void)
142 {
143 test_single_job(0);
144 }
145
146 static void test_single_job_failure(void)
147 {
148 test_single_job(-EIO);
149 }
150
151 static void test_single_job_cancel(void)
152 {
153 test_single_job(-ECANCELED);
154 }
155
156 static void test_pair_jobs(int expected1, int expected2)
157 {
158 BlockJob *job1;
159 BlockJob *job2;
160 BlockJobTxn *txn;
161 int result1 = -EINPROGRESS;
162 int result2 = -EINPROGRESS;
163
164 txn = block_job_txn_new();
165 job1 = test_block_job_start(1, true, expected1, &result1, txn);
166 job2 = test_block_job_start(2, true, expected2, &result2, txn);
167 block_job_start(job1);
168 block_job_start(job2);
169
170 /* Release our reference now to trigger as many nice
171 * use-after-free bugs as possible.
172 */
173 block_job_txn_unref(txn);
174
175 if (expected1 == -ECANCELED) {
176 block_job_cancel(job1, false);
177 }
178 if (expected2 == -ECANCELED) {
179 block_job_cancel(job2, false);
180 }
181
182 while (result1 == -EINPROGRESS || result2 == -EINPROGRESS) {
183 aio_poll(qemu_get_aio_context(), true);
184 }
185
186 /* Failure or cancellation of one job cancels the other job */
187 if (expected1 != 0) {
188 expected2 = -ECANCELED;
189 } else if (expected2 != 0) {
190 expected1 = -ECANCELED;
191 }
192
193 g_assert_cmpint(result1, ==, expected1);
194 g_assert_cmpint(result2, ==, expected2);
195 }
196
197 static void test_pair_jobs_success(void)
198 {
199 test_pair_jobs(0, 0);
200 }
201
202 static void test_pair_jobs_failure(void)
203 {
204 /* Test both orderings. The two jobs run for a different number of
205 * iterations so the code path is different depending on which job fails
206 * first.
207 */
208 test_pair_jobs(-EIO, 0);
209 test_pair_jobs(0, -EIO);
210 }
211
212 static void test_pair_jobs_cancel(void)
213 {
214 test_pair_jobs(-ECANCELED, 0);
215 test_pair_jobs(0, -ECANCELED);
216 }
217
218 static void test_pair_jobs_fail_cancel_race(void)
219 {
220 BlockJob *job1;
221 BlockJob *job2;
222 BlockJobTxn *txn;
223 int result1 = -EINPROGRESS;
224 int result2 = -EINPROGRESS;
225
226 txn = block_job_txn_new();
227 job1 = test_block_job_start(1, true, -ECANCELED, &result1, txn);
228 job2 = test_block_job_start(2, false, 0, &result2, txn);
229 block_job_start(job1);
230 block_job_start(job2);
231
232 block_job_cancel(job1, false);
233
234 /* Now make job2 finish before the main loop kicks jobs. This simulates
235 * the race between a pending kick and another job completing.
236 */
237 block_job_enter(job2);
238 block_job_enter(job2);
239
240 while (result1 == -EINPROGRESS || result2 == -EINPROGRESS) {
241 aio_poll(qemu_get_aio_context(), true);
242 }
243
244 g_assert_cmpint(result1, ==, -ECANCELED);
245 g_assert_cmpint(result2, ==, -ECANCELED);
246
247 block_job_txn_unref(txn);
248 }
249
250 int main(int argc, char **argv)
251 {
252 qemu_init_main_loop(&error_abort);
253 bdrv_init();
254
255 g_test_init(&argc, &argv, NULL);
256 g_test_add_func("/single/success", test_single_job_success);
257 g_test_add_func("/single/failure", test_single_job_failure);
258 g_test_add_func("/single/cancel", test_single_job_cancel);
259 g_test_add_func("/pair/success", test_pair_jobs_success);
260 g_test_add_func("/pair/failure", test_pair_jobs_failure);
261 g_test_add_func("/pair/cancel", test_pair_jobs_cancel);
262 g_test_add_func("/pair/fail-cancel-race", test_pair_jobs_fail_cancel_race);
263 return g_test_run();
264 }