f942dc738e867a617d656d3bc528e1f706e86e65
[platform/upstream/btrfs-progs.git] / mkfs.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
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.
7  *
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.
12  *
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.
17  */
18
19 #define _XOPEN_SOURCE 500
20 #define _GNU_SOURCE
21
22 #ifndef __CHECKER__
23 #include <sys/ioctl.h>
24 #include <sys/mount.h>
25 #include "ioctl.h"
26 #endif
27
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"
45
46 static u64 parse_size(char *s)
47 {
48         int len = strlen(s);
49         char c;
50         u64 mult = 1;
51
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);
66                 }
67                 s[len - 1] = '\0';
68         }
69         return atol(s) * mult;
70 }
71
72 static int make_root_dir(struct btrfs_root *root)
73 {
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;
80
81         trans = btrfs_start_transaction(root, 1);
82         bytes_used = btrfs_super_bytes_used(&root->fs_info->super_copy);
83
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);
90
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);
100
101         root->fs_info->system_allocs = 0;
102         btrfs_commit_transaction(trans, root);
103         trans = btrfs_start_transaction(root, 1);
104         BUG_ON(!trans);
105
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);
115
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;
131
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;
137
138         btrfs_commit_transaction(trans, root);
139 err:
140         return ret;
141 }
142
143 static int recow_roots(struct btrfs_trans_handle *trans,
144                        struct btrfs_root *root)
145 {
146         int ret;
147         struct extent_buffer *tmp;
148         struct btrfs_fs_info *info = root->fs_info;
149
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);
154
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);
159
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);
164
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);
169
170
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);
175
176         return 0;
177 }
178
179 static int create_one_raid_group(struct btrfs_trans_handle *trans,
180                               struct btrfs_root *root, u64 type)
181 {
182         u64 chunk_start;
183         u64 chunk_size;
184         int ret;
185
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;
194 }
195
196 static int create_raid_groups(struct btrfs_trans_handle *trans,
197                               struct btrfs_root *root, u64 data_profile,
198                               u64 metadata_profile)
199 {
200         u64 num_devices = btrfs_super_num_devices(&root->fs_info->super_copy);
201         u64 allowed;
202         int ret;
203
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;
211
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);
217
218                 ret = create_one_raid_group(trans, root,
219                                             BTRFS_BLOCK_GROUP_METADATA |
220                                             (allowed & metadata_profile));
221                 BUG_ON(ret);
222
223                 ret = recow_roots(trans, root);
224                 BUG_ON(ret);
225         }
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);
231         }
232         return 0;
233 }
234
235 static int create_data_reloc_tree(struct btrfs_trans_handle *trans,
236                                   struct btrfs_root *root)
237 {
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;
243
244         ret = btrfs_copy_root(trans, root, root->node, &tmp, objectid);
245         BUG_ON(ret);
246
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);
252
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;
260 }
261
262 static void print_usage(void)
263 {
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);
272 }
273
274 static u64 parse_profile(char *s)
275 {
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();
287         }
288         return 0;
289 }
290
291 static char *parse_label(char *input)
292 {
293         int i;
294         int len = strlen(input);
295
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);
300         }
301         for (i = 0; i < len; i++) {
302                 if (input[i] == '/' || input[i] == '\\') {
303                         fprintf(stderr, "invalid label %s\n", input);
304                         exit(1);
305                 }
306         }
307         return strdup(input);
308 }
309
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}
320 };
321
322 int main(int ac, char **av)
323 {
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[7];
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;
345
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();
380                 }
381         }
382         sectorsize = max(sectorsize, (u32)getpagesize());
383         if (leafsize < sectorsize || (leafsize & (sectorsize - 1))) {
384                 fprintf(stderr, "Illegal leafsize %u\n", leafsize);
385                 exit(1);
386         }
387         if (nodesize < sectorsize || (nodesize & (sectorsize - 1))) {
388                 fprintf(stderr, "Illegal nodesize %u\n", nodesize);
389                 exit(1);
390         }
391         ac = ac - optind;
392         if (ac == 0)
393                 print_usage();
394
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);
400         }
401         if (ret == 1) {
402                 fprintf(stderr, "%s is mounted\n", file);
403                 exit(1);
404         }
405         ac--;
406         fd = open(file, O_RDWR);
407         if (fd < 0) {
408                 fprintf(stderr, "unable to open %s\n", file);
409                 exit(1);
410         }
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;
416
417         blocks[0] = BTRFS_SUPER_INFO_OFFSET;
418         for (i = 1; i < 7; i++) {
419                 blocks[i] = BTRFS_SUPER_INFO_OFFSET + 1024 * 1024 +
420                         leafsize * i;
421         }
422
423         ret = make_btrfs(fd, file, label, blocks, block_count,
424                          nodesize, leafsize,
425                          sectorsize, stripesize);
426         if (ret) {
427                 fprintf(stderr, "error during mkfs %d\n", ret);
428                 exit(1);
429         }
430         root = open_ctree(file, 0, O_RDWR);
431         root->fs_info->alloc_start = alloc_start;
432
433         ret = make_root_dir(root);
434         if (ret) {
435                 fprintf(stderr, "failed to setup the root directory\n");
436                 exit(1);
437         }
438
439         trans = btrfs_start_transaction(root, 1);
440
441         if (ac == 0)
442                 goto raid_groups;
443
444         btrfs_register_one_device(file);
445         if (!root) {
446                 fprintf(stderr, "ctree init failed\n");
447                 return -1;
448         }
449
450         zero_end = 1;
451         while(ac-- > 0) {
452                 file = av[optind++];
453                 ret = check_mounted(file);
454                 if (ret < 0) {
455                         fprintf(stderr, "error checking %s mount status\n",
456                                 file);
457                         exit(1);
458                 }
459                 if (ret == 1) {
460                         fprintf(stderr, "%s is mounted\n", file);
461                         exit(1);
462                 }
463                 fd = open(file, O_RDWR);
464                 if (fd < 0) {
465                         fprintf(stderr, "unable to open %s\n", file);
466                         exit(1);
467                 }
468                 ret = btrfs_device_already_in_root(root, fd,
469                                                    BTRFS_SUPER_INFO_OFFSET);
470                 if (ret) {
471                         fprintf(stderr, "skipping duplicate device %s in FS\n",
472                                 file);
473                         close(fd);
474                         continue;
475                 }
476                 ret = btrfs_prepare_device(fd, file, zero_end,
477                                            &dev_block_count);
478
479                 BUG_ON(ret);
480
481                 ret = btrfs_add_to_fsid(trans, root, fd, file, dev_block_count,
482                                         sectorsize, sectorsize, sectorsize);
483                 BUG_ON(ret);
484                 btrfs_register_one_device(file);
485         }
486
487 raid_groups:
488         ret = create_raid_groups(trans, root, data_profile,
489                                  metadata_profile);
490         BUG_ON(ret);
491
492         ret = create_data_reloc_tree(trans, root);
493         BUG_ON(ret);
494
495         printf("fs created label %s on %s\n\tnodesize %u leafsize %u "
496             "sectorsize %u size %s\n",
497             label, first_file, nodesize, leafsize, sectorsize,
498             pretty_sizes(btrfs_super_total_bytes(&root->fs_info->super_copy)));
499
500         printf("%s\n", BTRFS_BUILD_VERSION);
501         btrfs_commit_transaction(trans, root);
502         ret = close_ctree(root);
503         BUG_ON(ret);
504
505         free(label);
506         return 0;
507 }
508