blob: d8eb1a3047dc3b73acbe634b06f77cf2ae589393 [file] [log] [blame]
Colin Crossec0a2e82010-06-11 14:21:37 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define _GNU_SOURCE
18
Colin Crossec0a2e82010-06-11 14:21:37 -070019#include <dirent.h>
20#include <libgen.h>
Colin Cross881cca22010-06-20 23:57:06 -070021#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <unistd.h>
25#include <sys/stat.h>
26#include <sys/types.h>
Colin Crossec0a2e82010-06-11 14:21:37 -070027
28#include "make_ext4fs.h"
Colin Cross7a8bee72010-06-20 14:53:14 -070029#include "output_file.h"
Colin Crossec0a2e82010-06-11 14:21:37 -070030#include "ext4_utils.h"
31#include "allocate.h"
Colin Crossec0a2e82010-06-11 14:21:37 -070032#include "contents.h"
Colin Crossec0a2e82010-06-11 14:21:37 -070033#include "uuid.h"
34
Colin Crossec0a2e82010-06-11 14:21:37 -070035#ifdef ANDROID
36#include <private/android_filesystem_config.h>
37#endif
38
39/* TODO: Not implemented:
40 Allocating blocks in the same block group as the file inode
41 Hash or binary tree directories
Colin Cross7a8bee72010-06-20 14:53:14 -070042 Special files: sockets, devices, fifos
Colin Crossec0a2e82010-06-11 14:21:37 -070043 */
44
Colin Crossec0a2e82010-06-11 14:21:37 -070045static int filter_dot(const struct dirent *d)
46{
47 return (strcmp(d->d_name, "..") && strcmp(d->d_name, "."));
48}
49
50static u32 build_default_directory_structure()
51{
52 u32 inode;
53 u32 root_inode;
54 struct dentry dentries = {
55 .filename = "lost+found",
56 .file_type = EXT4_FT_DIR,
57 .mode = S_IRWXU,
58 .uid = 0,
Colin Crossde61f982010-08-04 15:06:09 -070059 .gid = 0,
60 .mtime = 0,
Colin Crossec0a2e82010-06-11 14:21:37 -070061 };
62 root_inode = make_directory(0, 1, &dentries, 1);
63 inode = make_directory(root_inode, 0, NULL, 0);
64 *dentries.inode = inode;
Ken Sumrall75249ed2010-08-13 16:04:49 -070065 inode_set_permissions(inode, dentries.mode,
66 dentries.uid, dentries.gid, dentries.mtime);
Colin Crossec0a2e82010-06-11 14:21:37 -070067
68 return root_inode;
69}
70
71/* Read a local directory and create the same tree in the generated filesystem.
72 Calls itself recursively with each directory in the given directory */
73static u32 build_directory_structure(const char *full_path, const char *dir_path,
74 u32 dir_inode, int android)
75{
76 int entries = 0;
77 struct dentry *dentries;
78 struct dirent **namelist;
79 struct stat stat;
80 int ret;
81 int i;
82 u32 inode;
83 u32 entry_inode;
84 u32 dirs = 0;
85
Colin Cross8aef66d2010-06-20 23:22:12 -070086 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort);
Colin Crossec0a2e82010-06-11 14:21:37 -070087 if (entries < 0) {
88 error_errno("scandir");
89 return EXT4_ALLOCATE_FAILED;
90 }
91
92 dentries = calloc(entries, sizeof(struct dentry));
93 if (dentries == NULL)
94 critical_error_errno("malloc");
95
96 for (i = 0; i < entries; i++) {
97 dentries[i].filename = strdup(namelist[i]->d_name);
98 if (dentries[i].filename == NULL)
99 critical_error_errno("strdup");
100
101 asprintf(&dentries[i].path, "%s/%s", dir_path, namelist[i]->d_name);
102 asprintf(&dentries[i].full_path, "%s/%s", full_path, namelist[i]->d_name);
103
104 free(namelist[i]);
105
106 ret = lstat(dentries[i].full_path, &stat);
107 if (ret < 0) {
108 error_errno("lstat");
109 i--;
110 entries--;
111 continue;
112 }
113
114 dentries[i].size = stat.st_size;
115 dentries[i].mode = stat.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO);
Colin Crossde61f982010-08-04 15:06:09 -0700116 dentries[i].mtime = stat.st_mtime;
Colin Crossec0a2e82010-06-11 14:21:37 -0700117 if (android) {
118#ifdef ANDROID
119 unsigned int mode = 0;
120 unsigned int uid = 0;
121 unsigned int gid = 0;
122 int dir = S_ISDIR(stat.st_mode);
123 fs_config(dentries[i].path, dir, &uid, &gid, &mode);
124 dentries[i].mode = mode;
125 dentries[i].uid = uid;
126 dentries[i].gid = gid;
127#else
128 error("can't set android permissions - built without android support");
129#endif
130 }
131
132 if (S_ISREG(stat.st_mode)) {
133 dentries[i].file_type = EXT4_FT_REG_FILE;
134 } else if (S_ISDIR(stat.st_mode)) {
135 dentries[i].file_type = EXT4_FT_DIR;
136 dirs++;
137 } else if (S_ISCHR(stat.st_mode)) {
138 dentries[i].file_type = EXT4_FT_CHRDEV;
139 } else if (S_ISBLK(stat.st_mode)) {
140 dentries[i].file_type = EXT4_FT_BLKDEV;
141 } else if (S_ISFIFO(stat.st_mode)) {
142 dentries[i].file_type = EXT4_FT_FIFO;
143 } else if (S_ISSOCK(stat.st_mode)) {
144 dentries[i].file_type = EXT4_FT_SOCK;
145 } else if (S_ISLNK(stat.st_mode)) {
146 dentries[i].file_type = EXT4_FT_SYMLINK;
147 dentries[i].link = calloc(info.block_size, 1);
148 readlink(dentries[i].full_path, dentries[i].link, info.block_size - 1);
149 } else {
150 error("unknown file type on %s", dentries[i].path);
151 i--;
152 entries--;
153 }
154 }
155 free(namelist);
156
157 inode = make_directory(dir_inode, entries, dentries, dirs);
158
159 for (i = 0; i < entries; i++) {
160 if (dentries[i].file_type == EXT4_FT_REG_FILE) {
161 entry_inode = make_file(dentries[i].full_path, dentries[i].size);
162 } else if (dentries[i].file_type == EXT4_FT_DIR) {
163 entry_inode = build_directory_structure(dentries[i].full_path,
164 dentries[i].path, inode, android);
165 } else if (dentries[i].file_type == EXT4_FT_SYMLINK) {
166 entry_inode = make_link(dentries[i].full_path, dentries[i].link);
167 } else {
168 error("unknown file type on %s", dentries[i].path);
169 entry_inode = 0;
170 }
171 *dentries[i].inode = entry_inode;
172
173 ret = inode_set_permissions(entry_inode, dentries[i].mode,
Colin Crossde61f982010-08-04 15:06:09 -0700174 dentries[i].uid, dentries[i].gid,
175 dentries[i].mtime);
Colin Crossec0a2e82010-06-11 14:21:37 -0700176 if (ret)
177 error("failed to set permissions on %s\n", dentries[i].path);
178
179 free(dentries[i].path);
180 free(dentries[i].full_path);
181 free(dentries[i].link);
182 free((void *)dentries[i].filename);
183 }
184
185 free(dentries);
186 return inode;
187}
188
189static u32 compute_block_size()
190{
191 return 4096;
192}
193
Colin Crosse4b5ae82010-08-03 14:10:07 -0700194static u32 compute_journal_blocks()
195{
196 u32 journal_blocks = DIV_ROUND_UP(info.len, info.block_size) / 64;
197 if (journal_blocks < 1024)
198 journal_blocks = 1024;
199 if (journal_blocks > 32768)
200 journal_blocks = 32768;
201 return journal_blocks;
202}
203
Colin Crossec0a2e82010-06-11 14:21:37 -0700204static u32 compute_blocks_per_group()
205{
206 return info.block_size * 8;
207}
208
209static u32 compute_inodes()
210{
211 return DIV_ROUND_UP(info.len, info.block_size) / 4;
212}
213
214static u32 compute_inodes_per_group()
215{
216 u32 blocks = DIV_ROUND_UP(info.len, info.block_size);
217 u32 block_groups = DIV_ROUND_UP(blocks, info.blocks_per_group);
218 return DIV_ROUND_UP(info.inodes, block_groups);
219}
220
Colin Cross22742ce2010-12-22 16:01:52 -0800221static u32 compute_bg_desc_reserve_blocks()
222{
223 u32 blocks = DIV_ROUND_UP(info.len, info.block_size);
224 u32 block_groups = DIV_ROUND_UP(blocks, info.blocks_per_group);
225 u32 bg_desc_blocks = DIV_ROUND_UP(block_groups * sizeof(struct ext2_group_desc),
226 info.block_size);
227
228 u32 bg_desc_reserve_blocks =
229 DIV_ROUND_UP(block_groups * 1024 * sizeof(struct ext2_group_desc),
230 info.block_size) - bg_desc_blocks;
231
232 if (bg_desc_reserve_blocks > info.block_size / sizeof(u32))
233 bg_desc_reserve_blocks = info.block_size / sizeof(u32);
234
235 return bg_desc_reserve_blocks;
236}
237
Doug Zongker263eefd2010-06-29 17:23:14 -0700238void reset_ext4fs_info() {
239 // Reset all the global data structures used by make_ext4fs so it
240 // can be called again.
241 memset(&info, 0, sizeof(info));
242 memset(&aux_info, 0, sizeof(aux_info));
243 free_data_blocks();
Colin Crossec0a2e82010-06-11 14:21:37 -0700244}
245
Doug Zongker263eefd2010-06-29 17:23:14 -0700246int make_ext4fs(const char *filename, const char *directory,
Ken Sumrall75249ed2010-08-13 16:04:49 -0700247 char *mountpoint, int android, int gzip, int sparse)
Colin Crossec0a2e82010-06-11 14:21:37 -0700248{
Doug Zongker263eefd2010-06-29 17:23:14 -0700249 u32 root_inode_num;
250 u16 root_mode;
Colin Crossec0a2e82010-06-11 14:21:37 -0700251
252 if (info.len == 0)
253 info.len = get_file_size(filename);
254
255 if (info.len <= 0) {
256 fprintf(stderr, "Need size of filesystem\n");
Doug Zongker263eefd2010-06-29 17:23:14 -0700257 return EXIT_FAILURE;
Colin Crossec0a2e82010-06-11 14:21:37 -0700258 }
259
Colin Crossec0a2e82010-06-11 14:21:37 -0700260 if (info.block_size <= 0)
261 info.block_size = compute_block_size();
262
Colin Crosse4b5ae82010-08-03 14:10:07 -0700263 if (info.journal_blocks == 0)
264 info.journal_blocks = compute_journal_blocks();
265
266 if (info.no_journal == 0)
267 info.feat_compat = EXT4_FEATURE_COMPAT_HAS_JOURNAL;
268 else
269 info.journal_blocks = 0;
270
Colin Crossec0a2e82010-06-11 14:21:37 -0700271 if (info.blocks_per_group <= 0)
272 info.blocks_per_group = compute_blocks_per_group();
273
274 if (info.inodes <= 0)
275 info.inodes = compute_inodes();
276
277 if (info.inode_size <= 0)
278 info.inode_size = 256;
279
280 if (info.label == NULL)
281 info.label = "";
282
283 info.inodes_per_group = compute_inodes_per_group();
284
285 info.feat_compat |=
286 EXT4_FEATURE_COMPAT_RESIZE_INODE;
287
288 info.feat_ro_compat |=
289 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER |
290 EXT4_FEATURE_RO_COMPAT_LARGE_FILE;
291
292 info.feat_incompat |=
293 EXT4_FEATURE_INCOMPAT_EXTENTS |
294 EXT4_FEATURE_INCOMPAT_FILETYPE;
295
296
Colin Cross22742ce2010-12-22 16:01:52 -0800297 info.bg_desc_reserve_blocks = compute_bg_desc_reserve_blocks();
298
Colin Crossec0a2e82010-06-11 14:21:37 -0700299 printf("Creating filesystem with parameters:\n");
300 printf(" Size: %llu\n", info.len);
301 printf(" Block size: %d\n", info.block_size);
302 printf(" Blocks per group: %d\n", info.blocks_per_group);
303 printf(" Inodes per group: %d\n", info.inodes_per_group);
304 printf(" Inode size: %d\n", info.inode_size);
Colin Crosse4b5ae82010-08-03 14:10:07 -0700305 printf(" Journal blocks: %d\n", info.journal_blocks);
Colin Crossec0a2e82010-06-11 14:21:37 -0700306 printf(" Label: %s\n", info.label);
307
308 ext4_create_fs_aux_info();
309
310 printf(" Blocks: %llu\n", aux_info.len_blocks);
311 printf(" Block groups: %d\n", aux_info.groups);
Colin Cross22742ce2010-12-22 16:01:52 -0800312 printf(" Reserved block group size: %d\n", info.bg_desc_reserve_blocks);
Colin Crossec0a2e82010-06-11 14:21:37 -0700313
314 block_allocator_init();
315
316 ext4_fill_in_sb();
317
318 if (reserve_inodes(0, 10) == EXT4_ALLOCATE_FAILED)
319 error("failed to reserve first 10 inodes");
320
321 if (info.feat_compat & EXT4_FEATURE_COMPAT_HAS_JOURNAL)
322 ext4_create_journal_inode();
323
324 if (info.feat_compat & EXT4_FEATURE_COMPAT_RESIZE_INODE)
325 ext4_create_resize_inode();
326
327 if (directory)
328 root_inode_num = build_directory_structure(directory, mountpoint, 0, android);
329 else
330 root_inode_num = build_default_directory_structure();
Doug Zongker263eefd2010-06-29 17:23:14 -0700331
Colin Crossec0a2e82010-06-11 14:21:37 -0700332 root_mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
Colin Crossde61f982010-08-04 15:06:09 -0700333 inode_set_permissions(root_inode_num, root_mode, 0, 0, 0);
Colin Crossec0a2e82010-06-11 14:21:37 -0700334
335 ext4_update_free();
336
337 printf("Created filesystem with %d/%d inodes and %d/%d blocks\n",
338 aux_info.sb->s_inodes_count - aux_info.sb->s_free_inodes_count,
339 aux_info.sb->s_inodes_count,
340 aux_info.sb->s_blocks_count_lo - aux_info.sb->s_free_blocks_count_lo,
341 aux_info.sb->s_blocks_count_lo);
342
Ken Sumrall75249ed2010-08-13 16:04:49 -0700343 write_ext4_image(filename, gzip, sparse);
Colin Crossec0a2e82010-06-11 14:21:37 -0700344
345 return 0;
346}