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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000-2002 by Hans Reiser, licensing governed by reiserfs/README
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/sched.h>
  6. #include <linux/reiserfs_fs.h>
  7. #include <linux/locks.h>
  8. #include <linux/smp_lock.h>
  9. #include <asm/uaccess.h>
  10. #include <asm/unaligned.h>
  11. /* args for the create parameter of reiserfs_get_block */
  12. #define GET_BLOCK_NO_CREATE 0 /* don't create new blocks or convert tails */
  13. #define GET_BLOCK_CREATE 1    /* add anything you need to find block */
  14. #define GET_BLOCK_NO_HOLE 2   /* return -ENOENT for file holes */
  15. #define GET_BLOCK_READ_DIRECT 4  /* read the tail if indirect item not found */
  16. #define GET_BLOCK_NO_ISEM     8 /* i_sem is not held, don't preallocate */
  17. static int reiserfs_get_block (struct inode * inode, long block,
  18.        struct buffer_head * bh_result, int create);
  19. void reiserfs_delete_inode (struct inode * inode)
  20. {
  21.     int jbegin_count = JOURNAL_PER_BALANCE_CNT * 2; 
  22.     int windex ;
  23.     struct reiserfs_transaction_handle th ;
  24.   
  25.     lock_kernel() ; 
  26.     /* The = 0 happens when we abort creating a new inode for some reason like lack of space.. */
  27.     if (INODE_PKEY(inode)->k_objectid != 0) { /* also handles bad_inode case */
  28. down (&inode->i_sem); 
  29. journal_begin(&th, inode->i_sb, jbegin_count) ;
  30. reiserfs_update_inode_transaction(inode) ;
  31. windex = push_journal_writer("delete_inode") ;
  32. reiserfs_delete_object (&th, inode);
  33. pop_journal_writer(windex) ;
  34. journal_end(&th, inode->i_sb, jbegin_count) ;
  35.         up (&inode->i_sem);
  36.         /* all items of file are deleted, so we can remove "save" link */
  37. remove_save_link (inode, 0/* not truncate */);
  38.     } else {
  39. /* no object items are in the tree */
  40. ;
  41.     }
  42.     clear_inode (inode); /* note this must go after the journal_end to prevent deadlock */
  43.     inode->i_blocks = 0;
  44.     unlock_kernel() ;
  45. }
  46. static void _make_cpu_key (struct cpu_key * key, int version, __u32 dirid, __u32 objectid, 
  47.        loff_t offset, int type, int length )
  48. {
  49.     key->version = version;
  50.     key->on_disk_key.k_dir_id = dirid;
  51.     key->on_disk_key.k_objectid = objectid;
  52.     set_cpu_key_k_offset (key, offset);
  53.     set_cpu_key_k_type (key, type);  
  54.     key->key_length = length;
  55. }
  56. /* take base of inode_key (it comes from inode always) (dirid, objectid) and version from an inode, set
  57.    offset and type of key */
  58. void make_cpu_key (struct cpu_key * key, const struct inode * inode, loff_t offset,
  59.       int type, int length )
  60. {
  61.   _make_cpu_key (key, get_inode_item_key_version (inode), le32_to_cpu (INODE_PKEY (inode)->k_dir_id),
  62.  le32_to_cpu (INODE_PKEY (inode)->k_objectid), 
  63.  offset, type, length);
  64. }
  65. //
  66. // when key is 0, do not set version and short key
  67. //
  68. inline void make_le_item_head (struct item_head * ih, const struct cpu_key * key,
  69.        int version,
  70.        loff_t offset, int type, int length, 
  71.        int entry_count/*or ih_free_space*/)
  72. {
  73.     if (key) {
  74. ih->ih_key.k_dir_id = cpu_to_le32 (key->on_disk_key.k_dir_id);
  75. ih->ih_key.k_objectid = cpu_to_le32 (key->on_disk_key.k_objectid);
  76.     }
  77.     put_ih_version( ih, version );
  78.     set_le_ih_k_offset (ih, offset);
  79.     set_le_ih_k_type (ih, type);
  80.     put_ih_item_len( ih, length );
  81.     /*    set_ih_free_space (ih, 0);*/
  82.     // for directory items it is entry count, for directs and stat
  83.     // datas - 0xffff, for indirects - 0
  84.     put_ih_entry_count( ih, entry_count );
  85. }
  86. static void add_to_flushlist(struct inode *inode, struct buffer_head *bh) {
  87.     struct inode *jinode = &(SB_JOURNAL(inode->i_sb)->j_dummy_inode) ;
  88.     buffer_insert_inode_queue(bh, jinode) ;
  89. }
  90. //
  91. // FIXME: we might cache recently accessed indirect item
  92. // Ugh.  Not too eager for that....
  93. //  I cut the code until such time as I see a convincing argument (benchmark).
  94. // I don't want a bloated inode struct..., and I don't like code complexity....
  95. /* cutting the code is fine, since it really isn't in use yet and is easy
  96. ** to add back in.  But, Vladimir has a really good idea here.  Think
  97. ** about what happens for reading a file.  For each page,
  98. ** The VFS layer calls reiserfs_readpage, who searches the tree to find
  99. ** an indirect item.  This indirect item has X number of pointers, where
  100. ** X is a big number if we've done the block allocation right.  But,
  101. ** we only use one or two of these pointers during each call to readpage,
  102. ** needlessly researching again later on.
  103. **
  104. ** The size of the cache could be dynamic based on the size of the file.
  105. **
  106. ** I'd also like to see us cache the location the stat data item, since
  107. ** we are needlessly researching for that frequently.
  108. **
  109. ** --chris
  110. */
  111. /* If this page has a file tail in it, and
  112. ** it was read in by get_block_create_0, the page data is valid,
  113. ** but tail is still sitting in a direct item, and we can't write to
  114. ** it.  So, look through this page, and check all the mapped buffers
  115. ** to make sure they have valid block numbers.  Any that don't need
  116. ** to be unmapped, so that block_prepare_write will correctly call
  117. ** reiserfs_get_block to convert the tail into an unformatted node
  118. */
  119. static inline void fix_tail_page_for_writing(struct page *page) {
  120.     struct buffer_head *head, *next, *bh ;
  121.     if (page && page->buffers) {
  122. head = page->buffers ;
  123. bh = head ;
  124. do {
  125.     next = bh->b_this_page ;
  126.     if (buffer_mapped(bh) && bh->b_blocknr == 0) {
  127.         reiserfs_unmap_buffer(bh) ;
  128.     }
  129.     bh = next ;
  130. } while (bh != head) ;
  131.     }
  132. }
  133. /* reiserfs_get_block does not need to allocate a block only if it has been
  134.    done already or non-hole position has been found in the indirect item */
  135. static inline int allocation_needed (int retval, b_blocknr_t allocated, 
  136.      struct item_head * ih,
  137.      __u32 * item, int pos_in_item)
  138. {
  139.   if (allocated)
  140.  return 0;
  141.   if (retval == POSITION_FOUND && is_indirect_le_ih (ih) && 
  142.       get_block_num(item, pos_in_item))
  143.  return 0;
  144.   return 1;
  145. }
  146. static inline int indirect_item_found (int retval, struct item_head * ih)
  147. {
  148.   return (retval == POSITION_FOUND) && is_indirect_le_ih (ih);
  149. }
  150. static inline void set_block_dev_mapped (struct buffer_head * bh, 
  151.  b_blocknr_t block, struct inode * inode)
  152. {
  153.   bh->b_dev = inode->i_dev;
  154.   bh->b_blocknr = block;
  155.   bh->b_state |= (1UL << BH_Mapped);
  156. }
  157. //
  158. // files which were created in the earlier version can not be longer,
  159. // than 2 gb
  160. //
  161. static int file_capable (struct inode * inode, long block)
  162. {
  163.     if (get_inode_item_key_version (inode) != KEY_FORMAT_3_5 || // it is new file.
  164. block < (1 << (31 - inode->i_sb->s_blocksize_bits))) // old file, but 'block' is inside of 2gb
  165. return 1;
  166.     return 0;
  167. }
  168. /*static*/ void restart_transaction(struct reiserfs_transaction_handle *th,
  169. struct inode *inode, struct path *path) {
  170.   struct super_block *s = th->t_super ;
  171.   int len = th->t_blocks_allocated ;
  172.   pathrelse(path) ;
  173.   reiserfs_update_sd(th, inode) ;
  174.   journal_end(th, s, len) ;
  175.   journal_begin(th, s, len) ;
  176.   reiserfs_update_inode_transaction(inode) ;
  177. }
  178. // it is called by get_block when create == 0. Returns block number
  179. // for 'block'-th logical block of file. When it hits direct item it
  180. // returns 0 (being called from bmap) or read direct item into piece
  181. // of page (bh_result)
  182. // Please improve the english/clarity in the comment above, as it is
  183. // hard to understand.
  184. static int _get_block_create_0 (struct inode * inode, long block,
  185.  struct buffer_head * bh_result,
  186.  int args)
  187. {
  188.     INITIALIZE_PATH (path);
  189.     struct cpu_key key;
  190.     struct buffer_head * bh;
  191.     struct item_head * ih, tmp_ih;
  192.     int fs_gen ;
  193.     int blocknr;
  194.     char * p = NULL;
  195.     int chars;
  196.     int ret ;
  197.     int done = 0 ;
  198.     unsigned long offset ;
  199.     // prepare the key to look for the 'block'-th block of file
  200.     make_cpu_key (&key, inode,
  201.   (loff_t)block * inode->i_sb->s_blocksize + 1, TYPE_ANY, 3);
  202. research:
  203.     if (search_for_position_by_key (inode->i_sb, &key, &path) != POSITION_FOUND) {
  204. pathrelse (&path);
  205.         if (p)
  206.             kunmap(bh_result->b_page) ;
  207. // We do not return -ENOENT if there is a hole but page is uptodate, because it means
  208. // That there is some MMAPED data associated with it that is yet to be written to disk.
  209. if ((args & GET_BLOCK_NO_HOLE) && !Page_Uptodate(bh_result->b_page) ) {
  210.     return -ENOENT ;
  211. }
  212.         return 0 ;
  213.     }
  214.     
  215.     //
  216.     bh = get_last_bh (&path);
  217.     ih = get_ih (&path);
  218.     if (is_indirect_le_ih (ih)) {
  219. __u32 * ind_item = (__u32 *)B_I_PITEM (bh, ih);
  220. /* FIXME: here we could cache indirect item or part of it in
  221.    the inode to avoid search_by_key in case of subsequent
  222.    access to file */
  223. blocknr = get_block_num(ind_item, path.pos_in_item) ;
  224. ret = 0 ;
  225. if (blocknr) {
  226.     bh_result->b_dev = inode->i_dev;
  227.     bh_result->b_blocknr = blocknr;
  228.     bh_result->b_state |= (1UL << BH_Mapped);
  229. } else
  230.     // We do not return -ENOENT if there is a hole but page is uptodate, because it means
  231.     // That there is some MMAPED data associated with it that is yet to be written to disk.
  232.     if ((args & GET_BLOCK_NO_HOLE) && !Page_Uptodate(bh_result->b_page) ) {
  233. ret = -ENOENT ;
  234.     }
  235. pathrelse (&path);
  236.         if (p)
  237.             kunmap(bh_result->b_page) ;
  238. return ret ;
  239.     }
  240.     // requested data are in direct item(s)
  241.     if (!(args & GET_BLOCK_READ_DIRECT)) {
  242. // we are called by bmap. FIXME: we can not map block of file
  243. // when it is stored in direct item(s)
  244. pathrelse (&path);
  245.         if (p)
  246.             kunmap(bh_result->b_page) ;
  247. return -ENOENT;
  248.     }
  249.     /* if we've got a direct item, and the buffer was uptodate,
  250.     ** we don't want to pull data off disk again.  skip to the
  251.     ** end, where we map the buffer and return
  252.     */
  253.     if (buffer_uptodate(bh_result)) {
  254.         goto finished ;
  255.     } else 
  256. /*
  257. ** grab_tail_page can trigger calls to reiserfs_get_block on up to date
  258. ** pages without any buffers.  If the page is up to date, we don't want
  259. ** read old data off disk.  Set the up to date bit on the buffer instead
  260. ** and jump to the end
  261. */
  262.     if (Page_Uptodate(bh_result->b_page)) {
  263. mark_buffer_uptodate(bh_result, 1);
  264. goto finished ;
  265.     }
  266.     // read file tail into part of page
  267.     offset = (cpu_key_k_offset(&key) - 1) & (PAGE_CACHE_SIZE - 1) ;
  268.     fs_gen = get_generation(inode->i_sb) ;
  269.     copy_item_head (&tmp_ih, ih);
  270.     /* we only want to kmap if we are reading the tail into the page.
  271.     ** this is not the common case, so we don't kmap until we are
  272.     ** sure we need to.  But, this means the item might move if
  273.     ** kmap schedules
  274.     */
  275.     if (!p) {
  276. p = (char *)kmap(bh_result->b_page) ;
  277. if (fs_changed (fs_gen, inode->i_sb) && item_moved (&tmp_ih, &path)) {
  278.     goto research;
  279. }
  280.     }
  281.     p += offset ;
  282.     memset (p, 0, inode->i_sb->s_blocksize);
  283.     do {
  284. if (!is_direct_le_ih (ih)) {
  285.     BUG ();
  286.         }
  287. /* make sure we don't read more bytes than actually exist in
  288. ** the file.  This can happen in odd cases where i_size isn't
  289. ** correct, and when direct item padding results in a few 
  290. ** extra bytes at the end of the direct item
  291. */
  292.         if ((le_ih_k_offset(ih) + path.pos_in_item) > inode->i_size)
  293.     break ;
  294. if ((le_ih_k_offset(ih) - 1 + ih_item_len(ih)) > inode->i_size) {
  295.     chars = inode->i_size - (le_ih_k_offset(ih) - 1) - path.pos_in_item;
  296.     done = 1 ;
  297. } else {
  298.     chars = ih_item_len(ih) - path.pos_in_item;
  299. }
  300. memcpy (p, B_I_PITEM (bh, ih) + path.pos_in_item, chars);
  301. if (done) 
  302.     break ;
  303. p += chars;
  304. if (PATH_LAST_POSITION (&path) != (B_NR_ITEMS (bh) - 1))
  305.     // we done, if read direct item is not the last item of
  306.     // node FIXME: we could try to check right delimiting key
  307.     // to see whether direct item continues in the right
  308.     // neighbor or rely on i_size
  309.     break;
  310. // update key to look for the next piece
  311. set_cpu_key_k_offset (&key, cpu_key_k_offset (&key) + chars);
  312. if (search_for_position_by_key (inode->i_sb, &key, &path) != POSITION_FOUND)
  313.     // we read something from tail, even if now we got IO_ERROR
  314.     break;
  315. bh = get_last_bh (&path);
  316. ih = get_ih (&path);
  317.     } while (1);
  318.     flush_dcache_page(bh_result->b_page) ;
  319.     kunmap(bh_result->b_page) ;
  320. finished:
  321.     pathrelse (&path);
  322.     bh_result->b_blocknr = 0 ;
  323.     bh_result->b_dev = inode->i_dev;
  324.     mark_buffer_uptodate (bh_result, 1);
  325.     bh_result->b_state |= (1UL << BH_Mapped);
  326.     return 0;
  327. }
  328. // this is called to create file map. So, _get_block_create_0 will not
  329. // read direct item
  330. int reiserfs_bmap (struct inode * inode, long block,
  331.    struct buffer_head * bh_result, int create)
  332. {
  333.     if (!file_capable (inode, block))
  334. return -EFBIG;
  335.     lock_kernel() ;
  336.     /* do not read the direct item */
  337.     _get_block_create_0 (inode, block, bh_result, 0) ;
  338.     unlock_kernel() ;
  339.     return 0;
  340. }
  341. /* special version of get_block that is only used by grab_tail_page right
  342. ** now.  It is sent to block_prepare_write, and when you try to get a
  343. ** block past the end of the file (or a block from a hole) it returns
  344. ** -ENOENT instead of a valid buffer.  block_prepare_write expects to
  345. ** be able to do i/o on the buffers returned, unless an error value
  346. ** is also returned.
  347. ** 
  348. ** So, this allows block_prepare_write to be used for reading a single block
  349. ** in a page.  Where it does not produce a valid page for holes, or past the
  350. ** end of the file.  This turns out to be exactly what we need for reading
  351. ** tails for conversion.
  352. **
  353. ** The point of the wrapper is forcing a certain value for create, even
  354. ** though the VFS layer is calling this function with create==1.  If you 
  355. ** don't want to send create == GET_BLOCK_NO_HOLE to reiserfs_get_block, 
  356. ** don't use this function.
  357. */
  358. static int reiserfs_get_block_create_0 (struct inode * inode, long block,
  359. struct buffer_head * bh_result, int create) {
  360.     return reiserfs_get_block(inode, block, bh_result, GET_BLOCK_NO_HOLE) ;
  361. }
  362. static int reiserfs_get_block_direct_io (struct inode * inode, long block,
  363. struct buffer_head * bh_result, int create) {
  364.     int ret ;
  365.     ret = reiserfs_get_block(inode, block, bh_result, create) ;
  366.     /* don't allow direct io onto tail pages */
  367.     if (ret == 0 && buffer_mapped(bh_result) && bh_result->b_blocknr == 0) {
  368. /* make sure future calls to the direct io funcs for this offset
  369. ** in the file fail by unmapping the buffer
  370. */
  371. reiserfs_unmap_buffer(bh_result);
  372.         ret = -EINVAL ;
  373.     }
  374.     return ret ;
  375. }
  376. /*
  377. ** helper function for when reiserfs_get_block is called for a hole
  378. ** but the file tail is still in a direct item
  379. ** bh_result is the buffer head for the hole
  380. ** tail_offset is the offset of the start of the tail in the file
  381. **
  382. ** This calls prepare_write, which will start a new transaction
  383. ** you should not be in a transaction, or have any paths held when you
  384. ** call this.
  385. */
  386. static int convert_tail_for_hole(struct inode *inode, 
  387.                                  struct buffer_head *bh_result,
  388.  loff_t tail_offset) {
  389.     unsigned long index ;
  390.     unsigned long tail_end ; 
  391.     unsigned long tail_start ;
  392.     struct page * tail_page ;
  393.     struct page * hole_page = bh_result->b_page ;
  394.     int retval = 0 ;
  395.     if ((tail_offset & (bh_result->b_size - 1)) != 1) 
  396.         return -EIO ;
  397.     /* always try to read until the end of the block */
  398.     tail_start = tail_offset & (PAGE_CACHE_SIZE - 1) ;
  399.     tail_end = (tail_start | (bh_result->b_size - 1)) + 1 ;
  400.     index = tail_offset >> PAGE_CACHE_SHIFT ;
  401.     if (index != hole_page->index) {
  402. tail_page = grab_cache_page(inode->i_mapping, index) ;
  403. retval = -ENOMEM;
  404. if (!tail_page) {
  405.     goto out ;
  406. }
  407.     } else {
  408.         tail_page = hole_page ;
  409.     }
  410.     /* we don't have to make sure the conversion did not happen while
  411.     ** we were locking the page because anyone that could convert
  412.     ** must first take i_sem.
  413.     **
  414.     ** We must fix the tail page for writing because it might have buffers
  415.     ** that are mapped, but have a block number of 0.  This indicates tail
  416.     ** data that has been read directly into the page, and block_prepare_write
  417.     ** won't trigger a get_block in this case.
  418.     */
  419.     fix_tail_page_for_writing(tail_page) ;
  420.     retval = block_prepare_write(tail_page, tail_start, tail_end, 
  421.                                  reiserfs_get_block) ; 
  422.     if (retval)
  423.         goto unlock ;
  424.     /* tail conversion might change the data in the page */
  425.     flush_dcache_page(tail_page) ;
  426.     retval = generic_commit_write(NULL, tail_page, tail_start, tail_end) ;
  427. unlock:
  428.     if (tail_page != hole_page) {
  429.         UnlockPage(tail_page) ;
  430. page_cache_release(tail_page) ;
  431.     }
  432. out:
  433.     return retval ;
  434. }
  435. static inline int _allocate_block(struct reiserfs_transaction_handle *th,
  436.    long block,
  437.                            struct inode *inode, 
  438.    b_blocknr_t *allocated_block_nr, 
  439.    struct path * path,
  440.    int flags) {
  441.   
  442. #ifdef REISERFS_PREALLOCATE
  443.     if (!(flags & GET_BLOCK_NO_ISEM)) {
  444.         return reiserfs_new_unf_blocknrs2(th, inode, allocated_block_nr, path, block);
  445.     }
  446. #endif
  447.     return reiserfs_new_unf_blocknrs (th, inode, allocated_block_nr, path, block);
  448. }
  449. static int reiserfs_get_block (struct inode * inode, long block,
  450.        struct buffer_head * bh_result, int create)
  451. {
  452.     int repeat, retval;
  453.     b_blocknr_t allocated_block_nr = 0;// b_blocknr_t is unsigned long
  454.     INITIALIZE_PATH(path);
  455.     int pos_in_item;
  456.     struct cpu_key key;
  457.     struct buffer_head * bh, * unbh = 0;
  458.     struct item_head * ih, tmp_ih;
  459.     __u32 * item;
  460.     int done;
  461.     int fs_gen;
  462.     int windex ;
  463.     struct reiserfs_transaction_handle th ;
  464.     /* space reserved in transaction batch: 
  465.         . 3 balancings in direct->indirect conversion
  466.         . 1 block involved into reiserfs_update_sd()
  467.        XXX in practically impossible worst case direct2indirect()
  468.        can incur (much) more that 3 balancings. */
  469.     int jbegin_count = JOURNAL_PER_BALANCE_CNT * 3 + 1;
  470.     int version;
  471.     int transaction_started = 0 ;
  472.     loff_t new_offset = (((loff_t)block) << inode->i_sb->s_blocksize_bits) + 1 ;
  473. /* bad.... */
  474.     lock_kernel() ;
  475.     th.t_trans_id = 0 ;
  476.     version = get_inode_item_key_version (inode);
  477.     if (block < 0) {
  478. unlock_kernel();
  479. return -EIO;
  480.     }
  481.     if (!file_capable (inode, block)) {
  482. unlock_kernel() ;
  483. return -EFBIG;
  484.     }
  485.     /* if !create, we aren't changing the FS, so we don't need to
  486.     ** log anything, so we don't need to start a transaction
  487.     */
  488.     if (!(create & GET_BLOCK_CREATE)) {
  489. int ret ;
  490. /* find number of block-th logical block of the file */
  491. ret = _get_block_create_0 (inode, block, bh_result, 
  492.                            create | GET_BLOCK_READ_DIRECT) ;
  493. unlock_kernel() ;
  494. return ret;
  495.     }
  496.     inode->u.reiserfs_i.i_flags |= i_pack_on_close_mask;
  497.     windex = push_journal_writer("reiserfs_get_block") ;
  498.   
  499.     /* set the key of the first byte in the 'block'-th block of file */
  500.     make_cpu_key (&key, inode, new_offset,
  501.   TYPE_ANY, 3/*key length*/);
  502.     if ((new_offset + inode->i_sb->s_blocksize - 1) > inode->i_size) {
  503. journal_begin(&th, inode->i_sb, jbegin_count) ;
  504. reiserfs_update_inode_transaction(inode) ;
  505. transaction_started = 1 ;
  506.     }
  507.  research:
  508.     retval = search_for_position_by_key (inode->i_sb, &key, &path);
  509.     if (retval == IO_ERROR) {
  510. retval = -EIO;
  511. goto failure;
  512.     }
  513.     bh = get_last_bh (&path);
  514.     ih = get_ih (&path);
  515.     item = get_item (&path);
  516.     pos_in_item = path.pos_in_item;
  517.     fs_gen = get_generation (inode->i_sb);
  518.     copy_item_head (&tmp_ih, ih);
  519.     if (allocation_needed (retval, allocated_block_nr, ih, item, pos_in_item)) {
  520. /* we have to allocate block for the unformatted node */
  521. if (!transaction_started) {
  522.     pathrelse(&path) ;
  523.     journal_begin(&th, inode->i_sb, jbegin_count) ;
  524.     reiserfs_update_inode_transaction(inode) ;
  525.     transaction_started = 1 ;
  526.     goto research ;
  527. }
  528. repeat = _allocate_block(&th, block, inode, &allocated_block_nr, &path, create);
  529. if (repeat == NO_DISK_SPACE) {
  530.     /* restart the transaction to give the journal a chance to free
  531.     ** some blocks.  releases the path, so we have to go back to
  532.     ** research if we succeed on the second try
  533.     */
  534.     restart_transaction(&th, inode, &path) ; 
  535.     repeat = _allocate_block(&th, block, inode, &allocated_block_nr, NULL, create);
  536.     if (repeat != NO_DISK_SPACE) {
  537. goto research ;
  538.     }
  539.     retval = -ENOSPC;
  540.     goto failure;
  541. }
  542. if (fs_changed (fs_gen, inode->i_sb) && item_moved (&tmp_ih, &path)) {
  543.     goto research;
  544. }
  545.     }
  546.     if (indirect_item_found (retval, ih)) {
  547.         b_blocknr_t unfm_ptr;
  548. /* 'block'-th block is in the file already (there is
  549.    corresponding cell in some indirect item). But it may be
  550.    zero unformatted node pointer (hole) */
  551.         unfm_ptr = get_block_num (item, pos_in_item);
  552. if (unfm_ptr == 0) {
  553.     /* use allocated block to plug the hole */
  554.     reiserfs_prepare_for_journal(inode->i_sb, bh, 1) ;
  555.     if (fs_changed (fs_gen, inode->i_sb) && item_moved (&tmp_ih, &path)) {
  556. reiserfs_restore_prepared_buffer(inode->i_sb, bh) ;
  557. goto research;
  558.     }
  559.     bh_result->b_state |= (1UL << BH_New);
  560.     put_block_num(item, pos_in_item, allocated_block_nr) ;
  561.             unfm_ptr = allocated_block_nr;
  562.     journal_mark_dirty (&th, inode->i_sb, bh);
  563.     inode->i_blocks += (inode->i_sb->s_blocksize / 512) ;
  564.     reiserfs_update_sd(&th, inode) ;
  565. }
  566. set_block_dev_mapped(bh_result, unfm_ptr, inode);
  567. pathrelse (&path);
  568. pop_journal_writer(windex) ;
  569. if (transaction_started)
  570.     journal_end(&th, inode->i_sb, jbegin_count) ;
  571. unlock_kernel() ;
  572.  
  573. /* the item was found, so new blocks were not added to the file
  574. ** there is no need to make sure the inode is updated with this 
  575. ** transaction
  576. */
  577. return 0;
  578.     }
  579.     if (!transaction_started) {
  580. /* if we don't pathrelse, we could vs-3050 on the buffer if
  581. ** someone is waiting for it (they can't finish until the buffer
  582. ** is released, we can start a new transaction until they finish)
  583. */
  584. pathrelse(&path) ;
  585. journal_begin(&th, inode->i_sb, jbegin_count) ;
  586. reiserfs_update_inode_transaction(inode) ;
  587. transaction_started = 1 ;
  588. goto research;
  589.     }
  590.     /* desired position is not found or is in the direct item. We have
  591.        to append file with holes up to 'block'-th block converting
  592.        direct items to indirect one if necessary */
  593.     done = 0;
  594.     do {
  595. if (is_statdata_le_ih (ih)) {
  596.     __u32 unp = 0;
  597.     struct cpu_key tmp_key;
  598.     /* indirect item has to be inserted */
  599.     make_le_item_head (&tmp_ih, &key, version, 1, TYPE_INDIRECT, 
  600.        UNFM_P_SIZE, 0/* free_space */);
  601.     if (cpu_key_k_offset (&key) == 1) {
  602. /* we are going to add 'block'-th block to the file. Use
  603.    allocated block for that */
  604. unp = cpu_to_le32 (allocated_block_nr);
  605. set_block_dev_mapped (bh_result, allocated_block_nr, inode);
  606. bh_result->b_state |= (1UL << BH_New);
  607. done = 1;
  608.     }
  609.     tmp_key = key; // ;)
  610.     set_cpu_key_k_offset (&tmp_key, 1);
  611.     PATH_LAST_POSITION(&path) ++;
  612.     retval = reiserfs_insert_item (&th, &path, &tmp_key, &tmp_ih, (char *)&unp);
  613.     if (retval) {
  614. reiserfs_free_block (&th, allocated_block_nr);
  615. goto failure; // retval == -ENOSPC or -EIO or -EEXIST
  616.     }
  617.     if (unp)
  618. inode->i_blocks += inode->i_sb->s_blocksize / 512;
  619.     //mark_tail_converted (inode);
  620. } else if (is_direct_le_ih (ih)) {
  621.     /* direct item has to be converted */
  622.     loff_t tail_offset;
  623.     tail_offset = ((le_ih_k_offset (ih) - 1) & ~(inode->i_sb->s_blocksize - 1)) + 1;
  624.     if (tail_offset == cpu_key_k_offset (&key)) {
  625. /* direct item we just found fits into block we have
  626.                    to map. Convert it into unformatted node: use
  627.                    bh_result for the conversion */
  628. set_block_dev_mapped (bh_result, allocated_block_nr, inode);
  629. unbh = bh_result;
  630. done = 1;
  631.     } else {
  632. /* we have to padd file tail stored in direct item(s)
  633.    up to block size and convert it to unformatted
  634.    node. FIXME: this should also get into page cache */
  635. pathrelse(&path) ;
  636. journal_end(&th, inode->i_sb, jbegin_count) ;
  637. transaction_started = 0 ;
  638. retval = convert_tail_for_hole(inode, bh_result, tail_offset) ;
  639. if (retval) {
  640.     if ( retval != -ENOSPC )
  641. printk("clm-6004: convert tail failed inode %lu, error %dn", inode->i_ino, retval) ;
  642.     if (allocated_block_nr) {
  643. /* the bitmap, the super, and the stat data == 3 */
  644. journal_begin(&th, inode->i_sb, 3) ;
  645. reiserfs_free_block (&th, allocated_block_nr);
  646. transaction_started = 1 ;
  647.     }
  648.     goto failure ;
  649. }
  650. goto research ;
  651.     }
  652.     retval = direct2indirect (&th, inode, &path, unbh, tail_offset);
  653.     if (retval) {
  654. reiserfs_unmap_buffer(unbh);
  655. reiserfs_free_block (&th, allocated_block_nr);
  656. goto failure;
  657.     }
  658.     /* it is important the mark_buffer_uptodate is done after
  659.     ** the direct2indirect.  The buffer might contain valid
  660.     ** data newer than the data on disk (read by readpage, changed,
  661.     ** and then sent here by writepage).  direct2indirect needs
  662.     ** to know if unbh was already up to date, so it can decide
  663.     ** if the data in unbh needs to be replaced with data from
  664.     ** the disk
  665.     */
  666.     mark_buffer_uptodate (unbh, 1);
  667.     /* we've converted the tail, so we must 
  668.     ** flush unbh before the transaction commits
  669.     */
  670.     add_to_flushlist(inode, unbh) ;
  671.     /* mark it dirty now to prevent commit_write from adding
  672.      ** this buffer to the inode's dirty buffer list
  673.      */
  674.     __mark_buffer_dirty(unbh) ;
  675.     //inode->i_blocks += inode->i_sb->s_blocksize / 512;
  676.     //mark_tail_converted (inode);
  677. } else {
  678.     /* append indirect item with holes if needed, when appending
  679.        pointer to 'block'-th block use block, which is already
  680.        allocated */
  681.     struct cpu_key tmp_key;
  682.     struct unfm_nodeinfo un = {0, 0};
  683.     RFALSE( pos_in_item != ih_item_len(ih) / UNFM_P_SIZE,
  684.     "vs-804: invalid position for append");
  685.     /* indirect item has to be appended, set up key of that position */
  686.     make_cpu_key (&tmp_key, inode,
  687.   le_key_k_offset (version, &(ih->ih_key)) + op_bytes_number (ih, inode->i_sb->s_blocksize),
  688.   //pos_in_item * inode->i_sb->s_blocksize,
  689.   TYPE_INDIRECT, 3);// key type is unimportant
  690.   
  691.     if (cpu_key_k_offset (&tmp_key) == cpu_key_k_offset (&key)) {
  692. /* we are going to add target block to the file. Use allocated
  693.    block for that */
  694. un.unfm_nodenum = cpu_to_le32 (allocated_block_nr);
  695. set_block_dev_mapped (bh_result, allocated_block_nr, inode);
  696. bh_result->b_state |= (1UL << BH_New);
  697. done = 1;
  698.     } else {
  699. /* paste hole to the indirect item */
  700.     }
  701.     retval = reiserfs_paste_into_item (&th, &path, &tmp_key, (char *)&un, UNFM_P_SIZE);
  702.     if (retval) {
  703. reiserfs_free_block (&th, allocated_block_nr);
  704. goto failure;
  705.     }
  706.     if (un.unfm_nodenum)
  707. inode->i_blocks += inode->i_sb->s_blocksize / 512;
  708.     //mark_tail_converted (inode);
  709. }
  710. if (done == 1)
  711.     break;
  712.  
  713. /* this loop could log more blocks than we had originally asked
  714. ** for.  So, we have to allow the transaction to end if it is
  715. ** too big or too full.  Update the inode so things are 
  716. ** consistent if we crash before the function returns
  717. **
  718. ** release the path so that anybody waiting on the path before
  719. ** ending their transaction will be able to continue.
  720. */
  721. if (journal_transaction_should_end(&th, th.t_blocks_allocated)) {
  722.   restart_transaction(&th, inode, &path) ; 
  723. }
  724. /* inserting indirect pointers for a hole can take a 
  725. ** long time.  reschedule if needed
  726. */
  727. if (current->need_resched)
  728.     schedule() ;
  729. retval = search_for_position_by_key (inode->i_sb, &key, &path);
  730. if (retval == IO_ERROR) {
  731.     retval = -EIO;
  732.     goto failure;
  733. }
  734. if (retval == POSITION_FOUND) {
  735.     reiserfs_warning ("vs-825: reiserfs_get_block: "
  736.       "%K should not be foundn", &key);
  737.     retval = -EEXIST;
  738.     if (allocated_block_nr)
  739.         reiserfs_free_block (&th, allocated_block_nr);
  740.     pathrelse(&path) ;
  741.     goto failure;
  742. }
  743. bh = get_last_bh (&path);
  744. ih = get_ih (&path);
  745. item = get_item (&path);
  746. pos_in_item = path.pos_in_item;
  747.     } while (1);
  748.     retval = 0;
  749.     reiserfs_check_path(&path) ;
  750.  failure:
  751.     if (transaction_started) {
  752.       reiserfs_update_sd(&th, inode) ;
  753.       journal_end(&th, inode->i_sb, jbegin_count) ;
  754.     }
  755.     pop_journal_writer(windex) ;
  756.     unlock_kernel() ;
  757.     reiserfs_check_path(&path) ;
  758.     return retval;
  759. }
  760. //
  761. // BAD: new directories have stat data of new type and all other items
  762. // of old type. Version stored in the inode says about body items, so
  763. // in update_stat_data we can not rely on inode, but have to check
  764. // item version directly
  765. //
  766. // called by read_inode
  767. static void init_inode (struct inode * inode, struct path * path)
  768. {
  769.     struct buffer_head * bh;
  770.     struct item_head * ih;
  771.     __u32 rdev;
  772.     //int version = ITEM_VERSION_1;
  773.     bh = PATH_PLAST_BUFFER (path);
  774.     ih = PATH_PITEM_HEAD (path);
  775.     copy_key (INODE_PKEY (inode), &(ih->ih_key));
  776.     inode->i_blksize = PAGE_SIZE;
  777.     INIT_LIST_HEAD(&inode->u.reiserfs_i.i_prealloc_list) ;
  778.     if (stat_data_v1 (ih)) {
  779. struct stat_data_v1 * sd = (struct stat_data_v1 *)B_I_PITEM (bh, ih);
  780. unsigned long blocks;
  781. set_inode_item_key_version (inode, KEY_FORMAT_3_5);
  782.         set_inode_sd_version (inode, STAT_DATA_V1);
  783. inode->i_mode  = sd_v1_mode(sd);
  784. inode->i_nlink = sd_v1_nlink(sd);
  785. inode->i_uid   = sd_v1_uid(sd);
  786. inode->i_gid   = sd_v1_gid(sd);
  787. inode->i_size  = sd_v1_size(sd);
  788. inode->i_atime = sd_v1_atime(sd);
  789. inode->i_mtime = sd_v1_mtime(sd);
  790. inode->i_ctime = sd_v1_ctime(sd);
  791. inode->i_blocks = sd_v1_blocks(sd);
  792. inode->i_generation = le32_to_cpu (INODE_PKEY (inode)->k_dir_id);
  793. blocks = (inode->i_size + 511) >> 9;
  794. blocks = _ROUND_UP (blocks, inode->i_sb->s_blocksize >> 9);
  795. if (inode->i_blocks > blocks) {
  796.     // there was a bug in <=3.5.23 when i_blocks could take negative
  797.     // values. Starting from 3.5.17 this value could even be stored in
  798.     // stat data. For such files we set i_blocks based on file
  799.     // size. Just 2 notes: this can be wrong for sparce files. On-disk value will be
  800.     // only updated if file's inode will ever change
  801.     inode->i_blocks = blocks;
  802. }
  803.         rdev = sd_v1_rdev(sd);
  804. inode->u.reiserfs_i.i_first_direct_byte = sd_v1_first_direct_byte(sd);
  805. /* nopack is initially zero for v1 objects. For v2 objects,
  806.    nopack is initialised from sd_attrs */
  807. inode->u.reiserfs_i.i_flags &= ~i_nopack_mask;
  808.     } else {
  809. // new stat data found, but object may have old items
  810. // (directories and symlinks)
  811. struct stat_data * sd = (struct stat_data *)B_I_PITEM (bh, ih);
  812. inode->i_mode   = sd_v2_mode(sd);
  813. inode->i_nlink  = sd_v2_nlink(sd);
  814. inode->i_uid    = sd_v2_uid(sd);
  815. inode->i_size   = sd_v2_size(sd);
  816. inode->i_gid    = sd_v2_gid(sd);
  817. inode->i_mtime  = sd_v2_mtime(sd);
  818. inode->i_atime  = sd_v2_atime(sd);
  819. inode->i_ctime  = sd_v2_ctime(sd);
  820. inode->i_blocks = sd_v2_blocks(sd);
  821.         rdev            = sd_v2_rdev(sd);
  822. if( S_ISCHR( inode -> i_mode ) || S_ISBLK( inode -> i_mode ) )
  823.     inode->i_generation = le32_to_cpu (INODE_PKEY (inode)->k_dir_id);
  824. else
  825.             inode->i_generation = sd_v2_generation(sd);
  826. if (S_ISDIR (inode->i_mode) || S_ISLNK (inode->i_mode))
  827.     set_inode_item_key_version (inode, KEY_FORMAT_3_5);
  828. else
  829.             set_inode_item_key_version (inode, KEY_FORMAT_3_6);
  830.         set_inode_sd_version (inode, STAT_DATA_V2);
  831. /* read persistent inode attributes from sd and initalise
  832.    generic inode flags from them */
  833. inode -> u.reiserfs_i.i_attrs = sd_v2_attrs( sd );
  834. sd_attrs_to_i_attrs( sd_v2_attrs( sd ), inode );
  835.     }
  836.     pathrelse (path);
  837.     if (S_ISREG (inode->i_mode)) {
  838. inode->i_op = &reiserfs_file_inode_operations;
  839. inode->i_fop = &reiserfs_file_operations;
  840. inode->i_mapping->a_ops = &reiserfs_address_space_operations ;
  841.     } else if (S_ISDIR (inode->i_mode)) {
  842. inode->i_op = &reiserfs_dir_inode_operations;
  843. inode->i_fop = &reiserfs_dir_operations;
  844.     } else if (S_ISLNK (inode->i_mode)) {
  845. inode->i_op = &page_symlink_inode_operations;
  846. inode->i_mapping->a_ops = &reiserfs_address_space_operations;
  847.     } else {
  848. inode->i_blocks = 0;
  849. init_special_inode(inode, inode->i_mode, rdev) ;
  850.     }
  851. }
  852. // update new stat data with inode fields
  853. static void inode2sd (void * sd, struct inode * inode)
  854. {
  855.     struct stat_data * sd_v2 = (struct stat_data *)sd;
  856.     __u16 flags;
  857.     set_sd_v2_mode(sd_v2, inode->i_mode );
  858.     set_sd_v2_nlink(sd_v2, inode->i_nlink );
  859.     set_sd_v2_uid(sd_v2, inode->i_uid );
  860.     set_sd_v2_size(sd_v2, inode->i_size );
  861.     set_sd_v2_gid(sd_v2, inode->i_gid );
  862.     set_sd_v2_mtime(sd_v2, inode->i_mtime );
  863.     set_sd_v2_atime(sd_v2, inode->i_atime );
  864.     set_sd_v2_ctime(sd_v2, inode->i_ctime );
  865.     set_sd_v2_blocks(sd_v2, inode->i_blocks );
  866.     if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
  867.         set_sd_v2_rdev(sd_v2, inode->i_rdev );
  868.     else
  869.         set_sd_v2_generation(sd_v2, inode->i_generation);
  870.     flags = inode -> u.reiserfs_i.i_attrs;
  871.     i_attrs_to_sd_attrs( inode, &flags );
  872.     set_sd_v2_attrs( sd_v2, flags );
  873. }
  874. // used to copy inode's fields to old stat data
  875. static void inode2sd_v1 (void * sd, struct inode * inode)
  876. {
  877.     struct stat_data_v1 * sd_v1 = (struct stat_data_v1 *)sd;
  878.     set_sd_v1_mode(sd_v1, inode->i_mode );
  879.     set_sd_v1_uid(sd_v1, inode->i_uid );
  880.     set_sd_v1_gid(sd_v1, inode->i_gid );
  881.     set_sd_v1_nlink(sd_v1, inode->i_nlink );
  882.     set_sd_v1_size(sd_v1, inode->i_size );
  883.     set_sd_v1_atime(sd_v1, inode->i_atime );
  884.     set_sd_v1_ctime(sd_v1, inode->i_ctime );
  885.     set_sd_v1_mtime(sd_v1, inode->i_mtime );
  886.     if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
  887.         set_sd_v1_rdev(sd_v1, inode->i_rdev );
  888.     else
  889.         set_sd_v1_blocks(sd_v1, inode->i_blocks );
  890.     // Sigh. i_first_direct_byte is back
  891.     set_sd_v1_first_direct_byte(sd_v1, inode->u.reiserfs_i.i_first_direct_byte);
  892. }
  893. /* NOTE, you must prepare the buffer head before sending it here,
  894. ** and then log it after the call
  895. */
  896. static void update_stat_data (struct path * path, struct inode * inode)
  897. {
  898.     struct buffer_head * bh;
  899.     struct item_head * ih;
  900.   
  901.     bh = PATH_PLAST_BUFFER (path);
  902.     ih = PATH_PITEM_HEAD (path);
  903.     if (!is_statdata_le_ih (ih))
  904. reiserfs_panic (inode->i_sb, "vs-13065: update_stat_data: key %k, found item %h",
  905. INODE_PKEY (inode), ih);
  906.   
  907.     if (stat_data_v1 (ih)) {
  908. // path points to old stat data
  909. inode2sd_v1 (B_I_PITEM (bh, ih), inode);
  910.     } else {
  911. inode2sd (B_I_PITEM (bh, ih), inode);
  912.     }
  913.     return;
  914. }
  915. void reiserfs_update_sd (struct reiserfs_transaction_handle *th, 
  916.  struct inode * inode)
  917. {
  918.     struct cpu_key key;
  919.     INITIALIZE_PATH(path);
  920.     struct buffer_head *bh ;
  921.     int fs_gen ;
  922.     struct item_head *ih, tmp_ih ;
  923.     int retval;
  924.     make_cpu_key (&key, inode, SD_OFFSET, TYPE_STAT_DATA, 3);//key type is unimportant
  925.     
  926.     for(;;) {
  927. int pos;
  928. /* look for the object's stat data */
  929. retval = search_item (inode->i_sb, &key, &path);
  930. if (retval == IO_ERROR) {
  931.     reiserfs_warning ("vs-13050: reiserfs_update_sd: "
  932.       "i/o failure occurred trying to update %K stat data",
  933.       &key);
  934.     return;
  935. }
  936. if (retval == ITEM_NOT_FOUND) {
  937.     pos = PATH_LAST_POSITION (&path);
  938.     pathrelse(&path) ;
  939.     if (inode->i_nlink == 0) {
  940. /*printk ("vs-13050: reiserfs_update_sd: i_nlink == 0, stat data not foundn");*/
  941. return;
  942.     }
  943.     reiserfs_warning ("vs-13060: reiserfs_update_sd: "
  944.       "stat data of object %k (nlink == %d) not found (pos %d)n", 
  945.       INODE_PKEY (inode), inode->i_nlink, pos);
  946.     reiserfs_check_path(&path) ;
  947.     return;
  948. }
  949. /* sigh, prepare_for_journal might schedule.  When it schedules the
  950. ** FS might change.  We have to detect that, and loop back to the
  951. ** search if the stat data item has moved
  952. */
  953. bh = get_last_bh(&path) ;
  954. ih = get_ih(&path) ;
  955. copy_item_head (&tmp_ih, ih);
  956. fs_gen = get_generation (inode->i_sb);
  957. reiserfs_prepare_for_journal(inode->i_sb, bh, 1) ;
  958. if (fs_changed (fs_gen, inode->i_sb) && item_moved(&tmp_ih, &path)) {
  959.     reiserfs_restore_prepared_buffer(inode->i_sb, bh) ;
  960.     continue ; /* Stat_data item has been moved after scheduling. */
  961. }
  962. break;
  963.     }
  964.     update_stat_data (&path, inode);
  965.     journal_mark_dirty(th, th->t_super, bh) ; 
  966.     pathrelse (&path);
  967.     return;
  968. }
  969. /* We need to clear inode key in private part of inode to avoid races between
  970.    blocking iput, knfsd and file deletion with creating of safelinks.*/
  971. static void reiserfs_make_bad_inode(struct inode *inode) {
  972.     memset(INODE_PKEY(inode), 0, KEY_SIZE);
  973.     make_bad_inode(inode);
  974. }
  975. void reiserfs_read_inode(struct inode *inode) {
  976.     reiserfs_make_bad_inode(inode) ;
  977. }
  978. /* looks for stat data in the tree, and fills up the fields of in-core
  979.    inode stat data fields */
  980. void reiserfs_read_inode2 (struct inode * inode, void *p)
  981. {
  982.     INITIALIZE_PATH (path_to_sd);
  983.     struct cpu_key key;
  984.     struct reiserfs_iget4_args *args = (struct reiserfs_iget4_args *)p ;
  985.     unsigned long dirino;
  986.     int retval;
  987.     if (!p) {
  988. reiserfs_make_bad_inode(inode) ;
  989. return;
  990.     }
  991.     dirino = args->objectid ;
  992.     /* set version 1, version 2 could be used too, because stat data
  993.        key is the same in both versions */
  994.     key.version = KEY_FORMAT_3_5;
  995.     key.on_disk_key.k_dir_id = dirino;
  996.     key.on_disk_key.k_objectid = inode->i_ino;
  997.     key.on_disk_key.u.k_offset_v1.k_offset = SD_OFFSET;
  998.     key.on_disk_key.u.k_offset_v1.k_uniqueness = SD_UNIQUENESS;
  999.     /* look for the object's stat data */
  1000.     retval = search_item (inode->i_sb, &key, &path_to_sd);
  1001.     if (retval == IO_ERROR) {
  1002. reiserfs_warning ("vs-13070: reiserfs_read_inode2: "
  1003.                     "i/o failure occurred trying to find stat data of %Kn",
  1004.                     &key);
  1005. reiserfs_make_bad_inode(inode) ;
  1006. return;
  1007.     }
  1008.     if (retval != ITEM_FOUND) {
  1009. /* a stale NFS handle can trigger this without it being an error */
  1010. pathrelse (&path_to_sd);
  1011. reiserfs_make_bad_inode(inode) ;
  1012. inode->i_nlink = 0;
  1013. return;
  1014.     }
  1015.     init_inode (inode, &path_to_sd);
  1016.    
  1017.     /* It is possible that knfsd is trying to access inode of a file
  1018.        that is being removed from the disk by some other thread. As we
  1019.        update sd on unlink all that is required is to check for nlink
  1020.        here. This bug was first found by Sizif when debugging
  1021.        SquidNG/Butterfly, forgotten, and found again after Philippe
  1022.        Gramoulle <philippe.gramoulle@mmania.com> reproduced it. 
  1023.        More logical fix would require changes in fs/inode.c:iput() to
  1024.        remove inode from hash-table _after_ fs cleaned disk stuff up and
  1025.        in iget() to return NULL if I_FREEING inode is found in
  1026.        hash-table. */
  1027.     /* Currently there is one place where it's ok to meet inode with
  1028.        nlink==0: processing of open-unlinked and half-truncated files
  1029.        during mount (fs/reiserfs/super.c:finish_unfinished()). */
  1030.     if( ( inode -> i_nlink == 0 ) && 
  1031. ! inode -> i_sb -> u.reiserfs_sb.s_is_unlinked_ok ) {
  1032.     reiserfs_warning( "vs-13075: reiserfs_read_inode2: "
  1033.       "dead inode read from disk %K. "
  1034.       "This is likely to be race with knfsd. Ignoren", 
  1035.       &key );
  1036.     reiserfs_make_bad_inode( inode );
  1037.     }
  1038.     reiserfs_check_path(&path_to_sd) ; /* init inode should be relsing */
  1039. }
  1040. /**
  1041.  * reiserfs_find_actor() - "find actor" reiserfs supplies to iget4().
  1042.  *
  1043.  * @inode:    inode from hash table to check
  1044.  * @inode_no: inode number we are looking for
  1045.  * @opaque:   "cookie" passed to iget4(). This is &reiserfs_iget4_args.
  1046.  *
  1047.  * This function is called by iget4() to distinguish reiserfs inodes
  1048.  * having the same inode numbers. Such inodes can only exist due to some
  1049.  * error condition. One of them should be bad. Inodes with identical
  1050.  * inode numbers (objectids) are distinguished by parent directory ids.
  1051.  *
  1052.  */
  1053. static int reiserfs_find_actor( struct inode *inode, 
  1054. unsigned long inode_no, void *opaque )
  1055. {
  1056.     struct reiserfs_iget4_args *args;
  1057.     args = opaque;
  1058.     /* args is already in CPU order */
  1059.     return le32_to_cpu(INODE_PKEY(inode)->k_dir_id) == args -> objectid;
  1060. }
  1061. struct inode * reiserfs_iget (struct super_block * s, const struct cpu_key * key)
  1062. {
  1063.     struct inode * inode;
  1064.     struct reiserfs_iget4_args args ;
  1065.     args.objectid = key->on_disk_key.k_dir_id ;
  1066.     inode = iget4 (s, key->on_disk_key.k_objectid, 
  1067.    reiserfs_find_actor, (void *)(&args));
  1068.     if (!inode) 
  1069. return ERR_PTR(-ENOMEM) ;
  1070.     if (comp_short_keys (INODE_PKEY (inode), key) || is_bad_inode (inode)) {
  1071. /* either due to i/o error or a stale NFS handle */
  1072. iput (inode);
  1073. inode = 0;
  1074.     }
  1075.     return inode;
  1076. }
  1077. struct dentry *reiserfs_fh_to_dentry(struct super_block *sb, __u32 *data,
  1078.      int len, int fhtype, int parent) {
  1079.     struct cpu_key key ;
  1080.     struct inode *inode = NULL ;
  1081.     struct list_head *lp;
  1082.     struct dentry *result;
  1083.     /* fhtype happens to reflect the number of u32s encoded.
  1084.      * due to a bug in earlier code, fhtype might indicate there
  1085.      * are more u32s then actually fitted.
  1086.      * so if fhtype seems to be more than len, reduce fhtype.
  1087.      * Valid types are:
  1088.      *   2 - objectid + dir_id - legacy support
  1089.      *   3 - objectid + dir_id + generation
  1090.      *   4 - objectid + dir_id + objectid and dirid of parent - legacy
  1091.      *   5 - objectid + dir_id + generation + objectid and dirid of parent
  1092.      *   6 - as above plus generation of directory
  1093.      * 6 does not fit in NFSv2 handles
  1094.      */
  1095.     if (fhtype > len) {
  1096.     if (fhtype != 6 || len != 5)
  1097.     printk(KERN_WARNING "nfsd/reiserfs, fhtype=%d, len=%d - oddn",
  1098.    fhtype, len);
  1099.     fhtype = 5;
  1100.     }
  1101.     if (fhtype < 2 || (parent && fhtype < 4)) 
  1102. goto out ;
  1103.     if (! parent) {
  1104.     /* this works for handles from old kernels because the default
  1105.     ** reiserfs generation number is the packing locality.
  1106.     */
  1107.     key.on_disk_key.k_objectid = data[0] ;
  1108.     key.on_disk_key.k_dir_id = data[1] ;
  1109.     inode = reiserfs_iget(sb, &key) ;
  1110.     if (inode && !IS_ERR(inode) && (fhtype == 3 || fhtype >= 5) &&
  1111. data[2] != inode->i_generation) {
  1112.     iput(inode) ;
  1113.     inode = NULL ;
  1114.     }
  1115.     } else {
  1116.     key.on_disk_key.k_objectid = data[fhtype>=5?3:2] ;
  1117.     key.on_disk_key.k_dir_id = data[fhtype>=5?4:3] ;
  1118.     inode = reiserfs_iget(sb, &key) ;
  1119.     if (inode && !IS_ERR(inode) && fhtype == 6 &&
  1120. data[5] != inode->i_generation) {
  1121.     iput(inode) ;
  1122.     inode = NULL ;
  1123.     }
  1124.     }
  1125. out:
  1126.     if (IS_ERR(inode))
  1127. return ERR_PTR(PTR_ERR(inode));
  1128.     if (!inode)
  1129.         return ERR_PTR(-ESTALE) ;
  1130.     /* now to find a dentry.
  1131.      * If possible, get a well-connected one
  1132.      */
  1133.     spin_lock(&dcache_lock);
  1134.     for (lp = inode->i_dentry.next; lp != &inode->i_dentry ; lp=lp->next) {
  1135.     result = list_entry(lp,struct dentry, d_alias);
  1136.     if (! (result->d_flags & DCACHE_NFSD_DISCONNECTED)) {
  1137.     dget_locked(result);
  1138.     result->d_vfs_flags |= DCACHE_REFERENCED;
  1139.     spin_unlock(&dcache_lock);
  1140.     iput(inode);
  1141.     return result;
  1142.     }
  1143.     }
  1144.     spin_unlock(&dcache_lock);
  1145.     result = d_alloc_root(inode);
  1146.     if (result == NULL) {
  1147.     iput(inode);
  1148.     return ERR_PTR(-ENOMEM);
  1149.     }
  1150.     result->d_flags |= DCACHE_NFSD_DISCONNECTED;
  1151.     return result;
  1152. }
  1153. int reiserfs_dentry_to_fh(struct dentry *dentry, __u32 *data, int *lenp, int need_parent) {
  1154.     struct inode *inode = dentry->d_inode ;
  1155.     int maxlen = *lenp;
  1156.     
  1157.     if (maxlen < 3)
  1158.         return 255 ;
  1159.     data[0] = inode->i_ino ;
  1160.     data[1] = le32_to_cpu(INODE_PKEY (inode)->k_dir_id) ;
  1161.     data[2] = inode->i_generation ;
  1162.     *lenp = 3 ;
  1163.     /* no room for directory info? return what we've stored so far */
  1164.     if (maxlen < 5 || ! need_parent)
  1165.         return 3 ;
  1166.     inode = dentry->d_parent->d_inode ;
  1167.     data[3] = inode->i_ino ;
  1168.     data[4] = le32_to_cpu(INODE_PKEY (inode)->k_dir_id) ;
  1169.     *lenp = 5 ;
  1170.     if (maxlen < 6)
  1171.     return 5 ;
  1172.     data[5] = inode->i_generation ;
  1173.     *lenp = 6 ;
  1174.     return 6 ;
  1175. }
  1176. /* looks for stat data, then copies fields to it, marks the buffer
  1177.    containing stat data as dirty */
  1178. /* reiserfs inodes are never really dirty, since the dirty inode call
  1179. ** always logs them.  This call allows the VFS inode marking routines
  1180. ** to properly mark inodes for datasync and such, but only actually
  1181. ** does something when called for a synchronous update.
  1182. */
  1183. void reiserfs_write_inode (struct inode * inode, int do_sync) {
  1184.     struct reiserfs_transaction_handle th ;
  1185.     int jbegin_count = 1 ;
  1186.     if (inode->i_sb->s_flags & MS_RDONLY) {
  1187.         reiserfs_warning("clm-6005: writing inode %lu on readonly FSn", 
  1188.                   inode->i_ino) ;
  1189.         return ;
  1190.     }
  1191.     /* memory pressure can sometimes initiate write_inode calls with sync == 1,
  1192.     ** these cases are just when the system needs ram, not when the 
  1193.     ** inode needs to reach disk for safety, and they can safely be
  1194.     ** ignored because the altered inode has already been logged.
  1195.     */
  1196.     if (do_sync && !(current->flags & PF_MEMALLOC)) {
  1197. lock_kernel() ;
  1198. journal_begin(&th, inode->i_sb, jbegin_count) ;
  1199. reiserfs_update_sd (&th, inode);
  1200. journal_end_sync(&th, inode->i_sb, jbegin_count) ;
  1201. unlock_kernel() ;
  1202.     }
  1203. }
  1204. /* FIXME: no need any more. right? */
  1205. int reiserfs_sync_inode (struct reiserfs_transaction_handle *th, struct inode * inode)
  1206. {
  1207.   int err = 0;
  1208.   reiserfs_update_sd (th, inode);
  1209.   return err;
  1210. }
  1211. /* stat data of new object is inserted already, this inserts the item
  1212.    containing "." and ".." entries */
  1213. static int reiserfs_new_directory (struct reiserfs_transaction_handle *th, 
  1214.    struct item_head * ih, struct path * path,
  1215.    const struct inode * dir)
  1216. {
  1217.     struct super_block * sb = th->t_super;
  1218.     char empty_dir [EMPTY_DIR_SIZE];
  1219.     char * body = empty_dir;
  1220.     struct cpu_key key;
  1221.     int retval;
  1222.     
  1223.     _make_cpu_key (&key, KEY_FORMAT_3_5, le32_to_cpu (ih->ih_key.k_dir_id),
  1224.    le32_to_cpu (ih->ih_key.k_objectid), DOT_OFFSET, TYPE_DIRENTRY, 3/*key length*/);
  1225.     
  1226.     /* compose item head for new item. Directories consist of items of
  1227.        old type (ITEM_VERSION_1). Do not set key (second arg is 0), it
  1228.        is done by reiserfs_new_inode */
  1229.     if (old_format_only (sb)) {
  1230. make_le_item_head (ih, 0, KEY_FORMAT_3_5, DOT_OFFSET, TYPE_DIRENTRY, EMPTY_DIR_SIZE_V1, 2);
  1231. make_empty_dir_item_v1 (body, ih->ih_key.k_dir_id, ih->ih_key.k_objectid,
  1232. INODE_PKEY (dir)->k_dir_id, 
  1233. INODE_PKEY (dir)->k_objectid );
  1234.     } else {
  1235. make_le_item_head (ih, 0, KEY_FORMAT_3_5, DOT_OFFSET, TYPE_DIRENTRY, EMPTY_DIR_SIZE, 2);
  1236. make_empty_dir_item (body, ih->ih_key.k_dir_id, ih->ih_key.k_objectid,
  1237.     INODE_PKEY (dir)->k_dir_id, 
  1238.     INODE_PKEY (dir)->k_objectid );
  1239.     }
  1240.     
  1241.     /* look for place in the tree for new item */
  1242.     retval = search_item (sb, &key, path);
  1243.     if (retval == IO_ERROR) {
  1244. reiserfs_warning ("vs-13080: reiserfs_new_directory: "
  1245.   "i/o failure occurred creating new directoryn");
  1246. return -EIO;
  1247.     }
  1248.     if (retval == ITEM_FOUND) {
  1249. pathrelse (path);
  1250. reiserfs_warning ("vs-13070: reiserfs_new_directory: "
  1251.   "object with this key exists (%k)", &(ih->ih_key));
  1252. return -EEXIST;
  1253.     }
  1254.     /* insert item, that is empty directory item */
  1255.     return reiserfs_insert_item (th, path, &key, ih, body);
  1256. }
  1257. /* stat data of object has been inserted, this inserts the item
  1258.    containing the body of symlink */
  1259. static int reiserfs_new_symlink (struct reiserfs_transaction_handle *th, 
  1260.  struct item_head * ih,
  1261.  struct path * path, const char * symname, int item_len)
  1262. {
  1263.     struct super_block * sb = th->t_super;
  1264.     struct cpu_key key;
  1265.     int retval;
  1266.     _make_cpu_key (&key, KEY_FORMAT_3_5, 
  1267.    le32_to_cpu (ih->ih_key.k_dir_id), 
  1268.    le32_to_cpu (ih->ih_key.k_objectid),
  1269.    1, TYPE_DIRECT, 3/*key length*/);
  1270.     make_le_item_head (ih, 0, KEY_FORMAT_3_5, 1, TYPE_DIRECT, item_len, 0/*free_space*/);
  1271.     /* look for place in the tree for new item */
  1272.     retval = search_item (sb, &key, path);
  1273.     if (retval == IO_ERROR) {
  1274. reiserfs_warning ("vs-13080: reiserfs_new_symlinik: "
  1275.   "i/o failure occurred creating new symlinkn");
  1276. return -EIO;
  1277.     }
  1278.     if (retval == ITEM_FOUND) {
  1279. pathrelse (path);
  1280. reiserfs_warning ("vs-13080: reiserfs_new_symlink: "
  1281.   "object with this key exists (%k)", &(ih->ih_key));
  1282. return -EEXIST;
  1283.     }
  1284.     /* insert item, that is body of symlink */
  1285.     return reiserfs_insert_item (th, path, &key, ih, symname);
  1286. }
  1287. /* inserts the stat data into the tree, and then calls
  1288.    reiserfs_new_directory (to insert ".", ".." item if new object is
  1289.    directory) or reiserfs_new_symlink (to insert symlink body if new
  1290.    object is symlink) or nothing (if new object is regular file) */
  1291. struct inode * reiserfs_new_inode (struct reiserfs_transaction_handle *th,
  1292.    struct inode * dir, int mode, 
  1293.    const char * symname, 
  1294.    int i_size, /* 0 for regular, EMTRY_DIR_SIZE for dirs,
  1295.   strlen (symname) for symlinks)*/
  1296.    struct dentry *dentry, struct inode *inode, int * err)
  1297. {
  1298.     struct super_block * sb;
  1299.     INITIALIZE_PATH (path_to_key);
  1300.     struct cpu_key key;
  1301.     struct item_head ih;
  1302.     struct stat_data sd;
  1303.     int retval;
  1304.   
  1305.     if (!dir || !dir->i_nlink) {
  1306. *err = -EPERM;
  1307. iput(inode) ;
  1308. return NULL;
  1309.     }
  1310.     sb = dir->i_sb;
  1311.     inode -> u.reiserfs_i.i_attrs = 
  1312.     dir -> u.reiserfs_i.i_attrs & REISERFS_INHERIT_MASK;
  1313.     sd_attrs_to_i_attrs( inode -> u.reiserfs_i.i_attrs, inode );
  1314.     /* item head of new item */
  1315.     ih.ih_key.k_dir_id = INODE_PKEY (dir)->k_objectid;
  1316.     ih.ih_key.k_objectid = cpu_to_le32 (reiserfs_get_unused_objectid (th));
  1317.     if (!ih.ih_key.k_objectid) {
  1318. iput(inode) ;
  1319. *err = -ENOMEM;
  1320. return NULL;
  1321.     }
  1322.     if (old_format_only (sb))
  1323.       /* not a perfect generation count, as object ids can be reused, but this
  1324.       ** is as good as reiserfs can do right now.
  1325.       ** note that the private part of inode isn't filled in yet, we have
  1326.       ** to use the directory.
  1327.       */
  1328.       inode->i_generation = le32_to_cpu (INODE_PKEY (dir)->k_objectid);
  1329.     else
  1330. #if defined( USE_INODE_GENERATION_COUNTER )
  1331.       inode->i_generation = 
  1332. le32_to_cpu( sb -> u.reiserfs_sb.s_rs -> s_inode_generation );
  1333. #else
  1334.       inode->i_generation = ++event;
  1335. #endif
  1336.     if (old_format_only (sb))
  1337. make_le_item_head (&ih, 0, KEY_FORMAT_3_5, SD_OFFSET, TYPE_STAT_DATA, SD_V1_SIZE, MAX_US_INT);
  1338.     else
  1339. make_le_item_head (&ih, 0, KEY_FORMAT_3_6, SD_OFFSET, TYPE_STAT_DATA, SD_SIZE, MAX_US_INT);
  1340.     /* key to search for correct place for new stat data */
  1341.     _make_cpu_key (&key, KEY_FORMAT_3_6, le32_to_cpu (ih.ih_key.k_dir_id),
  1342.    le32_to_cpu (ih.ih_key.k_objectid), SD_OFFSET, TYPE_STAT_DATA, 3/*key length*/);
  1343.     /* find proper place for inserting of stat data */
  1344.     retval = search_item (sb, &key, &path_to_key);
  1345.     if (retval == IO_ERROR) {
  1346. iput (inode);
  1347. *err = -EIO;
  1348. return NULL;
  1349.     }
  1350.     if (retval == ITEM_FOUND) {
  1351. pathrelse (&path_to_key);
  1352. iput (inode);
  1353. *err = -EEXIST;
  1354. return NULL;
  1355.     }
  1356.     /* fill stat data */
  1357.     inode->i_mode = mode;
  1358.     inode->i_nlink = (S_ISDIR (mode) ? 2 : 1);
  1359.     inode->i_uid = current->fsuid;
  1360.     if (dir->i_mode & S_ISGID) {
  1361. inode->i_gid = dir->i_gid;
  1362. if (S_ISDIR(mode))
  1363.     inode->i_mode |= S_ISGID;
  1364.     } else
  1365. inode->i_gid = current->fsgid;
  1366.     /* symlink cannot be immutable or append only, right? */
  1367.     if( S_ISLNK( inode -> i_mode ) )
  1368.     inode -> i_flags &= ~ ( S_IMMUTABLE | S_APPEND );
  1369.     inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  1370.     inode->i_size = i_size;
  1371.     inode->i_blocks = (inode->i_size + 511) >> 9;
  1372.     inode->u.reiserfs_i.i_first_direct_byte = S_ISLNK(mode) ? 1 : 
  1373.       U32_MAX/*NO_BYTES_IN_DIRECT_ITEM*/;
  1374.     INIT_LIST_HEAD(&inode->u.reiserfs_i.i_prealloc_list) ;
  1375.     if (old_format_only (sb)) {
  1376. if (inode->i_uid & ~0xffff || inode->i_gid & ~0xffff) {
  1377.     pathrelse (&path_to_key);
  1378.     /* i_uid or i_gid is too big to be stored in stat data v3.5 */
  1379.     iput (inode);
  1380.     *err = -EINVAL;
  1381.     return NULL;
  1382. }
  1383. inode2sd_v1 (&sd, inode);
  1384.     } else
  1385. inode2sd (&sd, inode);
  1386.     // these do not go to on-disk stat data
  1387.     inode->i_ino = le32_to_cpu (ih.ih_key.k_objectid);
  1388.     inode->i_blksize = PAGE_SIZE;
  1389.     inode->i_dev = sb->s_dev;
  1390.   
  1391.     // store in in-core inode the key of stat data and version all
  1392.     // object items will have (directory items will have old offset
  1393.     // format, other new objects will consist of new items)
  1394.     memcpy (INODE_PKEY (inode), &(ih.ih_key), KEY_SIZE);
  1395.     if (old_format_only (sb) || S_ISDIR(mode) || S_ISLNK(mode))
  1396.         set_inode_item_key_version (inode, KEY_FORMAT_3_5);
  1397.     else
  1398.         set_inode_item_key_version (inode, KEY_FORMAT_3_6);
  1399.     if (old_format_only (sb))
  1400. set_inode_sd_version (inode, STAT_DATA_V1);
  1401.     else
  1402. set_inode_sd_version (inode, STAT_DATA_V2);
  1403.     
  1404.     /* insert the stat data into the tree */
  1405. #ifdef DISPLACE_NEW_PACKING_LOCALITIES
  1406.     if (dir->u.reiserfs_i.new_packing_locality)
  1407. th->displace_new_blocks = 1;
  1408. #endif
  1409.     retval = reiserfs_insert_item (th, &path_to_key, &key, &ih, (char *)(&sd));
  1410.     if (retval) {
  1411. iput (inode);
  1412. *err = retval;
  1413. reiserfs_check_path(&path_to_key) ;
  1414. return NULL;
  1415.     }
  1416. #ifdef DISPLACE_NEW_PACKING_LOCALITIES
  1417.     if (!th->displace_new_blocks)
  1418. dir->u.reiserfs_i.new_packing_locality = 0;
  1419. #endif
  1420.     if (S_ISDIR(mode)) {
  1421. /* insert item with "." and ".." */
  1422. retval = reiserfs_new_directory (th, &ih, &path_to_key, dir);
  1423.     }
  1424.     if (S_ISLNK(mode)) {
  1425. /* insert body of symlink */
  1426. if (!old_format_only (sb))
  1427.     i_size = ROUND_UP(i_size);
  1428. retval = reiserfs_new_symlink (th, &ih, &path_to_key, symname, i_size);
  1429.     }
  1430.     if (retval) {
  1431.       inode->i_nlink = 0;
  1432. iput (inode);
  1433. *err = retval;
  1434. reiserfs_check_path(&path_to_key) ;
  1435. return NULL;
  1436.     }
  1437.     insert_inode_hash (inode);
  1438.     // we do not mark inode dirty: on disk content matches to the
  1439.     // in-core one
  1440.     reiserfs_check_path(&path_to_key) ;
  1441.     return inode;
  1442. }
  1443. /*
  1444. ** finds the tail page in the page cache,
  1445. ** reads the last block in.
  1446. **
  1447. ** On success, page_result is set to a locked, pinned page, and bh_result
  1448. ** is set to an up to date buffer for the last block in the file.  returns 0.
  1449. **
  1450. ** tail conversion is not done, so bh_result might not be valid for writing
  1451. ** check buffer_mapped(bh_result) and bh_result->b_blocknr != 0 before
  1452. ** trying to write the block.
  1453. **
  1454. ** on failure, nonzero is returned, page_result and bh_result are untouched.
  1455. */
  1456. static int grab_tail_page(struct inode *p_s_inode, 
  1457.   struct page **page_result, 
  1458.   struct buffer_head **bh_result) {
  1459.     /* we want the page with the last byte in the file,
  1460.     ** not the page that will hold the next byte for appending
  1461.     */
  1462.     unsigned long index = (p_s_inode->i_size-1) >> PAGE_CACHE_SHIFT ;
  1463.     unsigned long pos = 0 ;
  1464.     unsigned long start = 0 ;
  1465.     unsigned long blocksize = p_s_inode->i_sb->s_blocksize ;
  1466.     unsigned long offset = (p_s_inode->i_size) & (PAGE_CACHE_SIZE - 1) ;
  1467.     struct buffer_head *bh ;
  1468.     struct buffer_head *head ;
  1469.     struct page * page ;
  1470.     int error ;
  1471.     
  1472.     /* we know that we are only called with inode->i_size > 0.
  1473.     ** we also know that a file tail can never be as big as a block
  1474.     ** If i_size % blocksize == 0, our file is currently block aligned
  1475.     ** and it won't need converting or zeroing after a truncate.
  1476.     */
  1477.     if ((offset & (blocksize - 1)) == 0) {
  1478.         return -ENOENT ;
  1479.     }
  1480.     page = grab_cache_page(p_s_inode->i_mapping, index) ;
  1481.     error = -ENOMEM ;
  1482.     if (!page) {
  1483.         goto out ;
  1484.     }
  1485.     /* start within the page of the last block in the file */
  1486.     start = (offset / blocksize) * blocksize ;
  1487.     error = block_prepare_write(page, start, offset, 
  1488. reiserfs_get_block_create_0) ;
  1489.     if (error)
  1490. goto unlock ;
  1491.     kunmap(page) ; /* mapped by block_prepare_write */
  1492.     head = page->buffers ;      
  1493.     bh = head;
  1494.     do {
  1495. if (pos >= start) {
  1496.     break ;
  1497. }
  1498. bh = bh->b_this_page ;
  1499. pos += blocksize ;
  1500.     } while(bh != head) ;
  1501.     if (!buffer_uptodate(bh)) {
  1502. /* note, this should never happen, prepare_write should
  1503. ** be taking care of this for us.  If the buffer isn't up to date,
  1504. ** I've screwed up the code to find the buffer, or the code to
  1505. ** call prepare_write
  1506. */
  1507. reiserfs_warning("clm-6000: error reading block %lu on dev %sn",
  1508.                   bh->b_blocknr, kdevname(bh->b_dev)) ;
  1509. error = -EIO ;
  1510. goto unlock ;
  1511.     }
  1512.     *bh_result = bh ;
  1513.     *page_result = page ;
  1514. out:
  1515.     return error ;
  1516. unlock:
  1517.     UnlockPage(page) ;
  1518.     page_cache_release(page) ;
  1519.     return error ;
  1520. }
  1521. /*
  1522. ** vfs version of truncate file.  Must NOT be called with
  1523. ** a transaction already started.
  1524. **
  1525. ** some code taken from block_truncate_page
  1526. */
  1527. void reiserfs_truncate_file(struct inode *p_s_inode, int update_timestamps) {
  1528.     struct reiserfs_transaction_handle th ;
  1529.     int windex ;
  1530.     /* we want the offset for the first byte after the end of the file */
  1531.     unsigned long offset = p_s_inode->i_size & (PAGE_CACHE_SIZE - 1) ;
  1532.     unsigned blocksize = p_s_inode->i_sb->s_blocksize ;
  1533.     unsigned length ;
  1534.     struct page *page = NULL ;
  1535.     int error ;
  1536.     struct buffer_head *bh = NULL ;
  1537.     if (p_s_inode->i_size > 0) {
  1538.         if ((error = grab_tail_page(p_s_inode, &page, &bh))) {
  1539.     // -ENOENT means we truncated past the end of the file, 
  1540.     // and get_block_create_0 could not find a block to read in,
  1541.     // which is ok.
  1542.     if (error != -ENOENT)
  1543.         reiserfs_warning("clm-6001: grab_tail_page failed %dn", error);
  1544.     page = NULL ;
  1545.     bh = NULL ;
  1546. }
  1547.     }
  1548.     /* so, if page != NULL, we have a buffer head for the offset at 
  1549.     ** the end of the file. if the bh is mapped, and bh->b_blocknr != 0, 
  1550.     ** then we have an unformatted node.  Otherwise, we have a direct item, 
  1551.     ** and no zeroing is required on disk.  We zero after the truncate, 
  1552.     ** because the truncate might pack the item anyway 
  1553.     ** (it will unmap bh if it packs).
  1554.     */
  1555.     /* it is enough to reserve space in transaction for 2 balancings:
  1556.        one for "save" link adding and another for the first
  1557.        cut_from_item. 1 is for update_sd */
  1558.     journal_begin(&th, p_s_inode->i_sb,  JOURNAL_PER_BALANCE_CNT * 2 + 1 ) ;
  1559.     reiserfs_update_inode_transaction(p_s_inode) ;
  1560.     windex = push_journal_writer("reiserfs_vfs_truncate_file") ;
  1561.     if (update_timestamps)
  1562.     /* we are doing real truncate: if the system crashes before the last
  1563.        transaction of truncating gets committed - on reboot the file
  1564.        either appears truncated properly or not truncated at all */
  1565. add_save_link (&th, p_s_inode, 1);
  1566.     reiserfs_do_truncate (&th, p_s_inode, page, update_timestamps) ;
  1567.     pop_journal_writer(windex) ;
  1568.     journal_end(&th, p_s_inode->i_sb,  JOURNAL_PER_BALANCE_CNT * 2 + 1 ) ;
  1569.     if (update_timestamps)
  1570. remove_save_link (p_s_inode, 1/* truncate */);
  1571.     if (page) {
  1572.         length = offset & (blocksize - 1) ;
  1573. /* if we are not on a block boundary */
  1574. if (length) {
  1575.     length = blocksize - length ;
  1576.     memset((char *)kmap(page) + offset, 0, length) ;   
  1577.     flush_dcache_page(page) ;
  1578.     kunmap(page) ;
  1579.     if (buffer_mapped(bh) && bh->b_blocknr != 0) {
  1580.         mark_buffer_dirty(bh) ;
  1581.     }
  1582. }
  1583. UnlockPage(page) ;
  1584. page_cache_release(page) ;
  1585.     }
  1586.     return ;
  1587. }
  1588. static int map_block_for_writepage(struct inode *inode, 
  1589.        struct buffer_head *bh_result, 
  1590.                                unsigned long block) {
  1591.     struct reiserfs_transaction_handle th ;
  1592.     int fs_gen ;
  1593.     struct item_head tmp_ih ;
  1594.     struct item_head *ih ;
  1595.     struct buffer_head *bh ;
  1596.     __u32 *item ;
  1597.     struct cpu_key key ;
  1598.     INITIALIZE_PATH(path) ;
  1599.     int pos_in_item ;
  1600.     int jbegin_count = JOURNAL_PER_BALANCE_CNT ;
  1601.     loff_t byte_offset = (block << inode->i_sb->s_blocksize_bits) + 1 ;
  1602.     int retval ;
  1603.     int use_get_block = 0 ;
  1604.     int bytes_copied = 0 ;
  1605.     int copy_size ;
  1606.     kmap(bh_result->b_page) ;
  1607. start_over:
  1608.     lock_kernel() ;
  1609.     journal_begin(&th, inode->i_sb, jbegin_count) ;
  1610.     reiserfs_update_inode_transaction(inode) ;
  1611.     make_cpu_key(&key, inode, byte_offset, TYPE_ANY, 3) ;
  1612. research:
  1613.     retval = search_for_position_by_key(inode->i_sb, &key, &path) ;
  1614.     if (retval != POSITION_FOUND) {
  1615.         use_get_block = 1;
  1616. goto out ;
  1617.     } 
  1618.     bh = get_last_bh(&path) ;
  1619.     ih = get_ih(&path) ;
  1620.     item = get_item(&path) ;
  1621.     pos_in_item = path.pos_in_item ;
  1622.     /* we've found an unformatted node */
  1623.     if (indirect_item_found(retval, ih)) {
  1624. if (bytes_copied > 0) {
  1625.     reiserfs_warning("clm-6002: bytes_copied %dn", bytes_copied) ;
  1626. }
  1627.         if (!get_block_num(item, pos_in_item)) {
  1628.     /* crap, we are writing to a hole */
  1629.     use_get_block = 1;
  1630.     goto out ;
  1631. }
  1632. set_block_dev_mapped(bh_result, get_block_num(item,pos_in_item),inode);
  1633.         mark_buffer_uptodate(bh_result, 1);
  1634.     } else if (is_direct_le_ih(ih)) {
  1635.         char *p ; 
  1636.         p = page_address(bh_result->b_page) ;
  1637.         p += (byte_offset -1) & (PAGE_CACHE_SIZE - 1) ;
  1638.         copy_size = ih_item_len(ih) - pos_in_item;
  1639. fs_gen = get_generation(inode->i_sb) ;
  1640. copy_item_head(&tmp_ih, ih) ;
  1641. reiserfs_prepare_for_journal(inode->i_sb, bh, 1) ;
  1642. if (fs_changed (fs_gen, inode->i_sb) && item_moved (&tmp_ih, &path)) {
  1643.     reiserfs_restore_prepared_buffer(inode->i_sb, bh) ;
  1644.     goto research;
  1645. }
  1646. memcpy( B_I_PITEM(bh, ih) + pos_in_item, p + bytes_copied, copy_size) ;
  1647. journal_mark_dirty(&th, inode->i_sb, bh) ;
  1648. bytes_copied += copy_size ;
  1649. set_block_dev_mapped(bh_result, 0, inode);
  1650.         mark_buffer_uptodate(bh_result, 1);
  1651. /* are there still bytes left? */
  1652.         if (bytes_copied < bh_result->b_size && 
  1653.     (byte_offset + bytes_copied) < inode->i_size) {
  1654.     set_cpu_key_k_offset(&key, cpu_key_k_offset(&key) + copy_size) ;
  1655.     goto research ;
  1656. }
  1657.     } else {
  1658.         reiserfs_warning("clm-6003: bad item inode %lu, device %sn", inode->i_ino, kdevname(inode->i_sb->s_dev)) ;
  1659.         retval = -EIO ;
  1660. goto out ;
  1661.     }
  1662.     retval = 0 ;
  1663.     
  1664. out:
  1665.     pathrelse(&path) ;
  1666.     journal_end(&th, inode->i_sb, jbegin_count) ;
  1667.     unlock_kernel() ;
  1668.     /* this is where we fill in holes in the file. */
  1669.     if (use_get_block) {
  1670. retval = reiserfs_get_block(inode, block, bh_result, 
  1671.                             GET_BLOCK_CREATE | GET_BLOCK_NO_ISEM) ;
  1672. if (!retval) {
  1673.     if (!buffer_mapped(bh_result) || bh_result->b_blocknr == 0) {
  1674.         /* get_block failed to find a mapped unformatted node. */
  1675. use_get_block = 0 ;
  1676. goto start_over ;
  1677.     }
  1678. }
  1679.     }
  1680.     kunmap(bh_result->b_page) ;
  1681.     return retval ;
  1682. }
  1683. /* helper func to get a buffer head ready for writepage to send to
  1684. ** ll_rw_block
  1685. */
  1686. static inline void submit_bh_for_writepage(struct buffer_head **bhp, int nr) {
  1687.     struct buffer_head *bh ;
  1688.     int i;
  1689.     /* lock them all first so the end_io handler doesn't unlock the page
  1690.     ** too early
  1691.     */
  1692.     for(i = 0 ; i < nr ; i++) {
  1693.         bh = bhp[i] ;
  1694. lock_buffer(bh) ;
  1695. set_buffer_async_io(bh) ;
  1696.     }
  1697.     for(i = 0 ; i < nr ; i++) {
  1698. /* submit_bh doesn't care if the buffer is dirty, but nobody
  1699. ** later on in the call chain will be cleaning it.  So, we
  1700. ** clean the buffer here, it still gets written either way.
  1701. */
  1702.         bh = bhp[i] ;
  1703. clear_bit(BH_Dirty, &bh->b_state) ;
  1704. set_bit(BH_Uptodate, &bh->b_state) ;
  1705. submit_bh(WRITE, bh) ;
  1706.     }
  1707. }
  1708. static int reiserfs_write_full_page(struct page *page) {
  1709.     struct inode *inode = page->mapping->host ;
  1710.     unsigned long end_index = inode->i_size >> PAGE_CACHE_SHIFT ;
  1711.     unsigned last_offset = PAGE_CACHE_SIZE;
  1712.     int error = 0;
  1713.     unsigned long block ;
  1714.     unsigned cur_offset = 0 ;
  1715.     struct buffer_head *head, *bh ;
  1716.     int partial = 0 ;
  1717.     struct buffer_head *arr[PAGE_CACHE_SIZE/512] ;
  1718.     int nr = 0 ;
  1719.     if (!page->buffers) {
  1720.         block_prepare_write(page, 0, 0, NULL) ;
  1721. kunmap(page) ;
  1722.     }
  1723.     /* last page in the file, zero out any contents past the
  1724.     ** last byte in the file
  1725.     */
  1726.     if (page->index >= end_index) {
  1727.         last_offset = inode->i_size & (PAGE_CACHE_SIZE - 1) ;
  1728. /* no file contents in this page */
  1729. if (page->index >= end_index + 1 || !last_offset) {
  1730.     error =  -EIO ;
  1731.     goto fail ;
  1732. }
  1733. memset((char *)kmap(page)+last_offset, 0, PAGE_CACHE_SIZE-last_offset) ;
  1734. flush_dcache_page(page) ;
  1735. kunmap(page) ;
  1736.     }
  1737.     head = page->buffers ;
  1738.     bh = head ;
  1739.     block = page->index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits) ;
  1740.     do {
  1741. /* if this offset in the page is outside the file */
  1742. if (cur_offset >= last_offset) {
  1743.     if (!buffer_uptodate(bh))
  1744.         partial = 1 ;
  1745. } else {
  1746.     /* fast path, buffer mapped to an unformatted node */
  1747.     if (buffer_mapped(bh) && bh->b_blocknr != 0) {
  1748. arr[nr++] = bh ;
  1749.     } else {
  1750. /* buffer not mapped yet, or points to a direct item.
  1751. ** search and dirty or log
  1752. */
  1753. if ((error = map_block_for_writepage(inode, bh, block))) {
  1754.     goto fail ;
  1755. }
  1756. /* map_block_for_writepage either found an unformatted node
  1757. ** and mapped it for us, or it found a direct item
  1758. ** and logged the changes.  
  1759. */
  1760. if (buffer_mapped(bh) && bh->b_blocknr != 0) {
  1761.     arr[nr++] = bh ;
  1762. }
  1763.     }
  1764. }
  1765.         bh = bh->b_this_page ;
  1766. cur_offset += bh->b_size ;
  1767. block++ ;
  1768.     } while(bh != head) ;
  1769.     /* if this page only had a direct item, it is very possible for
  1770.     ** nr == 0 without there being any kind of error.
  1771.     */
  1772.     if (nr) {
  1773.         submit_bh_for_writepage(arr, nr) ;
  1774.     } else {
  1775.         UnlockPage(page) ;
  1776.     }
  1777.     if (!partial)
  1778.         SetPageUptodate(page) ;
  1779.     return 0 ;
  1780. fail:
  1781.     if (nr) {
  1782.         submit_bh_for_writepage(arr, nr) ;
  1783.     } else {
  1784.         UnlockPage(page) ;
  1785.     }
  1786.     ClearPageUptodate(page) ;
  1787.     return error ;
  1788. }
  1789. static int reiserfs_readpage (struct file *f, struct page * page)
  1790. {
  1791.     return block_read_full_page (page, reiserfs_get_block);
  1792. }
  1793. static int reiserfs_writepage (struct page * page)
  1794. {
  1795.     struct inode *inode = page->mapping->host ;
  1796.     reiserfs_wait_on_write_block(inode->i_sb) ;
  1797.     return reiserfs_write_full_page(page) ;
  1798. }
  1799. int reiserfs_prepare_write(struct file *f, struct page *page, 
  1800.    unsigned from, unsigned to) {
  1801.     struct inode *inode = page->mapping->host ;
  1802.     reiserfs_wait_on_write_block(inode->i_sb) ;
  1803.     fix_tail_page_for_writing(page) ;
  1804.     return block_prepare_write(page, from, to, reiserfs_get_block) ;
  1805. }
  1806. static int reiserfs_aop_bmap(struct address_space *as, long block) {
  1807.   return generic_block_bmap(as, block, reiserfs_bmap) ;
  1808. }
  1809. static int reiserfs_commit_write(struct file *f, struct page *page, 
  1810.                                  unsigned from, unsigned to) {
  1811.     struct inode *inode = page->mapping->host ;
  1812.     loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
  1813.     int ret ; 
  1814.     
  1815.     reiserfs_wait_on_write_block(inode->i_sb) ;
  1816.  
  1817.     /* generic_commit_write does this for us, but does not update the
  1818.     ** transaction tracking stuff when the size changes.  So, we have
  1819.     ** to do the i_size updates here.
  1820.     */
  1821.     if (pos > inode->i_size) {
  1822. struct reiserfs_transaction_handle th ;
  1823. lock_kernel();
  1824. journal_begin(&th, inode->i_sb, 1) ;
  1825. reiserfs_update_inode_transaction(inode) ;
  1826. inode->i_size = pos ;
  1827. reiserfs_update_sd(&th, inode) ;
  1828. journal_end(&th, inode->i_sb, 1) ;
  1829. unlock_kernel();
  1830.     }
  1831.  
  1832.     ret = generic_commit_write(f, page, from, to) ;
  1833.     /* we test for O_SYNC here so we can commit the transaction
  1834.     ** for any packed tails the file might have had
  1835.     */
  1836.     if (f && (f->f_flags & O_SYNC)) {
  1837. lock_kernel() ;
  1838.   reiserfs_commit_for_inode(inode) ;
  1839. unlock_kernel();
  1840.     }
  1841.     return ret ;
  1842. }
  1843. void sd_attrs_to_i_attrs( __u16 sd_attrs, struct inode *inode )
  1844. {
  1845. if( reiserfs_attrs( inode -> i_sb ) ) {
  1846. if( sd_attrs & REISERFS_SYNC_FL )
  1847. inode -> i_flags |= S_SYNC;
  1848. else
  1849. inode -> i_flags &= ~S_SYNC;
  1850. if( sd_attrs & REISERFS_IMMUTABLE_FL )
  1851. inode -> i_flags |= S_IMMUTABLE;
  1852. else
  1853. inode -> i_flags &= ~S_IMMUTABLE;
  1854. if( sd_attrs & REISERFS_NOATIME_FL )
  1855. inode -> i_flags |= S_NOATIME;
  1856. else
  1857. inode -> i_flags &= ~S_NOATIME;
  1858. if( sd_attrs & REISERFS_NOTAIL_FL )
  1859. inode->u.reiserfs_i.i_flags |= i_nopack_mask;
  1860. else
  1861. inode->u.reiserfs_i.i_flags &= ~i_nopack_mask;
  1862. }
  1863. }
  1864. void i_attrs_to_sd_attrs( struct inode *inode, __u16 *sd_attrs )
  1865. {
  1866. if( reiserfs_attrs( inode -> i_sb ) ) {
  1867. if( inode -> i_flags & S_IMMUTABLE )
  1868. *sd_attrs |= REISERFS_IMMUTABLE_FL;
  1869. else
  1870. *sd_attrs &= ~REISERFS_IMMUTABLE_FL;
  1871. if( inode -> i_flags & S_SYNC )
  1872. *sd_attrs |= REISERFS_SYNC_FL;
  1873. else
  1874. *sd_attrs &= ~REISERFS_SYNC_FL;
  1875. if( inode -> i_flags & S_NOATIME )
  1876. *sd_attrs |= REISERFS_NOATIME_FL;
  1877. else
  1878. *sd_attrs &= ~REISERFS_NOATIME_FL;
  1879. if( inode->u.reiserfs_i.i_flags & i_nopack_mask )
  1880. *sd_attrs |= REISERFS_NOTAIL_FL;
  1881. else
  1882. *sd_attrs &= ~REISERFS_NOTAIL_FL;
  1883. }
  1884. }
  1885. static int reiserfs_direct_io(int rw, struct inode *inode, 
  1886.                               struct kiobuf *iobuf, unsigned long blocknr,
  1887.       int blocksize) 
  1888. {
  1889.     return generic_direct_IO(rw, inode, iobuf, blocknr, blocksize,
  1890.                              reiserfs_get_block_direct_io) ;
  1891. }
  1892. struct address_space_operations reiserfs_address_space_operations = {
  1893.     writepage: reiserfs_writepage,
  1894.     readpage: reiserfs_readpage, 
  1895.     sync_page: block_sync_page,
  1896.     prepare_write: reiserfs_prepare_write,
  1897.     commit_write: reiserfs_commit_write,
  1898.     bmap: reiserfs_aop_bmap,
  1899.     direct_IO: reiserfs_direct_io,
  1900. } ;