Add disk format elements for compression
[btrfs-progs-unstable.git] / mkfs.c
blob3c09c3a9335ef8bebc7b1cc206e2eeafc3db20fe
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 free_extent_buffer(tmp);
252 location.objectid = objectid;
253 location.type = BTRFS_ROOT_ITEM_KEY;
254 location.offset = trans->transid;
255 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
256 &location, &root_item);
257 BUG_ON(ret);
258 return 0;
261 static void print_usage(void)
263 fprintf(stderr, "usage: mkfs.btrfs [options] dev [ dev ... ]\n");
264 fprintf(stderr, "options:\n");
265 fprintf(stderr, "\t -b --byte-count total number of bytes in the FS\n");
266 fprintf(stderr, "\t -l --leafsize size of btree leaves\n");
267 fprintf(stderr, "\t -n --nodesize size of btree leaves\n");
268 fprintf(stderr, "\t -s --sectorsize min block allocation\n");
269 fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
270 exit(1);
273 static u64 parse_profile(char *s)
275 if (strcmp(s, "raid0") == 0) {
276 return BTRFS_BLOCK_GROUP_RAID0;
277 } else if (strcmp(s, "raid1") == 0) {
278 return BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
279 } else if (strcmp(s, "raid10") == 0) {
280 return BTRFS_BLOCK_GROUP_RAID10 | BTRFS_BLOCK_GROUP_DUP;
281 } else if (strcmp(s, "single") == 0) {
282 return 0;
283 } else {
284 fprintf(stderr, "Unknown option %s\n", s);
285 print_usage();
287 return 0;
290 static char *parse_label(char *input)
292 int i;
293 int len = strlen(input);
295 if (len > BTRFS_LABEL_SIZE) {
296 fprintf(stderr, "Label %s is too long (max %d)\n", input,
297 BTRFS_LABEL_SIZE);
298 exit(1);
300 for (i = 0; i < len; i++) {
301 if (input[i] == '/' || input[i] == '\\') {
302 fprintf(stderr, "invalid label %s\n", input);
303 exit(1);
306 return strdup(input);
309 static struct option long_options[] = {
310 { "alloc-start", 1, NULL, 'A'},
311 { "byte-count", 1, NULL, 'b' },
312 { "leafsize", 1, NULL, 'l' },
313 { "label", 1, NULL, 'L'},
314 { "metadata", 1, NULL, 'm' },
315 { "nodesize", 1, NULL, 'n' },
316 { "sectorsize", 1, NULL, 's' },
317 { "data", 1, NULL, 'd' },
318 { 0, 0, 0, 0}
321 int main(int ac, char **av)
323 char *file;
324 struct btrfs_root *root;
325 struct btrfs_trans_handle *trans;
326 char *label = NULL;
327 char *first_file;
328 u64 block_count = 0;
329 u64 dev_block_count = 0;
330 u64 blocks[6];
331 u64 alloc_start = 0;
332 u64 metadata_profile = BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_DUP;
333 u64 data_profile = BTRFS_BLOCK_GROUP_RAID0;
334 u32 leafsize = getpagesize();
335 u32 sectorsize = 4096;
336 u32 nodesize = leafsize;
337 u32 stripesize = 4096;
338 int zero_end = 1;
339 int option_index = 0;
340 int fd;
341 int first_fd;
342 int ret;
343 int i;
345 while(1) {
346 int c;
347 c = getopt_long(ac, av, "A:b:l:n:s:m:d:L:", long_options,
348 &option_index);
349 if (c < 0)
350 break;
351 switch(c) {
352 case 'A':
353 alloc_start = parse_size(optarg);
354 break;
355 case 'd':
356 data_profile = parse_profile(optarg);
357 break;
358 case 'l':
359 leafsize = parse_size(optarg);
360 break;
361 case 'L':
362 label = parse_label(optarg);
363 break;
364 case 'm':
365 metadata_profile = parse_profile(optarg);
366 break;
367 case 'n':
368 nodesize = parse_size(optarg);
369 break;
370 case 's':
371 sectorsize = parse_size(optarg);
372 break;
373 case 'b':
374 block_count = parse_size(optarg);
375 zero_end = 0;
376 break;
377 default:
378 print_usage();
381 sectorsize = max(sectorsize, (u32)getpagesize());
382 if (leafsize < sectorsize || (leafsize & (sectorsize - 1))) {
383 fprintf(stderr, "Illegal leafsize %u\n", leafsize);
384 exit(1);
386 if (nodesize < sectorsize || (nodesize & (sectorsize - 1))) {
387 fprintf(stderr, "Illegal nodesize %u\n", nodesize);
388 exit(1);
390 ac = ac - optind;
391 if (ac == 0)
392 print_usage();
394 file = av[optind++];
395 ret = check_mounted(file);
396 if (ret < 0) {
397 fprintf(stderr, "error checking %s mount status\n", file);
398 exit(1);
400 if (ret == 1) {
401 fprintf(stderr, "%s is mounted\n", file);
402 exit(1);
404 ac--;
405 fd = open(file, O_RDWR);
406 if (fd < 0) {
407 fprintf(stderr, "unable to open %s\n", file);
408 exit(1);
410 first_fd = fd;
411 first_file = file;
412 ret = btrfs_prepare_device(fd, file, zero_end, &dev_block_count);
413 if (block_count == 0)
414 block_count = dev_block_count;
416 for (i = 0; i < 6; i++)
417 blocks[i] = BTRFS_SUPER_INFO_OFFSET + leafsize * i;
419 ret = make_btrfs(fd, file, label, blocks, block_count,
420 nodesize, leafsize,
421 sectorsize, stripesize);
422 if (ret) {
423 fprintf(stderr, "error during mkfs %d\n", ret);
424 exit(1);
426 root = open_ctree(file, 0, O_RDWR);
427 root->fs_info->alloc_start = alloc_start;
429 ret = make_root_dir(root);
430 if (ret) {
431 fprintf(stderr, "failed to setup the root directory\n");
432 exit(1);
435 trans = btrfs_start_transaction(root, 1);
437 if (ac == 0)
438 goto raid_groups;
440 btrfs_register_one_device(file);
441 if (!root) {
442 fprintf(stderr, "ctree init failed\n");
443 return -1;
446 zero_end = 1;
447 while(ac-- > 0) {
448 file = av[optind++];
449 ret = check_mounted(file);
450 if (ret < 0) {
451 fprintf(stderr, "error checking %s mount status\n",
452 file);
453 exit(1);
455 if (ret == 1) {
456 fprintf(stderr, "%s is mounted\n", file);
457 exit(1);
459 fd = open(file, O_RDWR);
460 if (fd < 0) {
461 fprintf(stderr, "unable to open %s\n", file);
462 exit(1);
464 ret = btrfs_device_already_in_root(root, fd,
465 BTRFS_SUPER_INFO_OFFSET);
466 if (ret) {
467 fprintf(stderr, "skipping duplicate device %s in FS\n",
468 file);
469 close(fd);
470 continue;
472 ret = btrfs_prepare_device(fd, file, zero_end,
473 &dev_block_count);
475 BUG_ON(ret);
477 ret = btrfs_add_to_fsid(trans, root, fd, file, dev_block_count,
478 sectorsize, sectorsize, sectorsize);
479 BUG_ON(ret);
480 btrfs_register_one_device(file);
483 raid_groups:
484 ret = create_raid_groups(trans, root, data_profile,
485 metadata_profile);
486 BUG_ON(ret);
488 ret = create_data_reloc_tree(trans, root);
489 BUG_ON(ret);
491 printf("fs created label %s on %s\n\tnodesize %u leafsize %u "
492 "sectorsize %u size %s\n",
493 label, first_file, nodesize, leafsize, sectorsize,
494 pretty_sizes(btrfs_super_total_bytes(&root->fs_info->super_copy)));
496 printf("%s\n", BTRFS_BUILD_VERSION);
497 btrfs_commit_transaction(trans, root);
498 ret = close_ctree(root);
499 BUG_ON(ret);
501 free(label);
502 return 0;