xref: /openbmc/qemu/tests/unit/test-bdrv-drain.c (revision 1b177bbea0b8725e627eb18eb60b8866cd8e1df6)
1da668aa1SThomas Huth /*
2da668aa1SThomas Huth  * Block node draining tests
3da668aa1SThomas Huth  *
4da668aa1SThomas Huth  * Copyright (c) 2017 Kevin Wolf <kwolf@redhat.com>
5da668aa1SThomas Huth  *
6da668aa1SThomas Huth  * Permission is hereby granted, free of charge, to any person obtaining a copy
7da668aa1SThomas Huth  * of this software and associated documentation files (the "Software"), to deal
8da668aa1SThomas Huth  * in the Software without restriction, including without limitation the rights
9da668aa1SThomas Huth  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10da668aa1SThomas Huth  * copies of the Software, and to permit persons to whom the Software is
11da668aa1SThomas Huth  * furnished to do so, subject to the following conditions:
12da668aa1SThomas Huth  *
13da668aa1SThomas Huth  * The above copyright notice and this permission notice shall be included in
14da668aa1SThomas Huth  * all copies or substantial portions of the Software.
15da668aa1SThomas Huth  *
16da668aa1SThomas Huth  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17da668aa1SThomas Huth  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18da668aa1SThomas Huth  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19da668aa1SThomas Huth  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20da668aa1SThomas Huth  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21da668aa1SThomas Huth  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22da668aa1SThomas Huth  * THE SOFTWARE.
23da668aa1SThomas Huth  */
24da668aa1SThomas Huth 
25da668aa1SThomas Huth #include "qemu/osdep.h"
26da668aa1SThomas Huth #include "block/block.h"
27da668aa1SThomas Huth #include "block/blockjob_int.h"
28da668aa1SThomas Huth #include "sysemu/block-backend.h"
29da668aa1SThomas Huth #include "qapi/error.h"
30da668aa1SThomas Huth #include "qemu/main-loop.h"
31da668aa1SThomas Huth #include "iothread.h"
32da668aa1SThomas Huth 
33da668aa1SThomas Huth static QemuEvent done_event;
34da668aa1SThomas Huth 
35da668aa1SThomas Huth typedef struct BDRVTestState {
36da668aa1SThomas Huth     int drain_count;
37da668aa1SThomas Huth     AioContext *bh_indirection_ctx;
38da668aa1SThomas Huth     bool sleep_in_drain_begin;
39da668aa1SThomas Huth } BDRVTestState;
40da668aa1SThomas Huth 
41da668aa1SThomas Huth static void coroutine_fn bdrv_test_co_drain_begin(BlockDriverState *bs)
42da668aa1SThomas Huth {
43da668aa1SThomas Huth     BDRVTestState *s = bs->opaque;
44da668aa1SThomas Huth     s->drain_count++;
45da668aa1SThomas Huth     if (s->sleep_in_drain_begin) {
46da668aa1SThomas Huth         qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, 100000);
47da668aa1SThomas Huth     }
48da668aa1SThomas Huth }
49da668aa1SThomas Huth 
50da668aa1SThomas Huth static void coroutine_fn bdrv_test_co_drain_end(BlockDriverState *bs)
51da668aa1SThomas Huth {
52da668aa1SThomas Huth     BDRVTestState *s = bs->opaque;
53da668aa1SThomas Huth     s->drain_count--;
54da668aa1SThomas Huth }
55da668aa1SThomas Huth 
56da668aa1SThomas Huth static void bdrv_test_close(BlockDriverState *bs)
57da668aa1SThomas Huth {
58da668aa1SThomas Huth     BDRVTestState *s = bs->opaque;
59da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, >, 0);
60da668aa1SThomas Huth }
61da668aa1SThomas Huth 
62da668aa1SThomas Huth static void co_reenter_bh(void *opaque)
63da668aa1SThomas Huth {
64da668aa1SThomas Huth     aio_co_wake(opaque);
65da668aa1SThomas Huth }
66da668aa1SThomas Huth 
67da668aa1SThomas Huth static int coroutine_fn bdrv_test_co_preadv(BlockDriverState *bs,
68f7ef38ddSVladimir Sementsov-Ogievskiy                                             int64_t offset, int64_t bytes,
69f7ef38ddSVladimir Sementsov-Ogievskiy                                             QEMUIOVector *qiov,
70f7ef38ddSVladimir Sementsov-Ogievskiy                                             BdrvRequestFlags flags)
71da668aa1SThomas Huth {
72da668aa1SThomas Huth     BDRVTestState *s = bs->opaque;
73da668aa1SThomas Huth 
74da668aa1SThomas Huth     /* We want this request to stay until the polling loop in drain waits for
75da668aa1SThomas Huth      * it to complete. We need to sleep a while as bdrv_drain_invoke() comes
76da668aa1SThomas Huth      * first and polls its result, too, but it shouldn't accidentally complete
77da668aa1SThomas Huth      * this request yet. */
78da668aa1SThomas Huth     qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, 100000);
79da668aa1SThomas Huth 
80da668aa1SThomas Huth     if (s->bh_indirection_ctx) {
81da668aa1SThomas Huth         aio_bh_schedule_oneshot(s->bh_indirection_ctx, co_reenter_bh,
82da668aa1SThomas Huth                                 qemu_coroutine_self());
83da668aa1SThomas Huth         qemu_coroutine_yield();
84da668aa1SThomas Huth     }
85da668aa1SThomas Huth 
86da668aa1SThomas Huth     return 0;
87da668aa1SThomas Huth }
88da668aa1SThomas Huth 
89da668aa1SThomas Huth static int bdrv_test_change_backing_file(BlockDriverState *bs,
90da668aa1SThomas Huth                                          const char *backing_file,
91da668aa1SThomas Huth                                          const char *backing_fmt)
92da668aa1SThomas Huth {
93da668aa1SThomas Huth     return 0;
94da668aa1SThomas Huth }
95da668aa1SThomas Huth 
96da668aa1SThomas Huth static BlockDriver bdrv_test = {
97da668aa1SThomas Huth     .format_name            = "test",
98da668aa1SThomas Huth     .instance_size          = sizeof(BDRVTestState),
9925f78d9eSVladimir Sementsov-Ogievskiy     .supports_backing       = true,
100da668aa1SThomas Huth 
101da668aa1SThomas Huth     .bdrv_close             = bdrv_test_close,
102da668aa1SThomas Huth     .bdrv_co_preadv         = bdrv_test_co_preadv,
103da668aa1SThomas Huth 
104da668aa1SThomas Huth     .bdrv_co_drain_begin    = bdrv_test_co_drain_begin,
105da668aa1SThomas Huth     .bdrv_co_drain_end      = bdrv_test_co_drain_end,
106da668aa1SThomas Huth 
107da668aa1SThomas Huth     .bdrv_child_perm        = bdrv_default_perms,
108da668aa1SThomas Huth 
109da668aa1SThomas Huth     .bdrv_change_backing_file = bdrv_test_change_backing_file,
110da668aa1SThomas Huth };
111da668aa1SThomas Huth 
112da668aa1SThomas Huth static void aio_ret_cb(void *opaque, int ret)
113da668aa1SThomas Huth {
114da668aa1SThomas Huth     int *aio_ret = opaque;
115da668aa1SThomas Huth     *aio_ret = ret;
116da668aa1SThomas Huth }
117da668aa1SThomas Huth 
118da668aa1SThomas Huth typedef struct CallInCoroutineData {
119da668aa1SThomas Huth     void (*entry)(void);
120da668aa1SThomas Huth     bool done;
121da668aa1SThomas Huth } CallInCoroutineData;
122da668aa1SThomas Huth 
123da668aa1SThomas Huth static coroutine_fn void call_in_coroutine_entry(void *opaque)
124da668aa1SThomas Huth {
125da668aa1SThomas Huth     CallInCoroutineData *data = opaque;
126da668aa1SThomas Huth 
127da668aa1SThomas Huth     data->entry();
128da668aa1SThomas Huth     data->done = true;
129da668aa1SThomas Huth }
130da668aa1SThomas Huth 
131da668aa1SThomas Huth static void call_in_coroutine(void (*entry)(void))
132da668aa1SThomas Huth {
133da668aa1SThomas Huth     Coroutine *co;
134da668aa1SThomas Huth     CallInCoroutineData data = {
135da668aa1SThomas Huth         .entry  = entry,
136da668aa1SThomas Huth         .done   = false,
137da668aa1SThomas Huth     };
138da668aa1SThomas Huth 
139da668aa1SThomas Huth     co = qemu_coroutine_create(call_in_coroutine_entry, &data);
140da668aa1SThomas Huth     qemu_coroutine_enter(co);
141da668aa1SThomas Huth     while (!data.done) {
142da668aa1SThomas Huth         aio_poll(qemu_get_aio_context(), true);
143da668aa1SThomas Huth     }
144da668aa1SThomas Huth }
145da668aa1SThomas Huth 
146da668aa1SThomas Huth enum drain_type {
147da668aa1SThomas Huth     BDRV_DRAIN_ALL,
148da668aa1SThomas Huth     BDRV_DRAIN,
149da668aa1SThomas Huth     BDRV_SUBTREE_DRAIN,
150da668aa1SThomas Huth     DRAIN_TYPE_MAX,
151da668aa1SThomas Huth };
152da668aa1SThomas Huth 
153da668aa1SThomas Huth static void do_drain_begin(enum drain_type drain_type, BlockDriverState *bs)
154da668aa1SThomas Huth {
155da668aa1SThomas Huth     switch (drain_type) {
156da668aa1SThomas Huth     case BDRV_DRAIN_ALL:        bdrv_drain_all_begin(); break;
157da668aa1SThomas Huth     case BDRV_DRAIN:            bdrv_drained_begin(bs); break;
158da668aa1SThomas Huth     case BDRV_SUBTREE_DRAIN:    bdrv_subtree_drained_begin(bs); break;
159da668aa1SThomas Huth     default:                    g_assert_not_reached();
160da668aa1SThomas Huth     }
161da668aa1SThomas Huth }
162da668aa1SThomas Huth 
163da668aa1SThomas Huth static void do_drain_end(enum drain_type drain_type, BlockDriverState *bs)
164da668aa1SThomas Huth {
165da668aa1SThomas Huth     switch (drain_type) {
166da668aa1SThomas Huth     case BDRV_DRAIN_ALL:        bdrv_drain_all_end(); break;
167da668aa1SThomas Huth     case BDRV_DRAIN:            bdrv_drained_end(bs); break;
168da668aa1SThomas Huth     case BDRV_SUBTREE_DRAIN:    bdrv_subtree_drained_end(bs); break;
169da668aa1SThomas Huth     default:                    g_assert_not_reached();
170da668aa1SThomas Huth     }
171da668aa1SThomas Huth }
172da668aa1SThomas Huth 
173da668aa1SThomas Huth static void do_drain_begin_unlocked(enum drain_type drain_type, BlockDriverState *bs)
174da668aa1SThomas Huth {
175da668aa1SThomas Huth     if (drain_type != BDRV_DRAIN_ALL) {
176da668aa1SThomas Huth         aio_context_acquire(bdrv_get_aio_context(bs));
177da668aa1SThomas Huth     }
178da668aa1SThomas Huth     do_drain_begin(drain_type, bs);
179da668aa1SThomas Huth     if (drain_type != BDRV_DRAIN_ALL) {
180da668aa1SThomas Huth         aio_context_release(bdrv_get_aio_context(bs));
181da668aa1SThomas Huth     }
182da668aa1SThomas Huth }
183da668aa1SThomas Huth 
184da668aa1SThomas Huth static void do_drain_end_unlocked(enum drain_type drain_type, BlockDriverState *bs)
185da668aa1SThomas Huth {
186da668aa1SThomas Huth     if (drain_type != BDRV_DRAIN_ALL) {
187da668aa1SThomas Huth         aio_context_acquire(bdrv_get_aio_context(bs));
188da668aa1SThomas Huth     }
189da668aa1SThomas Huth     do_drain_end(drain_type, bs);
190da668aa1SThomas Huth     if (drain_type != BDRV_DRAIN_ALL) {
191da668aa1SThomas Huth         aio_context_release(bdrv_get_aio_context(bs));
192da668aa1SThomas Huth     }
193da668aa1SThomas Huth }
194da668aa1SThomas Huth 
195da668aa1SThomas Huth static void test_drv_cb_common(enum drain_type drain_type, bool recursive)
196da668aa1SThomas Huth {
197da668aa1SThomas Huth     BlockBackend *blk;
198da668aa1SThomas Huth     BlockDriverState *bs, *backing;
199da668aa1SThomas Huth     BDRVTestState *s, *backing_s;
200da668aa1SThomas Huth     BlockAIOCB *acb;
201da668aa1SThomas Huth     int aio_ret;
202da668aa1SThomas Huth 
203da668aa1SThomas Huth     QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, NULL, 0);
204da668aa1SThomas Huth 
205da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
206da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
207da668aa1SThomas Huth                               &error_abort);
208da668aa1SThomas Huth     s = bs->opaque;
209da668aa1SThomas Huth     blk_insert_bs(blk, bs, &error_abort);
210da668aa1SThomas Huth 
211da668aa1SThomas Huth     backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
212da668aa1SThomas Huth     backing_s = backing->opaque;
213da668aa1SThomas Huth     bdrv_set_backing_hd(bs, backing, &error_abort);
214da668aa1SThomas Huth 
215da668aa1SThomas Huth     /* Simple bdrv_drain_all_begin/end pair, check that CBs are called */
216da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 0);
217da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
218da668aa1SThomas Huth 
219da668aa1SThomas Huth     do_drain_begin(drain_type, bs);
220da668aa1SThomas Huth 
221da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 1);
222da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, !!recursive);
223da668aa1SThomas Huth 
224da668aa1SThomas Huth     do_drain_end(drain_type, bs);
225da668aa1SThomas Huth 
226da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 0);
227da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
228da668aa1SThomas Huth 
229da668aa1SThomas Huth     /* Now do the same while a request is pending */
230da668aa1SThomas Huth     aio_ret = -EINPROGRESS;
231da668aa1SThomas Huth     acb = blk_aio_preadv(blk, 0, &qiov, 0, aio_ret_cb, &aio_ret);
232da668aa1SThomas Huth     g_assert(acb != NULL);
233da668aa1SThomas Huth     g_assert_cmpint(aio_ret, ==, -EINPROGRESS);
234da668aa1SThomas Huth 
235da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 0);
236da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
237da668aa1SThomas Huth 
238da668aa1SThomas Huth     do_drain_begin(drain_type, bs);
239da668aa1SThomas Huth 
240da668aa1SThomas Huth     g_assert_cmpint(aio_ret, ==, 0);
241da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 1);
242da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, !!recursive);
243da668aa1SThomas Huth 
244da668aa1SThomas Huth     do_drain_end(drain_type, bs);
245da668aa1SThomas Huth 
246da668aa1SThomas Huth     g_assert_cmpint(s->drain_count, ==, 0);
247da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
248da668aa1SThomas Huth 
249da668aa1SThomas Huth     bdrv_unref(backing);
250da668aa1SThomas Huth     bdrv_unref(bs);
251da668aa1SThomas Huth     blk_unref(blk);
252da668aa1SThomas Huth }
253da668aa1SThomas Huth 
254da668aa1SThomas Huth static void test_drv_cb_drain_all(void)
255da668aa1SThomas Huth {
256da668aa1SThomas Huth     test_drv_cb_common(BDRV_DRAIN_ALL, true);
257da668aa1SThomas Huth }
258da668aa1SThomas Huth 
259da668aa1SThomas Huth static void test_drv_cb_drain(void)
260da668aa1SThomas Huth {
261da668aa1SThomas Huth     test_drv_cb_common(BDRV_DRAIN, false);
262da668aa1SThomas Huth }
263da668aa1SThomas Huth 
264da668aa1SThomas Huth static void test_drv_cb_drain_subtree(void)
265da668aa1SThomas Huth {
266da668aa1SThomas Huth     test_drv_cb_common(BDRV_SUBTREE_DRAIN, true);
267da668aa1SThomas Huth }
268da668aa1SThomas Huth 
269da668aa1SThomas Huth static void test_drv_cb_co_drain_all(void)
270da668aa1SThomas Huth {
271da668aa1SThomas Huth     call_in_coroutine(test_drv_cb_drain_all);
272da668aa1SThomas Huth }
273da668aa1SThomas Huth 
274da668aa1SThomas Huth static void test_drv_cb_co_drain(void)
275da668aa1SThomas Huth {
276da668aa1SThomas Huth     call_in_coroutine(test_drv_cb_drain);
277da668aa1SThomas Huth }
278da668aa1SThomas Huth 
279da668aa1SThomas Huth static void test_drv_cb_co_drain_subtree(void)
280da668aa1SThomas Huth {
281da668aa1SThomas Huth     call_in_coroutine(test_drv_cb_drain_subtree);
282da668aa1SThomas Huth }
283da668aa1SThomas Huth 
284da668aa1SThomas Huth static void test_quiesce_common(enum drain_type drain_type, bool recursive)
285da668aa1SThomas Huth {
286da668aa1SThomas Huth     BlockBackend *blk;
287da668aa1SThomas Huth     BlockDriverState *bs, *backing;
288da668aa1SThomas Huth 
289da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
290da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
291da668aa1SThomas Huth                               &error_abort);
292da668aa1SThomas Huth     blk_insert_bs(blk, bs, &error_abort);
293da668aa1SThomas Huth 
294da668aa1SThomas Huth     backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
295da668aa1SThomas Huth     bdrv_set_backing_hd(bs, backing, &error_abort);
296da668aa1SThomas Huth 
297da668aa1SThomas Huth     g_assert_cmpint(bs->quiesce_counter, ==, 0);
298da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
299da668aa1SThomas Huth 
300da668aa1SThomas Huth     do_drain_begin(drain_type, bs);
301da668aa1SThomas Huth 
302da668aa1SThomas Huth     g_assert_cmpint(bs->quiesce_counter, ==, 1);
303da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, !!recursive);
304da668aa1SThomas Huth 
305da668aa1SThomas Huth     do_drain_end(drain_type, bs);
306da668aa1SThomas Huth 
307da668aa1SThomas Huth     g_assert_cmpint(bs->quiesce_counter, ==, 0);
308da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
309da668aa1SThomas Huth 
310da668aa1SThomas Huth     bdrv_unref(backing);
311da668aa1SThomas Huth     bdrv_unref(bs);
312da668aa1SThomas Huth     blk_unref(blk);
313da668aa1SThomas Huth }
314da668aa1SThomas Huth 
315da668aa1SThomas Huth static void test_quiesce_drain_all(void)
316da668aa1SThomas Huth {
317da668aa1SThomas Huth     test_quiesce_common(BDRV_DRAIN_ALL, true);
318da668aa1SThomas Huth }
319da668aa1SThomas Huth 
320da668aa1SThomas Huth static void test_quiesce_drain(void)
321da668aa1SThomas Huth {
322da668aa1SThomas Huth     test_quiesce_common(BDRV_DRAIN, false);
323da668aa1SThomas Huth }
324da668aa1SThomas Huth 
325da668aa1SThomas Huth static void test_quiesce_drain_subtree(void)
326da668aa1SThomas Huth {
327da668aa1SThomas Huth     test_quiesce_common(BDRV_SUBTREE_DRAIN, true);
328da668aa1SThomas Huth }
329da668aa1SThomas Huth 
330da668aa1SThomas Huth static void test_quiesce_co_drain_all(void)
331da668aa1SThomas Huth {
332da668aa1SThomas Huth     call_in_coroutine(test_quiesce_drain_all);
333da668aa1SThomas Huth }
334da668aa1SThomas Huth 
335da668aa1SThomas Huth static void test_quiesce_co_drain(void)
336da668aa1SThomas Huth {
337da668aa1SThomas Huth     call_in_coroutine(test_quiesce_drain);
338da668aa1SThomas Huth }
339da668aa1SThomas Huth 
340da668aa1SThomas Huth static void test_quiesce_co_drain_subtree(void)
341da668aa1SThomas Huth {
342da668aa1SThomas Huth     call_in_coroutine(test_quiesce_drain_subtree);
343da668aa1SThomas Huth }
344da668aa1SThomas Huth 
345da668aa1SThomas Huth static void test_nested(void)
346da668aa1SThomas Huth {
347da668aa1SThomas Huth     BlockBackend *blk;
348da668aa1SThomas Huth     BlockDriverState *bs, *backing;
349da668aa1SThomas Huth     BDRVTestState *s, *backing_s;
350da668aa1SThomas Huth     enum drain_type outer, inner;
351da668aa1SThomas Huth 
352da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
353da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
354da668aa1SThomas Huth                               &error_abort);
355da668aa1SThomas Huth     s = bs->opaque;
356da668aa1SThomas Huth     blk_insert_bs(blk, bs, &error_abort);
357da668aa1SThomas Huth 
358da668aa1SThomas Huth     backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
359da668aa1SThomas Huth     backing_s = backing->opaque;
360da668aa1SThomas Huth     bdrv_set_backing_hd(bs, backing, &error_abort);
361da668aa1SThomas Huth 
362da668aa1SThomas Huth     for (outer = 0; outer < DRAIN_TYPE_MAX; outer++) {
363da668aa1SThomas Huth         for (inner = 0; inner < DRAIN_TYPE_MAX; inner++) {
364da668aa1SThomas Huth             int backing_quiesce = (outer != BDRV_DRAIN) +
365da668aa1SThomas Huth                                   (inner != BDRV_DRAIN);
366da668aa1SThomas Huth 
367da668aa1SThomas Huth             g_assert_cmpint(bs->quiesce_counter, ==, 0);
368da668aa1SThomas Huth             g_assert_cmpint(backing->quiesce_counter, ==, 0);
369da668aa1SThomas Huth             g_assert_cmpint(s->drain_count, ==, 0);
370da668aa1SThomas Huth             g_assert_cmpint(backing_s->drain_count, ==, 0);
371da668aa1SThomas Huth 
372da668aa1SThomas Huth             do_drain_begin(outer, bs);
373da668aa1SThomas Huth             do_drain_begin(inner, bs);
374da668aa1SThomas Huth 
375da668aa1SThomas Huth             g_assert_cmpint(bs->quiesce_counter, ==, 2);
376da668aa1SThomas Huth             g_assert_cmpint(backing->quiesce_counter, ==, backing_quiesce);
377da668aa1SThomas Huth             g_assert_cmpint(s->drain_count, ==, 2);
378da668aa1SThomas Huth             g_assert_cmpint(backing_s->drain_count, ==, backing_quiesce);
379da668aa1SThomas Huth 
380da668aa1SThomas Huth             do_drain_end(inner, bs);
381da668aa1SThomas Huth             do_drain_end(outer, bs);
382da668aa1SThomas Huth 
383da668aa1SThomas Huth             g_assert_cmpint(bs->quiesce_counter, ==, 0);
384da668aa1SThomas Huth             g_assert_cmpint(backing->quiesce_counter, ==, 0);
385da668aa1SThomas Huth             g_assert_cmpint(s->drain_count, ==, 0);
386da668aa1SThomas Huth             g_assert_cmpint(backing_s->drain_count, ==, 0);
387da668aa1SThomas Huth         }
388da668aa1SThomas Huth     }
389da668aa1SThomas Huth 
390da668aa1SThomas Huth     bdrv_unref(backing);
391da668aa1SThomas Huth     bdrv_unref(bs);
392da668aa1SThomas Huth     blk_unref(blk);
393da668aa1SThomas Huth }
394da668aa1SThomas Huth 
395da668aa1SThomas Huth static void test_multiparent(void)
396da668aa1SThomas Huth {
397da668aa1SThomas Huth     BlockBackend *blk_a, *blk_b;
398da668aa1SThomas Huth     BlockDriverState *bs_a, *bs_b, *backing;
399da668aa1SThomas Huth     BDRVTestState *a_s, *b_s, *backing_s;
400da668aa1SThomas Huth 
401da668aa1SThomas Huth     blk_a = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
402da668aa1SThomas Huth     bs_a = bdrv_new_open_driver(&bdrv_test, "test-node-a", BDRV_O_RDWR,
403da668aa1SThomas Huth                                 &error_abort);
404da668aa1SThomas Huth     a_s = bs_a->opaque;
405da668aa1SThomas Huth     blk_insert_bs(blk_a, bs_a, &error_abort);
406da668aa1SThomas Huth 
407da668aa1SThomas Huth     blk_b = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
408da668aa1SThomas Huth     bs_b = bdrv_new_open_driver(&bdrv_test, "test-node-b", BDRV_O_RDWR,
409da668aa1SThomas Huth                                 &error_abort);
410da668aa1SThomas Huth     b_s = bs_b->opaque;
411da668aa1SThomas Huth     blk_insert_bs(blk_b, bs_b, &error_abort);
412da668aa1SThomas Huth 
413da668aa1SThomas Huth     backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
414da668aa1SThomas Huth     backing_s = backing->opaque;
415da668aa1SThomas Huth     bdrv_set_backing_hd(bs_a, backing, &error_abort);
416da668aa1SThomas Huth     bdrv_set_backing_hd(bs_b, backing, &error_abort);
417da668aa1SThomas Huth 
418da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 0);
419da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 0);
420da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
421da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 0);
422da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 0);
423da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
424da668aa1SThomas Huth 
425da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_a);
426da668aa1SThomas Huth 
427da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 1);
428da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 1);
429da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 1);
430da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 1);
431da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 1);
432da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 1);
433da668aa1SThomas Huth 
434da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_b);
435da668aa1SThomas Huth 
436da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 2);
437da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 2);
438da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 2);
439da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 2);
440da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 2);
441da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 2);
442da668aa1SThomas Huth 
443da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_b);
444da668aa1SThomas Huth 
445da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 1);
446da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 1);
447da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 1);
448da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 1);
449da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 1);
450da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 1);
451da668aa1SThomas Huth 
452da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_a);
453da668aa1SThomas Huth 
454da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 0);
455da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 0);
456da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
457da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 0);
458da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 0);
459da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
460da668aa1SThomas Huth 
461da668aa1SThomas Huth     bdrv_unref(backing);
462da668aa1SThomas Huth     bdrv_unref(bs_a);
463da668aa1SThomas Huth     bdrv_unref(bs_b);
464da668aa1SThomas Huth     blk_unref(blk_a);
465da668aa1SThomas Huth     blk_unref(blk_b);
466da668aa1SThomas Huth }
467da668aa1SThomas Huth 
468da668aa1SThomas Huth static void test_graph_change_drain_subtree(void)
469da668aa1SThomas Huth {
470da668aa1SThomas Huth     BlockBackend *blk_a, *blk_b;
471da668aa1SThomas Huth     BlockDriverState *bs_a, *bs_b, *backing;
472da668aa1SThomas Huth     BDRVTestState *a_s, *b_s, *backing_s;
473da668aa1SThomas Huth 
474da668aa1SThomas Huth     blk_a = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
475da668aa1SThomas Huth     bs_a = bdrv_new_open_driver(&bdrv_test, "test-node-a", BDRV_O_RDWR,
476da668aa1SThomas Huth                                 &error_abort);
477da668aa1SThomas Huth     a_s = bs_a->opaque;
478da668aa1SThomas Huth     blk_insert_bs(blk_a, bs_a, &error_abort);
479da668aa1SThomas Huth 
480da668aa1SThomas Huth     blk_b = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
481da668aa1SThomas Huth     bs_b = bdrv_new_open_driver(&bdrv_test, "test-node-b", BDRV_O_RDWR,
482da668aa1SThomas Huth                                 &error_abort);
483da668aa1SThomas Huth     b_s = bs_b->opaque;
484da668aa1SThomas Huth     blk_insert_bs(blk_b, bs_b, &error_abort);
485da668aa1SThomas Huth 
486da668aa1SThomas Huth     backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
487da668aa1SThomas Huth     backing_s = backing->opaque;
488da668aa1SThomas Huth     bdrv_set_backing_hd(bs_a, backing, &error_abort);
489da668aa1SThomas Huth 
490da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 0);
491da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 0);
492da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
493da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 0);
494da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 0);
495da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
496da668aa1SThomas Huth 
497da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_a);
498da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_a);
499da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_a);
500da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_b);
501da668aa1SThomas Huth     do_drain_begin(BDRV_SUBTREE_DRAIN, bs_b);
502da668aa1SThomas Huth 
503da668aa1SThomas Huth     bdrv_set_backing_hd(bs_b, backing, &error_abort);
504da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 5);
505da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 5);
506da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 5);
507da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 5);
508da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 5);
509da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 5);
510da668aa1SThomas Huth 
511da668aa1SThomas Huth     bdrv_set_backing_hd(bs_b, NULL, &error_abort);
512da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 3);
513da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 2);
514da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 3);
515da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 3);
516da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 2);
517da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 3);
518da668aa1SThomas Huth 
519da668aa1SThomas Huth     bdrv_set_backing_hd(bs_b, backing, &error_abort);
520da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 5);
521da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 5);
522da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 5);
523da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 5);
524da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 5);
525da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 5);
526da668aa1SThomas Huth 
527da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_b);
528da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_b);
529da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_a);
530da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_a);
531da668aa1SThomas Huth     do_drain_end(BDRV_SUBTREE_DRAIN, bs_a);
532da668aa1SThomas Huth 
533da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 0);
534da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 0);
535da668aa1SThomas Huth     g_assert_cmpint(backing->quiesce_counter, ==, 0);
536da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 0);
537da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 0);
538da668aa1SThomas Huth     g_assert_cmpint(backing_s->drain_count, ==, 0);
539da668aa1SThomas Huth 
540da668aa1SThomas Huth     bdrv_unref(backing);
541da668aa1SThomas Huth     bdrv_unref(bs_a);
542da668aa1SThomas Huth     bdrv_unref(bs_b);
543da668aa1SThomas Huth     blk_unref(blk_a);
544da668aa1SThomas Huth     blk_unref(blk_b);
545da668aa1SThomas Huth }
546da668aa1SThomas Huth 
547da668aa1SThomas Huth static void test_graph_change_drain_all(void)
548da668aa1SThomas Huth {
549da668aa1SThomas Huth     BlockBackend *blk_a, *blk_b;
550da668aa1SThomas Huth     BlockDriverState *bs_a, *bs_b;
551da668aa1SThomas Huth     BDRVTestState *a_s, *b_s;
552da668aa1SThomas Huth 
553da668aa1SThomas Huth     /* Create node A with a BlockBackend */
554da668aa1SThomas Huth     blk_a = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
555da668aa1SThomas Huth     bs_a = bdrv_new_open_driver(&bdrv_test, "test-node-a", BDRV_O_RDWR,
556da668aa1SThomas Huth                                 &error_abort);
557da668aa1SThomas Huth     a_s = bs_a->opaque;
558da668aa1SThomas Huth     blk_insert_bs(blk_a, bs_a, &error_abort);
559da668aa1SThomas Huth 
560da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 0);
561da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 0);
562da668aa1SThomas Huth 
563da668aa1SThomas Huth     /* Call bdrv_drain_all_begin() */
564da668aa1SThomas Huth     bdrv_drain_all_begin();
565da668aa1SThomas Huth 
566da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 1);
567da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 1);
568da668aa1SThomas Huth 
569da668aa1SThomas Huth     /* Create node B with a BlockBackend */
570da668aa1SThomas Huth     blk_b = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
571da668aa1SThomas Huth     bs_b = bdrv_new_open_driver(&bdrv_test, "test-node-b", BDRV_O_RDWR,
572da668aa1SThomas Huth                                 &error_abort);
573da668aa1SThomas Huth     b_s = bs_b->opaque;
574da668aa1SThomas Huth     blk_insert_bs(blk_b, bs_b, &error_abort);
575da668aa1SThomas Huth 
576da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 1);
577da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 1);
578da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 1);
579da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 1);
580da668aa1SThomas Huth 
581da668aa1SThomas Huth     /* Unref and finally delete node A */
582da668aa1SThomas Huth     blk_unref(blk_a);
583da668aa1SThomas Huth 
584da668aa1SThomas Huth     g_assert_cmpint(bs_a->quiesce_counter, ==, 1);
585da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 1);
586da668aa1SThomas Huth     g_assert_cmpint(a_s->drain_count, ==, 1);
587da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 1);
588da668aa1SThomas Huth 
589da668aa1SThomas Huth     bdrv_unref(bs_a);
590da668aa1SThomas Huth 
591da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 1);
592da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 1);
593da668aa1SThomas Huth 
594da668aa1SThomas Huth     /* End the drained section */
595da668aa1SThomas Huth     bdrv_drain_all_end();
596da668aa1SThomas Huth 
597da668aa1SThomas Huth     g_assert_cmpint(bs_b->quiesce_counter, ==, 0);
598da668aa1SThomas Huth     g_assert_cmpint(b_s->drain_count, ==, 0);
599da668aa1SThomas Huth     g_assert_cmpint(qemu_get_aio_context()->external_disable_cnt, ==, 0);
600da668aa1SThomas Huth 
601da668aa1SThomas Huth     bdrv_unref(bs_b);
602da668aa1SThomas Huth     blk_unref(blk_b);
603da668aa1SThomas Huth }
604da668aa1SThomas Huth 
605da668aa1SThomas Huth struct test_iothread_data {
606da668aa1SThomas Huth     BlockDriverState *bs;
607da668aa1SThomas Huth     enum drain_type drain_type;
608da668aa1SThomas Huth     int *aio_ret;
609da668aa1SThomas Huth };
610da668aa1SThomas Huth 
611da668aa1SThomas Huth static void test_iothread_drain_entry(void *opaque)
612da668aa1SThomas Huth {
613da668aa1SThomas Huth     struct test_iothread_data *data = opaque;
614da668aa1SThomas Huth 
615da668aa1SThomas Huth     aio_context_acquire(bdrv_get_aio_context(data->bs));
616da668aa1SThomas Huth     do_drain_begin(data->drain_type, data->bs);
617da668aa1SThomas Huth     g_assert_cmpint(*data->aio_ret, ==, 0);
618da668aa1SThomas Huth     do_drain_end(data->drain_type, data->bs);
619da668aa1SThomas Huth     aio_context_release(bdrv_get_aio_context(data->bs));
620da668aa1SThomas Huth 
621da668aa1SThomas Huth     qemu_event_set(&done_event);
622da668aa1SThomas Huth }
623da668aa1SThomas Huth 
624da668aa1SThomas Huth static void test_iothread_aio_cb(void *opaque, int ret)
625da668aa1SThomas Huth {
626da668aa1SThomas Huth     int *aio_ret = opaque;
627da668aa1SThomas Huth     *aio_ret = ret;
628da668aa1SThomas Huth     qemu_event_set(&done_event);
629da668aa1SThomas Huth }
630da668aa1SThomas Huth 
631da668aa1SThomas Huth static void test_iothread_main_thread_bh(void *opaque)
632da668aa1SThomas Huth {
633da668aa1SThomas Huth     struct test_iothread_data *data = opaque;
634da668aa1SThomas Huth 
635da668aa1SThomas Huth     /* Test that the AioContext is not yet locked in a random BH that is
636da668aa1SThomas Huth      * executed during drain, otherwise this would deadlock. */
637da668aa1SThomas Huth     aio_context_acquire(bdrv_get_aio_context(data->bs));
638da668aa1SThomas Huth     bdrv_flush(data->bs);
639da668aa1SThomas Huth     aio_context_release(bdrv_get_aio_context(data->bs));
640da668aa1SThomas Huth }
641da668aa1SThomas Huth 
642da668aa1SThomas Huth /*
643da668aa1SThomas Huth  * Starts an AIO request on a BDS that runs in the AioContext of iothread 1.
644da668aa1SThomas Huth  * The request involves a BH on iothread 2 before it can complete.
645da668aa1SThomas Huth  *
646da668aa1SThomas Huth  * @drain_thread = 0 means that do_drain_begin/end are called from the main
647da668aa1SThomas Huth  * thread, @drain_thread = 1 means that they are called from iothread 1. Drain
648da668aa1SThomas Huth  * for this BDS cannot be called from iothread 2 because only the main thread
649da668aa1SThomas Huth  * may do cross-AioContext polling.
650da668aa1SThomas Huth  */
651da668aa1SThomas Huth static void test_iothread_common(enum drain_type drain_type, int drain_thread)
652da668aa1SThomas Huth {
653da668aa1SThomas Huth     BlockBackend *blk;
654da668aa1SThomas Huth     BlockDriverState *bs;
655da668aa1SThomas Huth     BDRVTestState *s;
656da668aa1SThomas Huth     BlockAIOCB *acb;
657da668aa1SThomas Huth     int aio_ret;
658da668aa1SThomas Huth     struct test_iothread_data data;
659da668aa1SThomas Huth 
660da668aa1SThomas Huth     IOThread *a = iothread_new();
661da668aa1SThomas Huth     IOThread *b = iothread_new();
662da668aa1SThomas Huth     AioContext *ctx_a = iothread_get_aio_context(a);
663da668aa1SThomas Huth     AioContext *ctx_b = iothread_get_aio_context(b);
664da668aa1SThomas Huth 
665da668aa1SThomas Huth     QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, NULL, 0);
666da668aa1SThomas Huth 
667da668aa1SThomas Huth     /* bdrv_drain_all() may only be called from the main loop thread */
668da668aa1SThomas Huth     if (drain_type == BDRV_DRAIN_ALL && drain_thread != 0) {
669da668aa1SThomas Huth         goto out;
670da668aa1SThomas Huth     }
671da668aa1SThomas Huth 
672da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
673da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
674da668aa1SThomas Huth                               &error_abort);
675da668aa1SThomas Huth     s = bs->opaque;
676da668aa1SThomas Huth     blk_insert_bs(blk, bs, &error_abort);
677da668aa1SThomas Huth     blk_set_disable_request_queuing(blk, true);
678da668aa1SThomas Huth 
679da668aa1SThomas Huth     blk_set_aio_context(blk, ctx_a, &error_abort);
680da668aa1SThomas Huth     aio_context_acquire(ctx_a);
681da668aa1SThomas Huth 
682da668aa1SThomas Huth     s->bh_indirection_ctx = ctx_b;
683da668aa1SThomas Huth 
684da668aa1SThomas Huth     aio_ret = -EINPROGRESS;
685da668aa1SThomas Huth     qemu_event_reset(&done_event);
686da668aa1SThomas Huth 
687da668aa1SThomas Huth     if (drain_thread == 0) {
688da668aa1SThomas Huth         acb = blk_aio_preadv(blk, 0, &qiov, 0, test_iothread_aio_cb, &aio_ret);
689da668aa1SThomas Huth     } else {
690da668aa1SThomas Huth         acb = blk_aio_preadv(blk, 0, &qiov, 0, aio_ret_cb, &aio_ret);
691da668aa1SThomas Huth     }
692da668aa1SThomas Huth     g_assert(acb != NULL);
693da668aa1SThomas Huth     g_assert_cmpint(aio_ret, ==, -EINPROGRESS);
694da668aa1SThomas Huth 
695da668aa1SThomas Huth     aio_context_release(ctx_a);
696da668aa1SThomas Huth 
697da668aa1SThomas Huth     data = (struct test_iothread_data) {
698da668aa1SThomas Huth         .bs         = bs,
699da668aa1SThomas Huth         .drain_type = drain_type,
700da668aa1SThomas Huth         .aio_ret    = &aio_ret,
701da668aa1SThomas Huth     };
702da668aa1SThomas Huth 
703da668aa1SThomas Huth     switch (drain_thread) {
704da668aa1SThomas Huth     case 0:
705da668aa1SThomas Huth         if (drain_type != BDRV_DRAIN_ALL) {
706da668aa1SThomas Huth             aio_context_acquire(ctx_a);
707da668aa1SThomas Huth         }
708da668aa1SThomas Huth 
709da668aa1SThomas Huth         aio_bh_schedule_oneshot(ctx_a, test_iothread_main_thread_bh, &data);
710da668aa1SThomas Huth 
711da668aa1SThomas Huth         /* The request is running on the IOThread a. Draining its block device
712da668aa1SThomas Huth          * will make sure that it has completed as far as the BDS is concerned,
713da668aa1SThomas Huth          * but the drain in this thread can continue immediately after
714da668aa1SThomas Huth          * bdrv_dec_in_flight() and aio_ret might be assigned only slightly
715da668aa1SThomas Huth          * later. */
716da668aa1SThomas Huth         do_drain_begin(drain_type, bs);
717da668aa1SThomas Huth         g_assert_cmpint(bs->in_flight, ==, 0);
718da668aa1SThomas Huth 
719da668aa1SThomas Huth         if (drain_type != BDRV_DRAIN_ALL) {
720da668aa1SThomas Huth             aio_context_release(ctx_a);
721da668aa1SThomas Huth         }
722da668aa1SThomas Huth         qemu_event_wait(&done_event);
723da668aa1SThomas Huth         if (drain_type != BDRV_DRAIN_ALL) {
724da668aa1SThomas Huth             aio_context_acquire(ctx_a);
725da668aa1SThomas Huth         }
726da668aa1SThomas Huth 
727da668aa1SThomas Huth         g_assert_cmpint(aio_ret, ==, 0);
728da668aa1SThomas Huth         do_drain_end(drain_type, bs);
729da668aa1SThomas Huth 
730da668aa1SThomas Huth         if (drain_type != BDRV_DRAIN_ALL) {
731da668aa1SThomas Huth             aio_context_release(ctx_a);
732da668aa1SThomas Huth         }
733da668aa1SThomas Huth         break;
734da668aa1SThomas Huth     case 1:
735da668aa1SThomas Huth         aio_bh_schedule_oneshot(ctx_a, test_iothread_drain_entry, &data);
736da668aa1SThomas Huth         qemu_event_wait(&done_event);
737da668aa1SThomas Huth         break;
738da668aa1SThomas Huth     default:
739da668aa1SThomas Huth         g_assert_not_reached();
740da668aa1SThomas Huth     }
741da668aa1SThomas Huth 
742da668aa1SThomas Huth     aio_context_acquire(ctx_a);
743da668aa1SThomas Huth     blk_set_aio_context(blk, qemu_get_aio_context(), &error_abort);
744da668aa1SThomas Huth     aio_context_release(ctx_a);
745da668aa1SThomas Huth 
746da668aa1SThomas Huth     bdrv_unref(bs);
747da668aa1SThomas Huth     blk_unref(blk);
748da668aa1SThomas Huth 
749da668aa1SThomas Huth out:
750da668aa1SThomas Huth     iothread_join(a);
751da668aa1SThomas Huth     iothread_join(b);
752da668aa1SThomas Huth }
753da668aa1SThomas Huth 
754da668aa1SThomas Huth static void test_iothread_drain_all(void)
755da668aa1SThomas Huth {
756da668aa1SThomas Huth     test_iothread_common(BDRV_DRAIN_ALL, 0);
757da668aa1SThomas Huth     test_iothread_common(BDRV_DRAIN_ALL, 1);
758da668aa1SThomas Huth }
759da668aa1SThomas Huth 
760da668aa1SThomas Huth static void test_iothread_drain(void)
761da668aa1SThomas Huth {
762da668aa1SThomas Huth     test_iothread_common(BDRV_DRAIN, 0);
763da668aa1SThomas Huth     test_iothread_common(BDRV_DRAIN, 1);
764da668aa1SThomas Huth }
765da668aa1SThomas Huth 
766da668aa1SThomas Huth static void test_iothread_drain_subtree(void)
767da668aa1SThomas Huth {
768da668aa1SThomas Huth     test_iothread_common(BDRV_SUBTREE_DRAIN, 0);
769da668aa1SThomas Huth     test_iothread_common(BDRV_SUBTREE_DRAIN, 1);
770da668aa1SThomas Huth }
771da668aa1SThomas Huth 
772da668aa1SThomas Huth 
773da668aa1SThomas Huth typedef struct TestBlockJob {
774da668aa1SThomas Huth     BlockJob common;
775*1b177bbeSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
776da668aa1SThomas Huth     int run_ret;
777da668aa1SThomas Huth     int prepare_ret;
778da668aa1SThomas Huth     bool running;
779da668aa1SThomas Huth     bool should_complete;
780da668aa1SThomas Huth } TestBlockJob;
781da668aa1SThomas Huth 
782da668aa1SThomas Huth static int test_job_prepare(Job *job)
783da668aa1SThomas Huth {
784da668aa1SThomas Huth     TestBlockJob *s = container_of(job, TestBlockJob, common.job);
785da668aa1SThomas Huth 
786da668aa1SThomas Huth     /* Provoke an AIO_WAIT_WHILE() call to verify there is no deadlock */
787*1b177bbeSVladimir Sementsov-Ogievskiy     bdrv_flush(s->bs);
788da668aa1SThomas Huth     return s->prepare_ret;
789da668aa1SThomas Huth }
790da668aa1SThomas Huth 
791da668aa1SThomas Huth static void test_job_commit(Job *job)
792da668aa1SThomas Huth {
793da668aa1SThomas Huth     TestBlockJob *s = container_of(job, TestBlockJob, common.job);
794da668aa1SThomas Huth 
795da668aa1SThomas Huth     /* Provoke an AIO_WAIT_WHILE() call to verify there is no deadlock */
796*1b177bbeSVladimir Sementsov-Ogievskiy     bdrv_flush(s->bs);
797da668aa1SThomas Huth }
798da668aa1SThomas Huth 
799da668aa1SThomas Huth static void test_job_abort(Job *job)
800da668aa1SThomas Huth {
801da668aa1SThomas Huth     TestBlockJob *s = container_of(job, TestBlockJob, common.job);
802da668aa1SThomas Huth 
803da668aa1SThomas Huth     /* Provoke an AIO_WAIT_WHILE() call to verify there is no deadlock */
804*1b177bbeSVladimir Sementsov-Ogievskiy     bdrv_flush(s->bs);
805da668aa1SThomas Huth }
806da668aa1SThomas Huth 
807da668aa1SThomas Huth static int coroutine_fn test_job_run(Job *job, Error **errp)
808da668aa1SThomas Huth {
809da668aa1SThomas Huth     TestBlockJob *s = container_of(job, TestBlockJob, common.job);
810da668aa1SThomas Huth 
811da668aa1SThomas Huth     /* We are running the actual job code past the pause point in
812da668aa1SThomas Huth      * job_co_entry(). */
813da668aa1SThomas Huth     s->running = true;
814da668aa1SThomas Huth 
815da668aa1SThomas Huth     job_transition_to_ready(&s->common.job);
816da668aa1SThomas Huth     while (!s->should_complete) {
817da668aa1SThomas Huth         /* Avoid job_sleep_ns() because it marks the job as !busy. We want to
818da668aa1SThomas Huth          * emulate some actual activity (probably some I/O) here so that drain
819da668aa1SThomas Huth          * has to wait for this activity to stop. */
820da668aa1SThomas Huth         qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, 1000000);
821da668aa1SThomas Huth 
822da668aa1SThomas Huth         job_pause_point(&s->common.job);
823da668aa1SThomas Huth     }
824da668aa1SThomas Huth 
825da668aa1SThomas Huth     return s->run_ret;
826da668aa1SThomas Huth }
827da668aa1SThomas Huth 
828da668aa1SThomas Huth static void test_job_complete(Job *job, Error **errp)
829da668aa1SThomas Huth {
830da668aa1SThomas Huth     TestBlockJob *s = container_of(job, TestBlockJob, common.job);
831da668aa1SThomas Huth     s->should_complete = true;
832da668aa1SThomas Huth }
833da668aa1SThomas Huth 
834da668aa1SThomas Huth BlockJobDriver test_job_driver = {
835da668aa1SThomas Huth     .job_driver = {
836da668aa1SThomas Huth         .instance_size  = sizeof(TestBlockJob),
837da668aa1SThomas Huth         .free           = block_job_free,
838da668aa1SThomas Huth         .user_resume    = block_job_user_resume,
839da668aa1SThomas Huth         .run            = test_job_run,
840da668aa1SThomas Huth         .complete       = test_job_complete,
841da668aa1SThomas Huth         .prepare        = test_job_prepare,
842da668aa1SThomas Huth         .commit         = test_job_commit,
843da668aa1SThomas Huth         .abort          = test_job_abort,
844da668aa1SThomas Huth     },
845da668aa1SThomas Huth };
846da668aa1SThomas Huth 
847da668aa1SThomas Huth enum test_job_result {
848da668aa1SThomas Huth     TEST_JOB_SUCCESS,
849da668aa1SThomas Huth     TEST_JOB_FAIL_RUN,
850da668aa1SThomas Huth     TEST_JOB_FAIL_PREPARE,
851da668aa1SThomas Huth };
852da668aa1SThomas Huth 
853da668aa1SThomas Huth enum test_job_drain_node {
854da668aa1SThomas Huth     TEST_JOB_DRAIN_SRC,
855da668aa1SThomas Huth     TEST_JOB_DRAIN_SRC_CHILD,
856da668aa1SThomas Huth     TEST_JOB_DRAIN_SRC_PARENT,
857da668aa1SThomas Huth };
858da668aa1SThomas Huth 
859da668aa1SThomas Huth static void test_blockjob_common_drain_node(enum drain_type drain_type,
860da668aa1SThomas Huth                                             bool use_iothread,
861da668aa1SThomas Huth                                             enum test_job_result result,
862da668aa1SThomas Huth                                             enum test_job_drain_node drain_node)
863da668aa1SThomas Huth {
864da668aa1SThomas Huth     BlockBackend *blk_src, *blk_target;
865da668aa1SThomas Huth     BlockDriverState *src, *src_backing, *src_overlay, *target, *drain_bs;
866da668aa1SThomas Huth     BlockJob *job;
867da668aa1SThomas Huth     TestBlockJob *tjob;
868da668aa1SThomas Huth     IOThread *iothread = NULL;
869da668aa1SThomas Huth     AioContext *ctx;
870da668aa1SThomas Huth     int ret;
871da668aa1SThomas Huth 
872da668aa1SThomas Huth     src = bdrv_new_open_driver(&bdrv_test, "source", BDRV_O_RDWR,
873da668aa1SThomas Huth                                &error_abort);
874da668aa1SThomas Huth     src_backing = bdrv_new_open_driver(&bdrv_test, "source-backing",
875da668aa1SThomas Huth                                        BDRV_O_RDWR, &error_abort);
876da668aa1SThomas Huth     src_overlay = bdrv_new_open_driver(&bdrv_test, "source-overlay",
877da668aa1SThomas Huth                                        BDRV_O_RDWR, &error_abort);
878da668aa1SThomas Huth 
879da668aa1SThomas Huth     bdrv_set_backing_hd(src_overlay, src, &error_abort);
880da668aa1SThomas Huth     bdrv_unref(src);
881da668aa1SThomas Huth     bdrv_set_backing_hd(src, src_backing, &error_abort);
882da668aa1SThomas Huth     bdrv_unref(src_backing);
883da668aa1SThomas Huth 
884da668aa1SThomas Huth     blk_src = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
885da668aa1SThomas Huth     blk_insert_bs(blk_src, src_overlay, &error_abort);
886da668aa1SThomas Huth 
887da668aa1SThomas Huth     switch (drain_node) {
888da668aa1SThomas Huth     case TEST_JOB_DRAIN_SRC:
889da668aa1SThomas Huth         drain_bs = src;
890da668aa1SThomas Huth         break;
891da668aa1SThomas Huth     case TEST_JOB_DRAIN_SRC_CHILD:
892da668aa1SThomas Huth         drain_bs = src_backing;
893da668aa1SThomas Huth         break;
894da668aa1SThomas Huth     case TEST_JOB_DRAIN_SRC_PARENT:
895da668aa1SThomas Huth         drain_bs = src_overlay;
896da668aa1SThomas Huth         break;
897da668aa1SThomas Huth     default:
898da668aa1SThomas Huth         g_assert_not_reached();
899da668aa1SThomas Huth     }
900da668aa1SThomas Huth 
901da668aa1SThomas Huth     if (use_iothread) {
902da668aa1SThomas Huth         iothread = iothread_new();
903da668aa1SThomas Huth         ctx = iothread_get_aio_context(iothread);
904da668aa1SThomas Huth         blk_set_aio_context(blk_src, ctx, &error_abort);
905da668aa1SThomas Huth     } else {
906da668aa1SThomas Huth         ctx = qemu_get_aio_context();
907da668aa1SThomas Huth     }
908da668aa1SThomas Huth 
909da668aa1SThomas Huth     target = bdrv_new_open_driver(&bdrv_test, "target", BDRV_O_RDWR,
910da668aa1SThomas Huth                                   &error_abort);
911da668aa1SThomas Huth     blk_target = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
912da668aa1SThomas Huth     blk_insert_bs(blk_target, target, &error_abort);
913da668aa1SThomas Huth     blk_set_allow_aio_context_change(blk_target, true);
914da668aa1SThomas Huth 
915da668aa1SThomas Huth     aio_context_acquire(ctx);
916da668aa1SThomas Huth     tjob = block_job_create("job0", &test_job_driver, NULL, src,
917da668aa1SThomas Huth                             0, BLK_PERM_ALL,
918da668aa1SThomas Huth                             0, 0, NULL, NULL, &error_abort);
919*1b177bbeSVladimir Sementsov-Ogievskiy     tjob->bs = src;
920da668aa1SThomas Huth     job = &tjob->common;
921da668aa1SThomas Huth     block_job_add_bdrv(job, "target", target, 0, BLK_PERM_ALL, &error_abort);
922da668aa1SThomas Huth 
923da668aa1SThomas Huth     switch (result) {
924da668aa1SThomas Huth     case TEST_JOB_SUCCESS:
925da668aa1SThomas Huth         break;
926da668aa1SThomas Huth     case TEST_JOB_FAIL_RUN:
927da668aa1SThomas Huth         tjob->run_ret = -EIO;
928da668aa1SThomas Huth         break;
929da668aa1SThomas Huth     case TEST_JOB_FAIL_PREPARE:
930da668aa1SThomas Huth         tjob->prepare_ret = -EIO;
931da668aa1SThomas Huth         break;
932da668aa1SThomas Huth     }
933da668aa1SThomas Huth 
934da668aa1SThomas Huth     job_start(&job->job);
935da668aa1SThomas Huth     aio_context_release(ctx);
936da668aa1SThomas Huth 
937da668aa1SThomas Huth     if (use_iothread) {
938da668aa1SThomas Huth         /* job_co_entry() is run in the I/O thread, wait for the actual job
939da668aa1SThomas Huth          * code to start (we don't want to catch the job in the pause point in
940da668aa1SThomas Huth          * job_co_entry(). */
941da668aa1SThomas Huth         while (!tjob->running) {
942da668aa1SThomas Huth             aio_poll(qemu_get_aio_context(), false);
943da668aa1SThomas Huth         }
944da668aa1SThomas Huth     }
945da668aa1SThomas Huth 
946da668aa1SThomas Huth     g_assert_cmpint(job->job.pause_count, ==, 0);
947da668aa1SThomas Huth     g_assert_false(job->job.paused);
948da668aa1SThomas Huth     g_assert_true(tjob->running);
949da668aa1SThomas Huth     g_assert_true(job->job.busy); /* We're in qemu_co_sleep_ns() */
950da668aa1SThomas Huth 
951da668aa1SThomas Huth     do_drain_begin_unlocked(drain_type, drain_bs);
952da668aa1SThomas Huth 
953da668aa1SThomas Huth     if (drain_type == BDRV_DRAIN_ALL) {
954da668aa1SThomas Huth         /* bdrv_drain_all() drains both src and target */
955da668aa1SThomas Huth         g_assert_cmpint(job->job.pause_count, ==, 2);
956da668aa1SThomas Huth     } else {
957da668aa1SThomas Huth         g_assert_cmpint(job->job.pause_count, ==, 1);
958da668aa1SThomas Huth     }
959da668aa1SThomas Huth     g_assert_true(job->job.paused);
960da668aa1SThomas Huth     g_assert_false(job->job.busy); /* The job is paused */
961da668aa1SThomas Huth 
962da668aa1SThomas Huth     do_drain_end_unlocked(drain_type, drain_bs);
963da668aa1SThomas Huth 
964da668aa1SThomas Huth     if (use_iothread) {
965da668aa1SThomas Huth         /* paused is reset in the I/O thread, wait for it */
966da668aa1SThomas Huth         while (job->job.paused) {
967da668aa1SThomas Huth             aio_poll(qemu_get_aio_context(), false);
968da668aa1SThomas Huth         }
969da668aa1SThomas Huth     }
970da668aa1SThomas Huth 
971da668aa1SThomas Huth     g_assert_cmpint(job->job.pause_count, ==, 0);
972da668aa1SThomas Huth     g_assert_false(job->job.paused);
973da668aa1SThomas Huth     g_assert_true(job->job.busy); /* We're in qemu_co_sleep_ns() */
974da668aa1SThomas Huth 
975da668aa1SThomas Huth     do_drain_begin_unlocked(drain_type, target);
976da668aa1SThomas Huth 
977da668aa1SThomas Huth     if (drain_type == BDRV_DRAIN_ALL) {
978da668aa1SThomas Huth         /* bdrv_drain_all() drains both src and target */
979da668aa1SThomas Huth         g_assert_cmpint(job->job.pause_count, ==, 2);
980da668aa1SThomas Huth     } else {
981da668aa1SThomas Huth         g_assert_cmpint(job->job.pause_count, ==, 1);
982da668aa1SThomas Huth     }
983da668aa1SThomas Huth     g_assert_true(job->job.paused);
984da668aa1SThomas Huth     g_assert_false(job->job.busy); /* The job is paused */
985da668aa1SThomas Huth 
986da668aa1SThomas Huth     do_drain_end_unlocked(drain_type, target);
987da668aa1SThomas Huth 
988da668aa1SThomas Huth     if (use_iothread) {
989da668aa1SThomas Huth         /* paused is reset in the I/O thread, wait for it */
990da668aa1SThomas Huth         while (job->job.paused) {
991da668aa1SThomas Huth             aio_poll(qemu_get_aio_context(), false);
992da668aa1SThomas Huth         }
993da668aa1SThomas Huth     }
994da668aa1SThomas Huth 
995da668aa1SThomas Huth     g_assert_cmpint(job->job.pause_count, ==, 0);
996da668aa1SThomas Huth     g_assert_false(job->job.paused);
997da668aa1SThomas Huth     g_assert_true(job->job.busy); /* We're in qemu_co_sleep_ns() */
998da668aa1SThomas Huth 
999da668aa1SThomas Huth     aio_context_acquire(ctx);
1000da668aa1SThomas Huth     ret = job_complete_sync(&job->job, &error_abort);
1001da668aa1SThomas Huth     g_assert_cmpint(ret, ==, (result == TEST_JOB_SUCCESS ? 0 : -EIO));
1002da668aa1SThomas Huth 
1003da668aa1SThomas Huth     if (use_iothread) {
1004da668aa1SThomas Huth         blk_set_aio_context(blk_src, qemu_get_aio_context(), &error_abort);
1005da668aa1SThomas Huth         assert(blk_get_aio_context(blk_target) == qemu_get_aio_context());
1006da668aa1SThomas Huth     }
1007da668aa1SThomas Huth     aio_context_release(ctx);
1008da668aa1SThomas Huth 
1009da668aa1SThomas Huth     blk_unref(blk_src);
1010da668aa1SThomas Huth     blk_unref(blk_target);
1011da668aa1SThomas Huth     bdrv_unref(src_overlay);
1012da668aa1SThomas Huth     bdrv_unref(target);
1013da668aa1SThomas Huth 
1014da668aa1SThomas Huth     if (iothread) {
1015da668aa1SThomas Huth         iothread_join(iothread);
1016da668aa1SThomas Huth     }
1017da668aa1SThomas Huth }
1018da668aa1SThomas Huth 
1019da668aa1SThomas Huth static void test_blockjob_common(enum drain_type drain_type, bool use_iothread,
1020da668aa1SThomas Huth                                  enum test_job_result result)
1021da668aa1SThomas Huth {
1022da668aa1SThomas Huth     test_blockjob_common_drain_node(drain_type, use_iothread, result,
1023da668aa1SThomas Huth                                     TEST_JOB_DRAIN_SRC);
1024da668aa1SThomas Huth     test_blockjob_common_drain_node(drain_type, use_iothread, result,
1025da668aa1SThomas Huth                                     TEST_JOB_DRAIN_SRC_CHILD);
1026da668aa1SThomas Huth     if (drain_type == BDRV_SUBTREE_DRAIN) {
1027da668aa1SThomas Huth         test_blockjob_common_drain_node(drain_type, use_iothread, result,
1028da668aa1SThomas Huth                                         TEST_JOB_DRAIN_SRC_PARENT);
1029da668aa1SThomas Huth     }
1030da668aa1SThomas Huth }
1031da668aa1SThomas Huth 
1032da668aa1SThomas Huth static void test_blockjob_drain_all(void)
1033da668aa1SThomas Huth {
1034da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, false, TEST_JOB_SUCCESS);
1035da668aa1SThomas Huth }
1036da668aa1SThomas Huth 
1037da668aa1SThomas Huth static void test_blockjob_drain(void)
1038da668aa1SThomas Huth {
1039da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, false, TEST_JOB_SUCCESS);
1040da668aa1SThomas Huth }
1041da668aa1SThomas Huth 
1042da668aa1SThomas Huth static void test_blockjob_drain_subtree(void)
1043da668aa1SThomas Huth {
1044da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, false, TEST_JOB_SUCCESS);
1045da668aa1SThomas Huth }
1046da668aa1SThomas Huth 
1047da668aa1SThomas Huth static void test_blockjob_error_drain_all(void)
1048da668aa1SThomas Huth {
1049da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, false, TEST_JOB_FAIL_RUN);
1050da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, false, TEST_JOB_FAIL_PREPARE);
1051da668aa1SThomas Huth }
1052da668aa1SThomas Huth 
1053da668aa1SThomas Huth static void test_blockjob_error_drain(void)
1054da668aa1SThomas Huth {
1055da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, false, TEST_JOB_FAIL_RUN);
1056da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, false, TEST_JOB_FAIL_PREPARE);
1057da668aa1SThomas Huth }
1058da668aa1SThomas Huth 
1059da668aa1SThomas Huth static void test_blockjob_error_drain_subtree(void)
1060da668aa1SThomas Huth {
1061da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, false, TEST_JOB_FAIL_RUN);
1062da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, false, TEST_JOB_FAIL_PREPARE);
1063da668aa1SThomas Huth }
1064da668aa1SThomas Huth 
1065da668aa1SThomas Huth static void test_blockjob_iothread_drain_all(void)
1066da668aa1SThomas Huth {
1067da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, true, TEST_JOB_SUCCESS);
1068da668aa1SThomas Huth }
1069da668aa1SThomas Huth 
1070da668aa1SThomas Huth static void test_blockjob_iothread_drain(void)
1071da668aa1SThomas Huth {
1072da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, true, TEST_JOB_SUCCESS);
1073da668aa1SThomas Huth }
1074da668aa1SThomas Huth 
1075da668aa1SThomas Huth static void test_blockjob_iothread_drain_subtree(void)
1076da668aa1SThomas Huth {
1077da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, true, TEST_JOB_SUCCESS);
1078da668aa1SThomas Huth }
1079da668aa1SThomas Huth 
1080da668aa1SThomas Huth static void test_blockjob_iothread_error_drain_all(void)
1081da668aa1SThomas Huth {
1082da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, true, TEST_JOB_FAIL_RUN);
1083da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN_ALL, true, TEST_JOB_FAIL_PREPARE);
1084da668aa1SThomas Huth }
1085da668aa1SThomas Huth 
1086da668aa1SThomas Huth static void test_blockjob_iothread_error_drain(void)
1087da668aa1SThomas Huth {
1088da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, true, TEST_JOB_FAIL_RUN);
1089da668aa1SThomas Huth     test_blockjob_common(BDRV_DRAIN, true, TEST_JOB_FAIL_PREPARE);
1090da668aa1SThomas Huth }
1091da668aa1SThomas Huth 
1092da668aa1SThomas Huth static void test_blockjob_iothread_error_drain_subtree(void)
1093da668aa1SThomas Huth {
1094da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, true, TEST_JOB_FAIL_RUN);
1095da668aa1SThomas Huth     test_blockjob_common(BDRV_SUBTREE_DRAIN, true, TEST_JOB_FAIL_PREPARE);
1096da668aa1SThomas Huth }
1097da668aa1SThomas Huth 
1098da668aa1SThomas Huth 
1099da668aa1SThomas Huth typedef struct BDRVTestTopState {
1100da668aa1SThomas Huth     BdrvChild *wait_child;
1101da668aa1SThomas Huth } BDRVTestTopState;
1102da668aa1SThomas Huth 
1103da668aa1SThomas Huth static void bdrv_test_top_close(BlockDriverState *bs)
1104da668aa1SThomas Huth {
1105da668aa1SThomas Huth     BdrvChild *c, *next_c;
1106da668aa1SThomas Huth     QLIST_FOREACH_SAFE(c, &bs->children, next, next_c) {
1107da668aa1SThomas Huth         bdrv_unref_child(bs, c);
1108da668aa1SThomas Huth     }
1109da668aa1SThomas Huth }
1110da668aa1SThomas Huth 
1111da668aa1SThomas Huth static int coroutine_fn bdrv_test_top_co_preadv(BlockDriverState *bs,
1112f7ef38ddSVladimir Sementsov-Ogievskiy                                                 int64_t offset, int64_t bytes,
1113f7ef38ddSVladimir Sementsov-Ogievskiy                                                 QEMUIOVector *qiov,
1114f7ef38ddSVladimir Sementsov-Ogievskiy                                                 BdrvRequestFlags flags)
1115da668aa1SThomas Huth {
1116da668aa1SThomas Huth     BDRVTestTopState *tts = bs->opaque;
1117da668aa1SThomas Huth     return bdrv_co_preadv(tts->wait_child, offset, bytes, qiov, flags);
1118da668aa1SThomas Huth }
1119da668aa1SThomas Huth 
1120da668aa1SThomas Huth static BlockDriver bdrv_test_top_driver = {
1121da668aa1SThomas Huth     .format_name            = "test_top_driver",
1122da668aa1SThomas Huth     .instance_size          = sizeof(BDRVTestTopState),
1123da668aa1SThomas Huth 
1124da668aa1SThomas Huth     .bdrv_close             = bdrv_test_top_close,
1125da668aa1SThomas Huth     .bdrv_co_preadv         = bdrv_test_top_co_preadv,
1126da668aa1SThomas Huth 
1127da668aa1SThomas Huth     .bdrv_child_perm        = bdrv_default_perms,
1128da668aa1SThomas Huth };
1129da668aa1SThomas Huth 
1130da668aa1SThomas Huth typedef struct TestCoDeleteByDrainData {
1131da668aa1SThomas Huth     BlockBackend *blk;
1132da668aa1SThomas Huth     bool detach_instead_of_delete;
1133da668aa1SThomas Huth     bool done;
1134da668aa1SThomas Huth } TestCoDeleteByDrainData;
1135da668aa1SThomas Huth 
1136da668aa1SThomas Huth static void coroutine_fn test_co_delete_by_drain(void *opaque)
1137da668aa1SThomas Huth {
1138da668aa1SThomas Huth     TestCoDeleteByDrainData *dbdd = opaque;
1139da668aa1SThomas Huth     BlockBackend *blk = dbdd->blk;
1140da668aa1SThomas Huth     BlockDriverState *bs = blk_bs(blk);
1141da668aa1SThomas Huth     BDRVTestTopState *tts = bs->opaque;
1142da668aa1SThomas Huth     void *buffer = g_malloc(65536);
1143da668aa1SThomas Huth     QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, buffer, 65536);
1144da668aa1SThomas Huth 
1145da668aa1SThomas Huth     /* Pretend some internal write operation from parent to child.
1146da668aa1SThomas Huth      * Important: We have to read from the child, not from the parent!
1147da668aa1SThomas Huth      * Draining works by first propagating it all up the tree to the
1148da668aa1SThomas Huth      * root and then waiting for drainage from root to the leaves
1149da668aa1SThomas Huth      * (protocol nodes).  If we have a request waiting on the root,
1150da668aa1SThomas Huth      * everything will be drained before we go back down the tree, but
1151da668aa1SThomas Huth      * we do not want that.  We want to be in the middle of draining
1152da668aa1SThomas Huth      * when this following requests returns. */
1153da668aa1SThomas Huth     bdrv_co_preadv(tts->wait_child, 0, 65536, &qiov, 0);
1154da668aa1SThomas Huth 
1155da668aa1SThomas Huth     g_assert_cmpint(bs->refcnt, ==, 1);
1156da668aa1SThomas Huth 
1157da668aa1SThomas Huth     if (!dbdd->detach_instead_of_delete) {
1158da668aa1SThomas Huth         blk_unref(blk);
1159da668aa1SThomas Huth     } else {
1160da668aa1SThomas Huth         BdrvChild *c, *next_c;
1161da668aa1SThomas Huth         QLIST_FOREACH_SAFE(c, &bs->children, next, next_c) {
1162da668aa1SThomas Huth             bdrv_unref_child(bs, c);
1163da668aa1SThomas Huth         }
1164da668aa1SThomas Huth     }
1165da668aa1SThomas Huth 
1166da668aa1SThomas Huth     dbdd->done = true;
1167da668aa1SThomas Huth     g_free(buffer);
1168da668aa1SThomas Huth }
1169da668aa1SThomas Huth 
1170da668aa1SThomas Huth /**
1171da668aa1SThomas Huth  * Test what happens when some BDS has some children, you drain one of
1172da668aa1SThomas Huth  * them and this results in the BDS being deleted.
1173da668aa1SThomas Huth  *
1174da668aa1SThomas Huth  * If @detach_instead_of_delete is set, the BDS is not going to be
1175da668aa1SThomas Huth  * deleted but will only detach all of its children.
1176da668aa1SThomas Huth  */
1177da668aa1SThomas Huth static void do_test_delete_by_drain(bool detach_instead_of_delete,
1178da668aa1SThomas Huth                                     enum drain_type drain_type)
1179da668aa1SThomas Huth {
1180da668aa1SThomas Huth     BlockBackend *blk;
1181da668aa1SThomas Huth     BlockDriverState *bs, *child_bs, *null_bs;
1182da668aa1SThomas Huth     BDRVTestTopState *tts;
1183da668aa1SThomas Huth     TestCoDeleteByDrainData dbdd;
1184da668aa1SThomas Huth     Coroutine *co;
1185da668aa1SThomas Huth 
1186da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test_top_driver, "top", BDRV_O_RDWR,
1187da668aa1SThomas Huth                               &error_abort);
1188da668aa1SThomas Huth     bs->total_sectors = 65536 >> BDRV_SECTOR_BITS;
1189da668aa1SThomas Huth     tts = bs->opaque;
1190da668aa1SThomas Huth 
1191da668aa1SThomas Huth     null_bs = bdrv_open("null-co://", NULL, NULL, BDRV_O_RDWR | BDRV_O_PROTOCOL,
1192da668aa1SThomas Huth                         &error_abort);
1193da668aa1SThomas Huth     bdrv_attach_child(bs, null_bs, "null-child", &child_of_bds,
1194da668aa1SThomas Huth                       BDRV_CHILD_DATA, &error_abort);
1195da668aa1SThomas Huth 
1196da668aa1SThomas Huth     /* This child will be the one to pass to requests through to, and
1197da668aa1SThomas Huth      * it will stall until a drain occurs */
1198da668aa1SThomas Huth     child_bs = bdrv_new_open_driver(&bdrv_test, "child", BDRV_O_RDWR,
1199da668aa1SThomas Huth                                     &error_abort);
1200da668aa1SThomas Huth     child_bs->total_sectors = 65536 >> BDRV_SECTOR_BITS;
1201da668aa1SThomas Huth     /* Takes our reference to child_bs */
1202da668aa1SThomas Huth     tts->wait_child = bdrv_attach_child(bs, child_bs, "wait-child",
1203da668aa1SThomas Huth                                         &child_of_bds,
1204da668aa1SThomas Huth                                         BDRV_CHILD_DATA | BDRV_CHILD_PRIMARY,
1205da668aa1SThomas Huth                                         &error_abort);
1206da668aa1SThomas Huth 
1207da668aa1SThomas Huth     /* This child is just there to be deleted
1208da668aa1SThomas Huth      * (for detach_instead_of_delete == true) */
1209da668aa1SThomas Huth     null_bs = bdrv_open("null-co://", NULL, NULL, BDRV_O_RDWR | BDRV_O_PROTOCOL,
1210da668aa1SThomas Huth                         &error_abort);
1211da668aa1SThomas Huth     bdrv_attach_child(bs, null_bs, "null-child", &child_of_bds, BDRV_CHILD_DATA,
1212da668aa1SThomas Huth                       &error_abort);
1213da668aa1SThomas Huth 
1214da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
1215da668aa1SThomas Huth     blk_insert_bs(blk, bs, &error_abort);
1216da668aa1SThomas Huth 
1217da668aa1SThomas Huth     /* Referenced by blk now */
1218da668aa1SThomas Huth     bdrv_unref(bs);
1219da668aa1SThomas Huth 
1220da668aa1SThomas Huth     g_assert_cmpint(bs->refcnt, ==, 1);
1221da668aa1SThomas Huth     g_assert_cmpint(child_bs->refcnt, ==, 1);
1222da668aa1SThomas Huth     g_assert_cmpint(null_bs->refcnt, ==, 1);
1223da668aa1SThomas Huth 
1224da668aa1SThomas Huth 
1225da668aa1SThomas Huth     dbdd = (TestCoDeleteByDrainData){
1226da668aa1SThomas Huth         .blk = blk,
1227da668aa1SThomas Huth         .detach_instead_of_delete = detach_instead_of_delete,
1228da668aa1SThomas Huth         .done = false,
1229da668aa1SThomas Huth     };
1230da668aa1SThomas Huth     co = qemu_coroutine_create(test_co_delete_by_drain, &dbdd);
1231da668aa1SThomas Huth     qemu_coroutine_enter(co);
1232da668aa1SThomas Huth 
1233da668aa1SThomas Huth     /* Drain the child while the read operation is still pending.
1234da668aa1SThomas Huth      * This should result in the operation finishing and
1235da668aa1SThomas Huth      * test_co_delete_by_drain() resuming.  Thus, @bs will be deleted
1236da668aa1SThomas Huth      * and the coroutine will exit while this drain operation is still
1237da668aa1SThomas Huth      * in progress. */
1238da668aa1SThomas Huth     switch (drain_type) {
1239da668aa1SThomas Huth     case BDRV_DRAIN:
1240da668aa1SThomas Huth         bdrv_ref(child_bs);
1241da668aa1SThomas Huth         bdrv_drain(child_bs);
1242da668aa1SThomas Huth         bdrv_unref(child_bs);
1243da668aa1SThomas Huth         break;
1244da668aa1SThomas Huth     case BDRV_SUBTREE_DRAIN:
1245da668aa1SThomas Huth         /* Would have to ref/unref bs here for !detach_instead_of_delete, but
1246da668aa1SThomas Huth          * then the whole test becomes pointless because the graph changes
1247da668aa1SThomas Huth          * don't occur during the drain any more. */
1248da668aa1SThomas Huth         assert(detach_instead_of_delete);
1249da668aa1SThomas Huth         bdrv_subtree_drained_begin(bs);
1250da668aa1SThomas Huth         bdrv_subtree_drained_end(bs);
1251da668aa1SThomas Huth         break;
1252da668aa1SThomas Huth     case BDRV_DRAIN_ALL:
1253da668aa1SThomas Huth         bdrv_drain_all_begin();
1254da668aa1SThomas Huth         bdrv_drain_all_end();
1255da668aa1SThomas Huth         break;
1256da668aa1SThomas Huth     default:
1257da668aa1SThomas Huth         g_assert_not_reached();
1258da668aa1SThomas Huth     }
1259da668aa1SThomas Huth 
1260da668aa1SThomas Huth     while (!dbdd.done) {
1261da668aa1SThomas Huth         aio_poll(qemu_get_aio_context(), true);
1262da668aa1SThomas Huth     }
1263da668aa1SThomas Huth 
1264da668aa1SThomas Huth     if (detach_instead_of_delete) {
1265da668aa1SThomas Huth         /* Here, the reference has not passed over to the coroutine,
1266da668aa1SThomas Huth          * so we have to delete the BB ourselves */
1267da668aa1SThomas Huth         blk_unref(blk);
1268da668aa1SThomas Huth     }
1269da668aa1SThomas Huth }
1270da668aa1SThomas Huth 
1271da668aa1SThomas Huth static void test_delete_by_drain(void)
1272da668aa1SThomas Huth {
1273da668aa1SThomas Huth     do_test_delete_by_drain(false, BDRV_DRAIN);
1274da668aa1SThomas Huth }
1275da668aa1SThomas Huth 
1276da668aa1SThomas Huth static void test_detach_by_drain_all(void)
1277da668aa1SThomas Huth {
1278da668aa1SThomas Huth     do_test_delete_by_drain(true, BDRV_DRAIN_ALL);
1279da668aa1SThomas Huth }
1280da668aa1SThomas Huth 
1281da668aa1SThomas Huth static void test_detach_by_drain(void)
1282da668aa1SThomas Huth {
1283da668aa1SThomas Huth     do_test_delete_by_drain(true, BDRV_DRAIN);
1284da668aa1SThomas Huth }
1285da668aa1SThomas Huth 
1286da668aa1SThomas Huth static void test_detach_by_drain_subtree(void)
1287da668aa1SThomas Huth {
1288da668aa1SThomas Huth     do_test_delete_by_drain(true, BDRV_SUBTREE_DRAIN);
1289da668aa1SThomas Huth }
1290da668aa1SThomas Huth 
1291da668aa1SThomas Huth 
1292da668aa1SThomas Huth struct detach_by_parent_data {
1293da668aa1SThomas Huth     BlockDriverState *parent_b;
1294da668aa1SThomas Huth     BdrvChild *child_b;
1295da668aa1SThomas Huth     BlockDriverState *c;
1296da668aa1SThomas Huth     BdrvChild *child_c;
1297da668aa1SThomas Huth     bool by_parent_cb;
1298da668aa1SThomas Huth };
1299da668aa1SThomas Huth static struct detach_by_parent_data detach_by_parent_data;
1300da668aa1SThomas Huth 
1301da668aa1SThomas Huth static void detach_indirect_bh(void *opaque)
1302da668aa1SThomas Huth {
1303da668aa1SThomas Huth     struct detach_by_parent_data *data = opaque;
1304da668aa1SThomas Huth 
1305da668aa1SThomas Huth     bdrv_unref_child(data->parent_b, data->child_b);
1306da668aa1SThomas Huth 
1307da668aa1SThomas Huth     bdrv_ref(data->c);
1308da668aa1SThomas Huth     data->child_c = bdrv_attach_child(data->parent_b, data->c, "PB-C",
1309da668aa1SThomas Huth                                       &child_of_bds, BDRV_CHILD_DATA,
1310da668aa1SThomas Huth                                       &error_abort);
1311da668aa1SThomas Huth }
1312da668aa1SThomas Huth 
1313da668aa1SThomas Huth static void detach_by_parent_aio_cb(void *opaque, int ret)
1314da668aa1SThomas Huth {
1315da668aa1SThomas Huth     struct detach_by_parent_data *data = &detach_by_parent_data;
1316da668aa1SThomas Huth 
1317da668aa1SThomas Huth     g_assert_cmpint(ret, ==, 0);
1318da668aa1SThomas Huth     if (data->by_parent_cb) {
1319da668aa1SThomas Huth         detach_indirect_bh(data);
1320da668aa1SThomas Huth     }
1321da668aa1SThomas Huth }
1322da668aa1SThomas Huth 
1323da668aa1SThomas Huth static void detach_by_driver_cb_drained_begin(BdrvChild *child)
1324da668aa1SThomas Huth {
1325da668aa1SThomas Huth     aio_bh_schedule_oneshot(qemu_get_current_aio_context(),
1326da668aa1SThomas Huth                             detach_indirect_bh, &detach_by_parent_data);
1327da668aa1SThomas Huth     child_of_bds.drained_begin(child);
1328da668aa1SThomas Huth }
1329da668aa1SThomas Huth 
1330da668aa1SThomas Huth static BdrvChildClass detach_by_driver_cb_class;
1331da668aa1SThomas Huth 
1332da668aa1SThomas Huth /*
1333da668aa1SThomas Huth  * Initial graph:
1334da668aa1SThomas Huth  *
1335da668aa1SThomas Huth  * PA     PB
1336da668aa1SThomas Huth  *    \ /   \
1337da668aa1SThomas Huth  *     A     B     C
1338da668aa1SThomas Huth  *
1339da668aa1SThomas Huth  * by_parent_cb == true:  Test that parent callbacks don't poll
1340da668aa1SThomas Huth  *
1341da668aa1SThomas Huth  *     PA has a pending write request whose callback changes the child nodes of
1342da668aa1SThomas Huth  *     PB: It removes B and adds C instead. The subtree of PB is drained, which
1343da668aa1SThomas Huth  *     will indirectly drain the write request, too.
1344da668aa1SThomas Huth  *
1345da668aa1SThomas Huth  * by_parent_cb == false: Test that bdrv_drain_invoke() doesn't poll
1346da668aa1SThomas Huth  *
1347da668aa1SThomas Huth  *     PA's BdrvChildClass has a .drained_begin callback that schedules a BH
1348da668aa1SThomas Huth  *     that does the same graph change. If bdrv_drain_invoke() calls it, the
1349da668aa1SThomas Huth  *     state is messed up, but if it is only polled in the single
1350da668aa1SThomas Huth  *     BDRV_POLL_WHILE() at the end of the drain, this should work fine.
1351da668aa1SThomas Huth  */
1352da668aa1SThomas Huth static void test_detach_indirect(bool by_parent_cb)
1353da668aa1SThomas Huth {
1354da668aa1SThomas Huth     BlockBackend *blk;
1355da668aa1SThomas Huth     BlockDriverState *parent_a, *parent_b, *a, *b, *c;
1356da668aa1SThomas Huth     BdrvChild *child_a, *child_b;
1357da668aa1SThomas Huth     BlockAIOCB *acb;
1358da668aa1SThomas Huth 
1359da668aa1SThomas Huth     QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, NULL, 0);
1360da668aa1SThomas Huth 
1361da668aa1SThomas Huth     if (!by_parent_cb) {
1362da668aa1SThomas Huth         detach_by_driver_cb_class = child_of_bds;
1363da668aa1SThomas Huth         detach_by_driver_cb_class.drained_begin =
1364da668aa1SThomas Huth             detach_by_driver_cb_drained_begin;
1365da668aa1SThomas Huth     }
1366da668aa1SThomas Huth 
1367da668aa1SThomas Huth     /* Create all involved nodes */
1368da668aa1SThomas Huth     parent_a = bdrv_new_open_driver(&bdrv_test, "parent-a", BDRV_O_RDWR,
1369da668aa1SThomas Huth                                     &error_abort);
1370da668aa1SThomas Huth     parent_b = bdrv_new_open_driver(&bdrv_test, "parent-b", 0,
1371da668aa1SThomas Huth                                     &error_abort);
1372da668aa1SThomas Huth 
1373da668aa1SThomas Huth     a = bdrv_new_open_driver(&bdrv_test, "a", BDRV_O_RDWR, &error_abort);
1374da668aa1SThomas Huth     b = bdrv_new_open_driver(&bdrv_test, "b", BDRV_O_RDWR, &error_abort);
1375da668aa1SThomas Huth     c = bdrv_new_open_driver(&bdrv_test, "c", BDRV_O_RDWR, &error_abort);
1376da668aa1SThomas Huth 
1377da668aa1SThomas Huth     /* blk is a BB for parent-a */
1378da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
1379da668aa1SThomas Huth     blk_insert_bs(blk, parent_a, &error_abort);
1380da668aa1SThomas Huth     bdrv_unref(parent_a);
1381da668aa1SThomas Huth 
1382da668aa1SThomas Huth     /* If we want to get bdrv_drain_invoke() to call aio_poll(), the driver
1383da668aa1SThomas Huth      * callback must not return immediately. */
1384da668aa1SThomas Huth     if (!by_parent_cb) {
1385da668aa1SThomas Huth         BDRVTestState *s = parent_a->opaque;
1386da668aa1SThomas Huth         s->sleep_in_drain_begin = true;
1387da668aa1SThomas Huth     }
1388da668aa1SThomas Huth 
1389da668aa1SThomas Huth     /* Set child relationships */
1390da668aa1SThomas Huth     bdrv_ref(b);
1391da668aa1SThomas Huth     bdrv_ref(a);
1392da668aa1SThomas Huth     child_b = bdrv_attach_child(parent_b, b, "PB-B", &child_of_bds,
1393da668aa1SThomas Huth                                 BDRV_CHILD_DATA, &error_abort);
1394da668aa1SThomas Huth     child_a = bdrv_attach_child(parent_b, a, "PB-A", &child_of_bds,
1395da668aa1SThomas Huth                                 BDRV_CHILD_COW, &error_abort);
1396da668aa1SThomas Huth 
1397da668aa1SThomas Huth     bdrv_ref(a);
1398da668aa1SThomas Huth     bdrv_attach_child(parent_a, a, "PA-A",
1399da668aa1SThomas Huth                       by_parent_cb ? &child_of_bds : &detach_by_driver_cb_class,
1400da668aa1SThomas Huth                       BDRV_CHILD_DATA, &error_abort);
1401da668aa1SThomas Huth 
1402da668aa1SThomas Huth     g_assert_cmpint(parent_a->refcnt, ==, 1);
1403da668aa1SThomas Huth     g_assert_cmpint(parent_b->refcnt, ==, 1);
1404da668aa1SThomas Huth     g_assert_cmpint(a->refcnt, ==, 3);
1405da668aa1SThomas Huth     g_assert_cmpint(b->refcnt, ==, 2);
1406da668aa1SThomas Huth     g_assert_cmpint(c->refcnt, ==, 1);
1407da668aa1SThomas Huth 
1408da668aa1SThomas Huth     g_assert(QLIST_FIRST(&parent_b->children) == child_a);
1409da668aa1SThomas Huth     g_assert(QLIST_NEXT(child_a, next) == child_b);
1410da668aa1SThomas Huth     g_assert(QLIST_NEXT(child_b, next) == NULL);
1411da668aa1SThomas Huth 
1412da668aa1SThomas Huth     /* Start the evil write request */
1413da668aa1SThomas Huth     detach_by_parent_data = (struct detach_by_parent_data) {
1414da668aa1SThomas Huth         .parent_b = parent_b,
1415da668aa1SThomas Huth         .child_b = child_b,
1416da668aa1SThomas Huth         .c = c,
1417da668aa1SThomas Huth         .by_parent_cb = by_parent_cb,
1418da668aa1SThomas Huth     };
1419da668aa1SThomas Huth     acb = blk_aio_preadv(blk, 0, &qiov, 0, detach_by_parent_aio_cb, NULL);
1420da668aa1SThomas Huth     g_assert(acb != NULL);
1421da668aa1SThomas Huth 
1422da668aa1SThomas Huth     /* Drain and check the expected result */
1423da668aa1SThomas Huth     bdrv_subtree_drained_begin(parent_b);
1424da668aa1SThomas Huth 
1425da668aa1SThomas Huth     g_assert(detach_by_parent_data.child_c != NULL);
1426da668aa1SThomas Huth 
1427da668aa1SThomas Huth     g_assert_cmpint(parent_a->refcnt, ==, 1);
1428da668aa1SThomas Huth     g_assert_cmpint(parent_b->refcnt, ==, 1);
1429da668aa1SThomas Huth     g_assert_cmpint(a->refcnt, ==, 3);
1430da668aa1SThomas Huth     g_assert_cmpint(b->refcnt, ==, 1);
1431da668aa1SThomas Huth     g_assert_cmpint(c->refcnt, ==, 2);
1432da668aa1SThomas Huth 
1433da668aa1SThomas Huth     g_assert(QLIST_FIRST(&parent_b->children) == detach_by_parent_data.child_c);
1434da668aa1SThomas Huth     g_assert(QLIST_NEXT(detach_by_parent_data.child_c, next) == child_a);
1435da668aa1SThomas Huth     g_assert(QLIST_NEXT(child_a, next) == NULL);
1436da668aa1SThomas Huth 
1437da668aa1SThomas Huth     g_assert_cmpint(parent_a->quiesce_counter, ==, 1);
1438da668aa1SThomas Huth     g_assert_cmpint(parent_b->quiesce_counter, ==, 1);
1439da668aa1SThomas Huth     g_assert_cmpint(a->quiesce_counter, ==, 1);
1440da668aa1SThomas Huth     g_assert_cmpint(b->quiesce_counter, ==, 0);
1441da668aa1SThomas Huth     g_assert_cmpint(c->quiesce_counter, ==, 1);
1442da668aa1SThomas Huth 
1443da668aa1SThomas Huth     bdrv_subtree_drained_end(parent_b);
1444da668aa1SThomas Huth 
1445da668aa1SThomas Huth     bdrv_unref(parent_b);
1446da668aa1SThomas Huth     blk_unref(blk);
1447da668aa1SThomas Huth 
1448da668aa1SThomas Huth     g_assert_cmpint(a->refcnt, ==, 1);
1449da668aa1SThomas Huth     g_assert_cmpint(b->refcnt, ==, 1);
1450da668aa1SThomas Huth     g_assert_cmpint(c->refcnt, ==, 1);
1451da668aa1SThomas Huth     bdrv_unref(a);
1452da668aa1SThomas Huth     bdrv_unref(b);
1453da668aa1SThomas Huth     bdrv_unref(c);
1454da668aa1SThomas Huth }
1455da668aa1SThomas Huth 
1456da668aa1SThomas Huth static void test_detach_by_parent_cb(void)
1457da668aa1SThomas Huth {
1458da668aa1SThomas Huth     test_detach_indirect(true);
1459da668aa1SThomas Huth }
1460da668aa1SThomas Huth 
1461da668aa1SThomas Huth static void test_detach_by_driver_cb(void)
1462da668aa1SThomas Huth {
1463da668aa1SThomas Huth     test_detach_indirect(false);
1464da668aa1SThomas Huth }
1465da668aa1SThomas Huth 
1466da668aa1SThomas Huth static void test_append_to_drained(void)
1467da668aa1SThomas Huth {
1468da668aa1SThomas Huth     BlockBackend *blk;
1469da668aa1SThomas Huth     BlockDriverState *base, *overlay;
1470da668aa1SThomas Huth     BDRVTestState *base_s, *overlay_s;
1471da668aa1SThomas Huth 
1472da668aa1SThomas Huth     blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
1473da668aa1SThomas Huth     base = bdrv_new_open_driver(&bdrv_test, "base", BDRV_O_RDWR, &error_abort);
1474da668aa1SThomas Huth     base_s = base->opaque;
1475da668aa1SThomas Huth     blk_insert_bs(blk, base, &error_abort);
1476da668aa1SThomas Huth 
1477da668aa1SThomas Huth     overlay = bdrv_new_open_driver(&bdrv_test, "overlay", BDRV_O_RDWR,
1478da668aa1SThomas Huth                                    &error_abort);
1479da668aa1SThomas Huth     overlay_s = overlay->opaque;
1480da668aa1SThomas Huth 
1481da668aa1SThomas Huth     do_drain_begin(BDRV_DRAIN, base);
1482da668aa1SThomas Huth     g_assert_cmpint(base->quiesce_counter, ==, 1);
1483da668aa1SThomas Huth     g_assert_cmpint(base_s->drain_count, ==, 1);
1484da668aa1SThomas Huth     g_assert_cmpint(base->in_flight, ==, 0);
1485da668aa1SThomas Huth 
1486da668aa1SThomas Huth     bdrv_append(overlay, base, &error_abort);
1487da668aa1SThomas Huth     g_assert_cmpint(base->in_flight, ==, 0);
1488da668aa1SThomas Huth     g_assert_cmpint(overlay->in_flight, ==, 0);
1489da668aa1SThomas Huth 
1490da668aa1SThomas Huth     g_assert_cmpint(base->quiesce_counter, ==, 1);
1491da668aa1SThomas Huth     g_assert_cmpint(base_s->drain_count, ==, 1);
1492da668aa1SThomas Huth     g_assert_cmpint(overlay->quiesce_counter, ==, 1);
1493da668aa1SThomas Huth     g_assert_cmpint(overlay_s->drain_count, ==, 1);
1494da668aa1SThomas Huth 
1495da668aa1SThomas Huth     do_drain_end(BDRV_DRAIN, base);
1496da668aa1SThomas Huth 
1497da668aa1SThomas Huth     g_assert_cmpint(base->quiesce_counter, ==, 0);
1498da668aa1SThomas Huth     g_assert_cmpint(base_s->drain_count, ==, 0);
1499da668aa1SThomas Huth     g_assert_cmpint(overlay->quiesce_counter, ==, 0);
1500da668aa1SThomas Huth     g_assert_cmpint(overlay_s->drain_count, ==, 0);
1501da668aa1SThomas Huth 
1502ae9d4417SVladimir Sementsov-Ogievskiy     bdrv_unref(overlay);
1503da668aa1SThomas Huth     bdrv_unref(base);
1504da668aa1SThomas Huth     blk_unref(blk);
1505da668aa1SThomas Huth }
1506da668aa1SThomas Huth 
1507da668aa1SThomas Huth static void test_set_aio_context(void)
1508da668aa1SThomas Huth {
1509da668aa1SThomas Huth     BlockDriverState *bs;
1510da668aa1SThomas Huth     IOThread *a = iothread_new();
1511da668aa1SThomas Huth     IOThread *b = iothread_new();
1512da668aa1SThomas Huth     AioContext *ctx_a = iothread_get_aio_context(a);
1513da668aa1SThomas Huth     AioContext *ctx_b = iothread_get_aio_context(b);
1514da668aa1SThomas Huth 
1515da668aa1SThomas Huth     bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
1516da668aa1SThomas Huth                               &error_abort);
1517da668aa1SThomas Huth 
1518da668aa1SThomas Huth     bdrv_drained_begin(bs);
1519da668aa1SThomas Huth     bdrv_try_set_aio_context(bs, ctx_a, &error_abort);
1520da668aa1SThomas Huth 
1521da668aa1SThomas Huth     aio_context_acquire(ctx_a);
1522da668aa1SThomas Huth     bdrv_drained_end(bs);
1523da668aa1SThomas Huth 
1524da668aa1SThomas Huth     bdrv_drained_begin(bs);
1525da668aa1SThomas Huth     bdrv_try_set_aio_context(bs, ctx_b, &error_abort);
1526da668aa1SThomas Huth     aio_context_release(ctx_a);
1527da668aa1SThomas Huth     aio_context_acquire(ctx_b);
1528da668aa1SThomas Huth     bdrv_try_set_aio_context(bs, qemu_get_aio_context(), &error_abort);
1529da668aa1SThomas Huth     aio_context_release(ctx_b);
1530da668aa1SThomas Huth     bdrv_drained_end(bs);
1531da668aa1SThomas Huth 
1532da668aa1SThomas Huth     bdrv_unref(bs);
1533da668aa1SThomas Huth     iothread_join(a);
1534da668aa1SThomas Huth     iothread_join(b);
1535da668aa1SThomas Huth }
1536da668aa1SThomas Huth 
1537da668aa1SThomas Huth 
1538da668aa1SThomas Huth typedef struct TestDropBackingBlockJob {
1539da668aa1SThomas Huth     BlockJob common;
1540da668aa1SThomas Huth     bool should_complete;
1541da668aa1SThomas Huth     bool *did_complete;
1542da668aa1SThomas Huth     BlockDriverState *detach_also;
1543*1b177bbeSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
1544da668aa1SThomas Huth } TestDropBackingBlockJob;
1545da668aa1SThomas Huth 
1546da668aa1SThomas Huth static int coroutine_fn test_drop_backing_job_run(Job *job, Error **errp)
1547da668aa1SThomas Huth {
1548da668aa1SThomas Huth     TestDropBackingBlockJob *s =
1549da668aa1SThomas Huth         container_of(job, TestDropBackingBlockJob, common.job);
1550da668aa1SThomas Huth 
1551da668aa1SThomas Huth     while (!s->should_complete) {
1552da668aa1SThomas Huth         job_sleep_ns(job, 0);
1553da668aa1SThomas Huth     }
1554da668aa1SThomas Huth 
1555da668aa1SThomas Huth     return 0;
1556da668aa1SThomas Huth }
1557da668aa1SThomas Huth 
1558da668aa1SThomas Huth static void test_drop_backing_job_commit(Job *job)
1559da668aa1SThomas Huth {
1560da668aa1SThomas Huth     TestDropBackingBlockJob *s =
1561da668aa1SThomas Huth         container_of(job, TestDropBackingBlockJob, common.job);
1562da668aa1SThomas Huth 
1563*1b177bbeSVladimir Sementsov-Ogievskiy     bdrv_set_backing_hd(s->bs, NULL, &error_abort);
1564da668aa1SThomas Huth     bdrv_set_backing_hd(s->detach_also, NULL, &error_abort);
1565da668aa1SThomas Huth 
1566da668aa1SThomas Huth     *s->did_complete = true;
1567da668aa1SThomas Huth }
1568da668aa1SThomas Huth 
1569da668aa1SThomas Huth static const BlockJobDriver test_drop_backing_job_driver = {
1570da668aa1SThomas Huth     .job_driver = {
1571da668aa1SThomas Huth         .instance_size  = sizeof(TestDropBackingBlockJob),
1572da668aa1SThomas Huth         .free           = block_job_free,
1573da668aa1SThomas Huth         .user_resume    = block_job_user_resume,
1574da668aa1SThomas Huth         .run            = test_drop_backing_job_run,
1575da668aa1SThomas Huth         .commit         = test_drop_backing_job_commit,
1576da668aa1SThomas Huth     }
1577da668aa1SThomas Huth };
1578da668aa1SThomas Huth 
1579da668aa1SThomas Huth /**
1580da668aa1SThomas Huth  * Creates a child node with three parent nodes on it, and then runs a
1581da668aa1SThomas Huth  * block job on the final one, parent-node-2.
1582da668aa1SThomas Huth  *
1583da668aa1SThomas Huth  * The job is then asked to complete before a section where the child
1584da668aa1SThomas Huth  * is drained.
1585da668aa1SThomas Huth  *
1586da668aa1SThomas Huth  * Ending this section will undrain the child's parents, first
1587da668aa1SThomas Huth  * parent-node-2, then parent-node-1, then parent-node-0 -- the parent
1588da668aa1SThomas Huth  * list is in reverse order of how they were added.  Ending the drain
1589da668aa1SThomas Huth  * on parent-node-2 will resume the job, thus completing it and
1590da668aa1SThomas Huth  * scheduling job_exit().
1591da668aa1SThomas Huth  *
1592da668aa1SThomas Huth  * Ending the drain on parent-node-1 will poll the AioContext, which
1593da668aa1SThomas Huth  * lets job_exit() and thus test_drop_backing_job_commit() run.  That
1594da668aa1SThomas Huth  * function first removes the child as parent-node-2's backing file.
1595da668aa1SThomas Huth  *
1596da668aa1SThomas Huth  * In old (and buggy) implementations, there are two problems with
1597da668aa1SThomas Huth  * that:
1598da668aa1SThomas Huth  * (A) bdrv_drain_invoke() polls for every node that leaves the
1599da668aa1SThomas Huth  *     drained section.  This means that job_exit() is scheduled
1600da668aa1SThomas Huth  *     before the child has left the drained section.  Its
1601da668aa1SThomas Huth  *     quiesce_counter is therefore still 1 when it is removed from
1602da668aa1SThomas Huth  *     parent-node-2.
1603da668aa1SThomas Huth  *
1604da668aa1SThomas Huth  * (B) bdrv_replace_child_noperm() calls drained_end() on the old
1605da668aa1SThomas Huth  *     child's parents as many times as the child is quiesced.  This
1606da668aa1SThomas Huth  *     means it will call drained_end() on parent-node-2 once.
1607da668aa1SThomas Huth  *     Because parent-node-2 is no longer quiesced at this point, this
1608da668aa1SThomas Huth  *     will fail.
1609da668aa1SThomas Huth  *
1610da668aa1SThomas Huth  * bdrv_replace_child_noperm() therefore must call drained_end() on
1611da668aa1SThomas Huth  * the parent only if it really is still drained because the child is
1612da668aa1SThomas Huth  * drained.
1613da668aa1SThomas Huth  *
1614da668aa1SThomas Huth  * If removing child from parent-node-2 was successful (as it should
1615da668aa1SThomas Huth  * be), test_drop_backing_job_commit() will then also remove the child
1616da668aa1SThomas Huth  * from parent-node-0.
1617da668aa1SThomas Huth  *
1618da668aa1SThomas Huth  * With an old version of our drain infrastructure ((A) above), that
1619da668aa1SThomas Huth  * resulted in the following flow:
1620da668aa1SThomas Huth  *
1621da668aa1SThomas Huth  * 1. child attempts to leave its drained section.  The call recurses
1622da668aa1SThomas Huth  *    to its parents.
1623da668aa1SThomas Huth  *
1624da668aa1SThomas Huth  * 2. parent-node-2 leaves the drained section.  Polling in
1625da668aa1SThomas Huth  *    bdrv_drain_invoke() will schedule job_exit().
1626da668aa1SThomas Huth  *
1627da668aa1SThomas Huth  * 3. parent-node-1 leaves the drained section.  Polling in
1628da668aa1SThomas Huth  *    bdrv_drain_invoke() will run job_exit(), thus disconnecting
1629da668aa1SThomas Huth  *    parent-node-0 from the child node.
1630da668aa1SThomas Huth  *
1631da668aa1SThomas Huth  * 4. bdrv_parent_drained_end() uses a QLIST_FOREACH_SAFE() loop to
1632da668aa1SThomas Huth  *    iterate over the parents.  Thus, it now accesses the BdrvChild
1633da668aa1SThomas Huth  *    object that used to connect parent-node-0 and the child node.
1634da668aa1SThomas Huth  *    However, that object no longer exists, so it accesses a dangling
1635da668aa1SThomas Huth  *    pointer.
1636da668aa1SThomas Huth  *
1637da668aa1SThomas Huth  * The solution is to only poll once when running a bdrv_drained_end()
1638da668aa1SThomas Huth  * operation, specifically at the end when all drained_end()
1639da668aa1SThomas Huth  * operations for all involved nodes have been scheduled.
1640da668aa1SThomas Huth  * Note that this also solves (A) above, thus hiding (B).
1641da668aa1SThomas Huth  */
1642da668aa1SThomas Huth static void test_blockjob_commit_by_drained_end(void)
1643da668aa1SThomas Huth {
1644da668aa1SThomas Huth     BlockDriverState *bs_child, *bs_parents[3];
1645da668aa1SThomas Huth     TestDropBackingBlockJob *job;
1646da668aa1SThomas Huth     bool job_has_completed = false;
1647da668aa1SThomas Huth     int i;
1648da668aa1SThomas Huth 
1649da668aa1SThomas Huth     bs_child = bdrv_new_open_driver(&bdrv_test, "child-node", BDRV_O_RDWR,
1650da668aa1SThomas Huth                                     &error_abort);
1651da668aa1SThomas Huth 
1652da668aa1SThomas Huth     for (i = 0; i < 3; i++) {
1653da668aa1SThomas Huth         char name[32];
1654da668aa1SThomas Huth         snprintf(name, sizeof(name), "parent-node-%i", i);
1655da668aa1SThomas Huth         bs_parents[i] = bdrv_new_open_driver(&bdrv_test, name, BDRV_O_RDWR,
1656da668aa1SThomas Huth                                              &error_abort);
1657da668aa1SThomas Huth         bdrv_set_backing_hd(bs_parents[i], bs_child, &error_abort);
1658da668aa1SThomas Huth     }
1659da668aa1SThomas Huth 
1660da668aa1SThomas Huth     job = block_job_create("job", &test_drop_backing_job_driver, NULL,
1661da668aa1SThomas Huth                            bs_parents[2], 0, BLK_PERM_ALL, 0, 0, NULL, NULL,
1662da668aa1SThomas Huth                            &error_abort);
1663*1b177bbeSVladimir Sementsov-Ogievskiy     job->bs = bs_parents[2];
1664da668aa1SThomas Huth 
1665da668aa1SThomas Huth     job->detach_also = bs_parents[0];
1666da668aa1SThomas Huth     job->did_complete = &job_has_completed;
1667da668aa1SThomas Huth 
1668da668aa1SThomas Huth     job_start(&job->common.job);
1669da668aa1SThomas Huth 
1670da668aa1SThomas Huth     job->should_complete = true;
1671da668aa1SThomas Huth     bdrv_drained_begin(bs_child);
1672da668aa1SThomas Huth     g_assert(!job_has_completed);
1673da668aa1SThomas Huth     bdrv_drained_end(bs_child);
1674da668aa1SThomas Huth     g_assert(job_has_completed);
1675da668aa1SThomas Huth 
1676da668aa1SThomas Huth     bdrv_unref(bs_parents[0]);
1677da668aa1SThomas Huth     bdrv_unref(bs_parents[1]);
1678da668aa1SThomas Huth     bdrv_unref(bs_parents[2]);
1679da668aa1SThomas Huth     bdrv_unref(bs_child);
1680da668aa1SThomas Huth }
1681da668aa1SThomas Huth 
1682da668aa1SThomas Huth 
1683da668aa1SThomas Huth typedef struct TestSimpleBlockJob {
1684da668aa1SThomas Huth     BlockJob common;
1685da668aa1SThomas Huth     bool should_complete;
1686da668aa1SThomas Huth     bool *did_complete;
1687da668aa1SThomas Huth } TestSimpleBlockJob;
1688da668aa1SThomas Huth 
1689da668aa1SThomas Huth static int coroutine_fn test_simple_job_run(Job *job, Error **errp)
1690da668aa1SThomas Huth {
1691da668aa1SThomas Huth     TestSimpleBlockJob *s = container_of(job, TestSimpleBlockJob, common.job);
1692da668aa1SThomas Huth 
1693da668aa1SThomas Huth     while (!s->should_complete) {
1694da668aa1SThomas Huth         job_sleep_ns(job, 0);
1695da668aa1SThomas Huth     }
1696da668aa1SThomas Huth 
1697da668aa1SThomas Huth     return 0;
1698da668aa1SThomas Huth }
1699da668aa1SThomas Huth 
1700da668aa1SThomas Huth static void test_simple_job_clean(Job *job)
1701da668aa1SThomas Huth {
1702da668aa1SThomas Huth     TestSimpleBlockJob *s = container_of(job, TestSimpleBlockJob, common.job);
1703da668aa1SThomas Huth     *s->did_complete = true;
1704da668aa1SThomas Huth }
1705da668aa1SThomas Huth 
1706da668aa1SThomas Huth static const BlockJobDriver test_simple_job_driver = {
1707da668aa1SThomas Huth     .job_driver = {
1708da668aa1SThomas Huth         .instance_size  = sizeof(TestSimpleBlockJob),
1709da668aa1SThomas Huth         .free           = block_job_free,
1710da668aa1SThomas Huth         .user_resume    = block_job_user_resume,
1711da668aa1SThomas Huth         .run            = test_simple_job_run,
1712da668aa1SThomas Huth         .clean          = test_simple_job_clean,
1713da668aa1SThomas Huth     },
1714da668aa1SThomas Huth };
1715da668aa1SThomas Huth 
1716da668aa1SThomas Huth static int drop_intermediate_poll_update_filename(BdrvChild *child,
1717da668aa1SThomas Huth                                                   BlockDriverState *new_base,
1718da668aa1SThomas Huth                                                   const char *filename,
1719da668aa1SThomas Huth                                                   Error **errp)
1720da668aa1SThomas Huth {
1721da668aa1SThomas Huth     /*
1722da668aa1SThomas Huth      * We are free to poll here, which may change the block graph, if
1723da668aa1SThomas Huth      * it is not drained.
1724da668aa1SThomas Huth      */
1725da668aa1SThomas Huth 
1726da668aa1SThomas Huth     /* If the job is not drained: Complete it, schedule job_exit() */
1727da668aa1SThomas Huth     aio_poll(qemu_get_current_aio_context(), false);
1728da668aa1SThomas Huth     /* If the job is not drained: Run job_exit(), finish the job */
1729da668aa1SThomas Huth     aio_poll(qemu_get_current_aio_context(), false);
1730da668aa1SThomas Huth 
1731da668aa1SThomas Huth     return 0;
1732da668aa1SThomas Huth }
1733da668aa1SThomas Huth 
1734da668aa1SThomas Huth /**
1735da668aa1SThomas Huth  * Test a poll in the midst of bdrv_drop_intermediate().
1736da668aa1SThomas Huth  *
1737da668aa1SThomas Huth  * bdrv_drop_intermediate() calls BdrvChildClass.update_filename(),
1738da668aa1SThomas Huth  * which can yield or poll.  This may lead to graph changes, unless
1739da668aa1SThomas Huth  * the whole subtree in question is drained.
1740da668aa1SThomas Huth  *
1741da668aa1SThomas Huth  * We test this on the following graph:
1742da668aa1SThomas Huth  *
1743da668aa1SThomas Huth  *                    Job
1744da668aa1SThomas Huth  *
1745da668aa1SThomas Huth  *                     |
1746da668aa1SThomas Huth  *                  job-node
1747da668aa1SThomas Huth  *                     |
1748da668aa1SThomas Huth  *                     v
1749da668aa1SThomas Huth  *
1750da668aa1SThomas Huth  *                  job-node
1751da668aa1SThomas Huth  *
1752da668aa1SThomas Huth  *                     |
1753da668aa1SThomas Huth  *                  backing
1754da668aa1SThomas Huth  *                     |
1755da668aa1SThomas Huth  *                     v
1756da668aa1SThomas Huth  *
1757da668aa1SThomas Huth  * node-2 --chain--> node-1 --chain--> node-0
1758da668aa1SThomas Huth  *
1759da668aa1SThomas Huth  * We drop node-1 with bdrv_drop_intermediate(top=node-1, base=node-0).
1760da668aa1SThomas Huth  *
1761da668aa1SThomas Huth  * This first updates node-2's backing filename by invoking
1762da668aa1SThomas Huth  * drop_intermediate_poll_update_filename(), which polls twice.  This
1763da668aa1SThomas Huth  * causes the job to finish, which in turns causes the job-node to be
1764da668aa1SThomas Huth  * deleted.
1765da668aa1SThomas Huth  *
1766da668aa1SThomas Huth  * bdrv_drop_intermediate() uses a QLIST_FOREACH_SAFE() loop, so it
1767da668aa1SThomas Huth  * already has a pointer to the BdrvChild edge between job-node and
1768da668aa1SThomas Huth  * node-1.  When it tries to handle that edge, we probably get a
1769da668aa1SThomas Huth  * segmentation fault because the object no longer exists.
1770da668aa1SThomas Huth  *
1771da668aa1SThomas Huth  *
1772da668aa1SThomas Huth  * The solution is for bdrv_drop_intermediate() to drain top's
1773da668aa1SThomas Huth  * subtree.  This prevents graph changes from happening just because
1774da668aa1SThomas Huth  * BdrvChildClass.update_filename() yields or polls.  Thus, the block
1775da668aa1SThomas Huth  * job is paused during that drained section and must finish before or
1776da668aa1SThomas Huth  * after.
1777da668aa1SThomas Huth  *
1778da668aa1SThomas Huth  * (In addition, bdrv_replace_child() must keep the job paused.)
1779da668aa1SThomas Huth  */
1780da668aa1SThomas Huth static void test_drop_intermediate_poll(void)
1781da668aa1SThomas Huth {
1782da668aa1SThomas Huth     static BdrvChildClass chain_child_class;
1783da668aa1SThomas Huth     BlockDriverState *chain[3];
1784da668aa1SThomas Huth     TestSimpleBlockJob *job;
1785da668aa1SThomas Huth     BlockDriverState *job_node;
1786da668aa1SThomas Huth     bool job_has_completed = false;
1787da668aa1SThomas Huth     int i;
1788da668aa1SThomas Huth     int ret;
1789da668aa1SThomas Huth 
1790da668aa1SThomas Huth     chain_child_class = child_of_bds;
1791da668aa1SThomas Huth     chain_child_class.update_filename = drop_intermediate_poll_update_filename;
1792da668aa1SThomas Huth 
1793da668aa1SThomas Huth     for (i = 0; i < 3; i++) {
1794da668aa1SThomas Huth         char name[32];
1795da668aa1SThomas Huth         snprintf(name, 32, "node-%i", i);
1796da668aa1SThomas Huth 
1797da668aa1SThomas Huth         chain[i] = bdrv_new_open_driver(&bdrv_test, name, 0, &error_abort);
1798da668aa1SThomas Huth     }
1799da668aa1SThomas Huth 
1800da668aa1SThomas Huth     job_node = bdrv_new_open_driver(&bdrv_test, "job-node", BDRV_O_RDWR,
1801da668aa1SThomas Huth                                     &error_abort);
1802da668aa1SThomas Huth     bdrv_set_backing_hd(job_node, chain[1], &error_abort);
1803da668aa1SThomas Huth 
1804da668aa1SThomas Huth     /*
1805da668aa1SThomas Huth      * Establish the chain last, so the chain links are the first
1806da668aa1SThomas Huth      * elements in the BDS.parents lists
1807da668aa1SThomas Huth      */
1808da668aa1SThomas Huth     for (i = 0; i < 3; i++) {
1809da668aa1SThomas Huth         if (i) {
1810da668aa1SThomas Huth             /* Takes the reference to chain[i - 1] */
1811da668aa1SThomas Huth             chain[i]->backing = bdrv_attach_child(chain[i], chain[i - 1],
1812da668aa1SThomas Huth                                                   "chain", &chain_child_class,
1813da668aa1SThomas Huth                                                   BDRV_CHILD_COW, &error_abort);
1814da668aa1SThomas Huth         }
1815da668aa1SThomas Huth     }
1816da668aa1SThomas Huth 
1817da668aa1SThomas Huth     job = block_job_create("job", &test_simple_job_driver, NULL, job_node,
1818da668aa1SThomas Huth                            0, BLK_PERM_ALL, 0, 0, NULL, NULL, &error_abort);
1819da668aa1SThomas Huth 
1820da668aa1SThomas Huth     /* The job has a reference now */
1821da668aa1SThomas Huth     bdrv_unref(job_node);
1822da668aa1SThomas Huth 
1823da668aa1SThomas Huth     job->did_complete = &job_has_completed;
1824da668aa1SThomas Huth 
1825da668aa1SThomas Huth     job_start(&job->common.job);
1826da668aa1SThomas Huth     job->should_complete = true;
1827da668aa1SThomas Huth 
1828da668aa1SThomas Huth     g_assert(!job_has_completed);
1829da668aa1SThomas Huth     ret = bdrv_drop_intermediate(chain[1], chain[0], NULL);
1830da668aa1SThomas Huth     g_assert(ret == 0);
1831da668aa1SThomas Huth     g_assert(job_has_completed);
1832da668aa1SThomas Huth 
1833da668aa1SThomas Huth     bdrv_unref(chain[2]);
1834da668aa1SThomas Huth }
1835da668aa1SThomas Huth 
1836da668aa1SThomas Huth 
1837da668aa1SThomas Huth typedef struct BDRVReplaceTestState {
1838da668aa1SThomas Huth     bool was_drained;
1839da668aa1SThomas Huth     bool was_undrained;
1840da668aa1SThomas Huth     bool has_read;
1841da668aa1SThomas Huth 
1842da668aa1SThomas Huth     int drain_count;
1843da668aa1SThomas Huth 
1844da668aa1SThomas Huth     bool yield_before_read;
1845da668aa1SThomas Huth     Coroutine *io_co;
1846da668aa1SThomas Huth     Coroutine *drain_co;
1847da668aa1SThomas Huth } BDRVReplaceTestState;
1848da668aa1SThomas Huth 
1849da668aa1SThomas Huth static void bdrv_replace_test_close(BlockDriverState *bs)
1850da668aa1SThomas Huth {
1851da668aa1SThomas Huth }
1852da668aa1SThomas Huth 
1853da668aa1SThomas Huth /**
1854da668aa1SThomas Huth  * If @bs has a backing file:
1855da668aa1SThomas Huth  *   Yield if .yield_before_read is true (and wait for drain_begin to
1856da668aa1SThomas Huth  *   wake us up).
1857da668aa1SThomas Huth  *   Forward the read to bs->backing.  Set .has_read to true.
1858da668aa1SThomas Huth  *   If drain_begin has woken us, wake it in turn.
1859da668aa1SThomas Huth  *
1860da668aa1SThomas Huth  * Otherwise:
1861da668aa1SThomas Huth  *   Set .has_read to true and return success.
1862da668aa1SThomas Huth  */
1863da668aa1SThomas Huth static int coroutine_fn bdrv_replace_test_co_preadv(BlockDriverState *bs,
1864f7ef38ddSVladimir Sementsov-Ogievskiy                                                     int64_t offset,
1865f7ef38ddSVladimir Sementsov-Ogievskiy                                                     int64_t bytes,
1866da668aa1SThomas Huth                                                     QEMUIOVector *qiov,
1867f7ef38ddSVladimir Sementsov-Ogievskiy                                                     BdrvRequestFlags flags)
1868da668aa1SThomas Huth {
1869da668aa1SThomas Huth     BDRVReplaceTestState *s = bs->opaque;
1870da668aa1SThomas Huth 
1871da668aa1SThomas Huth     if (bs->backing) {
1872da668aa1SThomas Huth         int ret;
1873da668aa1SThomas Huth 
1874da668aa1SThomas Huth         g_assert(!s->drain_count);
1875da668aa1SThomas Huth 
1876da668aa1SThomas Huth         s->io_co = qemu_coroutine_self();
1877da668aa1SThomas Huth         if (s->yield_before_read) {
1878da668aa1SThomas Huth             s->yield_before_read = false;
1879da668aa1SThomas Huth             qemu_coroutine_yield();
1880da668aa1SThomas Huth         }
1881da668aa1SThomas Huth         s->io_co = NULL;
1882da668aa1SThomas Huth 
1883da668aa1SThomas Huth         ret = bdrv_co_preadv(bs->backing, offset, bytes, qiov, 0);
1884da668aa1SThomas Huth         s->has_read = true;
1885da668aa1SThomas Huth 
1886da668aa1SThomas Huth         /* Wake up drain_co if it runs */
1887da668aa1SThomas Huth         if (s->drain_co) {
1888da668aa1SThomas Huth             aio_co_wake(s->drain_co);
1889da668aa1SThomas Huth         }
1890da668aa1SThomas Huth 
1891da668aa1SThomas Huth         return ret;
1892da668aa1SThomas Huth     }
1893da668aa1SThomas Huth 
1894da668aa1SThomas Huth     s->has_read = true;
1895da668aa1SThomas Huth     return 0;
1896da668aa1SThomas Huth }
1897da668aa1SThomas Huth 
1898da668aa1SThomas Huth /**
1899da668aa1SThomas Huth  * If .drain_count is 0, wake up .io_co if there is one; and set
1900da668aa1SThomas Huth  * .was_drained.
1901da668aa1SThomas Huth  * Increment .drain_count.
1902da668aa1SThomas Huth  */
1903da668aa1SThomas Huth static void coroutine_fn bdrv_replace_test_co_drain_begin(BlockDriverState *bs)
1904da668aa1SThomas Huth {
1905da668aa1SThomas Huth     BDRVReplaceTestState *s = bs->opaque;
1906da668aa1SThomas Huth 
1907da668aa1SThomas Huth     if (!s->drain_count) {
1908da668aa1SThomas Huth         /* Keep waking io_co up until it is done */
1909da668aa1SThomas Huth         s->drain_co = qemu_coroutine_self();
1910da668aa1SThomas Huth         while (s->io_co) {
1911da668aa1SThomas Huth             aio_co_wake(s->io_co);
1912da668aa1SThomas Huth             s->io_co = NULL;
1913da668aa1SThomas Huth             qemu_coroutine_yield();
1914da668aa1SThomas Huth         }
1915da668aa1SThomas Huth         s->drain_co = NULL;
1916da668aa1SThomas Huth 
1917da668aa1SThomas Huth         s->was_drained = true;
1918da668aa1SThomas Huth     }
1919da668aa1SThomas Huth     s->drain_count++;
1920da668aa1SThomas Huth }
1921da668aa1SThomas Huth 
1922da668aa1SThomas Huth /**
1923da668aa1SThomas Huth  * Reduce .drain_count, set .was_undrained once it reaches 0.
1924da668aa1SThomas Huth  * If .drain_count reaches 0 and the node has a backing file, issue a
1925da668aa1SThomas Huth  * read request.
1926da668aa1SThomas Huth  */
1927da668aa1SThomas Huth static void coroutine_fn bdrv_replace_test_co_drain_end(BlockDriverState *bs)
1928da668aa1SThomas Huth {
1929da668aa1SThomas Huth     BDRVReplaceTestState *s = bs->opaque;
1930da668aa1SThomas Huth 
1931da668aa1SThomas Huth     g_assert(s->drain_count > 0);
1932da668aa1SThomas Huth     if (!--s->drain_count) {
1933da668aa1SThomas Huth         int ret;
1934da668aa1SThomas Huth 
1935da668aa1SThomas Huth         s->was_undrained = true;
1936da668aa1SThomas Huth 
1937da668aa1SThomas Huth         if (bs->backing) {
1938da668aa1SThomas Huth             char data;
1939da668aa1SThomas Huth             QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, &data, 1);
1940da668aa1SThomas Huth 
1941da668aa1SThomas Huth             /* Queue a read request post-drain */
1942da668aa1SThomas Huth             ret = bdrv_replace_test_co_preadv(bs, 0, 1, &qiov, 0);
1943da668aa1SThomas Huth             g_assert(ret >= 0);
1944da668aa1SThomas Huth         }
1945da668aa1SThomas Huth     }
1946da668aa1SThomas Huth }
1947da668aa1SThomas Huth 
1948da668aa1SThomas Huth static BlockDriver bdrv_replace_test = {
1949da668aa1SThomas Huth     .format_name            = "replace_test",
1950da668aa1SThomas Huth     .instance_size          = sizeof(BDRVReplaceTestState),
1951da668aa1SThomas Huth 
1952da668aa1SThomas Huth     .bdrv_close             = bdrv_replace_test_close,
1953da668aa1SThomas Huth     .bdrv_co_preadv         = bdrv_replace_test_co_preadv,
1954da668aa1SThomas Huth 
1955da668aa1SThomas Huth     .bdrv_co_drain_begin    = bdrv_replace_test_co_drain_begin,
1956da668aa1SThomas Huth     .bdrv_co_drain_end      = bdrv_replace_test_co_drain_end,
1957da668aa1SThomas Huth 
1958da668aa1SThomas Huth     .bdrv_child_perm        = bdrv_default_perms,
1959da668aa1SThomas Huth };
1960da668aa1SThomas Huth 
1961da668aa1SThomas Huth static void coroutine_fn test_replace_child_mid_drain_read_co(void *opaque)
1962da668aa1SThomas Huth {
1963da668aa1SThomas Huth     int ret;
1964da668aa1SThomas Huth     char data;
1965da668aa1SThomas Huth 
1966da668aa1SThomas Huth     ret = blk_co_pread(opaque, 0, 1, &data, 0);
1967da668aa1SThomas Huth     g_assert(ret >= 0);
1968da668aa1SThomas Huth }
1969da668aa1SThomas Huth 
1970da668aa1SThomas Huth /**
1971da668aa1SThomas Huth  * We test two things:
1972da668aa1SThomas Huth  * (1) bdrv_replace_child_noperm() must not undrain the parent if both
1973da668aa1SThomas Huth  *     children are drained.
1974da668aa1SThomas Huth  * (2) bdrv_replace_child_noperm() must never flush I/O requests to a
1975da668aa1SThomas Huth  *     drained child.  If the old child is drained, it must flush I/O
1976da668aa1SThomas Huth  *     requests after the new one has been attached.  If the new child
1977da668aa1SThomas Huth  *     is drained, it must flush I/O requests before the old one is
1978da668aa1SThomas Huth  *     detached.
1979da668aa1SThomas Huth  *
1980da668aa1SThomas Huth  * To do so, we create one parent node and two child nodes; then
1981da668aa1SThomas Huth  * attach one of the children (old_child_bs) to the parent, then
1982da668aa1SThomas Huth  * drain both old_child_bs and new_child_bs according to
1983da668aa1SThomas Huth  * old_drain_count and new_drain_count, respectively, and finally
1984da668aa1SThomas Huth  * we invoke bdrv_replace_node() to replace old_child_bs by
1985da668aa1SThomas Huth  * new_child_bs.
1986da668aa1SThomas Huth  *
1987da668aa1SThomas Huth  * The test block driver we use here (bdrv_replace_test) has a read
1988da668aa1SThomas Huth  * function that:
1989da668aa1SThomas Huth  * - For the parent node, can optionally yield, and then forwards the
1990da668aa1SThomas Huth  *   read to bdrv_preadv(),
1991da668aa1SThomas Huth  * - For the child node, just returns immediately.
1992da668aa1SThomas Huth  *
1993da668aa1SThomas Huth  * If the read yields, the drain_begin function will wake it up.
1994da668aa1SThomas Huth  *
1995da668aa1SThomas Huth  * The drain_end function issues a read on the parent once it is fully
1996da668aa1SThomas Huth  * undrained (which simulates requests starting to come in again).
1997da668aa1SThomas Huth  */
1998da668aa1SThomas Huth static void do_test_replace_child_mid_drain(int old_drain_count,
1999da668aa1SThomas Huth                                             int new_drain_count)
2000da668aa1SThomas Huth {
2001da668aa1SThomas Huth     BlockBackend *parent_blk;
2002da668aa1SThomas Huth     BlockDriverState *parent_bs;
2003da668aa1SThomas Huth     BlockDriverState *old_child_bs, *new_child_bs;
2004da668aa1SThomas Huth     BDRVReplaceTestState *parent_s;
2005da668aa1SThomas Huth     BDRVReplaceTestState *old_child_s, *new_child_s;
2006da668aa1SThomas Huth     Coroutine *io_co;
2007da668aa1SThomas Huth     int i;
2008da668aa1SThomas Huth 
2009da668aa1SThomas Huth     parent_bs = bdrv_new_open_driver(&bdrv_replace_test, "parent", 0,
2010da668aa1SThomas Huth                                      &error_abort);
2011da668aa1SThomas Huth     parent_s = parent_bs->opaque;
2012da668aa1SThomas Huth 
2013da668aa1SThomas Huth     parent_blk = blk_new(qemu_get_aio_context(),
2014da668aa1SThomas Huth                          BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL);
2015da668aa1SThomas Huth     blk_insert_bs(parent_blk, parent_bs, &error_abort);
2016da668aa1SThomas Huth 
2017da668aa1SThomas Huth     old_child_bs = bdrv_new_open_driver(&bdrv_replace_test, "old-child", 0,
2018da668aa1SThomas Huth                                         &error_abort);
2019da668aa1SThomas Huth     new_child_bs = bdrv_new_open_driver(&bdrv_replace_test, "new-child", 0,
2020da668aa1SThomas Huth                                         &error_abort);
2021da668aa1SThomas Huth     old_child_s = old_child_bs->opaque;
2022da668aa1SThomas Huth     new_child_s = new_child_bs->opaque;
2023da668aa1SThomas Huth 
2024da668aa1SThomas Huth     /* So that we can read something */
2025da668aa1SThomas Huth     parent_bs->total_sectors = 1;
2026da668aa1SThomas Huth     old_child_bs->total_sectors = 1;
2027da668aa1SThomas Huth     new_child_bs->total_sectors = 1;
2028da668aa1SThomas Huth 
2029da668aa1SThomas Huth     bdrv_ref(old_child_bs);
2030da668aa1SThomas Huth     parent_bs->backing = bdrv_attach_child(parent_bs, old_child_bs, "child",
2031da668aa1SThomas Huth                                            &child_of_bds, BDRV_CHILD_COW,
2032da668aa1SThomas Huth                                            &error_abort);
2033da668aa1SThomas Huth 
2034da668aa1SThomas Huth     for (i = 0; i < old_drain_count; i++) {
2035da668aa1SThomas Huth         bdrv_drained_begin(old_child_bs);
2036da668aa1SThomas Huth     }
2037da668aa1SThomas Huth     for (i = 0; i < new_drain_count; i++) {
2038da668aa1SThomas Huth         bdrv_drained_begin(new_child_bs);
2039da668aa1SThomas Huth     }
2040da668aa1SThomas Huth 
2041da668aa1SThomas Huth     if (!old_drain_count) {
2042da668aa1SThomas Huth         /*
2043da668aa1SThomas Huth          * Start a read operation that will yield, so it will not
2044da668aa1SThomas Huth          * complete before the node is drained.
2045da668aa1SThomas Huth          */
2046da668aa1SThomas Huth         parent_s->yield_before_read = true;
2047da668aa1SThomas Huth         io_co = qemu_coroutine_create(test_replace_child_mid_drain_read_co,
2048da668aa1SThomas Huth                                       parent_blk);
2049da668aa1SThomas Huth         qemu_coroutine_enter(io_co);
2050da668aa1SThomas Huth     }
2051da668aa1SThomas Huth 
2052da668aa1SThomas Huth     /* If we have started a read operation, it should have yielded */
2053da668aa1SThomas Huth     g_assert(!parent_s->has_read);
2054da668aa1SThomas Huth 
2055da668aa1SThomas Huth     /* Reset drained status so we can see what bdrv_replace_node() does */
2056da668aa1SThomas Huth     parent_s->was_drained = false;
2057da668aa1SThomas Huth     parent_s->was_undrained = false;
2058da668aa1SThomas Huth 
2059da668aa1SThomas Huth     g_assert(parent_bs->quiesce_counter == old_drain_count);
2060da668aa1SThomas Huth     bdrv_replace_node(old_child_bs, new_child_bs, &error_abort);
2061da668aa1SThomas Huth     g_assert(parent_bs->quiesce_counter == new_drain_count);
2062da668aa1SThomas Huth 
2063da668aa1SThomas Huth     if (!old_drain_count && !new_drain_count) {
2064da668aa1SThomas Huth         /*
2065da668aa1SThomas Huth          * From undrained to undrained drains and undrains the parent,
2066da668aa1SThomas Huth          * because bdrv_replace_node() contains a drained section for
2067da668aa1SThomas Huth          * @old_child_bs.
2068da668aa1SThomas Huth          */
2069da668aa1SThomas Huth         g_assert(parent_s->was_drained && parent_s->was_undrained);
2070da668aa1SThomas Huth     } else if (!old_drain_count && new_drain_count) {
2071da668aa1SThomas Huth         /*
2072da668aa1SThomas Huth          * From undrained to drained should drain the parent and keep
2073da668aa1SThomas Huth          * it that way.
2074da668aa1SThomas Huth          */
2075da668aa1SThomas Huth         g_assert(parent_s->was_drained && !parent_s->was_undrained);
2076da668aa1SThomas Huth     } else if (old_drain_count && !new_drain_count) {
2077da668aa1SThomas Huth         /*
2078da668aa1SThomas Huth          * From drained to undrained should undrain the parent and
2079da668aa1SThomas Huth          * keep it that way.
2080da668aa1SThomas Huth          */
2081da668aa1SThomas Huth         g_assert(!parent_s->was_drained && parent_s->was_undrained);
2082da668aa1SThomas Huth     } else /* if (old_drain_count && new_drain_count) */ {
2083da668aa1SThomas Huth         /*
2084da668aa1SThomas Huth          * From drained to drained must not undrain the parent at any
2085da668aa1SThomas Huth          * point
2086da668aa1SThomas Huth          */
2087da668aa1SThomas Huth         g_assert(!parent_s->was_drained && !parent_s->was_undrained);
2088da668aa1SThomas Huth     }
2089da668aa1SThomas Huth 
2090da668aa1SThomas Huth     if (!old_drain_count || !new_drain_count) {
2091da668aa1SThomas Huth         /*
2092da668aa1SThomas Huth          * If !old_drain_count, we have started a read request before
2093da668aa1SThomas Huth          * bdrv_replace_node().  If !new_drain_count, the parent must
2094da668aa1SThomas Huth          * have been undrained at some point, and
2095da668aa1SThomas Huth          * bdrv_replace_test_co_drain_end() starts a read request
2096da668aa1SThomas Huth          * then.
2097da668aa1SThomas Huth          */
2098da668aa1SThomas Huth         g_assert(parent_s->has_read);
2099da668aa1SThomas Huth     } else {
2100da668aa1SThomas Huth         /*
2101da668aa1SThomas Huth          * If the parent was never undrained, there is no way to start
2102da668aa1SThomas Huth          * a read request.
2103da668aa1SThomas Huth          */
2104da668aa1SThomas Huth         g_assert(!parent_s->has_read);
2105da668aa1SThomas Huth     }
2106da668aa1SThomas Huth 
2107da668aa1SThomas Huth     /* A drained child must have not received any request */
2108da668aa1SThomas Huth     g_assert(!(old_drain_count && old_child_s->has_read));
2109da668aa1SThomas Huth     g_assert(!(new_drain_count && new_child_s->has_read));
2110da668aa1SThomas Huth 
2111da668aa1SThomas Huth     for (i = 0; i < new_drain_count; i++) {
2112da668aa1SThomas Huth         bdrv_drained_end(new_child_bs);
2113da668aa1SThomas Huth     }
2114da668aa1SThomas Huth     for (i = 0; i < old_drain_count; i++) {
2115da668aa1SThomas Huth         bdrv_drained_end(old_child_bs);
2116da668aa1SThomas Huth     }
2117da668aa1SThomas Huth 
2118da668aa1SThomas Huth     /*
2119da668aa1SThomas Huth      * By now, bdrv_replace_test_co_drain_end() must have been called
2120da668aa1SThomas Huth      * at some point while the new child was attached to the parent.
2121da668aa1SThomas Huth      */
2122da668aa1SThomas Huth     g_assert(parent_s->has_read);
2123da668aa1SThomas Huth     g_assert(new_child_s->has_read);
2124da668aa1SThomas Huth 
2125da668aa1SThomas Huth     blk_unref(parent_blk);
2126da668aa1SThomas Huth     bdrv_unref(parent_bs);
2127da668aa1SThomas Huth     bdrv_unref(old_child_bs);
2128da668aa1SThomas Huth     bdrv_unref(new_child_bs);
2129da668aa1SThomas Huth }
2130da668aa1SThomas Huth 
2131da668aa1SThomas Huth static void test_replace_child_mid_drain(void)
2132da668aa1SThomas Huth {
2133da668aa1SThomas Huth     int old_drain_count, new_drain_count;
2134da668aa1SThomas Huth 
2135da668aa1SThomas Huth     for (old_drain_count = 0; old_drain_count < 2; old_drain_count++) {
2136da668aa1SThomas Huth         for (new_drain_count = 0; new_drain_count < 2; new_drain_count++) {
2137da668aa1SThomas Huth             do_test_replace_child_mid_drain(old_drain_count, new_drain_count);
2138da668aa1SThomas Huth         }
2139da668aa1SThomas Huth     }
2140da668aa1SThomas Huth }
2141da668aa1SThomas Huth 
2142da668aa1SThomas Huth int main(int argc, char **argv)
2143da668aa1SThomas Huth {
2144da668aa1SThomas Huth     int ret;
2145da668aa1SThomas Huth 
2146da668aa1SThomas Huth     bdrv_init();
2147da668aa1SThomas Huth     qemu_init_main_loop(&error_abort);
2148da668aa1SThomas Huth 
2149da668aa1SThomas Huth     g_test_init(&argc, &argv, NULL);
2150da668aa1SThomas Huth     qemu_event_init(&done_event, false);
2151da668aa1SThomas Huth 
2152da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/drain_all", test_drv_cb_drain_all);
2153da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/drain", test_drv_cb_drain);
2154da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/drain_subtree",
2155da668aa1SThomas Huth                     test_drv_cb_drain_subtree);
2156da668aa1SThomas Huth 
2157da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/co/drain_all",
2158da668aa1SThomas Huth                     test_drv_cb_co_drain_all);
2159da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/co/drain", test_drv_cb_co_drain);
2160da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/driver-cb/co/drain_subtree",
2161da668aa1SThomas Huth                     test_drv_cb_co_drain_subtree);
2162da668aa1SThomas Huth 
2163da668aa1SThomas Huth 
2164da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/drain_all", test_quiesce_drain_all);
2165da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/drain", test_quiesce_drain);
2166da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/drain_subtree",
2167da668aa1SThomas Huth                     test_quiesce_drain_subtree);
2168da668aa1SThomas Huth 
2169da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/co/drain_all",
2170da668aa1SThomas Huth                     test_quiesce_co_drain_all);
2171da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/co/drain", test_quiesce_co_drain);
2172da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/quiesce/co/drain_subtree",
2173da668aa1SThomas Huth                     test_quiesce_co_drain_subtree);
2174da668aa1SThomas Huth 
2175da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/nested", test_nested);
2176da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/multiparent", test_multiparent);
2177da668aa1SThomas Huth 
2178da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/graph-change/drain_subtree",
2179da668aa1SThomas Huth                     test_graph_change_drain_subtree);
2180da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/graph-change/drain_all",
2181da668aa1SThomas Huth                     test_graph_change_drain_all);
2182da668aa1SThomas Huth 
2183da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/iothread/drain_all", test_iothread_drain_all);
2184da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/iothread/drain", test_iothread_drain);
2185da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/iothread/drain_subtree",
2186da668aa1SThomas Huth                     test_iothread_drain_subtree);
2187da668aa1SThomas Huth 
2188da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/drain_all", test_blockjob_drain_all);
2189da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/drain", test_blockjob_drain);
2190da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/drain_subtree",
2191da668aa1SThomas Huth                     test_blockjob_drain_subtree);
2192da668aa1SThomas Huth 
2193da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/error/drain_all",
2194da668aa1SThomas Huth                     test_blockjob_error_drain_all);
2195da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/error/drain",
2196da668aa1SThomas Huth                     test_blockjob_error_drain);
2197da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/error/drain_subtree",
2198da668aa1SThomas Huth                     test_blockjob_error_drain_subtree);
2199da668aa1SThomas Huth 
2200da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/drain_all",
2201da668aa1SThomas Huth                     test_blockjob_iothread_drain_all);
2202da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/drain",
2203da668aa1SThomas Huth                     test_blockjob_iothread_drain);
2204da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/drain_subtree",
2205da668aa1SThomas Huth                     test_blockjob_iothread_drain_subtree);
2206da668aa1SThomas Huth 
2207da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/error/drain_all",
2208da668aa1SThomas Huth                     test_blockjob_iothread_error_drain_all);
2209da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/error/drain",
2210da668aa1SThomas Huth                     test_blockjob_iothread_error_drain);
2211da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/iothread/error/drain_subtree",
2212da668aa1SThomas Huth                     test_blockjob_iothread_error_drain_subtree);
2213da668aa1SThomas Huth 
2214da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/deletion/drain", test_delete_by_drain);
2215da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/detach/drain_all", test_detach_by_drain_all);
2216da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/detach/drain", test_detach_by_drain);
2217da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/detach/drain_subtree", test_detach_by_drain_subtree);
2218da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/detach/parent_cb", test_detach_by_parent_cb);
2219da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/detach/driver_cb", test_detach_by_driver_cb);
2220da668aa1SThomas Huth 
2221da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/attach/drain", test_append_to_drained);
2222da668aa1SThomas Huth 
2223da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/set_aio_context", test_set_aio_context);
2224da668aa1SThomas Huth 
2225da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/blockjob/commit_by_drained_end",
2226da668aa1SThomas Huth                     test_blockjob_commit_by_drained_end);
2227da668aa1SThomas Huth 
2228da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/bdrv_drop_intermediate/poll",
2229da668aa1SThomas Huth                     test_drop_intermediate_poll);
2230da668aa1SThomas Huth 
2231da668aa1SThomas Huth     g_test_add_func("/bdrv-drain/replace_child/mid-drain",
2232da668aa1SThomas Huth                     test_replace_child_mid_drain);
2233da668aa1SThomas Huth 
2234da668aa1SThomas Huth     ret = g_test_run();
2235da668aa1SThomas Huth     qemu_event_destroy(&done_event);
2236da668aa1SThomas Huth     return ret;
2237da668aa1SThomas Huth }
2238