blob: 7d85d172bc7e265ae2e4541a95d495799ee6446e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
H Hartley Sweetenc67e5382012-05-31 16:26:10 -07002/*
3 * Many of the syscalls used in this file expect some of the arguments
4 * to be __user pointers not __kernel pointers. To limit the sparse
5 * noise, turn off sparse checking for this file.
6 */
7#ifdef __CHECKER__
8#undef __CHECKER__
9#warning "Sparse checking disabled for this file"
10#endif
11
Alexey Dobriyanf8b77d32008-10-29 14:01:05 -070012#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110013#include <linux/raid/md_u.h>
14#include <linux/raid/md_p.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "do_mounts.h"
17
18/*
19 * When md (and any require personalities) are compiled into the kernel
20 * (not a module), arrays can be assembles are boot time using with AUTODETECT
21 * where specially marked partitions are registered with md_autodetect_dev(),
22 * and with MD_BOOT where devices to be collected are given on the boot line
23 * with md=.....
24 * The code for that is here.
25 */
26
Arjan van de Vena3640922008-09-21 15:44:32 -070027#ifdef CONFIG_MD_AUTODETECT
28static int __initdata raid_noautodetect;
29#else
30static int __initdata raid_noautodetect=1;
31#endif
32static int __initdata raid_autopart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static struct {
35 int minor;
36 int partitioned;
NeilBrown2604b702006-01-06 00:20:36 -080037 int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 int chunk;
39 char *device_names;
NeilBrowne8703fe2006-10-03 01:15:59 -070040} md_setup_args[256] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42static int md_setup_ents __initdata;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * Parse the command-line parameters given our kernel, but do not
46 * actually try to invoke the MD device now; that is handled by
47 * md_setup_drive after the low-level disk drivers have initialised.
48 *
49 * 27/11/1999: Fixed to work correctly with the 2.3 kernel (which
50 * assigns the task of parsing integer arguments to the
51 * invoked program now). Added ability to initialise all
52 * the MD devices (by specifying multiple "md=" lines)
53 * instead of just one. -- KTK
54 * 18May2000: Added support for persistent-superblock arrays:
55 * md=n,0,factor,fault,device-list uses RAID0 for device n
56 * md=n,-1,factor,fault,device-list uses LINEAR for device n
57 * md=n,device-list reads a RAID superblock from the devices
58 * elements in device-list are read by name_to_kdev_t so can be
59 * a hex number or something like /dev/hda1 /dev/sdb
60 * 2001-06-03: Dave Cinege <dcinege@psychosis.com>
61 * Shifted name_to_kdev_t() and related operations to md_set_drive()
62 * for later execution. Rewrote section to make devfs compatible.
63 */
64static int __init md_setup(char *str)
65{
NeilBrown2604b702006-01-06 00:20:36 -080066 int minor, level, factor, fault, partitioned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 char *pername = "";
68 char *str1;
69 int ent;
70
71 if (*str == 'd') {
72 partitioned = 1;
73 str++;
74 }
75 if (get_option(&str, &minor) != 2) { /* MD Number */
76 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
77 return 0;
78 }
79 str1 = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 for (ent=0 ; ent< md_setup_ents ; ent++)
81 if (md_setup_args[ent].minor == minor &&
82 md_setup_args[ent].partitioned == partitioned) {
83 printk(KERN_WARNING "md: md=%s%d, Specified more than once. "
84 "Replacing previous definition.\n", partitioned?"d":"", minor);
85 break;
86 }
NeilBrowne8703fe2006-10-03 01:15:59 -070087 if (ent >= ARRAY_SIZE(md_setup_args)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 printk(KERN_WARNING "md: md=%s%d - too many md initialisations\n", partitioned?"d":"", minor);
89 return 0;
90 }
91 if (ent >= md_setup_ents)
92 md_setup_ents++;
NeilBrown2604b702006-01-06 00:20:36 -080093 switch (get_option(&str, &level)) { /* RAID level */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 case 2: /* could be 0 or -1.. */
95 if (level == 0 || level == LEVEL_LINEAR) {
96 if (get_option(&str, &factor) != 2 || /* Chunk Size */
97 get_option(&str, &fault) != 2) {
98 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
99 return 0;
100 }
NeilBrown2604b702006-01-06 00:20:36 -0800101 md_setup_args[ent].level = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 md_setup_args[ent].chunk = 1 << (factor+12);
NeilBrown2604b702006-01-06 00:20:36 -0800103 if (level == LEVEL_LINEAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 pername = "linear";
NeilBrown2604b702006-01-06 00:20:36 -0800105 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 pername = "raid0";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 break;
108 }
109 /* FALL THROUGH */
110 case 1: /* the first device is numeric */
111 str = str1;
112 /* FALL THROUGH */
113 case 0:
NeilBrown2604b702006-01-06 00:20:36 -0800114 md_setup_args[ent].level = LEVEL_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 pername="super-block";
116 }
117
118 printk(KERN_INFO "md: Will configure md%d (%s) from %s, below.\n",
119 minor, pername, str);
120 md_setup_args[ent].device_names = str;
121 md_setup_args[ent].partitioned = partitioned;
122 md_setup_args[ent].minor = minor;
123
124 return 1;
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void __init md_setup_drive(void)
128{
129 int minor, i, ent, partitioned;
130 dev_t dev;
131 dev_t devices[MD_SB_DISKS+1];
132
133 for (ent = 0; ent < md_setup_ents ; ent++) {
134 int fd;
135 int err = 0;
136 char *devname;
137 mdu_disk_info_t dinfo;
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700138 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 minor = md_setup_args[ent].minor;
141 partitioned = md_setup_args[ent].partitioned;
142 devname = md_setup_args[ent].device_names;
143
144 sprintf(name, "/dev/md%s%d", partitioned?"_d":"", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (partitioned)
146 dev = MKDEV(mdp_major, minor << MdpMinorShift);
147 else
148 dev = MKDEV(MD_MAJOR, minor);
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700149 create_dev(name, dev);
Harvey Harrisond613c3e2008-04-28 14:13:14 -0700150 for (i = 0; i < MD_SB_DISKS && devname != NULL; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 char *p;
152 char comp_name[64];
153 u32 rdev;
154
155 p = strchr(devname, ',');
156 if (p)
157 *p++ = 0;
158
159 dev = name_to_dev_t(devname);
160 if (strncmp(devname, "/dev/", 5) == 0)
161 devname += 5;
162 snprintf(comp_name, 63, "/dev/%s", devname);
163 rdev = bstat(comp_name);
164 if (rdev)
165 dev = new_decode_dev(rdev);
166 if (!dev) {
167 printk(KERN_WARNING "md: Unknown device name: %s\n", devname);
168 break;
169 }
170
171 devices[i] = dev;
172
173 devname = p;
174 }
175 devices[i] = 0;
176
177 if (!i)
178 continue;
179
180 printk(KERN_INFO "md: Loading md%s%d: %s\n",
181 partitioned ? "_d" : "", minor,
182 md_setup_args[ent].device_names);
183
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100184 fd = ksys_open(name, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (fd < 0) {
186 printk(KERN_ERR "md: open failed - cannot start "
187 "array %s\n", name);
188 continue;
189 }
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100190 if (ksys_ioctl(fd, SET_ARRAY_INFO, 0) == -EBUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 printk(KERN_WARNING
192 "md: Ignoring md=%d, already autodetected. (Use raid=noautodetect)\n",
193 minor);
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100194 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 continue;
196 }
197
NeilBrown2604b702006-01-06 00:20:36 -0800198 if (md_setup_args[ent].level != LEVEL_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* non-persistent */
200 mdu_array_info_t ainfo;
NeilBrown2604b702006-01-06 00:20:36 -0800201 ainfo.level = md_setup_args[ent].level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 ainfo.size = 0;
203 ainfo.nr_disks =0;
204 ainfo.raid_disks =0;
205 while (devices[ainfo.raid_disks])
206 ainfo.raid_disks++;
207 ainfo.md_minor =minor;
208 ainfo.not_persistent = 1;
209
210 ainfo.state = (1 << MD_SB_CLEAN);
211 ainfo.layout = 0;
212 ainfo.chunk_size = md_setup_args[ent].chunk;
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100213 err = ksys_ioctl(fd, SET_ARRAY_INFO, (long)&ainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 for (i = 0; !err && i <= MD_SB_DISKS; i++) {
215 dev = devices[i];
216 if (!dev)
217 break;
218 dinfo.number = i;
219 dinfo.raid_disk = i;
220 dinfo.state = (1<<MD_DISK_ACTIVE)|(1<<MD_DISK_SYNC);
221 dinfo.major = MAJOR(dev);
222 dinfo.minor = MINOR(dev);
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100223 err = ksys_ioctl(fd, ADD_NEW_DISK,
224 (long)&dinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226 } else {
227 /* persistent */
228 for (i = 0; i <= MD_SB_DISKS; i++) {
229 dev = devices[i];
230 if (!dev)
231 break;
232 dinfo.major = MAJOR(dev);
233 dinfo.minor = MINOR(dev);
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100234 ksys_ioctl(fd, ADD_NEW_DISK, (long)&dinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236 }
237 if (!err)
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100238 err = ksys_ioctl(fd, RUN_ARRAY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (err)
240 printk(KERN_WARNING "md: starting md%d failed\n", minor);
241 else {
242 /* reread the partition table.
243 * I (neilb) and not sure why this is needed, but I cannot
244 * boot a kernel with devfs compiled in from partitioned md
245 * array without it
246 */
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100247 ksys_close(fd);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100248 fd = ksys_open(name, 0, 0);
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100249 ksys_ioctl(fd, BLKRRPART, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100251 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253}
254
255static int __init raid_setup(char *str)
256{
257 int len, pos;
258
259 len = strlen(str) + 1;
260 pos = 0;
261
262 while (pos < len) {
263 char *comma = strchr(str+pos, ',');
264 int wlen;
265 if (comma)
266 wlen = (comma-str)-pos;
267 else wlen = (len-1)-pos;
268
269 if (!strncmp(str, "noautodetect", wlen))
270 raid_noautodetect = 1;
Arjan van de Vena3640922008-09-21 15:44:32 -0700271 if (!strncmp(str, "autodetect", wlen))
272 raid_noautodetect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (strncmp(str, "partitionable", wlen)==0)
274 raid_autopart = 1;
275 if (strncmp(str, "part", wlen)==0)
276 raid_autopart = 1;
277 pos += wlen+1;
278 }
279 return 1;
280}
281
282__setup("raid=", raid_setup);
283__setup("md=", md_setup);
284
Mike Frysingerff083c82009-01-06 14:40:53 -0800285static void __init autodetect_raid(void)
Ingo Molnar82cbc112008-08-18 12:54:00 +0200286{
287 int fd;
288
289 /*
290 * Since we don't want to detect and use half a raid array, we need to
291 * wait for the known devices to complete their probing
292 */
293 printk(KERN_INFO "md: Waiting for all devices to be available before autodetect\n");
294 printk(KERN_INFO "md: If you don't use raid, use raid=noautodetect\n");
Arjan van de Ven216773a2009-02-14 01:59:06 +0100295
296 wait_for_device_probe();
297
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100298 fd = ksys_open("/dev/md0", 0, 0);
Ingo Molnar82cbc112008-08-18 12:54:00 +0200299 if (fd >= 0) {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100300 ksys_ioctl(fd, RAID_AUTORUN, raid_autopart);
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100301 ksys_close(fd);
Ingo Molnar82cbc112008-08-18 12:54:00 +0200302 }
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305void __init md_run_setup(void)
306{
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700307 create_dev("/dev/md0", MKDEV(MD_MAJOR, 0));
Arjan van de Ven589f8002008-07-20 13:07:09 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (raid_noautodetect)
Arjan van de Vena3640922008-09-21 15:44:32 -0700310 printk(KERN_INFO "md: Skipping autodetection of RAID arrays. (raid=autodetect will force)\n");
Ingo Molnar82cbc112008-08-18 12:54:00 +0200311 else
312 autodetect_raid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 md_setup_drive();
314}