2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Email: <neilb@cse.unsw.edu.au>
24 * School of Computer Science and Engineering
25 * The University of New South Wales
35 void make_dev_symlink(char *dev
)
37 char *new = strdup(dev
);
40 /* /dev/md/0 -> /dev/md0
41 * /dev/md/d0 -> /dev/md_d0
47 if (symlink(dev
+5, new))
52 void make_parts(char *dev
, int cnt
, int symlinks
)
54 /* make 'cnt' partition devices for 'dev'
55 * We use the major/minor from dev and add 1..cnt
56 * If dev ends with a digit, we add "p%d" else "%d"
57 * If the name exists, we use it's owner/mode,
63 int nlen
= strlen(dev
) + 20;
64 char *name
= malloc(nlen
);
65 int dig
= isdigit(dev
[strlen(dev
)-1]);
68 if (stat(dev
, &stb
)!= 0)
70 if (!S_ISBLK(stb
.st_mode
))
72 major
= major(stb
.st_rdev
);
73 minor
= minor(stb
.st_rdev
);
74 for (i
=1; i
<= cnt
; i
++) {
76 snprintf(name
, nlen
, "%s%s%d", dev
, dig
?"p":"", i
);
77 if (stat(name
, &stb2
)==0) {
78 if (!S_ISBLK(stb2
.st_mode
))
80 if (stb2
.st_rdev
== makedev(major
, minor
+i
))
86 if (mknod(name
, S_IFBLK
| 0600, makedev(major
, minor
+i
)))
88 if (chown(name
, stb2
.st_uid
, stb2
.st_gid
))
90 if (chmod(name
, stb2
.st_mode
& 07777))
92 if (symlinks
&& strncmp(name
, "/dev/md/", 8) == 0)
93 make_dev_symlink(name
);
95 add_dev(name
, &stb2
, 0, NULL
);
101 * Open a given md device, and check that it really is one.
102 * If 'autof' is given, then we need to create, or recreate, the md device.
103 * If the name already exists, and is not a block device, we fail.
104 * If it exists and is not an md device, is not the right type (partitioned or not),
105 * or is currently in-use, we remove the device, but remember the owner and mode.
106 * If it now doesn't exist, we find a new md array and create the device.
107 * Default ownership/mode comes from config file.
109 int open_mddev(char *dev
, int autof
)
113 int major
= MD_MAJOR
;
116 struct mdstat_ent
*mdlist
;
118 struct createinfo
*ci
= conf_get_create_info();
127 if (autof
&& autof
!= 1) {
128 /* autof is set, so we need to check that the name is ok,
129 * and possibly create one if not
133 if (stat(dev
, &stb
)==0 && ! S_ISBLK(stb
.st_mode
)) {
134 fprintf(stderr
, Name
": %s is not a block device.\n",
138 /* check major number is correct */
140 std
= is_standard(dev
, &num
);
141 if (std
>0) major
= get_mdp_major();
143 case 2: /* only create is_standard names */
144 if (!std
&& !stb
.st_mode
) {
146 ": %s does not exist and is not a 'standard' name "
147 "so it cannot be created\n", dev
);
151 case 3: /* create md, reject std>0 */
153 fprintf(stderr
, Name
": that --auto option "
154 "not compatable with device named %s\n", dev
);
158 case 4: /* create mdp, reject std<0 */
160 fprintf(stderr
, Name
": that --auto option "
161 "not compatable with device named %s\n", dev
);
165 case 5: /* default to md if not standard */
167 case 6: /* default to mdp if not standard */
168 if (std
== 0) major
= get_mdp_major();
171 /* major is final. num is -1 if not standard */
172 if (stb
.st_mode
&& major(stb
.st_rdev
) != major
)
174 if (stb
.st_mode
&& !must_remove
) {
175 /* looks ok, see if it is available */
176 mdfd
= open(dev
, O_RDWR
, 0);
178 fprintf(stderr
, Name
": error opening %s: %s\n",
179 dev
, strerror(errno
));
181 } else if (md_get_version(mdfd
) <= 0) {
182 fprintf(stderr
, Name
": %s does not appear to be an md device\n",
187 if (major
!= MD_MAJOR
&& parts
> 0)
188 make_parts(dev
, parts
, ci
->symlinks
);
191 /* Ok, need to find a minor that is not in use.
192 * If the device name is in a 'standard' format,
193 * intuit the minor from that, else
194 * easiest to read /proc/mdstat, and hunt through for
198 /* need to pick an unused number */
199 mdlist
= mdstat_read(0, 0);
200 /* Choose a large number. Start from 127 and search down,
201 * but if nothing is found, start really big
203 for (num
= 127 ; num
!= 128 ; num
= num
? num
-1 : (1<<22)-1) {
204 struct mdstat_ent
*me
;
206 if (major
!= MD_MAJOR
)
209 for (me
=mdlist
; me
; me
=me
->next
)
210 if (me
->devnum
== devnum
)
213 /* doesn't exist in mdstat.
214 * make sure it is new to /dev too
217 if (major
!= MD_MAJOR
)
218 minor
= num
<< MdpMinorShift
;
221 dn
= map_dev(major
,minor
, 0);
222 if (dn
==NULL
|| is_standard(dn
, NULL
)) {
223 /* this number only used by a 'standard' name,
224 * so it is safe to use
230 } else if (major
== MD_MAJOR
)
233 minor
= num
<< MdpMinorShift
;
234 /* major and minor have been chosen */
236 /* If it was a 'standard' name and it is in-use, then
237 * the device could already be correct
239 if (stb
.st_mode
&& major(stb
.st_rdev
) == major
&&
240 minor(stb
.st_rdev
) == minor
)
243 if (major(makedev(major
,minor
)) != major
||
244 minor(makedev(major
,minor
)) != minor
) {
245 fprintf(stderr
, Name
": Need newer C library to use more than 4 partitionable md devices, sorry\n");
251 if (strncmp(dev
, "/dev/md/", 8) == 0) {
252 if (mkdir("/dev/md",0700)==0) {
253 if (chown("/dev/md", ci
->uid
, ci
->gid
))
254 perror("chown /dev/md");
255 if (chmod("/dev/md", ci
->mode
| ((ci
->mode
>>2) & 0111)))
256 perror("chmod /dev/md");
259 if (mknod(dev
, S_IFBLK
|0600, makedev(major
, minor
))!= 0) {
260 fprintf(stderr
, Name
": failed to create %s\n", dev
);
264 if (chown(dev
, stb
.st_uid
, stb
.st_gid
))
266 if (chmod(dev
, stb
.st_mode
& 07777))
269 if (chown(dev
, ci
->uid
, ci
->gid
))
271 if (chmod(dev
, ci
->mode
))
275 add_dev(dev
, &stb
, 0, NULL
);
276 if (ci
->symlinks
&& strncmp(dev
, "/dev/md/", 8) == 0)
277 make_dev_symlink(dev
);
278 if (major
!= MD_MAJOR
)
279 make_parts(dev
,parts
, ci
->symlinks
);
282 mdfd
= open(dev
, O_RDWR
, 0);
284 fprintf(stderr
, Name
": error opening %s: %s\n",
285 dev
, strerror(errno
));
286 else if (md_get_version(mdfd
) <= 0) {
287 fprintf(stderr
, Name
": %s does not appear to be an md device\n",
296 int open_mddev_devnum(char *devname
, int devnum
, char *name
, char *chosen_name
)
298 /* Open the md device with number 'devnum', possibly using 'devname',
299 * possibly constructing a name with 'name', but in any case, copying
300 * the name into 'chosen_name'
306 strcpy(chosen_name
, devname
);
307 else if (name
&& strchr(name
,'/') == NULL
) {
308 char *n
= strchr(name
, ':');
309 if (n
) n
++; else n
= name
;
310 if (isdigit(*n
) && devnum
< 0)
311 sprintf(chosen_name
, "/dev/md/d%s", n
);
313 sprintf(chosen_name
, "/dev/md/%s", n
);
316 sprintf(chosen_name
, "/dev/md%d", devnum
);
318 sprintf(chosen_name
, "/dev/md/d%d", -1-devnum
);
324 major
= get_mdp_major();
325 minor
= (-1-devnum
) << 6;
327 if (stat(chosen_name
, &stb
) == 0) {
328 /* It already exists. Check it is right. */
329 if ( ! S_ISBLK(stb
.st_mode
) ||
330 stb
.st_rdev
!= makedev(major
, minor
)) {
335 if (mknod(chosen_name
, S_IFBLK
| 0600,
336 makedev(major
, minor
)) != 0) {
339 /* FIXME chown/chmod ?? */
341 return open(chosen_name
, O_RDWR
);