Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Background jobs (long-running operations) |
| 3 | * |
| 4 | * Copyright (c) 2011 IBM Corp. |
| 5 | * Copyright (c) 2012, 2018 Red Hat, Inc. |
| 6 | * |
| 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: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included in |
| 15 | * all copies or substantial portions of the Software. |
| 16 | * |
| 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. |
| 24 | */ |
| 25 | |
| 26 | #include "qemu/osdep.h" |
| 27 | #include "qemu-common.h" |
| 28 | #include "qapi/error.h" |
| 29 | #include "qemu/job.h" |
| 30 | #include "qemu/id.h" |
Kevin Wolf | 1908a55 | 2018-04-17 16:41:17 +0200 | [diff] [blame] | 31 | #include "qemu/main-loop.h" |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 32 | #include "trace-root.h" |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 33 | |
Kevin Wolf | e7c1d78 | 2018-04-12 17:54:37 +0200 | [diff] [blame] | 34 | static QLIST_HEAD(, Job) jobs = QLIST_HEAD_INITIALIZER(jobs); |
| 35 | |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 36 | /* Job State Transition Table */ |
| 37 | bool JobSTT[JOB_STATUS__MAX][JOB_STATUS__MAX] = { |
| 38 | /* U, C, R, P, Y, S, W, D, X, E, N */ |
| 39 | /* U: */ [JOB_STATUS_UNDEFINED] = {0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0}, |
| 40 | /* C: */ [JOB_STATUS_CREATED] = {0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1}, |
| 41 | /* R: */ [JOB_STATUS_RUNNING] = {0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0}, |
| 42 | /* P: */ [JOB_STATUS_PAUSED] = {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0}, |
| 43 | /* Y: */ [JOB_STATUS_READY] = {0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0}, |
| 44 | /* S: */ [JOB_STATUS_STANDBY] = {0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0}, |
| 45 | /* W: */ [JOB_STATUS_WAITING] = {0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0}, |
| 46 | /* D: */ [JOB_STATUS_PENDING] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0}, |
| 47 | /* X: */ [JOB_STATUS_ABORTING] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0}, |
| 48 | /* E: */ [JOB_STATUS_CONCLUDED] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, |
| 49 | /* N: */ [JOB_STATUS_NULL] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, |
| 50 | }; |
| 51 | |
| 52 | bool JobVerbTable[JOB_VERB__MAX][JOB_STATUS__MAX] = { |
| 53 | /* U, C, R, P, Y, S, W, D, X, E, N */ |
| 54 | [JOB_VERB_CANCEL] = {0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0}, |
| 55 | [JOB_VERB_PAUSE] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0}, |
| 56 | [JOB_VERB_RESUME] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0}, |
| 57 | [JOB_VERB_SET_SPEED] = {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0}, |
| 58 | [JOB_VERB_COMPLETE] = {0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0}, |
| 59 | [JOB_VERB_FINALIZE] = {0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0}, |
| 60 | [JOB_VERB_DISMISS] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0}, |
| 61 | }; |
| 62 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 63 | /* Transactional group of jobs */ |
| 64 | struct JobTxn { |
| 65 | |
| 66 | /* Is this txn being cancelled? */ |
| 67 | bool aborting; |
| 68 | |
| 69 | /* List of jobs */ |
| 70 | QLIST_HEAD(, Job) jobs; |
| 71 | |
| 72 | /* Reference count */ |
| 73 | int refcnt; |
| 74 | }; |
| 75 | |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 76 | /* Right now, this mutex is only needed to synchronize accesses to job->busy |
| 77 | * and job->sleep_timer, such as concurrent calls to job_do_yield and |
| 78 | * job_enter. */ |
| 79 | static QemuMutex job_mutex; |
| 80 | |
| 81 | static void job_lock(void) |
| 82 | { |
| 83 | qemu_mutex_lock(&job_mutex); |
| 84 | } |
| 85 | |
| 86 | static void job_unlock(void) |
| 87 | { |
| 88 | qemu_mutex_unlock(&job_mutex); |
| 89 | } |
| 90 | |
| 91 | static void __attribute__((__constructor__)) job_init(void) |
| 92 | { |
| 93 | qemu_mutex_init(&job_mutex); |
| 94 | } |
| 95 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 96 | JobTxn *job_txn_new(void) |
| 97 | { |
| 98 | JobTxn *txn = g_new0(JobTxn, 1); |
| 99 | QLIST_INIT(&txn->jobs); |
| 100 | txn->refcnt = 1; |
| 101 | return txn; |
| 102 | } |
| 103 | |
| 104 | static void job_txn_ref(JobTxn *txn) |
| 105 | { |
| 106 | txn->refcnt++; |
| 107 | } |
| 108 | |
| 109 | void job_txn_unref(JobTxn *txn) |
| 110 | { |
| 111 | if (txn && --txn->refcnt == 0) { |
| 112 | g_free(txn); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void job_txn_add_job(JobTxn *txn, Job *job) |
| 117 | { |
| 118 | if (!txn) { |
| 119 | return; |
| 120 | } |
| 121 | |
| 122 | assert(!job->txn); |
| 123 | job->txn = txn; |
| 124 | |
| 125 | QLIST_INSERT_HEAD(&txn->jobs, job, txn_list); |
| 126 | job_txn_ref(txn); |
| 127 | } |
| 128 | |
| 129 | static void job_txn_del_job(Job *job) |
| 130 | { |
| 131 | if (job->txn) { |
| 132 | QLIST_REMOVE(job, txn_list); |
| 133 | job_txn_unref(job->txn); |
| 134 | job->txn = NULL; |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | static int job_txn_apply(JobTxn *txn, int fn(Job *), bool lock) |
| 139 | { |
| 140 | AioContext *ctx; |
| 141 | Job *job, *next; |
| 142 | int rc = 0; |
| 143 | |
| 144 | QLIST_FOREACH_SAFE(job, &txn->jobs, txn_list, next) { |
| 145 | if (lock) { |
| 146 | ctx = job->aio_context; |
| 147 | aio_context_acquire(ctx); |
| 148 | } |
| 149 | rc = fn(job); |
| 150 | if (lock) { |
| 151 | aio_context_release(ctx); |
| 152 | } |
| 153 | if (rc) { |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | return rc; |
| 158 | } |
| 159 | |
| 160 | |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 161 | /* TODO Make static once the whole state machine is in job.c */ |
| 162 | void job_state_transition(Job *job, JobStatus s1) |
| 163 | { |
| 164 | JobStatus s0 = job->status; |
| 165 | assert(s1 >= 0 && s1 <= JOB_STATUS__MAX); |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 166 | trace_job_state_transition(job, job->ret, |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 167 | JobSTT[s0][s1] ? "allowed" : "disallowed", |
| 168 | JobStatus_str(s0), JobStatus_str(s1)); |
| 169 | assert(JobSTT[s0][s1]); |
| 170 | job->status = s1; |
| 171 | } |
| 172 | |
| 173 | int job_apply_verb(Job *job, JobVerb verb, Error **errp) |
| 174 | { |
| 175 | JobStatus s0 = job->status; |
| 176 | assert(verb >= 0 && verb <= JOB_VERB__MAX); |
| 177 | trace_job_apply_verb(job, JobStatus_str(s0), JobVerb_str(verb), |
| 178 | JobVerbTable[verb][s0] ? "allowed" : "prohibited"); |
| 179 | if (JobVerbTable[verb][s0]) { |
| 180 | return 0; |
| 181 | } |
| 182 | error_setg(errp, "Job '%s' in state '%s' cannot accept command verb '%s'", |
| 183 | job->id, JobStatus_str(s0), JobVerb_str(verb)); |
| 184 | return -EPERM; |
| 185 | } |
| 186 | |
Kevin Wolf | 252291e | 2018-04-12 17:57:08 +0200 | [diff] [blame] | 187 | JobType job_type(const Job *job) |
| 188 | { |
| 189 | return job->driver->job_type; |
| 190 | } |
| 191 | |
| 192 | const char *job_type_str(const Job *job) |
| 193 | { |
| 194 | return JobType_str(job_type(job)); |
| 195 | } |
| 196 | |
Kevin Wolf | daa7f2f | 2018-04-17 12:56:07 +0200 | [diff] [blame] | 197 | bool job_is_cancelled(Job *job) |
| 198 | { |
| 199 | return job->cancelled; |
| 200 | } |
| 201 | |
Kevin Wolf | dbe5e6c | 2018-04-19 13:04:01 +0200 | [diff] [blame] | 202 | bool job_is_completed(Job *job) |
| 203 | { |
| 204 | switch (job->status) { |
| 205 | case JOB_STATUS_UNDEFINED: |
| 206 | case JOB_STATUS_CREATED: |
| 207 | case JOB_STATUS_RUNNING: |
| 208 | case JOB_STATUS_PAUSED: |
| 209 | case JOB_STATUS_READY: |
| 210 | case JOB_STATUS_STANDBY: |
| 211 | return false; |
| 212 | case JOB_STATUS_WAITING: |
| 213 | case JOB_STATUS_PENDING: |
| 214 | case JOB_STATUS_ABORTING: |
| 215 | case JOB_STATUS_CONCLUDED: |
| 216 | case JOB_STATUS_NULL: |
| 217 | return true; |
| 218 | default: |
| 219 | g_assert_not_reached(); |
| 220 | } |
| 221 | return false; |
| 222 | } |
| 223 | |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 224 | bool job_started(Job *job) |
| 225 | { |
| 226 | return job->co; |
| 227 | } |
| 228 | |
| 229 | bool job_should_pause(Job *job) |
| 230 | { |
| 231 | return job->pause_count > 0; |
| 232 | } |
| 233 | |
Kevin Wolf | e7c1d78 | 2018-04-12 17:54:37 +0200 | [diff] [blame] | 234 | Job *job_next(Job *job) |
| 235 | { |
| 236 | if (!job) { |
| 237 | return QLIST_FIRST(&jobs); |
| 238 | } |
| 239 | return QLIST_NEXT(job, job_list); |
| 240 | } |
| 241 | |
| 242 | Job *job_get(const char *id) |
| 243 | { |
| 244 | Job *job; |
| 245 | |
| 246 | QLIST_FOREACH(job, &jobs, job_list) { |
| 247 | if (job->id && !strcmp(id, job->id)) { |
| 248 | return job; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | return NULL; |
| 253 | } |
| 254 | |
Kevin Wolf | 5d43e86 | 2018-04-18 16:32:20 +0200 | [diff] [blame] | 255 | static void job_sleep_timer_cb(void *opaque) |
| 256 | { |
| 257 | Job *job = opaque; |
| 258 | |
| 259 | job_enter(job); |
| 260 | } |
| 261 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 262 | void *job_create(const char *job_id, const JobDriver *driver, JobTxn *txn, |
| 263 | AioContext *ctx, int flags, BlockCompletionFunc *cb, |
| 264 | void *opaque, Error **errp) |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 265 | { |
| 266 | Job *job; |
| 267 | |
| 268 | if (job_id) { |
Kevin Wolf | bb02b65 | 2018-04-19 17:54:56 +0200 | [diff] [blame] | 269 | if (flags & JOB_INTERNAL) { |
| 270 | error_setg(errp, "Cannot specify job ID for internal job"); |
| 271 | return NULL; |
| 272 | } |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 273 | if (!id_wellformed(job_id)) { |
| 274 | error_setg(errp, "Invalid job ID '%s'", job_id); |
| 275 | return NULL; |
| 276 | } |
Kevin Wolf | e7c1d78 | 2018-04-12 17:54:37 +0200 | [diff] [blame] | 277 | if (job_get(job_id)) { |
| 278 | error_setg(errp, "Job ID '%s' already in use", job_id); |
| 279 | return NULL; |
| 280 | } |
Kevin Wolf | bb02b65 | 2018-04-19 17:54:56 +0200 | [diff] [blame] | 281 | } else if (!(flags & JOB_INTERNAL)) { |
| 282 | error_setg(errp, "An explicit job ID is required"); |
| 283 | return NULL; |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | job = g_malloc0(driver->instance_size); |
| 287 | job->driver = driver; |
| 288 | job->id = g_strdup(job_id); |
Kevin Wolf | 80fa2c7 | 2018-04-13 18:50:05 +0200 | [diff] [blame] | 289 | job->refcnt = 1; |
Kevin Wolf | 08be6fe | 2018-04-17 13:49:33 +0200 | [diff] [blame] | 290 | job->aio_context = ctx; |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 291 | job->busy = false; |
| 292 | job->paused = true; |
| 293 | job->pause_count = 1; |
Kevin Wolf | bb02b65 | 2018-04-19 17:54:56 +0200 | [diff] [blame] | 294 | job->auto_finalize = !(flags & JOB_MANUAL_FINALIZE); |
| 295 | job->auto_dismiss = !(flags & JOB_MANUAL_DISMISS); |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 296 | job->cb = cb; |
| 297 | job->opaque = opaque; |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 298 | |
Kevin Wolf | 139a9f0 | 2018-04-23 18:04:57 +0200 | [diff] [blame] | 299 | notifier_list_init(&job->on_finalize_cancelled); |
| 300 | notifier_list_init(&job->on_finalize_completed); |
| 301 | notifier_list_init(&job->on_pending); |
| 302 | |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 303 | job_state_transition(job, JOB_STATUS_CREATED); |
Kevin Wolf | 5d43e86 | 2018-04-18 16:32:20 +0200 | [diff] [blame] | 304 | aio_timer_init(qemu_get_aio_context(), &job->sleep_timer, |
| 305 | QEMU_CLOCK_REALTIME, SCALE_NS, |
| 306 | job_sleep_timer_cb, job); |
Kevin Wolf | a50c2ab | 2018-04-13 17:19:31 +0200 | [diff] [blame] | 307 | |
Kevin Wolf | e7c1d78 | 2018-04-12 17:54:37 +0200 | [diff] [blame] | 308 | QLIST_INSERT_HEAD(&jobs, job, job_list); |
| 309 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 310 | /* Single jobs are modeled as single-job transactions for sake of |
| 311 | * consolidating the job management logic */ |
| 312 | if (!txn) { |
| 313 | txn = job_txn_new(); |
| 314 | job_txn_add_job(txn, job); |
| 315 | job_txn_unref(txn); |
| 316 | } else { |
| 317 | job_txn_add_job(txn, job); |
| 318 | } |
| 319 | |
Kevin Wolf | 33e9e9b | 2018-04-12 17:29:59 +0200 | [diff] [blame] | 320 | return job; |
| 321 | } |
Kevin Wolf | fd61a70 | 2018-04-12 19:06:53 +0200 | [diff] [blame] | 322 | |
Kevin Wolf | 80fa2c7 | 2018-04-13 18:50:05 +0200 | [diff] [blame] | 323 | void job_ref(Job *job) |
Kevin Wolf | fd61a70 | 2018-04-12 19:06:53 +0200 | [diff] [blame] | 324 | { |
Kevin Wolf | 80fa2c7 | 2018-04-13 18:50:05 +0200 | [diff] [blame] | 325 | ++job->refcnt; |
| 326 | } |
Kevin Wolf | e7c1d78 | 2018-04-12 17:54:37 +0200 | [diff] [blame] | 327 | |
Kevin Wolf | 80fa2c7 | 2018-04-13 18:50:05 +0200 | [diff] [blame] | 328 | void job_unref(Job *job) |
| 329 | { |
| 330 | if (--job->refcnt == 0) { |
| 331 | assert(job->status == JOB_STATUS_NULL); |
Kevin Wolf | 5d43e86 | 2018-04-18 16:32:20 +0200 | [diff] [blame] | 332 | assert(!timer_pending(&job->sleep_timer)); |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 333 | assert(!job->txn); |
Kevin Wolf | 80fa2c7 | 2018-04-13 18:50:05 +0200 | [diff] [blame] | 334 | |
| 335 | if (job->driver->free) { |
| 336 | job->driver->free(job); |
| 337 | } |
| 338 | |
| 339 | QLIST_REMOVE(job, job_list); |
| 340 | |
| 341 | g_free(job->id); |
| 342 | g_free(job); |
| 343 | } |
Kevin Wolf | fd61a70 | 2018-04-12 19:06:53 +0200 | [diff] [blame] | 344 | } |
Kevin Wolf | 1908a55 | 2018-04-17 16:41:17 +0200 | [diff] [blame] | 345 | |
Kevin Wolf | 139a9f0 | 2018-04-23 18:04:57 +0200 | [diff] [blame] | 346 | void job_event_cancelled(Job *job) |
| 347 | { |
| 348 | notifier_list_notify(&job->on_finalize_cancelled, job); |
| 349 | } |
| 350 | |
| 351 | void job_event_completed(Job *job) |
| 352 | { |
| 353 | notifier_list_notify(&job->on_finalize_completed, job); |
| 354 | } |
| 355 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 356 | static void job_event_pending(Job *job) |
Kevin Wolf | 139a9f0 | 2018-04-23 18:04:57 +0200 | [diff] [blame] | 357 | { |
| 358 | notifier_list_notify(&job->on_pending, job); |
| 359 | } |
| 360 | |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 361 | void job_enter_cond(Job *job, bool(*fn)(Job *job)) |
| 362 | { |
| 363 | if (!job_started(job)) { |
| 364 | return; |
| 365 | } |
| 366 | if (job->deferred_to_main_loop) { |
| 367 | return; |
| 368 | } |
| 369 | |
| 370 | job_lock(); |
| 371 | if (job->busy) { |
| 372 | job_unlock(); |
| 373 | return; |
| 374 | } |
| 375 | |
| 376 | if (fn && !fn(job)) { |
| 377 | job_unlock(); |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | assert(!job->deferred_to_main_loop); |
| 382 | timer_del(&job->sleep_timer); |
| 383 | job->busy = true; |
| 384 | job_unlock(); |
| 385 | aio_co_wake(job->co); |
| 386 | } |
| 387 | |
Kevin Wolf | 5d43e86 | 2018-04-18 16:32:20 +0200 | [diff] [blame] | 388 | void job_enter(Job *job) |
| 389 | { |
| 390 | job_enter_cond(job, NULL); |
| 391 | } |
| 392 | |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 393 | /* Yield, and schedule a timer to reenter the coroutine after @ns nanoseconds. |
| 394 | * Reentering the job coroutine with block_job_enter() before the timer has |
| 395 | * expired is allowed and cancels the timer. |
| 396 | * |
| 397 | * If @ns is (uint64_t) -1, no timer is scheduled and block_job_enter() must be |
| 398 | * called explicitly. */ |
| 399 | void coroutine_fn job_do_yield(Job *job, uint64_t ns) |
| 400 | { |
| 401 | job_lock(); |
| 402 | if (ns != -1) { |
| 403 | timer_mod(&job->sleep_timer, ns); |
| 404 | } |
| 405 | job->busy = false; |
| 406 | job_unlock(); |
| 407 | qemu_coroutine_yield(); |
| 408 | |
| 409 | /* Set by job_enter_cond() before re-entering the coroutine. */ |
| 410 | assert(job->busy); |
| 411 | } |
| 412 | |
| 413 | void coroutine_fn job_pause_point(Job *job) |
| 414 | { |
| 415 | assert(job && job_started(job)); |
| 416 | |
| 417 | if (!job_should_pause(job)) { |
| 418 | return; |
| 419 | } |
| 420 | if (job_is_cancelled(job)) { |
| 421 | return; |
| 422 | } |
| 423 | |
| 424 | if (job->driver->pause) { |
| 425 | job->driver->pause(job); |
| 426 | } |
| 427 | |
| 428 | if (job_should_pause(job) && !job_is_cancelled(job)) { |
| 429 | JobStatus status = job->status; |
| 430 | job_state_transition(job, status == JOB_STATUS_READY |
| 431 | ? JOB_STATUS_STANDBY |
| 432 | : JOB_STATUS_PAUSED); |
| 433 | job->paused = true; |
| 434 | job_do_yield(job, -1); |
| 435 | job->paused = false; |
| 436 | job_state_transition(job, status); |
| 437 | } |
| 438 | |
| 439 | if (job->driver->resume) { |
| 440 | job->driver->resume(job); |
| 441 | } |
| 442 | } |
| 443 | |
Kevin Wolf | 5d43e86 | 2018-04-18 16:32:20 +0200 | [diff] [blame] | 444 | void coroutine_fn job_sleep_ns(Job *job, int64_t ns) |
| 445 | { |
| 446 | assert(job->busy); |
| 447 | |
| 448 | /* Check cancellation *before* setting busy = false, too! */ |
| 449 | if (job_is_cancelled(job)) { |
| 450 | return; |
| 451 | } |
| 452 | |
| 453 | if (!job_should_pause(job)) { |
| 454 | job_do_yield(job, qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + ns); |
| 455 | } |
| 456 | |
| 457 | job_pause_point(job); |
| 458 | } |
| 459 | |
Kevin Wolf | b69f777 | 2018-04-20 17:00:29 +0200 | [diff] [blame] | 460 | void job_drain(Job *job) |
| 461 | { |
| 462 | /* If job is !busy this kicks it into the next pause point. */ |
| 463 | job_enter(job); |
| 464 | |
| 465 | if (job->driver->drain) { |
| 466 | job->driver->drain(job); |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | |
Kevin Wolf | da01ff7 | 2018-04-13 17:31:02 +0200 | [diff] [blame] | 471 | /** |
| 472 | * All jobs must allow a pause point before entering their job proper. This |
| 473 | * ensures that jobs can be paused prior to being started, then resumed later. |
| 474 | */ |
| 475 | static void coroutine_fn job_co_entry(void *opaque) |
| 476 | { |
| 477 | Job *job = opaque; |
| 478 | |
| 479 | assert(job && job->driver && job->driver->start); |
| 480 | job_pause_point(job); |
| 481 | job->driver->start(job); |
| 482 | } |
| 483 | |
| 484 | |
| 485 | void job_start(Job *job) |
| 486 | { |
| 487 | assert(job && !job_started(job) && job->paused && |
| 488 | job->driver && job->driver->start); |
| 489 | job->co = qemu_coroutine_create(job_co_entry, job); |
| 490 | job->pause_count--; |
| 491 | job->busy = true; |
| 492 | job->paused = false; |
| 493 | job_state_transition(job, JOB_STATUS_RUNNING); |
| 494 | aio_co_enter(job->aio_context, job->co); |
| 495 | } |
| 496 | |
Kevin Wolf | b15de82 | 2018-04-18 17:10:26 +0200 | [diff] [blame] | 497 | /* Assumes the block_job_mutex is held */ |
| 498 | static bool job_timer_not_pending(Job *job) |
| 499 | { |
| 500 | return !timer_pending(&job->sleep_timer); |
| 501 | } |
| 502 | |
| 503 | void job_pause(Job *job) |
| 504 | { |
| 505 | job->pause_count++; |
| 506 | } |
| 507 | |
| 508 | void job_resume(Job *job) |
| 509 | { |
| 510 | assert(job->pause_count > 0); |
| 511 | job->pause_count--; |
| 512 | if (job->pause_count) { |
| 513 | return; |
| 514 | } |
| 515 | |
| 516 | /* kick only if no timer is pending */ |
| 517 | job_enter_cond(job, job_timer_not_pending); |
| 518 | } |
| 519 | |
| 520 | void job_user_pause(Job *job, Error **errp) |
| 521 | { |
| 522 | if (job_apply_verb(job, JOB_VERB_PAUSE, errp)) { |
| 523 | return; |
| 524 | } |
| 525 | if (job->user_paused) { |
| 526 | error_setg(errp, "Job is already paused"); |
| 527 | return; |
| 528 | } |
| 529 | job->user_paused = true; |
| 530 | job_pause(job); |
| 531 | } |
| 532 | |
| 533 | bool job_user_paused(Job *job) |
| 534 | { |
| 535 | return job->user_paused; |
| 536 | } |
| 537 | |
| 538 | void job_user_resume(Job *job, Error **errp) |
| 539 | { |
| 540 | assert(job); |
| 541 | if (!job->user_paused || job->pause_count <= 0) { |
| 542 | error_setg(errp, "Can't resume a job that was not paused"); |
| 543 | return; |
| 544 | } |
| 545 | if (job_apply_verb(job, JOB_VERB_RESUME, errp)) { |
| 546 | return; |
| 547 | } |
| 548 | if (job->driver->user_resume) { |
| 549 | job->driver->user_resume(job); |
| 550 | } |
| 551 | job->user_paused = false; |
| 552 | job_resume(job); |
| 553 | } |
| 554 | |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 555 | void job_do_dismiss(Job *job) |
| 556 | { |
| 557 | assert(job); |
| 558 | job->busy = false; |
| 559 | job->paused = false; |
| 560 | job->deferred_to_main_loop = true; |
| 561 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 562 | job_txn_del_job(job); |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 563 | |
| 564 | job_state_transition(job, JOB_STATUS_NULL); |
| 565 | job_unref(job); |
| 566 | } |
| 567 | |
| 568 | void job_early_fail(Job *job) |
| 569 | { |
| 570 | assert(job->status == JOB_STATUS_CREATED); |
| 571 | job_do_dismiss(job); |
| 572 | } |
| 573 | |
| 574 | static void job_conclude(Job *job) |
| 575 | { |
| 576 | job_state_transition(job, JOB_STATUS_CONCLUDED); |
| 577 | if (job->auto_dismiss || !job_started(job)) { |
| 578 | job_do_dismiss(job); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | void job_update_rc(Job *job) |
| 583 | { |
| 584 | if (!job->ret && job_is_cancelled(job)) { |
| 585 | job->ret = -ECANCELED; |
| 586 | } |
| 587 | if (job->ret) { |
| 588 | job_state_transition(job, JOB_STATUS_ABORTING); |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | static void job_commit(Job *job) |
| 593 | { |
| 594 | assert(!job->ret); |
| 595 | if (job->driver->commit) { |
| 596 | job->driver->commit(job); |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | static void job_abort(Job *job) |
| 601 | { |
| 602 | assert(job->ret); |
| 603 | if (job->driver->abort) { |
| 604 | job->driver->abort(job); |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | static void job_clean(Job *job) |
| 609 | { |
| 610 | if (job->driver->clean) { |
| 611 | job->driver->clean(job); |
| 612 | } |
| 613 | } |
| 614 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 615 | static int job_finalize_single(Job *job) |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 616 | { |
| 617 | assert(job_is_completed(job)); |
| 618 | |
| 619 | /* Ensure abort is called for late-transactional failures */ |
| 620 | job_update_rc(job); |
| 621 | |
| 622 | if (!job->ret) { |
| 623 | job_commit(job); |
| 624 | } else { |
| 625 | job_abort(job); |
| 626 | } |
| 627 | job_clean(job); |
| 628 | |
| 629 | if (job->cb) { |
| 630 | job->cb(job->opaque, job->ret); |
| 631 | } |
| 632 | |
| 633 | /* Emit events only if we actually started */ |
| 634 | if (job_started(job)) { |
| 635 | if (job_is_cancelled(job)) { |
| 636 | job_event_cancelled(job); |
| 637 | } else { |
| 638 | job_event_completed(job); |
| 639 | } |
| 640 | } |
| 641 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 642 | job_txn_del_job(job); |
Kevin Wolf | 4ad3518 | 2018-04-19 17:30:16 +0200 | [diff] [blame] | 643 | job_conclude(job); |
| 644 | return 0; |
| 645 | } |
| 646 | |
Kevin Wolf | 7eaa8fb | 2018-04-23 16:06:26 +0200 | [diff] [blame^] | 647 | void job_cancel_async(Job *job, bool force) |
| 648 | { |
| 649 | if (job->user_paused) { |
| 650 | /* Do not call job_enter here, the caller will handle it. */ |
| 651 | job->user_paused = false; |
| 652 | if (job->driver->user_resume) { |
| 653 | job->driver->user_resume(job); |
| 654 | } |
| 655 | assert(job->pause_count > 0); |
| 656 | job->pause_count--; |
| 657 | } |
| 658 | job->cancelled = true; |
| 659 | /* To prevent 'force == false' overriding a previous 'force == true' */ |
| 660 | job->force_cancel |= force; |
| 661 | } |
| 662 | |
| 663 | void job_completed_txn_abort(Job *job) |
| 664 | { |
| 665 | AioContext *ctx; |
| 666 | JobTxn *txn = job->txn; |
| 667 | Job *other_job; |
| 668 | |
| 669 | if (txn->aborting) { |
| 670 | /* |
| 671 | * We are cancelled by another job, which will handle everything. |
| 672 | */ |
| 673 | return; |
| 674 | } |
| 675 | txn->aborting = true; |
| 676 | job_txn_ref(txn); |
| 677 | |
| 678 | /* We are the first failed job. Cancel other jobs. */ |
| 679 | QLIST_FOREACH(other_job, &txn->jobs, txn_list) { |
| 680 | ctx = other_job->aio_context; |
| 681 | aio_context_acquire(ctx); |
| 682 | } |
| 683 | |
| 684 | /* Other jobs are effectively cancelled by us, set the status for |
| 685 | * them; this job, however, may or may not be cancelled, depending |
| 686 | * on the caller, so leave it. */ |
| 687 | QLIST_FOREACH(other_job, &txn->jobs, txn_list) { |
| 688 | if (other_job != job) { |
| 689 | job_cancel_async(other_job, false); |
| 690 | } |
| 691 | } |
| 692 | while (!QLIST_EMPTY(&txn->jobs)) { |
| 693 | other_job = QLIST_FIRST(&txn->jobs); |
| 694 | ctx = other_job->aio_context; |
| 695 | if (!job_is_completed(other_job)) { |
| 696 | assert(job_is_cancelled(other_job)); |
| 697 | job_finish_sync(other_job, NULL, NULL); |
| 698 | } |
| 699 | job_finalize_single(other_job); |
| 700 | aio_context_release(ctx); |
| 701 | } |
| 702 | |
| 703 | job_txn_unref(txn); |
| 704 | } |
| 705 | |
| 706 | static int job_prepare(Job *job) |
| 707 | { |
| 708 | if (job->ret == 0 && job->driver->prepare) { |
| 709 | job->ret = job->driver->prepare(job); |
| 710 | } |
| 711 | return job->ret; |
| 712 | } |
| 713 | |
| 714 | static int job_needs_finalize(Job *job) |
| 715 | { |
| 716 | return !job->auto_finalize; |
| 717 | } |
| 718 | |
| 719 | static void job_do_finalize(Job *job) |
| 720 | { |
| 721 | int rc; |
| 722 | assert(job && job->txn); |
| 723 | |
| 724 | /* prepare the transaction to complete */ |
| 725 | rc = job_txn_apply(job->txn, job_prepare, true); |
| 726 | if (rc) { |
| 727 | job_completed_txn_abort(job); |
| 728 | } else { |
| 729 | job_txn_apply(job->txn, job_finalize_single, true); |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | void job_finalize(Job *job, Error **errp) |
| 734 | { |
| 735 | assert(job && job->id); |
| 736 | if (job_apply_verb(job, JOB_VERB_FINALIZE, errp)) { |
| 737 | return; |
| 738 | } |
| 739 | job_do_finalize(job); |
| 740 | } |
| 741 | |
| 742 | static int job_transition_to_pending(Job *job) |
| 743 | { |
| 744 | job_state_transition(job, JOB_STATUS_PENDING); |
| 745 | if (!job->auto_finalize) { |
| 746 | job_event_pending(job); |
| 747 | } |
| 748 | return 0; |
| 749 | } |
| 750 | |
| 751 | void job_completed_txn_success(Job *job) |
| 752 | { |
| 753 | JobTxn *txn = job->txn; |
| 754 | Job *other_job; |
| 755 | |
| 756 | job_state_transition(job, JOB_STATUS_WAITING); |
| 757 | |
| 758 | /* |
| 759 | * Successful completion, see if there are other running jobs in this |
| 760 | * txn. |
| 761 | */ |
| 762 | QLIST_FOREACH(other_job, &txn->jobs, txn_list) { |
| 763 | if (!job_is_completed(other_job)) { |
| 764 | return; |
| 765 | } |
| 766 | assert(other_job->ret == 0); |
| 767 | } |
| 768 | |
| 769 | job_txn_apply(txn, job_transition_to_pending, false); |
| 770 | |
| 771 | /* If no jobs need manual finalization, automatically do so */ |
| 772 | if (job_txn_apply(txn, job_needs_finalize, false) == 0) { |
| 773 | job_do_finalize(job); |
| 774 | } |
| 775 | } |
| 776 | |
Kevin Wolf | 3453d97 | 2018-04-23 12:24:16 +0200 | [diff] [blame] | 777 | void job_complete(Job *job, Error **errp) |
| 778 | { |
| 779 | /* Should not be reachable via external interface for internal jobs */ |
| 780 | assert(job->id); |
| 781 | if (job_apply_verb(job, JOB_VERB_COMPLETE, errp)) { |
| 782 | return; |
| 783 | } |
| 784 | if (job->pause_count || job_is_cancelled(job) || !job->driver->complete) { |
| 785 | error_setg(errp, "The active block job '%s' cannot be completed", |
| 786 | job->id); |
| 787 | return; |
| 788 | } |
| 789 | |
| 790 | job->driver->complete(job, errp); |
| 791 | } |
| 792 | |
Kevin Wolf | b15de82 | 2018-04-18 17:10:26 +0200 | [diff] [blame] | 793 | |
Kevin Wolf | 1908a55 | 2018-04-17 16:41:17 +0200 | [diff] [blame] | 794 | typedef struct { |
| 795 | Job *job; |
| 796 | JobDeferToMainLoopFn *fn; |
| 797 | void *opaque; |
| 798 | } JobDeferToMainLoopData; |
| 799 | |
| 800 | static void job_defer_to_main_loop_bh(void *opaque) |
| 801 | { |
| 802 | JobDeferToMainLoopData *data = opaque; |
| 803 | Job *job = data->job; |
| 804 | AioContext *aio_context = job->aio_context; |
| 805 | |
| 806 | aio_context_acquire(aio_context); |
| 807 | data->fn(data->job, data->opaque); |
| 808 | aio_context_release(aio_context); |
| 809 | |
| 810 | g_free(data); |
| 811 | } |
| 812 | |
| 813 | void job_defer_to_main_loop(Job *job, JobDeferToMainLoopFn *fn, void *opaque) |
| 814 | { |
| 815 | JobDeferToMainLoopData *data = g_malloc(sizeof(*data)); |
| 816 | data->job = job; |
| 817 | data->fn = fn; |
| 818 | data->opaque = opaque; |
| 819 | job->deferred_to_main_loop = true; |
| 820 | |
| 821 | aio_bh_schedule_oneshot(qemu_get_aio_context(), |
| 822 | job_defer_to_main_loop_bh, data); |
| 823 | } |
Kevin Wolf | 6a74c07 | 2018-04-20 15:33:57 +0200 | [diff] [blame] | 824 | |
| 825 | int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp) |
| 826 | { |
| 827 | Error *local_err = NULL; |
| 828 | int ret; |
| 829 | |
| 830 | job_ref(job); |
| 831 | |
| 832 | if (finish) { |
| 833 | finish(job, &local_err); |
| 834 | } |
| 835 | if (local_err) { |
| 836 | error_propagate(errp, local_err); |
| 837 | job_unref(job); |
| 838 | return -EBUSY; |
| 839 | } |
| 840 | /* job_drain calls job_enter, and it should be enough to induce progress |
| 841 | * until the job completes or moves to the main thread. */ |
| 842 | while (!job->deferred_to_main_loop && !job_is_completed(job)) { |
| 843 | job_drain(job); |
| 844 | } |
| 845 | while (!job_is_completed(job)) { |
| 846 | aio_poll(qemu_get_aio_context(), true); |
| 847 | } |
| 848 | ret = (job_is_cancelled(job) && job->ret == 0) ? -ECANCELED : job->ret; |
| 849 | job_unref(job); |
| 850 | return ret; |
| 851 | } |