]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Build.c
Discard devnum in favour of devnm
[thirdparty/mdadm.git] / Build.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
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
22 * Email: <neilb@suse.de>
23 */
24
25 #include "mdadm.h"
26
27 #define REGISTER_DEV _IO (MD_MAJOR, 1)
28 #define START_MD _IO (MD_MAJOR, 2)
29 #define STOP_MD _IO (MD_MAJOR, 3)
30
31 int Build(char *mddev, struct mddev_dev *devlist,
32 struct shape *s, struct context *c)
33 {
34 /* Build a linear or raid0 arrays without superblocks
35 * We cannot really do any checks, we just do it.
36 * For md_version < 0.90.0, we call REGISTER_DEV
37 * with the device numbers, and then
38 * START_MD giving the "geometry"
39 * geometry is 0xpp00cc
40 * where pp is personality: 1==linear, 2=raid0
41 * cc = chunk size factor: 0==4k, 1==8k etc.
42 *
43 * For md_version >= 0.90.0 we call
44 * SET_ARRAY_INFO, ADD_NEW_DISK, RUN_ARRAY
45 *
46 */
47 int i;
48 int vers;
49 struct stat stb;
50 int subdevs = 0, missing_disks = 0;
51 struct mddev_dev *dv;
52 int bitmap_fd;
53 unsigned long long bitmapsize;
54 int mdfd;
55 char chosen_name[1024];
56 int uuid[4] = {0,0,0,0};
57 struct map_ent *map = NULL;
58
59 /* scan all devices, make sure they really are block devices */
60 for (dv = devlist; dv; dv=dv->next) {
61 subdevs++;
62 if (strcmp("missing", dv->devname) == 0) {
63 missing_disks++;
64 continue;
65 }
66 if (stat(dv->devname, &stb)) {
67 pr_err("Cannot find %s: %s\n",
68 dv->devname, strerror(errno));
69 return 1;
70 }
71 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
72 pr_err("%s is not a block device.\n",
73 dv->devname);
74 return 1;
75 }
76 }
77
78 if (s->raiddisks != subdevs) {
79 pr_err("requested %d devices in array but listed %d\n",
80 s->raiddisks, subdevs);
81 return 1;
82 }
83
84 if (s->layout == UnSet)
85 switch(s->level) {
86 default: /* no layout */
87 s->layout = 0;
88 break;
89 case 10:
90 s->layout = 0x102; /* near=2, far=1 */
91 if (c->verbose > 0)
92 pr_err("layout defaults to n1\n");
93 break;
94 case 5:
95 case 6:
96 s->layout = map_name(r5layout, "default");
97 if (c->verbose > 0)
98 pr_err("layout defaults to %s\n", map_num(r5layout, s->layout));
99 break;
100 case LEVEL_FAULTY:
101 s->layout = map_name(faultylayout, "default");
102
103 if (c->verbose > 0)
104 pr_err("layout defaults to %s\n", map_num(faultylayout, s->layout));
105 break;
106 }
107
108 /* We need to create the device. It can have no name. */
109 map_lock(&map);
110 mdfd = create_mddev(mddev, NULL, c->autof, LOCAL,
111 chosen_name);
112 if (mdfd < 0) {
113 map_unlock(&map);
114 return 1;
115 }
116 mddev = chosen_name;
117
118 map_update(&map, fd2devnm(mdfd), "none", uuid, chosen_name);
119 map_unlock(&map);
120
121 vers = md_get_version(mdfd);
122
123 /* looks Ok, go for it */
124 if (vers >= 9000) {
125 mdu_array_info_t array;
126 array.level = s->level;
127 if (s->size == MAX_SIZE)
128 s->size = 0;
129 array.size = s->size;
130 array.nr_disks = s->raiddisks;
131 array.raid_disks = s->raiddisks;
132 array.md_minor = 0;
133 if (fstat(mdfd, &stb)==0)
134 array.md_minor = minor(stb.st_rdev);
135 array.not_persistent = 1;
136 array.state = 0; /* not clean, but no errors */
137 if (s->assume_clean)
138 array.state |= 1;
139 array.active_disks = s->raiddisks - missing_disks;
140 array.working_disks = s->raiddisks - missing_disks;
141 array.spare_disks = 0;
142 array.failed_disks = missing_disks;
143 if (s->chunk == 0 && (s->level==0 || s->level==LEVEL_LINEAR))
144 s->chunk = 64;
145 array.chunk_size = s->chunk*1024;
146 array.layout = s->layout;
147 if (ioctl(mdfd, SET_ARRAY_INFO, &array)) {
148 pr_err("SET_ARRAY_INFO failed for %s: %s\n",
149 mddev, strerror(errno));
150 goto abort;
151 }
152 } else if (s->bitmap_file) {
153 pr_err("bitmaps not supported with this kernel\n");
154 goto abort;
155 }
156
157 if (s->bitmap_file && s->level <= 0) {
158 pr_err("bitmaps not meaningful with level %s\n",
159 map_num(pers, s->level)?:"given");
160 goto abort;
161 }
162 /* now add the devices */
163 for ((i=0), (dv = devlist) ; dv ; i++, dv=dv->next) {
164 unsigned long long dsize;
165 int fd;
166 if (strcmp("missing", dv->devname) == 0)
167 continue;
168 if (stat(dv->devname, &stb)) {
169 pr_err("Weird: %s has disappeared.\n",
170 dv->devname);
171 goto abort;
172 }
173 if ((stb.st_mode & S_IFMT)!= S_IFBLK) {
174 pr_err("Weird: %s is no longer a block device.\n",
175 dv->devname);
176 goto abort;
177 }
178 fd = open(dv->devname, O_RDONLY|O_EXCL);
179 if (fd < 0) {
180 pr_err("Cannot open %s: %s\n",
181 dv->devname, strerror(errno));
182 goto abort;
183 }
184 if (get_dev_size(fd, NULL, &dsize) &&
185 (s->size == 0 || s->size == MAX_SIZE || dsize < s->size))
186 s->size = dsize;
187 close(fd);
188 if (vers >= 9000) {
189 mdu_disk_info_t disk;
190 disk.number = i;
191 disk.raid_disk = i;
192 disk.state = (1<<MD_DISK_SYNC) | (1<<MD_DISK_ACTIVE);
193 if (dv->writemostly == 1)
194 disk.state |= 1<<MD_DISK_WRITEMOSTLY;
195 disk.major = major(stb.st_rdev);
196 disk.minor = minor(stb.st_rdev);
197 if (ioctl(mdfd, ADD_NEW_DISK, &disk)) {
198 pr_err("ADD_NEW_DISK failed for %s: %s\n",
199 dv->devname, strerror(errno));
200 goto abort;
201 }
202 } else {
203 if (ioctl(mdfd, REGISTER_DEV, &stb.st_rdev)) {
204 pr_err("REGISTER_DEV failed for %s: %s.\n",
205 dv->devname, strerror(errno));
206 goto abort;
207 }
208 }
209 }
210 /* now to start it */
211 if (vers >= 9000) {
212 mdu_param_t param; /* not used by syscall */
213 if (s->bitmap_file) {
214 bitmap_fd = open(s->bitmap_file, O_RDWR);
215 if (bitmap_fd < 0) {
216 int major = BITMAP_MAJOR_HI;
217 #if 0
218 if (s->bitmap_chunk == UnSet) {
219 pr_err("%s cannot be openned.",
220 s->bitmap_file);
221 goto abort;
222 }
223 #endif
224 if (vers < 9003) {
225 major = BITMAP_MAJOR_HOSTENDIAN;
226 #ifdef __BIG_ENDIAN
227 pr_err("Warning - bitmaps created on this kernel are not portable\n"
228 " between different architectures. Consider upgrading the Linux kernel.\n");
229 #endif
230 }
231 bitmapsize = s->size>>9; /* FIXME wrong for RAID10 */
232 if (CreateBitmap(s->bitmap_file, 1, NULL, s->bitmap_chunk,
233 c->delay, s->write_behind, bitmapsize, major)) {
234 goto abort;
235 }
236 bitmap_fd = open(s->bitmap_file, O_RDWR);
237 if (bitmap_fd < 0) {
238 pr_err("%s cannot be openned.",
239 s->bitmap_file);
240 goto abort;
241 }
242 }
243 if (bitmap_fd >= 0) {
244 if (ioctl(mdfd, SET_BITMAP_FILE, bitmap_fd) < 0) {
245 pr_err("Cannot set bitmap file for %s: %s\n",
246 mddev, strerror(errno));
247 goto abort;
248 }
249 }
250 }
251 if (ioctl(mdfd, RUN_ARRAY, &param)) {
252 pr_err("RUN_ARRAY failed: %s\n",
253 strerror(errno));
254 if (s->chunk & (s->chunk-1)) {
255 cont_err("Problem may be that chunk size"
256 " is not a power of 2\n");
257 }
258 goto abort;
259 }
260 } else {
261 unsigned long arg;
262 arg=0;
263 while (s->chunk > 4096) {
264 arg++;
265 s->chunk >>= 1;
266 }
267 if (s->level == 0)
268 arg |= 0x20000;
269 else
270 arg |= 0x10000;
271 if (ioctl(mdfd, START_MD, arg)) {
272 pr_err("START_MD failed: %s\n",
273 strerror(errno));
274 goto abort;
275 }
276 }
277 if (c->verbose >= 0)
278 pr_err("array %s built and started.\n",
279 mddev);
280 wait_for(mddev, mdfd);
281 close(mdfd);
282 return 0;
283
284 abort:
285 if (vers >= 9000)
286 ioctl(mdfd, STOP_ARRAY, 0);
287 else
288 ioctl(mdfd, STOP_MD, 0);
289 close(mdfd);
290 return 1;
291 }