2 * QEMU System Emulator block driver
4 * Copyright (c) 2011 IBM Corp.
5 * Copyright (c) 2012 Red Hat, Inc.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "config-host.h"
27 #include "qemu-common.h"
29 #include "monitor/monitor.h"
30 #include "block/block.h"
31 #include "block/blockjob.h"
32 #include "block/block_int.h"
33 #include "qapi/qmp/qjson.h"
34 #include "block/coroutine.h"
35 #include "qmp-commands.h"
36 #include "qemu/timer.h"
38 void *block_job_create(const BlockJobType
*job_type
, BlockDriverState
*bs
,
39 int64_t speed
, BlockDriverCompletionFunc
*cb
,
40 void *opaque
, Error
**errp
)
44 if (bs
->job
|| bdrv_in_use(bs
)) {
45 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
49 bdrv_set_in_use(bs
, 1);
51 job
= g_malloc0(job_type
->instance_size
);
52 job
->job_type
= job_type
;
59 /* Only set speed when necessary to avoid NotSupported error */
61 Error
*local_err
= NULL
;
63 block_job_set_speed(job
, speed
, &local_err
);
64 if (error_is_set(&local_err
)) {
67 bdrv_set_in_use(bs
, 0);
68 error_propagate(errp
, local_err
);
75 void block_job_completed(BlockJob
*job
, int ret
)
77 BlockDriverState
*bs
= job
->bs
;
79 assert(bs
->job
== job
);
80 job
->cb(job
->opaque
, ret
);
83 bdrv_set_in_use(bs
, 0);
86 void block_job_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
88 Error
*local_err
= NULL
;
90 if (!job
->job_type
->set_speed
) {
91 error_set(errp
, QERR_NOT_SUPPORTED
);
94 job
->job_type
->set_speed(job
, speed
, &local_err
);
95 if (error_is_set(&local_err
)) {
96 error_propagate(errp
, local_err
);
103 void block_job_complete(BlockJob
*job
, Error
**errp
)
105 if (job
->paused
|| job
->cancelled
|| !job
->job_type
->complete
) {
106 error_set(errp
, QERR_BLOCK_JOB_NOT_READY
, job
->bs
->device_name
);
110 job
->job_type
->complete(job
, errp
);
113 void block_job_pause(BlockJob
*job
)
118 bool block_job_is_paused(BlockJob
*job
)
123 void block_job_resume(BlockJob
*job
)
126 block_job_iostatus_reset(job
);
127 if (job
->co
&& !job
->busy
) {
128 qemu_coroutine_enter(job
->co
, NULL
);
132 void block_job_cancel(BlockJob
*job
)
134 job
->cancelled
= true;
135 block_job_resume(job
);
138 bool block_job_is_cancelled(BlockJob
*job
)
140 return job
->cancelled
;
143 void block_job_iostatus_reset(BlockJob
*job
)
145 job
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
146 if (job
->job_type
->iostatus_reset
) {
147 job
->job_type
->iostatus_reset(job
);
151 struct BlockCancelData
{
153 BlockDriverCompletionFunc
*cb
;
159 static void block_job_cancel_cb(void *opaque
, int ret
)
161 struct BlockCancelData
*data
= opaque
;
163 data
->cancelled
= block_job_is_cancelled(data
->job
);
165 data
->cb(data
->opaque
, ret
);
168 int block_job_cancel_sync(BlockJob
*job
)
170 struct BlockCancelData data
;
171 BlockDriverState
*bs
= job
->bs
;
173 assert(bs
->job
== job
);
175 /* Set up our own callback to store the result and chain to
176 * the original callback.
180 data
.opaque
= job
->opaque
;
181 data
.ret
= -EINPROGRESS
;
182 job
->cb
= block_job_cancel_cb
;
184 block_job_cancel(job
);
185 while (data
.ret
== -EINPROGRESS
) {
188 return (data
.cancelled
&& data
.ret
== 0) ? -ECANCELED
: data
.ret
;
191 void block_job_sleep_ns(BlockJob
*job
, QEMUClockType type
, int64_t ns
)
195 /* Check cancellation *before* setting busy = false, too! */
196 if (block_job_is_cancelled(job
)) {
201 if (block_job_is_paused(job
)) {
202 qemu_coroutine_yield();
204 co_sleep_ns(type
, ns
);
209 BlockJobInfo
*block_job_query(BlockJob
*job
)
211 BlockJobInfo
*info
= g_new0(BlockJobInfo
, 1);
212 info
->type
= g_strdup(job
->job_type
->job_type
);
213 info
->device
= g_strdup(bdrv_get_device_name(job
->bs
));
214 info
->len
= job
->len
;
215 info
->busy
= job
->busy
;
216 info
->paused
= job
->paused
;
217 info
->offset
= job
->offset
;
218 info
->speed
= job
->speed
;
219 info
->io_status
= job
->iostatus
;
223 static void block_job_iostatus_set_err(BlockJob
*job
, int error
)
225 if (job
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
226 job
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
227 BLOCK_DEVICE_IO_STATUS_FAILED
;
232 QObject
*qobject_from_block_job(BlockJob
*job
)
234 return qobject_from_jsonf("{ 'type': %s,"
236 "'len': %" PRId64
","
237 "'offset': %" PRId64
","
238 "'speed': %" PRId64
" }",
239 job
->job_type
->job_type
,
240 bdrv_get_device_name(job
->bs
),
246 void block_job_ready(BlockJob
*job
)
248 QObject
*data
= qobject_from_block_job(job
);
249 monitor_protocol_event(QEVENT_BLOCK_JOB_READY
, data
);
250 qobject_decref(data
);
253 BlockErrorAction
block_job_error_action(BlockJob
*job
, BlockDriverState
*bs
,
254 BlockdevOnError on_err
,
255 int is_read
, int error
)
257 BlockErrorAction action
;
260 case BLOCKDEV_ON_ERROR_ENOSPC
:
261 action
= (error
== ENOSPC
) ? BDRV_ACTION_STOP
: BDRV_ACTION_REPORT
;
263 case BLOCKDEV_ON_ERROR_STOP
:
264 action
= BDRV_ACTION_STOP
;
266 case BLOCKDEV_ON_ERROR_REPORT
:
267 action
= BDRV_ACTION_REPORT
;
269 case BLOCKDEV_ON_ERROR_IGNORE
:
270 action
= BDRV_ACTION_IGNORE
;
275 bdrv_emit_qmp_error_event(job
->bs
, QEVENT_BLOCK_JOB_ERROR
, action
, is_read
);
276 if (action
== BDRV_ACTION_STOP
) {
277 block_job_pause(job
);
278 block_job_iostatus_set_err(job
, error
);
280 bdrv_iostatus_set_err(bs
, error
);