Btrfs image tool
[btrfs-progs-unstable.git] / mkfs.c
blobdae43e97cd2bd563a3abf6de38be4082a5e9ca3a
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
22 #ifndef __CHECKER__
23 #include <sys/ioctl.h>
24 #include <sys/mount.h>
25 #include "ioctl.h"
26 #endif
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <unistd.h>
34 #include <getopt.h>
35 #include <uuid/uuid.h>
36 #include <linux/fs.h>
37 #include <ctype.h>
38 #include "kerncompat.h"
39 #include "ctree.h"
40 #include "disk-io.h"
41 #include "volumes.h"
42 #include "transaction.h"
43 #include "utils.h"
44 #include "version.h"
46 static u64 parse_size(char *s)
48 int len = strlen(s);
49 char c;
50 u64 mult = 1;
52 if (!isdigit(s[len - 1])) {
53 c = tolower(s[len - 1]);
54 switch (c) {
55 case 'g':
56 mult *= 1024;
57 case 'm':
58 mult *= 1024;
59 case 'k':
60 mult *= 1024;
61 case 'b':
62 break;
63 default:
64 fprintf(stderr, "Unknown size descriptor %c\n", c);
65 exit(1);
67 s[len - 1] = '\0';
69 return atol(s) * mult;
72 static int make_root_dir(struct btrfs_root *root)
74 struct btrfs_trans_handle *trans;
75 struct btrfs_key location;
76 u64 bytes_used;
77 u64 chunk_start = 0;
78 u64 chunk_size = 0;
79 int ret;
81 trans = btrfs_start_transaction(root, 1);
82 bytes_used = btrfs_super_bytes_used(&root->fs_info->super_copy);
84 root->fs_info->system_allocs = 1;
85 ret = btrfs_make_block_group(trans, root, bytes_used,
86 BTRFS_BLOCK_GROUP_SYSTEM,
87 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
88 0, BTRFS_MKFS_SYSTEM_GROUP_SIZE);
89 BUG_ON(ret);
91 ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
92 &chunk_start, &chunk_size,
93 BTRFS_BLOCK_GROUP_METADATA);
94 BUG_ON(ret);
95 ret = btrfs_make_block_group(trans, root, 0,
96 BTRFS_BLOCK_GROUP_METADATA,
97 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
98 chunk_start, chunk_size);
99 BUG_ON(ret);
101 root->fs_info->system_allocs = 0;
102 btrfs_commit_transaction(trans, root);
103 trans = btrfs_start_transaction(root, 1);
104 BUG_ON(!trans);
106 ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
107 &chunk_start, &chunk_size,
108 BTRFS_BLOCK_GROUP_DATA);
109 BUG_ON(ret);
110 ret = btrfs_make_block_group(trans, root, 0,
111 BTRFS_BLOCK_GROUP_DATA,
112 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
113 chunk_start, chunk_size);
114 BUG_ON(ret);
116 ret = btrfs_make_root_dir(trans, root->fs_info->tree_root,
117 BTRFS_ROOT_TREE_DIR_OBJECTID);
118 if (ret)
119 goto err;
120 ret = btrfs_make_root_dir(trans, root, BTRFS_FIRST_FREE_OBJECTID);
121 if (ret)
122 goto err;
123 memcpy(&location, &root->fs_info->fs_root->root_key, sizeof(location));
124 location.offset = (u64)-1;
125 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
126 "default", 7,
127 btrfs_super_root_dir(&root->fs_info->super_copy),
128 &location, BTRFS_FT_DIR);
129 if (ret)
130 goto err;
132 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
133 "default", 7, location.objectid,
134 BTRFS_ROOT_TREE_DIR_OBJECTID, 0);
135 if (ret)
136 goto err;
138 btrfs_commit_transaction(trans, 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 int create_data_reloc_tree(struct btrfs_trans_handle *trans,
236 struct btrfs_root *root)
238 struct btrfs_key location;
239 struct btrfs_root_item root_item;
240 struct extent_buffer *tmp;
241 u64 objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
242 int ret;
244 ret = btrfs_copy_root(trans, root, root->node, &tmp, objectid);
245 BUG_ON(ret);
247 memcpy(&root_item, &root->root_item, sizeof(root_item));
248 btrfs_set_root_bytenr(&root_item, tmp->start);
249 btrfs_set_root_level(&root_item, btrfs_header_level(tmp));
250 btrfs_set_root_generation(&root_item, trans->transid);
251 free_extent_buffer(tmp);
253 location.objectid = objectid;
254 location.type = BTRFS_ROOT_ITEM_KEY;
255 location.offset = trans->transid;
256 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
257 &location, &root_item);
258 BUG_ON(ret);
259 return 0;
262 static void print_usage(void)
264 fprintf(stderr, "usage: mkfs.btrfs [options] dev [ dev ... ]\n");
265 fprintf(stderr, "options:\n");
266 fprintf(stderr, "\t -b --byte-count total number of bytes in the FS\n");
267 fprintf(stderr, "\t -l --leafsize size of btree leaves\n");
268 fprintf(stderr, "\t -n --nodesize size of btree leaves\n");
269 fprintf(stderr, "\t -s --sectorsize min block allocation\n");
270 fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
271 exit(1);
274 static u64 parse_profile(char *s)
276 if (strcmp(s, "raid0") == 0) {
277 return BTRFS_BLOCK_GROUP_RAID0;
278 } else if (strcmp(s, "raid1") == 0) {
279 return BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
280 } else if (strcmp(s, "raid10") == 0) {
281 return BTRFS_BLOCK_GROUP_RAID10 | BTRFS_BLOCK_GROUP_DUP;
282 } else if (strcmp(s, "single") == 0) {
283 return 0;
284 } else {
285 fprintf(stderr, "Unknown option %s\n", s);
286 print_usage();
288 return 0;
291 static char *parse_label(char *input)
293 int i;
294 int len = strlen(input);
296 if (len > BTRFS_LABEL_SIZE) {
297 fprintf(stderr, "Label %s is too long (max %d)\n", input,
298 BTRFS_LABEL_SIZE);
299 exit(1);
301 for (i = 0; i < len; i++) {
302 if (input[i] == '/' || input[i] == '\\') {
303 fprintf(stderr, "invalid label %s\n", input);
304 exit(1);
307 return strdup(input);
310 static struct option long_options[] = {
311 { "alloc-start", 1, NULL, 'A'},
312 { "byte-count", 1, NULL, 'b' },
313 { "leafsize", 1, NULL, 'l' },
314 { "label", 1, NULL, 'L'},
315 { "metadata", 1, NULL, 'm' },
316 { "nodesize", 1, NULL, 'n' },
317 { "sectorsize", 1, NULL, 's' },
318 { "data", 1, NULL, 'd' },
319 { 0, 0, 0, 0}
322 int main(int ac, char **av)
324 char *file;
325 struct btrfs_root *root;
326 struct btrfs_trans_handle *trans;
327 char *label = NULL;
328 char *first_file;
329 u64 block_count = 0;
330 u64 dev_block_count = 0;
331 u64 blocks[6];
332 u64 alloc_start = 0;
333 u64 metadata_profile = BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
334 u64 data_profile = BTRFS_BLOCK_GROUP_RAID0;
335 u32 leafsize = getpagesize();
336 u32 sectorsize = 4096;
337 u32 nodesize = leafsize;
338 u32 stripesize = 4096;
339 int zero_end = 1;
340 int option_index = 0;
341 int fd;
342 int first_fd;
343 int ret;
344 int i;
346 while(1) {
347 int c;
348 c = getopt_long(ac, av, "A:b:l:n:s:m:d:L:", long_options,
349 &option_index);
350 if (c < 0)
351 break;
352 switch(c) {
353 case 'A':
354 alloc_start = parse_size(optarg);
355 break;
356 case 'd':
357 data_profile = parse_profile(optarg);
358 break;
359 case 'l':
360 leafsize = parse_size(optarg);
361 break;
362 case 'L':
363 label = parse_label(optarg);
364 break;
365 case 'm':
366 metadata_profile = parse_profile(optarg);
367 break;
368 case 'n':
369 nodesize = parse_size(optarg);
370 break;
371 case 's':
372 sectorsize = parse_size(optarg);
373 break;
374 case 'b':
375 block_count = parse_size(optarg);
376 zero_end = 0;
377 break;
378 default:
379 print_usage();
382 sectorsize = max(sectorsize, (u32)getpagesize());
383 if (leafsize < sectorsize || (leafsize & (sectorsize - 1))) {
384 fprintf(stderr, "Illegal leafsize %u\n", leafsize);
385 exit(1);
387 if (nodesize < sectorsize || (nodesize & (sectorsize - 1))) {
388 fprintf(stderr, "Illegal nodesize %u\n", nodesize);
389 exit(1);
391 ac = ac - optind;
392 if (ac == 0)
393 print_usage();
395 file = av[optind++];
396 ret = check_mounted(file);
397 if (ret < 0) {
398 fprintf(stderr, "error checking %s mount status\n", file);
399 exit(1);
401 if (ret == 1) {
402 fprintf(stderr, "%s is mounted\n", file);
403 exit(1);
405 ac--;
406 fd = open(file, O_RDWR);
407 if (fd < 0) {
408 fprintf(stderr, "unable to open %s\n", file);
409 exit(1);
411 first_fd = fd;
412 first_file = file;
413 ret = btrfs_prepare_device(fd, file, zero_end, &dev_block_count);
414 if (block_count == 0)
415 block_count = dev_block_count;
417 for (i = 0; i < 6; i++)
418 blocks[i] = BTRFS_SUPER_INFO_OFFSET + leafsize * i;
420 ret = make_btrfs(fd, file, label, blocks, block_count,
421 nodesize, leafsize,
422 sectorsize, stripesize);
423 if (ret) {
424 fprintf(stderr, "error during mkfs %d\n", ret);
425 exit(1);
427 root = open_ctree(file, 0, O_RDWR);
428 root->fs_info->alloc_start = alloc_start;
430 ret = make_root_dir(root);
431 if (ret) {
432 fprintf(stderr, "failed to setup the root directory\n");
433 exit(1);
436 trans = btrfs_start_transaction(root, 1);
438 if (ac == 0)
439 goto raid_groups;
441 btrfs_register_one_device(file);
442 if (!root) {
443 fprintf(stderr, "ctree init failed\n");
444 return -1;
447 zero_end = 1;
448 while(ac-- > 0) {
449 file = av[optind++];
450 ret = check_mounted(file);
451 if (ret < 0) {
452 fprintf(stderr, "error checking %s mount status\n",
453 file);
454 exit(1);
456 if (ret == 1) {
457 fprintf(stderr, "%s is mounted\n", file);
458 exit(1);
460 fd = open(file, O_RDWR);
461 if (fd < 0) {
462 fprintf(stderr, "unable to open %s\n", file);
463 exit(1);
465 ret = btrfs_device_already_in_root(root, fd,
466 BTRFS_SUPER_INFO_OFFSET);
467 if (ret) {
468 fprintf(stderr, "skipping duplicate device %s in FS\n",
469 file);
470 close(fd);
471 continue;
473 ret = btrfs_prepare_device(fd, file, zero_end,
474 &dev_block_count);
476 BUG_ON(ret);
478 ret = btrfs_add_to_fsid(trans, root, fd, file, dev_block_count,
479 sectorsize, sectorsize, sectorsize);
480 BUG_ON(ret);
481 btrfs_register_one_device(file);
484 raid_groups:
485 ret = create_raid_groups(trans, root, data_profile,
486 metadata_profile);
487 BUG_ON(ret);
489 ret = create_data_reloc_tree(trans, root);
490 BUG_ON(ret);
492 printf("fs created label %s on %s\n\tnodesize %u leafsize %u "
493 "sectorsize %u size %s\n",
494 label, first_file, nodesize, leafsize, sectorsize,
495 pretty_sizes(btrfs_super_total_bytes(&root->fs_info->super_copy)));
497 printf("%s\n", BTRFS_BUILD_VERSION);
498 btrfs_commit_transaction(trans, root);
499 ret = close_ctree(root);
500 BUG_ON(ret);
502 free(label);
503 return 0;