xref: /linux/drivers/md/dm-rq.c (revision baaa68a9796ef2cadfe5caaf4c730412eda0f31c)
1 /*
2  * Copyright (C) 2016 Red Hat, Inc. All rights reserved.
3  *
4  * This file is released under the GPL.
5  */
6 
7 #include "dm-core.h"
8 #include "dm-rq.h"
9 
10 #include <linux/blk-mq.h>
11 
12 #define DM_MSG_PREFIX "core-rq"
13 
14 /*
15  * One of these is allocated per request.
16  */
17 struct dm_rq_target_io {
18 	struct mapped_device *md;
19 	struct dm_target *ti;
20 	struct request *orig, *clone;
21 	struct kthread_work work;
22 	blk_status_t error;
23 	union map_info info;
24 	struct dm_stats_aux stats_aux;
25 	unsigned long duration_jiffies;
26 	unsigned n_sectors;
27 	unsigned completed;
28 };
29 
30 #define DM_MQ_NR_HW_QUEUES 1
31 #define DM_MQ_QUEUE_DEPTH 2048
32 static unsigned dm_mq_nr_hw_queues = DM_MQ_NR_HW_QUEUES;
33 static unsigned dm_mq_queue_depth = DM_MQ_QUEUE_DEPTH;
34 
35 /*
36  * Request-based DM's mempools' reserved IOs set by the user.
37  */
38 #define RESERVED_REQUEST_BASED_IOS	256
39 static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
40 
41 unsigned dm_get_reserved_rq_based_ios(void)
42 {
43 	return __dm_get_module_param(&reserved_rq_based_ios,
44 				     RESERVED_REQUEST_BASED_IOS, DM_RESERVED_MAX_IOS);
45 }
46 EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
47 
48 static unsigned dm_get_blk_mq_nr_hw_queues(void)
49 {
50 	return __dm_get_module_param(&dm_mq_nr_hw_queues, 1, 32);
51 }
52 
53 static unsigned dm_get_blk_mq_queue_depth(void)
54 {
55 	return __dm_get_module_param(&dm_mq_queue_depth,
56 				     DM_MQ_QUEUE_DEPTH, BLK_MQ_MAX_DEPTH);
57 }
58 
59 int dm_request_based(struct mapped_device *md)
60 {
61 	return queue_is_mq(md->queue);
62 }
63 
64 void dm_start_queue(struct request_queue *q)
65 {
66 	blk_mq_unquiesce_queue(q);
67 	blk_mq_kick_requeue_list(q);
68 }
69 
70 void dm_stop_queue(struct request_queue *q)
71 {
72 	blk_mq_quiesce_queue(q);
73 }
74 
75 /*
76  * Partial completion handling for request-based dm
77  */
78 static void end_clone_bio(struct bio *clone)
79 {
80 	struct dm_rq_clone_bio_info *info =
81 		container_of(clone, struct dm_rq_clone_bio_info, clone);
82 	struct dm_rq_target_io *tio = info->tio;
83 	unsigned int nr_bytes = info->orig->bi_iter.bi_size;
84 	blk_status_t error = clone->bi_status;
85 	bool is_last = !clone->bi_next;
86 
87 	bio_put(clone);
88 
89 	if (tio->error)
90 		/*
91 		 * An error has already been detected on the request.
92 		 * Once error occurred, just let clone->end_io() handle
93 		 * the remainder.
94 		 */
95 		return;
96 	else if (error) {
97 		/*
98 		 * Don't notice the error to the upper layer yet.
99 		 * The error handling decision is made by the target driver,
100 		 * when the request is completed.
101 		 */
102 		tio->error = error;
103 		goto exit;
104 	}
105 
106 	/*
107 	 * I/O for the bio successfully completed.
108 	 * Notice the data completion to the upper layer.
109 	 */
110 	tio->completed += nr_bytes;
111 
112 	/*
113 	 * Update the original request.
114 	 * Do not use blk_mq_end_request() here, because it may complete
115 	 * the original request before the clone, and break the ordering.
116 	 */
117 	if (is_last)
118  exit:
119 		blk_update_request(tio->orig, BLK_STS_OK, tio->completed);
120 }
121 
122 static struct dm_rq_target_io *tio_from_request(struct request *rq)
123 {
124 	return blk_mq_rq_to_pdu(rq);
125 }
126 
127 static void rq_end_stats(struct mapped_device *md, struct request *orig)
128 {
129 	if (unlikely(dm_stats_used(&md->stats))) {
130 		struct dm_rq_target_io *tio = tio_from_request(orig);
131 		tio->duration_jiffies = jiffies - tio->duration_jiffies;
132 		dm_stats_account_io(&md->stats, rq_data_dir(orig),
133 				    blk_rq_pos(orig), tio->n_sectors, true,
134 				    tio->duration_jiffies, &tio->stats_aux);
135 	}
136 }
137 
138 /*
139  * Don't touch any member of the md after calling this function because
140  * the md may be freed in dm_put() at the end of this function.
141  * Or do dm_get() before calling this function and dm_put() later.
142  */
143 static void rq_completed(struct mapped_device *md)
144 {
145 	/*
146 	 * dm_put() must be at the end of this function. See the comment above
147 	 */
148 	dm_put(md);
149 }
150 
151 /*
152  * Complete the clone and the original request.
153  * Must be called without clone's queue lock held,
154  * see end_clone_request() for more details.
155  */
156 static void dm_end_request(struct request *clone, blk_status_t error)
157 {
158 	struct dm_rq_target_io *tio = clone->end_io_data;
159 	struct mapped_device *md = tio->md;
160 	struct request *rq = tio->orig;
161 
162 	blk_rq_unprep_clone(clone);
163 	tio->ti->type->release_clone_rq(clone, NULL);
164 
165 	rq_end_stats(md, rq);
166 	blk_mq_end_request(rq, error);
167 	rq_completed(md);
168 }
169 
170 static void __dm_mq_kick_requeue_list(struct request_queue *q, unsigned long msecs)
171 {
172 	blk_mq_delay_kick_requeue_list(q, msecs);
173 }
174 
175 void dm_mq_kick_requeue_list(struct mapped_device *md)
176 {
177 	__dm_mq_kick_requeue_list(md->queue, 0);
178 }
179 EXPORT_SYMBOL(dm_mq_kick_requeue_list);
180 
181 static void dm_mq_delay_requeue_request(struct request *rq, unsigned long msecs)
182 {
183 	blk_mq_requeue_request(rq, false);
184 	__dm_mq_kick_requeue_list(rq->q, msecs);
185 }
186 
187 static void dm_requeue_original_request(struct dm_rq_target_io *tio, bool delay_requeue)
188 {
189 	struct mapped_device *md = tio->md;
190 	struct request *rq = tio->orig;
191 	unsigned long delay_ms = delay_requeue ? 100 : 0;
192 
193 	rq_end_stats(md, rq);
194 	if (tio->clone) {
195 		blk_rq_unprep_clone(tio->clone);
196 		tio->ti->type->release_clone_rq(tio->clone, NULL);
197 	}
198 
199 	dm_mq_delay_requeue_request(rq, delay_ms);
200 	rq_completed(md);
201 }
202 
203 static void dm_done(struct request *clone, blk_status_t error, bool mapped)
204 {
205 	int r = DM_ENDIO_DONE;
206 	struct dm_rq_target_io *tio = clone->end_io_data;
207 	dm_request_endio_fn rq_end_io = NULL;
208 
209 	if (tio->ti) {
210 		rq_end_io = tio->ti->type->rq_end_io;
211 
212 		if (mapped && rq_end_io)
213 			r = rq_end_io(tio->ti, clone, error, &tio->info);
214 	}
215 
216 	if (unlikely(error == BLK_STS_TARGET)) {
217 		if (req_op(clone) == REQ_OP_DISCARD &&
218 		    !clone->q->limits.max_discard_sectors)
219 			disable_discard(tio->md);
220 		else if (req_op(clone) == REQ_OP_WRITE_SAME &&
221 			 !clone->q->limits.max_write_same_sectors)
222 			disable_write_same(tio->md);
223 		else if (req_op(clone) == REQ_OP_WRITE_ZEROES &&
224 			 !clone->q->limits.max_write_zeroes_sectors)
225 			disable_write_zeroes(tio->md);
226 	}
227 
228 	switch (r) {
229 	case DM_ENDIO_DONE:
230 		/* The target wants to complete the I/O */
231 		dm_end_request(clone, error);
232 		break;
233 	case DM_ENDIO_INCOMPLETE:
234 		/* The target will handle the I/O */
235 		return;
236 	case DM_ENDIO_REQUEUE:
237 		/* The target wants to requeue the I/O */
238 		dm_requeue_original_request(tio, false);
239 		break;
240 	case DM_ENDIO_DELAY_REQUEUE:
241 		/* The target wants to requeue the I/O after a delay */
242 		dm_requeue_original_request(tio, true);
243 		break;
244 	default:
245 		DMWARN("unimplemented target endio return value: %d", r);
246 		BUG();
247 	}
248 }
249 
250 /*
251  * Request completion handler for request-based dm
252  */
253 static void dm_softirq_done(struct request *rq)
254 {
255 	bool mapped = true;
256 	struct dm_rq_target_io *tio = tio_from_request(rq);
257 	struct request *clone = tio->clone;
258 
259 	if (!clone) {
260 		struct mapped_device *md = tio->md;
261 
262 		rq_end_stats(md, rq);
263 		blk_mq_end_request(rq, tio->error);
264 		rq_completed(md);
265 		return;
266 	}
267 
268 	if (rq->rq_flags & RQF_FAILED)
269 		mapped = false;
270 
271 	dm_done(clone, tio->error, mapped);
272 }
273 
274 /*
275  * Complete the clone and the original request with the error status
276  * through softirq context.
277  */
278 static void dm_complete_request(struct request *rq, blk_status_t error)
279 {
280 	struct dm_rq_target_io *tio = tio_from_request(rq);
281 
282 	tio->error = error;
283 	if (likely(!blk_should_fake_timeout(rq->q)))
284 		blk_mq_complete_request(rq);
285 }
286 
287 /*
288  * Complete the not-mapped clone and the original request with the error status
289  * through softirq context.
290  * Target's rq_end_io() function isn't called.
291  * This may be used when the target's clone_and_map_rq() function fails.
292  */
293 static void dm_kill_unmapped_request(struct request *rq, blk_status_t error)
294 {
295 	rq->rq_flags |= RQF_FAILED;
296 	dm_complete_request(rq, error);
297 }
298 
299 static void end_clone_request(struct request *clone, blk_status_t error)
300 {
301 	struct dm_rq_target_io *tio = clone->end_io_data;
302 
303 	dm_complete_request(tio->orig, error);
304 }
305 
306 static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
307 				 void *data)
308 {
309 	struct dm_rq_target_io *tio = data;
310 	struct dm_rq_clone_bio_info *info =
311 		container_of(bio, struct dm_rq_clone_bio_info, clone);
312 
313 	info->orig = bio_orig;
314 	info->tio = tio;
315 	bio->bi_end_io = end_clone_bio;
316 
317 	return 0;
318 }
319 
320 static int setup_clone(struct request *clone, struct request *rq,
321 		       struct dm_rq_target_io *tio, gfp_t gfp_mask)
322 {
323 	int r;
324 
325 	r = blk_rq_prep_clone(clone, rq, &tio->md->bs, gfp_mask,
326 			      dm_rq_bio_constructor, tio);
327 	if (r)
328 		return r;
329 
330 	clone->end_io = end_clone_request;
331 	clone->end_io_data = tio;
332 
333 	tio->clone = clone;
334 
335 	return 0;
336 }
337 
338 static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
339 		     struct mapped_device *md)
340 {
341 	tio->md = md;
342 	tio->ti = NULL;
343 	tio->clone = NULL;
344 	tio->orig = rq;
345 	tio->error = 0;
346 	tio->completed = 0;
347 	/*
348 	 * Avoid initializing info for blk-mq; it passes
349 	 * target-specific data through info.ptr
350 	 * (see: dm_mq_init_request)
351 	 */
352 	if (!md->init_tio_pdu)
353 		memset(&tio->info, 0, sizeof(tio->info));
354 }
355 
356 /*
357  * Returns:
358  * DM_MAPIO_*       : the request has been processed as indicated
359  * DM_MAPIO_REQUEUE : the original request needs to be immediately requeued
360  * < 0              : the request was completed due to failure
361  */
362 static int map_request(struct dm_rq_target_io *tio)
363 {
364 	int r;
365 	struct dm_target *ti = tio->ti;
366 	struct mapped_device *md = tio->md;
367 	struct request *rq = tio->orig;
368 	struct request *clone = NULL;
369 	blk_status_t ret;
370 
371 	r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
372 	switch (r) {
373 	case DM_MAPIO_SUBMITTED:
374 		/* The target has taken the I/O to submit by itself later */
375 		break;
376 	case DM_MAPIO_REMAPPED:
377 		if (setup_clone(clone, rq, tio, GFP_ATOMIC)) {
378 			/* -ENOMEM */
379 			ti->type->release_clone_rq(clone, &tio->info);
380 			return DM_MAPIO_REQUEUE;
381 		}
382 
383 		/* The target has remapped the I/O so dispatch it */
384 		trace_block_rq_remap(clone, disk_devt(dm_disk(md)),
385 				     blk_rq_pos(rq));
386 		ret = blk_insert_cloned_request(clone);
387 		switch (ret) {
388 		case BLK_STS_OK:
389 			break;
390 		case BLK_STS_RESOURCE:
391 		case BLK_STS_DEV_RESOURCE:
392 			blk_rq_unprep_clone(clone);
393 			blk_mq_cleanup_rq(clone);
394 			tio->ti->type->release_clone_rq(clone, &tio->info);
395 			tio->clone = NULL;
396 			return DM_MAPIO_REQUEUE;
397 		default:
398 			/* must complete clone in terms of original request */
399 			dm_complete_request(rq, ret);
400 		}
401 		break;
402 	case DM_MAPIO_REQUEUE:
403 		/* The target wants to requeue the I/O */
404 		break;
405 	case DM_MAPIO_DELAY_REQUEUE:
406 		/* The target wants to requeue the I/O after a delay */
407 		dm_requeue_original_request(tio, true);
408 		break;
409 	case DM_MAPIO_KILL:
410 		/* The target wants to complete the I/O */
411 		dm_kill_unmapped_request(rq, BLK_STS_IOERR);
412 		break;
413 	default:
414 		DMWARN("unimplemented target map return value: %d", r);
415 		BUG();
416 	}
417 
418 	return r;
419 }
420 
421 /* DEPRECATED: previously used for request-based merge heuristic in dm_request_fn() */
422 ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
423 {
424 	return sprintf(buf, "%u\n", 0);
425 }
426 
427 ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
428 						     const char *buf, size_t count)
429 {
430 	return count;
431 }
432 
433 static void dm_start_request(struct mapped_device *md, struct request *orig)
434 {
435 	blk_mq_start_request(orig);
436 
437 	if (unlikely(dm_stats_used(&md->stats))) {
438 		struct dm_rq_target_io *tio = tio_from_request(orig);
439 		tio->duration_jiffies = jiffies;
440 		tio->n_sectors = blk_rq_sectors(orig);
441 		dm_stats_account_io(&md->stats, rq_data_dir(orig),
442 				    blk_rq_pos(orig), tio->n_sectors, false, 0,
443 				    &tio->stats_aux);
444 	}
445 
446 	/*
447 	 * Hold the md reference here for the in-flight I/O.
448 	 * We can't rely on the reference count by device opener,
449 	 * because the device may be closed during the request completion
450 	 * when all bios are completed.
451 	 * See the comment in rq_completed() too.
452 	 */
453 	dm_get(md);
454 }
455 
456 static int dm_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
457 			      unsigned int hctx_idx, unsigned int numa_node)
458 {
459 	struct mapped_device *md = set->driver_data;
460 	struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
461 
462 	/*
463 	 * Must initialize md member of tio, otherwise it won't
464 	 * be available in dm_mq_queue_rq.
465 	 */
466 	tio->md = md;
467 
468 	if (md->init_tio_pdu) {
469 		/* target-specific per-io data is immediately after the tio */
470 		tio->info.ptr = tio + 1;
471 	}
472 
473 	return 0;
474 }
475 
476 static blk_status_t dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
477 			  const struct blk_mq_queue_data *bd)
478 {
479 	struct request *rq = bd->rq;
480 	struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
481 	struct mapped_device *md = tio->md;
482 	struct dm_target *ti = md->immutable_target;
483 
484 	/*
485 	 * blk-mq's unquiesce may come from outside events, such as
486 	 * elevator switch, updating nr_requests or others, and request may
487 	 * come during suspend, so simply ask for blk-mq to requeue it.
488 	 */
489 	if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)))
490 		return BLK_STS_RESOURCE;
491 
492 	if (unlikely(!ti)) {
493 		int srcu_idx;
494 		struct dm_table *map = dm_get_live_table(md, &srcu_idx);
495 
496 		ti = dm_table_find_target(map, 0);
497 		dm_put_live_table(md, srcu_idx);
498 	}
499 
500 	if (ti->type->busy && ti->type->busy(ti))
501 		return BLK_STS_RESOURCE;
502 
503 	dm_start_request(md, rq);
504 
505 	/* Init tio using md established in .init_request */
506 	init_tio(tio, rq, md);
507 
508 	/*
509 	 * Establish tio->ti before calling map_request().
510 	 */
511 	tio->ti = ti;
512 
513 	/* Direct call is fine since .queue_rq allows allocations */
514 	if (map_request(tio) == DM_MAPIO_REQUEUE) {
515 		/* Undo dm_start_request() before requeuing */
516 		rq_end_stats(md, rq);
517 		rq_completed(md);
518 		return BLK_STS_RESOURCE;
519 	}
520 
521 	return BLK_STS_OK;
522 }
523 
524 static const struct blk_mq_ops dm_mq_ops = {
525 	.queue_rq = dm_mq_queue_rq,
526 	.complete = dm_softirq_done,
527 	.init_request = dm_mq_init_request,
528 };
529 
530 int dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t)
531 {
532 	struct dm_target *immutable_tgt;
533 	int err;
534 
535 	md->tag_set = kzalloc_node(sizeof(struct blk_mq_tag_set), GFP_KERNEL, md->numa_node_id);
536 	if (!md->tag_set)
537 		return -ENOMEM;
538 
539 	md->tag_set->ops = &dm_mq_ops;
540 	md->tag_set->queue_depth = dm_get_blk_mq_queue_depth();
541 	md->tag_set->numa_node = md->numa_node_id;
542 	md->tag_set->flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_STACKING;
543 	md->tag_set->nr_hw_queues = dm_get_blk_mq_nr_hw_queues();
544 	md->tag_set->driver_data = md;
545 
546 	md->tag_set->cmd_size = sizeof(struct dm_rq_target_io);
547 	immutable_tgt = dm_table_get_immutable_target(t);
548 	if (immutable_tgt && immutable_tgt->per_io_data_size) {
549 		/* any target-specific per-io data is immediately after the tio */
550 		md->tag_set->cmd_size += immutable_tgt->per_io_data_size;
551 		md->init_tio_pdu = true;
552 	}
553 
554 	err = blk_mq_alloc_tag_set(md->tag_set);
555 	if (err)
556 		goto out_kfree_tag_set;
557 
558 	err = blk_mq_init_allocated_queue(md->tag_set, md->queue);
559 	if (err)
560 		goto out_tag_set;
561 	return 0;
562 
563 out_tag_set:
564 	blk_mq_free_tag_set(md->tag_set);
565 out_kfree_tag_set:
566 	kfree(md->tag_set);
567 	md->tag_set = NULL;
568 
569 	return err;
570 }
571 
572 void dm_mq_cleanup_mapped_device(struct mapped_device *md)
573 {
574 	if (md->tag_set) {
575 		blk_mq_free_tag_set(md->tag_set);
576 		kfree(md->tag_set);
577 		md->tag_set = NULL;
578 	}
579 }
580 
581 module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
582 MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
583 
584 /* Unused, but preserved for userspace compatibility */
585 static bool use_blk_mq = true;
586 module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
587 MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
588 
589 module_param(dm_mq_nr_hw_queues, uint, S_IRUGO | S_IWUSR);
590 MODULE_PARM_DESC(dm_mq_nr_hw_queues, "Number of hardware queues for request-based dm-mq devices");
591 
592 module_param(dm_mq_queue_depth, uint, S_IRUGO | S_IWUSR);
593 MODULE_PARM_DESC(dm_mq_queue_depth, "Queue depth for request-based dm-mq devices");
594