1 | /*
|
---|
2 | * Copyright (c) 2011 Martin Sucha
|
---|
3 | * Copyright (c) 2012 Frantisek Princ
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup libext4
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /**
|
---|
34 | * @file libext4_filesystem.c
|
---|
35 | * @brief More complex filesystem operations.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <byteorder.h>
|
---|
39 | #include <errno.h>
|
---|
40 | #include <malloc.h>
|
---|
41 | #include <ipc/vfs.h>
|
---|
42 | #include "libext4.h"
|
---|
43 |
|
---|
44 | /** Initialize filesystem and read all needed data.
|
---|
45 | *
|
---|
46 | * @param fs Filesystem instance to be initialized
|
---|
47 | * @param service_id Identifier if device with the filesystem
|
---|
48 | *
|
---|
49 | * @return Error code
|
---|
50 | *
|
---|
51 | */
|
---|
52 | int ext4_filesystem_init(ext4_filesystem_t *fs, service_id_t service_id,
|
---|
53 | enum cache_mode cmode)
|
---|
54 | {
|
---|
55 | fs->device = service_id;
|
---|
56 |
|
---|
57 | /* Initialize block library (4096 is size of communication channel) */
|
---|
58 | int rc = block_init(EXCHANGE_SERIALIZE, fs->device, 4096);
|
---|
59 | if (rc != EOK)
|
---|
60 | return rc;
|
---|
61 |
|
---|
62 | /* Read superblock from device to memory */
|
---|
63 | ext4_superblock_t *temp_superblock;
|
---|
64 | rc = ext4_superblock_read_direct(fs->device, &temp_superblock);
|
---|
65 | if (rc != EOK) {
|
---|
66 | block_fini(fs->device);
|
---|
67 | return rc;
|
---|
68 | }
|
---|
69 |
|
---|
70 | /* Read block size from superblock and check */
|
---|
71 | uint32_t block_size = ext4_superblock_get_block_size(temp_superblock);
|
---|
72 | if (block_size > EXT4_MAX_BLOCK_SIZE) {
|
---|
73 | block_fini(fs->device);
|
---|
74 | return ENOTSUP;
|
---|
75 | }
|
---|
76 |
|
---|
77 | /* Initialize block caching by libblock */
|
---|
78 | rc = block_cache_init(service_id, block_size, 0, cmode);
|
---|
79 | if (rc != EOK) {
|
---|
80 | block_fini(fs->device);
|
---|
81 | return rc;
|
---|
82 | }
|
---|
83 |
|
---|
84 | /* Compute limits for indirect block levels */
|
---|
85 | uint32_t block_ids_per_block = block_size / sizeof(uint32_t);
|
---|
86 | fs->inode_block_limits[0] = EXT4_INODE_DIRECT_BLOCK_COUNT;
|
---|
87 | fs->inode_blocks_per_level[0] = 1;
|
---|
88 | for (unsigned int i = 1; i < 4; i++) {
|
---|
89 | fs->inode_blocks_per_level[i] = fs->inode_blocks_per_level[i - 1] *
|
---|
90 | block_ids_per_block;
|
---|
91 | fs->inode_block_limits[i] = fs->inode_block_limits[i - 1] +
|
---|
92 | fs->inode_blocks_per_level[i];
|
---|
93 | }
|
---|
94 |
|
---|
95 | /* Return loaded superblock */
|
---|
96 | fs->superblock = temp_superblock;
|
---|
97 |
|
---|
98 | uint16_t state = ext4_superblock_get_state(fs->superblock);
|
---|
99 |
|
---|
100 | if (((state & EXT4_SUPERBLOCK_STATE_VALID_FS) !=
|
---|
101 | EXT4_SUPERBLOCK_STATE_VALID_FS) ||
|
---|
102 | ((state & EXT4_SUPERBLOCK_STATE_ERROR_FS) ==
|
---|
103 | EXT4_SUPERBLOCK_STATE_ERROR_FS)) {
|
---|
104 | block_cache_fini(fs->device);
|
---|
105 | block_fini(fs->device);
|
---|
106 | return ENOTSUP;
|
---|
107 | }
|
---|
108 |
|
---|
109 | /* Mark system as mounted */
|
---|
110 | ext4_superblock_set_state(fs->superblock, EXT4_SUPERBLOCK_STATE_ERROR_FS);
|
---|
111 | rc = ext4_superblock_write_direct(fs->device, fs->superblock);
|
---|
112 | if (rc != EOK) {
|
---|
113 | block_cache_fini(fs->device);
|
---|
114 | block_fini(fs->device);
|
---|
115 | return rc;
|
---|
116 | }
|
---|
117 |
|
---|
118 | uint16_t mnt_count = ext4_superblock_get_mount_count(fs->superblock);
|
---|
119 | ext4_superblock_set_mount_count(fs->superblock, mnt_count + 1);
|
---|
120 |
|
---|
121 | return EOK;
|
---|
122 | }
|
---|
123 |
|
---|
124 | /** Destroy filesystem instance (used by unmount operation).
|
---|
125 | *
|
---|
126 | * @param fs Filesystem to be destroyed
|
---|
127 | *
|
---|
128 | * @return Error code
|
---|
129 | *
|
---|
130 | */
|
---|
131 | int ext4_filesystem_fini(ext4_filesystem_t *fs)
|
---|
132 | {
|
---|
133 | /* Write the superblock to the device */
|
---|
134 | ext4_superblock_set_state(fs->superblock, EXT4_SUPERBLOCK_STATE_VALID_FS);
|
---|
135 | int rc = ext4_superblock_write_direct(fs->device, fs->superblock);
|
---|
136 |
|
---|
137 | /* Release memory space for superblock */
|
---|
138 | free(fs->superblock);
|
---|
139 |
|
---|
140 | /* Finish work with block library */
|
---|
141 | block_cache_fini(fs->device);
|
---|
142 | block_fini(fs->device);
|
---|
143 |
|
---|
144 | return rc;
|
---|
145 | }
|
---|
146 |
|
---|
147 | /** Check sanity of the filesystem.
|
---|
148 | *
|
---|
149 | * Main is the check of the superblock structure.
|
---|
150 | *
|
---|
151 | * @param fs Filesystem to be checked
|
---|
152 | *
|
---|
153 | * @return Error code
|
---|
154 | *
|
---|
155 | */
|
---|
156 | int ext4_filesystem_check_sanity(ext4_filesystem_t *fs)
|
---|
157 | {
|
---|
158 | /* Check superblock */
|
---|
159 | return ext4_superblock_check_sanity(fs->superblock);
|
---|
160 | }
|
---|
161 |
|
---|
162 | /** Check filesystem's features, if supported by this driver
|
---|
163 | *
|
---|
164 | * Function can return EOK and set read_only flag. It mean's that
|
---|
165 | * there are some not-supported features, that can cause problems
|
---|
166 | * during some write operations.
|
---|
167 | *
|
---|
168 | * @param fs Filesystem to be checked
|
---|
169 | * @param read_only Flag if filesystem should be mounted only for reading
|
---|
170 | *
|
---|
171 | * @return Error code
|
---|
172 | *
|
---|
173 | */
|
---|
174 | int ext4_filesystem_check_features(ext4_filesystem_t *fs, bool *read_only)
|
---|
175 | {
|
---|
176 | /* Feature flags are present only in higher revisions */
|
---|
177 | if (ext4_superblock_get_rev_level(fs->superblock) == 0) {
|
---|
178 | *read_only = false;
|
---|
179 | return EOK;
|
---|
180 | }
|
---|
181 |
|
---|
182 | /*
|
---|
183 | * Check incompatible features - if filesystem has some,
|
---|
184 | * volume can't be mounted
|
---|
185 | */
|
---|
186 | uint32_t incompatible_features;
|
---|
187 | incompatible_features =
|
---|
188 | ext4_superblock_get_features_incompatible(fs->superblock);
|
---|
189 | incompatible_features &= ~EXT4_FEATURE_INCOMPAT_SUPP;
|
---|
190 | if (incompatible_features > 0)
|
---|
191 | return ENOTSUP;
|
---|
192 |
|
---|
193 | /*
|
---|
194 | * Check read-only features, if filesystem has some,
|
---|
195 | * volume can be mount only in read-only mode
|
---|
196 | */
|
---|
197 | uint32_t compatible_read_only;
|
---|
198 | compatible_read_only =
|
---|
199 | ext4_superblock_get_features_read_only(fs->superblock);
|
---|
200 | compatible_read_only &= ~EXT4_FEATURE_RO_COMPAT_SUPP;
|
---|
201 | if (compatible_read_only > 0) {
|
---|
202 | *read_only = true;
|
---|
203 | return EOK;
|
---|
204 | }
|
---|
205 |
|
---|
206 | return EOK;
|
---|
207 | }
|
---|
208 |
|
---|
209 |
|
---|
210 | /** Convert block address to relative index in block group.
|
---|
211 | *
|
---|
212 | * @param sb Superblock pointer
|
---|
213 | * @param block_addr Block number to convert
|
---|
214 | *
|
---|
215 | * @return Relative number of block
|
---|
216 | *
|
---|
217 | */
|
---|
218 | uint32_t ext4_filesystem_blockaddr2_index_in_group(ext4_superblock_t *sb,
|
---|
219 | uint32_t block_addr)
|
---|
220 | {
|
---|
221 | uint32_t blocks_per_group = ext4_superblock_get_blocks_per_group(sb);
|
---|
222 | uint32_t first_block = ext4_superblock_get_first_data_block(sb);
|
---|
223 |
|
---|
224 | /* First block == 0 or 1 */
|
---|
225 | if (first_block == 0)
|
---|
226 | return block_addr % blocks_per_group;
|
---|
227 | else
|
---|
228 | return (block_addr - 1) % blocks_per_group;
|
---|
229 | }
|
---|
230 |
|
---|
231 |
|
---|
232 | /** Convert relative block address in group to absolute address.
|
---|
233 | *
|
---|
234 | * @param sb Superblock pointer
|
---|
235 | *
|
---|
236 | * @return Absolute block address
|
---|
237 | *
|
---|
238 | */
|
---|
239 | uint32_t ext4_filesystem_index_in_group2blockaddr(ext4_superblock_t *sb,
|
---|
240 | uint32_t index, uint32_t bgid)
|
---|
241 | {
|
---|
242 | uint32_t blocks_per_group = ext4_superblock_get_blocks_per_group(sb);
|
---|
243 |
|
---|
244 | if (ext4_superblock_get_first_data_block(sb) == 0)
|
---|
245 | return bgid * blocks_per_group + index;
|
---|
246 | else
|
---|
247 | return bgid * blocks_per_group + index + 1;
|
---|
248 | }
|
---|
249 |
|
---|
250 | /** Initialize block bitmap in block group.
|
---|
251 | *
|
---|
252 | * @param bg_ref Reference to block group
|
---|
253 | *
|
---|
254 | * @return Error code
|
---|
255 | *
|
---|
256 | */
|
---|
257 | static int ext4_filesystem_init_block_bitmap(ext4_block_group_ref_t *bg_ref)
|
---|
258 | {
|
---|
259 | /* Load bitmap */
|
---|
260 | uint32_t bitmap_block_addr = ext4_block_group_get_block_bitmap(
|
---|
261 | bg_ref->block_group, bg_ref->fs->superblock);
|
---|
262 |
|
---|
263 | block_t *bitmap_block;
|
---|
264 | int rc = block_get(&bitmap_block, bg_ref->fs->device,
|
---|
265 | bitmap_block_addr, BLOCK_FLAGS_NOREAD);
|
---|
266 | if (rc != EOK)
|
---|
267 | return rc;
|
---|
268 |
|
---|
269 | uint8_t *bitmap = bitmap_block->data;
|
---|
270 |
|
---|
271 | /* Initialize all bitmap bits to zero */
|
---|
272 | uint32_t block_size = ext4_superblock_get_block_size(bg_ref->fs->superblock);
|
---|
273 | memset(bitmap, 0, block_size);
|
---|
274 |
|
---|
275 | /* Determine first block and first data block in group */
|
---|
276 | uint32_t first_idx = 0;
|
---|
277 |
|
---|
278 | uint32_t first_data = ext4_balloc_get_first_data_block_in_group(
|
---|
279 | bg_ref->fs->superblock, bg_ref);
|
---|
280 | uint32_t first_data_idx = ext4_filesystem_blockaddr2_index_in_group(
|
---|
281 | bg_ref->fs->superblock, first_data);
|
---|
282 |
|
---|
283 | /* Set bits from to first block to first data block - 1 to one (allocated) */
|
---|
284 | for (uint32_t block = first_idx; block < first_data_idx; ++block)
|
---|
285 | ext4_bitmap_set_bit(bitmap, block);
|
---|
286 |
|
---|
287 | bitmap_block->dirty = true;
|
---|
288 |
|
---|
289 | /* Save bitmap */
|
---|
290 | return block_put(bitmap_block);
|
---|
291 | }
|
---|
292 |
|
---|
293 | /** Initialize i-node bitmap in block group.
|
---|
294 | *
|
---|
295 | * @param bg_ref Reference to block group
|
---|
296 | *
|
---|
297 | * @return Error code
|
---|
298 | *
|
---|
299 | */
|
---|
300 | static int ext4_filesystem_init_inode_bitmap(ext4_block_group_ref_t *bg_ref)
|
---|
301 | {
|
---|
302 | /* Load bitmap */
|
---|
303 | uint32_t bitmap_block_addr = ext4_block_group_get_inode_bitmap(
|
---|
304 | bg_ref->block_group, bg_ref->fs->superblock);
|
---|
305 | block_t *bitmap_block;
|
---|
306 |
|
---|
307 | int rc = block_get(&bitmap_block, bg_ref->fs->device,
|
---|
308 | bitmap_block_addr, BLOCK_FLAGS_NOREAD);
|
---|
309 | if (rc != EOK)
|
---|
310 | return rc;
|
---|
311 |
|
---|
312 | uint8_t *bitmap = bitmap_block->data;
|
---|
313 |
|
---|
314 | /* Initialize all bitmap bits to zero */
|
---|
315 | uint32_t block_size = ext4_superblock_get_block_size(bg_ref->fs->superblock);
|
---|
316 | uint32_t inodes_per_group =
|
---|
317 | ext4_superblock_get_inodes_per_group(bg_ref->fs->superblock);
|
---|
318 | memset(bitmap, 0, (inodes_per_group + 7) / 8);
|
---|
319 |
|
---|
320 | uint32_t start_bit = inodes_per_group;
|
---|
321 | uint32_t end_bit = block_size * 8;
|
---|
322 |
|
---|
323 | uint32_t i;
|
---|
324 | for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
|
---|
325 | ext4_bitmap_set_bit(bitmap, i);
|
---|
326 |
|
---|
327 | if (i < end_bit)
|
---|
328 | memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
|
---|
329 |
|
---|
330 | bitmap_block->dirty = true;
|
---|
331 |
|
---|
332 | /* Save bitmap */
|
---|
333 | return block_put(bitmap_block);
|
---|
334 | }
|
---|
335 |
|
---|
336 | /** Initialize i-node table in block group.
|
---|
337 | *
|
---|
338 | * @param bg_ref Reference to block group
|
---|
339 | *
|
---|
340 | * @return Error code
|
---|
341 | *
|
---|
342 | */
|
---|
343 | static int ext4_filesystem_init_inode_table(ext4_block_group_ref_t *bg_ref)
|
---|
344 | {
|
---|
345 | ext4_superblock_t *sb = bg_ref->fs->superblock;
|
---|
346 |
|
---|
347 | uint32_t inode_size = ext4_superblock_get_inode_size(sb);
|
---|
348 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
349 | uint32_t inodes_per_block = block_size / inode_size;
|
---|
350 |
|
---|
351 | uint32_t inodes_in_group =
|
---|
352 | ext4_superblock_get_inodes_in_group(sb, bg_ref->index);
|
---|
353 |
|
---|
354 | uint32_t table_blocks = inodes_in_group / inodes_per_block;
|
---|
355 |
|
---|
356 | if (inodes_in_group % inodes_per_block)
|
---|
357 | table_blocks++;
|
---|
358 |
|
---|
359 | /* Compute initialization bounds */
|
---|
360 | uint32_t first_block = ext4_block_group_get_inode_table_first_block(
|
---|
361 | bg_ref->block_group, sb);
|
---|
362 |
|
---|
363 | uint32_t last_block = first_block + table_blocks - 1;
|
---|
364 |
|
---|
365 | /* Initialization of all itable blocks */
|
---|
366 | for (uint32_t fblock = first_block; fblock <= last_block; ++fblock) {
|
---|
367 | block_t *block;
|
---|
368 | int rc = block_get(&block, bg_ref->fs->device, fblock,
|
---|
369 | BLOCK_FLAGS_NOREAD);
|
---|
370 | if (rc != EOK)
|
---|
371 | return rc;
|
---|
372 |
|
---|
373 | memset(block->data, 0, block_size);
|
---|
374 | block->dirty = true;
|
---|
375 |
|
---|
376 | rc = block_put(block);
|
---|
377 | if (rc != EOK)
|
---|
378 | return rc;
|
---|
379 | }
|
---|
380 |
|
---|
381 | return EOK;
|
---|
382 | }
|
---|
383 |
|
---|
384 | /** Get reference to block group specified by index.
|
---|
385 | *
|
---|
386 | * @param fs Filesystem to find block group on
|
---|
387 | * @param bgid Index of block group to load
|
---|
388 | * @param ref Output pointer for reference
|
---|
389 | *
|
---|
390 | * @return Error code
|
---|
391 | *
|
---|
392 | */
|
---|
393 | int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *fs, uint32_t bgid,
|
---|
394 | ext4_block_group_ref_t **ref)
|
---|
395 | {
|
---|
396 | /* Allocate memory for new structure */
|
---|
397 | ext4_block_group_ref_t *newref =
|
---|
398 | malloc(sizeof(ext4_block_group_ref_t));
|
---|
399 | if (newref == NULL)
|
---|
400 | return ENOMEM;
|
---|
401 |
|
---|
402 | /* Compute number of descriptors, that fits in one data block */
|
---|
403 | uint32_t descriptors_per_block =
|
---|
404 | ext4_superblock_get_block_size(fs->superblock) /
|
---|
405 | ext4_superblock_get_desc_size(fs->superblock);
|
---|
406 |
|
---|
407 | /* Block group descriptor table starts at the next block after superblock */
|
---|
408 | aoff64_t block_id =
|
---|
409 | ext4_superblock_get_first_data_block(fs->superblock) + 1;
|
---|
410 |
|
---|
411 | /* Find the block containing the descriptor we are looking for */
|
---|
412 | block_id += bgid / descriptors_per_block;
|
---|
413 | uint32_t offset = (bgid % descriptors_per_block) *
|
---|
414 | ext4_superblock_get_desc_size(fs->superblock);
|
---|
415 |
|
---|
416 | /* Load block with descriptors */
|
---|
417 | int rc = block_get(&newref->block, fs->device, block_id, 0);
|
---|
418 | if (rc != EOK) {
|
---|
419 | free(newref);
|
---|
420 | return rc;
|
---|
421 | }
|
---|
422 |
|
---|
423 | /* Inititialize in-memory representation */
|
---|
424 | newref->block_group = newref->block->data + offset;
|
---|
425 | newref->fs = fs;
|
---|
426 | newref->index = bgid;
|
---|
427 | newref->dirty = false;
|
---|
428 |
|
---|
429 | *ref = newref;
|
---|
430 |
|
---|
431 | if (ext4_block_group_has_flag(newref->block_group,
|
---|
432 | EXT4_BLOCK_GROUP_BLOCK_UNINIT)) {
|
---|
433 | rc = ext4_filesystem_init_block_bitmap(newref);
|
---|
434 | if (rc != EOK) {
|
---|
435 | block_put(newref->block);
|
---|
436 | free(newref);
|
---|
437 | return rc;
|
---|
438 | }
|
---|
439 |
|
---|
440 | ext4_block_group_clear_flag(newref->block_group,
|
---|
441 | EXT4_BLOCK_GROUP_BLOCK_UNINIT);
|
---|
442 |
|
---|
443 | newref->dirty = true;
|
---|
444 | }
|
---|
445 |
|
---|
446 | if (ext4_block_group_has_flag(newref->block_group,
|
---|
447 | EXT4_BLOCK_GROUP_INODE_UNINIT)) {
|
---|
448 | rc = ext4_filesystem_init_inode_bitmap(newref);
|
---|
449 | if (rc != EOK) {
|
---|
450 | block_put(newref->block);
|
---|
451 | free(newref);
|
---|
452 | return rc;
|
---|
453 | }
|
---|
454 |
|
---|
455 | ext4_block_group_clear_flag(newref->block_group,
|
---|
456 | EXT4_BLOCK_GROUP_INODE_UNINIT);
|
---|
457 |
|
---|
458 | if (!ext4_block_group_has_flag(newref->block_group,
|
---|
459 | EXT4_BLOCK_GROUP_ITABLE_ZEROED)) {
|
---|
460 | rc = ext4_filesystem_init_inode_table(newref);
|
---|
461 | if (rc != EOK)
|
---|
462 | return rc;
|
---|
463 |
|
---|
464 | ext4_block_group_set_flag(newref->block_group,
|
---|
465 | EXT4_BLOCK_GROUP_ITABLE_ZEROED);
|
---|
466 | }
|
---|
467 |
|
---|
468 | newref->dirty = true;
|
---|
469 | }
|
---|
470 |
|
---|
471 | return EOK;
|
---|
472 | }
|
---|
473 |
|
---|
474 | /** Compute checksum of block group descriptor.
|
---|
475 | *
|
---|
476 | * @param sb Superblock
|
---|
477 | * @param bgid Index of block group in the filesystem
|
---|
478 | * @param bg Block group to compute checksum for
|
---|
479 | *
|
---|
480 | * @return Checksum value
|
---|
481 | *
|
---|
482 | */
|
---|
483 | static uint16_t ext4_filesystem_bg_checksum(ext4_superblock_t *sb, uint32_t bgid,
|
---|
484 | ext4_block_group_t *bg)
|
---|
485 | {
|
---|
486 | /* If checksum not supported, 0 will be returned */
|
---|
487 | uint16_t crc = 0;
|
---|
488 |
|
---|
489 | /* Compute the checksum only if the filesystem supports it */
|
---|
490 | if (ext4_superblock_has_feature_read_only(sb,
|
---|
491 | EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
|
---|
492 | void *base = bg;
|
---|
493 | void *checksum = &bg->checksum;
|
---|
494 |
|
---|
495 | uint32_t offset = (uint32_t) (checksum - base);
|
---|
496 |
|
---|
497 | /* Convert block group index to little endian */
|
---|
498 | uint32_t le_group = host2uint32_t_le(bgid);
|
---|
499 |
|
---|
500 | /* Initialization */
|
---|
501 | crc = crc16(~0, sb->uuid, sizeof(sb->uuid));
|
---|
502 |
|
---|
503 | /* Include index of block group */
|
---|
504 | crc = crc16(crc, (uint8_t *) &le_group, sizeof(le_group));
|
---|
505 |
|
---|
506 | /* Compute crc from the first part (stop before checksum field) */
|
---|
507 | crc = crc16(crc, (uint8_t *) bg, offset);
|
---|
508 |
|
---|
509 | /* Skip checksum */
|
---|
510 | offset += sizeof(bg->checksum);
|
---|
511 |
|
---|
512 | /* Checksum of the rest of block group descriptor */
|
---|
513 | if ((ext4_superblock_has_feature_incompatible(sb,
|
---|
514 | EXT4_FEATURE_INCOMPAT_64BIT)) &&
|
---|
515 | (offset < ext4_superblock_get_desc_size(sb)))
|
---|
516 | crc = crc16(crc, ((uint8_t *) bg) + offset,
|
---|
517 | ext4_superblock_get_desc_size(sb) - offset);
|
---|
518 | }
|
---|
519 |
|
---|
520 | return crc;
|
---|
521 | }
|
---|
522 |
|
---|
523 | /** Put reference to block group.
|
---|
524 | *
|
---|
525 | * @oaram ref Pointer for reference to be put back
|
---|
526 | *
|
---|
527 | * @return Error code
|
---|
528 | *
|
---|
529 | */
|
---|
530 | int ext4_filesystem_put_block_group_ref(ext4_block_group_ref_t *ref)
|
---|
531 | {
|
---|
532 | /* Check if reference modified */
|
---|
533 | if (ref->dirty) {
|
---|
534 | /* Compute new checksum of block group */
|
---|
535 | uint16_t checksum =
|
---|
536 | ext4_filesystem_bg_checksum(ref->fs->superblock, ref->index,
|
---|
537 | ref->block_group);
|
---|
538 | ext4_block_group_set_checksum(ref->block_group, checksum);
|
---|
539 |
|
---|
540 | /* Mark block dirty for writing changes to physical device */
|
---|
541 | ref->block->dirty = true;
|
---|
542 | }
|
---|
543 |
|
---|
544 | /* Put back block, that contains block group descriptor */
|
---|
545 | int rc = block_put(ref->block);
|
---|
546 | free(ref);
|
---|
547 |
|
---|
548 | return rc;
|
---|
549 | }
|
---|
550 |
|
---|
551 | /** Get reference to i-node specified by index.
|
---|
552 | *
|
---|
553 | * @param fs Filesystem to find i-node on
|
---|
554 | * @param index Index of i-node to load
|
---|
555 | * @oaram ref Output pointer for reference
|
---|
556 | *
|
---|
557 | * @return Error code
|
---|
558 | *
|
---|
559 | */
|
---|
560 | int ext4_filesystem_get_inode_ref(ext4_filesystem_t *fs, uint32_t index,
|
---|
561 | ext4_inode_ref_t **ref)
|
---|
562 | {
|
---|
563 | /* Allocate memory for new structure */
|
---|
564 | ext4_inode_ref_t *newref =
|
---|
565 | malloc(sizeof(ext4_inode_ref_t));
|
---|
566 | if (newref == NULL)
|
---|
567 | return ENOMEM;
|
---|
568 |
|
---|
569 | /* Compute number of i-nodes, that fits in one data block */
|
---|
570 | uint32_t inodes_per_group =
|
---|
571 | ext4_superblock_get_inodes_per_group(fs->superblock);
|
---|
572 |
|
---|
573 | /*
|
---|
574 | * Inode numbers are 1-based, but it is simpler to work with 0-based
|
---|
575 | * when computing indices
|
---|
576 | */
|
---|
577 | index -= 1;
|
---|
578 | uint32_t block_group = index / inodes_per_group;
|
---|
579 | uint32_t offset_in_group = index % inodes_per_group;
|
---|
580 |
|
---|
581 | /* Load block group, where i-node is located */
|
---|
582 | ext4_block_group_ref_t *bg_ref;
|
---|
583 | int rc = ext4_filesystem_get_block_group_ref(fs, block_group, &bg_ref);
|
---|
584 | if (rc != EOK) {
|
---|
585 | free(newref);
|
---|
586 | return rc;
|
---|
587 | }
|
---|
588 |
|
---|
589 | /* Load block address, where i-node table is located */
|
---|
590 | uint32_t inode_table_start =
|
---|
591 | ext4_block_group_get_inode_table_first_block(bg_ref->block_group,
|
---|
592 | fs->superblock);
|
---|
593 |
|
---|
594 | /* Put back block group reference (not needed more) */
|
---|
595 | rc = ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
596 | if (rc != EOK) {
|
---|
597 | free(newref);
|
---|
598 | return rc;
|
---|
599 | }
|
---|
600 |
|
---|
601 | /* Compute position of i-node in the block group */
|
---|
602 | uint16_t inode_size = ext4_superblock_get_inode_size(fs->superblock);
|
---|
603 | uint32_t block_size = ext4_superblock_get_block_size(fs->superblock);
|
---|
604 | uint32_t byte_offset_in_group = offset_in_group * inode_size;
|
---|
605 |
|
---|
606 | /* Compute block address */
|
---|
607 | aoff64_t block_id = inode_table_start + (byte_offset_in_group / block_size);
|
---|
608 | rc = block_get(&newref->block, fs->device, block_id, 0);
|
---|
609 | if (rc != EOK) {
|
---|
610 | free(newref);
|
---|
611 | return rc;
|
---|
612 | }
|
---|
613 |
|
---|
614 | /* Compute position of i-node in the data block */
|
---|
615 | uint32_t offset_in_block = byte_offset_in_group % block_size;
|
---|
616 | newref->inode = newref->block->data + offset_in_block;
|
---|
617 |
|
---|
618 | /* We need to store the original value of index in the reference */
|
---|
619 | newref->index = index + 1;
|
---|
620 | newref->fs = fs;
|
---|
621 | newref->dirty = false;
|
---|
622 |
|
---|
623 | *ref = newref;
|
---|
624 |
|
---|
625 | return EOK;
|
---|
626 | }
|
---|
627 |
|
---|
628 | /** Put reference to i-node.
|
---|
629 | *
|
---|
630 | * @param ref Pointer for reference to be put back
|
---|
631 | *
|
---|
632 | * @return Error code
|
---|
633 | *
|
---|
634 | */
|
---|
635 | int ext4_filesystem_put_inode_ref(ext4_inode_ref_t *ref)
|
---|
636 | {
|
---|
637 | /* Check if reference modified */
|
---|
638 | if (ref->dirty) {
|
---|
639 | /* Mark block dirty for writing changes to physical device */
|
---|
640 | ref->block->dirty = true;
|
---|
641 | }
|
---|
642 |
|
---|
643 | /* Put back block, that contains i-node */
|
---|
644 | int rc = block_put(ref->block);
|
---|
645 | free(ref);
|
---|
646 |
|
---|
647 | return rc;
|
---|
648 | }
|
---|
649 |
|
---|
650 | /** Allocate new i-node in the filesystem.
|
---|
651 | *
|
---|
652 | * @param fs Filesystem to allocated i-node on
|
---|
653 | * @param inode_ref Output pointer to return reference to allocated i-node
|
---|
654 | * @param flags Flags to be set for newly created i-node
|
---|
655 | *
|
---|
656 | * @return Error code
|
---|
657 | *
|
---|
658 | */
|
---|
659 | int ext4_filesystem_alloc_inode(ext4_filesystem_t *fs,
|
---|
660 | ext4_inode_ref_t **inode_ref, int flags)
|
---|
661 | {
|
---|
662 | /* Check if newly allocated i-node will be a directory */
|
---|
663 | bool is_dir = false;
|
---|
664 | if (flags & L_DIRECTORY)
|
---|
665 | is_dir = true;
|
---|
666 |
|
---|
667 | /* Allocate inode by allocation algorithm */
|
---|
668 | uint32_t index;
|
---|
669 | int rc = ext4_ialloc_alloc_inode(fs, &index, is_dir);
|
---|
670 | if (rc != EOK)
|
---|
671 | return rc;
|
---|
672 |
|
---|
673 | /* Load i-node from on-disk i-node table */
|
---|
674 | rc = ext4_filesystem_get_inode_ref(fs, index, inode_ref);
|
---|
675 | if (rc != EOK) {
|
---|
676 | ext4_ialloc_free_inode(fs, index, is_dir);
|
---|
677 | return rc;
|
---|
678 | }
|
---|
679 |
|
---|
680 | /* Initialize i-node */
|
---|
681 | ext4_inode_t *inode = (*inode_ref)->inode;
|
---|
682 |
|
---|
683 | uint16_t mode;
|
---|
684 | if (is_dir) {
|
---|
685 | /*
|
---|
686 | * Default directory permissions to be compatible with other systems
|
---|
687 | * 0777 (octal) == rwxrwxrwx
|
---|
688 | */
|
---|
689 |
|
---|
690 | mode = 0777;
|
---|
691 | mode |= EXT4_INODE_MODE_DIRECTORY;
|
---|
692 | ext4_inode_set_mode(fs->superblock, inode, mode);
|
---|
693 | ext4_inode_set_links_count(inode, 1); /* '.' entry */
|
---|
694 | } else {
|
---|
695 | /*
|
---|
696 | * Default file permissions to be compatible with other systems
|
---|
697 | * 0666 (octal) == rw-rw-rw-
|
---|
698 | */
|
---|
699 |
|
---|
700 | mode = 0666;
|
---|
701 | mode |= EXT4_INODE_MODE_FILE;
|
---|
702 | ext4_inode_set_mode(fs->superblock, inode, mode);
|
---|
703 | ext4_inode_set_links_count(inode, 0);
|
---|
704 | }
|
---|
705 |
|
---|
706 | ext4_inode_set_uid(inode, 0);
|
---|
707 | ext4_inode_set_gid(inode, 0);
|
---|
708 | ext4_inode_set_size(inode, 0);
|
---|
709 | ext4_inode_set_access_time(inode, 0);
|
---|
710 | ext4_inode_set_change_inode_time(inode, 0);
|
---|
711 | ext4_inode_set_modification_time(inode, 0);
|
---|
712 | ext4_inode_set_deletion_time(inode, 0);
|
---|
713 | ext4_inode_set_blocks_count(fs->superblock, inode, 0);
|
---|
714 | ext4_inode_set_flags(inode, 0);
|
---|
715 | ext4_inode_set_generation(inode, 0);
|
---|
716 |
|
---|
717 | /* Reset blocks array */
|
---|
718 | for (uint32_t i = 0; i < EXT4_INODE_BLOCKS; i++)
|
---|
719 | inode->blocks[i] = 0;
|
---|
720 |
|
---|
721 | /* Initialize extents if needed */
|
---|
722 | if (ext4_superblock_has_feature_incompatible(
|
---|
723 | fs->superblock, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
|
---|
724 | ext4_inode_set_flag(inode, EXT4_INODE_FLAG_EXTENTS);
|
---|
725 |
|
---|
726 | /* Initialize extent root header */
|
---|
727 | ext4_extent_header_t *header = ext4_inode_get_extent_header(inode);
|
---|
728 | ext4_extent_header_set_depth(header, 0);
|
---|
729 | ext4_extent_header_set_entries_count(header, 0);
|
---|
730 | ext4_extent_header_set_generation(header, 0);
|
---|
731 | ext4_extent_header_set_magic(header, EXT4_EXTENT_MAGIC);
|
---|
732 |
|
---|
733 | uint16_t max_entries = (EXT4_INODE_BLOCKS * sizeof(uint32_t) -
|
---|
734 | sizeof(ext4_extent_header_t)) / sizeof(ext4_extent_t);
|
---|
735 |
|
---|
736 | ext4_extent_header_set_max_entries_count(header, max_entries);
|
---|
737 | }
|
---|
738 |
|
---|
739 | (*inode_ref)->dirty = true;
|
---|
740 |
|
---|
741 | return EOK;
|
---|
742 | }
|
---|
743 |
|
---|
744 | /** Release i-node and mark it as free.
|
---|
745 | *
|
---|
746 | * @param inode_ref I-node to be released
|
---|
747 | *
|
---|
748 | * @return Error code
|
---|
749 | *
|
---|
750 | */
|
---|
751 | int ext4_filesystem_free_inode(ext4_inode_ref_t *inode_ref)
|
---|
752 | {
|
---|
753 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
754 |
|
---|
755 | /* For extents must be data block destroyed by other way */
|
---|
756 | if ((ext4_superblock_has_feature_incompatible(fs->superblock,
|
---|
757 | EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
|
---|
758 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) {
|
---|
759 | /* Data structures are released during truncate operation... */
|
---|
760 | goto finish;
|
---|
761 | }
|
---|
762 |
|
---|
763 | /* Release all indirect (no data) blocks */
|
---|
764 |
|
---|
765 | /* 1) Single indirect */
|
---|
766 | uint32_t fblock = ext4_inode_get_indirect_block(inode_ref->inode, 0);
|
---|
767 | if (fblock != 0) {
|
---|
768 | int rc = ext4_balloc_free_block(inode_ref, fblock);
|
---|
769 | if (rc != EOK)
|
---|
770 | return rc;
|
---|
771 |
|
---|
772 | ext4_inode_set_indirect_block(inode_ref->inode, 0, 0);
|
---|
773 | }
|
---|
774 |
|
---|
775 | block_t *block;
|
---|
776 | uint32_t block_size = ext4_superblock_get_block_size(fs->superblock);
|
---|
777 | uint32_t count = block_size / sizeof(uint32_t);
|
---|
778 |
|
---|
779 | /* 2) Double indirect */
|
---|
780 | fblock = ext4_inode_get_indirect_block(inode_ref->inode, 1);
|
---|
781 | if (fblock != 0) {
|
---|
782 | int rc = block_get(&block, fs->device, fblock, BLOCK_FLAGS_NONE);
|
---|
783 | if (rc != EOK)
|
---|
784 | return rc;
|
---|
785 |
|
---|
786 | uint32_t ind_block;
|
---|
787 | for (uint32_t offset = 0; offset < count; ++offset) {
|
---|
788 | ind_block = uint32_t_le2host(((uint32_t *) block->data)[offset]);
|
---|
789 |
|
---|
790 | if (ind_block != 0) {
|
---|
791 | rc = ext4_balloc_free_block(inode_ref, ind_block);
|
---|
792 | if (rc != EOK) {
|
---|
793 | block_put(block);
|
---|
794 | return rc;
|
---|
795 | }
|
---|
796 | }
|
---|
797 | }
|
---|
798 |
|
---|
799 | block_put(block);
|
---|
800 | rc = ext4_balloc_free_block(inode_ref, fblock);
|
---|
801 | if (rc != EOK)
|
---|
802 | return rc;
|
---|
803 |
|
---|
804 | ext4_inode_set_indirect_block(inode_ref->inode, 1, 0);
|
---|
805 | }
|
---|
806 |
|
---|
807 | /* 3) Tripple indirect */
|
---|
808 | block_t *subblock;
|
---|
809 | fblock = ext4_inode_get_indirect_block(inode_ref->inode, 2);
|
---|
810 | if (fblock != 0) {
|
---|
811 | int rc = block_get(&block, fs->device, fblock, BLOCK_FLAGS_NONE);
|
---|
812 | if (rc != EOK)
|
---|
813 | return rc;
|
---|
814 |
|
---|
815 | uint32_t ind_block;
|
---|
816 | for (uint32_t offset = 0; offset < count; ++offset) {
|
---|
817 | ind_block = uint32_t_le2host(((uint32_t *) block->data)[offset]);
|
---|
818 |
|
---|
819 | if (ind_block != 0) {
|
---|
820 | rc = block_get(&subblock, fs->device, ind_block,
|
---|
821 | BLOCK_FLAGS_NONE);
|
---|
822 | if (rc != EOK) {
|
---|
823 | block_put(block);
|
---|
824 | return rc;
|
---|
825 | }
|
---|
826 |
|
---|
827 | uint32_t ind_subblock;
|
---|
828 | for (uint32_t suboffset = 0; suboffset < count;
|
---|
829 | ++suboffset) {
|
---|
830 | ind_subblock = uint32_t_le2host(((uint32_t *)
|
---|
831 | subblock->data)[suboffset]);
|
---|
832 |
|
---|
833 | if (ind_subblock != 0) {
|
---|
834 | rc = ext4_balloc_free_block(inode_ref, ind_subblock);
|
---|
835 | if (rc != EOK) {
|
---|
836 | block_put(subblock);
|
---|
837 | block_put(block);
|
---|
838 | return rc;
|
---|
839 | }
|
---|
840 | }
|
---|
841 | }
|
---|
842 |
|
---|
843 | block_put(subblock);
|
---|
844 | }
|
---|
845 |
|
---|
846 | rc = ext4_balloc_free_block(inode_ref, ind_block);
|
---|
847 | if (rc != EOK) {
|
---|
848 | block_put(block);
|
---|
849 | return rc;
|
---|
850 | }
|
---|
851 | }
|
---|
852 |
|
---|
853 | block_put(block);
|
---|
854 | rc = ext4_balloc_free_block(inode_ref, fblock);
|
---|
855 | if (rc != EOK)
|
---|
856 | return rc;
|
---|
857 |
|
---|
858 | ext4_inode_set_indirect_block(inode_ref->inode, 2, 0);
|
---|
859 | }
|
---|
860 |
|
---|
861 | finish:
|
---|
862 | /* Mark inode dirty for writing to the physical device */
|
---|
863 | inode_ref->dirty = true;
|
---|
864 |
|
---|
865 | /* Free block with extended attributes if present */
|
---|
866 | uint32_t xattr_block = ext4_inode_get_file_acl(
|
---|
867 | inode_ref->inode, fs->superblock);
|
---|
868 | if (xattr_block) {
|
---|
869 | int rc = ext4_balloc_free_block(inode_ref, xattr_block);
|
---|
870 | if (rc != EOK)
|
---|
871 | return rc;
|
---|
872 |
|
---|
873 | ext4_inode_set_file_acl(inode_ref->inode, fs->superblock, 0);
|
---|
874 | }
|
---|
875 |
|
---|
876 | /* Free inode by allocator */
|
---|
877 | int rc;
|
---|
878 | if (ext4_inode_is_type(fs->superblock, inode_ref->inode,
|
---|
879 | EXT4_INODE_MODE_DIRECTORY))
|
---|
880 | rc = ext4_ialloc_free_inode(fs, inode_ref->index, true);
|
---|
881 | else
|
---|
882 | rc = ext4_ialloc_free_inode(fs, inode_ref->index, false);
|
---|
883 |
|
---|
884 | return rc;
|
---|
885 | }
|
---|
886 |
|
---|
887 | /** Truncate i-node data blocks.
|
---|
888 | *
|
---|
889 | * @param inode_ref I-node to be truncated
|
---|
890 | * @param new_size New size of inode (must be < current size)
|
---|
891 | *
|
---|
892 | * @return Error code
|
---|
893 | *
|
---|
894 | */
|
---|
895 | int ext4_filesystem_truncate_inode(ext4_inode_ref_t *inode_ref,
|
---|
896 | aoff64_t new_size)
|
---|
897 | {
|
---|
898 | ext4_superblock_t *sb = inode_ref->fs->superblock;
|
---|
899 |
|
---|
900 | /* Check flags, if i-node can be truncated */
|
---|
901 | if (!ext4_inode_can_truncate(sb, inode_ref->inode))
|
---|
902 | return EINVAL;
|
---|
903 |
|
---|
904 | /* If sizes are equal, nothing has to be done. */
|
---|
905 | aoff64_t old_size = ext4_inode_get_size(sb, inode_ref->inode);
|
---|
906 | if (old_size == new_size)
|
---|
907 | return EOK;
|
---|
908 |
|
---|
909 | /* It's not suppported to make the larger file by truncate operation */
|
---|
910 | if (old_size < new_size)
|
---|
911 | return EINVAL;
|
---|
912 |
|
---|
913 | /* Compute how many blocks will be released */
|
---|
914 | aoff64_t size_diff = old_size - new_size;
|
---|
915 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
916 | uint32_t diff_blocks_count = size_diff / block_size;
|
---|
917 | if (size_diff % block_size != 0)
|
---|
918 | diff_blocks_count++;
|
---|
919 |
|
---|
920 | uint32_t old_blocks_count = old_size / block_size;
|
---|
921 | if (old_size % block_size != 0)
|
---|
922 | old_blocks_count++;
|
---|
923 |
|
---|
924 | if ((ext4_superblock_has_feature_incompatible(inode_ref->fs->superblock,
|
---|
925 | EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
|
---|
926 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) {
|
---|
927 | /* Extents require special operation */
|
---|
928 | int rc = ext4_extent_release_blocks_from(inode_ref,
|
---|
929 | old_blocks_count - diff_blocks_count);
|
---|
930 | if (rc != EOK)
|
---|
931 | return rc;
|
---|
932 | } else {
|
---|
933 | /* Release data blocks from the end of file */
|
---|
934 |
|
---|
935 | /* Starting from 1 because of logical blocks are numbered from 0 */
|
---|
936 | for (uint32_t i = 1; i <= diff_blocks_count; ++i) {
|
---|
937 | int rc = ext4_filesystem_release_inode_block(inode_ref,
|
---|
938 | old_blocks_count - i);
|
---|
939 | if (rc != EOK)
|
---|
940 | return rc;
|
---|
941 | }
|
---|
942 | }
|
---|
943 |
|
---|
944 | /* Update i-node */
|
---|
945 | ext4_inode_set_size(inode_ref->inode, new_size);
|
---|
946 | inode_ref->dirty = true;
|
---|
947 |
|
---|
948 | return EOK;
|
---|
949 | }
|
---|
950 |
|
---|
951 | /** Get physical block address by logical index of the block.
|
---|
952 | *
|
---|
953 | * @param inode_ref I-node to read block address from
|
---|
954 | * @param iblock Logical index of block
|
---|
955 | * @param fblock Output pointer for return physical block address
|
---|
956 | *
|
---|
957 | * @return Error code
|
---|
958 | *
|
---|
959 | */
|
---|
960 | int ext4_filesystem_get_inode_data_block_index(ext4_inode_ref_t *inode_ref,
|
---|
961 | aoff64_t iblock, uint32_t *fblock)
|
---|
962 | {
|
---|
963 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
964 |
|
---|
965 | /* For empty file is situation simple */
|
---|
966 | if (ext4_inode_get_size(fs->superblock, inode_ref->inode) == 0) {
|
---|
967 | *fblock = 0;
|
---|
968 | return EOK;
|
---|
969 | }
|
---|
970 |
|
---|
971 | uint32_t current_block;
|
---|
972 |
|
---|
973 | /* Handle i-node using extents */
|
---|
974 | if ((ext4_superblock_has_feature_incompatible(fs->superblock,
|
---|
975 | EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
|
---|
976 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) {
|
---|
977 | int rc = ext4_extent_find_block(inode_ref, iblock, ¤t_block);
|
---|
978 | if (rc != EOK)
|
---|
979 | return rc;
|
---|
980 |
|
---|
981 | *fblock = current_block;
|
---|
982 | return EOK;
|
---|
983 | }
|
---|
984 |
|
---|
985 | ext4_inode_t *inode = inode_ref->inode;
|
---|
986 |
|
---|
987 | /* Direct block are read directly from array in i-node structure */
|
---|
988 | if (iblock < EXT4_INODE_DIRECT_BLOCK_COUNT) {
|
---|
989 | current_block = ext4_inode_get_direct_block(inode, (uint32_t) iblock);
|
---|
990 | *fblock = current_block;
|
---|
991 | return EOK;
|
---|
992 | }
|
---|
993 |
|
---|
994 | /* Determine indirection level of the target block */
|
---|
995 | unsigned int level = 0;
|
---|
996 | for (unsigned int i = 1; i < 4; i++) {
|
---|
997 | if (iblock < fs->inode_block_limits[i]) {
|
---|
998 | level = i;
|
---|
999 | break;
|
---|
1000 | }
|
---|
1001 | }
|
---|
1002 |
|
---|
1003 | if (level == 0)
|
---|
1004 | return EIO;
|
---|
1005 |
|
---|
1006 | /* Compute offsets for the topmost level */
|
---|
1007 | aoff64_t block_offset_in_level =
|
---|
1008 | iblock - fs->inode_block_limits[level - 1];
|
---|
1009 | current_block = ext4_inode_get_indirect_block(inode, level - 1);
|
---|
1010 | uint32_t offset_in_block =
|
---|
1011 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1012 |
|
---|
1013 | /* Sparse file */
|
---|
1014 | if (current_block == 0) {
|
---|
1015 | *fblock = 0;
|
---|
1016 | return EOK;
|
---|
1017 | }
|
---|
1018 |
|
---|
1019 | block_t *block;
|
---|
1020 |
|
---|
1021 | /*
|
---|
1022 | * Navigate through other levels, until we find the block number
|
---|
1023 | * or find null reference meaning we are dealing with sparse file
|
---|
1024 | */
|
---|
1025 | while (level > 0) {
|
---|
1026 | /* Load indirect block */
|
---|
1027 | int rc = block_get(&block, fs->device, current_block, 0);
|
---|
1028 | if (rc != EOK)
|
---|
1029 | return rc;
|
---|
1030 |
|
---|
1031 | /* Read block address from indirect block */
|
---|
1032 | current_block =
|
---|
1033 | uint32_t_le2host(((uint32_t *) block->data)[offset_in_block]);
|
---|
1034 |
|
---|
1035 | /* Put back indirect block untouched */
|
---|
1036 | rc = block_put(block);
|
---|
1037 | if (rc != EOK)
|
---|
1038 | return rc;
|
---|
1039 |
|
---|
1040 | /* Check for sparse file */
|
---|
1041 | if (current_block == 0) {
|
---|
1042 | *fblock = 0;
|
---|
1043 | return EOK;
|
---|
1044 | }
|
---|
1045 |
|
---|
1046 | /* Jump to the next level */
|
---|
1047 | level--;
|
---|
1048 |
|
---|
1049 | /* Termination condition - we have address of data block loaded */
|
---|
1050 | if (level == 0)
|
---|
1051 | break;
|
---|
1052 |
|
---|
1053 | /* Visit the next level */
|
---|
1054 | block_offset_in_level %= fs->inode_blocks_per_level[level];
|
---|
1055 | offset_in_block =
|
---|
1056 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1057 | }
|
---|
1058 |
|
---|
1059 | *fblock = current_block;
|
---|
1060 |
|
---|
1061 | return EOK;
|
---|
1062 | }
|
---|
1063 |
|
---|
1064 | /** Set physical block address for the block logical address into the i-node.
|
---|
1065 | *
|
---|
1066 | * @param inode_ref I-node to set block address to
|
---|
1067 | * @param iblock Logical index of block
|
---|
1068 | * @param fblock Physical block address
|
---|
1069 | *
|
---|
1070 | * @return Error code
|
---|
1071 | *
|
---|
1072 | */
|
---|
1073 | int ext4_filesystem_set_inode_data_block_index(ext4_inode_ref_t *inode_ref,
|
---|
1074 | aoff64_t iblock, uint32_t fblock)
|
---|
1075 | {
|
---|
1076 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
1077 |
|
---|
1078 | /* Handle inode using extents */
|
---|
1079 | if ((ext4_superblock_has_feature_compatible(fs->superblock,
|
---|
1080 | EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
|
---|
1081 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) {
|
---|
1082 | /* Not reachable */
|
---|
1083 | return ENOTSUP;
|
---|
1084 | }
|
---|
1085 |
|
---|
1086 | /* Handle simple case when we are dealing with direct reference */
|
---|
1087 | if (iblock < EXT4_INODE_DIRECT_BLOCK_COUNT) {
|
---|
1088 | ext4_inode_set_direct_block(inode_ref->inode, (uint32_t) iblock, fblock);
|
---|
1089 | inode_ref->dirty = true;
|
---|
1090 |
|
---|
1091 | return EOK;
|
---|
1092 | }
|
---|
1093 |
|
---|
1094 | /* Determine the indirection level needed to get the desired block */
|
---|
1095 | unsigned int level = 0;
|
---|
1096 | for (unsigned int i = 1; i < 4; i++) {
|
---|
1097 | if (iblock < fs->inode_block_limits[i]) {
|
---|
1098 | level = i;
|
---|
1099 | break;
|
---|
1100 | }
|
---|
1101 | }
|
---|
1102 |
|
---|
1103 | if (level == 0)
|
---|
1104 | return EIO;
|
---|
1105 |
|
---|
1106 | uint32_t block_size = ext4_superblock_get_block_size(fs->superblock);
|
---|
1107 |
|
---|
1108 | /* Compute offsets for the topmost level */
|
---|
1109 | aoff64_t block_offset_in_level =
|
---|
1110 | iblock - fs->inode_block_limits[level - 1];
|
---|
1111 | uint32_t current_block =
|
---|
1112 | ext4_inode_get_indirect_block(inode_ref->inode, level - 1);
|
---|
1113 | uint32_t offset_in_block =
|
---|
1114 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1115 |
|
---|
1116 | uint32_t new_block_addr;
|
---|
1117 | block_t *block;
|
---|
1118 | block_t *new_block;
|
---|
1119 |
|
---|
1120 | /* Is needed to allocate indirect block on the i-node level */
|
---|
1121 | if (current_block == 0) {
|
---|
1122 | /* Allocate new indirect block */
|
---|
1123 | int rc = ext4_balloc_alloc_block(inode_ref, &new_block_addr);
|
---|
1124 | if (rc != EOK)
|
---|
1125 | return rc;
|
---|
1126 |
|
---|
1127 | /* Update i-node */
|
---|
1128 | ext4_inode_set_indirect_block(inode_ref->inode, level - 1,
|
---|
1129 | new_block_addr);
|
---|
1130 | inode_ref->dirty = true;
|
---|
1131 |
|
---|
1132 | /* Load newly allocated block */
|
---|
1133 | rc = block_get(&new_block, fs->device, new_block_addr,
|
---|
1134 | BLOCK_FLAGS_NOREAD);
|
---|
1135 | if (rc != EOK) {
|
---|
1136 | ext4_balloc_free_block(inode_ref, new_block_addr);
|
---|
1137 | return rc;
|
---|
1138 | }
|
---|
1139 |
|
---|
1140 | /* Initialize new block */
|
---|
1141 | memset(new_block->data, 0, block_size);
|
---|
1142 | new_block->dirty = true;
|
---|
1143 |
|
---|
1144 | /* Put back the allocated block */
|
---|
1145 | rc = block_put(new_block);
|
---|
1146 | if (rc != EOK)
|
---|
1147 | return rc;
|
---|
1148 |
|
---|
1149 | current_block = new_block_addr;
|
---|
1150 | }
|
---|
1151 |
|
---|
1152 | /*
|
---|
1153 | * Navigate through other levels, until we find the block number
|
---|
1154 | * or find null reference meaning we are dealing with sparse file
|
---|
1155 | */
|
---|
1156 | while (level > 0) {
|
---|
1157 | int rc = block_get(&block, fs->device, current_block, 0);
|
---|
1158 | if (rc != EOK)
|
---|
1159 | return rc;
|
---|
1160 |
|
---|
1161 | current_block =
|
---|
1162 | uint32_t_le2host(((uint32_t *) block->data)[offset_in_block]);
|
---|
1163 |
|
---|
1164 | if ((level > 1) && (current_block == 0)) {
|
---|
1165 | /* Allocate new block */
|
---|
1166 | rc = ext4_balloc_alloc_block(inode_ref, &new_block_addr);
|
---|
1167 | if (rc != EOK) {
|
---|
1168 | block_put(block);
|
---|
1169 | return rc;
|
---|
1170 | }
|
---|
1171 |
|
---|
1172 | /* Load newly allocated block */
|
---|
1173 | rc = block_get(&new_block, fs->device, new_block_addr,
|
---|
1174 | BLOCK_FLAGS_NOREAD);
|
---|
1175 | if (rc != EOK) {
|
---|
1176 | block_put(block);
|
---|
1177 | return rc;
|
---|
1178 | }
|
---|
1179 |
|
---|
1180 | /* Initialize allocated block */
|
---|
1181 | memset(new_block->data, 0, block_size);
|
---|
1182 | new_block->dirty = true;
|
---|
1183 |
|
---|
1184 | rc = block_put(new_block);
|
---|
1185 | if (rc != EOK) {
|
---|
1186 | block_put(block);
|
---|
1187 | return rc;
|
---|
1188 | }
|
---|
1189 |
|
---|
1190 | /* Write block address to the parent */
|
---|
1191 | ((uint32_t *) block->data)[offset_in_block] =
|
---|
1192 | host2uint32_t_le(new_block_addr);
|
---|
1193 | block->dirty = true;
|
---|
1194 | current_block = new_block_addr;
|
---|
1195 | }
|
---|
1196 |
|
---|
1197 | /* Will be finished, write the fblock address */
|
---|
1198 | if (level == 1) {
|
---|
1199 | ((uint32_t *) block->data)[offset_in_block] =
|
---|
1200 | host2uint32_t_le(fblock);
|
---|
1201 | block->dirty = true;
|
---|
1202 | }
|
---|
1203 |
|
---|
1204 | rc = block_put(block);
|
---|
1205 | if (rc != EOK)
|
---|
1206 | return rc;
|
---|
1207 |
|
---|
1208 | level--;
|
---|
1209 |
|
---|
1210 | /*
|
---|
1211 | * If we are on the last level, break here as
|
---|
1212 | * there is no next level to visit
|
---|
1213 | */
|
---|
1214 | if (level == 0)
|
---|
1215 | break;
|
---|
1216 |
|
---|
1217 | /* Visit the next level */
|
---|
1218 | block_offset_in_level %= fs->inode_blocks_per_level[level];
|
---|
1219 | offset_in_block =
|
---|
1220 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1221 | }
|
---|
1222 |
|
---|
1223 | return EOK;
|
---|
1224 | }
|
---|
1225 |
|
---|
1226 | /** Release data block from i-node
|
---|
1227 | *
|
---|
1228 | * @param inode_ref I-node to release block from
|
---|
1229 | * @param iblock Logical block to be released
|
---|
1230 | *
|
---|
1231 | * @return Error code
|
---|
1232 | *
|
---|
1233 | */
|
---|
1234 | int ext4_filesystem_release_inode_block(ext4_inode_ref_t *inode_ref,
|
---|
1235 | uint32_t iblock)
|
---|
1236 | {
|
---|
1237 | uint32_t fblock;
|
---|
1238 |
|
---|
1239 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
1240 |
|
---|
1241 | /* Extents are handled otherwise = there is not support in this function */
|
---|
1242 | assert(!(ext4_superblock_has_feature_incompatible(fs->superblock,
|
---|
1243 | EXT4_FEATURE_INCOMPAT_EXTENTS) &&
|
---|
1244 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))));
|
---|
1245 |
|
---|
1246 | ext4_inode_t *inode = inode_ref->inode;
|
---|
1247 |
|
---|
1248 | /* Handle simple case when we are dealing with direct reference */
|
---|
1249 | if (iblock < EXT4_INODE_DIRECT_BLOCK_COUNT) {
|
---|
1250 | fblock = ext4_inode_get_direct_block(inode, iblock);
|
---|
1251 |
|
---|
1252 | /* Sparse file */
|
---|
1253 | if (fblock == 0)
|
---|
1254 | return EOK;
|
---|
1255 |
|
---|
1256 | ext4_inode_set_direct_block(inode, iblock, 0);
|
---|
1257 | return ext4_balloc_free_block(inode_ref, fblock);
|
---|
1258 | }
|
---|
1259 |
|
---|
1260 | /* Determine the indirection level needed to get the desired block */
|
---|
1261 | unsigned int level = 0;
|
---|
1262 | for (unsigned int i = 1; i < 4; i++) {
|
---|
1263 | if (iblock < fs->inode_block_limits[i]) {
|
---|
1264 | level = i;
|
---|
1265 | break;
|
---|
1266 | }
|
---|
1267 | }
|
---|
1268 |
|
---|
1269 | if (level == 0)
|
---|
1270 | return EIO;
|
---|
1271 |
|
---|
1272 | /* Compute offsets for the topmost level */
|
---|
1273 | aoff64_t block_offset_in_level =
|
---|
1274 | iblock - fs->inode_block_limits[level - 1];
|
---|
1275 | uint32_t current_block =
|
---|
1276 | ext4_inode_get_indirect_block(inode, level - 1);
|
---|
1277 | uint32_t offset_in_block =
|
---|
1278 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1279 |
|
---|
1280 | /*
|
---|
1281 | * Navigate through other levels, until we find the block number
|
---|
1282 | * or find null reference meaning we are dealing with sparse file
|
---|
1283 | */
|
---|
1284 | block_t *block;
|
---|
1285 | while (level > 0) {
|
---|
1286 |
|
---|
1287 | /* Sparse check */
|
---|
1288 | if (current_block == 0)
|
---|
1289 | return EOK;
|
---|
1290 |
|
---|
1291 | int rc = block_get(&block, fs->device, current_block, 0);
|
---|
1292 | if (rc != EOK)
|
---|
1293 | return rc;
|
---|
1294 |
|
---|
1295 | current_block =
|
---|
1296 | uint32_t_le2host(((uint32_t *) block->data)[offset_in_block]);
|
---|
1297 |
|
---|
1298 | /* Set zero if physical data block address found */
|
---|
1299 | if (level == 1) {
|
---|
1300 | ((uint32_t *) block->data)[offset_in_block] =
|
---|
1301 | host2uint32_t_le(0);
|
---|
1302 | block->dirty = true;
|
---|
1303 | }
|
---|
1304 |
|
---|
1305 | rc = block_put(block);
|
---|
1306 | if (rc != EOK)
|
---|
1307 | return rc;
|
---|
1308 |
|
---|
1309 | level--;
|
---|
1310 |
|
---|
1311 | /*
|
---|
1312 | * If we are on the last level, break here as
|
---|
1313 | * there is no next level to visit
|
---|
1314 | */
|
---|
1315 | if (level == 0)
|
---|
1316 | break;
|
---|
1317 |
|
---|
1318 | /* Visit the next level */
|
---|
1319 | block_offset_in_level %= fs->inode_blocks_per_level[level];
|
---|
1320 | offset_in_block =
|
---|
1321 | block_offset_in_level / fs->inode_blocks_per_level[level - 1];
|
---|
1322 | }
|
---|
1323 |
|
---|
1324 | fblock = current_block;
|
---|
1325 | if (fblock == 0)
|
---|
1326 | return EOK;
|
---|
1327 |
|
---|
1328 | /* Physical block is not referenced, it can be released */
|
---|
1329 | return ext4_balloc_free_block(inode_ref, fblock);
|
---|
1330 | }
|
---|
1331 |
|
---|
1332 | /** Append following logical block to the i-node.
|
---|
1333 | *
|
---|
1334 | * @param inode_ref I-node to append block to
|
---|
1335 | * @param fblock Output physical block address of newly allocated block
|
---|
1336 | * @param iblock Output logical number of newly allocated block
|
---|
1337 | *
|
---|
1338 | * @return Error code
|
---|
1339 | *
|
---|
1340 | */
|
---|
1341 | int ext4_filesystem_append_inode_block(ext4_inode_ref_t *inode_ref,
|
---|
1342 | uint32_t *fblock, uint32_t *iblock)
|
---|
1343 | {
|
---|
1344 | /* Handle extents separately */
|
---|
1345 | if ((ext4_superblock_has_feature_incompatible(inode_ref->fs->superblock,
|
---|
1346 | EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
|
---|
1347 | (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS)))
|
---|
1348 | return ext4_extent_append_block(inode_ref, iblock, fblock, true);
|
---|
1349 |
|
---|
1350 | ext4_superblock_t *sb = inode_ref->fs->superblock;
|
---|
1351 |
|
---|
1352 | /* Compute next block index and allocate data block */
|
---|
1353 | uint64_t inode_size = ext4_inode_get_size(sb, inode_ref->inode);
|
---|
1354 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
1355 |
|
---|
1356 | /* Align size i-node size */
|
---|
1357 | if ((inode_size % block_size) != 0)
|
---|
1358 | inode_size += block_size - (inode_size % block_size);
|
---|
1359 |
|
---|
1360 | /* Logical blocks are numbered from 0 */
|
---|
1361 | uint32_t new_block_idx = inode_size / block_size;
|
---|
1362 |
|
---|
1363 | /* Allocate new physical block */
|
---|
1364 | uint32_t phys_block;
|
---|
1365 | int rc = ext4_balloc_alloc_block(inode_ref, &phys_block);
|
---|
1366 | if (rc != EOK)
|
---|
1367 | return rc;
|
---|
1368 |
|
---|
1369 | /* Add physical block address to the i-node */
|
---|
1370 | rc = ext4_filesystem_set_inode_data_block_index(inode_ref,
|
---|
1371 | new_block_idx, phys_block);
|
---|
1372 | if (rc != EOK) {
|
---|
1373 | ext4_balloc_free_block(inode_ref, phys_block);
|
---|
1374 | return rc;
|
---|
1375 | }
|
---|
1376 |
|
---|
1377 | /* Update i-node */
|
---|
1378 | ext4_inode_set_size(inode_ref->inode, inode_size + block_size);
|
---|
1379 | inode_ref->dirty = true;
|
---|
1380 |
|
---|
1381 | *fblock = phys_block;
|
---|
1382 | *iblock = new_block_idx;
|
---|
1383 |
|
---|
1384 | return EOK;
|
---|
1385 | }
|
---|
1386 |
|
---|
1387 | /**
|
---|
1388 | * @}
|
---|
1389 | */
|
---|