]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Build.c
Fix --detail output for version 1 superblocks.
[thirdparty/mdadm.git] / Build.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
cd29a5c8 4 * Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
64c4757e
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
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
9a9dab36 30#include "mdadm.h"
64c4757e 31
82b27616
NB
32#define REGISTER_DEV _IO (MD_MAJOR, 1)
33#define START_MD _IO (MD_MAJOR, 2)
34#define STOP_MD _IO (MD_MAJOR, 3)
35
b5e64645 36int Build(char *mddev, int mdfd, int chunk, int level, int layout,
64c4757e 37 int raiddisks,
c82f047c 38 mddev_dev_t devlist, int assume_clean,
dab6685f 39 char *bitmap_file, int bitmap_chunk, int write_behind, int delay, int verbose)
64c4757e 40{
82b27616
NB
41 /* Build a linear or raid0 arrays without superblocks
42 * We cannot really do any checks, we just do it.
43 * For md_version < 0.90.0, we call REGISTER_DEV
44 * with the device numbers, and then
45 * START_MD giving the "geometry"
46 * geometry is 0xpp00cc
47 * where pp is personality: 1==linear, 2=raid0
48 * cc = chunk size factor: 0==4k, 1==8k etc.
49 *
50 * For md_version >= 0.90.0 we call
51 * SET_ARRAY_INFO, ADD_NEW_DISK, RUN_ARRAY
52 *
53 */
54 int i;
55 int vers;
56 struct stat stb;
98ce3849 57 int subdevs = 0, missing_disks = 0;
cd29a5c8 58 mddev_dev_t dv;
c82f047c 59 int bitmap_fd;
98ce3849 60/* unsigned long long size = ~0ULL; / * needed for bitmap only */
82b27616
NB
61
62 /* scan all devices, make sure they really are block devices */
cd29a5c8 63 for (dv = devlist; dv; dv=dv->next) {
98ce3849
NB
64 subdevs++;
65 if (strcmp("missing", dv->devname) == 0) {
66 missing_disks++;
67 continue;
68 }
cd29a5c8 69 if (stat(dv->devname, &stb)) {
82b27616 70 fprintf(stderr, Name ": Cannot find %s: %s\n",
cd29a5c8 71 dv->devname, strerror(errno));
82b27616
NB
72 return 1;
73 }
74 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
75 fprintf(stderr, Name ": %s is not a block device.\n",
cd29a5c8 76 dv->devname);
82b27616
NB
77 return 1;
78 }
cd29a5c8
NB
79 }
80
81 if (raiddisks != subdevs) {
82 fprintf(stderr, Name ": requested %d devices in array but listed %d\n",
83 raiddisks, subdevs);
84 return 1;
82b27616
NB
85 }
86
b5e64645
NB
87 if (layout == UnSet)
88 switch(level) {
89 default: /* no layout */
90 layout = 0;
91 break;
92 case 10:
93 layout = 0x102; /* near=2, far=1 */
dab6685f 94 if (verbose > 0)
b5e64645
NB
95 fprintf(stderr,
96 Name ": layout defaults to n1\n");
97 break;
98 case 5:
99 case 6:
100 layout = map_name(r5layout, "default");
dab6685f 101 if (verbose > 0)
b5e64645
NB
102 fprintf(stderr,
103 Name ": layout defaults to %s\n", map_num(r5layout, layout));
104 break;
105 case LEVEL_FAULTY:
106 layout = map_name(faultylayout, "default");
107
dab6685f 108 if (verbose > 0)
b5e64645
NB
109 fprintf(stderr,
110 Name ": layout defaults to %s\n", map_num(faultylayout, layout));
111 break;
112 }
113
114
82b27616
NB
115 vers = md_get_version(mdfd);
116
117 /* looks Ok, go for it */
cd29a5c8 118 if (vers >= 9000) {
82b27616
NB
119 mdu_array_info_t array;
120 array.level = level;
121 array.size = 0;
122 array.nr_disks = raiddisks;
123 array.raid_disks = raiddisks;
124 array.md_minor = 0;
125 if (fstat(mdfd, &stb)==0)
0df46c2a 126 array.md_minor = minor(stb.st_rdev);
cd29a5c8 127 array.not_persistent = 1;
82b27616 128 array.state = 0; /* not clean, but no errors */
dd0781e5
NB
129 if (assume_clean)
130 array.state |= 1;
98ce3849
NB
131 array.active_disks = raiddisks - missing_disks;
132 array.working_disks = raiddisks - missing_disks;
82b27616 133 array.spare_disks = 0;
98ce3849 134 array.failed_disks = missing_disks;
699f9899 135 if (chunk == 0 && (level==0 || level==LEVEL_LINEAR))
cd29a5c8 136 chunk = 64;
82b27616 137 array.chunk_size = chunk*1024;
b5e64645 138 array.layout = layout;
82b27616
NB
139 if (ioctl(mdfd, SET_ARRAY_INFO, &array)) {
140 fprintf(stderr, Name ": SET_ARRAY_INFO failed for %s: %s\n",
141 mddev, strerror(errno));
142 return 1;
143 }
c82f047c
NB
144 } else if (bitmap_file) {
145 fprintf(stderr, Name ": bitmaps not supported with this kernel\n");
146 return 1;
82b27616
NB
147 }
148 /* now add the devices */
cd29a5c8 149 for ((i=0), (dv = devlist) ; dv ; i++, dv=dv->next) {
98ce3849
NB
150 if (strcmp("missing", dv->devname) == 0)
151 continue;
cd29a5c8 152 if (stat(dv->devname, &stb)) {
98ce3849 153 fprintf(stderr, Name ": Weird: %s has disappeared.\n",
cd29a5c8 154 dv->devname);
82b27616
NB
155 goto abort;
156 }
cd29a5c8 157 if ((stb.st_mode & S_IFMT)!= S_IFBLK) {
82b27616 158 fprintf(stderr, Name ": Wierd: %s is no longer a block device.\n",
cd29a5c8 159 dv->devname);
82b27616
NB
160 goto abort;
161 }
cd29a5c8 162 if (vers>= 9000) {
82b27616
NB
163 mdu_disk_info_t disk;
164 disk.number = i;
165 disk.raid_disk = i;
dfd4d8ee
NB
166 disk.state = (1<<MD_DISK_SYNC) | (1<<MD_DISK_ACTIVE);
167 if (dv->writemostly)
168 disk.state |= 1<<MD_DISK_WRITEMOSTLY;
0df46c2a
NB
169 disk.major = major(stb.st_rdev);
170 disk.minor = minor(stb.st_rdev);
82b27616
NB
171 if (ioctl(mdfd, ADD_NEW_DISK, &disk)) {
172 fprintf(stderr, Name ": ADD_NEW_DISK failed for %s: %s\n",
cd29a5c8 173 dv->devname, strerror(errno));
82b27616
NB
174 goto abort;
175 }
176 } else {
177 if (ioctl(mdfd, REGISTER_DEV, &stb.st_rdev)) {
e0d19036 178 fprintf(stderr, Name ": REGISTER_DEV failed for %s: %s.\n",
cd29a5c8 179 dv->devname, strerror(errno));
82b27616
NB
180 goto abort;
181 }
182 }
183 }
184 /* now to start it */
cd29a5c8 185 if (vers >= 9000) {
82b27616 186 mdu_param_t param; /* not used by syscall */
c82f047c
NB
187 if (bitmap_file) {
188 bitmap_fd = open(bitmap_file, O_RDWR);
189 if (bitmap_fd < 0) {
190 if (bitmap_chunk == UnSet) {
191 fprintf(stderr, Name ": %s cannot be openned.",
192 bitmap_file);
193 return 1;
194 }
195 if (CreateBitmap(bitmap_file, 1, NULL, bitmap_chunk,
dfd4d8ee 196 delay, write_behind, 0/* FIXME size */)) {
c82f047c
NB
197 return 1;
198 }
199 bitmap_fd = open(bitmap_file, O_RDWR);
200 if (bitmap_fd < 0) {
201 fprintf(stderr, Name ": %s cannot be openned.",
202 bitmap_file);
203 return 1;
204 }
205 }
206 if (bitmap_fd >= 0) {
207 if (ioctl(mdfd, SET_BITMAP_FILE, bitmap_fd) < 0) {
208 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
209 mddev, strerror(errno));
210 return 1;
211 }
212 }
213 }
cd29a5c8 214 if (ioctl(mdfd, RUN_ARRAY, &param)) {
82b27616
NB
215 fprintf(stderr, Name ": RUN_ARRAY failed: %s\n",
216 strerror(errno));
217 goto abort;
218 }
219 } else {
cd29a5c8 220 unsigned long arg;
82b27616
NB
221 arg=0;
222 while (chunk > 4096) {
223 arg++;
224 chunk >>= 1;
225 }
226 if (level == 0)
227 chunk |= 0x20000;
228 else chunk |= 0x10000;
229 if (ioctl(mdfd, START_MD, arg)) {
230 fprintf(stderr, Name ": START_MD failed: %s\n",
231 strerror(errno));
232 goto abort;
233 }
234 }
dab6685f
NB
235 if (verbose >= 0)
236 fprintf(stderr, Name ": array %s built and started.\n",
237 mddev);
82b27616
NB
238 return 0;
239
240 abort:
cd29a5c8 241 if (vers >= 9000)
82b27616
NB
242 ioctl(mdfd, STOP_ARRAY, 0);
243 else
244 ioctl(mdfd, STOP_MD, 0);
245 return 1;
246
64c4757e 247}