Add checks to avoid adding the same device twice during mkfs
[btrfs-progs-unstable.git] / mkfs.c
blobbb2c58edbc0bd08f08337da86fbac0478c1358e1
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #define _XOPEN_SOURCE 500
20 #define _GNU_SOURCE
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <getopt.h>
28 #include <uuid/uuid.h>
29 #include <linux/fs.h>
30 #include <ctype.h>
31 #include "kerncompat.h"
32 #include "ctree.h"
33 #include "disk-io.h"
34 #include "volumes.h"
35 #include "transaction.h"
36 #include "utils.h"
38 static u64 parse_size(char *s)
40 int len = strlen(s);
41 char c;
42 u64 mult = 1;
44 if (!isdigit(s[len - 1])) {
45 c = tolower(s[len - 1]);
46 switch (c) {
47 case 'g':
48 mult *= 1024;
49 case 'm':
50 mult *= 1024;
51 case 'k':
52 mult *= 1024;
53 case 'b':
54 break;
55 default:
56 fprintf(stderr, "Unknown size descriptor %c\n", c);
57 exit(1);
59 s[len - 1] = '\0';
61 return atol(s) * mult;
64 static int make_root_dir(int fd, const char *device_name) {
65 struct btrfs_root *root;
66 struct btrfs_trans_handle *trans;
67 struct btrfs_key location;
68 u64 bytes_used;
69 u64 chunk_start = 0;
70 u64 chunk_size = 0;
71 int ret;
73 root = open_ctree_fd(fd, device_name, 0);
75 if (!root) {
76 fprintf(stderr, "ctree init failed\n");
77 return -1;
79 trans = btrfs_start_transaction(root, 1);
80 bytes_used = btrfs_super_bytes_used(&root->fs_info->super_copy);
82 root->fs_info->force_system_allocs = 1;
83 ret = btrfs_make_block_group(trans, root, bytes_used,
84 BTRFS_BLOCK_GROUP_SYSTEM,
85 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
86 0, BTRFS_MKFS_SYSTEM_GROUP_SIZE);
87 BUG_ON(ret);
89 ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
90 &chunk_start, &chunk_size,
91 BTRFS_BLOCK_GROUP_METADATA);
92 BUG_ON(ret);
93 ret = btrfs_make_block_group(trans, root, 0,
94 BTRFS_BLOCK_GROUP_METADATA,
95 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
96 chunk_start, chunk_size);
97 BUG_ON(ret);
99 root->fs_info->force_system_allocs = 0;
100 btrfs_commit_transaction(trans, root);
101 trans = btrfs_start_transaction(root, 1);
102 BUG_ON(!trans);
104 ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
105 &chunk_start, &chunk_size,
106 BTRFS_BLOCK_GROUP_DATA);
107 BUG_ON(ret);
108 ret = btrfs_make_block_group(trans, root, 0,
109 BTRFS_BLOCK_GROUP_DATA,
110 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
111 chunk_start, chunk_size);
112 BUG_ON(ret);
114 // ret = btrfs_make_block_group(trans, root, 0, 1);
115 ret = btrfs_make_root_dir(trans, root->fs_info->tree_root,
116 BTRFS_ROOT_TREE_DIR_OBJECTID);
117 if (ret)
118 goto err;
119 ret = btrfs_make_root_dir(trans, root, BTRFS_FIRST_FREE_OBJECTID);
120 if (ret)
121 goto err;
122 memcpy(&location, &root->fs_info->fs_root->root_key, sizeof(location));
123 location.offset = (u64)-1;
124 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
125 "default", 7,
126 btrfs_super_root_dir(&root->fs_info->super_copy),
127 &location, BTRFS_FT_DIR);
128 if (ret)
129 goto err;
131 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
132 "default", 7, location.objectid,
133 BTRFS_ROOT_TREE_DIR_OBJECTID);
134 if (ret)
135 goto err;
137 btrfs_commit_transaction(trans, root);
138 ret = close_ctree(root);
139 err:
140 return ret;
143 static int recow_roots(struct btrfs_trans_handle *trans,
144 struct btrfs_root *root)
146 int ret;
147 struct extent_buffer *tmp;
148 struct btrfs_fs_info *info = root->fs_info;
150 ret = __btrfs_cow_block(trans, info->fs_root, info->fs_root->node,
151 NULL, 0, &tmp, 0, 0);
152 BUG_ON(ret);
153 free_extent_buffer(tmp);
155 ret = __btrfs_cow_block(trans, info->tree_root, info->tree_root->node,
156 NULL, 0, &tmp, 0, 0);
157 BUG_ON(ret);
158 free_extent_buffer(tmp);
160 ret = __btrfs_cow_block(trans, info->extent_root,
161 info->extent_root->node, NULL, 0, &tmp, 0, 0);
162 BUG_ON(ret);
163 free_extent_buffer(tmp);
165 ret = __btrfs_cow_block(trans, info->chunk_root, info->chunk_root->node,
166 NULL, 0, &tmp, 0, 0);
167 BUG_ON(ret);
168 free_extent_buffer(tmp);
171 ret = __btrfs_cow_block(trans, info->dev_root, info->dev_root->node,
172 NULL, 0, &tmp, 0, 0);
173 BUG_ON(ret);
174 free_extent_buffer(tmp);
176 return 0;
179 static int create_one_raid_group(struct btrfs_trans_handle *trans,
180 struct btrfs_root *root, u64 type)
182 u64 chunk_start;
183 u64 chunk_size;
184 int ret;
186 ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
187 &chunk_start, &chunk_size, type);
188 BUG_ON(ret);
189 ret = btrfs_make_block_group(trans, root->fs_info->extent_root, 0,
190 type, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
191 chunk_start, chunk_size);
192 BUG_ON(ret);
193 return ret;
196 static int create_raid_groups(struct btrfs_trans_handle *trans,
197 struct btrfs_root *root, u64 data_profile,
198 u64 metadata_profile)
200 u64 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy);
201 u64 allowed;
202 int ret;
204 if (num_devices == 1)
205 allowed = BTRFS_BLOCK_GROUP_DUP;
206 else if (num_devices >= 4) {
207 allowed = BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
208 BTRFS_BLOCK_GROUP_RAID10;
209 } else
210 allowed = BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1;
212 if (allowed & metadata_profile) {
213 ret = create_one_raid_group(trans, root,
214 BTRFS_BLOCK_GROUP_SYSTEM |
215 (allowed & metadata_profile));
216 BUG_ON(ret);
218 ret = create_one_raid_group(trans, root,
219 BTRFS_BLOCK_GROUP_METADATA |
220 (allowed & metadata_profile));
221 BUG_ON(ret);
223 ret = recow_roots(trans, root);
224 BUG_ON(ret);
226 if (num_devices > 1 && (allowed & data_profile)) {
227 ret = create_one_raid_group(trans, root,
228 BTRFS_BLOCK_GROUP_DATA |
229 (allowed & data_profile));
230 BUG_ON(ret);
232 return 0;
235 static void print_usage(void)
237 fprintf(stderr, "usage: mkfs.btrfs [options] dev [ dev ... ]\n");
238 fprintf(stderr, "options:\n");
239 fprintf(stderr, "\t -b --byte-count total number of bytes in the FS\n");
240 fprintf(stderr, "\t -l --leafsize size of btree leaves\n");
241 fprintf(stderr, "\t -n --nodesize size of btree leaves\n");
242 fprintf(stderr, "\t -s --sectorsize min block allocation\n");
243 exit(1);
246 static u64 parse_profile(char *s)
248 if (strcmp(s, "raid0") == 0) {
249 return BTRFS_BLOCK_GROUP_RAID0;
250 } else if (strcmp(s, "raid1") == 0) {
251 return BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
252 } else if (strcmp(s, "raid10") == 0) {
253 return BTRFS_BLOCK_GROUP_RAID10 | BTRFS_BLOCK_GROUP_DUP;
254 } else if (strcmp(s, "single") == 0) {
255 return 0;
256 } else {
257 fprintf(stderr, "Unknown option %s\n", s);
258 print_usage();
260 return 0;
263 static char *parse_label(char *input)
265 int i;
266 int len = strlen(input);
268 if (len > BTRFS_LABEL_SIZE) {
269 fprintf(stderr, "Label %s is too long (max %d)\n", input,
270 BTRFS_LABEL_SIZE);
271 exit(1);
273 for (i = 0; i < len; i++) {
274 if (input[i] == '/' || input[i] == '\\') {
275 fprintf(stderr, "invalid label %s\n", input);
276 exit(1);
279 return strdup(input);
282 static struct option long_options[] = {
283 { "byte-count", 1, NULL, 'b' },
284 { "leafsize", 1, NULL, 'l' },
285 { "label", 1, NULL, 'L'},
286 { "metadata", 1, NULL, 'm' },
287 { "nodesize", 1, NULL, 'n' },
288 { "sectorsize", 1, NULL, 's' },
289 { "data", 1, NULL, 'd' },
290 { 0, 0, 0, 0}
293 int main(int ac, char **av)
295 char *file;
296 struct btrfs_root *root;
297 struct btrfs_trans_handle *trans;
298 char *label = NULL;
299 u64 block_count = 0;
300 u64 dev_block_count = 0;
301 u64 blocks[6];
302 u64 metadata_profile = BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
303 u64 data_profile = BTRFS_BLOCK_GROUP_RAID0;
304 u32 leafsize = getpagesize();
305 u32 sectorsize = 4096;
306 u32 nodesize = leafsize;
307 u32 stripesize = 4096;
308 int zero_end = 1;
309 int option_index = 0;
310 int fd;
311 int first_fd;
312 int ret;
313 int i;
315 while(1) {
316 int c;
317 c = getopt_long(ac, av, "b:l:n:s:m:d:L:", long_options,
318 &option_index);
319 if (c < 0)
320 break;
321 switch(c) {
322 case 'd':
323 data_profile = parse_profile(optarg);
324 break;
325 case 'l':
326 leafsize = parse_size(optarg);
327 break;
328 case 'L':
329 label = parse_label(optarg);
330 break;
331 case 'm':
332 metadata_profile = parse_profile(optarg);
333 break;
334 case 'n':
335 nodesize = parse_size(optarg);
336 break;
337 case 's':
338 sectorsize = parse_size(optarg);
339 break;
340 case 'b':
341 block_count = parse_size(optarg);
342 zero_end = 0;
343 break;
344 default:
345 print_usage();
348 sectorsize = max(sectorsize, (u32)getpagesize());
349 if (leafsize < sectorsize || (leafsize & (sectorsize - 1))) {
350 fprintf(stderr, "Illegal leafsize %u\n", leafsize);
351 exit(1);
353 if (nodesize < sectorsize || (nodesize & (sectorsize - 1))) {
354 fprintf(stderr, "Illegal nodesize %u\n", nodesize);
355 exit(1);
357 ac = ac - optind;
358 if (ac == 0)
359 print_usage();
361 file = av[optind++];
362 ret = check_mounted(file);
363 if (ret < 0) {
364 fprintf(stderr, "error checking %s mount status\n", file);
365 exit(1);
367 if (ret == 1) {
368 fprintf(stderr, "%s is mounted\n", file);
369 exit(1);
371 ac--;
372 fd = open(file, O_RDWR);
373 if (fd < 0) {
374 fprintf(stderr, "unable to open %s\n", file);
375 exit(1);
377 first_fd = fd;
378 ret = btrfs_prepare_device(fd, file, zero_end, &dev_block_count);
379 if (block_count == 0)
380 block_count = dev_block_count;
382 for (i = 0; i < 6; i++)
383 blocks[i] = BTRFS_SUPER_INFO_OFFSET + leafsize * i;
385 ret = make_btrfs(fd, file, label, blocks, block_count,
386 nodesize, leafsize,
387 sectorsize, stripesize);
388 if (ret) {
389 fprintf(stderr, "error during mkfs %d\n", ret);
390 exit(1);
392 ret = make_root_dir(fd, file);
393 if (ret) {
394 fprintf(stderr, "failed to setup the root directory\n");
395 exit(1);
397 printf("fs created label %s on %s\n\tnodesize %u leafsize %u "
398 "sectorsize %u bytes %llu\n",
399 label, file, nodesize, leafsize, sectorsize,
400 (unsigned long long)block_count);
402 free(label);
403 root = open_ctree(file, 0);
404 trans = btrfs_start_transaction(root, 1);
406 if (ac == 0)
407 goto raid_groups;
409 btrfs_register_one_device(file);
410 if (!root) {
411 fprintf(stderr, "ctree init failed\n");
412 return -1;
415 zero_end = 1;
416 while(ac-- > 0) {
417 file = av[optind++];
418 ret = check_mounted(file);
419 if (ret < 0) {
420 fprintf(stderr, "error checking %s mount status\n",
421 file);
422 exit(1);
424 if (ret == 1) {
425 fprintf(stderr, "%s is mounted\n", file);
426 exit(1);
428 fd = open(file, O_RDWR);
429 if (fd < 0) {
430 fprintf(stderr, "unable to open %s\n", file);
431 exit(1);
433 ret = btrfs_device_already_in_root(root, fd,
434 BTRFS_SUPER_INFO_OFFSET);
435 if (ret) {
436 fprintf(stderr, "skipping duplicate device %s in FS\n",
437 file);
438 close(fd);
439 continue;
441 ret = btrfs_prepare_device(fd, file, zero_end,
442 &dev_block_count);
444 BUG_ON(ret);
446 ret = btrfs_add_to_fsid(trans, root, fd, file, dev_block_count,
447 sectorsize, sectorsize, sectorsize);
448 BUG_ON(ret);
449 btrfs_register_one_device(file);
452 raid_groups:
453 ret = create_raid_groups(trans, root, data_profile,
454 metadata_profile);
455 btrfs_commit_transaction(trans, root);
456 ret = close_ctree(root);
457 BUG_ON(ret);
458 return 0;