1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2002 Sistina Software (UK) Limited.
4 * Copyright (C) 2006 Red Hat GmbH
6 * This file is released under the GPL.
8 * Kcopyd provides a simple interface for copying an area of one
9 * block-device to one or more other block-devices, with an asynchronous
10 * completion notification.
13 #include <linux/types.h>
14 #include <linux/atomic.h>
15 #include <linux/blkdev.h>
17 #include <linux/init.h>
18 #include <linux/list.h>
19 #include <linux/mempool.h>
20 #include <linux/module.h>
21 #include <linux/pagemap.h>
22 #include <linux/slab.h>
23 #include <linux/vmalloc.h>
24 #include <linux/workqueue.h>
25 #include <linux/mutex.h>
26 #include <linux/delay.h>
27 #include <linux/device-mapper.h>
28 #include <linux/dm-kcopyd.h>
35 #define DEFAULT_SUB_JOB_SIZE_KB 512
36 #define MAX_SUB_JOB_SIZE_KB 1024
38 static unsigned int kcopyd_subjob_size_kb = DEFAULT_SUB_JOB_SIZE_KB;
40 module_param(kcopyd_subjob_size_kb, uint, 0644);
41 MODULE_PARM_DESC(kcopyd_subjob_size_kb, "Sub-job size for dm-kcopyd clients");
43 static unsigned int dm_get_kcopyd_subjob_size(void)
45 unsigned int sub_job_size_kb;
47 sub_job_size_kb = __dm_get_module_param(&kcopyd_subjob_size_kb,
48 DEFAULT_SUB_JOB_SIZE_KB,
51 return sub_job_size_kb << 1;
55 *----------------------------------------------------------------
56 * Each kcopyd client has its own little pool of preallocated
57 * pages for kcopyd io.
58 *---------------------------------------------------------------
60 struct dm_kcopyd_client {
61 struct page_list *pages;
62 unsigned int nr_reserved_pages;
63 unsigned int nr_free_pages;
64 unsigned int sub_job_size;
66 struct dm_io_client *io_client;
68 wait_queue_head_t destroyq;
72 struct workqueue_struct *kcopyd_wq;
73 struct work_struct kcopyd_work;
75 struct dm_kcopyd_throttle *throttle;
80 * We maintain four lists of jobs:
82 * i) jobs waiting for pages
83 * ii) jobs that have pages, and are waiting for the io to be issued.
84 * iii) jobs that don't need to do any IO and just run a callback
85 * iv) jobs that have completed.
87 * All four of these are protected by job_lock.
90 struct list_head callback_jobs;
91 struct list_head complete_jobs;
92 struct list_head io_jobs;
93 struct list_head pages_jobs;
96 static struct page_list zero_page_list;
98 static DEFINE_SPINLOCK(throttle_spinlock);
101 * IO/IDLE accounting slowly decays after (1 << ACCOUNT_INTERVAL_SHIFT) period.
102 * When total_period >= (1 << ACCOUNT_INTERVAL_SHIFT) the counters are divided
105 #define ACCOUNT_INTERVAL_SHIFT SHIFT_HZ
108 * Sleep this number of milliseconds.
110 * The value was decided experimentally.
111 * Smaller values seem to cause an increased copy rate above the limit.
112 * The reason for this is unknown but possibly due to jiffies rounding errors
113 * or read/write cache inside the disk.
115 #define SLEEP_USEC 100000
118 * Maximum number of sleep events. There is a theoretical livelock if more
119 * kcopyd clients do work simultaneously which this limit avoids.
121 #define MAX_SLEEPS 10
123 static void io_job_start(struct dm_kcopyd_throttle *t)
125 unsigned int throttle, now, difference;
132 spin_lock_irq(&throttle_spinlock);
134 throttle = READ_ONCE(t->throttle);
136 if (likely(throttle >= 100))
140 difference = now - t->last_jiffies;
141 t->last_jiffies = now;
143 t->io_period += difference;
144 t->total_period += difference;
147 * Maintain sane values if we got a temporary overflow.
149 if (unlikely(t->io_period > t->total_period))
150 t->io_period = t->total_period;
152 if (unlikely(t->total_period >= (1 << ACCOUNT_INTERVAL_SHIFT))) {
153 int shift = fls(t->total_period >> ACCOUNT_INTERVAL_SHIFT);
155 t->total_period >>= shift;
156 t->io_period >>= shift;
159 skew = t->io_period - throttle * t->total_period / 100;
161 if (unlikely(skew > 0) && slept < MAX_SLEEPS) {
163 spin_unlock_irq(&throttle_spinlock);
171 spin_unlock_irq(&throttle_spinlock);
174 static void io_job_finish(struct dm_kcopyd_throttle *t)
181 spin_lock_irqsave(&throttle_spinlock, flags);
185 if (likely(READ_ONCE(t->throttle) >= 100))
188 if (!t->num_io_jobs) {
189 unsigned int now, difference;
192 difference = now - t->last_jiffies;
193 t->last_jiffies = now;
195 t->io_period += difference;
196 t->total_period += difference;
199 * Maintain sane values if we got a temporary overflow.
201 if (unlikely(t->io_period > t->total_period))
202 t->io_period = t->total_period;
206 spin_unlock_irqrestore(&throttle_spinlock, flags);
210 static void wake(struct dm_kcopyd_client *kc)
212 queue_work(kc->kcopyd_wq, &kc->kcopyd_work);
216 * Obtain one page for the use of kcopyd.
218 static struct page_list *alloc_pl(gfp_t gfp)
220 struct page_list *pl;
222 pl = kmalloc(sizeof(*pl), gfp);
226 pl->page = alloc_page(gfp | __GFP_HIGHMEM);
235 static void free_pl(struct page_list *pl)
237 __free_page(pl->page);
242 * Add the provided pages to a client's free page list, releasing
243 * back to the system any beyond the reserved_pages limit.
245 static void kcopyd_put_pages(struct dm_kcopyd_client *kc, struct page_list *pl)
247 struct page_list *next;
252 if (kc->nr_free_pages >= kc->nr_reserved_pages)
255 pl->next = kc->pages;
264 static int kcopyd_get_pages(struct dm_kcopyd_client *kc,
265 unsigned int nr, struct page_list **pages)
267 struct page_list *pl;
272 pl = alloc_pl(__GFP_NOWARN | __GFP_NORETRY | __GFP_KSWAPD_RECLAIM);
274 /* Use reserved pages */
278 kc->pages = pl->next;
289 kcopyd_put_pages(kc, *pages);
294 * These three functions resize the page pool.
296 static void drop_pages(struct page_list *pl)
298 struct page_list *next;
308 * Allocate and reserve nr_pages for the use of a specific client.
310 static int client_reserve_pages(struct dm_kcopyd_client *kc, unsigned int nr_pages)
313 struct page_list *pl = NULL, *next;
315 for (i = 0; i < nr_pages; i++) {
316 next = alloc_pl(GFP_KERNEL);
326 kc->nr_reserved_pages += nr_pages;
327 kcopyd_put_pages(kc, pl);
332 static void client_free_pages(struct dm_kcopyd_client *kc)
334 BUG_ON(kc->nr_free_pages != kc->nr_reserved_pages);
335 drop_pages(kc->pages);
337 kc->nr_free_pages = kc->nr_reserved_pages = 0;
341 *---------------------------------------------------------------
342 * kcopyd_jobs need to be allocated by the *clients* of kcopyd,
343 * for this reason we use a mempool to prevent the client from
344 * ever having to do io (which could cause a deadlock).
345 *---------------------------------------------------------------
348 struct dm_kcopyd_client *kc;
349 struct list_head list;
353 * Error state of the job.
356 unsigned long write_err;
359 * REQ_OP_READ, REQ_OP_WRITE or REQ_OP_WRITE_ZEROES.
362 struct dm_io_region source;
365 * The destinations for the transfer.
367 unsigned int num_dests;
368 struct dm_io_region dests[DM_KCOPYD_MAX_REGIONS];
370 struct page_list *pages;
373 * Set this to ensure you are notified when the job has
374 * completed. 'context' is for callback to use.
376 dm_kcopyd_notify_fn fn;
380 * These fields are only used if the job has been split
381 * into more manageable parts.
386 sector_t write_offset;
388 struct kcopyd_job *master_job;
391 static struct kmem_cache *_job_cache;
393 int __init dm_kcopyd_init(void)
395 _job_cache = kmem_cache_create("kcopyd_job",
396 sizeof(struct kcopyd_job) * (SPLIT_COUNT + 1),
397 __alignof__(struct kcopyd_job), 0, NULL);
401 zero_page_list.next = &zero_page_list;
402 zero_page_list.page = ZERO_PAGE(0);
407 void dm_kcopyd_exit(void)
409 kmem_cache_destroy(_job_cache);
414 * Functions to push and pop a job onto the head of a given job
417 static struct kcopyd_job *pop_io_job(struct list_head *jobs,
418 struct dm_kcopyd_client *kc)
420 struct kcopyd_job *job;
423 * For I/O jobs, pop any read, any write without sequential write
424 * constraint and sequential writes that are at the right position.
426 list_for_each_entry(job, jobs, list) {
427 if (job->op == REQ_OP_READ ||
428 !(job->flags & BIT(DM_KCOPYD_WRITE_SEQ))) {
429 list_del(&job->list);
433 if (job->write_offset == job->master_job->write_offset) {
434 job->master_job->write_offset += job->source.count;
435 list_del(&job->list);
443 static struct kcopyd_job *pop(struct list_head *jobs,
444 struct dm_kcopyd_client *kc)
446 struct kcopyd_job *job = NULL;
448 spin_lock_irq(&kc->job_lock);
450 if (!list_empty(jobs)) {
451 if (jobs == &kc->io_jobs)
452 job = pop_io_job(jobs, kc);
454 job = list_entry(jobs->next, struct kcopyd_job, list);
455 list_del(&job->list);
458 spin_unlock_irq(&kc->job_lock);
463 static void push(struct list_head *jobs, struct kcopyd_job *job)
466 struct dm_kcopyd_client *kc = job->kc;
468 spin_lock_irqsave(&kc->job_lock, flags);
469 list_add_tail(&job->list, jobs);
470 spin_unlock_irqrestore(&kc->job_lock, flags);
474 static void push_head(struct list_head *jobs, struct kcopyd_job *job)
476 struct dm_kcopyd_client *kc = job->kc;
478 spin_lock_irq(&kc->job_lock);
479 list_add(&job->list, jobs);
480 spin_unlock_irq(&kc->job_lock);
484 * These three functions process 1 item from the corresponding
490 * > 0: can't process yet.
492 static int run_complete_job(struct kcopyd_job *job)
494 void *context = job->context;
495 int read_err = job->read_err;
496 unsigned long write_err = job->write_err;
497 dm_kcopyd_notify_fn fn = job->fn;
498 struct dm_kcopyd_client *kc = job->kc;
500 if (job->pages && job->pages != &zero_page_list)
501 kcopyd_put_pages(kc, job->pages);
503 * If this is the master job, the sub jobs have already
504 * completed so we can free everything.
506 if (job->master_job == job) {
507 mutex_destroy(&job->lock);
508 mempool_free(job, &kc->job_pool);
510 fn(read_err, write_err, context);
512 if (atomic_dec_and_test(&kc->nr_jobs))
513 wake_up(&kc->destroyq);
520 static void complete_io(unsigned long error, void *context)
522 struct kcopyd_job *job = context;
523 struct dm_kcopyd_client *kc = job->kc;
525 io_job_finish(kc->throttle);
528 if (op_is_write(job->op))
529 job->write_err |= error;
533 if (!(job->flags & BIT(DM_KCOPYD_IGNORE_ERROR))) {
534 push(&kc->complete_jobs, job);
540 if (op_is_write(job->op))
541 push(&kc->complete_jobs, job);
544 job->op = REQ_OP_WRITE;
545 push(&kc->io_jobs, job);
552 * Request io on as many buffer heads as we can currently get for
555 static int run_io_job(struct kcopyd_job *job)
558 struct dm_io_request io_req = {
560 .mem.type = DM_IO_PAGE_LIST,
561 .mem.ptr.pl = job->pages,
563 .notify.fn = complete_io,
564 .notify.context = job,
565 .client = job->kc->io_client,
569 * If we need to write sequentially and some reads or writes failed,
570 * no point in continuing.
572 if (job->flags & BIT(DM_KCOPYD_WRITE_SEQ) &&
573 job->master_job->write_err) {
574 job->write_err = job->master_job->write_err;
578 io_job_start(job->kc->throttle);
580 if (job->op == REQ_OP_READ)
581 r = dm_io(&io_req, 1, &job->source, NULL);
583 r = dm_io(&io_req, job->num_dests, job->dests, NULL);
588 static int run_pages_job(struct kcopyd_job *job)
591 unsigned int nr_pages = dm_div_up(job->dests[0].count, PAGE_SIZE >> 9);
593 r = kcopyd_get_pages(job->kc, nr_pages, &job->pages);
595 /* this job is ready for io */
596 push(&job->kc->io_jobs, job);
601 /* can't complete now */
608 * Run through a list for as long as possible. Returns the count
609 * of successful jobs.
611 static int process_jobs(struct list_head *jobs, struct dm_kcopyd_client *kc,
612 int (*fn)(struct kcopyd_job *))
614 struct kcopyd_job *job;
617 while ((job = pop(jobs, kc))) {
622 /* error this rogue job */
623 if (op_is_write(job->op))
624 job->write_err = (unsigned long) -1L;
627 push(&kc->complete_jobs, job);
634 * We couldn't service this job ATM, so
635 * push this job back onto the list.
637 push_head(jobs, job);
648 * kcopyd does this every time it's woken up.
650 static void do_work(struct work_struct *work)
652 struct dm_kcopyd_client *kc = container_of(work,
653 struct dm_kcopyd_client, kcopyd_work);
654 struct blk_plug plug;
657 * The order that these are called is *very* important.
658 * complete jobs can free some pages for pages jobs.
659 * Pages jobs when successful will jump onto the io jobs
660 * list. io jobs call wake when they complete and it all
663 spin_lock_irq(&kc->job_lock);
664 list_splice_tail_init(&kc->callback_jobs, &kc->complete_jobs);
665 spin_unlock_irq(&kc->job_lock);
667 blk_start_plug(&plug);
668 process_jobs(&kc->complete_jobs, kc, run_complete_job);
669 process_jobs(&kc->pages_jobs, kc, run_pages_job);
670 process_jobs(&kc->io_jobs, kc, run_io_job);
671 blk_finish_plug(&plug);
675 * If we are copying a small region we just dispatch a single job
676 * to do the copy, otherwise the io has to be split up into many
679 static void dispatch_job(struct kcopyd_job *job)
681 struct dm_kcopyd_client *kc = job->kc;
683 atomic_inc(&kc->nr_jobs);
684 if (unlikely(!job->source.count))
685 push(&kc->callback_jobs, job);
686 else if (job->pages == &zero_page_list)
687 push(&kc->io_jobs, job);
689 push(&kc->pages_jobs, job);
693 static void segment_complete(int read_err, unsigned long write_err,
696 /* FIXME: tidy this function */
697 sector_t progress = 0;
699 struct kcopyd_job *sub_job = context;
700 struct kcopyd_job *job = sub_job->master_job;
701 struct dm_kcopyd_client *kc = job->kc;
703 mutex_lock(&job->lock);
705 /* update the error */
710 job->write_err |= write_err;
713 * Only dispatch more work if there hasn't been an error.
715 if ((!job->read_err && !job->write_err) ||
716 job->flags & BIT(DM_KCOPYD_IGNORE_ERROR)) {
717 /* get the next chunk of work */
718 progress = job->progress;
719 count = job->source.count - progress;
721 if (count > kc->sub_job_size)
722 count = kc->sub_job_size;
724 job->progress += count;
727 mutex_unlock(&job->lock);
733 sub_job->write_offset = progress;
734 sub_job->source.sector += progress;
735 sub_job->source.count = count;
737 for (i = 0; i < job->num_dests; i++) {
738 sub_job->dests[i].sector += progress;
739 sub_job->dests[i].count = count;
742 sub_job->fn = segment_complete;
743 sub_job->context = sub_job;
744 dispatch_job(sub_job);
746 } else if (atomic_dec_and_test(&job->sub_jobs)) {
749 * Queue the completion callback to the kcopyd thread.
751 * Some callers assume that all the completions are called
752 * from a single thread and don't race with each other.
754 * We must not call the callback directly here because this
755 * code may not be executing in the thread.
757 push(&kc->complete_jobs, job);
763 * Create some sub jobs to share the work between them.
765 static void split_job(struct kcopyd_job *master_job)
769 atomic_inc(&master_job->kc->nr_jobs);
771 atomic_set(&master_job->sub_jobs, SPLIT_COUNT);
772 for (i = 0; i < SPLIT_COUNT; i++) {
773 master_job[i + 1].master_job = master_job;
774 segment_complete(0, 0u, &master_job[i + 1]);
778 void dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
779 unsigned int num_dests, struct dm_io_region *dests,
780 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
782 struct kcopyd_job *job;
786 * Allocate an array of jobs consisting of one master job
787 * followed by SPLIT_COUNT sub jobs.
789 job = mempool_alloc(&kc->job_pool, GFP_NOIO);
790 mutex_init(&job->lock);
793 * set up for the read.
800 job->num_dests = num_dests;
801 memcpy(&job->dests, dests, sizeof(*dests) * num_dests);
804 * If one of the destination is a host-managed zoned block device,
805 * we need to write sequentially. If one of the destination is a
806 * host-aware device, then leave it to the caller to choose what to do.
808 if (!(job->flags & BIT(DM_KCOPYD_WRITE_SEQ))) {
809 for (i = 0; i < job->num_dests; i++) {
810 if (bdev_zoned_model(dests[i].bdev) == BLK_ZONED_HM) {
811 job->flags |= BIT(DM_KCOPYD_WRITE_SEQ);
818 * If we need to write sequentially, errors cannot be ignored.
820 if (job->flags & BIT(DM_KCOPYD_WRITE_SEQ) &&
821 job->flags & BIT(DM_KCOPYD_IGNORE_ERROR))
822 job->flags &= ~BIT(DM_KCOPYD_IGNORE_ERROR);
827 job->op = REQ_OP_READ;
829 memset(&job->source, 0, sizeof(job->source));
830 job->source.count = job->dests[0].count;
831 job->pages = &zero_page_list;
834 * Use WRITE ZEROES to optimize zeroing if all dests support it.
836 job->op = REQ_OP_WRITE_ZEROES;
837 for (i = 0; i < job->num_dests; i++)
838 if (!bdev_write_zeroes_sectors(job->dests[i].bdev)) {
839 job->op = REQ_OP_WRITE;
845 job->context = context;
846 job->master_job = job;
847 job->write_offset = 0;
849 if (job->source.count <= kc->sub_job_size)
856 EXPORT_SYMBOL(dm_kcopyd_copy);
858 void dm_kcopyd_zero(struct dm_kcopyd_client *kc,
859 unsigned int num_dests, struct dm_io_region *dests,
860 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
862 dm_kcopyd_copy(kc, NULL, num_dests, dests, flags, fn, context);
864 EXPORT_SYMBOL(dm_kcopyd_zero);
866 void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client *kc,
867 dm_kcopyd_notify_fn fn, void *context)
869 struct kcopyd_job *job;
871 job = mempool_alloc(&kc->job_pool, GFP_NOIO);
873 memset(job, 0, sizeof(struct kcopyd_job));
876 job->context = context;
877 job->master_job = job;
879 atomic_inc(&kc->nr_jobs);
883 EXPORT_SYMBOL(dm_kcopyd_prepare_callback);
885 void dm_kcopyd_do_callback(void *j, int read_err, unsigned long write_err)
887 struct kcopyd_job *job = j;
888 struct dm_kcopyd_client *kc = job->kc;
890 job->read_err = read_err;
891 job->write_err = write_err;
893 push(&kc->callback_jobs, job);
896 EXPORT_SYMBOL(dm_kcopyd_do_callback);
899 * Cancels a kcopyd job, eg. someone might be deactivating a
903 int kcopyd_cancel(struct kcopyd_job *job, int block)
911 *---------------------------------------------------------------
913 *---------------------------------------------------------------
915 struct dm_kcopyd_client *dm_kcopyd_client_create(struct dm_kcopyd_throttle *throttle)
918 unsigned int reserve_pages;
919 struct dm_kcopyd_client *kc;
921 kc = kzalloc(sizeof(*kc), GFP_KERNEL);
923 return ERR_PTR(-ENOMEM);
925 spin_lock_init(&kc->job_lock);
926 INIT_LIST_HEAD(&kc->callback_jobs);
927 INIT_LIST_HEAD(&kc->complete_jobs);
928 INIT_LIST_HEAD(&kc->io_jobs);
929 INIT_LIST_HEAD(&kc->pages_jobs);
930 kc->throttle = throttle;
932 r = mempool_init_slab_pool(&kc->job_pool, MIN_JOBS, _job_cache);
936 INIT_WORK(&kc->kcopyd_work, do_work);
937 kc->kcopyd_wq = alloc_workqueue("kcopyd", WQ_MEM_RECLAIM, 0);
938 if (!kc->kcopyd_wq) {
943 kc->sub_job_size = dm_get_kcopyd_subjob_size();
944 reserve_pages = DIV_ROUND_UP(kc->sub_job_size << SECTOR_SHIFT, PAGE_SIZE);
947 kc->nr_reserved_pages = kc->nr_free_pages = 0;
948 r = client_reserve_pages(kc, reserve_pages);
950 goto bad_client_pages;
952 kc->io_client = dm_io_client_create();
953 if (IS_ERR(kc->io_client)) {
954 r = PTR_ERR(kc->io_client);
958 init_waitqueue_head(&kc->destroyq);
959 atomic_set(&kc->nr_jobs, 0);
964 client_free_pages(kc);
966 destroy_workqueue(kc->kcopyd_wq);
968 mempool_exit(&kc->job_pool);
974 EXPORT_SYMBOL(dm_kcopyd_client_create);
976 void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc)
978 /* Wait for completion of all jobs submitted by this client. */
979 wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));
981 BUG_ON(!list_empty(&kc->callback_jobs));
982 BUG_ON(!list_empty(&kc->complete_jobs));
983 BUG_ON(!list_empty(&kc->io_jobs));
984 BUG_ON(!list_empty(&kc->pages_jobs));
985 destroy_workqueue(kc->kcopyd_wq);
986 dm_io_client_destroy(kc->io_client);
987 client_free_pages(kc);
988 mempool_exit(&kc->job_pool);
991 EXPORT_SYMBOL(dm_kcopyd_client_destroy);
993 void dm_kcopyd_client_flush(struct dm_kcopyd_client *kc)
995 flush_workqueue(kc->kcopyd_wq);
997 EXPORT_SYMBOL(dm_kcopyd_client_flush);