]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/md/md-multipath.c
Merge tag 'powerpc-5.12-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[mirror_ubuntu-jammy-kernel.git] / drivers / md / md-multipath.c
CommitLineData
af1a8899 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * multipath.c : Multiple Devices driver for Linux
4 *
5 * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
6 *
7 * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
8 *
9 * MULTIPATH management functions.
10 *
11 * derived from raid1.c.
1da177e4
LT
12 */
13
bff61975 14#include <linux/blkdev.h>
056075c7 15#include <linux/module.h>
bff61975 16#include <linux/raid/md_u.h>
bff61975 17#include <linux/seq_file.h>
5a0e3ad6 18#include <linux/slab.h>
43b2e5d8 19#include "md.h"
935fe098 20#include "md-multipath.h"
1da177e4
LT
21
22#define MAX_WORK_PER_DISK 128
23
24#define NR_RESERVED_BUFS 32
25
69724e28 26static int multipath_map (struct mpconf *conf)
1da177e4
LT
27{
28 int i, disks = conf->raid_disks;
29
30 /*
f72ffdd6 31 * Later we do read balancing on the read side
1da177e4
LT
32 * now we use the first available disk.
33 */
34
35 rcu_read_lock();
36 for (i = 0; i < disks; i++) {
3cb03002 37 struct md_rdev *rdev = rcu_dereference(conf->multipaths[i].rdev);
f5b67ae8
N
38 if (rdev && test_bit(In_sync, &rdev->flags) &&
39 !test_bit(Faulty, &rdev->flags)) {
1da177e4
LT
40 atomic_inc(&rdev->nr_pending);
41 rcu_read_unlock();
42 return i;
43 }
44 }
45 rcu_read_unlock();
46
7279694d 47 pr_crit_ratelimited("multipath_map(): no more operational IO paths?\n");
1da177e4
LT
48 return (-1);
49}
50
51static void multipath_reschedule_retry (struct multipath_bh *mp_bh)
52{
53 unsigned long flags;
fd01b88c 54 struct mddev *mddev = mp_bh->mddev;
69724e28 55 struct mpconf *conf = mddev->private;
1da177e4
LT
56
57 spin_lock_irqsave(&conf->device_lock, flags);
58 list_add(&mp_bh->retry_list, &conf->retry_list);
59 spin_unlock_irqrestore(&conf->device_lock, flags);
60 md_wakeup_thread(mddev->thread);
61}
62
1da177e4
LT
63/*
64 * multipath_end_bh_io() is called when we have finished servicing a multipathed
65 * operation and are ready to return a success/failure code to the buffer
66 * cache layer.
67 */
4e4cbee9 68static void multipath_end_bh_io(struct multipath_bh *mp_bh, blk_status_t status)
1da177e4
LT
69{
70 struct bio *bio = mp_bh->master_bio;
69724e28 71 struct mpconf *conf = mp_bh->mddev->private;
1da177e4 72
4e4cbee9 73 bio->bi_status = status;
4246a0b6 74 bio_endio(bio);
afeee514 75 mempool_free(mp_bh, &conf->pool);
1da177e4
LT
76}
77
4246a0b6 78static void multipath_end_request(struct bio *bio)
1da177e4 79{
7b92813c 80 struct multipath_bh *mp_bh = bio->bi_private;
69724e28 81 struct mpconf *conf = mp_bh->mddev->private;
3cb03002 82 struct md_rdev *rdev = conf->multipaths[mp_bh->path].rdev;
1da177e4 83
4e4cbee9 84 if (!bio->bi_status)
1da177e4 85 multipath_end_bh_io(mp_bh, 0);
1eff9d32 86 else if (!(bio->bi_opf & REQ_RAHEAD)) {
1da177e4
LT
87 /*
88 * oops, IO error:
89 */
90 char b[BDEVNAME_SIZE];
91 md_error (mp_bh->mddev, rdev);
7279694d
N
92 pr_info("multipath: %s: rescheduling sector %llu\n",
93 bdevname(rdev->bdev,b),
94 (unsigned long long)bio->bi_iter.bi_sector);
1da177e4
LT
95 multipath_reschedule_retry(mp_bh);
96 } else
4e4cbee9 97 multipath_end_bh_io(mp_bh, bio->bi_status);
1da177e4 98 rdev_dec_pending(rdev, conf->mddev);
1da177e4
LT
99}
100
cc27b0c7 101static bool multipath_make_request(struct mddev *mddev, struct bio * bio)
1da177e4 102{
69724e28 103 struct mpconf *conf = mddev->private;
1da177e4
LT
104 struct multipath_bh * mp_bh;
105 struct multipath_info *multipath;
106
775d7831
DJ
107 if (unlikely(bio->bi_opf & REQ_PREFLUSH)
108 && md_flush_request(mddev, bio))
cc27b0c7 109 return true;
e5dcdd80 110
afeee514 111 mp_bh = mempool_alloc(&conf->pool, GFP_NOIO);
1da177e4
LT
112
113 mp_bh->master_bio = bio;
114 mp_bh->mddev = mddev;
115
1da177e4
LT
116 mp_bh->path = multipath_map(conf);
117 if (mp_bh->path < 0) {
4246a0b6 118 bio_io_error(bio);
afeee514 119 mempool_free(mp_bh, &conf->pool);
cc27b0c7 120 return true;
1da177e4
LT
121 }
122 multipath = conf->multipaths + mp_bh->path;
123
3a83f467 124 bio_init(&mp_bh->bio, NULL, 0);
fafcde3a
ML
125 __bio_clone_fast(&mp_bh->bio, bio);
126
4f024f37 127 mp_bh->bio.bi_iter.bi_sector += multipath->rdev->data_offset;
74d46992 128 bio_set_dev(&mp_bh->bio, multipath->rdev->bdev);
1eff9d32 129 mp_bh->bio.bi_opf |= REQ_FAILFAST_TRANSPORT;
1da177e4
LT
130 mp_bh->bio.bi_end_io = multipath_end_request;
131 mp_bh->bio.bi_private = mp_bh;
26483819 132 mddev_check_writesame(mddev, &mp_bh->bio);
3deff1a7 133 mddev_check_write_zeroes(mddev, &mp_bh->bio);
ed00aabd 134 submit_bio_noacct(&mp_bh->bio);
cc27b0c7 135 return true;
1da177e4
LT
136}
137
40cf2123 138static void multipath_status(struct seq_file *seq, struct mddev *mddev)
1da177e4 139{
69724e28 140 struct mpconf *conf = mddev->private;
1da177e4 141 int i;
f72ffdd6 142
1da177e4 143 seq_printf (seq, " [%d/%d] [", conf->raid_disks,
92f861a7 144 conf->raid_disks - mddev->degraded);
40cf2123
N
145 rcu_read_lock();
146 for (i = 0; i < conf->raid_disks; i++) {
147 struct md_rdev *rdev = rcu_dereference(conf->multipaths[i].rdev);
148 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
149 }
150 rcu_read_unlock();
3acdb7b5 151 seq_putc(seq, ']');
1da177e4
LT
152}
153
1da177e4
LT
154/*
155 * Careful, this can execute in IRQ contexts as well!
156 */
fd01b88c 157static void multipath_error (struct mddev *mddev, struct md_rdev *rdev)
1da177e4 158{
69724e28 159 struct mpconf *conf = mddev->private;
6f8d0c77 160 char b[BDEVNAME_SIZE];
1da177e4 161
92f861a7 162 if (conf->raid_disks - mddev->degraded <= 1) {
1da177e4
LT
163 /*
164 * Uh oh, we can do nothing if this is our last path, but
165 * first check if this is a queued request for a device
166 * which has just failed.
167 */
7279694d 168 pr_warn("multipath: only one IO path left and IO error.\n");
1da177e4 169 /* leave it active... it's all we have */
6f8d0c77
N
170 return;
171 }
172 /*
173 * Mark disk as unusable
174 */
175 if (test_and_clear_bit(In_sync, &rdev->flags)) {
176 unsigned long flags;
177 spin_lock_irqsave(&conf->device_lock, flags);
178 mddev->degraded++;
179 spin_unlock_irqrestore(&conf->device_lock, flags);
1da177e4 180 }
6f8d0c77 181 set_bit(Faulty, &rdev->flags);
2953079c 182 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
7279694d
N
183 pr_err("multipath: IO failure on %s, disabling IO path.\n"
184 "multipath: Operation continuing on %d IO paths.\n",
6f8d0c77
N
185 bdevname(rdev->bdev, b),
186 conf->raid_disks - mddev->degraded);
1da177e4
LT
187}
188
69724e28 189static void print_multipath_conf (struct mpconf *conf)
1da177e4
LT
190{
191 int i;
192 struct multipath_info *tmp;
193
7279694d 194 pr_debug("MULTIPATH conf printout:\n");
1da177e4 195 if (!conf) {
7279694d 196 pr_debug("(conf==NULL)\n");
1da177e4
LT
197 return;
198 }
7279694d
N
199 pr_debug(" --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
200 conf->raid_disks);
1da177e4
LT
201
202 for (i = 0; i < conf->raid_disks; i++) {
203 char b[BDEVNAME_SIZE];
204 tmp = conf->multipaths + i;
205 if (tmp->rdev)
7279694d
N
206 pr_debug(" disk%d, o:%d, dev:%s\n",
207 i,!test_bit(Faulty, &tmp->rdev->flags),
208 bdevname(tmp->rdev->bdev,b));
1da177e4
LT
209 }
210}
211
fd01b88c 212static int multipath_add_disk(struct mddev *mddev, struct md_rdev *rdev)
1da177e4 213{
69724e28 214 struct mpconf *conf = mddev->private;
199050ea 215 int err = -EEXIST;
1da177e4
LT
216 int path;
217 struct multipath_info *p;
6c2fce2e
NB
218 int first = 0;
219 int last = mddev->raid_disks - 1;
220
221 if (rdev->raid_disk >= 0)
222 first = last = rdev->raid_disk;
1da177e4
LT
223
224 print_multipath_conf(conf);
225
6c2fce2e 226 for (path = first; path <= last; path++)
1da177e4 227 if ((p=conf->multipaths+path)->rdev == NULL) {
8f6c2e4b
MP
228 disk_stack_limits(mddev->gendisk, rdev->bdev,
229 rdev->data_offset << 9);
1da177e4 230
1501efad
DW
231 err = md_integrity_add_rdev(rdev, mddev);
232 if (err)
233 break;
6f8d0c77 234 spin_lock_irq(&conf->device_lock);
750a8f3e 235 mddev->degraded--;
1da177e4 236 rdev->raid_disk = path;
b2d444d7 237 set_bit(In_sync, &rdev->flags);
6f8d0c77 238 spin_unlock_irq(&conf->device_lock);
d6065f7b 239 rcu_assign_pointer(p->rdev, rdev);
199050ea
NB
240 err = 0;
241 break;
1da177e4
LT
242 }
243
244 print_multipath_conf(conf);
199050ea
NB
245
246 return err;
1da177e4
LT
247}
248
b8321b68 249static int multipath_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
1da177e4 250{
69724e28 251 struct mpconf *conf = mddev->private;
1da177e4 252 int err = 0;
b8321b68 253 int number = rdev->raid_disk;
1da177e4
LT
254 struct multipath_info *p = conf->multipaths + number;
255
256 print_multipath_conf(conf);
257
b8321b68 258 if (rdev == p->rdev) {
b2d444d7 259 if (test_bit(In_sync, &rdev->flags) ||
1da177e4 260 atomic_read(&rdev->nr_pending)) {
7279694d 261 pr_warn("hot-remove-disk, slot %d is identified but is still operational!\n", number);
1da177e4
LT
262 err = -EBUSY;
263 goto abort;
264 }
265 p->rdev = NULL;
d787be40
N
266 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
267 synchronize_rcu();
268 if (atomic_read(&rdev->nr_pending)) {
269 /* lost the race, try later */
270 err = -EBUSY;
271 p->rdev = rdev;
272 goto abort;
273 }
1da177e4 274 }
a91a2785 275 err = md_integrity_register(mddev);
1da177e4
LT
276 }
277abort:
278
279 print_multipath_conf(conf);
280 return err;
281}
282
1da177e4
LT
283/*
284 * This is a kernel thread which:
285 *
286 * 1. Retries failed read operations on working multipaths.
287 * 2. Updates the raid superblock when problems encounter.
288 * 3. Performs writes following reads for array syncronising.
289 */
290
4ed8731d 291static void multipathd(struct md_thread *thread)
1da177e4 292{
4ed8731d 293 struct mddev *mddev = thread->mddev;
1da177e4
LT
294 struct multipath_bh *mp_bh;
295 struct bio *bio;
296 unsigned long flags;
69724e28 297 struct mpconf *conf = mddev->private;
1da177e4
LT
298 struct list_head *head = &conf->retry_list;
299
300 md_check_recovery(mddev);
301 for (;;) {
302 char b[BDEVNAME_SIZE];
303 spin_lock_irqsave(&conf->device_lock, flags);
304 if (list_empty(head))
305 break;
306 mp_bh = list_entry(head->prev, struct multipath_bh, retry_list);
307 list_del(head->prev);
308 spin_unlock_irqrestore(&conf->device_lock, flags);
309
310 bio = &mp_bh->bio;
4f024f37 311 bio->bi_iter.bi_sector = mp_bh->master_bio->bi_iter.bi_sector;
f72ffdd6 312
1da177e4 313 if ((mp_bh->path = multipath_map (conf))<0) {
7279694d 314 pr_err("multipath: %s: unrecoverable IO read error for block %llu\n",
74d46992 315 bio_devname(bio, b),
7279694d 316 (unsigned long long)bio->bi_iter.bi_sector);
4e4cbee9 317 multipath_end_bh_io(mp_bh, BLK_STS_IOERR);
1da177e4 318 } else {
7279694d 319 pr_err("multipath: %s: redirecting sector %llu to another IO path\n",
74d46992 320 bio_devname(bio, b),
7279694d 321 (unsigned long long)bio->bi_iter.bi_sector);
1da177e4 322 *bio = *(mp_bh->master_bio);
4f024f37
KO
323 bio->bi_iter.bi_sector +=
324 conf->multipaths[mp_bh->path].rdev->data_offset;
74d46992 325 bio_set_dev(bio, conf->multipaths[mp_bh->path].rdev->bdev);
1eff9d32 326 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
1da177e4
LT
327 bio->bi_end_io = multipath_end_request;
328 bio->bi_private = mp_bh;
ed00aabd 329 submit_bio_noacct(bio);
1da177e4
LT
330 }
331 }
332 spin_unlock_irqrestore(&conf->device_lock, flags);
333}
334
fd01b88c 335static sector_t multipath_size(struct mddev *mddev, sector_t sectors, int raid_disks)
80c3a6ce
DW
336{
337 WARN_ONCE(sectors || raid_disks,
338 "%s does not support generic reshape\n", __func__);
339
340 return mddev->dev_sectors;
341}
342
fd01b88c 343static int multipath_run (struct mddev *mddev)
1da177e4 344{
69724e28 345 struct mpconf *conf;
1da177e4
LT
346 int disk_idx;
347 struct multipath_info *disk;
3cb03002 348 struct md_rdev *rdev;
92f861a7 349 int working_disks;
afeee514 350 int ret;
1da177e4 351
0894cc30
AN
352 if (md_check_no_bitmap(mddev))
353 return -EINVAL;
354
1da177e4 355 if (mddev->level != LEVEL_MULTIPATH) {
7279694d
N
356 pr_warn("multipath: %s: raid level not set to multipath IO (%d)\n",
357 mdname(mddev), mddev->level);
1da177e4
LT
358 goto out;
359 }
360 /*
361 * copy the already verified devices into our private MULTIPATH
362 * bookkeeping area. [whatever we allocate in multipath_run(),
afa0f557 363 * should be freed in multipath_free()]
1da177e4
LT
364 */
365
69724e28 366 conf = kzalloc(sizeof(struct mpconf), GFP_KERNEL);
1da177e4 367 mddev->private = conf;
7279694d 368 if (!conf)
1da177e4 369 goto out;
1da177e4 370
6396bb22
KC
371 conf->multipaths = kcalloc(mddev->raid_disks,
372 sizeof(struct multipath_info),
1da177e4 373 GFP_KERNEL);
7279694d 374 if (!conf->multipaths)
1da177e4 375 goto out_free_conf;
1da177e4 376
92f861a7 377 working_disks = 0;
dafb20fa 378 rdev_for_each(rdev, mddev) {
1da177e4
LT
379 disk_idx = rdev->raid_disk;
380 if (disk_idx < 0 ||
381 disk_idx >= mddev->raid_disks)
382 continue;
383
384 disk = conf->multipaths + disk_idx;
385 disk->rdev = rdev;
8f6c2e4b
MP
386 disk_stack_limits(mddev->gendisk, rdev->bdev,
387 rdev->data_offset << 9);
1da177e4 388
b2d444d7 389 if (!test_bit(Faulty, &rdev->flags))
92f861a7 390 working_disks++;
1da177e4
LT
391 }
392
393 conf->raid_disks = mddev->raid_disks;
1da177e4
LT
394 conf->mddev = mddev;
395 spin_lock_init(&conf->device_lock);
396 INIT_LIST_HEAD(&conf->retry_list);
397
92f861a7 398 if (!working_disks) {
7279694d 399 pr_warn("multipath: no operational IO paths for %s\n",
1da177e4
LT
400 mdname(mddev));
401 goto out_free_conf;
402 }
92f861a7 403 mddev->degraded = conf->raid_disks - working_disks;
1da177e4 404
afeee514
KO
405 ret = mempool_init_kmalloc_pool(&conf->pool, NR_RESERVED_BUFS,
406 sizeof(struct multipath_bh));
407 if (ret)
1da177e4 408 goto out_free_conf;
1da177e4 409
7279694d
N
410 mddev->thread = md_register_thread(multipathd, mddev,
411 "multipath");
412 if (!mddev->thread)
413 goto out_free_conf;
1da177e4 414
7279694d 415 pr_info("multipath: array %s active with %d out of %d IO paths\n",
92f861a7 416 mdname(mddev), conf->raid_disks - mddev->degraded,
7279694d 417 mddev->raid_disks);
1da177e4
LT
418 /*
419 * Ok, everything is just fine now
420 */
1f403624 421 md_set_array_sectors(mddev, multipath_size(mddev, 0, 0));
7a5febe9 422
a91a2785
MP
423 if (md_integrity_register(mddev))
424 goto out_free_conf;
425
1da177e4
LT
426 return 0;
427
428out_free_conf:
afeee514 429 mempool_exit(&conf->pool);
990a8baf 430 kfree(conf->multipaths);
1da177e4
LT
431 kfree(conf);
432 mddev->private = NULL;
433out:
434 return -EIO;
435}
436
afa0f557 437static void multipath_free(struct mddev *mddev, void *priv)
1da177e4 438{
afa0f557 439 struct mpconf *conf = priv;
1da177e4 440
afeee514 441 mempool_exit(&conf->pool);
1da177e4
LT
442 kfree(conf->multipaths);
443 kfree(conf);
1da177e4
LT
444}
445
84fc4b56 446static struct md_personality multipath_personality =
1da177e4
LT
447{
448 .name = "multipath",
2604b703 449 .level = LEVEL_MULTIPATH,
1da177e4
LT
450 .owner = THIS_MODULE,
451 .make_request = multipath_make_request,
452 .run = multipath_run,
afa0f557 453 .free = multipath_free,
1da177e4
LT
454 .status = multipath_status,
455 .error_handler = multipath_error,
456 .hot_add_disk = multipath_add_disk,
457 .hot_remove_disk= multipath_remove_disk,
80c3a6ce 458 .size = multipath_size,
1da177e4
LT
459};
460
461static int __init multipath_init (void)
462{
2604b703 463 return register_md_personality (&multipath_personality);
1da177e4
LT
464}
465
466static void __exit multipath_exit (void)
467{
2604b703 468 unregister_md_personality (&multipath_personality);
1da177e4
LT
469}
470
471module_init(multipath_init);
472module_exit(multipath_exit);
473MODULE_LICENSE("GPL");
0efb9e61 474MODULE_DESCRIPTION("simple multi-path personality for MD");
1da177e4 475MODULE_ALIAS("md-personality-7"); /* MULTIPATH */
d9d166c2 476MODULE_ALIAS("md-multipath");
2604b703 477MODULE_ALIAS("md-level--4");