xref: /linux/fs/ext2/inode.c (revision 54a8a2220c936a47840c9a3d74910c5a56fae2ed)
1 /*
2  *  linux/fs/ext2/inode.c
3  *
4  * Copyright (C) 1992, 1993, 1994, 1995
5  * Remy Card (card@masi.ibp.fr)
6  * Laboratoire MASI - Institut Blaise Pascal
7  * Universite Pierre et Marie Curie (Paris VI)
8  *
9  *  from
10  *
11  *  linux/fs/minix/inode.c
12  *
13  *  Copyright (C) 1991, 1992  Linus Torvalds
14  *
15  *  Goal-directed block allocation by Stephen Tweedie
16  * 	(sct@dcs.ed.ac.uk), 1993, 1998
17  *  Big-endian to little-endian byte-swapping/bitmaps by
18  *        David S. Miller (davem@caip.rutgers.edu), 1995
19  *  64-bit file support on 64-bit platforms by Jakub Jelinek
20  * 	(jj@sunsite.ms.mff.cuni.cz)
21  *
22  *  Assorted race fixes, rewrite of ext2_get_block() by Al Viro, 2000
23  */
24 
25 #include <linux/smp_lock.h>
26 #include <linux/time.h>
27 #include <linux/highuid.h>
28 #include <linux/pagemap.h>
29 #include <linux/quotaops.h>
30 #include <linux/module.h>
31 #include <linux/writeback.h>
32 #include <linux/buffer_head.h>
33 #include <linux/mpage.h>
34 #include "ext2.h"
35 #include "acl.h"
36 #include "xip.h"
37 
38 MODULE_AUTHOR("Remy Card and others");
39 MODULE_DESCRIPTION("Second Extended Filesystem");
40 MODULE_LICENSE("GPL");
41 
42 static int ext2_update_inode(struct inode * inode, int do_sync);
43 
44 /*
45  * Test whether an inode is a fast symlink.
46  */
47 static inline int ext2_inode_is_fast_symlink(struct inode *inode)
48 {
49 	int ea_blocks = EXT2_I(inode)->i_file_acl ?
50 		(inode->i_sb->s_blocksize >> 9) : 0;
51 
52 	return (S_ISLNK(inode->i_mode) &&
53 		inode->i_blocks - ea_blocks == 0);
54 }
55 
56 /*
57  * Called at each iput().
58  *
59  * The inode may be "bad" if ext2_read_inode() saw an error from
60  * ext2_get_inode(), so we need to check that to avoid freeing random disk
61  * blocks.
62  */
63 void ext2_put_inode(struct inode *inode)
64 {
65 	if (!is_bad_inode(inode))
66 		ext2_discard_prealloc(inode);
67 }
68 
69 /*
70  * Called at the last iput() if i_nlink is zero.
71  */
72 void ext2_delete_inode (struct inode * inode)
73 {
74 	truncate_inode_pages(&inode->i_data, 0);
75 
76 	if (is_bad_inode(inode))
77 		goto no_delete;
78 	EXT2_I(inode)->i_dtime	= get_seconds();
79 	mark_inode_dirty(inode);
80 	ext2_update_inode(inode, inode_needs_sync(inode));
81 
82 	inode->i_size = 0;
83 	if (inode->i_blocks)
84 		ext2_truncate (inode);
85 	ext2_free_inode (inode);
86 
87 	return;
88 no_delete:
89 	clear_inode(inode);	/* We must guarantee clearing of inode... */
90 }
91 
92 void ext2_discard_prealloc (struct inode * inode)
93 {
94 #ifdef EXT2_PREALLOCATE
95 	struct ext2_inode_info *ei = EXT2_I(inode);
96 	write_lock(&ei->i_meta_lock);
97 	if (ei->i_prealloc_count) {
98 		unsigned short total = ei->i_prealloc_count;
99 		unsigned long block = ei->i_prealloc_block;
100 		ei->i_prealloc_count = 0;
101 		ei->i_prealloc_block = 0;
102 		write_unlock(&ei->i_meta_lock);
103 		ext2_free_blocks (inode, block, total);
104 		return;
105 	} else
106 		write_unlock(&ei->i_meta_lock);
107 #endif
108 }
109 
110 static int ext2_alloc_block (struct inode * inode, unsigned long goal, int *err)
111 {
112 #ifdef EXT2FS_DEBUG
113 	static unsigned long alloc_hits, alloc_attempts;
114 #endif
115 	unsigned long result;
116 
117 
118 #ifdef EXT2_PREALLOCATE
119 	struct ext2_inode_info *ei = EXT2_I(inode);
120 	write_lock(&ei->i_meta_lock);
121 	if (ei->i_prealloc_count &&
122 	    (goal == ei->i_prealloc_block || goal + 1 == ei->i_prealloc_block))
123 	{
124 		result = ei->i_prealloc_block++;
125 		ei->i_prealloc_count--;
126 		write_unlock(&ei->i_meta_lock);
127 		ext2_debug ("preallocation hit (%lu/%lu).\n",
128 			    ++alloc_hits, ++alloc_attempts);
129 	} else {
130 		write_unlock(&ei->i_meta_lock);
131 		ext2_discard_prealloc (inode);
132 		ext2_debug ("preallocation miss (%lu/%lu).\n",
133 			    alloc_hits, ++alloc_attempts);
134 		if (S_ISREG(inode->i_mode))
135 			result = ext2_new_block (inode, goal,
136 				 &ei->i_prealloc_count,
137 				 &ei->i_prealloc_block, err);
138 		else
139 			result = ext2_new_block(inode, goal, NULL, NULL, err);
140 	}
141 #else
142 	result = ext2_new_block (inode, goal, 0, 0, err);
143 #endif
144 	return result;
145 }
146 
147 typedef struct {
148 	__le32	*p;
149 	__le32	key;
150 	struct buffer_head *bh;
151 } Indirect;
152 
153 static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
154 {
155 	p->key = *(p->p = v);
156 	p->bh = bh;
157 }
158 
159 static inline int verify_chain(Indirect *from, Indirect *to)
160 {
161 	while (from <= to && from->key == *from->p)
162 		from++;
163 	return (from > to);
164 }
165 
166 /**
167  *	ext2_block_to_path - parse the block number into array of offsets
168  *	@inode: inode in question (we are only interested in its superblock)
169  *	@i_block: block number to be parsed
170  *	@offsets: array to store the offsets in
171  *      @boundary: set this non-zero if the referred-to block is likely to be
172  *             followed (on disk) by an indirect block.
173  *	To store the locations of file's data ext2 uses a data structure common
174  *	for UNIX filesystems - tree of pointers anchored in the inode, with
175  *	data blocks at leaves and indirect blocks in intermediate nodes.
176  *	This function translates the block number into path in that tree -
177  *	return value is the path length and @offsets[n] is the offset of
178  *	pointer to (n+1)th node in the nth one. If @block is out of range
179  *	(negative or too large) warning is printed and zero returned.
180  *
181  *	Note: function doesn't find node addresses, so no IO is needed. All
182  *	we need to know is the capacity of indirect blocks (taken from the
183  *	inode->i_sb).
184  */
185 
186 /*
187  * Portability note: the last comparison (check that we fit into triple
188  * indirect block) is spelled differently, because otherwise on an
189  * architecture with 32-bit longs and 8Kb pages we might get into trouble
190  * if our filesystem had 8Kb blocks. We might use long long, but that would
191  * kill us on x86. Oh, well, at least the sign propagation does not matter -
192  * i_block would have to be negative in the very beginning, so we would not
193  * get there at all.
194  */
195 
196 static int ext2_block_to_path(struct inode *inode,
197 			long i_block, int offsets[4], int *boundary)
198 {
199 	int ptrs = EXT2_ADDR_PER_BLOCK(inode->i_sb);
200 	int ptrs_bits = EXT2_ADDR_PER_BLOCK_BITS(inode->i_sb);
201 	const long direct_blocks = EXT2_NDIR_BLOCKS,
202 		indirect_blocks = ptrs,
203 		double_blocks = (1 << (ptrs_bits * 2));
204 	int n = 0;
205 	int final = 0;
206 
207 	if (i_block < 0) {
208 		ext2_warning (inode->i_sb, "ext2_block_to_path", "block < 0");
209 	} else if (i_block < direct_blocks) {
210 		offsets[n++] = i_block;
211 		final = direct_blocks;
212 	} else if ( (i_block -= direct_blocks) < indirect_blocks) {
213 		offsets[n++] = EXT2_IND_BLOCK;
214 		offsets[n++] = i_block;
215 		final = ptrs;
216 	} else if ((i_block -= indirect_blocks) < double_blocks) {
217 		offsets[n++] = EXT2_DIND_BLOCK;
218 		offsets[n++] = i_block >> ptrs_bits;
219 		offsets[n++] = i_block & (ptrs - 1);
220 		final = ptrs;
221 	} else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
222 		offsets[n++] = EXT2_TIND_BLOCK;
223 		offsets[n++] = i_block >> (ptrs_bits * 2);
224 		offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
225 		offsets[n++] = i_block & (ptrs - 1);
226 		final = ptrs;
227 	} else {
228 		ext2_warning (inode->i_sb, "ext2_block_to_path", "block > big");
229 	}
230 	if (boundary)
231 		*boundary = (i_block & (ptrs - 1)) == (final - 1);
232 	return n;
233 }
234 
235 /**
236  *	ext2_get_branch - read the chain of indirect blocks leading to data
237  *	@inode: inode in question
238  *	@depth: depth of the chain (1 - direct pointer, etc.)
239  *	@offsets: offsets of pointers in inode/indirect blocks
240  *	@chain: place to store the result
241  *	@err: here we store the error value
242  *
243  *	Function fills the array of triples <key, p, bh> and returns %NULL
244  *	if everything went OK or the pointer to the last filled triple
245  *	(incomplete one) otherwise. Upon the return chain[i].key contains
246  *	the number of (i+1)-th block in the chain (as it is stored in memory,
247  *	i.e. little-endian 32-bit), chain[i].p contains the address of that
248  *	number (it points into struct inode for i==0 and into the bh->b_data
249  *	for i>0) and chain[i].bh points to the buffer_head of i-th indirect
250  *	block for i>0 and NULL for i==0. In other words, it holds the block
251  *	numbers of the chain, addresses they were taken from (and where we can
252  *	verify that chain did not change) and buffer_heads hosting these
253  *	numbers.
254  *
255  *	Function stops when it stumbles upon zero pointer (absent block)
256  *		(pointer to last triple returned, *@err == 0)
257  *	or when it gets an IO error reading an indirect block
258  *		(ditto, *@err == -EIO)
259  *	or when it notices that chain had been changed while it was reading
260  *		(ditto, *@err == -EAGAIN)
261  *	or when it reads all @depth-1 indirect blocks successfully and finds
262  *	the whole chain, all way to the data (returns %NULL, *err == 0).
263  */
264 static Indirect *ext2_get_branch(struct inode *inode,
265 				 int depth,
266 				 int *offsets,
267 				 Indirect chain[4],
268 				 int *err)
269 {
270 	struct super_block *sb = inode->i_sb;
271 	Indirect *p = chain;
272 	struct buffer_head *bh;
273 
274 	*err = 0;
275 	/* i_data is not going away, no lock needed */
276 	add_chain (chain, NULL, EXT2_I(inode)->i_data + *offsets);
277 	if (!p->key)
278 		goto no_block;
279 	while (--depth) {
280 		bh = sb_bread(sb, le32_to_cpu(p->key));
281 		if (!bh)
282 			goto failure;
283 		read_lock(&EXT2_I(inode)->i_meta_lock);
284 		if (!verify_chain(chain, p))
285 			goto changed;
286 		add_chain(++p, bh, (__le32*)bh->b_data + *++offsets);
287 		read_unlock(&EXT2_I(inode)->i_meta_lock);
288 		if (!p->key)
289 			goto no_block;
290 	}
291 	return NULL;
292 
293 changed:
294 	read_unlock(&EXT2_I(inode)->i_meta_lock);
295 	brelse(bh);
296 	*err = -EAGAIN;
297 	goto no_block;
298 failure:
299 	*err = -EIO;
300 no_block:
301 	return p;
302 }
303 
304 /**
305  *	ext2_find_near - find a place for allocation with sufficient locality
306  *	@inode: owner
307  *	@ind: descriptor of indirect block.
308  *
309  *	This function returns the prefered place for block allocation.
310  *	It is used when heuristic for sequential allocation fails.
311  *	Rules are:
312  *	  + if there is a block to the left of our position - allocate near it.
313  *	  + if pointer will live in indirect block - allocate near that block.
314  *	  + if pointer will live in inode - allocate in the same cylinder group.
315  *
316  * In the latter case we colour the starting block by the callers PID to
317  * prevent it from clashing with concurrent allocations for a different inode
318  * in the same block group.   The PID is used here so that functionally related
319  * files will be close-by on-disk.
320  *
321  *	Caller must make sure that @ind is valid and will stay that way.
322  */
323 
324 static unsigned long ext2_find_near(struct inode *inode, Indirect *ind)
325 {
326 	struct ext2_inode_info *ei = EXT2_I(inode);
327 	__le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data;
328 	__le32 *p;
329 	unsigned long bg_start;
330 	unsigned long colour;
331 
332 	/* Try to find previous block */
333 	for (p = ind->p - 1; p >= start; p--)
334 		if (*p)
335 			return le32_to_cpu(*p);
336 
337 	/* No such thing, so let's try location of indirect block */
338 	if (ind->bh)
339 		return ind->bh->b_blocknr;
340 
341 	/*
342 	 * It is going to be refered from inode itself? OK, just put it into
343 	 * the same cylinder group then.
344 	 */
345 	bg_start = (ei->i_block_group * EXT2_BLOCKS_PER_GROUP(inode->i_sb)) +
346 		le32_to_cpu(EXT2_SB(inode->i_sb)->s_es->s_first_data_block);
347 	colour = (current->pid % 16) *
348 			(EXT2_BLOCKS_PER_GROUP(inode->i_sb) / 16);
349 	return bg_start + colour;
350 }
351 
352 /**
353  *	ext2_find_goal - find a prefered place for allocation.
354  *	@inode: owner
355  *	@block:  block we want
356  *	@chain:  chain of indirect blocks
357  *	@partial: pointer to the last triple within a chain
358  *	@goal:	place to store the result.
359  *
360  *	Normally this function find the prefered place for block allocation,
361  *	stores it in *@goal and returns zero. If the branch had been changed
362  *	under us we return -EAGAIN.
363  */
364 
365 static inline int ext2_find_goal(struct inode *inode,
366 				 long block,
367 				 Indirect chain[4],
368 				 Indirect *partial,
369 				 unsigned long *goal)
370 {
371 	struct ext2_inode_info *ei = EXT2_I(inode);
372 	write_lock(&ei->i_meta_lock);
373 	if ((block == ei->i_next_alloc_block + 1) && ei->i_next_alloc_goal) {
374 		ei->i_next_alloc_block++;
375 		ei->i_next_alloc_goal++;
376 	}
377 	if (verify_chain(chain, partial)) {
378 		/*
379 		 * try the heuristic for sequential allocation,
380 		 * failing that at least try to get decent locality.
381 		 */
382 		if (block == ei->i_next_alloc_block)
383 			*goal = ei->i_next_alloc_goal;
384 		if (!*goal)
385 			*goal = ext2_find_near(inode, partial);
386 		write_unlock(&ei->i_meta_lock);
387 		return 0;
388 	}
389 	write_unlock(&ei->i_meta_lock);
390 	return -EAGAIN;
391 }
392 
393 /**
394  *	ext2_alloc_branch - allocate and set up a chain of blocks.
395  *	@inode: owner
396  *	@num: depth of the chain (number of blocks to allocate)
397  *	@offsets: offsets (in the blocks) to store the pointers to next.
398  *	@branch: place to store the chain in.
399  *
400  *	This function allocates @num blocks, zeroes out all but the last one,
401  *	links them into chain and (if we are synchronous) writes them to disk.
402  *	In other words, it prepares a branch that can be spliced onto the
403  *	inode. It stores the information about that chain in the branch[], in
404  *	the same format as ext2_get_branch() would do. We are calling it after
405  *	we had read the existing part of chain and partial points to the last
406  *	triple of that (one with zero ->key). Upon the exit we have the same
407  *	picture as after the successful ext2_get_block(), excpet that in one
408  *	place chain is disconnected - *branch->p is still zero (we did not
409  *	set the last link), but branch->key contains the number that should
410  *	be placed into *branch->p to fill that gap.
411  *
412  *	If allocation fails we free all blocks we've allocated (and forget
413  *	their buffer_heads) and return the error value the from failed
414  *	ext2_alloc_block() (normally -ENOSPC). Otherwise we set the chain
415  *	as described above and return 0.
416  */
417 
418 static int ext2_alloc_branch(struct inode *inode,
419 			     int num,
420 			     unsigned long goal,
421 			     int *offsets,
422 			     Indirect *branch)
423 {
424 	int blocksize = inode->i_sb->s_blocksize;
425 	int n = 0;
426 	int err;
427 	int i;
428 	int parent = ext2_alloc_block(inode, goal, &err);
429 
430 	branch[0].key = cpu_to_le32(parent);
431 	if (parent) for (n = 1; n < num; n++) {
432 		struct buffer_head *bh;
433 		/* Allocate the next block */
434 		int nr = ext2_alloc_block(inode, parent, &err);
435 		if (!nr)
436 			break;
437 		branch[n].key = cpu_to_le32(nr);
438 		/*
439 		 * Get buffer_head for parent block, zero it out and set
440 		 * the pointer to new one, then send parent to disk.
441 		 */
442 		bh = sb_getblk(inode->i_sb, parent);
443 		lock_buffer(bh);
444 		memset(bh->b_data, 0, blocksize);
445 		branch[n].bh = bh;
446 		branch[n].p = (__le32 *) bh->b_data + offsets[n];
447 		*branch[n].p = branch[n].key;
448 		set_buffer_uptodate(bh);
449 		unlock_buffer(bh);
450 		mark_buffer_dirty_inode(bh, inode);
451 		/* We used to sync bh here if IS_SYNC(inode).
452 		 * But we now rely upon generic_osync_inode()
453 		 * and b_inode_buffers.  But not for directories.
454 		 */
455 		if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
456 			sync_dirty_buffer(bh);
457 		parent = nr;
458 	}
459 	if (n == num)
460 		return 0;
461 
462 	/* Allocation failed, free what we already allocated */
463 	for (i = 1; i < n; i++)
464 		bforget(branch[i].bh);
465 	for (i = 0; i < n; i++)
466 		ext2_free_blocks(inode, le32_to_cpu(branch[i].key), 1);
467 	return err;
468 }
469 
470 /**
471  *	ext2_splice_branch - splice the allocated branch onto inode.
472  *	@inode: owner
473  *	@block: (logical) number of block we are adding
474  *	@chain: chain of indirect blocks (with a missing link - see
475  *		ext2_alloc_branch)
476  *	@where: location of missing link
477  *	@num:   number of blocks we are adding
478  *
479  *	This function verifies that chain (up to the missing link) had not
480  *	changed, fills the missing link and does all housekeeping needed in
481  *	inode (->i_blocks, etc.). In case of success we end up with the full
482  *	chain to new block and return 0. Otherwise (== chain had been changed)
483  *	we free the new blocks (forgetting their buffer_heads, indeed) and
484  *	return -EAGAIN.
485  */
486 
487 static inline int ext2_splice_branch(struct inode *inode,
488 				     long block,
489 				     Indirect chain[4],
490 				     Indirect *where,
491 				     int num)
492 {
493 	struct ext2_inode_info *ei = EXT2_I(inode);
494 	int i;
495 
496 	/* Verify that place we are splicing to is still there and vacant */
497 
498 	write_lock(&ei->i_meta_lock);
499 	if (!verify_chain(chain, where-1) || *where->p)
500 		goto changed;
501 
502 	/* That's it */
503 
504 	*where->p = where->key;
505 	ei->i_next_alloc_block = block;
506 	ei->i_next_alloc_goal = le32_to_cpu(where[num-1].key);
507 
508 	write_unlock(&ei->i_meta_lock);
509 
510 	/* We are done with atomic stuff, now do the rest of housekeeping */
511 
512 	inode->i_ctime = CURRENT_TIME_SEC;
513 
514 	/* had we spliced it onto indirect block? */
515 	if (where->bh)
516 		mark_buffer_dirty_inode(where->bh, inode);
517 
518 	mark_inode_dirty(inode);
519 	return 0;
520 
521 changed:
522 	write_unlock(&ei->i_meta_lock);
523 	for (i = 1; i < num; i++)
524 		bforget(where[i].bh);
525 	for (i = 0; i < num; i++)
526 		ext2_free_blocks(inode, le32_to_cpu(where[i].key), 1);
527 	return -EAGAIN;
528 }
529 
530 /*
531  * Allocation strategy is simple: if we have to allocate something, we will
532  * have to go the whole way to leaf. So let's do it before attaching anything
533  * to tree, set linkage between the newborn blocks, write them if sync is
534  * required, recheck the path, free and repeat if check fails, otherwise
535  * set the last missing link (that will protect us from any truncate-generated
536  * removals - all blocks on the path are immune now) and possibly force the
537  * write on the parent block.
538  * That has a nice additional property: no special recovery from the failed
539  * allocations is needed - we simply release blocks and do not touch anything
540  * reachable from inode.
541  */
542 
543 int ext2_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create)
544 {
545 	int err = -EIO;
546 	int offsets[4];
547 	Indirect chain[4];
548 	Indirect *partial;
549 	unsigned long goal;
550 	int left;
551 	int boundary = 0;
552 	int depth = ext2_block_to_path(inode, iblock, offsets, &boundary);
553 
554 	if (depth == 0)
555 		goto out;
556 
557 reread:
558 	partial = ext2_get_branch(inode, depth, offsets, chain, &err);
559 
560 	/* Simplest case - block found, no allocation needed */
561 	if (!partial) {
562 got_it:
563 		map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
564 		if (boundary)
565 			set_buffer_boundary(bh_result);
566 		/* Clean up and exit */
567 		partial = chain+depth-1; /* the whole chain */
568 		goto cleanup;
569 	}
570 
571 	/* Next simple case - plain lookup or failed read of indirect block */
572 	if (!create || err == -EIO) {
573 cleanup:
574 		while (partial > chain) {
575 			brelse(partial->bh);
576 			partial--;
577 		}
578 out:
579 		return err;
580 	}
581 
582 	/*
583 	 * Indirect block might be removed by truncate while we were
584 	 * reading it. Handling of that case (forget what we've got and
585 	 * reread) is taken out of the main path.
586 	 */
587 	if (err == -EAGAIN)
588 		goto changed;
589 
590 	goal = 0;
591 	if (ext2_find_goal(inode, iblock, chain, partial, &goal) < 0)
592 		goto changed;
593 
594 	left = (chain + depth) - partial;
595 	err = ext2_alloc_branch(inode, left, goal,
596 					offsets+(partial-chain), partial);
597 	if (err)
598 		goto cleanup;
599 
600 	if (ext2_use_xip(inode->i_sb)) {
601 		/*
602 		 * we need to clear the block
603 		 */
604 		err = ext2_clear_xip_target (inode,
605 			le32_to_cpu(chain[depth-1].key));
606 		if (err)
607 			goto cleanup;
608 	}
609 
610 	if (ext2_splice_branch(inode, iblock, chain, partial, left) < 0)
611 		goto changed;
612 
613 	set_buffer_new(bh_result);
614 	goto got_it;
615 
616 changed:
617 	while (partial > chain) {
618 		brelse(partial->bh);
619 		partial--;
620 	}
621 	goto reread;
622 }
623 
624 static int ext2_writepage(struct page *page, struct writeback_control *wbc)
625 {
626 	return block_write_full_page(page, ext2_get_block, wbc);
627 }
628 
629 static int ext2_readpage(struct file *file, struct page *page)
630 {
631 	return mpage_readpage(page, ext2_get_block);
632 }
633 
634 static int
635 ext2_readpages(struct file *file, struct address_space *mapping,
636 		struct list_head *pages, unsigned nr_pages)
637 {
638 	return mpage_readpages(mapping, pages, nr_pages, ext2_get_block);
639 }
640 
641 static int
642 ext2_prepare_write(struct file *file, struct page *page,
643 			unsigned from, unsigned to)
644 {
645 	return block_prepare_write(page,from,to,ext2_get_block);
646 }
647 
648 static int
649 ext2_nobh_prepare_write(struct file *file, struct page *page,
650 			unsigned from, unsigned to)
651 {
652 	return nobh_prepare_write(page,from,to,ext2_get_block);
653 }
654 
655 static int ext2_nobh_writepage(struct page *page,
656 			struct writeback_control *wbc)
657 {
658 	return nobh_writepage(page, ext2_get_block, wbc);
659 }
660 
661 static sector_t ext2_bmap(struct address_space *mapping, sector_t block)
662 {
663 	return generic_block_bmap(mapping,block,ext2_get_block);
664 }
665 
666 static int
667 ext2_get_blocks(struct inode *inode, sector_t iblock, unsigned long max_blocks,
668 			struct buffer_head *bh_result, int create)
669 {
670 	int ret;
671 
672 	ret = ext2_get_block(inode, iblock, bh_result, create);
673 	if (ret == 0)
674 		bh_result->b_size = (1 << inode->i_blkbits);
675 	return ret;
676 }
677 
678 static ssize_t
679 ext2_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
680 			loff_t offset, unsigned long nr_segs)
681 {
682 	struct file *file = iocb->ki_filp;
683 	struct inode *inode = file->f_mapping->host;
684 
685 	return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
686 				offset, nr_segs, ext2_get_blocks, NULL);
687 }
688 
689 static int
690 ext2_writepages(struct address_space *mapping, struct writeback_control *wbc)
691 {
692 	return mpage_writepages(mapping, wbc, ext2_get_block);
693 }
694 
695 struct address_space_operations ext2_aops = {
696 	.readpage		= ext2_readpage,
697 	.readpages		= ext2_readpages,
698 	.writepage		= ext2_writepage,
699 	.sync_page		= block_sync_page,
700 	.prepare_write		= ext2_prepare_write,
701 	.commit_write		= generic_commit_write,
702 	.bmap			= ext2_bmap,
703 	.direct_IO		= ext2_direct_IO,
704 	.writepages		= ext2_writepages,
705 };
706 
707 struct address_space_operations ext2_aops_xip = {
708 	.bmap			= ext2_bmap,
709 	.get_xip_page		= ext2_get_xip_page,
710 };
711 
712 struct address_space_operations ext2_nobh_aops = {
713 	.readpage		= ext2_readpage,
714 	.readpages		= ext2_readpages,
715 	.writepage		= ext2_nobh_writepage,
716 	.sync_page		= block_sync_page,
717 	.prepare_write		= ext2_nobh_prepare_write,
718 	.commit_write		= nobh_commit_write,
719 	.bmap			= ext2_bmap,
720 	.direct_IO		= ext2_direct_IO,
721 	.writepages		= ext2_writepages,
722 };
723 
724 /*
725  * Probably it should be a library function... search for first non-zero word
726  * or memcmp with zero_page, whatever is better for particular architecture.
727  * Linus?
728  */
729 static inline int all_zeroes(__le32 *p, __le32 *q)
730 {
731 	while (p < q)
732 		if (*p++)
733 			return 0;
734 	return 1;
735 }
736 
737 /**
738  *	ext2_find_shared - find the indirect blocks for partial truncation.
739  *	@inode:	  inode in question
740  *	@depth:	  depth of the affected branch
741  *	@offsets: offsets of pointers in that branch (see ext2_block_to_path)
742  *	@chain:	  place to store the pointers to partial indirect blocks
743  *	@top:	  place to the (detached) top of branch
744  *
745  *	This is a helper function used by ext2_truncate().
746  *
747  *	When we do truncate() we may have to clean the ends of several indirect
748  *	blocks but leave the blocks themselves alive. Block is partially
749  *	truncated if some data below the new i_size is refered from it (and
750  *	it is on the path to the first completely truncated data block, indeed).
751  *	We have to free the top of that path along with everything to the right
752  *	of the path. Since no allocation past the truncation point is possible
753  *	until ext2_truncate() finishes, we may safely do the latter, but top
754  *	of branch may require special attention - pageout below the truncation
755  *	point might try to populate it.
756  *
757  *	We atomically detach the top of branch from the tree, store the block
758  *	number of its root in *@top, pointers to buffer_heads of partially
759  *	truncated blocks - in @chain[].bh and pointers to their last elements
760  *	that should not be removed - in @chain[].p. Return value is the pointer
761  *	to last filled element of @chain.
762  *
763  *	The work left to caller to do the actual freeing of subtrees:
764  *		a) free the subtree starting from *@top
765  *		b) free the subtrees whose roots are stored in
766  *			(@chain[i].p+1 .. end of @chain[i].bh->b_data)
767  *		c) free the subtrees growing from the inode past the @chain[0].p
768  *			(no partially truncated stuff there).
769  */
770 
771 static Indirect *ext2_find_shared(struct inode *inode,
772 				int depth,
773 				int offsets[4],
774 				Indirect chain[4],
775 				__le32 *top)
776 {
777 	Indirect *partial, *p;
778 	int k, err;
779 
780 	*top = 0;
781 	for (k = depth; k > 1 && !offsets[k-1]; k--)
782 		;
783 	partial = ext2_get_branch(inode, k, offsets, chain, &err);
784 	if (!partial)
785 		partial = chain + k-1;
786 	/*
787 	 * If the branch acquired continuation since we've looked at it -
788 	 * fine, it should all survive and (new) top doesn't belong to us.
789 	 */
790 	write_lock(&EXT2_I(inode)->i_meta_lock);
791 	if (!partial->key && *partial->p) {
792 		write_unlock(&EXT2_I(inode)->i_meta_lock);
793 		goto no_top;
794 	}
795 	for (p=partial; p>chain && all_zeroes((__le32*)p->bh->b_data,p->p); p--)
796 		;
797 	/*
798 	 * OK, we've found the last block that must survive. The rest of our
799 	 * branch should be detached before unlocking. However, if that rest
800 	 * of branch is all ours and does not grow immediately from the inode
801 	 * it's easier to cheat and just decrement partial->p.
802 	 */
803 	if (p == chain + k - 1 && p > chain) {
804 		p->p--;
805 	} else {
806 		*top = *p->p;
807 		*p->p = 0;
808 	}
809 	write_unlock(&EXT2_I(inode)->i_meta_lock);
810 
811 	while(partial > p)
812 	{
813 		brelse(partial->bh);
814 		partial--;
815 	}
816 no_top:
817 	return partial;
818 }
819 
820 /**
821  *	ext2_free_data - free a list of data blocks
822  *	@inode:	inode we are dealing with
823  *	@p:	array of block numbers
824  *	@q:	points immediately past the end of array
825  *
826  *	We are freeing all blocks refered from that array (numbers are
827  *	stored as little-endian 32-bit) and updating @inode->i_blocks
828  *	appropriately.
829  */
830 static inline void ext2_free_data(struct inode *inode, __le32 *p, __le32 *q)
831 {
832 	unsigned long block_to_free = 0, count = 0;
833 	unsigned long nr;
834 
835 	for ( ; p < q ; p++) {
836 		nr = le32_to_cpu(*p);
837 		if (nr) {
838 			*p = 0;
839 			/* accumulate blocks to free if they're contiguous */
840 			if (count == 0)
841 				goto free_this;
842 			else if (block_to_free == nr - count)
843 				count++;
844 			else {
845 				mark_inode_dirty(inode);
846 				ext2_free_blocks (inode, block_to_free, count);
847 			free_this:
848 				block_to_free = nr;
849 				count = 1;
850 			}
851 		}
852 	}
853 	if (count > 0) {
854 		mark_inode_dirty(inode);
855 		ext2_free_blocks (inode, block_to_free, count);
856 	}
857 }
858 
859 /**
860  *	ext2_free_branches - free an array of branches
861  *	@inode:	inode we are dealing with
862  *	@p:	array of block numbers
863  *	@q:	pointer immediately past the end of array
864  *	@depth:	depth of the branches to free
865  *
866  *	We are freeing all blocks refered from these branches (numbers are
867  *	stored as little-endian 32-bit) and updating @inode->i_blocks
868  *	appropriately.
869  */
870 static void ext2_free_branches(struct inode *inode, __le32 *p, __le32 *q, int depth)
871 {
872 	struct buffer_head * bh;
873 	unsigned long nr;
874 
875 	if (depth--) {
876 		int addr_per_block = EXT2_ADDR_PER_BLOCK(inode->i_sb);
877 		for ( ; p < q ; p++) {
878 			nr = le32_to_cpu(*p);
879 			if (!nr)
880 				continue;
881 			*p = 0;
882 			bh = sb_bread(inode->i_sb, nr);
883 			/*
884 			 * A read failure? Report error and clear slot
885 			 * (should be rare).
886 			 */
887 			if (!bh) {
888 				ext2_error(inode->i_sb, "ext2_free_branches",
889 					"Read failure, inode=%ld, block=%ld",
890 					inode->i_ino, nr);
891 				continue;
892 			}
893 			ext2_free_branches(inode,
894 					   (__le32*)bh->b_data,
895 					   (__le32*)bh->b_data + addr_per_block,
896 					   depth);
897 			bforget(bh);
898 			ext2_free_blocks(inode, nr, 1);
899 			mark_inode_dirty(inode);
900 		}
901 	} else
902 		ext2_free_data(inode, p, q);
903 }
904 
905 void ext2_truncate (struct inode * inode)
906 {
907 	__le32 *i_data = EXT2_I(inode)->i_data;
908 	int addr_per_block = EXT2_ADDR_PER_BLOCK(inode->i_sb);
909 	int offsets[4];
910 	Indirect chain[4];
911 	Indirect *partial;
912 	__le32 nr = 0;
913 	int n;
914 	long iblock;
915 	unsigned blocksize;
916 
917 	if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
918 	    S_ISLNK(inode->i_mode)))
919 		return;
920 	if (ext2_inode_is_fast_symlink(inode))
921 		return;
922 	if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
923 		return;
924 
925 	ext2_discard_prealloc(inode);
926 
927 	blocksize = inode->i_sb->s_blocksize;
928 	iblock = (inode->i_size + blocksize-1)
929 					>> EXT2_BLOCK_SIZE_BITS(inode->i_sb);
930 
931 	if (mapping_is_xip(inode->i_mapping))
932 		xip_truncate_page(inode->i_mapping, inode->i_size);
933 	else if (test_opt(inode->i_sb, NOBH))
934 		nobh_truncate_page(inode->i_mapping, inode->i_size);
935 	else
936 		block_truncate_page(inode->i_mapping,
937 				inode->i_size, ext2_get_block);
938 
939 	n = ext2_block_to_path(inode, iblock, offsets, NULL);
940 	if (n == 0)
941 		return;
942 
943 	if (n == 1) {
944 		ext2_free_data(inode, i_data+offsets[0],
945 					i_data + EXT2_NDIR_BLOCKS);
946 		goto do_indirects;
947 	}
948 
949 	partial = ext2_find_shared(inode, n, offsets, chain, &nr);
950 	/* Kill the top of shared branch (already detached) */
951 	if (nr) {
952 		if (partial == chain)
953 			mark_inode_dirty(inode);
954 		else
955 			mark_buffer_dirty_inode(partial->bh, inode);
956 		ext2_free_branches(inode, &nr, &nr+1, (chain+n-1) - partial);
957 	}
958 	/* Clear the ends of indirect blocks on the shared branch */
959 	while (partial > chain) {
960 		ext2_free_branches(inode,
961 				   partial->p + 1,
962 				   (__le32*)partial->bh->b_data+addr_per_block,
963 				   (chain+n-1) - partial);
964 		mark_buffer_dirty_inode(partial->bh, inode);
965 		brelse (partial->bh);
966 		partial--;
967 	}
968 do_indirects:
969 	/* Kill the remaining (whole) subtrees */
970 	switch (offsets[0]) {
971 		default:
972 			nr = i_data[EXT2_IND_BLOCK];
973 			if (nr) {
974 				i_data[EXT2_IND_BLOCK] = 0;
975 				mark_inode_dirty(inode);
976 				ext2_free_branches(inode, &nr, &nr+1, 1);
977 			}
978 		case EXT2_IND_BLOCK:
979 			nr = i_data[EXT2_DIND_BLOCK];
980 			if (nr) {
981 				i_data[EXT2_DIND_BLOCK] = 0;
982 				mark_inode_dirty(inode);
983 				ext2_free_branches(inode, &nr, &nr+1, 2);
984 			}
985 		case EXT2_DIND_BLOCK:
986 			nr = i_data[EXT2_TIND_BLOCK];
987 			if (nr) {
988 				i_data[EXT2_TIND_BLOCK] = 0;
989 				mark_inode_dirty(inode);
990 				ext2_free_branches(inode, &nr, &nr+1, 3);
991 			}
992 		case EXT2_TIND_BLOCK:
993 			;
994 	}
995 	inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
996 	if (inode_needs_sync(inode)) {
997 		sync_mapping_buffers(inode->i_mapping);
998 		ext2_sync_inode (inode);
999 	} else {
1000 		mark_inode_dirty(inode);
1001 	}
1002 }
1003 
1004 static struct ext2_inode *ext2_get_inode(struct super_block *sb, ino_t ino,
1005 					struct buffer_head **p)
1006 {
1007 	struct buffer_head * bh;
1008 	unsigned long block_group;
1009 	unsigned long block;
1010 	unsigned long offset;
1011 	struct ext2_group_desc * gdp;
1012 
1013 	*p = NULL;
1014 	if ((ino != EXT2_ROOT_INO && ino < EXT2_FIRST_INO(sb)) ||
1015 	    ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
1016 		goto Einval;
1017 
1018 	block_group = (ino - 1) / EXT2_INODES_PER_GROUP(sb);
1019 	gdp = ext2_get_group_desc(sb, block_group, &bh);
1020 	if (!gdp)
1021 		goto Egdp;
1022 	/*
1023 	 * Figure out the offset within the block group inode table
1024 	 */
1025 	offset = ((ino - 1) % EXT2_INODES_PER_GROUP(sb)) * EXT2_INODE_SIZE(sb);
1026 	block = le32_to_cpu(gdp->bg_inode_table) +
1027 		(offset >> EXT2_BLOCK_SIZE_BITS(sb));
1028 	if (!(bh = sb_bread(sb, block)))
1029 		goto Eio;
1030 
1031 	*p = bh;
1032 	offset &= (EXT2_BLOCK_SIZE(sb) - 1);
1033 	return (struct ext2_inode *) (bh->b_data + offset);
1034 
1035 Einval:
1036 	ext2_error(sb, "ext2_get_inode", "bad inode number: %lu",
1037 		   (unsigned long) ino);
1038 	return ERR_PTR(-EINVAL);
1039 Eio:
1040 	ext2_error(sb, "ext2_get_inode",
1041 		   "unable to read inode block - inode=%lu, block=%lu",
1042 		   (unsigned long) ino, block);
1043 Egdp:
1044 	return ERR_PTR(-EIO);
1045 }
1046 
1047 void ext2_set_inode_flags(struct inode *inode)
1048 {
1049 	unsigned int flags = EXT2_I(inode)->i_flags;
1050 
1051 	inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
1052 	if (flags & EXT2_SYNC_FL)
1053 		inode->i_flags |= S_SYNC;
1054 	if (flags & EXT2_APPEND_FL)
1055 		inode->i_flags |= S_APPEND;
1056 	if (flags & EXT2_IMMUTABLE_FL)
1057 		inode->i_flags |= S_IMMUTABLE;
1058 	if (flags & EXT2_NOATIME_FL)
1059 		inode->i_flags |= S_NOATIME;
1060 	if (flags & EXT2_DIRSYNC_FL)
1061 		inode->i_flags |= S_DIRSYNC;
1062 }
1063 
1064 void ext2_read_inode (struct inode * inode)
1065 {
1066 	struct ext2_inode_info *ei = EXT2_I(inode);
1067 	ino_t ino = inode->i_ino;
1068 	struct buffer_head * bh;
1069 	struct ext2_inode * raw_inode = ext2_get_inode(inode->i_sb, ino, &bh);
1070 	int n;
1071 
1072 #ifdef CONFIG_EXT2_FS_POSIX_ACL
1073 	ei->i_acl = EXT2_ACL_NOT_CACHED;
1074 	ei->i_default_acl = EXT2_ACL_NOT_CACHED;
1075 #endif
1076 	if (IS_ERR(raw_inode))
1077  		goto bad_inode;
1078 
1079 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
1080 	inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
1081 	inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
1082 	if (!(test_opt (inode->i_sb, NO_UID32))) {
1083 		inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
1084 		inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
1085 	}
1086 	inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
1087 	inode->i_size = le32_to_cpu(raw_inode->i_size);
1088 	inode->i_atime.tv_sec = le32_to_cpu(raw_inode->i_atime);
1089 	inode->i_ctime.tv_sec = le32_to_cpu(raw_inode->i_ctime);
1090 	inode->i_mtime.tv_sec = le32_to_cpu(raw_inode->i_mtime);
1091 	inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = inode->i_ctime.tv_nsec = 0;
1092 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
1093 	/* We now have enough fields to check if the inode was active or not.
1094 	 * This is needed because nfsd might try to access dead inodes
1095 	 * the test is that same one that e2fsck uses
1096 	 * NeilBrown 1999oct15
1097 	 */
1098 	if (inode->i_nlink == 0 && (inode->i_mode == 0 || ei->i_dtime)) {
1099 		/* this inode is deleted */
1100 		brelse (bh);
1101 		goto bad_inode;
1102 	}
1103 	inode->i_blksize = PAGE_SIZE;	/* This is the optimal IO size (for stat), not the fs block size */
1104 	inode->i_blocks = le32_to_cpu(raw_inode->i_blocks);
1105 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
1106 	ei->i_faddr = le32_to_cpu(raw_inode->i_faddr);
1107 	ei->i_frag_no = raw_inode->i_frag;
1108 	ei->i_frag_size = raw_inode->i_fsize;
1109 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
1110 	ei->i_dir_acl = 0;
1111 	if (S_ISREG(inode->i_mode))
1112 		inode->i_size |= ((__u64)le32_to_cpu(raw_inode->i_size_high)) << 32;
1113 	else
1114 		ei->i_dir_acl = le32_to_cpu(raw_inode->i_dir_acl);
1115 	ei->i_dtime = 0;
1116 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
1117 	ei->i_state = 0;
1118 	ei->i_next_alloc_block = 0;
1119 	ei->i_next_alloc_goal = 0;
1120 	ei->i_prealloc_count = 0;
1121 	ei->i_block_group = (ino - 1) / EXT2_INODES_PER_GROUP(inode->i_sb);
1122 	ei->i_dir_start_lookup = 0;
1123 
1124 	/*
1125 	 * NOTE! The in-memory inode i_data array is in little-endian order
1126 	 * even on big-endian machines: we do NOT byteswap the block numbers!
1127 	 */
1128 	for (n = 0; n < EXT2_N_BLOCKS; n++)
1129 		ei->i_data[n] = raw_inode->i_block[n];
1130 
1131 	if (S_ISREG(inode->i_mode)) {
1132 		inode->i_op = &ext2_file_inode_operations;
1133 		if (ext2_use_xip(inode->i_sb)) {
1134 			inode->i_mapping->a_ops = &ext2_aops_xip;
1135 			inode->i_fop = &ext2_xip_file_operations;
1136 		} else if (test_opt(inode->i_sb, NOBH)) {
1137 			inode->i_mapping->a_ops = &ext2_nobh_aops;
1138 			inode->i_fop = &ext2_file_operations;
1139 		} else {
1140 			inode->i_mapping->a_ops = &ext2_aops;
1141 			inode->i_fop = &ext2_file_operations;
1142 		}
1143 	} else if (S_ISDIR(inode->i_mode)) {
1144 		inode->i_op = &ext2_dir_inode_operations;
1145 		inode->i_fop = &ext2_dir_operations;
1146 		if (test_opt(inode->i_sb, NOBH))
1147 			inode->i_mapping->a_ops = &ext2_nobh_aops;
1148 		else
1149 			inode->i_mapping->a_ops = &ext2_aops;
1150 	} else if (S_ISLNK(inode->i_mode)) {
1151 		if (ext2_inode_is_fast_symlink(inode))
1152 			inode->i_op = &ext2_fast_symlink_inode_operations;
1153 		else {
1154 			inode->i_op = &ext2_symlink_inode_operations;
1155 			if (test_opt(inode->i_sb, NOBH))
1156 				inode->i_mapping->a_ops = &ext2_nobh_aops;
1157 			else
1158 				inode->i_mapping->a_ops = &ext2_aops;
1159 		}
1160 	} else {
1161 		inode->i_op = &ext2_special_inode_operations;
1162 		if (raw_inode->i_block[0])
1163 			init_special_inode(inode, inode->i_mode,
1164 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
1165 		else
1166 			init_special_inode(inode, inode->i_mode,
1167 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
1168 	}
1169 	brelse (bh);
1170 	ext2_set_inode_flags(inode);
1171 	return;
1172 
1173 bad_inode:
1174 	make_bad_inode(inode);
1175 	return;
1176 }
1177 
1178 static int ext2_update_inode(struct inode * inode, int do_sync)
1179 {
1180 	struct ext2_inode_info *ei = EXT2_I(inode);
1181 	struct super_block *sb = inode->i_sb;
1182 	ino_t ino = inode->i_ino;
1183 	uid_t uid = inode->i_uid;
1184 	gid_t gid = inode->i_gid;
1185 	struct buffer_head * bh;
1186 	struct ext2_inode * raw_inode = ext2_get_inode(sb, ino, &bh);
1187 	int n;
1188 	int err = 0;
1189 
1190 	if (IS_ERR(raw_inode))
1191  		return -EIO;
1192 
1193 	/* For fields not not tracking in the in-memory inode,
1194 	 * initialise them to zero for new inodes. */
1195 	if (ei->i_state & EXT2_STATE_NEW)
1196 		memset(raw_inode, 0, EXT2_SB(sb)->s_inode_size);
1197 
1198 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
1199 	if (!(test_opt(sb, NO_UID32))) {
1200 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(uid));
1201 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(gid));
1202 /*
1203  * Fix up interoperability with old kernels. Otherwise, old inodes get
1204  * re-used with the upper 16 bits of the uid/gid intact
1205  */
1206 		if (!ei->i_dtime) {
1207 			raw_inode->i_uid_high = cpu_to_le16(high_16_bits(uid));
1208 			raw_inode->i_gid_high = cpu_to_le16(high_16_bits(gid));
1209 		} else {
1210 			raw_inode->i_uid_high = 0;
1211 			raw_inode->i_gid_high = 0;
1212 		}
1213 	} else {
1214 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(uid));
1215 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(gid));
1216 		raw_inode->i_uid_high = 0;
1217 		raw_inode->i_gid_high = 0;
1218 	}
1219 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
1220 	raw_inode->i_size = cpu_to_le32(inode->i_size);
1221 	raw_inode->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
1222 	raw_inode->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
1223 	raw_inode->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
1224 
1225 	raw_inode->i_blocks = cpu_to_le32(inode->i_blocks);
1226 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
1227 	raw_inode->i_flags = cpu_to_le32(ei->i_flags);
1228 	raw_inode->i_faddr = cpu_to_le32(ei->i_faddr);
1229 	raw_inode->i_frag = ei->i_frag_no;
1230 	raw_inode->i_fsize = ei->i_frag_size;
1231 	raw_inode->i_file_acl = cpu_to_le32(ei->i_file_acl);
1232 	if (!S_ISREG(inode->i_mode))
1233 		raw_inode->i_dir_acl = cpu_to_le32(ei->i_dir_acl);
1234 	else {
1235 		raw_inode->i_size_high = cpu_to_le32(inode->i_size >> 32);
1236 		if (inode->i_size > 0x7fffffffULL) {
1237 			if (!EXT2_HAS_RO_COMPAT_FEATURE(sb,
1238 					EXT2_FEATURE_RO_COMPAT_LARGE_FILE) ||
1239 			    EXT2_SB(sb)->s_es->s_rev_level ==
1240 					cpu_to_le32(EXT2_GOOD_OLD_REV)) {
1241 			       /* If this is the first large file
1242 				* created, add a flag to the superblock.
1243 				*/
1244 				lock_kernel();
1245 				ext2_update_dynamic_rev(sb);
1246 				EXT2_SET_RO_COMPAT_FEATURE(sb,
1247 					EXT2_FEATURE_RO_COMPAT_LARGE_FILE);
1248 				unlock_kernel();
1249 				ext2_write_super(sb);
1250 			}
1251 		}
1252 	}
1253 
1254 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
1255 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1256 		if (old_valid_dev(inode->i_rdev)) {
1257 			raw_inode->i_block[0] =
1258 				cpu_to_le32(old_encode_dev(inode->i_rdev));
1259 			raw_inode->i_block[1] = 0;
1260 		} else {
1261 			raw_inode->i_block[0] = 0;
1262 			raw_inode->i_block[1] =
1263 				cpu_to_le32(new_encode_dev(inode->i_rdev));
1264 			raw_inode->i_block[2] = 0;
1265 		}
1266 	} else for (n = 0; n < EXT2_N_BLOCKS; n++)
1267 		raw_inode->i_block[n] = ei->i_data[n];
1268 	mark_buffer_dirty(bh);
1269 	if (do_sync) {
1270 		sync_dirty_buffer(bh);
1271 		if (buffer_req(bh) && !buffer_uptodate(bh)) {
1272 			printk ("IO error syncing ext2 inode [%s:%08lx]\n",
1273 				sb->s_id, (unsigned long) ino);
1274 			err = -EIO;
1275 		}
1276 	}
1277 	ei->i_state &= ~EXT2_STATE_NEW;
1278 	brelse (bh);
1279 	return err;
1280 }
1281 
1282 int ext2_write_inode(struct inode *inode, int wait)
1283 {
1284 	return ext2_update_inode(inode, wait);
1285 }
1286 
1287 int ext2_sync_inode(struct inode *inode)
1288 {
1289 	struct writeback_control wbc = {
1290 		.sync_mode = WB_SYNC_ALL,
1291 		.nr_to_write = 0,	/* sys_fsync did this */
1292 	};
1293 	return sync_inode(inode, &wbc);
1294 }
1295 
1296 int ext2_setattr(struct dentry *dentry, struct iattr *iattr)
1297 {
1298 	struct inode *inode = dentry->d_inode;
1299 	int error;
1300 
1301 	error = inode_change_ok(inode, iattr);
1302 	if (error)
1303 		return error;
1304 	if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) ||
1305 	    (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) {
1306 		error = DQUOT_TRANSFER(inode, iattr) ? -EDQUOT : 0;
1307 		if (error)
1308 			return error;
1309 	}
1310 	error = inode_setattr(inode, iattr);
1311 	if (!error && (iattr->ia_valid & ATTR_MODE))
1312 		error = ext2_acl_chmod(inode);
1313 	return error;
1314 }
1315