blob: 2cf973722f59624f478875151169f6bc26f1e58c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwig4f5b2462020-06-07 16:18:59 +02002#include <linux/kernel.h>
3#include <linux/blkdev.h>
4#include <linux/init.h>
Christoph Hellwig4f5b2462020-06-07 16:18:59 +02005#include <linux/mount.h>
6#include <linux/major.h>
Alexey Dobriyanf8b77d32008-10-29 14:01:05 -07007#include <linux/delay.h>
Christoph Hellwig716308a2020-07-22 11:15:40 +02008#include <linux/init_syscalls.h>
Christoph Hellwig4f5b2462020-06-07 16:18:59 +02009#include <linux/raid/detect.h>
NeilBrownbff61972009-03-31 14:33:13 +110010#include <linux/raid/md_u.h>
11#include <linux/raid/md_p.h>
Christoph Hellwigd82fa812020-06-06 15:00:24 +020012#include "md.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
15 * When md (and any require personalities) are compiled into the kernel
16 * (not a module), arrays can be assembles are boot time using with AUTODETECT
17 * where specially marked partitions are registered with md_autodetect_dev(),
18 * and with MD_BOOT where devices to be collected are given on the boot line
19 * with md=.....
20 * The code for that is here.
21 */
22
Arjan van de Vena3640922008-09-21 15:44:32 -070023#ifdef CONFIG_MD_AUTODETECT
24static int __initdata raid_noautodetect;
25#else
26static int __initdata raid_noautodetect=1;
27#endif
28static int __initdata raid_autopart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Christoph Hellwigd1100482020-06-07 16:56:05 +020030static struct md_setup_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 int minor;
32 int partitioned;
NeilBrown2604b702006-01-06 00:20:36 -080033 int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 int chunk;
35 char *device_names;
NeilBrowne8703fe2006-10-03 01:15:59 -070036} md_setup_args[256] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static int md_setup_ents __initdata;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Parse the command-line parameters given our kernel, but do not
42 * actually try to invoke the MD device now; that is handled by
43 * md_setup_drive after the low-level disk drivers have initialised.
44 *
45 * 27/11/1999: Fixed to work correctly with the 2.3 kernel (which
46 * assigns the task of parsing integer arguments to the
47 * invoked program now). Added ability to initialise all
48 * the MD devices (by specifying multiple "md=" lines)
49 * instead of just one. -- KTK
50 * 18May2000: Added support for persistent-superblock arrays:
51 * md=n,0,factor,fault,device-list uses RAID0 for device n
52 * md=n,-1,factor,fault,device-list uses LINEAR for device n
53 * md=n,device-list reads a RAID superblock from the devices
54 * elements in device-list are read by name_to_kdev_t so can be
55 * a hex number or something like /dev/hda1 /dev/sdb
56 * 2001-06-03: Dave Cinege <dcinege@psychosis.com>
57 * Shifted name_to_kdev_t() and related operations to md_set_drive()
58 * for later execution. Rewrote section to make devfs compatible.
59 */
60static int __init md_setup(char *str)
61{
NeilBrown2604b702006-01-06 00:20:36 -080062 int minor, level, factor, fault, partitioned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 char *pername = "";
64 char *str1;
65 int ent;
66
67 if (*str == 'd') {
68 partitioned = 1;
69 str++;
70 }
71 if (get_option(&str, &minor) != 2) { /* MD Number */
72 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
73 return 0;
74 }
75 str1 = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 for (ent=0 ; ent< md_setup_ents ; ent++)
77 if (md_setup_args[ent].minor == minor &&
78 md_setup_args[ent].partitioned == partitioned) {
79 printk(KERN_WARNING "md: md=%s%d, Specified more than once. "
80 "Replacing previous definition.\n", partitioned?"d":"", minor);
81 break;
82 }
NeilBrowne8703fe2006-10-03 01:15:59 -070083 if (ent >= ARRAY_SIZE(md_setup_args)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 printk(KERN_WARNING "md: md=%s%d - too many md initialisations\n", partitioned?"d":"", minor);
85 return 0;
86 }
87 if (ent >= md_setup_ents)
88 md_setup_ents++;
NeilBrown2604b702006-01-06 00:20:36 -080089 switch (get_option(&str, &level)) { /* RAID level */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 case 2: /* could be 0 or -1.. */
91 if (level == 0 || level == LEVEL_LINEAR) {
92 if (get_option(&str, &factor) != 2 || /* Chunk Size */
93 get_option(&str, &fault) != 2) {
94 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
95 return 0;
96 }
NeilBrown2604b702006-01-06 00:20:36 -080097 md_setup_args[ent].level = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 md_setup_args[ent].chunk = 1 << (factor+12);
NeilBrown2604b702006-01-06 00:20:36 -080099 if (level == LEVEL_LINEAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 pername = "linear";
NeilBrown2604b702006-01-06 00:20:36 -0800101 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 pername = "raid0";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 break;
104 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500105 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 case 1: /* the first device is numeric */
107 str = str1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500108 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 case 0:
NeilBrown2604b702006-01-06 00:20:36 -0800110 md_setup_args[ent].level = LEVEL_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 pername="super-block";
112 }
113
114 printk(KERN_INFO "md: Will configure md%d (%s) from %s, below.\n",
115 minor, pername, str);
116 md_setup_args[ent].device_names = str;
117 md_setup_args[ent].partitioned = partitioned;
118 md_setup_args[ent].minor = minor;
119
120 return 1;
121}
122
Christoph Hellwigd1100482020-06-07 16:56:05 +0200123static void __init md_setup_drive(struct md_setup_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200125 char *devname = args->device_names;
126 dev_t devices[MD_SB_DISKS + 1], mdev;
127 struct mdu_array_info_s ainfo = { };
128 struct block_device *bdev;
129 struct mddev *mddev;
130 int err = 0, i;
Christoph Hellwigd1100482020-06-07 16:56:05 +0200131 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200133 if (args->partitioned) {
134 mdev = MKDEV(mdp_major, args->minor << MdpMinorShift);
135 sprintf(name, "md_d%d", args->minor);
136 } else {
137 mdev = MKDEV(MD_MAJOR, args->minor);
138 sprintf(name, "md%d", args->minor);
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Christoph Hellwigd1100482020-06-07 16:56:05 +0200141 for (i = 0; i < MD_SB_DISKS && devname != NULL; i++) {
142 struct kstat stat;
143 char *p;
144 char comp_name[64];
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200145 dev_t dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Christoph Hellwigd1100482020-06-07 16:56:05 +0200147 p = strchr(devname, ',');
148 if (p)
149 *p++ = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Christoph Hellwigd1100482020-06-07 16:56:05 +0200151 dev = name_to_dev_t(devname);
152 if (strncmp(devname, "/dev/", 5) == 0)
153 devname += 5;
154 snprintf(comp_name, 63, "/dev/%s", devname);
Christoph Hellwig716308a2020-07-22 11:15:40 +0200155 if (init_stat(comp_name, &stat, 0) == 0 && S_ISBLK(stat.mode))
Christoph Hellwigd1100482020-06-07 16:56:05 +0200156 dev = new_decode_dev(stat.rdev);
157 if (!dev) {
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200158 pr_warn("md: Unknown device name: %s\n", devname);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
Christoph Hellwigd1100482020-06-07 16:56:05 +0200162 devices[i] = dev;
163 devname = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Christoph Hellwigd1100482020-06-07 16:56:05 +0200165 devices[i] = 0;
166
167 if (!i)
168 return;
169
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200170 pr_info("md: Loading %s: %s\n", name, args->device_names);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200171
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200172 bdev = blkdev_get_by_dev(mdev, FMODE_READ, NULL);
173 if (IS_ERR(bdev)) {
174 pr_err("md: open failed - cannot start array %s\n", name);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200175 return;
176 }
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200177
178 err = -EIO;
179 if (WARN(bdev->bd_disk->fops != &md_fops,
180 "Opening block device %x resulted in non-md device\n",
181 mdev))
182 goto out_blkdev_put;
183
184 mddev = bdev->bd_disk->private_data;
185
186 err = mddev_lock(mddev);
187 if (err) {
188 pr_err("md: failed to lock array %s\n", name);
189 goto out_blkdev_put;
190 }
191
192 if (!list_empty(&mddev->disks) || mddev->raid_disks) {
193 pr_warn("md: Ignoring %s, already autodetected. (Use raid=noautodetect)\n",
194 name);
195 goto out_unlock;
Christoph Hellwigd1100482020-06-07 16:56:05 +0200196 }
197
198 if (args->level != LEVEL_NONE) {
199 /* non-persistent */
Christoph Hellwigd1100482020-06-07 16:56:05 +0200200 ainfo.level = args->level;
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200201 ainfo.md_minor = args->minor;
202 ainfo.not_persistent = 1;
203 ainfo.state = (1 << MD_SB_CLEAN);
204 ainfo.chunk_size = args->chunk;
Christoph Hellwigd1100482020-06-07 16:56:05 +0200205 while (devices[ainfo.raid_disks])
206 ainfo.raid_disks++;
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200207 }
Christoph Hellwigd1100482020-06-07 16:56:05 +0200208
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200209 err = md_set_array_info(mddev, &ainfo);
210
211 for (i = 0; i <= MD_SB_DISKS && devices[i]; i++) {
212 struct mdu_disk_info_s dinfo = {
213 .major = MAJOR(devices[i]),
214 .minor = MINOR(devices[i]),
215 };
216
217 if (args->level != LEVEL_NONE) {
Christoph Hellwigd1100482020-06-07 16:56:05 +0200218 dinfo.number = i;
219 dinfo.raid_disk = i;
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200220 dinfo.state =
221 (1 << MD_DISK_ACTIVE) | (1 << MD_DISK_SYNC);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200222 }
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200223
224 md_add_new_disk(mddev, &dinfo);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200225 }
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200226
Christoph Hellwigd1100482020-06-07 16:56:05 +0200227 if (!err)
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200228 err = do_md_run(mddev);
Christoph Hellwigd1100482020-06-07 16:56:05 +0200229 if (err)
Christoph Hellwig7e0adbf2020-06-07 17:31:19 +0200230 pr_warn("md: starting %s failed\n", name);
231out_unlock:
232 mddev_unlock(mddev);
233out_blkdev_put:
234 blkdev_put(bdev, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static int __init raid_setup(char *str)
238{
239 int len, pos;
240
241 len = strlen(str) + 1;
242 pos = 0;
243
244 while (pos < len) {
245 char *comma = strchr(str+pos, ',');
246 int wlen;
247 if (comma)
248 wlen = (comma-str)-pos;
249 else wlen = (len-1)-pos;
250
251 if (!strncmp(str, "noautodetect", wlen))
252 raid_noautodetect = 1;
Arjan van de Vena3640922008-09-21 15:44:32 -0700253 if (!strncmp(str, "autodetect", wlen))
254 raid_noautodetect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (strncmp(str, "partitionable", wlen)==0)
256 raid_autopart = 1;
257 if (strncmp(str, "part", wlen)==0)
258 raid_autopart = 1;
259 pos += wlen+1;
260 }
261 return 1;
262}
263
264__setup("raid=", raid_setup);
265__setup("md=", md_setup);
266
Mike Frysingerff083c82009-01-06 14:40:53 -0800267static void __init autodetect_raid(void)
Ingo Molnar82cbc112008-08-18 12:54:00 +0200268{
Ingo Molnar82cbc112008-08-18 12:54:00 +0200269 /*
270 * Since we don't want to detect and use half a raid array, we need to
271 * wait for the known devices to complete their probing
272 */
273 printk(KERN_INFO "md: Waiting for all devices to be available before autodetect\n");
274 printk(KERN_INFO "md: If you don't use raid, use raid=noautodetect\n");
Arjan van de Ven216773a2009-02-14 01:59:06 +0100275
276 wait_for_device_probe();
Christoph Hellwigd82fa812020-06-06 15:00:24 +0200277 md_autostart_arrays(raid_autopart);
Ingo Molnar82cbc112008-08-18 12:54:00 +0200278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280void __init md_run_setup(void)
281{
Christoph Hellwigd1100482020-06-07 16:56:05 +0200282 int ent;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (raid_noautodetect)
Arjan van de Vena3640922008-09-21 15:44:32 -0700285 printk(KERN_INFO "md: Skipping autodetection of RAID arrays. (raid=autodetect will force)\n");
Ingo Molnar82cbc112008-08-18 12:54:00 +0200286 else
287 autodetect_raid();
Christoph Hellwigd1100482020-06-07 16:56:05 +0200288
289 for (ent = 0; ent < md_setup_ents; ent++)
290 md_setup_drive(&md_setup_args[ent]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}