inode.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:35k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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. #include <linux/fs.h>
  25. #include <linux/ext2_fs.h>
  26. #include <linux/locks.h>
  27. #include <linux/smp_lock.h>
  28. #include <linux/sched.h>
  29. #include <linux/highuid.h>
  30. #include <linux/quotaops.h>
  31. #include <linux/module.h>
  32. MODULE_AUTHOR("Remy Card and others");
  33. MODULE_DESCRIPTION("Second Extended Filesystem");
  34. MODULE_LICENSE("GPL");
  35. static int ext2_update_inode(struct inode * inode, int do_sync);
  36. /*
  37.  * Called at each iput()
  38.  */
  39. void ext2_put_inode (struct inode * inode)
  40. {
  41. ext2_discard_prealloc (inode);
  42. }
  43. /*
  44.  * Called at the last iput() if i_nlink is zero.
  45.  */
  46. void ext2_delete_inode (struct inode * inode)
  47. {
  48. lock_kernel();
  49. if (is_bad_inode(inode) ||
  50.     inode->i_ino == EXT2_ACL_IDX_INO ||
  51.     inode->i_ino == EXT2_ACL_DATA_INO)
  52. goto no_delete;
  53. inode->u.ext2_i.i_dtime = CURRENT_TIME;
  54. mark_inode_dirty(inode);
  55. ext2_update_inode(inode, IS_SYNC(inode));
  56. inode->i_size = 0;
  57. if (inode->i_blocks)
  58. ext2_truncate (inode);
  59. ext2_free_inode (inode);
  60. unlock_kernel();
  61. return;
  62. no_delete:
  63. unlock_kernel();
  64. clear_inode(inode); /* We must guarantee clearing of inode... */
  65. }
  66. void ext2_discard_prealloc (struct inode * inode)
  67. {
  68. #ifdef EXT2_PREALLOCATE
  69. lock_kernel();
  70. /* Writer: ->i_prealloc* */
  71. if (inode->u.ext2_i.i_prealloc_count) {
  72. unsigned short total = inode->u.ext2_i.i_prealloc_count;
  73. unsigned long block = inode->u.ext2_i.i_prealloc_block;
  74. inode->u.ext2_i.i_prealloc_count = 0;
  75. inode->u.ext2_i.i_prealloc_block = 0;
  76. /* Writer: end */
  77. ext2_free_blocks (inode, block, total);
  78. }
  79. unlock_kernel();
  80. #endif
  81. }
  82. static int ext2_alloc_block (struct inode * inode, unsigned long goal, int *err)
  83. {
  84. #ifdef EXT2FS_DEBUG
  85. static unsigned long alloc_hits = 0, alloc_attempts = 0;
  86. #endif
  87. unsigned long result;
  88. #ifdef EXT2_PREALLOCATE
  89. /* Writer: ->i_prealloc* */
  90. if (inode->u.ext2_i.i_prealloc_count &&
  91.     (goal == inode->u.ext2_i.i_prealloc_block ||
  92.      goal + 1 == inode->u.ext2_i.i_prealloc_block))
  93. {
  94. result = inode->u.ext2_i.i_prealloc_block++;
  95. inode->u.ext2_i.i_prealloc_count--;
  96. /* Writer: end */
  97. ext2_debug ("preallocation hit (%lu/%lu).n",
  98.     ++alloc_hits, ++alloc_attempts);
  99. } else {
  100. ext2_discard_prealloc (inode);
  101. ext2_debug ("preallocation miss (%lu/%lu).n",
  102.     alloc_hits, ++alloc_attempts);
  103. if (S_ISREG(inode->i_mode))
  104. result = ext2_new_block (inode, goal, 
  105.  &inode->u.ext2_i.i_prealloc_count,
  106.  &inode->u.ext2_i.i_prealloc_block, err);
  107. else
  108. result = ext2_new_block (inode, goal, 0, 0, err);
  109. }
  110. #else
  111. result = ext2_new_block (inode, goal, 0, 0, err);
  112. #endif
  113. return result;
  114. }
  115. typedef struct {
  116. u32 *p;
  117. u32 key;
  118. struct buffer_head *bh;
  119. } Indirect;
  120. static inline void add_chain(Indirect *p, struct buffer_head *bh, u32 *v)
  121. {
  122. p->key = *(p->p = v);
  123. p->bh = bh;
  124. }
  125. static inline int verify_chain(Indirect *from, Indirect *to)
  126. {
  127. while (from <= to && from->key == *from->p)
  128. from++;
  129. return (from > to);
  130. }
  131. /**
  132.  * ext2_block_to_path - parse the block number into array of offsets
  133.  * @inode: inode in question (we are only interested in its superblock)
  134.  * @i_block: block number to be parsed
  135.  * @offsets: array to store the offsets in
  136.  *
  137.  * To store the locations of file's data ext2 uses a data structure common
  138.  * for UNIX filesystems - tree of pointers anchored in the inode, with
  139.  * data blocks at leaves and indirect blocks in intermediate nodes.
  140.  * This function translates the block number into path in that tree -
  141.  * return value is the path length and @offsets[n] is the offset of
  142.  * pointer to (n+1)th node in the nth one. If @block is out of range
  143.  * (negative or too large) warning is printed and zero returned.
  144.  *
  145.  * Note: function doesn't find node addresses, so no IO is needed. All
  146.  * we need to know is the capacity of indirect blocks (taken from the
  147.  * inode->i_sb).
  148.  */
  149. /*
  150.  * Portability note: the last comparison (check that we fit into triple
  151.  * indirect block) is spelled differently, because otherwise on an
  152.  * architecture with 32-bit longs and 8Kb pages we might get into trouble
  153.  * if our filesystem had 8Kb blocks. We might use long long, but that would
  154.  * kill us on x86. Oh, well, at least the sign propagation does not matter -
  155.  * i_block would have to be negative in the very beginning, so we would not
  156.  * get there at all.
  157.  */
  158. static int ext2_block_to_path(struct inode *inode, long i_block, int offsets[4])
  159. {
  160. int ptrs = EXT2_ADDR_PER_BLOCK(inode->i_sb);
  161. int ptrs_bits = EXT2_ADDR_PER_BLOCK_BITS(inode->i_sb);
  162. const long direct_blocks = EXT2_NDIR_BLOCKS,
  163. indirect_blocks = ptrs,
  164. double_blocks = (1 << (ptrs_bits * 2));
  165. int n = 0;
  166. if (i_block < 0) {
  167. ext2_warning (inode->i_sb, "ext2_block_to_path", "block < 0");
  168. } else if (i_block < direct_blocks) {
  169. offsets[n++] = i_block;
  170. } else if ( (i_block -= direct_blocks) < indirect_blocks) {
  171. offsets[n++] = EXT2_IND_BLOCK;
  172. offsets[n++] = i_block;
  173. } else if ((i_block -= indirect_blocks) < double_blocks) {
  174. offsets[n++] = EXT2_DIND_BLOCK;
  175. offsets[n++] = i_block >> ptrs_bits;
  176. offsets[n++] = i_block & (ptrs - 1);
  177. } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
  178. offsets[n++] = EXT2_TIND_BLOCK;
  179. offsets[n++] = i_block >> (ptrs_bits * 2);
  180. offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
  181. offsets[n++] = i_block & (ptrs - 1);
  182. } else {
  183. ext2_warning (inode->i_sb, "ext2_block_to_path", "block > big");
  184. }
  185. return n;
  186. }
  187. /**
  188.  * ext2_get_branch - read the chain of indirect blocks leading to data
  189.  * @inode: inode in question
  190.  * @depth: depth of the chain (1 - direct pointer, etc.)
  191.  * @offsets: offsets of pointers in inode/indirect blocks
  192.  * @chain: place to store the result
  193.  * @err: here we store the error value
  194.  *
  195.  * Function fills the array of triples <key, p, bh> and returns %NULL
  196.  * if everything went OK or the pointer to the last filled triple
  197.  * (incomplete one) otherwise. Upon the return chain[i].key contains
  198.  * the number of (i+1)-th block in the chain (as it is stored in memory,
  199.  * i.e. little-endian 32-bit), chain[i].p contains the address of that
  200.  * number (it points into struct inode for i==0 and into the bh->b_data
  201.  * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
  202.  * block for i>0 and NULL for i==0. In other words, it holds the block
  203.  * numbers of the chain, addresses they were taken from (and where we can
  204.  * verify that chain did not change) and buffer_heads hosting these
  205.  * numbers.
  206.  *
  207.  * Function stops when it stumbles upon zero pointer (absent block)
  208.  * (pointer to last triple returned, *@err == 0)
  209.  * or when it gets an IO error reading an indirect block
  210.  * (ditto, *@err == -EIO)
  211.  * or when it notices that chain had been changed while it was reading
  212.  * (ditto, *@err == -EAGAIN)
  213.  * or when it reads all @depth-1 indirect blocks successfully and finds
  214.  * the whole chain, all way to the data (returns %NULL, *err == 0).
  215.  */
  216. static Indirect *ext2_get_branch(struct inode *inode,
  217.  int depth,
  218.  int *offsets,
  219.  Indirect chain[4],
  220.  int *err)
  221. {
  222. struct super_block *sb = inode->i_sb;
  223. Indirect *p = chain;
  224. struct buffer_head *bh;
  225. *err = 0;
  226. /* i_data is not going away, no lock needed */
  227. add_chain (chain, NULL, inode->u.ext2_i.i_data + *offsets);
  228. if (!p->key)
  229. goto no_block;
  230. while (--depth) {
  231. bh = sb_bread(sb, le32_to_cpu(p->key));
  232. if (!bh)
  233. goto failure;
  234. /* Reader: pointers */
  235. if (!verify_chain(chain, p))
  236. goto changed;
  237. add_chain(++p, bh, (u32*)bh->b_data + *++offsets);
  238. /* Reader: end */
  239. if (!p->key)
  240. goto no_block;
  241. }
  242. return NULL;
  243. changed:
  244. *err = -EAGAIN;
  245. goto no_block;
  246. failure:
  247. *err = -EIO;
  248. no_block:
  249. return p;
  250. }
  251. /**
  252.  * ext2_find_near - find a place for allocation with sufficient locality
  253.  * @inode: owner
  254.  * @ind: descriptor of indirect block.
  255.  *
  256.  * This function returns the prefered place for block allocation.
  257.  * It is used when heuristic for sequential allocation fails.
  258.  * Rules are:
  259.  *   + if there is a block to the left of our position - allocate near it.
  260.  *   + if pointer will live in indirect block - allocate near that block.
  261.  *   + if pointer will live in inode - allocate in the same cylinder group.
  262.  * Caller must make sure that @ind is valid and will stay that way.
  263.  */
  264. static inline unsigned long ext2_find_near(struct inode *inode, Indirect *ind)
  265. {
  266. u32 *start = ind->bh ? (u32*) ind->bh->b_data : inode->u.ext2_i.i_data;
  267. u32 *p;
  268. /* Try to find previous block */
  269. for (p = ind->p - 1; p >= start; p--)
  270. if (*p)
  271. return le32_to_cpu(*p);
  272. /* No such thing, so let's try location of indirect block */
  273. if (ind->bh)
  274. return ind->bh->b_blocknr;
  275. /*
  276.  * It is going to be refered from inode itself? OK, just put it into
  277.  * the same cylinder group then.
  278.  */
  279. return (inode->u.ext2_i.i_block_group * 
  280. EXT2_BLOCKS_PER_GROUP(inode->i_sb)) +
  281.        le32_to_cpu(inode->i_sb->u.ext2_sb.s_es->s_first_data_block);
  282. }
  283. /**
  284.  * ext2_find_goal - find a prefered place for allocation.
  285.  * @inode: owner
  286.  * @block:  block we want
  287.  * @chain:  chain of indirect blocks
  288.  * @partial: pointer to the last triple within a chain
  289.  * @goal: place to store the result.
  290.  *
  291.  * Normally this function find the prefered place for block allocation,
  292.  * stores it in *@goal and returns zero. If the branch had been changed
  293.  * under us we return -EAGAIN.
  294.  */
  295. static inline int ext2_find_goal(struct inode *inode,
  296.  long block,
  297.  Indirect chain[4],
  298.  Indirect *partial,
  299.  unsigned long *goal)
  300. {
  301. /* Writer: ->i_next_alloc* */
  302. if (block == inode->u.ext2_i.i_next_alloc_block + 1) {
  303. inode->u.ext2_i.i_next_alloc_block++;
  304. inode->u.ext2_i.i_next_alloc_goal++;
  305. /* Writer: end */
  306. /* Reader: pointers, ->i_next_alloc* */
  307. if (verify_chain(chain, partial)) {
  308. /*
  309.  * try the heuristic for sequential allocation,
  310.  * failing that at least try to get decent locality.
  311.  */
  312. if (block == inode->u.ext2_i.i_next_alloc_block)
  313. *goal = inode->u.ext2_i.i_next_alloc_goal;
  314. if (!*goal)
  315. *goal = ext2_find_near(inode, partial);
  316. return 0;
  317. }
  318. /* Reader: end */
  319. return -EAGAIN;
  320. }
  321. /**
  322.  * ext2_alloc_branch - allocate and set up a chain of blocks.
  323.  * @inode: owner
  324.  * @num: depth of the chain (number of blocks to allocate)
  325.  * @offsets: offsets (in the blocks) to store the pointers to next.
  326.  * @branch: place to store the chain in.
  327.  *
  328.  * This function allocates @num blocks, zeroes out all but the last one,
  329.  * links them into chain and (if we are synchronous) writes them to disk.
  330.  * In other words, it prepares a branch that can be spliced onto the
  331.  * inode. It stores the information about that chain in the branch[], in
  332.  * the same format as ext2_get_branch() would do. We are calling it after
  333.  * we had read the existing part of chain and partial points to the last
  334.  * triple of that (one with zero ->key). Upon the exit we have the same
  335.  * picture as after the successful ext2_get_block(), excpet that in one
  336.  * place chain is disconnected - *branch->p is still zero (we did not
  337.  * set the last link), but branch->key contains the number that should
  338.  * be placed into *branch->p to fill that gap.
  339.  *
  340.  * If allocation fails we free all blocks we've allocated (and forget
  341.  * their buffer_heads) and return the error value the from failed
  342.  * ext2_alloc_block() (normally -ENOSPC). Otherwise we set the chain
  343.  * as described above and return 0.
  344.  */
  345. static int ext2_alloc_branch(struct inode *inode,
  346.      int num,
  347.      unsigned long goal,
  348.      int *offsets,
  349.      Indirect *branch)
  350. {
  351. int blocksize = inode->i_sb->s_blocksize;
  352. int n = 0;
  353. int err;
  354. int i;
  355. int parent = ext2_alloc_block(inode, goal, &err);
  356. branch[0].key = cpu_to_le32(parent);
  357. if (parent) for (n = 1; n < num; n++) {
  358. struct buffer_head *bh;
  359. /* Allocate the next block */
  360. int nr = ext2_alloc_block(inode, parent, &err);
  361. if (!nr)
  362. break;
  363. branch[n].key = cpu_to_le32(nr);
  364. /*
  365.  * Get buffer_head for parent block, zero it out and set 
  366.  * the pointer to new one, then send parent to disk.
  367.  */
  368. bh = sb_getblk(inode->i_sb, parent);
  369. lock_buffer(bh);
  370. memset(bh->b_data, 0, blocksize);
  371. branch[n].bh = bh;
  372. branch[n].p = (u32*) bh->b_data + offsets[n];
  373. *branch[n].p = branch[n].key;
  374. mark_buffer_uptodate(bh, 1);
  375. unlock_buffer(bh);
  376. mark_buffer_dirty_inode(bh, inode);
  377. /* We used to sync bh here if IS_SYNC(inode).
  378.  * But for S_ISREG files we now rely upon generic_osync_inode()
  379.  * and b_inode_buffers
  380.  */
  381. if (S_ISDIR(inode->i_mode) && IS_SYNC(inode)) {
  382. ll_rw_block (WRITE, 1, &bh);
  383. wait_on_buffer (bh);
  384. }
  385. parent = nr;
  386. }
  387. if (n == num)
  388. return 0;
  389. /* Allocation failed, free what we already allocated */
  390. for (i = 1; i < n; i++)
  391. bforget(branch[i].bh);
  392. for (i = 0; i < n; i++)
  393. ext2_free_blocks(inode, le32_to_cpu(branch[i].key), 1);
  394. return err;
  395. }
  396. /**
  397.  * ext2_splice_branch - splice the allocated branch onto inode.
  398.  * @inode: owner
  399.  * @block: (logical) number of block we are adding
  400.  * @chain: chain of indirect blocks (with a missing link - see
  401.  * ext2_alloc_branch)
  402.  * @where: location of missing link
  403.  * @num:   number of blocks we are adding
  404.  *
  405.  * This function verifies that chain (up to the missing link) had not
  406.  * changed, fills the missing link and does all housekeeping needed in
  407.  * inode (->i_blocks, etc.). In case of success we end up with the full
  408.  * chain to new block and return 0. Otherwise (== chain had been changed)
  409.  * we free the new blocks (forgetting their buffer_heads, indeed) and
  410.  * return -EAGAIN.
  411.  */
  412. static inline int ext2_splice_branch(struct inode *inode,
  413.      long block,
  414.      Indirect chain[4],
  415.      Indirect *where,
  416.      int num)
  417. {
  418. int i;
  419. /* Verify that place we are splicing to is still there and vacant */
  420. /* Writer: pointers, ->i_next_alloc* */
  421. if (!verify_chain(chain, where-1) || *where->p)
  422. /* Writer: end */
  423. goto changed;
  424. /* That's it */
  425. *where->p = where->key;
  426. inode->u.ext2_i.i_next_alloc_block = block;
  427. inode->u.ext2_i.i_next_alloc_goal = le32_to_cpu(where[num-1].key);
  428. /* Writer: end */
  429. /* We are done with atomic stuff, now do the rest of housekeeping */
  430. inode->i_ctime = CURRENT_TIME;
  431. /* had we spliced it onto indirect block? */
  432. if (where->bh) {
  433. mark_buffer_dirty_inode(where->bh, inode);
  434. if (S_ISDIR(inode->i_mode) && IS_SYNC(inode)) {
  435. ll_rw_block(WRITE, 1, &where->bh);
  436. wait_on_buffer(where->bh);
  437. }
  438. }
  439. mark_inode_dirty(inode);
  440. return 0;
  441. changed:
  442. for (i = 1; i < num; i++)
  443. bforget(where[i].bh);
  444. for (i = 0; i < num; i++)
  445. ext2_free_blocks(inode, le32_to_cpu(where[i].key), 1);
  446. return -EAGAIN;
  447. }
  448. /*
  449.  * Allocation strategy is simple: if we have to allocate something, we will
  450.  * have to go the whole way to leaf. So let's do it before attaching anything
  451.  * to tree, set linkage between the newborn blocks, write them if sync is
  452.  * required, recheck the path, free and repeat if check fails, otherwise
  453.  * set the last missing link (that will protect us from any truncate-generated
  454.  * removals - all blocks on the path are immune now) and possibly force the
  455.  * write on the parent block.
  456.  * That has a nice additional property: no special recovery from the failed
  457.  * allocations is needed - we simply release blocks and do not touch anything
  458.  * reachable from inode.
  459.  */
  460. static int ext2_get_block(struct inode *inode, long iblock, struct buffer_head *bh_result, int create)
  461. {
  462. int err = -EIO;
  463. int offsets[4];
  464. Indirect chain[4];
  465. Indirect *partial;
  466. unsigned long goal;
  467. int left;
  468. int depth = ext2_block_to_path(inode, iblock, offsets);
  469. if (depth == 0)
  470. goto out;
  471. lock_kernel();
  472. reread:
  473. partial = ext2_get_branch(inode, depth, offsets, chain, &err);
  474. /* Simplest case - block found, no allocation needed */
  475. if (!partial) {
  476. got_it:
  477. bh_result->b_dev = inode->i_dev;
  478. bh_result->b_blocknr = le32_to_cpu(chain[depth-1].key);
  479. bh_result->b_state |= (1UL << BH_Mapped);
  480. /* Clean up and exit */
  481. partial = chain+depth-1; /* the whole chain */
  482. goto cleanup;
  483. }
  484. /* Next simple case - plain lookup or failed read of indirect block */
  485. if (!create || err == -EIO) {
  486. cleanup:
  487. while (partial > chain) {
  488. brelse(partial->bh);
  489. partial--;
  490. }
  491. unlock_kernel();
  492. out:
  493. return err;
  494. }
  495. /*
  496.  * Indirect block might be removed by truncate while we were
  497.  * reading it. Handling of that case (forget what we've got and
  498.  * reread) is taken out of the main path.
  499.  */
  500. if (err == -EAGAIN)
  501. goto changed;
  502. if (ext2_find_goal(inode, iblock, chain, partial, &goal) < 0)
  503. goto changed;
  504. left = (chain + depth) - partial;
  505. err = ext2_alloc_branch(inode, left, goal,
  506. offsets+(partial-chain), partial);
  507. if (err)
  508. goto cleanup;
  509. if (ext2_splice_branch(inode, iblock, chain, partial, left) < 0)
  510. goto changed;
  511. bh_result->b_state |= (1UL << BH_New);
  512. goto got_it;
  513. changed:
  514. while (partial > chain) {
  515. brelse(partial->bh);
  516. partial--;
  517. }
  518. goto reread;
  519. }
  520. static int ext2_writepage(struct page *page)
  521. {
  522. return block_write_full_page(page,ext2_get_block);
  523. }
  524. static int ext2_readpage(struct file *file, struct page *page)
  525. {
  526. return block_read_full_page(page,ext2_get_block);
  527. }
  528. static int ext2_prepare_write(struct file *file, struct page *page, unsigned from, unsigned to)
  529. {
  530. return block_prepare_write(page,from,to,ext2_get_block);
  531. }
  532. static int ext2_bmap(struct address_space *mapping, long block)
  533. {
  534. return generic_block_bmap(mapping,block,ext2_get_block);
  535. }
  536. static int ext2_direct_IO(int rw, struct inode * inode, struct kiobuf * iobuf, unsigned long blocknr, int blocksize)
  537. {
  538. return generic_direct_IO(rw, inode, iobuf, blocknr, blocksize, ext2_get_block);
  539. }
  540. struct address_space_operations ext2_aops = {
  541. readpage: ext2_readpage,
  542. writepage: ext2_writepage,
  543. sync_page: block_sync_page,
  544. prepare_write: ext2_prepare_write,
  545. commit_write: generic_commit_write,
  546. bmap: ext2_bmap,
  547. direct_IO: ext2_direct_IO,
  548. };
  549. /*
  550.  * Probably it should be a library function... search for first non-zero word
  551.  * or memcmp with zero_page, whatever is better for particular architecture.
  552.  * Linus?
  553.  */
  554. static inline int all_zeroes(u32 *p, u32 *q)
  555. {
  556. while (p < q)
  557. if (*p++)
  558. return 0;
  559. return 1;
  560. }
  561. /**
  562.  * ext2_find_shared - find the indirect blocks for partial truncation.
  563.  * @inode:   inode in question
  564.  * @depth:   depth of the affected branch
  565.  * @offsets: offsets of pointers in that branch (see ext2_block_to_path)
  566.  * @chain:   place to store the pointers to partial indirect blocks
  567.  * @top:   place to the (detached) top of branch
  568.  *
  569.  * This is a helper function used by ext2_truncate().
  570.  *
  571.  * When we do truncate() we may have to clean the ends of several indirect
  572.  * blocks but leave the blocks themselves alive. Block is partially
  573.  * truncated if some data below the new i_size is refered from it (and
  574.  * it is on the path to the first completely truncated data block, indeed).
  575.  * We have to free the top of that path along with everything to the right
  576.  * of the path. Since no allocation past the truncation point is possible
  577.  * until ext2_truncate() finishes, we may safely do the latter, but top
  578.  * of branch may require special attention - pageout below the truncation
  579.  * point might try to populate it.
  580.  *
  581.  * We atomically detach the top of branch from the tree, store the block
  582.  * number of its root in *@top, pointers to buffer_heads of partially
  583.  * truncated blocks - in @chain[].bh and pointers to their last elements
  584.  * that should not be removed - in @chain[].p. Return value is the pointer
  585.  * to last filled element of @chain.
  586.  *
  587.  * The work left to caller to do the actual freeing of subtrees:
  588.  * a) free the subtree starting from *@top
  589.  * b) free the subtrees whose roots are stored in
  590.  * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
  591.  * c) free the subtrees growing from the inode past the @chain[0].p
  592.  * (no partially truncated stuff there).
  593.  */
  594. static Indirect *ext2_find_shared(struct inode *inode,
  595. int depth,
  596. int offsets[4],
  597. Indirect chain[4],
  598. u32 *top)
  599. {
  600. Indirect *partial, *p;
  601. int k, err;
  602. *top = 0;
  603. for (k = depth; k > 1 && !offsets[k-1]; k--)
  604. ;
  605. partial = ext2_get_branch(inode, k, offsets, chain, &err);
  606. /* Writer: pointers */
  607. if (!partial)
  608. partial = chain + k-1;
  609. /*
  610.  * If the branch acquired continuation since we've looked at it -
  611.  * fine, it should all survive and (new) top doesn't belong to us.
  612.  */
  613. if (!partial->key && *partial->p)
  614. /* Writer: end */
  615. goto no_top;
  616. for (p=partial; p>chain && all_zeroes((u32*)p->bh->b_data,p->p); p--)
  617. ;
  618. /*
  619.  * OK, we've found the last block that must survive. The rest of our
  620.  * branch should be detached before unlocking. However, if that rest
  621.  * of branch is all ours and does not grow immediately from the inode
  622.  * it's easier to cheat and just decrement partial->p.
  623.  */
  624. if (p == chain + k - 1 && p > chain) {
  625. p->p--;
  626. } else {
  627. *top = *p->p;
  628. *p->p = 0;
  629. }
  630. /* Writer: end */
  631. while(partial > p)
  632. {
  633. brelse(partial->bh);
  634. partial--;
  635. }
  636. no_top:
  637. return partial;
  638. }
  639. /**
  640.  * ext2_free_data - free a list of data blocks
  641.  * @inode: inode we are dealing with
  642.  * @p: array of block numbers
  643.  * @q: points immediately past the end of array
  644.  *
  645.  * We are freeing all blocks refered from that array (numbers are
  646.  * stored as little-endian 32-bit) and updating @inode->i_blocks
  647.  * appropriately.
  648.  */
  649. static inline void ext2_free_data(struct inode *inode, u32 *p, u32 *q)
  650. {
  651. unsigned long block_to_free = 0, count = 0;
  652. unsigned long nr;
  653. for ( ; p < q ; p++) {
  654. nr = le32_to_cpu(*p);
  655. if (nr) {
  656. *p = 0;
  657. /* accumulate blocks to free if they're contiguous */
  658. if (count == 0)
  659. goto free_this;
  660. else if (block_to_free == nr - count)
  661. count++;
  662. else {
  663. mark_inode_dirty(inode);
  664. ext2_free_blocks (inode, block_to_free, count);
  665. free_this:
  666. block_to_free = nr;
  667. count = 1;
  668. }
  669. }
  670. }
  671. if (count > 0) {
  672. mark_inode_dirty(inode);
  673. ext2_free_blocks (inode, block_to_free, count);
  674. }
  675. }
  676. /**
  677.  * ext2_free_branches - free an array of branches
  678.  * @inode: inode we are dealing with
  679.  * @p: array of block numbers
  680.  * @q: pointer immediately past the end of array
  681.  * @depth: depth of the branches to free
  682.  *
  683.  * We are freeing all blocks refered from these branches (numbers are
  684.  * stored as little-endian 32-bit) and updating @inode->i_blocks
  685.  * appropriately.
  686.  */
  687. static void ext2_free_branches(struct inode *inode, u32 *p, u32 *q, int depth)
  688. {
  689. struct buffer_head * bh;
  690. unsigned long nr;
  691. if (depth--) {
  692. int addr_per_block = EXT2_ADDR_PER_BLOCK(inode->i_sb);
  693. for ( ; p < q ; p++) {
  694. nr = le32_to_cpu(*p);
  695. if (!nr)
  696. continue;
  697. *p = 0;
  698. bh = sb_bread(inode->i_sb, nr);
  699. /*
  700.  * A read failure? Report error and clear slot
  701.  * (should be rare).
  702.  */ 
  703. if (!bh) {
  704. ext2_error(inode->i_sb, "ext2_free_branches",
  705. "Read failure, inode=%ld, block=%ld",
  706. inode->i_ino, nr);
  707. continue;
  708. }
  709. ext2_free_branches(inode,
  710.    (u32*)bh->b_data,
  711.    (u32*)bh->b_data + addr_per_block,
  712.    depth);
  713. bforget(bh);
  714. ext2_free_blocks(inode, nr, 1);
  715. mark_inode_dirty(inode);
  716. }
  717. } else
  718. ext2_free_data(inode, p, q);
  719. }
  720. void ext2_truncate (struct inode * inode)
  721. {
  722. u32 *i_data = inode->u.ext2_i.i_data;
  723. int addr_per_block = EXT2_ADDR_PER_BLOCK(inode->i_sb);
  724. int offsets[4];
  725. Indirect chain[4];
  726. Indirect *partial;
  727. int nr = 0;
  728. int n;
  729. long iblock;
  730. unsigned blocksize;
  731. if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
  732.     S_ISLNK(inode->i_mode)))
  733. return;
  734. if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
  735. return;
  736. ext2_discard_prealloc(inode);
  737. blocksize = inode->i_sb->s_blocksize;
  738. iblock = (inode->i_size + blocksize-1)
  739. >> EXT2_BLOCK_SIZE_BITS(inode->i_sb);
  740. block_truncate_page(inode->i_mapping, inode->i_size, ext2_get_block);
  741. n = ext2_block_to_path(inode, iblock, offsets);
  742. if (n == 0)
  743. return;
  744. if (n == 1) {
  745. ext2_free_data(inode, i_data+offsets[0],
  746. i_data + EXT2_NDIR_BLOCKS);
  747. goto do_indirects;
  748. }
  749. partial = ext2_find_shared(inode, n, offsets, chain, &nr);
  750. /* Kill the top of shared branch (already detached) */
  751. if (nr) {
  752. if (partial == chain)
  753. mark_inode_dirty(inode);
  754. else
  755. mark_buffer_dirty_inode(partial->bh, inode);
  756. ext2_free_branches(inode, &nr, &nr+1, (chain+n-1) - partial);
  757. }
  758. /* Clear the ends of indirect blocks on the shared branch */
  759. while (partial > chain) {
  760. ext2_free_branches(inode,
  761.    partial->p + 1,
  762.    (u32*)partial->bh->b_data + addr_per_block,
  763.    (chain+n-1) - partial);
  764. mark_buffer_dirty_inode(partial->bh, inode);
  765. brelse (partial->bh);
  766. partial--;
  767. }
  768. do_indirects:
  769. /* Kill the remaining (whole) subtrees */
  770. switch (offsets[0]) {
  771. default:
  772. nr = i_data[EXT2_IND_BLOCK];
  773. if (nr) {
  774. i_data[EXT2_IND_BLOCK] = 0;
  775. mark_inode_dirty(inode);
  776. ext2_free_branches(inode, &nr, &nr+1, 1);
  777. }
  778. case EXT2_IND_BLOCK:
  779. nr = i_data[EXT2_DIND_BLOCK];
  780. if (nr) {
  781. i_data[EXT2_DIND_BLOCK] = 0;
  782. mark_inode_dirty(inode);
  783. ext2_free_branches(inode, &nr, &nr+1, 2);
  784. }
  785. case EXT2_DIND_BLOCK:
  786. nr = i_data[EXT2_TIND_BLOCK];
  787. if (nr) {
  788. i_data[EXT2_TIND_BLOCK] = 0;
  789. mark_inode_dirty(inode);
  790. ext2_free_branches(inode, &nr, &nr+1, 3);
  791. }
  792. case EXT2_TIND_BLOCK:
  793. ;
  794. }
  795. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  796. if (IS_SYNC(inode)) {
  797. fsync_inode_buffers(inode);
  798. ext2_sync_inode (inode);
  799. } else {
  800. mark_inode_dirty(inode);
  801. }
  802. }
  803. void ext2_read_inode (struct inode * inode)
  804. {
  805. struct buffer_head * bh;
  806. struct ext2_inode * raw_inode;
  807. unsigned long block_group;
  808. unsigned long group_desc;
  809. unsigned long desc;
  810. unsigned long block;
  811. unsigned long offset;
  812. struct ext2_group_desc * gdp;
  813. if ((inode->i_ino != EXT2_ROOT_INO && inode->i_ino != EXT2_ACL_IDX_INO &&
  814.      inode->i_ino != EXT2_ACL_DATA_INO &&
  815.      inode->i_ino < EXT2_FIRST_INO(inode->i_sb)) ||
  816.     inode->i_ino > le32_to_cpu(inode->i_sb->u.ext2_sb.s_es->s_inodes_count)) {
  817. ext2_error (inode->i_sb, "ext2_read_inode",
  818.     "bad inode number: %lu", inode->i_ino);
  819. goto bad_inode;
  820. }
  821. block_group = (inode->i_ino - 1) / EXT2_INODES_PER_GROUP(inode->i_sb);
  822. if (block_group >= inode->i_sb->u.ext2_sb.s_groups_count) {
  823. ext2_error (inode->i_sb, "ext2_read_inode",
  824.     "group >= groups count");
  825. goto bad_inode;
  826. }
  827. group_desc = block_group >> EXT2_DESC_PER_BLOCK_BITS(inode->i_sb);
  828. desc = block_group & (EXT2_DESC_PER_BLOCK(inode->i_sb) - 1);
  829. bh = inode->i_sb->u.ext2_sb.s_group_desc[group_desc];
  830. if (!bh) {
  831. ext2_error (inode->i_sb, "ext2_read_inode",
  832.     "Descriptor not loaded");
  833. goto bad_inode;
  834. }
  835. gdp = (struct ext2_group_desc *) bh->b_data;
  836. /*
  837.  * Figure out the offset within the block group inode table
  838.  */
  839. offset = ((inode->i_ino - 1) % EXT2_INODES_PER_GROUP(inode->i_sb)) *
  840. EXT2_INODE_SIZE(inode->i_sb);
  841. block = le32_to_cpu(gdp[desc].bg_inode_table) +
  842. (offset >> EXT2_BLOCK_SIZE_BITS(inode->i_sb));
  843. if (!(bh = sb_bread(inode->i_sb, block))) {
  844. ext2_error (inode->i_sb, "ext2_read_inode",
  845.     "unable to read inode block - "
  846.     "inode=%lu, block=%lu", inode->i_ino, block);
  847. goto bad_inode;
  848. }
  849. offset &= (EXT2_BLOCK_SIZE(inode->i_sb) - 1);
  850. raw_inode = (struct ext2_inode *) (bh->b_data + offset);
  851. inode->i_mode = le16_to_cpu(raw_inode->i_mode);
  852. inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
  853. inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
  854. if(!(test_opt (inode->i_sb, NO_UID32))) {
  855. inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
  856. inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
  857. }
  858. inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
  859. inode->i_size = le32_to_cpu(raw_inode->i_size);
  860. inode->i_atime = le32_to_cpu(raw_inode->i_atime);
  861. inode->i_ctime = le32_to_cpu(raw_inode->i_ctime);
  862. inode->i_mtime = le32_to_cpu(raw_inode->i_mtime);
  863. inode->u.ext2_i.i_dtime = le32_to_cpu(raw_inode->i_dtime);
  864. /* We now have enough fields to check if the inode was active or not.
  865.  * This is needed because nfsd might try to access dead inodes
  866.  * the test is that same one that e2fsck uses
  867.  * NeilBrown 1999oct15
  868.  */
  869. if (inode->i_nlink == 0 && (inode->i_mode == 0 || inode->u.ext2_i.i_dtime)) {
  870. /* this inode is deleted */
  871. brelse (bh);
  872. goto bad_inode;
  873. }
  874. inode->i_blksize = PAGE_SIZE; /* This is the optimal IO size (for stat), not the fs block size */
  875. inode->i_blocks = le32_to_cpu(raw_inode->i_blocks);
  876. inode->i_version = ++event;
  877. inode->u.ext2_i.i_flags = le32_to_cpu(raw_inode->i_flags);
  878. inode->u.ext2_i.i_faddr = le32_to_cpu(raw_inode->i_faddr);
  879. inode->u.ext2_i.i_frag_no = raw_inode->i_frag;
  880. inode->u.ext2_i.i_frag_size = raw_inode->i_fsize;
  881. inode->u.ext2_i.i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
  882. if (S_ISREG(inode->i_mode))
  883. inode->i_size |= ((__u64)le32_to_cpu(raw_inode->i_size_high)) << 32;
  884. else
  885. inode->u.ext2_i.i_dir_acl = le32_to_cpu(raw_inode->i_dir_acl);
  886. inode->i_generation = le32_to_cpu(raw_inode->i_generation);
  887. inode->u.ext2_i.i_prealloc_count = 0;
  888. inode->u.ext2_i.i_block_group = block_group;
  889. /*
  890.  * NOTE! The in-memory inode i_data array is in little-endian order
  891.  * even on big-endian machines: we do NOT byteswap the block numbers!
  892.  */
  893. for (block = 0; block < EXT2_N_BLOCKS; block++)
  894. inode->u.ext2_i.i_data[block] = raw_inode->i_block[block];
  895. if (inode->i_ino == EXT2_ACL_IDX_INO ||
  896.     inode->i_ino == EXT2_ACL_DATA_INO)
  897. /* Nothing to do */ ;
  898. else if (S_ISREG(inode->i_mode)) {
  899. inode->i_op = &ext2_file_inode_operations;
  900. inode->i_fop = &ext2_file_operations;
  901. inode->i_mapping->a_ops = &ext2_aops;
  902. } else if (S_ISDIR(inode->i_mode)) {
  903. inode->i_op = &ext2_dir_inode_operations;
  904. inode->i_fop = &ext2_dir_operations;
  905. inode->i_mapping->a_ops = &ext2_aops;
  906. } else if (S_ISLNK(inode->i_mode)) {
  907. if (!inode->i_blocks)
  908. inode->i_op = &ext2_fast_symlink_inode_operations;
  909. else {
  910. inode->i_op = &page_symlink_inode_operations;
  911. inode->i_mapping->a_ops = &ext2_aops;
  912. }
  913. } else 
  914. init_special_inode(inode, inode->i_mode,
  915.    le32_to_cpu(raw_inode->i_block[0]));
  916. brelse (bh);
  917. inode->i_attr_flags = 0;
  918. if (inode->u.ext2_i.i_flags & EXT2_SYNC_FL) {
  919. inode->i_attr_flags |= ATTR_FLAG_SYNCRONOUS;
  920. inode->i_flags |= S_SYNC;
  921. }
  922. if (inode->u.ext2_i.i_flags & EXT2_APPEND_FL) {
  923. inode->i_attr_flags |= ATTR_FLAG_APPEND;
  924. inode->i_flags |= S_APPEND;
  925. }
  926. if (inode->u.ext2_i.i_flags & EXT2_IMMUTABLE_FL) {
  927. inode->i_attr_flags |= ATTR_FLAG_IMMUTABLE;
  928. inode->i_flags |= S_IMMUTABLE;
  929. }
  930. if (inode->u.ext2_i.i_flags & EXT2_NOATIME_FL) {
  931. inode->i_attr_flags |= ATTR_FLAG_NOATIME;
  932. inode->i_flags |= S_NOATIME;
  933. }
  934. return;
  935. bad_inode:
  936. make_bad_inode(inode);
  937. return;
  938. }
  939. static int ext2_update_inode(struct inode * inode, int do_sync)
  940. {
  941. struct buffer_head * bh;
  942. struct ext2_inode * raw_inode;
  943. unsigned long block_group;
  944. unsigned long group_desc;
  945. unsigned long desc;
  946. unsigned long block;
  947. unsigned long offset;
  948. int err = 0;
  949. struct ext2_group_desc * gdp;
  950. if ((inode->i_ino != EXT2_ROOT_INO &&
  951.      inode->i_ino < EXT2_FIRST_INO(inode->i_sb)) ||
  952.     inode->i_ino > le32_to_cpu(inode->i_sb->u.ext2_sb.s_es->s_inodes_count)) {
  953. ext2_error (inode->i_sb, "ext2_write_inode",
  954.     "bad inode number: %lu", inode->i_ino);
  955. return -EIO;
  956. }
  957. block_group = (inode->i_ino - 1) / EXT2_INODES_PER_GROUP(inode->i_sb);
  958. if (block_group >= inode->i_sb->u.ext2_sb.s_groups_count) {
  959. ext2_error (inode->i_sb, "ext2_write_inode",
  960.     "group >= groups count");
  961. return -EIO;
  962. }
  963. group_desc = block_group >> EXT2_DESC_PER_BLOCK_BITS(inode->i_sb);
  964. desc = block_group & (EXT2_DESC_PER_BLOCK(inode->i_sb) - 1);
  965. bh = inode->i_sb->u.ext2_sb.s_group_desc[group_desc];
  966. if (!bh) {
  967. ext2_error (inode->i_sb, "ext2_write_inode",
  968.     "Descriptor not loaded");
  969. return -EIO;
  970. }
  971. gdp = (struct ext2_group_desc *) bh->b_data;
  972. /*
  973.  * Figure out the offset within the block group inode table
  974.  */
  975. offset = ((inode->i_ino - 1) % EXT2_INODES_PER_GROUP(inode->i_sb)) *
  976. EXT2_INODE_SIZE(inode->i_sb);
  977. block = le32_to_cpu(gdp[desc].bg_inode_table) +
  978. (offset >> EXT2_BLOCK_SIZE_BITS(inode->i_sb));
  979. if (!(bh = sb_bread(inode->i_sb, block))) {
  980. ext2_error (inode->i_sb, "ext2_write_inode",
  981.     "unable to read inode block - "
  982.     "inode=%lu, block=%lu", inode->i_ino, block);
  983. return -EIO;
  984. }
  985. offset &= EXT2_BLOCK_SIZE(inode->i_sb) - 1;
  986. raw_inode = (struct ext2_inode *) (bh->b_data + offset);
  987. raw_inode->i_mode = cpu_to_le16(inode->i_mode);
  988. if(!(test_opt(inode->i_sb, NO_UID32))) {
  989. raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
  990. raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
  991. /*
  992.  * Fix up interoperability with old kernels. Otherwise, old inodes get
  993.  * re-used with the upper 16 bits of the uid/gid intact
  994.  */
  995. if(!inode->u.ext2_i.i_dtime) {
  996. raw_inode->i_uid_high = cpu_to_le16(high_16_bits(inode->i_uid));
  997. raw_inode->i_gid_high = cpu_to_le16(high_16_bits(inode->i_gid));
  998. } else {
  999. raw_inode->i_uid_high = 0;
  1000. raw_inode->i_gid_high = 0;
  1001. }
  1002. } else {
  1003. raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(inode->i_uid));
  1004. raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(inode->i_gid));
  1005. raw_inode->i_uid_high = 0;
  1006. raw_inode->i_gid_high = 0;
  1007. }
  1008. raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
  1009. raw_inode->i_size = cpu_to_le32(inode->i_size);
  1010. raw_inode->i_atime = cpu_to_le32(inode->i_atime);
  1011. raw_inode->i_ctime = cpu_to_le32(inode->i_ctime);
  1012. raw_inode->i_mtime = cpu_to_le32(inode->i_mtime);
  1013. raw_inode->i_blocks = cpu_to_le32(inode->i_blocks);
  1014. raw_inode->i_dtime = cpu_to_le32(inode->u.ext2_i.i_dtime);
  1015. raw_inode->i_flags = cpu_to_le32(inode->u.ext2_i.i_flags);
  1016. raw_inode->i_faddr = cpu_to_le32(inode->u.ext2_i.i_faddr);
  1017. raw_inode->i_frag = inode->u.ext2_i.i_frag_no;
  1018. raw_inode->i_fsize = inode->u.ext2_i.i_frag_size;
  1019. raw_inode->i_file_acl = cpu_to_le32(inode->u.ext2_i.i_file_acl);
  1020. if (!S_ISREG(inode->i_mode))
  1021. raw_inode->i_dir_acl = cpu_to_le32(inode->u.ext2_i.i_dir_acl);
  1022. else {
  1023. raw_inode->i_size_high = cpu_to_le32(inode->i_size >> 32);
  1024. if (inode->i_size > 0x7fffffffULL) {
  1025. struct super_block *sb = inode->i_sb;
  1026. if (!EXT2_HAS_RO_COMPAT_FEATURE(sb,
  1027. EXT2_FEATURE_RO_COMPAT_LARGE_FILE) ||
  1028.     EXT2_SB(sb)->s_es->s_rev_level ==
  1029. cpu_to_le32(EXT2_GOOD_OLD_REV)) {
  1030.        /* If this is the first large file
  1031. * created, add a flag to the superblock.
  1032. */
  1033. lock_kernel();
  1034. ext2_update_dynamic_rev(sb);
  1035. EXT2_SET_RO_COMPAT_FEATURE(sb,
  1036. EXT2_FEATURE_RO_COMPAT_LARGE_FILE);
  1037. unlock_kernel();
  1038. ext2_write_super(sb);
  1039. }
  1040. }
  1041. }
  1042. raw_inode->i_generation = cpu_to_le32(inode->i_generation);
  1043. if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
  1044. raw_inode->i_block[0] = cpu_to_le32(kdev_t_to_nr(inode->i_rdev));
  1045. else for (block = 0; block < EXT2_N_BLOCKS; block++)
  1046. raw_inode->i_block[block] = inode->u.ext2_i.i_data[block];
  1047. mark_buffer_dirty(bh);
  1048. if (do_sync) {
  1049. ll_rw_block (WRITE, 1, &bh);
  1050. wait_on_buffer (bh);
  1051. if (buffer_req(bh) && !buffer_uptodate(bh)) {
  1052. printk ("IO error syncing ext2 inode ["
  1053. "%s:%08lx]n",
  1054. bdevname(inode->i_dev), inode->i_ino);
  1055. err = -EIO;
  1056. }
  1057. }
  1058. brelse (bh);
  1059. return err;
  1060. }
  1061. void ext2_write_inode (struct inode * inode, int wait)
  1062. {
  1063. lock_kernel();
  1064. ext2_update_inode (inode, wait);
  1065. unlock_kernel();
  1066. }
  1067. int ext2_sync_inode (struct inode *inode)
  1068. {
  1069. return ext2_update_inode (inode, 1);
  1070. }