]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdopen.c
Remove scattered checks for malloc success.
[thirdparty/mdadm.git] / mdopen.c
CommitLineData
b5e64645
NB
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
e736b623 4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
b5e64645
NB
5 *
6 *
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.
11 *
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.
16 *
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
20 *
21 * Author: Neil Brown
e736b623 22 * Email: <neilb@suse.de>
b5e64645
NB
23 */
24
25#include "mdadm.h"
26#include "md_p.h"
27#include <ctype.h>
28
0a6e1c67 29
c4fe2d4f 30void make_parts(char *dev, int cnt)
b5e64645
NB
31{
32 /* make 'cnt' partition devices for 'dev'
c4fe2d4f
N
33 * If dev is a device name we use the
34 * major/minor from dev and add 1..cnt
35 * If it is a symlink, we make similar symlinks.
8d80900b 36 * If dev ends with a digit, we add "p%d" else "%d"
b5e64645
NB
37 * If the name exists, we use it's owner/mode,
38 * else that of dev
39 */
40 struct stat stb;
96ae5973
JS
41 int major_num;
42 int minor_num;
43 int odig;
b5e64645 44 int i;
8f23b0b3 45 int nlen = strlen(dev) + 20;
0eb26465 46 char *name;
b5e64645 47 int dig = isdigit(dev[strlen(dev)-1]);
c4fe2d4f
N
48 char orig[1024];
49 char sym[1024];
614825ea 50 int err;
b5e64645 51
f1ae21c4 52 if (cnt==0) cnt=4;
c4fe2d4f 53 if (lstat(dev, &stb)!= 0)
b5e64645 54 return;
0eb26465 55
96ae5973
JS
56 if (S_ISBLK(stb.st_mode)) {
57 major_num = major(stb.st_rdev);
58 minor_num = minor(stb.st_rdev);
59 odig = -1;
60 } else if (S_ISLNK(stb.st_mode)) {
c4fe2d4f
N
61 int len = readlink(dev, orig, sizeof(orig));
62 if (len < 0 || len > 1000)
63 return;
64 orig[len] = 0;
65 odig = isdigit(orig[len-1]);
96ae5973
JS
66 major_num = -1;
67 minor_num = -1;
c4fe2d4f 68 } else
96ae5973 69 return;
503975b9 70 name = xmalloc(nlen);
b5e64645
NB
71 for (i=1; i <= cnt ; i++) {
72 struct stat stb2;
8f23b0b3 73 snprintf(name, nlen, "%s%s%d", dev, dig?"p":"", i);
b5e64645 74 if (stat(name, &stb2)==0) {
96ae5973 75 if (!S_ISBLK(stb2.st_mode) || !S_ISBLK(stb.st_mode))
b5e64645 76 continue;
b440882e 77 if (stb2.st_rdev == makedev(major_num, minor_num+i))
b5e64645
NB
78 continue;
79 unlink(name);
80 } else {
81 stb2 = stb;
82 }
c4fe2d4f
N
83 if (S_ISBLK(stb.st_mode)) {
84 if (mknod(name, S_IFBLK | 0600,
85 makedev(major_num, minor_num+i)))
86 perror("mknod");
87 if (chown(name, stb2.st_uid, stb2.st_gid))
88 perror("chown");
89 if (chmod(name, stb2.st_mode & 07777))
90 perror("chmod");
614825ea 91 err = 0;
c4fe2d4f 92 } else {
e10a79c3 93 snprintf(sym, sizeof(sym), "%s%s%d", orig, odig?"p":"", i);
614825ea 94 err = symlink(sym, name);
c4fe2d4f 95 }
614825ea
DW
96
97 if (err == 0 && stat(name, &stb2) == 0)
98 add_dev(name, &stb2, 0, NULL);
b5e64645 99 }
0eb26465 100 free(name);
b5e64645
NB
101}
102
0a6e1c67 103
b5e64645 104/*
69207ff6
N
105 * We need a new md device to assemble/build/create an array.
106 * 'dev' is a name given us by the user (command line or mdadm.conf)
107 * It might start with /dev or /dev/md any might end with a digit
108 * string.
109 * If it starts with just /dev, it must be /dev/mdX or /dev/md_dX
110 * If it ends with a digit string, then it must be as above, or
111 * 'trustworthy' must be 'METADATA' and the 'dev' must be
112 * /dev/md/'name'NN or 'name'NN
113 * If it doesn't end with a digit string, it must be /dev/md/'name'
114 * or 'name' or must be NULL.
115 * If the digit string is present, it gives the minor number to use
116 * If not, we choose a high, unused minor number.
117 * If the 'dev' is a standard name, it devices whether 'md' or 'mdp'.
118 * else if the name is 'd[0-9]+' then we use mdp
119 * else if trustworthy is 'METADATA' we use md
120 * else the choice depends on 'autof'.
121 * If name is NULL it is assumed to match whatever dev provides.
122 * If both name and dev are NULL, we choose a name 'mdXX' or 'mdpXX'
123 *
124 * If 'name' is given, and 'trustworthy' is 'foreign' and name is not
125 * supported by 'dev', we add a "_%d" suffix based on the minor number
126 * use that.
127 *
128 * If udev is configured, we create a temporary device, open it, and
129 * unlink it.
130 * If not, we create the /dev/mdXX device, and is name is usable,
131 * /dev/md/name
132 * In any case we return /dev/md/name or (if that isn't available)
133 * /dev/mdXX in 'chosen'.
134 *
135 * When we create devices, we use uid/gid/umask from config file.
b5e64645 136 */
69207ff6
N
137
138int create_mddev(char *dev, char *name, int autof, int trustworthy,
139 char *chosen)
b5e64645
NB
140{
141 int mdfd;
142 struct stat stb;
69207ff6
N
143 int num = -1;
144 int use_mdp = -1;
8aec876d 145 struct createinfo *ci = conf_get_create_info();
f1ae21c4 146 int parts;
69207ff6
N
147 char *cname;
148 char devname[20];
149 char cbuf[400];
150 if (chosen == NULL)
151 chosen = cbuf;
152
b5e64645 153
5bbb4842
NB
154 if (autof == 0)
155 autof = ci->autof;
156
f1ae21c4
NB
157 parts = autof >> 3;
158 autof &= 7;
159
69207ff6
N
160 strcpy(chosen, "/dev/md/");
161 cname = chosen + strlen(chosen);
162
163
164 if (dev) {
69207ff6
N
165 if (strncmp(dev, "/dev/md/", 8) == 0) {
166 strcpy(cname, dev+8);
167 } else if (strncmp(dev, "/dev/", 5) == 0) {
168 char *e = dev + strlen(dev);
169 while (e > dev && isdigit(e[-1]))
170 e--;
171 if (e[0])
172 num = strtoul(e, NULL, 10);
173 strcpy(cname, dev+5);
174 cname[e-(dev+5)] = 0;
175 /* name *must* be mdXX or md_dXX in this context */
176 if (num < 0 ||
177 (strcmp(cname, "md") != 0 && strcmp(cname, "md_d") != 0)) {
e7b84f9d 178 pr_err("%s is an invalid name "
69207ff6
N
179 "for an md device. Try /dev/md/%s\n",
180 dev, dev+5);
f1ae21c4
NB
181 return -1;
182 }
69207ff6
N
183 if (strcmp(cname, "md") == 0)
184 use_mdp = 0;
185 else
186 use_mdp = 1;
11fb4c05
N
187 /* recreate name: /dev/md/0 or /dev/md/d0 */
188 sprintf(cname, "%s%d", use_mdp?"d":"", num);
69207ff6
N
189 } else
190 strcpy(cname, dev);
191
11fb4c05
N
192 /* 'cname' must not contain a slash, and may not be
193 * empty.
69207ff6 194 */
11fb4c05 195 if (strchr(cname, '/') != NULL) {
e7b84f9d 196 pr_err("%s is an invalid name "
69207ff6
N
197 "for an md device.\n", dev);
198 return -1;
f1ae21c4 199 }
11fb4c05 200 if (cname[0] == 0) {
e7b84f9d 201 pr_err("%s is an invalid name "
69207ff6
N
202 "for an md device (empty!).", dev);
203 return -1;
b5e64645 204 }
11fb4c05
N
205 if (num < 0) {
206 /* If cname is 'N' or 'dN', we get dev number
207 * from there.
208 */
209 char *sp = cname;
210 char *ep;
211 if (cname[0] == 'd')
212 sp++;
213 num = strtoul(sp, &ep, 10);
214 if (ep == sp || *ep || num < 0)
215 num = -1;
216 else if (cname[0] == 'd')
217 use_mdp = 1;
218 else
219 use_mdp = 0;
220 }
69207ff6 221 }
f1ae21c4 222
69207ff6
N
223 /* Now determine device number */
224 /* named 'METADATA' cannot use 'mdp'. */
225 if (name && name[0] == 0)
226 name = NULL;
227 if (name && trustworthy == METADATA && use_mdp == 1) {
e7b84f9d 228 pr_err("%s is not allowed for a %s container. "
69207ff6
N
229 "Consider /dev/md%d.\n", dev, name, num);
230 return -1;
231 }
232 if (name && trustworthy == METADATA)
233 use_mdp = 0;
234 if (use_mdp == -1) {
235 if (autof == 4 || autof == 6)
236 use_mdp = 1;
f1ae21c4 237 else
69207ff6
N
238 use_mdp = 0;
239 }
240 if (num < 0 && trustworthy == LOCAL && name) {
d7ba0c55
N
241 /* if name is numeric, possibly prefixed by
242 * 'md' or '/dev/md', use that for num
bde2c6e2 243 * if it is not already in use */
69207ff6 244 char *ep;
d7ba0c55
N
245 char *n2 = name;
246 if (strncmp(n2, "/dev/", 5) == 0)
247 n2 += 5;
248 if (strncmp(n2, "md", 2) == 0)
249 n2 += 2;
250 if (*n2 == '/')
251 n2++;
252 num = strtoul(n2, &ep, 10);
253 if (ep == n2 || *ep)
69207ff6 254 num = -1;
bde2c6e2
N
255 else if (mddev_busy(use_mdp ? (-1-num) : num))
256 num = -1;
69207ff6
N
257 }
258
259 if (num < 0) {
260 /* need to choose a free number. */
261 num = find_free_devnum(use_mdp);
262 if (num == NoMdDev) {
e7b84f9d 263 pr_err("No avail md devices - aborting\n");
69207ff6
N
264 return -1;
265 }
266 } else {
267 num = use_mdp ? (-1-num) : num;
268 if (mddev_busy(num)) {
e7b84f9d 269 pr_err("%s is already in use.\n",
69207ff6
N
270 dev);
271 return -1;
272 }
273 }
274
275 if (num < 0)
276 sprintf(devname, "/dev/md_d%d", -1-num);
277 else
278 sprintf(devname, "/dev/md%d", num);
f1ae21c4 279
69207ff6
N
280 if (cname[0] == 0 && name) {
281 /* Need to find a name if we can
282 * We don't completely trust 'name'. Truncate to
283 * reasonable length and remove '/'
8d80900b 284 */
69207ff6 285 char *cp;
f2e55ecc
N
286 struct map_ent *map = NULL;
287 int conflict = 1;
288 int unum = 0;
289 int cnlen;
69207ff6
N
290 strncpy(cname, name, 200);
291 cname[200] = 0;
292 while ((cp = strchr(cname, '/')) != NULL)
293 *cp = '-';
f2e55ecc
N
294 if (trustworthy == LOCAL ||
295 (trustworthy == FOREIGN && strchr(cname, ':') != NULL)) {
296 /* Only need suffix if there is a conflict */
297 if (map_by_name(&map, cname) == NULL)
298 conflict = 0;
299 }
300 cnlen = strlen(cname);
301 while (conflict) {
add394f3 302 if (trustworthy == METADATA && !isdigit(cname[cnlen-1]))
f2e55ecc
N
303 sprintf(cname+cnlen, "%d", unum);
304 else
305 /* add _%d to FOREIGN array that don't
306 * a 'host:' prefix
307 */
308 sprintf(cname+cnlen, "_%d", unum);
309 unum++;
310 if (map_by_name(&map, cname) == NULL)
311 conflict = 0;
312 }
69207ff6 313 }
9a40c327 314
5ac6db12 315 if (dev && dev[0] == '/')
9a40c327
N
316 strcpy(chosen, dev);
317 else if (cname[0] == 0)
69207ff6 318 strcpy(chosen, devname);
8d80900b 319
69207ff6 320 /* We have a device number and name.
11fb4c05
N
321 * If we cannot detect udev, we need to make
322 * devices and links ourselves.
69207ff6 323 */
5ffdc2dd 324 if ((stat("/dev/.udev", &stb) != 0 && stat("/run/udev", &stb) != 0) ||
69207ff6
N
325 check_env("MDADM_NO_UDEV")) {
326 /* Make sure 'devname' exists and 'chosen' is a symlink to it */
327 if (lstat(devname, &stb) == 0) {
328 /* Must be the correct device, else error */
329 if ((stb.st_mode&S_IFMT) != S_IFBLK ||
330 stb.st_rdev != makedev(dev2major(num),dev2minor(num))) {
e7b84f9d 331 pr_err("%s exists but looks wrong, please fix\n",
69207ff6
N
332 devname);
333 return -1;
0a6e1c67 334 }
69207ff6
N
335 } else {
336 if (mknod(devname, S_IFBLK|0600,
337 makedev(dev2major(num),dev2minor(num))) != 0) {
e7b84f9d 338 pr_err("failed to create %s\n",
69207ff6 339 devname);
b5e64645
NB
340 return -1;
341 }
69207ff6
N
342 if (chown(devname, ci->uid, ci->gid))
343 perror("chown");
344 if (chmod(devname, ci->mode))
345 perror("chmod");
346 stat(devname, &stb);
347 add_dev(devname, &stb, 0, NULL);
348 }
c4fe2d4f
N
349 if (use_mdp == 1)
350 make_parts(devname, parts);
69207ff6
N
351 if (strcmp(chosen, devname) != 0) {
352
353 if (mkdir("/dev/md",0700)==0) {
354 if (chown("/dev/md", ci->uid, ci->gid))
355 perror("chown /dev/md");
356 if (chmod("/dev/md", ci->mode| ((ci->mode>>2) & 0111)))
357 perror("chmod /dev/md");
8d80900b 358 }
69207ff6
N
359
360 if (dev && strcmp(chosen, dev) == 0)
361 /* We know we are allowed to use this name */
362 unlink(chosen);
363
364 if (lstat(chosen, &stb) == 0) {
365 char buf[300];
fca13185
TJ
366 ssize_t link_len = readlink(chosen, buf, sizeof(buf)-1);
367 if (link_len >= 0)
368 buf[link_len] = '\0';
369
69207ff6 370 if ((stb.st_mode & S_IFMT) != S_IFLNK ||
fca13185 371 link_len < 0 ||
69207ff6 372 strcmp(buf, devname) != 0) {
e7b84f9d 373 pr_err("%s exists - ignoring\n",
69207ff6
N
374 chosen);
375 strcpy(chosen, devname);
376 }
614825ea 377 } else if (symlink(devname, chosen) != 0)
e7b84f9d 378 pr_err("failed to create %s: %s\n",
614825ea 379 chosen, strerror(errno));
c4fe2d4f
N
380 if (use_mdp && strcmp(chosen, devname) != 0)
381 make_parts(chosen, parts);
b5e64645 382 }
b5e64645 383 }
69207ff6
N
384 mdfd = open_dev_excl(num);
385 if (mdfd < 0)
e7b84f9d 386 pr_err("unexpected failure opening %s\n",
69207ff6 387 devname);
6be1d39d
N
388 return mdfd;
389}
390
69207ff6 391
6be1d39d
N
392/* Open this and check that it is an md device.
393 * On success, return filedescriptor.
394 * On failure, return -1 if it doesn't exist,
395 * or -2 if it exists but is not an md device.
396 */
397int open_mddev(char *dev, int report_errors)
398{
399 int mdfd = open(dev, O_RDWR);
c3f26510
N
400 if (mdfd < 0 && errno == EACCES)
401 mdfd = open(dev, O_RDONLY);
6be1d39d
N
402 if (mdfd < 0) {
403 if (report_errors)
e7b84f9d 404 pr_err("error opening %s: %s\n",
6be1d39d
N
405 dev, strerror(errno));
406 return -1;
407 }
408 if (md_get_version(mdfd) <= 0) {
b5e64645 409 close(mdfd);
6be1d39d 410 if (report_errors)
e7b84f9d 411 pr_err("%s does not appear to be "
6be1d39d
N
412 "an md device\n", dev);
413 return -2;
b5e64645
NB
414 }
415 return mdfd;
416}