blob: c1709d9b0b93fced1c78c18632681640ac3ee35c [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * block.c --- iterate over all blocks in an inode
3 *
Theodore Ts'o21c84b71997-04-29 16:15:03 +00004 * Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 */
11
12#include <stdio.h>
13#include <string.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000014#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000015#include <unistd.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000016#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000017#include <stdlib.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000018#if HAVE_ERRNO_H
19#include <errno.h>
20#endif
Theodore Ts'of3db3561997-04-26 13:34:30 +000021
Theodore Ts'o3839e651997-04-26 13:21:57 +000022#include <linux/ext2_fs.h>
23
24#include "ext2fs.h"
25
26struct block_context {
27 ext2_filsys fs;
28 int (*func)(ext2_filsys fs,
29 blk_t *blocknr,
30 int bcount,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000031 blk_t ref_blk,
32 int ref_offset,
Theodore Ts'o3839e651997-04-26 13:21:57 +000033 void *private);
34 int bcount;
35 int bsize;
36 int flags;
37 errcode_t errcode;
38 char *ind_buf;
39 char *dind_buf;
40 char *tind_buf;
41 void *private;
42};
43
Theodore Ts'o21c84b71997-04-29 16:15:03 +000044static int block_iterate_ind(blk_t *ind_block, blk_t ref_block,
45 int ref_offset, struct block_context *ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +000046{
47 int ret = 0, changed = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000048 int i, flags, limit, offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +000049 blk_t *block_nr;
50
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000051 limit = ctx->fs->blocksize >> 2;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000052 if (!(ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
53 !(ctx->flags & BLOCK_FLAG_DATA_ONLY))
54 ret = (*ctx->func)(ctx->fs, ind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000055 BLOCK_COUNT_IND, ref_block,
56 ref_offset, ctx->private);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000057 if (!*ind_block || (ret & BLOCK_ABORT)) {
58 ctx->bcount += limit;
Theodore Ts'o3839e651997-04-26 13:21:57 +000059 return ret;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000060 }
Theodore Ts'of3db3561997-04-26 13:34:30 +000061 if (*ind_block >= ctx->fs->super->s_blocks_count ||
62 *ind_block < ctx->fs->super->s_first_data_block) {
63 ctx->errcode = EXT2_ET_BAD_IND_BLOCK;
64 ret |= BLOCK_ERROR;
65 return ret;
66 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000067 ctx->errcode = io_channel_read_blk(ctx->fs->io, *ind_block,
68 1, ctx->ind_buf);
69 if (ctx->errcode) {
70 ret |= BLOCK_ERROR;
71 return ret;
72 }
Theodore Ts'o5c576471997-04-29 15:29:49 +000073 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
74 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_READ)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +000075 block_nr = (blk_t *) ctx->ind_buf;
76 for (i = 0; i < limit; i++, block_nr++)
77 *block_nr = ext2fs_swab32(*block_nr);
78 }
79 block_nr = (blk_t *) ctx->ind_buf;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000080 offset = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +000081 if (ctx->flags & BLOCK_FLAG_APPEND) {
82 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
Theodore Ts'o3839e651997-04-26 13:21:57 +000083 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000084 *ind_block, offset,
Theodore Ts'o3839e651997-04-26 13:21:57 +000085 ctx->private);
Theodore Ts'o50e1e101997-04-26 13:58:21 +000086 changed |= flags;
87 if (flags & BLOCK_ABORT) {
88 ret |= BLOCK_ABORT;
89 break;
90 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +000091 offset += sizeof(blk_t);
Theodore Ts'o50e1e101997-04-26 13:58:21 +000092 }
93 } else {
94 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
95 if (*block_nr == 0)
96 continue;
97 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000098 *ind_block, offset,
Theodore Ts'o50e1e101997-04-26 13:58:21 +000099 ctx->private);
100 changed |= flags;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000101 if (flags & BLOCK_ABORT) {
102 ret |= BLOCK_ABORT;
103 break;
104 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000105 offset += sizeof(blk_t);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000106 }
107 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000108 if (changed & BLOCK_CHANGED) {
Theodore Ts'o5c576471997-04-29 15:29:49 +0000109 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
110 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000111 block_nr = (blk_t *) ctx->ind_buf;
112 for (i = 0; i < limit; i++, block_nr++)
113 *block_nr = ext2fs_swab32(*block_nr);
114 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000115 ctx->errcode = io_channel_write_blk(ctx->fs->io, *ind_block,
116 1, ctx->ind_buf);
117 if (ctx->errcode)
118 ret |= BLOCK_ERROR | BLOCK_ABORT;
119 }
120 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000121 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
Theodore Ts'o3839e651997-04-26 13:21:57 +0000122 !(ret & BLOCK_ABORT))
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000123 ret |= (*ctx->func)(ctx->fs, ind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000124 BLOCK_COUNT_IND, ref_block,
125 ref_offset, ctx->private);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000126 return ret;
127}
128
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000129static int block_iterate_dind(blk_t *dind_block, blk_t ref_block,
130 int ref_offset, struct block_context *ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000131{
132 int ret = 0, changed = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000133 int i, flags, limit, offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 blk_t *block_nr;
135
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000136 limit = ctx->fs->blocksize >> 2;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000137 if (!(ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
138 !(ctx->flags & BLOCK_FLAG_DATA_ONLY))
139 ret = (*ctx->func)(ctx->fs, dind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000140 BLOCK_COUNT_DIND, ref_block,
141 ref_offset, ctx->private);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000142 if (!*dind_block || (ret & BLOCK_ABORT)) {
143 ctx->bcount += limit*limit;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000144 return ret;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000145 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000146 if (*dind_block >= ctx->fs->super->s_blocks_count ||
147 *dind_block < ctx->fs->super->s_first_data_block) {
148 ctx->errcode = EXT2_ET_BAD_DIND_BLOCK;
149 ret |= BLOCK_ERROR;
150 return ret;
151 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000152 ctx->errcode = io_channel_read_blk(ctx->fs->io, *dind_block,
153 1, ctx->dind_buf);
154 if (ctx->errcode) {
155 ret |= BLOCK_ERROR;
156 return ret;
157 }
Theodore Ts'o5c576471997-04-29 15:29:49 +0000158 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
159 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_READ)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000160 block_nr = (blk_t *) ctx->dind_buf;
161 for (i = 0; i < limit; i++, block_nr++)
162 *block_nr = ext2fs_swab32(*block_nr);
163 }
164 block_nr = (blk_t *) ctx->dind_buf;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000165 offset = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000166 if (ctx->flags & BLOCK_FLAG_APPEND) {
167 for (i = 0; i < limit; i++, block_nr++) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000168 flags = block_iterate_ind(block_nr,
169 *dind_block, offset,
170 ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000171 changed |= flags;
172 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
173 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
174 break;
175 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000176 offset += sizeof(blk_t);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000177 }
178 } else {
179 for (i = 0; i < limit; i++, block_nr++) {
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000180 if (*block_nr == 0) {
181 ctx->bcount += limit;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000182 continue;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000183 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000184 flags = block_iterate_ind(block_nr,
185 *dind_block, offset,
186 ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000187 changed |= flags;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
189 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
190 break;
191 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000192 offset += sizeof(blk_t);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000193 }
194 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000195 if (changed & BLOCK_CHANGED) {
Theodore Ts'o5c576471997-04-29 15:29:49 +0000196 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
197 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000198 block_nr = (blk_t *) ctx->dind_buf;
199 for (i = 0; i < limit; i++, block_nr++)
200 *block_nr = ext2fs_swab32(*block_nr);
201 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000202 ctx->errcode = io_channel_write_blk(ctx->fs->io, *dind_block,
203 1, ctx->dind_buf);
204 if (ctx->errcode)
205 ret |= BLOCK_ERROR | BLOCK_ABORT;
206 }
207 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000208 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209 !(ret & BLOCK_ABORT))
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000210 ret |= (*ctx->func)(ctx->fs, dind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000211 BLOCK_COUNT_DIND, ref_block,
212 ref_offset, ctx->private);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000213 return ret;
214}
215
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000216static int block_iterate_tind(blk_t *tind_block, blk_t ref_block,
217 int ref_offset, struct block_context *ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000218{
219 int ret = 0, changed = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000220 int i, flags, limit, offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000221 blk_t *block_nr;
222
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000223 limit = ctx->fs->blocksize >> 2;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000224 if (!(ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
225 !(ctx->flags & BLOCK_FLAG_DATA_ONLY))
226 ret = (*ctx->func)(ctx->fs, tind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000227 BLOCK_COUNT_TIND, ref_block,
228 ref_offset, ctx->private);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000229 if (!*tind_block || (ret & BLOCK_ABORT)) {
230 ctx->bcount += limit*limit*limit;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000231 return ret;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000232 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000233 if (*tind_block >= ctx->fs->super->s_blocks_count ||
234 *tind_block < ctx->fs->super->s_first_data_block) {
235 ctx->errcode = EXT2_ET_BAD_TIND_BLOCK;
236 ret |= BLOCK_ERROR;
237 return ret;
238 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000239 ctx->errcode = io_channel_read_blk(ctx->fs->io, *tind_block,
240 1, ctx->tind_buf);
241 if (ctx->errcode) {
242 ret |= BLOCK_ERROR;
243 return ret;
244 }
Theodore Ts'o5c576471997-04-29 15:29:49 +0000245 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
246 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_READ)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000247 block_nr = (blk_t *) ctx->tind_buf;
248 for (i = 0; i < limit; i++, block_nr++)
249 *block_nr = ext2fs_swab32(*block_nr);
250 }
251 block_nr = (blk_t *) ctx->tind_buf;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000252 offset = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000253 if (ctx->flags & BLOCK_FLAG_APPEND) {
254 for (i = 0; i < limit; i++, block_nr++) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000255 flags = block_iterate_dind(block_nr,
256 *tind_block,
257 offset, ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000258 changed |= flags;
259 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
260 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
261 break;
262 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000263 offset += sizeof(blk_t);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000264 }
265 } else {
266 for (i = 0; i < limit; i++, block_nr++) {
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000267 if (*block_nr == 0) {
268 ctx->bcount += limit*limit;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000269 continue;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000270 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000271 flags = block_iterate_dind(block_nr,
272 *tind_block,
273 offset, ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000274 changed |= flags;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000275 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
276 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
277 break;
278 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000279 offset += sizeof(blk_t);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000280 }
281 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000282 if (changed & BLOCK_CHANGED) {
Theodore Ts'o5c576471997-04-29 15:29:49 +0000283 if ((ctx->fs->flags & EXT2_FLAG_SWAP_BYTES) ||
284 (ctx->fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000285 block_nr = (blk_t *) ctx->tind_buf;
286 for (i = 0; i < limit; i++, block_nr++)
287 *block_nr = ext2fs_swab32(*block_nr);
288 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000289 ctx->errcode = io_channel_write_blk(ctx->fs->io, *tind_block,
290 1, ctx->tind_buf);
291 if (ctx->errcode)
292 ret |= BLOCK_ERROR | BLOCK_ABORT;
293 }
294 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000295 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
Theodore Ts'o3839e651997-04-26 13:21:57 +0000296 !(ret & BLOCK_ABORT))
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000297 ret |= (*ctx->func)(ctx->fs, tind_block,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000298 BLOCK_COUNT_TIND, ref_block,
299 ref_offset, ctx->private);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000300
301 return ret;
302}
303
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000304errcode_t ext2fs_block_iterate2(ext2_filsys fs,
305 ino_t ino,
306 int flags,
307 char *block_buf,
308 int (*func)(ext2_filsys fs,
309 blk_t *blocknr,
310 int blockcnt,
311 blk_t ref_blk,
312 int ref_offset,
313 void *private),
314 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000315{
316 int i;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000317 int got_inode = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000318 int ret = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000319 blk_t blocks[EXT2_N_BLOCKS]; /* directory data blocks */
320 struct ext2_inode inode;
321 errcode_t retval;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000322 struct block_context ctx;
323
Theodore Ts'of3db3561997-04-26 13:34:30 +0000324 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
325
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000326 retval = ext2fs_get_blocks(fs, ino, blocks);
327 if (retval)
328 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000329
330 ctx.fs = fs;
331 ctx.func = func;
332 ctx.private = private;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000333 ctx.flags = flags;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000334 ctx.bcount = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000335 if (block_buf) {
336 ctx.ind_buf = block_buf;
337 } else {
338 ctx.ind_buf = malloc(fs->blocksize * 3);
339 if (!ctx.ind_buf)
340 return ENOMEM;
341 }
342 ctx.dind_buf = ctx.ind_buf + fs->blocksize;
343 ctx.tind_buf = ctx.dind_buf + fs->blocksize;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000344
345 /*
346 * Iterate over the HURD translator block (if present)
347 */
348 if ((fs->super->s_creator_os == EXT2_OS_HURD) &&
Theodore Ts'o5c576471997-04-29 15:29:49 +0000349 !(flags & BLOCK_FLAG_DATA_ONLY)) {
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000350 ctx.errcode = ext2fs_read_inode(fs, ino, &inode);
351 if (ctx.errcode)
352 goto abort;
353 got_inode = 1;
Theodore Ts'o5c576471997-04-29 15:29:49 +0000354 if (inode.osd1.hurd1.h_i_translator) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000355 ret |= (*ctx.func)(fs,
356 &inode.osd1.hurd1.h_i_translator,
357 BLOCK_COUNT_TRANSLATOR,
358 0, 0, private);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000359 if (ret & BLOCK_ABORT)
360 goto abort;
361 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000362 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000363
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000364 /*
365 * Iterate over normal data blocks
366 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000367 for (i = 0; i < EXT2_NDIR_BLOCKS ; i++, ctx.bcount++) {
368 if (blocks[i] || (flags & BLOCK_FLAG_APPEND)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000369 ret |= (*ctx.func)(fs, &blocks[i],
370 ctx.bcount, 0, 0, private);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000371 if (ret & BLOCK_ABORT)
372 goto abort;
373 }
374 }
375 if (*(blocks + EXT2_IND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000376 ret |= block_iterate_ind(blocks + EXT2_IND_BLOCK,
377 0, 0, &ctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000378 if (ret & BLOCK_ABORT)
379 goto abort;
380 }
381 if (*(blocks + EXT2_DIND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000382 ret |= block_iterate_dind(blocks + EXT2_DIND_BLOCK,
383 0, 0, &ctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000384 if (ret & BLOCK_ABORT)
385 goto abort;
386 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000387 if (*(blocks + EXT2_TIND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000388 ret |= block_iterate_tind(blocks + EXT2_TIND_BLOCK,
389 0, 0, &ctx);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000390 if (ret & BLOCK_ABORT)
391 goto abort;
392 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000393
394abort:
395 if (ret & BLOCK_CHANGED) {
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000396 if (!got_inode) {
397 retval = ext2fs_read_inode(fs, ino, &inode);
398 if (retval)
399 return retval;
400 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000401 for (i=0; i < EXT2_N_BLOCKS; i++)
402 inode.i_block[i] = blocks[i];
403 retval = ext2fs_write_inode(fs, ino, &inode);
404 if (retval)
405 return retval;
406 }
407
408 if (!block_buf)
409 free(ctx.ind_buf);
410
411 return (ret & BLOCK_ERROR) ? ctx.errcode : 0;
412}
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000413
414struct xlate {
415 int (*func)(ext2_filsys fs,
416 blk_t *blocknr,
417 int bcount,
418 void *private);
419 void *real_private;
420};
421
422static int xlate_func(ext2_filsys fs, blk_t *blocknr, int blockcnt,
423 blk_t ref_block, int ref_offset, void *private)
424{
425 struct xlate *xl = private;
426
427 return (*xl->func)(fs, blocknr, blockcnt, xl->real_private);
428}
429
430errcode_t ext2fs_block_iterate(ext2_filsys fs,
431 ino_t ino,
432 int flags,
433 char *block_buf,
434 int (*func)(ext2_filsys fs,
435 blk_t *blocknr,
436 int blockcnt,
437 void *private),
438 void *private)
439{
440 struct xlate xl;
441
442 xl.real_private = private;
443 xl.func = func;
444
445 return ext2fs_block_iterate2(fs, ino, flags, block_buf,
446 xlate_func, &xl);
447}
448
449