job: Do not soft-cancel after a job is done
[qemu.git] / job.c
blob44e741ebd4c01019b6a7f65bb41dd022cd31740d
1 /*
2 * Background jobs (long-running operations)
4 * Copyright (c) 2011 IBM Corp.
5 * Copyright (c) 2012, 2018 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
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "qemu/job.h"
29 #include "qemu/id.h"
30 #include "qemu/main-loop.h"
31 #include "block/aio-wait.h"
32 #include "trace/trace-root.h"
33 #include "qapi/qapi-events-job.h"
35 static QLIST_HEAD(, Job) jobs = QLIST_HEAD_INITIALIZER(jobs);
37 /* Job State Transition Table */
38 bool JobSTT[JOB_STATUS__MAX][JOB_STATUS__MAX] = {
39 /* U, C, R, P, Y, S, W, D, X, E, N */
40 /* U: */ [JOB_STATUS_UNDEFINED] = {0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0},
41 /* C: */ [JOB_STATUS_CREATED] = {0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1},
42 /* R: */ [JOB_STATUS_RUNNING] = {0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0},
43 /* P: */ [JOB_STATUS_PAUSED] = {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
44 /* Y: */ [JOB_STATUS_READY] = {0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0},
45 /* S: */ [JOB_STATUS_STANDBY] = {0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0},
46 /* W: */ [JOB_STATUS_WAITING] = {0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0},
47 /* D: */ [JOB_STATUS_PENDING] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0},
48 /* X: */ [JOB_STATUS_ABORTING] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0},
49 /* E: */ [JOB_STATUS_CONCLUDED] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
50 /* N: */ [JOB_STATUS_NULL] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
53 bool JobVerbTable[JOB_VERB__MAX][JOB_STATUS__MAX] = {
54 /* U, C, R, P, Y, S, W, D, X, E, N */
55 [JOB_VERB_CANCEL] = {0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0},
56 [JOB_VERB_PAUSE] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0},
57 [JOB_VERB_RESUME] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0},
58 [JOB_VERB_SET_SPEED] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0},
59 [JOB_VERB_COMPLETE] = {0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0},
60 [JOB_VERB_FINALIZE] = {0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0},
61 [JOB_VERB_DISMISS] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0},
64 /* Transactional group of jobs */
65 struct JobTxn {
67 /* Is this txn being cancelled? */
68 bool aborting;
70 /* List of jobs */
71 QLIST_HEAD(, Job) jobs;
73 /* Reference count */
74 int refcnt;
77 /* Right now, this mutex is only needed to synchronize accesses to job->busy
78 * and job->sleep_timer, such as concurrent calls to job_do_yield and
79 * job_enter. */
80 static QemuMutex job_mutex;
82 static void job_lock(void)
84 qemu_mutex_lock(&job_mutex);
87 static void job_unlock(void)
89 qemu_mutex_unlock(&job_mutex);
92 static void __attribute__((__constructor__)) job_init(void)
94 qemu_mutex_init(&job_mutex);
97 JobTxn *job_txn_new(void)
99 JobTxn *txn = g_new0(JobTxn, 1);
100 QLIST_INIT(&txn->jobs);
101 txn->refcnt = 1;
102 return txn;
105 static void job_txn_ref(JobTxn *txn)
107 txn->refcnt++;
110 void job_txn_unref(JobTxn *txn)
112 if (txn && --txn->refcnt == 0) {
113 g_free(txn);
117 void job_txn_add_job(JobTxn *txn, Job *job)
119 if (!txn) {
120 return;
123 assert(!job->txn);
124 job->txn = txn;
126 QLIST_INSERT_HEAD(&txn->jobs, job, txn_list);
127 job_txn_ref(txn);
130 static void job_txn_del_job(Job *job)
132 if (job->txn) {
133 QLIST_REMOVE(job, txn_list);
134 job_txn_unref(job->txn);
135 job->txn = NULL;
139 static int job_txn_apply(Job *job, int fn(Job *))
141 AioContext *inner_ctx;
142 Job *other_job, *next;
143 JobTxn *txn = job->txn;
144 int rc = 0;
147 * Similar to job_completed_txn_abort, we take each job's lock before
148 * applying fn, but since we assume that outer_ctx is held by the caller,
149 * we need to release it here to avoid holding the lock twice - which would
150 * break AIO_WAIT_WHILE from within fn.
152 job_ref(job);
153 aio_context_release(job->aio_context);
155 QLIST_FOREACH_SAFE(other_job, &txn->jobs, txn_list, next) {
156 inner_ctx = other_job->aio_context;
157 aio_context_acquire(inner_ctx);
158 rc = fn(other_job);
159 aio_context_release(inner_ctx);
160 if (rc) {
161 break;
166 * Note that job->aio_context might have been changed by calling fn, so we
167 * can't use a local variable to cache it.
169 aio_context_acquire(job->aio_context);
170 job_unref(job);
171 return rc;
174 bool job_is_internal(Job *job)
176 return (job->id == NULL);
179 static void job_state_transition(Job *job, JobStatus s1)
181 JobStatus s0 = job->status;
182 assert(s1 >= 0 && s1 < JOB_STATUS__MAX);
183 trace_job_state_transition(job, job->ret,
184 JobSTT[s0][s1] ? "allowed" : "disallowed",
185 JobStatus_str(s0), JobStatus_str(s1));
186 assert(JobSTT[s0][s1]);
187 job->status = s1;
189 if (!job_is_internal(job) && s1 != s0) {
190 qapi_event_send_job_status_change(job->id, job->status);
194 int job_apply_verb(Job *job, JobVerb verb, Error **errp)
196 JobStatus s0 = job->status;
197 assert(verb >= 0 && verb < JOB_VERB__MAX);
198 trace_job_apply_verb(job, JobStatus_str(s0), JobVerb_str(verb),
199 JobVerbTable[verb][s0] ? "allowed" : "prohibited");
200 if (JobVerbTable[verb][s0]) {
201 return 0;
203 error_setg(errp, "Job '%s' in state '%s' cannot accept command verb '%s'",
204 job->id, JobStatus_str(s0), JobVerb_str(verb));
205 return -EPERM;
208 JobType job_type(const Job *job)
210 return job->driver->job_type;
213 const char *job_type_str(const Job *job)
215 return JobType_str(job_type(job));
218 bool job_is_cancelled(Job *job)
220 return job->cancelled;
223 bool job_is_ready(Job *job)
225 switch (job->status) {
226 case JOB_STATUS_UNDEFINED:
227 case JOB_STATUS_CREATED:
228 case JOB_STATUS_RUNNING:
229 case JOB_STATUS_PAUSED:
230 case JOB_STATUS_WAITING:
231 case JOB_STATUS_PENDING:
232 case JOB_STATUS_ABORTING:
233 case JOB_STATUS_CONCLUDED:
234 case JOB_STATUS_NULL:
235 return false;
236 case JOB_STATUS_READY:
237 case JOB_STATUS_STANDBY:
238 return true;
239 default:
240 g_assert_not_reached();
242 return false;
245 bool job_is_completed(Job *job)
247 switch (job->status) {
248 case JOB_STATUS_UNDEFINED:
249 case JOB_STATUS_CREATED:
250 case JOB_STATUS_RUNNING:
251 case JOB_STATUS_PAUSED:
252 case JOB_STATUS_READY:
253 case JOB_STATUS_STANDBY:
254 return false;
255 case JOB_STATUS_WAITING:
256 case JOB_STATUS_PENDING:
257 case JOB_STATUS_ABORTING:
258 case JOB_STATUS_CONCLUDED:
259 case JOB_STATUS_NULL:
260 return true;
261 default:
262 g_assert_not_reached();
264 return false;
267 static bool job_started(Job *job)
269 return job->co;
272 static bool job_should_pause(Job *job)
274 return job->pause_count > 0;
277 Job *job_next(Job *job)
279 if (!job) {
280 return QLIST_FIRST(&jobs);
282 return QLIST_NEXT(job, job_list);
285 Job *job_get(const char *id)
287 Job *job;
289 QLIST_FOREACH(job, &jobs, job_list) {
290 if (job->id && !strcmp(id, job->id)) {
291 return job;
295 return NULL;
298 static void job_sleep_timer_cb(void *opaque)
300 Job *job = opaque;
302 job_enter(job);
305 void *job_create(const char *job_id, const JobDriver *driver, JobTxn *txn,
306 AioContext *ctx, int flags, BlockCompletionFunc *cb,
307 void *opaque, Error **errp)
309 Job *job;
311 if (job_id) {
312 if (flags & JOB_INTERNAL) {
313 error_setg(errp, "Cannot specify job ID for internal job");
314 return NULL;
316 if (!id_wellformed(job_id)) {
317 error_setg(errp, "Invalid job ID '%s'", job_id);
318 return NULL;
320 if (job_get(job_id)) {
321 error_setg(errp, "Job ID '%s' already in use", job_id);
322 return NULL;
324 } else if (!(flags & JOB_INTERNAL)) {
325 error_setg(errp, "An explicit job ID is required");
326 return NULL;
329 job = g_malloc0(driver->instance_size);
330 job->driver = driver;
331 job->id = g_strdup(job_id);
332 job->refcnt = 1;
333 job->aio_context = ctx;
334 job->busy = false;
335 job->paused = true;
336 job->pause_count = 1;
337 job->auto_finalize = !(flags & JOB_MANUAL_FINALIZE);
338 job->auto_dismiss = !(flags & JOB_MANUAL_DISMISS);
339 job->cb = cb;
340 job->opaque = opaque;
342 progress_init(&job->progress);
344 notifier_list_init(&job->on_finalize_cancelled);
345 notifier_list_init(&job->on_finalize_completed);
346 notifier_list_init(&job->on_pending);
347 notifier_list_init(&job->on_ready);
349 job_state_transition(job, JOB_STATUS_CREATED);
350 aio_timer_init(qemu_get_aio_context(), &job->sleep_timer,
351 QEMU_CLOCK_REALTIME, SCALE_NS,
352 job_sleep_timer_cb, job);
354 QLIST_INSERT_HEAD(&jobs, job, job_list);
356 /* Single jobs are modeled as single-job transactions for sake of
357 * consolidating the job management logic */
358 if (!txn) {
359 txn = job_txn_new();
360 job_txn_add_job(txn, job);
361 job_txn_unref(txn);
362 } else {
363 job_txn_add_job(txn, job);
366 return job;
369 void job_ref(Job *job)
371 ++job->refcnt;
374 void job_unref(Job *job)
376 if (--job->refcnt == 0) {
377 assert(job->status == JOB_STATUS_NULL);
378 assert(!timer_pending(&job->sleep_timer));
379 assert(!job->txn);
381 if (job->driver->free) {
382 job->driver->free(job);
385 QLIST_REMOVE(job, job_list);
387 progress_destroy(&job->progress);
388 error_free(job->err);
389 g_free(job->id);
390 g_free(job);
394 void job_progress_update(Job *job, uint64_t done)
396 progress_work_done(&job->progress, done);
399 void job_progress_set_remaining(Job *job, uint64_t remaining)
401 progress_set_remaining(&job->progress, remaining);
404 void job_progress_increase_remaining(Job *job, uint64_t delta)
406 progress_increase_remaining(&job->progress, delta);
409 void job_event_cancelled(Job *job)
411 notifier_list_notify(&job->on_finalize_cancelled, job);
414 void job_event_completed(Job *job)
416 notifier_list_notify(&job->on_finalize_completed, job);
419 static void job_event_pending(Job *job)
421 notifier_list_notify(&job->on_pending, job);
424 static void job_event_ready(Job *job)
426 notifier_list_notify(&job->on_ready, job);
429 static void job_event_idle(Job *job)
431 notifier_list_notify(&job->on_idle, job);
434 void job_enter_cond(Job *job, bool(*fn)(Job *job))
436 if (!job_started(job)) {
437 return;
439 if (job->deferred_to_main_loop) {
440 return;
443 job_lock();
444 if (job->busy) {
445 job_unlock();
446 return;
449 if (fn && !fn(job)) {
450 job_unlock();
451 return;
454 assert(!job->deferred_to_main_loop);
455 timer_del(&job->sleep_timer);
456 job->busy = true;
457 job_unlock();
458 aio_co_enter(job->aio_context, job->co);
461 void job_enter(Job *job)
463 job_enter_cond(job, NULL);
466 /* Yield, and schedule a timer to reenter the coroutine after @ns nanoseconds.
467 * Reentering the job coroutine with job_enter() before the timer has expired
468 * is allowed and cancels the timer.
470 * If @ns is (uint64_t) -1, no timer is scheduled and job_enter() must be
471 * called explicitly. */
472 static void coroutine_fn job_do_yield(Job *job, uint64_t ns)
474 job_lock();
475 if (ns != -1) {
476 timer_mod(&job->sleep_timer, ns);
478 job->busy = false;
479 job_event_idle(job);
480 job_unlock();
481 qemu_coroutine_yield();
483 /* Set by job_enter_cond() before re-entering the coroutine. */
484 assert(job->busy);
487 void coroutine_fn job_pause_point(Job *job)
489 assert(job && job_started(job));
491 if (!job_should_pause(job)) {
492 return;
494 if (job_is_cancelled(job)) {
495 return;
498 if (job->driver->pause) {
499 job->driver->pause(job);
502 if (job_should_pause(job) && !job_is_cancelled(job)) {
503 JobStatus status = job->status;
504 job_state_transition(job, status == JOB_STATUS_READY
505 ? JOB_STATUS_STANDBY
506 : JOB_STATUS_PAUSED);
507 job->paused = true;
508 job_do_yield(job, -1);
509 job->paused = false;
510 job_state_transition(job, status);
513 if (job->driver->resume) {
514 job->driver->resume(job);
518 void job_yield(Job *job)
520 assert(job->busy);
522 /* Check cancellation *before* setting busy = false, too! */
523 if (job_is_cancelled(job)) {
524 return;
527 if (!job_should_pause(job)) {
528 job_do_yield(job, -1);
531 job_pause_point(job);
534 void coroutine_fn job_sleep_ns(Job *job, int64_t ns)
536 assert(job->busy);
538 /* Check cancellation *before* setting busy = false, too! */
539 if (job_is_cancelled(job)) {
540 return;
543 if (!job_should_pause(job)) {
544 job_do_yield(job, qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + ns);
547 job_pause_point(job);
550 /* Assumes the block_job_mutex is held */
551 static bool job_timer_not_pending(Job *job)
553 return !timer_pending(&job->sleep_timer);
556 void job_pause(Job *job)
558 job->pause_count++;
559 if (!job->paused) {
560 job_enter(job);
564 void job_resume(Job *job)
566 assert(job->pause_count > 0);
567 job->pause_count--;
568 if (job->pause_count) {
569 return;
572 /* kick only if no timer is pending */
573 job_enter_cond(job, job_timer_not_pending);
576 void job_user_pause(Job *job, Error **errp)
578 if (job_apply_verb(job, JOB_VERB_PAUSE, errp)) {
579 return;
581 if (job->user_paused) {
582 error_setg(errp, "Job is already paused");
583 return;
585 job->user_paused = true;
586 job_pause(job);
589 bool job_user_paused(Job *job)
591 return job->user_paused;
594 void job_user_resume(Job *job, Error **errp)
596 assert(job);
597 if (!job->user_paused || job->pause_count <= 0) {
598 error_setg(errp, "Can't resume a job that was not paused");
599 return;
601 if (job_apply_verb(job, JOB_VERB_RESUME, errp)) {
602 return;
604 if (job->driver->user_resume) {
605 job->driver->user_resume(job);
607 job->user_paused = false;
608 job_resume(job);
611 static void job_do_dismiss(Job *job)
613 assert(job);
614 job->busy = false;
615 job->paused = false;
616 job->deferred_to_main_loop = true;
618 job_txn_del_job(job);
620 job_state_transition(job, JOB_STATUS_NULL);
621 job_unref(job);
624 void job_dismiss(Job **jobptr, Error **errp)
626 Job *job = *jobptr;
627 /* similarly to _complete, this is QMP-interface only. */
628 assert(job->id);
629 if (job_apply_verb(job, JOB_VERB_DISMISS, errp)) {
630 return;
633 job_do_dismiss(job);
634 *jobptr = NULL;
637 void job_early_fail(Job *job)
639 assert(job->status == JOB_STATUS_CREATED);
640 job_do_dismiss(job);
643 static void job_conclude(Job *job)
645 job_state_transition(job, JOB_STATUS_CONCLUDED);
646 if (job->auto_dismiss || !job_started(job)) {
647 job_do_dismiss(job);
651 static void job_update_rc(Job *job)
653 if (!job->ret && job_is_cancelled(job)) {
654 job->ret = -ECANCELED;
656 if (job->ret) {
657 if (!job->err) {
658 error_setg(&job->err, "%s", strerror(-job->ret));
660 job_state_transition(job, JOB_STATUS_ABORTING);
664 static void job_commit(Job *job)
666 assert(!job->ret);
667 if (job->driver->commit) {
668 job->driver->commit(job);
672 static void job_abort(Job *job)
674 assert(job->ret);
675 if (job->driver->abort) {
676 job->driver->abort(job);
680 static void job_clean(Job *job)
682 if (job->driver->clean) {
683 job->driver->clean(job);
687 static int job_finalize_single(Job *job)
689 assert(job_is_completed(job));
691 /* Ensure abort is called for late-transactional failures */
692 job_update_rc(job);
694 if (!job->ret) {
695 job_commit(job);
696 } else {
697 job_abort(job);
699 job_clean(job);
701 if (job->cb) {
702 job->cb(job->opaque, job->ret);
705 /* Emit events only if we actually started */
706 if (job_started(job)) {
707 if (job_is_cancelled(job)) {
708 job_event_cancelled(job);
709 } else {
710 job_event_completed(job);
714 job_txn_del_job(job);
715 job_conclude(job);
716 return 0;
719 static void job_cancel_async(Job *job, bool force)
721 if (job->driver->cancel) {
722 force = job->driver->cancel(job, force);
723 } else {
724 /* No .cancel() means the job will behave as if force-cancelled */
725 force = true;
728 if (job->user_paused) {
729 /* Do not call job_enter here, the caller will handle it. */
730 if (job->driver->user_resume) {
731 job->driver->user_resume(job);
733 job->user_paused = false;
734 assert(job->pause_count > 0);
735 job->pause_count--;
739 * Ignore soft cancel requests after the job is already done
740 * (We will still invoke job->driver->cancel() above, but if the
741 * job driver supports soft cancelling and the job is done, that
742 * should be a no-op, too. We still call it so it can override
743 * @force.)
745 if (force || !job->deferred_to_main_loop) {
746 job->cancelled = true;
747 /* To prevent 'force == false' overriding a previous 'force == true' */
748 job->force_cancel |= force;
752 static void job_completed_txn_abort(Job *job)
754 AioContext *ctx;
755 JobTxn *txn = job->txn;
756 Job *other_job;
758 if (txn->aborting) {
760 * We are cancelled by another job, which will handle everything.
762 return;
764 txn->aborting = true;
765 job_txn_ref(txn);
768 * We can only hold the single job's AioContext lock while calling
769 * job_finalize_single() because the finalization callbacks can involve
770 * calls of AIO_WAIT_WHILE(), which could deadlock otherwise.
771 * Note that the job's AioContext may change when it is finalized.
773 job_ref(job);
774 aio_context_release(job->aio_context);
776 /* Other jobs are effectively cancelled by us, set the status for
777 * them; this job, however, may or may not be cancelled, depending
778 * on the caller, so leave it. */
779 QLIST_FOREACH(other_job, &txn->jobs, txn_list) {
780 if (other_job != job) {
781 ctx = other_job->aio_context;
782 aio_context_acquire(ctx);
784 * This is a transaction: If one job failed, no result will matter.
785 * Therefore, pass force=true to terminate all other jobs as quickly
786 * as possible.
788 job_cancel_async(other_job, true);
789 aio_context_release(ctx);
792 while (!QLIST_EMPTY(&txn->jobs)) {
793 other_job = QLIST_FIRST(&txn->jobs);
795 * The job's AioContext may change, so store it in @ctx so we
796 * release the same context that we have acquired before.
798 ctx = other_job->aio_context;
799 aio_context_acquire(ctx);
800 if (!job_is_completed(other_job)) {
801 assert(job_is_cancelled(other_job));
802 job_finish_sync(other_job, NULL, NULL);
804 job_finalize_single(other_job);
805 aio_context_release(ctx);
809 * Use job_ref()/job_unref() so we can read the AioContext here
810 * even if the job went away during job_finalize_single().
812 aio_context_acquire(job->aio_context);
813 job_unref(job);
815 job_txn_unref(txn);
818 static int job_prepare(Job *job)
820 if (job->ret == 0 && job->driver->prepare) {
821 job->ret = job->driver->prepare(job);
822 job_update_rc(job);
824 return job->ret;
827 static int job_needs_finalize(Job *job)
829 return !job->auto_finalize;
832 static void job_do_finalize(Job *job)
834 int rc;
835 assert(job && job->txn);
837 /* prepare the transaction to complete */
838 rc = job_txn_apply(job, job_prepare);
839 if (rc) {
840 job_completed_txn_abort(job);
841 } else {
842 job_txn_apply(job, job_finalize_single);
846 void job_finalize(Job *job, Error **errp)
848 assert(job && job->id);
849 if (job_apply_verb(job, JOB_VERB_FINALIZE, errp)) {
850 return;
852 job_do_finalize(job);
855 static int job_transition_to_pending(Job *job)
857 job_state_transition(job, JOB_STATUS_PENDING);
858 if (!job->auto_finalize) {
859 job_event_pending(job);
861 return 0;
864 void job_transition_to_ready(Job *job)
866 job_state_transition(job, JOB_STATUS_READY);
867 job_event_ready(job);
870 static void job_completed_txn_success(Job *job)
872 JobTxn *txn = job->txn;
873 Job *other_job;
875 job_state_transition(job, JOB_STATUS_WAITING);
878 * Successful completion, see if there are other running jobs in this
879 * txn.
881 QLIST_FOREACH(other_job, &txn->jobs, txn_list) {
882 if (!job_is_completed(other_job)) {
883 return;
885 assert(other_job->ret == 0);
888 job_txn_apply(job, job_transition_to_pending);
890 /* If no jobs need manual finalization, automatically do so */
891 if (job_txn_apply(job, job_needs_finalize) == 0) {
892 job_do_finalize(job);
896 static void job_completed(Job *job)
898 assert(job && job->txn && !job_is_completed(job));
900 job_update_rc(job);
901 trace_job_completed(job, job->ret);
902 if (job->ret) {
903 job_completed_txn_abort(job);
904 } else {
905 job_completed_txn_success(job);
909 /** Useful only as a type shim for aio_bh_schedule_oneshot. */
910 static void job_exit(void *opaque)
912 Job *job = (Job *)opaque;
913 AioContext *ctx;
915 job_ref(job);
916 aio_context_acquire(job->aio_context);
918 /* This is a lie, we're not quiescent, but still doing the completion
919 * callbacks. However, completion callbacks tend to involve operations that
920 * drain block nodes, and if .drained_poll still returned true, we would
921 * deadlock. */
922 job->busy = false;
923 job_event_idle(job);
925 job_completed(job);
928 * Note that calling job_completed can move the job to a different
929 * aio_context, so we cannot cache from above. job_txn_apply takes care of
930 * acquiring the new lock, and we ref/unref to avoid job_completed freeing
931 * the job underneath us.
933 ctx = job->aio_context;
934 job_unref(job);
935 aio_context_release(ctx);
939 * All jobs must allow a pause point before entering their job proper. This
940 * ensures that jobs can be paused prior to being started, then resumed later.
942 static void coroutine_fn job_co_entry(void *opaque)
944 Job *job = opaque;
946 assert(job && job->driver && job->driver->run);
947 job_pause_point(job);
948 job->ret = job->driver->run(job, &job->err);
949 job->deferred_to_main_loop = true;
950 job->busy = true;
951 aio_bh_schedule_oneshot(qemu_get_aio_context(), job_exit, job);
954 void job_start(Job *job)
956 assert(job && !job_started(job) && job->paused &&
957 job->driver && job->driver->run);
958 job->co = qemu_coroutine_create(job_co_entry, job);
959 job->pause_count--;
960 job->busy = true;
961 job->paused = false;
962 job_state_transition(job, JOB_STATUS_RUNNING);
963 aio_co_enter(job->aio_context, job->co);
966 void job_cancel(Job *job, bool force)
968 if (job->status == JOB_STATUS_CONCLUDED) {
969 job_do_dismiss(job);
970 return;
972 job_cancel_async(job, force);
973 if (!job_started(job)) {
974 job_completed(job);
975 } else if (job->deferred_to_main_loop) {
977 * job_cancel_async() ignores soft-cancel requests for jobs
978 * that are already done (i.e. deferred to the main loop). We
979 * have to check again whether the job is really cancelled.
981 if (job_is_cancelled(job)) {
982 job_completed_txn_abort(job);
984 } else {
985 job_enter(job);
989 void job_user_cancel(Job *job, bool force, Error **errp)
991 if (job_apply_verb(job, JOB_VERB_CANCEL, errp)) {
992 return;
994 job_cancel(job, force);
997 /* A wrapper around job_cancel() taking an Error ** parameter so it may be
998 * used with job_finish_sync() without the need for (rather nasty) function
999 * pointer casts there. */
1000 static void job_cancel_err(Job *job, Error **errp)
1002 job_cancel(job, false);
1006 * Same as job_cancel_err(), but force-cancel.
1008 static void job_force_cancel_err(Job *job, Error **errp)
1010 job_cancel(job, true);
1013 int job_cancel_sync(Job *job, bool force)
1015 if (force) {
1016 return job_finish_sync(job, &job_force_cancel_err, NULL);
1017 } else {
1018 return job_finish_sync(job, &job_cancel_err, NULL);
1022 void job_cancel_sync_all(void)
1024 Job *job;
1025 AioContext *aio_context;
1027 while ((job = job_next(NULL))) {
1028 aio_context = job->aio_context;
1029 aio_context_acquire(aio_context);
1030 job_cancel_sync(job, true);
1031 aio_context_release(aio_context);
1035 int job_complete_sync(Job *job, Error **errp)
1037 return job_finish_sync(job, job_complete, errp);
1040 void job_complete(Job *job, Error **errp)
1042 /* Should not be reachable via external interface for internal jobs */
1043 assert(job->id);
1044 if (job_apply_verb(job, JOB_VERB_COMPLETE, errp)) {
1045 return;
1047 if (job_is_cancelled(job) || !job->driver->complete) {
1048 error_setg(errp, "The active block job '%s' cannot be completed",
1049 job->id);
1050 return;
1053 job->driver->complete(job, errp);
1056 int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp)
1058 Error *local_err = NULL;
1059 int ret;
1061 job_ref(job);
1063 if (finish) {
1064 finish(job, &local_err);
1066 if (local_err) {
1067 error_propagate(errp, local_err);
1068 job_unref(job);
1069 return -EBUSY;
1072 AIO_WAIT_WHILE(job->aio_context,
1073 (job_enter(job), !job_is_completed(job)));
1075 ret = (job_is_cancelled(job) && job->ret == 0) ? -ECANCELED : job->ret;
1076 job_unref(job);
1077 return ret;