stree.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:65k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
  3.  */
  4. /*
  5.  *  Written by Anatoly P. Pinchuk pap@namesys.botik.ru
  6.  *  Programm System Institute
  7.  *  Pereslavl-Zalessky Russia
  8.  */
  9. /*
  10.  *  This file contains functions dealing with S+tree
  11.  *
  12.  * B_IS_IN_TREE
  13.  * copy_short_key
  14.  * copy_item_head
  15.  * comp_short_keys
  16.  * comp_keys
  17.  * comp_cpu_keys
  18.  * comp_short_le_keys
  19.  * comp_short_cpu_keys
  20.  * cpu_key2cpu_key
  21.  * le_key2cpu_key
  22.  * comp_le_keys
  23.  * bin_search
  24.  * get_lkey
  25.  * get_rkey
  26.  * key_in_buffer
  27.  * decrement_bcount
  28.  * decrement_counters_in_path
  29.  * reiserfs_check_path
  30.  * pathrelse_and_restore
  31.  * pathrelse
  32.  * search_by_key_reada
  33.  * search_by_key
  34.  * search_for_position_by_key
  35.  * comp_items
  36.  * prepare_for_direct_item
  37.  * prepare_for_direntry_item
  38.  * prepare_for_delete_or_cut
  39.  * calc_deleted_bytes_number
  40.  * init_tb_struct
  41.  * padd_item
  42.  * reiserfs_delete_item
  43.  * reiserfs_delete_solid_item
  44.  * reiserfs_delete_object
  45.  * maybe_indirect_to_direct
  46.  * indirect_to_direct_roll_back
  47.  * reiserfs_cut_from_item
  48.  * truncate_directory
  49.  * reiserfs_do_truncate
  50.  * reiserfs_paste_into_item
  51.  * reiserfs_insert_item
  52.  */
  53. #include <linux/config.h>
  54. #include <linux/sched.h>
  55. #include <linux/string.h>
  56. #include <linux/locks.h>
  57. #include <linux/pagemap.h>
  58. #include <linux/reiserfs_fs.h>
  59. #include <linux/smp_lock.h>
  60. /* Does the buffer contain a disk block which is in the tree. */
  61. inline int B_IS_IN_TREE (const struct buffer_head * p_s_bh)
  62. {
  63.   RFALSE( B_LEVEL (p_s_bh) > MAX_HEIGHT,
  64.   "PAP-1010: block (%b) has too big level (%z)", p_s_bh, p_s_bh);
  65.   return ( B_LEVEL (p_s_bh) != FREE_LEVEL );
  66. }
  67. inline void copy_short_key (void * to, const void * from)
  68. {
  69.     memcpy (to, from, SHORT_KEY_SIZE);
  70. }
  71. //
  72. // to gets item head in le form
  73. //
  74. inline void copy_item_head(struct item_head * p_v_to, 
  75.    const struct item_head * p_v_from)
  76. {
  77.   memcpy (p_v_to, p_v_from, IH_SIZE);
  78. }
  79. /* k1 is pointer to on-disk structure which is stored in little-endian
  80.    form. k2 is pointer to cpu variable. For key of items of the same
  81.    object this returns 0.
  82.    Returns: -1 if key1 < key2 
  83.    0 if key1 == key2
  84.    1 if key1 > key2 */
  85. inline int  comp_short_keys (const struct key * le_key, 
  86.      const struct cpu_key * cpu_key)
  87. {
  88.   __u32 * p_s_le_u32, * p_s_cpu_u32;
  89.   int n_key_length = REISERFS_SHORT_KEY_LEN;
  90.   p_s_le_u32 = (__u32 *)le_key;
  91.   p_s_cpu_u32 = (__u32 *)cpu_key;
  92.   for( ; n_key_length--; ++p_s_le_u32, ++p_s_cpu_u32 ) {
  93.     if ( le32_to_cpu (*p_s_le_u32) < *p_s_cpu_u32 )
  94.       return -1;
  95.     if ( le32_to_cpu (*p_s_le_u32) > *p_s_cpu_u32 )
  96.       return 1;
  97.   }
  98.   return 0;
  99. }
  100. /* k1 is pointer to on-disk structure which is stored in little-endian
  101.    form. k2 is pointer to cpu variable.
  102.    Compare keys using all 4 key fields.
  103.    Returns: -1 if key1 < key2 0
  104.    if key1 = key2 1 if key1 > key2 */
  105. inline int  comp_keys (const struct key * le_key, const struct cpu_key * cpu_key)
  106. {
  107.   int retval;
  108.   retval = comp_short_keys (le_key, cpu_key);
  109.   if (retval)
  110.       return retval;
  111.   if (le_key_k_offset (le_key_version(le_key), le_key) < cpu_key_k_offset (cpu_key))
  112.       return -1;
  113.   if (le_key_k_offset (le_key_version(le_key), le_key) > cpu_key_k_offset (cpu_key))
  114.       return 1;
  115.   if (cpu_key->key_length == 3)
  116.       return 0;
  117.   /* this part is needed only when tail conversion is in progress */
  118.   if (le_key_k_type (le_key_version(le_key), le_key) < cpu_key_k_type (cpu_key))
  119.     return -1;
  120.   if (le_key_k_type (le_key_version(le_key), le_key) > cpu_key_k_type (cpu_key))
  121.     return 1;
  122.   return 0;
  123. }
  124. //
  125. // FIXME: not used yet
  126. //
  127. inline int comp_cpu_keys (const struct cpu_key * key1, 
  128.   const struct cpu_key * key2)
  129. {
  130.     if (key1->on_disk_key.k_dir_id < key2->on_disk_key.k_dir_id)
  131. return -1;
  132.     if (key1->on_disk_key.k_dir_id > key2->on_disk_key.k_dir_id)
  133. return 1;
  134.     if (key1->on_disk_key.k_objectid < key2->on_disk_key.k_objectid)
  135. return -1;
  136.     if (key1->on_disk_key.k_objectid > key2->on_disk_key.k_objectid)
  137. return 1;
  138.     if (cpu_key_k_offset (key1) < cpu_key_k_offset (key2))
  139. return -1;
  140.     if (cpu_key_k_offset (key1) > cpu_key_k_offset (key2))
  141. return 1;
  142.     reiserfs_warning ("comp_cpu_keys: type are compared for %k and %kn",
  143.       key1, key2);
  144.     if (cpu_key_k_type (key1) < cpu_key_k_type (key2))
  145. return -1;
  146.     if (cpu_key_k_type (key1) > cpu_key_k_type (key2))
  147. return 1;
  148.     return 0;
  149. }
  150. inline int comp_short_le_keys (const struct key * key1, const struct key * key2)
  151. {
  152.   __u32 * p_s_1_u32, * p_s_2_u32;
  153.   int n_key_length = REISERFS_SHORT_KEY_LEN;
  154.   p_s_1_u32 = (__u32 *)key1;
  155.   p_s_2_u32 = (__u32 *)key2;
  156.   for( ; n_key_length--; ++p_s_1_u32, ++p_s_2_u32 ) {
  157.     if ( le32_to_cpu (*p_s_1_u32) < le32_to_cpu (*p_s_2_u32) )
  158.       return -1;
  159.     if ( le32_to_cpu (*p_s_1_u32) > le32_to_cpu (*p_s_2_u32) )
  160.       return 1;
  161.   }
  162.   return 0;
  163. }
  164. inline int comp_short_cpu_keys (const struct cpu_key * key1, 
  165. const struct cpu_key * key2)
  166. {
  167.   __u32 * p_s_1_u32, * p_s_2_u32;
  168.   int n_key_length = REISERFS_SHORT_KEY_LEN;
  169.   p_s_1_u32 = (__u32 *)key1;
  170.   p_s_2_u32 = (__u32 *)key2;
  171.   for( ; n_key_length--; ++p_s_1_u32, ++p_s_2_u32 ) {
  172.     if ( *p_s_1_u32 < *p_s_2_u32 )
  173.       return -1;
  174.     if ( *p_s_1_u32 > *p_s_2_u32 )
  175.       return 1;
  176.   }
  177.   return 0;
  178. }
  179. inline void cpu_key2cpu_key (struct cpu_key * to, const struct cpu_key * from)
  180. {
  181.     memcpy (to, from, sizeof (struct cpu_key));
  182. }
  183. inline void le_key2cpu_key (struct cpu_key * to, const struct key * from)
  184. {
  185.     to->on_disk_key.k_dir_id = le32_to_cpu (from->k_dir_id);
  186.     to->on_disk_key.k_objectid = le32_to_cpu (from->k_objectid);
  187.     
  188.     // find out version of the key
  189.     to->version = le_key_version (from);
  190.     if (to->version == KEY_FORMAT_3_5) {
  191. to->on_disk_key.u.k_offset_v1.k_offset = le32_to_cpu (from->u.k_offset_v1.k_offset);
  192. to->on_disk_key.u.k_offset_v1.k_uniqueness = le32_to_cpu (from->u.k_offset_v1.k_uniqueness);
  193.     } else {
  194. to->on_disk_key.u.k_offset_v2.k_offset = offset_v2_k_offset(&from->u.k_offset_v2);
  195. to->on_disk_key.u.k_offset_v2.k_type = offset_v2_k_type(&from->u.k_offset_v2);
  196.     } 
  197. }
  198. // this does not say which one is bigger, it only returns 1 if keys
  199. // are not equal, 0 otherwise
  200. inline int comp_le_keys (const struct key * k1, const struct key * k2)
  201. {
  202.     return memcmp (k1, k2, sizeof (struct key));
  203. }
  204. /**************************************************************************
  205.  *  Binary search toolkit function                                        *
  206.  *  Search for an item in the array by the item key                       *
  207.  *  Returns:    1 if found,  0 if not found;                              *
  208.  *        *p_n_pos = number of the searched element if found, else the    *
  209.  *        number of the first element that is larger than p_v_key.        *
  210.  **************************************************************************/
  211. /* For those not familiar with binary search: n_lbound is the leftmost item that it
  212.  could be, n_rbound the rightmost item that it could be.  We examine the item
  213.  halfway between n_lbound and n_rbound, and that tells us either that we can increase
  214.  n_lbound, or decrease n_rbound, or that we have found it, or if n_lbound <= n_rbound that
  215.  there are no possible items, and we have not found it. With each examination we
  216.  cut the number of possible items it could be by one more than half rounded down,
  217.  or we find it. */
  218. inline int bin_search (
  219.               const void * p_v_key, /* Key to search for.                   */
  220.       const void * p_v_base,/* First item in the array.             */
  221.       int       p_n_num,    /* Number of items in the array.        */
  222.       int       p_n_width,  /* Item size in the array.
  223.        searched. Lest the reader be
  224.        confused, note that this is crafted
  225.        as a general function, and when it
  226.        is applied specifically to the array
  227.        of item headers in a node, p_n_width
  228.        is actually the item header size not
  229.        the item size.                      */
  230.       int     * p_n_pos     /* Number of the searched for element. */
  231.             ) {
  232.     int   n_rbound, n_lbound, n_j;
  233.    for ( n_j = ((n_rbound = p_n_num - 1) + (n_lbound = 0))/2; n_lbound <= n_rbound; n_j = (n_rbound + n_lbound)/2 )
  234.      switch( COMP_KEYS((struct key *)((char * )p_v_base + n_j * p_n_width), (struct cpu_key *)p_v_key) )  {
  235.      case -1: n_lbound = n_j + 1; continue;
  236.      case  1: n_rbound = n_j - 1; continue;
  237.      case  0: *p_n_pos = n_j;     return ITEM_FOUND; /* Key found in the array.  */
  238.         }
  239.     /* bin_search did not find given key, it returns position of key,
  240.         that is minimal and greater than the given one. */
  241.     *p_n_pos = n_lbound;
  242.     return ITEM_NOT_FOUND;
  243. }
  244. #ifdef CONFIG_REISERFS_CHECK
  245. extern struct tree_balance * cur_tb;
  246. #endif
  247. /* Minimal possible key. It is never in the tree. */
  248. const struct key  MIN_KEY = {0, 0, {{0, 0},}};
  249. /* Maximal possible key. It is never in the tree. */
  250. const struct key  MAX_KEY = {0xffffffff, 0xffffffff, {{0xffffffff, 0xffffffff},}};
  251. /* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom
  252.    of the path, and going upwards.  We must check the path's validity at each step.  If the key is not in
  253.    the path, there is no delimiting key in the tree (buffer is first or last buffer in tree), and in this
  254.    case we return a special key, either MIN_KEY or MAX_KEY. */
  255. inline const struct  key * get_lkey  (
  256.                 const struct path         * p_s_chk_path,
  257.                         const struct super_block  * p_s_sb
  258.                       ) {
  259.   int                   n_position, n_path_offset = p_s_chk_path->path_length;
  260.   struct buffer_head  * p_s_parent;
  261.   
  262.   RFALSE( n_path_offset < FIRST_PATH_ELEMENT_OFFSET, 
  263.   "PAP-5010: illegal offset in the path");
  264.   /* While not higher in path than first element. */
  265.   while ( n_path_offset-- > FIRST_PATH_ELEMENT_OFFSET ) {
  266.     RFALSE( ! buffer_uptodate(PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset)),
  267.     "PAP-5020: parent is not uptodate");
  268.     /* Parent at the path is not in the tree now. */
  269.     if ( ! B_IS_IN_TREE(p_s_parent = PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset)) )
  270.       return &MAX_KEY;
  271.     /* Check whether position in the parent is correct. */
  272.     if ( (n_position = PATH_OFFSET_POSITION(p_s_chk_path, n_path_offset)) > B_NR_ITEMS(p_s_parent) )
  273.        return &MAX_KEY;
  274.     /* Check whether parent at the path really points to the child. */
  275.     if ( B_N_CHILD_NUM(p_s_parent, n_position) !=
  276.  PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset + 1)->b_blocknr )
  277.       return &MAX_KEY;
  278.     /* Return delimiting key if position in the parent is not equal to zero. */
  279.     if ( n_position )
  280.       return B_N_PDELIM_KEY(p_s_parent, n_position - 1);
  281.   }
  282.   /* Return MIN_KEY if we are in the root of the buffer tree. */
  283.   if ( PATH_OFFSET_PBUFFER(p_s_chk_path, FIRST_PATH_ELEMENT_OFFSET)->b_blocknr ==
  284.        SB_ROOT_BLOCK (p_s_sb) )
  285.     return &MIN_KEY;
  286.   return  &MAX_KEY;
  287. }
  288. /* Get delimiting key of the buffer at the path and its right neighbor. */
  289. inline const struct  key * get_rkey  (
  290.                 const struct path         * p_s_chk_path,
  291.                         const struct super_block  * p_s_sb
  292.                       ) {
  293.   int                   n_position,
  294.      n_path_offset = p_s_chk_path->path_length;
  295.   struct buffer_head  * p_s_parent;
  296.   RFALSE( n_path_offset < FIRST_PATH_ELEMENT_OFFSET,
  297.   "PAP-5030: illegal offset in the path");
  298.   while ( n_path_offset-- > FIRST_PATH_ELEMENT_OFFSET ) {
  299.     RFALSE( ! buffer_uptodate(PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset)),
  300.     "PAP-5040: parent is not uptodate");
  301.     /* Parent at the path is not in the tree now. */
  302.     if ( ! B_IS_IN_TREE(p_s_parent = PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset)) )
  303.       return &MIN_KEY;
  304.     /* Check whether position in the parent is correct. */
  305.     if ( (n_position = PATH_OFFSET_POSITION(p_s_chk_path, n_path_offset)) > B_NR_ITEMS(p_s_parent) )
  306.       return &MIN_KEY;
  307.     /* Check whether parent at the path really points to the child. */
  308.     if ( B_N_CHILD_NUM(p_s_parent, n_position) !=
  309.                                         PATH_OFFSET_PBUFFER(p_s_chk_path, n_path_offset + 1)->b_blocknr )
  310.       return &MIN_KEY;
  311.     /* Return delimiting key if position in the parent is not the last one. */
  312.     if ( n_position != B_NR_ITEMS(p_s_parent) )
  313.       return B_N_PDELIM_KEY(p_s_parent, n_position);
  314.   }
  315.   /* Return MAX_KEY if we are in the root of the buffer tree. */
  316.   if ( PATH_OFFSET_PBUFFER(p_s_chk_path, FIRST_PATH_ELEMENT_OFFSET)->b_blocknr ==
  317.        SB_ROOT_BLOCK (p_s_sb) )
  318.     return &MAX_KEY;
  319.   return  &MIN_KEY;
  320. }
  321. /* Check whether a key is contained in the tree rooted from a buffer at a path. */
  322. /* This works by looking at the left and right delimiting keys for the buffer in the last path_element in
  323.    the path.  These delimiting keys are stored at least one level above that buffer in the tree. If the
  324.    buffer is the first or last node in the tree order then one of the delimiting keys may be absent, and in
  325.    this case get_lkey and get_rkey return a special key which is MIN_KEY or MAX_KEY. */
  326. static  inline  int key_in_buffer (
  327.                       struct path         * p_s_chk_path, /* Path which should be checked.  */
  328.                       const struct cpu_key      * p_s_key,      /* Key which should be checked.   */
  329.                       struct super_block  * p_s_sb        /* Super block pointer.           */
  330.       ) {
  331.   RFALSE( ! p_s_key || p_s_chk_path->path_length < FIRST_PATH_ELEMENT_OFFSET ||
  332.   p_s_chk_path->path_length > MAX_HEIGHT,
  333.   "PAP-5050: pointer to the key(%p) is NULL or illegal path length(%d)",
  334.   p_s_key, p_s_chk_path->path_length);
  335.   RFALSE( PATH_PLAST_BUFFER(p_s_chk_path)->b_dev == NODEV,
  336.   "PAP-5060: device must not be NODEV");
  337.   if ( COMP_KEYS(get_lkey(p_s_chk_path, p_s_sb), p_s_key) == 1 )
  338.     /* left delimiting key is bigger, that the key we look for */
  339.     return 0;
  340.   //  if ( COMP_KEYS(p_s_key, get_rkey(p_s_chk_path, p_s_sb)) != -1 )
  341.   if ( COMP_KEYS(get_rkey(p_s_chk_path, p_s_sb), p_s_key) != 1 )
  342.     /* p_s_key must be less than right delimitiing key */
  343.     return 0;
  344.   return 1;
  345. }
  346. inline void decrement_bcount(
  347.               struct buffer_head  * p_s_bh
  348.             ) { 
  349.   if ( p_s_bh ) {
  350.     if ( atomic_read (&(p_s_bh->b_count)) ) {
  351.       put_bh(p_s_bh) ;
  352.       return;
  353.     }
  354.     reiserfs_panic(NULL, "PAP-5070: decrement_bcount: trying to free free buffer %b", p_s_bh);
  355.   }
  356. }
  357. /* Decrement b_count field of the all buffers in the path. */
  358. void decrement_counters_in_path (
  359.               struct path * p_s_search_path
  360.             ) {
  361.   int n_path_offset = p_s_search_path->path_length;
  362.   RFALSE( n_path_offset < ILLEGAL_PATH_ELEMENT_OFFSET ||
  363.   n_path_offset > EXTENDED_MAX_HEIGHT - 1,
  364.   "PAP-5080: illegal path offset of %d", n_path_offset);
  365.   while ( n_path_offset > ILLEGAL_PATH_ELEMENT_OFFSET ) {
  366.     struct buffer_head * bh;
  367.     bh = PATH_OFFSET_PBUFFER(p_s_search_path, n_path_offset--);
  368.     decrement_bcount (bh);
  369.   }
  370.   p_s_search_path->path_length = ILLEGAL_PATH_ELEMENT_OFFSET;
  371. }
  372. int reiserfs_check_path(struct path *p) {
  373.   RFALSE( p->path_length != ILLEGAL_PATH_ELEMENT_OFFSET,
  374.   "path not properly relsed") ;
  375.   return 0 ;
  376. }
  377. /* Release all buffers in the path. Restore dirty bits clean
  378. ** when preparing the buffer for the log
  379. **
  380. ** only called from fix_nodes()
  381. */
  382. void  pathrelse_and_restore (
  383. struct super_block *s, 
  384.         struct path * p_s_search_path
  385.       ) {
  386.   int n_path_offset = p_s_search_path->path_length;
  387.   RFALSE( n_path_offset < ILLEGAL_PATH_ELEMENT_OFFSET, 
  388.   "clm-4000: illegal path offset");
  389.   
  390.   while ( n_path_offset > ILLEGAL_PATH_ELEMENT_OFFSET )  {
  391.     reiserfs_restore_prepared_buffer(s, PATH_OFFSET_PBUFFER(p_s_search_path, 
  392.                                      n_path_offset));
  393.     brelse(PATH_OFFSET_PBUFFER(p_s_search_path, n_path_offset--));
  394.   }
  395.   p_s_search_path->path_length = ILLEGAL_PATH_ELEMENT_OFFSET;
  396. }
  397. /* Release all buffers in the path. */
  398. void  pathrelse (
  399.         struct path * p_s_search_path
  400.       ) {
  401.   int n_path_offset = p_s_search_path->path_length;
  402.   RFALSE( n_path_offset < ILLEGAL_PATH_ELEMENT_OFFSET,
  403.   "PAP-5090: illegal path offset");
  404.   
  405.   while ( n_path_offset > ILLEGAL_PATH_ELEMENT_OFFSET )  
  406.     brelse(PATH_OFFSET_PBUFFER(p_s_search_path, n_path_offset--));
  407.   p_s_search_path->path_length = ILLEGAL_PATH_ELEMENT_OFFSET;
  408. }
  409. static int is_leaf (char * buf, int blocksize, struct buffer_head * bh)
  410. {
  411.     struct block_head * blkh;
  412.     struct item_head * ih;
  413.     int used_space;
  414.     int prev_location;
  415.     int i;
  416.     int nr;
  417.     blkh = (struct block_head *)buf;
  418.     if ( blkh_level(blkh) != DISK_LEAF_NODE_LEVEL) {
  419. printk ("is_leaf: this should be caught earliern");
  420. return 0;
  421.     }
  422.     nr = blkh_nr_item(blkh);
  423.     if (nr < 1 || nr > ((blocksize - BLKH_SIZE) / (IH_SIZE + MIN_ITEM_LEN))) {
  424. /* item number is too big or too small */
  425. reiserfs_warning ("is_leaf: nr_item seems wrong: %zn", bh);
  426. return 0;
  427.     }
  428.     ih = (struct item_head *)(buf + BLKH_SIZE) + nr - 1;
  429.     used_space = BLKH_SIZE + IH_SIZE * nr + (blocksize - ih_location (ih));
  430.     if (used_space != blocksize - blkh_free_space(blkh)) {
  431. /* free space does not match to calculated amount of use space */
  432. reiserfs_warning ("is_leaf: free space seems wrong: %zn", bh);
  433. return 0;
  434.     }
  435.     // FIXME: it is_leaf will hit performance too much - we may have
  436.     // return 1 here
  437.     /* check tables of item heads */
  438.     ih = (struct item_head *)(buf + BLKH_SIZE);
  439.     prev_location = blocksize;
  440.     for (i = 0; i < nr; i ++, ih ++) {
  441. if (ih_location (ih) >= blocksize || ih_location (ih) < IH_SIZE * nr) {
  442.     reiserfs_warning ("is_leaf: item location seems wrong: %hn", ih);
  443.     return 0;
  444. }
  445. if (ih_item_len (ih) < 1 || ih_item_len (ih) > MAX_ITEM_LEN (blocksize)) {
  446.     reiserfs_warning ("is_leaf: item length seems wrong: %hn", ih);
  447.     return 0;
  448. }
  449. if (prev_location - ih_location (ih) != ih_item_len (ih)) {
  450.     reiserfs_warning ("is_leaf: item location seems wrong (second one): %hn", ih);
  451.     return 0;
  452. }
  453. prev_location = ih_location (ih);
  454.     }
  455.     // one may imagine much more checks
  456.     return 1;
  457. }
  458. /* returns 1 if buf looks like an internal node, 0 otherwise */
  459. static int is_internal (char * buf, int blocksize, struct buffer_head * bh)
  460. {
  461.     struct block_head * blkh;
  462.     int nr;
  463.     int used_space;
  464.     blkh = (struct block_head *)buf;
  465.     nr = blkh_level(blkh);
  466.     if (nr <= DISK_LEAF_NODE_LEVEL || nr > MAX_HEIGHT) {
  467. /* this level is not possible for internal nodes */
  468. printk ("is_internal: this should be caught earliern");
  469. return 0;
  470.     }
  471.     
  472.     nr = blkh_nr_item(blkh);
  473.     if (nr > (blocksize - BLKH_SIZE - DC_SIZE) / (KEY_SIZE + DC_SIZE)) {
  474. /* for internal which is not root we might check min number of keys */
  475. reiserfs_warning ("is_internal: number of key seems wrong: %zn", bh);
  476. return 0;
  477.     }
  478.     used_space = BLKH_SIZE + KEY_SIZE * nr + DC_SIZE * (nr + 1);
  479.     if (used_space != blocksize - blkh_free_space(blkh)) {
  480. reiserfs_warning ("is_internal: free space seems wrong: %zn", bh);
  481. return 0;
  482.     }
  483.     // one may imagine much more checks
  484.     return 1;
  485. }
  486. // make sure that bh contains formatted node of reiserfs tree of
  487. // 'level'-th level
  488. static int is_tree_node (struct buffer_head * bh, int level)
  489. {
  490.     if (B_LEVEL (bh) != level) {
  491. printk ("is_tree_node: node level %d does not match to the expected one %dn",
  492. B_LEVEL (bh), level);
  493. return 0;
  494.     }
  495.     if (level == DISK_LEAF_NODE_LEVEL)
  496. return is_leaf (bh->b_data, bh->b_size, bh);
  497.     return is_internal (bh->b_data, bh->b_size, bh);
  498. }
  499. #ifdef SEARCH_BY_KEY_READA
  500. /* The function is NOT SCHEDULE-SAFE! */
  501. static void search_by_key_reada (struct super_block * s, int blocknr)
  502. {
  503.     struct buffer_head * bh;
  504.   
  505.     if (blocknr == 0)
  506. return;
  507.     bh = getblk (s->s_dev, blocknr, s->s_blocksize);
  508.   
  509.     if (!buffer_uptodate (bh)) {
  510. ll_rw_block (READA, 1, &bh);
  511.     }
  512.     bh->b_count --;
  513. }
  514. #endif
  515. /**************************************************************************
  516.  * Algorithm   SearchByKey                                                *
  517.  *             look for item in the Disk S+Tree by its key                *
  518.  * Input:  p_s_sb   -  super block                                        *
  519.  *         p_s_key  - pointer to the key to search                        *
  520.  * Output: ITEM_FOUND, ITEM_NOT_FOUND or IO_ERROR                         *
  521.  *         p_s_search_path - path from the root to the needed leaf        *
  522.  **************************************************************************/
  523. /* This function fills up the path from the root to the leaf as it
  524.    descends the tree looking for the key.  It uses reiserfs_bread to
  525.    try to find buffers in the cache given their block number.  If it
  526.    does not find them in the cache it reads them from disk.  For each
  527.    node search_by_key finds using reiserfs_bread it then uses
  528.    bin_search to look through that node.  bin_search will find the
  529.    position of the block_number of the next node if it is looking
  530.    through an internal node.  If it is looking through a leaf node
  531.    bin_search will find the position of the item which has key either
  532.    equal to given key, or which is the maximal key less than the given
  533.    key.  search_by_key returns a path that must be checked for the
  534.    correctness of the top of the path but need not be checked for the
  535.    correctness of the bottom of the path */
  536. /* The function is NOT SCHEDULE-SAFE! */
  537. int search_by_key (struct super_block * p_s_sb,
  538.    const struct cpu_key * p_s_key, /* Key to search. */
  539.    struct path * p_s_search_path, /* This structure was
  540.      allocated and initialized
  541.      by the calling
  542.      function. It is filled up
  543.      by this function.  */
  544.    int n_stop_level /* How far down the tree to search. To
  545.                                        stop at leaf level - set to
  546.                                        DISK_LEAF_NODE_LEVEL */
  547.     ) {
  548.     int  n_block_number = SB_ROOT_BLOCK (p_s_sb),
  549.       expected_level = SB_TREE_HEIGHT (p_s_sb),
  550.       n_block_size    = p_s_sb->s_blocksize;
  551.     struct buffer_head  *       p_s_bh;
  552.     struct path_element *       p_s_last_element;
  553.     int n_node_level, n_retval;
  554.     int  right_neighbor_of_leaf_node;
  555.     int fs_gen;
  556. #ifdef CONFIG_REISERFS_CHECK
  557.     int n_repeat_counter = 0;
  558. #endif
  559.     
  560.     PROC_INFO_INC( p_s_sb, search_by_key );
  561.     
  562.     /* As we add each node to a path we increase its count.  This means that
  563.        we must be careful to release all nodes in a path before we either
  564.        discard the path struct or re-use the path struct, as we do here. */
  565.     decrement_counters_in_path(p_s_search_path);
  566.     right_neighbor_of_leaf_node = 0;
  567.     /* With each iteration of this loop we search through the items in the
  568.        current node, and calculate the next current node(next path element)
  569.        for the next iteration of this loop.. */
  570.     while ( 1 ) {
  571. #ifdef CONFIG_REISERFS_CHECK
  572. if ( !(++n_repeat_counter % 50000) )
  573.     reiserfs_warning ("PAP-5100: search_by_key: %s:"
  574.       "there were %d iterations of while loop "
  575.       "looking for key %Kn",
  576.       current->comm, n_repeat_counter, p_s_key);
  577. #endif
  578. /* prep path to have another element added to it. */
  579. p_s_last_element = PATH_OFFSET_PELEMENT(p_s_search_path, ++p_s_search_path->path_length);
  580. fs_gen = get_generation (p_s_sb);
  581. expected_level --;
  582. #ifdef SEARCH_BY_KEY_READA
  583. /* schedule read of right neighbor */
  584. search_by_key_reada (p_s_sb, right_neighbor_of_leaf_node);
  585. #endif
  586. /* Read the next tree node, and set the last element in the path to
  587.            have a pointer to it. */
  588. if ( ! (p_s_bh = p_s_last_element->pe_buffer =
  589. reiserfs_bread(p_s_sb, n_block_number, n_block_size)) ) {
  590.     p_s_search_path->path_length --;
  591.     pathrelse(p_s_search_path);
  592.     return IO_ERROR;
  593. }
  594.   if( fs_changed (fs_gen, p_s_sb) ) {
  595.   PROC_INFO_INC( p_s_sb, search_by_key_fs_changed );
  596.   PROC_INFO_INC( p_s_sb, sbk_fs_changed[ expected_level - 1 ] );
  597.   }
  598. /* It is possible that schedule occurred. We must check whether the key
  599.    to search is still in the tree rooted from the current buffer. If
  600.    not then repeat search from the root. */
  601. if ( fs_changed (fs_gen, p_s_sb) && 
  602.      (!B_IS_IN_TREE (p_s_bh) || !key_in_buffer(p_s_search_path, p_s_key, p_s_sb)) ) {
  603.       PROC_INFO_INC( p_s_sb, search_by_key_restarted );
  604.     PROC_INFO_INC( p_s_sb, sbk_restarted[ expected_level - 1 ] );
  605.     decrement_counters_in_path(p_s_search_path);
  606.     
  607.     /* Get the root block number so that we can repeat the search
  608.                starting from the root. */
  609.     n_block_number = SB_ROOT_BLOCK (p_s_sb);
  610.     expected_level = SB_TREE_HEIGHT (p_s_sb);
  611.     right_neighbor_of_leaf_node = 0;
  612.     
  613.     /* repeat search from the root */
  614.     continue;
  615. }
  616.         /* only check that the key is in the buffer if p_s_key is not
  617.            equal to the MAX_KEY. Latter case is only possible in
  618.            "finish_unfinished()" processing during mount. */
  619.         RFALSE( COMP_KEYS( &MAX_KEY, p_s_key ) && 
  620.                 ! key_in_buffer(p_s_search_path, p_s_key, p_s_sb),
  621. "PAP-5130: key is not in the buffer");
  622. #ifdef CONFIG_REISERFS_CHECK
  623. if ( cur_tb ) {
  624.     print_cur_tb ("5140");
  625.     reiserfs_panic(p_s_sb, "PAP-5140: search_by_key: schedule occurred in do_balance!");
  626. }
  627. #endif
  628. // make sure, that the node contents look like a node of
  629. // certain level
  630. if (!is_tree_node (p_s_bh, expected_level)) {
  631.     reiserfs_warning ("vs-5150: search_by_key: "
  632.       "invalid format found in block %ld. Fsck?n", 
  633.       p_s_bh->b_blocknr);
  634.     pathrelse (p_s_search_path);
  635.     return IO_ERROR;
  636. }
  637. /* ok, we have acquired next formatted node in the tree */
  638. n_node_level = B_LEVEL (p_s_bh);
  639. PROC_INFO_BH_STAT( p_s_sb, p_s_bh, n_node_level - 1 );
  640. RFALSE( n_node_level < n_stop_level,
  641. "vs-5152: tree level (%d) is less than stop level (%d)",
  642. n_node_level, n_stop_level);
  643. n_retval = bin_search( p_s_key, B_N_PITEM_HEAD(p_s_bh, 0),
  644.                 B_NR_ITEMS(p_s_bh),
  645.                 ( n_node_level == DISK_LEAF_NODE_LEVEL ) ? IH_SIZE : KEY_SIZE,
  646.                 &(p_s_last_element->pe_position));
  647. if (n_node_level == n_stop_level) {
  648.     return n_retval;
  649. }
  650. /* we are not in the stop level */
  651. if (n_retval == ITEM_FOUND)
  652.     /* item has been found, so we choose the pointer which is to the right of the found one */
  653.     p_s_last_element->pe_position++;
  654. /* if item was not found we choose the position which is to
  655.    the left of the found item. This requires no code,
  656.    bin_search did it already.*/
  657. /* So we have chosen a position in the current node which is
  658.    an internal node.  Now we calculate child block number by
  659.    position in the node. */
  660. n_block_number = B_N_CHILD_NUM(p_s_bh, p_s_last_element->pe_position);
  661. #ifdef SEARCH_BY_KEY_READA
  662. /* if we are going to read leaf node, then calculate its right neighbor if possible */
  663. if (n_node_level == DISK_LEAF_NODE_LEVEL + 1 && p_s_last_element->pe_position < B_NR_ITEMS (p_s_bh))
  664.     right_neighbor_of_leaf_node = B_N_CHILD_NUM(p_s_bh, p_s_last_element->pe_position + 1);
  665. #endif
  666.     }
  667. }
  668. /* Form the path to an item and position in this item which contains
  669.    file byte defined by p_s_key. If there is no such item
  670.    corresponding to the key, we point the path to the item with
  671.    maximal key less than p_s_key, and *p_n_pos_in_item is set to one
  672.    past the last entry/byte in the item.  If searching for entry in a
  673.    directory item, and it is not found, *p_n_pos_in_item is set to one
  674.    entry more than the entry with maximal key which is less than the
  675.    sought key.
  676.    Note that if there is no entry in this same node which is one more,
  677.    then we point to an imaginary entry.  for direct items, the
  678.    position is in units of bytes, for indirect items the position is
  679.    in units of blocknr entries, for directory items the position is in
  680.    units of directory entries.  */
  681. /* The function is NOT SCHEDULE-SAFE! */
  682. int search_for_position_by_key (struct super_block  * p_s_sb,         /* Pointer to the super block.          */
  683. const struct cpu_key  * p_cpu_key,      /* Key to search (cpu variable)         */
  684. struct path         * p_s_search_path /* Filled up by this function.          */
  685.     ) {
  686.     struct item_head    * p_le_ih; /* pointer to on-disk structure */
  687.     int                   n_blk_size;
  688.     loff_t item_offset, offset;
  689.     struct reiserfs_dir_entry de;
  690.     int retval;
  691.     /* If searching for directory entry. */
  692.     if ( is_direntry_cpu_key (p_cpu_key) )
  693. return  search_by_entry_key (p_s_sb, p_cpu_key, p_s_search_path, &de);
  694.     /* If not searching for directory entry. */
  695.     
  696.     /* If item is found. */
  697.     retval = search_item (p_s_sb, p_cpu_key, p_s_search_path);
  698.     if (retval == IO_ERROR)
  699. return retval;
  700.     if ( retval == ITEM_FOUND )  {
  701. RFALSE( ! ih_item_len(
  702.                 B_N_PITEM_HEAD(PATH_PLAST_BUFFER(p_s_search_path),
  703.        PATH_LAST_POSITION(p_s_search_path))),
  704.         "PAP-5165: item length equals zero");
  705. pos_in_item(p_s_search_path) = 0;
  706. return POSITION_FOUND;
  707.     }
  708.     RFALSE( ! PATH_LAST_POSITION(p_s_search_path),
  709.     "PAP-5170: position equals zero");
  710.     /* Item is not found. Set path to the previous item. */
  711.     p_le_ih = B_N_PITEM_HEAD(PATH_PLAST_BUFFER(p_s_search_path), --PATH_LAST_POSITION(p_s_search_path));
  712.     n_blk_size = p_s_sb->s_blocksize;
  713.     if (comp_short_keys (&(p_le_ih->ih_key), p_cpu_key)) {
  714. return FILE_NOT_FOUND;
  715.     }
  716.     // FIXME: quite ugly this far
  717.     item_offset = le_ih_k_offset (p_le_ih);
  718.     offset = cpu_key_k_offset (p_cpu_key);
  719.     /* Needed byte is contained in the item pointed to by the path.*/
  720.     if (item_offset <= offset &&
  721. item_offset + op_bytes_number (p_le_ih, n_blk_size) > offset) {
  722. pos_in_item (p_s_search_path) = offset - item_offset;
  723. if ( is_indirect_le_ih(p_le_ih) ) {
  724.     pos_in_item (p_s_search_path) /= n_blk_size;
  725. }
  726. return POSITION_FOUND;
  727.     }
  728.     /* Needed byte is not contained in the item pointed to by the
  729.      path. Set pos_in_item out of the item. */
  730.     if ( is_indirect_le_ih (p_le_ih) )
  731. pos_in_item (p_s_search_path) = ih_item_len(p_le_ih) / UNFM_P_SIZE;
  732.     else
  733.         pos_in_item (p_s_search_path) = ih_item_len( p_le_ih );
  734.   
  735.     return POSITION_NOT_FOUND;
  736. }
  737. /* Compare given item and item pointed to by the path. */
  738. int comp_items (const struct item_head * stored_ih, const struct path * p_s_path)
  739. {
  740.     struct buffer_head  * p_s_bh;
  741.     struct item_head    * ih;
  742.     /* Last buffer at the path is not in the tree. */
  743.     if ( ! B_IS_IN_TREE(p_s_bh = PATH_PLAST_BUFFER(p_s_path)) )
  744. return 1;
  745.     /* Last path position is invalid. */
  746.     if ( PATH_LAST_POSITION(p_s_path) >= B_NR_ITEMS(p_s_bh) )
  747. return 1;
  748.     /* we need only to know, whether it is the same item */
  749.     ih = get_ih (p_s_path);
  750.     return memcmp (stored_ih, ih, IH_SIZE);
  751. }
  752. /* unformatted nodes are not logged anymore, ever.  This is safe
  753. ** now
  754. */
  755. #define held_by_others(bh) (atomic_read(&(bh)->b_count) > 1)
  756. // block can not be forgotten as it is in I/O or held by someone
  757. #define block_in_use(bh) (buffer_locked(bh) || (held_by_others(bh)))
  758. // prepare for delete or cut of direct item
  759. static inline int prepare_for_direct_item (struct path * path,
  760.    struct item_head * le_ih,
  761.    struct inode * inode,
  762.    loff_t new_file_length,
  763.    int * cut_size)
  764. {
  765.     loff_t round_len;
  766.     if ( new_file_length == max_reiserfs_offset (inode) ) {
  767. /* item has to be deleted */
  768. *cut_size = -(IH_SIZE + ih_item_len(le_ih));
  769. return M_DELETE;
  770.     }
  771.     // new file gets truncated
  772.     if (get_inode_item_key_version (inode) == KEY_FORMAT_3_6) {
  773. // 
  774. round_len = ROUND_UP (new_file_length); 
  775. /* this was n_new_file_length < le_ih ... */
  776. if ( round_len < le_ih_k_offset (le_ih) )  {
  777.     *cut_size = -(IH_SIZE + ih_item_len(le_ih));
  778.     return M_DELETE; /* Delete this item. */
  779. }
  780. /* Calculate first position and size for cutting from item. */
  781. pos_in_item (path) = round_len - (le_ih_k_offset (le_ih) - 1);
  782. *cut_size = -(ih_item_len(le_ih) - pos_in_item(path));
  783. return M_CUT; /* Cut from this item. */
  784.     }
  785.     // old file: items may have any length
  786.     if ( new_file_length < le_ih_k_offset (le_ih) )  {
  787. *cut_size = -(IH_SIZE + ih_item_len(le_ih));
  788. return M_DELETE; /* Delete this item. */
  789.     }
  790.     /* Calculate first position and size for cutting from item. */
  791.     *cut_size = -(ih_item_len(le_ih) -
  792.       (pos_in_item (path) = new_file_length + 1 - le_ih_k_offset (le_ih)));
  793.     return M_CUT; /* Cut from this item. */
  794. }
  795. static inline int prepare_for_direntry_item (struct path * path,
  796.      struct item_head * le_ih,
  797.      struct inode * inode,
  798.      loff_t new_file_length,
  799.      int * cut_size)
  800. {
  801.     if (le_ih_k_offset (le_ih) == DOT_OFFSET && 
  802. new_file_length == max_reiserfs_offset (inode)) {
  803. RFALSE( ih_entry_count (le_ih) != 2,
  804.         "PAP-5220: incorrect empty directory item (%h)", le_ih);
  805. *cut_size = -(IH_SIZE + ih_item_len(le_ih));
  806. return M_DELETE; /* Delete the directory item containing "." and ".." entry. */
  807.     }
  808.     
  809.     if ( ih_entry_count (le_ih) == 1 )  {
  810. /* Delete the directory item such as there is one record only
  811.    in this item*/
  812. *cut_size = -(IH_SIZE + ih_item_len(le_ih));
  813. return M_DELETE;
  814.     }
  815.     
  816.     /* Cut one record from the directory item. */
  817.     *cut_size = -(DEH_SIZE + entry_length (get_last_bh (path), le_ih, pos_in_item (path)));
  818.     return M_CUT; 
  819. }
  820. /*  If the path points to a directory or direct item, calculate mode and the size cut, for balance.
  821.     If the path points to an indirect item, remove some number of its unformatted nodes.
  822.     In case of file truncate calculate whether this item must be deleted/truncated or last
  823.     unformatted node of this item will be converted to a direct item.
  824.     This function returns a determination of what balance mode the calling function should employ. */
  825. static char  prepare_for_delete_or_cut(
  826.        struct reiserfs_transaction_handle *th, 
  827.        struct inode * inode,
  828.        struct path         * p_s_path,
  829.        const struct cpu_key      * p_s_item_key,
  830.        int                 * p_n_removed,      /* Number of unformatted nodes which were removed
  831.   from end of the file. */
  832.        int                 * p_n_cut_size,
  833.        unsigned long long    n_new_file_length /* MAX_KEY_OFFSET in case of delete. */
  834.     ) {
  835.     struct super_block  * p_s_sb = inode->i_sb;
  836.     struct item_head    * p_le_ih = PATH_PITEM_HEAD(p_s_path);
  837.     struct buffer_head  * p_s_bh = PATH_PLAST_BUFFER(p_s_path);
  838.     /* Stat_data item. */
  839.     if ( is_statdata_le_ih (p_le_ih) ) {
  840. RFALSE( n_new_file_length != max_reiserfs_offset (inode),
  841. "PAP-5210: mode must be M_DELETE");
  842. *p_n_cut_size = -(IH_SIZE + ih_item_len(p_le_ih));
  843. return M_DELETE;
  844.     }
  845.     /* Directory item. */
  846.     if ( is_direntry_le_ih (p_le_ih) )
  847. return prepare_for_direntry_item (p_s_path, p_le_ih, inode, n_new_file_length, p_n_cut_size);
  848.     /* Direct item. */
  849.     if ( is_direct_le_ih (p_le_ih) )
  850. return prepare_for_direct_item (p_s_path, p_le_ih, inode, n_new_file_length, p_n_cut_size);
  851.     /* Case of an indirect item. */
  852.     {
  853. int                   n_unfm_number,    /* Number of the item unformatted nodes. */
  854.     n_counter,
  855.     n_blk_size;
  856. __u32               * p_n_unfm_pointer; /* Pointer to the unformatted node number. */
  857. __u32 tmp;
  858. struct item_head      s_ih;           /* Item header. */
  859. char                  c_mode;           /* Returned mode of the balance. */
  860. int need_research;
  861. n_blk_size = p_s_sb->s_blocksize;
  862. /* Search for the needed object indirect item until there are no unformatted nodes to be removed. */
  863. do  {
  864.     need_research = 0;
  865.             p_s_bh = PATH_PLAST_BUFFER(p_s_path);
  866.     /* Copy indirect item header to a temp variable. */
  867.     copy_item_head(&s_ih, PATH_PITEM_HEAD(p_s_path));
  868.     /* Calculate number of unformatted nodes in this item. */
  869.     n_unfm_number = I_UNFM_NUM(&s_ih);
  870.     RFALSE( ! is_indirect_le_ih(&s_ih) || ! n_unfm_number ||
  871.     pos_in_item (p_s_path) + 1 !=  n_unfm_number,
  872.     "PAP-5240: illegal item %h "
  873.     "n_unfm_number = %d *p_n_pos_in_item = %d", 
  874.     &s_ih, n_unfm_number, pos_in_item (p_s_path));
  875.     /* Calculate balance mode and position in the item to remove unformatted nodes. */
  876.     if ( n_new_file_length == max_reiserfs_offset (inode) ) {/* Case of delete. */
  877. pos_in_item (p_s_path) = 0;
  878. *p_n_cut_size = -(IH_SIZE + ih_item_len(&s_ih));
  879. c_mode = M_DELETE;
  880.     }
  881.     else  { /* Case of truncate. */
  882. if ( n_new_file_length < le_ih_k_offset (&s_ih) )  {
  883.     pos_in_item (p_s_path) = 0;
  884.     *p_n_cut_size = -(IH_SIZE + ih_item_len(&s_ih));
  885.     c_mode = M_DELETE; /* Delete this item. */
  886. }
  887. else  {
  888.     /* indirect item must be truncated starting from *p_n_pos_in_item-th position */
  889.     pos_in_item (p_s_path) = (n_new_file_length + n_blk_size - le_ih_k_offset (&s_ih) ) >> p_s_sb->s_blocksize_bits;
  890.     RFALSE( pos_in_item (p_s_path) > n_unfm_number,
  891.     "PAP-5250: illegal position in the item");
  892.     /* Either convert last unformatted node of indirect item to direct item or increase
  893.        its free space.  */
  894.     if ( pos_in_item (p_s_path) == n_unfm_number )  {
  895. *p_n_cut_size = 0; /* Nothing to cut. */
  896. return M_CONVERT; /* Maybe convert last unformatted node to the direct item. */
  897.     }
  898.     /* Calculate size to cut. */
  899.     *p_n_cut_size = -(ih_item_len(&s_ih) - pos_in_item(p_s_path) * UNFM_P_SIZE);
  900.     c_mode = M_CUT;     /* Cut from this indirect item. */
  901. }
  902.     }
  903.     RFALSE( n_unfm_number <= pos_in_item (p_s_path),
  904.     "PAP-5260: illegal position in the indirect item");
  905.     /* pointers to be cut */
  906.     n_unfm_number -= pos_in_item (p_s_path);
  907.     /* Set pointer to the last unformatted node pointer that is to be cut. */
  908.     p_n_unfm_pointer = (__u32 *)B_I_PITEM(p_s_bh, &s_ih) + I_UNFM_NUM(&s_ih) - 1 - *p_n_removed;
  909.     /* We go through the unformatted nodes pointers of the indirect
  910.        item and look for the unformatted nodes in the cache. If we
  911.        found some of them we free it, zero corresponding indirect item
  912.        entry and log buffer containing that indirect item. For this we
  913.        need to prepare last path element for logging. If some
  914.        unformatted node has b_count > 1 we must not free this
  915.        unformatted node since it is in use. */
  916.     reiserfs_prepare_for_journal(p_s_sb, p_s_bh, 1);
  917.     // note: path could be changed, first line in for loop takes care
  918.     // of it
  919.     for (n_counter = *p_n_removed;
  920.  n_counter < n_unfm_number; n_counter++, p_n_unfm_pointer-- ) {
  921. if (item_moved (&s_ih, p_s_path)) {
  922.     need_research = 1 ;
  923.     break;
  924. }
  925. RFALSE( p_n_unfm_pointer < (__u32 *)B_I_PITEM(p_s_bh, &s_ih) ||
  926. p_n_unfm_pointer > (__u32 *)B_I_PITEM(p_s_bh, &s_ih) + I_UNFM_NUM(&s_ih) - 1,
  927. "vs-5265: pointer out of range");
  928. /* Hole, nothing to remove. */
  929. if ( ! get_block_num(p_n_unfm_pointer,0) )  { 
  930. (*p_n_removed)++;
  931. continue;
  932. }
  933. (*p_n_removed)++;
  934. tmp = get_block_num(p_n_unfm_pointer,0);
  935. put_block_num(p_n_unfm_pointer, 0, 0);
  936. journal_mark_dirty (th, p_s_sb, p_s_bh);
  937. inode->i_blocks -= p_s_sb->s_blocksize / 512;
  938. reiserfs_free_block(th, tmp);
  939. if ( item_moved (&s_ih, p_s_path) )  {
  940. need_research = 1;
  941. break ;
  942. }
  943.     }
  944.     /* a trick.  If the buffer has been logged, this
  945.     ** will do nothing.  If we've broken the loop without
  946.     ** logging it, it will restore the buffer
  947.     **
  948.     */
  949.     reiserfs_restore_prepared_buffer(p_s_sb, p_s_bh);
  950.     /* This loop can be optimized. */
  951. } while ( (*p_n_removed < n_unfm_number || need_research) &&
  952.   search_for_position_by_key(p_s_sb, p_s_item_key, p_s_path) == POSITION_FOUND );
  953. RFALSE( *p_n_removed < n_unfm_number, 
  954. "PAP-5310: indirect item is not found");
  955. RFALSE( item_moved (&s_ih, p_s_path), 
  956. "after while, comp failed, retry") ;
  957. if (c_mode == M_CUT)
  958.     pos_in_item (p_s_path) *= UNFM_P_SIZE;
  959. return c_mode;
  960.     }
  961. }
  962. /* Calculate bytes number which will be deleted or cutted in the balance. */
  963. int calc_deleted_bytes_number(
  964.     struct  tree_balance  * p_s_tb,
  965.     char                    c_mode
  966.     ) {
  967.     int                     n_del_size;
  968.     struct  item_head     * p_le_ih = PATH_PITEM_HEAD(p_s_tb->tb_path);
  969.     if ( is_statdata_le_ih (p_le_ih) )
  970. return 0;
  971.     if ( is_direntry_le_ih (p_le_ih) ) {
  972. // return EMPTY_DIR_SIZE; /* We delete emty directoris only. */
  973. // we can't use EMPTY_DIR_SIZE, as old format dirs have a different
  974. // empty size.  ick. FIXME, is this right?
  975. //
  976. return ih_item_len(p_le_ih);
  977.     }
  978.     n_del_size = ( c_mode == M_DELETE ) ? ih_item_len(p_le_ih) : -p_s_tb->insert_size[0];
  979.     if ( is_indirect_le_ih (p_le_ih) )
  980. n_del_size = (n_del_size/UNFM_P_SIZE)*
  981.   (PATH_PLAST_BUFFER(p_s_tb->tb_path)->b_size);// - get_ih_free_space (p_le_ih);
  982.     return n_del_size;
  983. }
  984. static void init_tb_struct(
  985.     struct reiserfs_transaction_handle *th,
  986.     struct tree_balance * p_s_tb,
  987.     struct super_block  * p_s_sb,
  988.     struct path         * p_s_path,
  989.     int                   n_size
  990.     ) {
  991.     memset (p_s_tb,'',sizeof(struct tree_balance));
  992.     p_s_tb->transaction_handle = th ;
  993.     p_s_tb->tb_sb = p_s_sb;
  994.     p_s_tb->tb_path = p_s_path;
  995.     PATH_OFFSET_PBUFFER(p_s_path, ILLEGAL_PATH_ELEMENT_OFFSET) = NULL;
  996.     PATH_OFFSET_POSITION(p_s_path, ILLEGAL_PATH_ELEMENT_OFFSET) = 0;
  997.     p_s_tb->insert_size[0] = n_size;
  998. }
  999. void padd_item (char * item, int total_length, int length)
  1000. {
  1001.     int i;
  1002.     for (i = total_length; i > length; )
  1003. item [--i] = 0;
  1004. }
  1005. /* Delete object item. */
  1006. int reiserfs_delete_item (struct reiserfs_transaction_handle *th, 
  1007.   struct path * p_s_path, /* Path to the deleted item. */
  1008.   const struct cpu_key * p_s_item_key, /* Key to search for the deleted item.  */
  1009.   struct inode * p_s_inode,/* inode is here just to update i_blocks */
  1010.   struct buffer_head  * p_s_un_bh)    /* NULL or unformatted node pointer.    */
  1011. {
  1012.     struct super_block * p_s_sb = p_s_inode->i_sb;
  1013.     struct tree_balance   s_del_balance;
  1014.     struct item_head      s_ih;
  1015.     int                   n_ret_value,
  1016. n_del_size,
  1017. n_removed;
  1018. #ifdef CONFIG_REISERFS_CHECK
  1019.     char                  c_mode;
  1020.     int n_iter = 0;
  1021. #endif
  1022.     init_tb_struct(th, &s_del_balance, p_s_sb, p_s_path, 0/*size is unknown*/);
  1023.     while ( 1 ) {
  1024. n_removed = 0;
  1025. #ifdef CONFIG_REISERFS_CHECK
  1026. n_iter++;
  1027. c_mode =
  1028. #endif
  1029.     prepare_for_delete_or_cut(th, p_s_inode, p_s_path, p_s_item_key, &n_removed, &n_del_size, max_reiserfs_offset (p_s_inode));
  1030. RFALSE( c_mode != M_DELETE, "PAP-5320: mode must be M_DELETE");
  1031. copy_item_head(&s_ih, PATH_PITEM_HEAD(p_s_path));
  1032. s_del_balance.insert_size[0] = n_del_size;
  1033. n_ret_value = fix_nodes(M_DELETE, &s_del_balance, NULL, 0);
  1034. if ( n_ret_value != REPEAT_SEARCH )
  1035.     break;
  1036. // file system changed, repeat search
  1037. n_ret_value = search_for_position_by_key(p_s_sb, p_s_item_key, p_s_path);
  1038. if (n_ret_value == IO_ERROR)
  1039.     break;
  1040. if (n_ret_value == FILE_NOT_FOUND) {
  1041.     reiserfs_warning ("vs-5340: reiserfs_delete_item: "
  1042.       "no items of the file %K foundn", p_s_item_key);
  1043.     break;
  1044. }
  1045.     } /* while (1) */
  1046.     if ( n_ret_value != CARRY_ON ) {
  1047. unfix_nodes(&s_del_balance);
  1048. return 0;
  1049.     }
  1050.     // reiserfs_delete_item returns item length when success
  1051.     n_ret_value = calc_deleted_bytes_number(&s_del_balance, M_DELETE);
  1052.     if ( p_s_un_bh )  {
  1053. int off;
  1054.         char *data ;
  1055. /* We are in direct2indirect conversion, so move tail contents
  1056.            to the unformatted node */
  1057. /* note, we do the copy before preparing the buffer because we
  1058. ** don't care about the contents of the unformatted node yet.
  1059. ** the only thing we really care about is the direct item's data
  1060. ** is in the unformatted node.
  1061. **
  1062. ** Otherwise, we would have to call reiserfs_prepare_for_journal on
  1063. ** the unformatted node, which might schedule, meaning we'd have to
  1064. ** loop all the way back up to the start of the while loop.
  1065. **
  1066. ** The unformatted node must be dirtied later on.  We can't be
  1067. ** sure here if the entire tail has been deleted yet.
  1068.         **
  1069.         ** p_s_un_bh is from the page cache (all unformatted nodes are
  1070.         ** from the page cache) and might be a highmem page.  So, we
  1071.         ** can't use p_s_un_bh->b_data.  But, the page has already been
  1072.         ** kmapped, so we can use page_address()
  1073. ** -clm
  1074. */
  1075.         data = page_address(p_s_un_bh->b_page) ;
  1076. off = ((le_ih_k_offset (&s_ih) - 1) & (PAGE_CACHE_SIZE - 1));
  1077. memcpy(data + off,
  1078.        B_I_PITEM(PATH_PLAST_BUFFER(p_s_path), &s_ih), n_ret_value);
  1079.     }
  1080.     /* Perform balancing after all resources have been collected at once. */ 
  1081.     do_balance(&s_del_balance, NULL, NULL, M_DELETE);
  1082.     /* Return deleted body length */
  1083.     return n_ret_value;
  1084. }
  1085. /* Summary Of Mechanisms For Handling Collisions Between Processes:
  1086.  deletion of the body of the object is performed by iput(), with the
  1087.  result that if multiple processes are operating on a file, the
  1088.  deletion of the body of the file is deferred until the last process
  1089.  that has an open inode performs its iput().
  1090.  writes and truncates are protected from collisions by use of
  1091.  semaphores.
  1092.  creates, linking, and mknod are protected from collisions with other
  1093.  processes by making the reiserfs_add_entry() the last step in the
  1094.  creation, and then rolling back all changes if there was a collision.
  1095.  - Hans
  1096. */
  1097. /* this deletes item which never gets split */
  1098. void reiserfs_delete_solid_item (struct reiserfs_transaction_handle *th,
  1099.  struct key * key)
  1100. {
  1101.     struct tree_balance tb;
  1102.     INITIALIZE_PATH (path);
  1103.     int item_len;
  1104.     int tb_init = 0 ;
  1105.     struct cpu_key cpu_key;
  1106.     int retval;
  1107.     
  1108.     le_key2cpu_key (&cpu_key, key);
  1109.     
  1110.     while (1) {
  1111. retval = search_item (th->t_super, &cpu_key, &path);
  1112. if (retval == IO_ERROR) {
  1113.     reiserfs_warning ("vs-5350: reiserfs_delete_solid_item: "
  1114.       "i/o failure occurred trying to delete %Kn", &cpu_key);
  1115.     break;
  1116. }
  1117. if (retval != ITEM_FOUND) {
  1118.     pathrelse (&path);
  1119.     reiserfs_warning ("vs-5355: reiserfs_delete_solid_item: %k not found",
  1120.       key);
  1121.     break;
  1122. }
  1123. if (!tb_init) {
  1124.     tb_init = 1 ;
  1125.     item_len = ih_item_len( PATH_PITEM_HEAD(&path) );
  1126.     init_tb_struct (th, &tb, th->t_super, &path, - (IH_SIZE + item_len));
  1127. }
  1128. retval = fix_nodes (M_DELETE, &tb, NULL, 0);
  1129. if (retval == REPEAT_SEARCH)
  1130.     continue;
  1131. if (retval == CARRY_ON) {
  1132.     do_balance (&tb, 0, 0, M_DELETE);
  1133.     break;
  1134. }
  1135. // IO_ERROR, NO_DISK_SPACE, etc
  1136. reiserfs_warning ("vs-5360: reiserfs_delete_solid_item: "
  1137.   "could not delete %K due to fix_nodes failuren", &cpu_key);
  1138. unfix_nodes (&tb);
  1139. break;
  1140.     }
  1141.     reiserfs_check_path(&path) ;
  1142. }
  1143. void reiserfs_delete_object (struct reiserfs_transaction_handle *th, struct inode * inode)
  1144. {
  1145.     inode->i_size = 0;
  1146.     /* for directory this deletes item containing "." and ".." */
  1147.     reiserfs_do_truncate (th, inode, NULL, 0/*no timestamp updates*/);
  1148.     
  1149. #if defined( USE_INODE_GENERATION_COUNTER )
  1150.     if( !old_format_only ( th -> t_super ) )
  1151.       {
  1152.        __u32 *inode_generation;
  1153.        
  1154.        inode_generation = 
  1155.          &th -> t_super -> u.reiserfs_sb.s_rs -> s_inode_generation;
  1156.        *inode_generation = cpu_to_le32( le32_to_cpu( *inode_generation ) + 1 );
  1157.       }
  1158. /* USE_INODE_GENERATION_COUNTER */
  1159. #endif
  1160.     reiserfs_delete_solid_item (th, INODE_PKEY (inode));
  1161. }
  1162. static int maybe_indirect_to_direct (struct reiserfs_transaction_handle *th, 
  1163.       struct inode * p_s_inode,
  1164.       struct page *page, 
  1165.       struct path         * p_s_path,
  1166.       const struct cpu_key      * p_s_item_key,
  1167.       loff_t         n_new_file_size,
  1168.       char                * p_c_mode
  1169.       ) {
  1170.     struct super_block * p_s_sb = p_s_inode->i_sb;
  1171.     int n_block_size = p_s_sb->s_blocksize;
  1172.     int cut_bytes;
  1173.     if (n_new_file_size != p_s_inode->i_size)
  1174. BUG ();
  1175.     /* the page being sent in could be NULL if there was an i/o error
  1176.     ** reading in the last block.  The user will hit problems trying to
  1177.     ** read the file, but for now we just skip the indirect2direct
  1178.     */
  1179.     if (atomic_read(&p_s_inode->i_count) > 1 || 
  1180.         !tail_has_to_be_packed (p_s_inode) || 
  1181.         !page || (p_s_inode->u.reiserfs_i.i_flags & i_nopack_mask)) {
  1182. // leave tail in an unformatted node
  1183. *p_c_mode = M_SKIP_BALANCING;
  1184. cut_bytes = n_block_size - (n_new_file_size & (n_block_size - 1));
  1185. pathrelse(p_s_path);
  1186. return cut_bytes;
  1187.     }
  1188.     /* Permorm the conversion to a direct_item. */
  1189.     /*return indirect_to_direct (p_s_inode, p_s_path, p_s_item_key, n_new_file_size, p_c_mode);*/
  1190.     return indirect2direct (th, p_s_inode, page, p_s_path, p_s_item_key, n_new_file_size, p_c_mode);
  1191. }
  1192. /* we did indirect_to_direct conversion. And we have inserted direct
  1193.    item successesfully, but there were no disk space to cut unfm
  1194.    pointer being converted. Therefore we have to delete inserted
  1195.    direct item(s) */
  1196. static void indirect_to_direct_roll_back (struct reiserfs_transaction_handle *th, struct inode * inode, struct path * path)
  1197. {
  1198.     struct cpu_key tail_key;
  1199.     int tail_len;
  1200.     int removed;
  1201.     make_cpu_key (&tail_key, inode, inode->i_size + 1, TYPE_DIRECT, 4);// !!!!
  1202.     tail_key.key_length = 4;
  1203.     tail_len = (cpu_key_k_offset (&tail_key) & (inode->i_sb->s_blocksize - 1)) - 1;
  1204.     while (tail_len) {
  1205. /* look for the last byte of the tail */
  1206. if (search_for_position_by_key (inode->i_sb, &tail_key, path) == POSITION_NOT_FOUND)
  1207.     reiserfs_panic (inode->i_sb, "vs-5615: indirect_to_direct_roll_back: found invalid item");
  1208. RFALSE( path->pos_in_item != ih_item_len(PATH_PITEM_HEAD (path)) - 1,
  1209.         "vs-5616: appended bytes found");
  1210. PATH_LAST_POSITION (path) --;
  1211. removed = reiserfs_delete_item (th, path, &tail_key, inode, 0/*unbh not needed*/);
  1212. RFALSE( removed <= 0 || removed > tail_len,
  1213.         "vs-5617: there was tail %d bytes, removed item length %d bytes",
  1214.                 tail_len, removed);
  1215. tail_len -= removed;
  1216. set_cpu_key_k_offset (&tail_key, cpu_key_k_offset (&tail_key) - removed);
  1217.     }
  1218.     printk ("indirect_to_direct_roll_back: indirect_to_direct conversion has been rolled back due to lack of disk spacen");
  1219.     //mark_file_without_tail (inode);
  1220.     mark_inode_dirty (inode);
  1221. }
  1222. /* (Truncate or cut entry) or delete object item. Returns < 0 on failure */
  1223. int reiserfs_cut_from_item (struct reiserfs_transaction_handle *th, 
  1224.     struct path * p_s_path,
  1225.     struct cpu_key * p_s_item_key,
  1226.     struct inode * p_s_inode,
  1227.     struct page *page, 
  1228.     loff_t n_new_file_size)
  1229. {
  1230.     struct super_block * p_s_sb = p_s_inode->i_sb;
  1231.     /* Every function which is going to call do_balance must first
  1232.        create a tree_balance structure.  Then it must fill up this
  1233.        structure by using the init_tb_struct and fix_nodes functions.
  1234.        After that we can make tree balancing. */
  1235.     struct tree_balance s_cut_balance;
  1236.     int n_cut_size = 0,        /* Amount to be cut. */
  1237. n_ret_value = CARRY_ON,
  1238. n_removed = 0,     /* Number of the removed unformatted nodes. */
  1239. n_is_inode_locked = 0;
  1240.     char                c_mode;            /* Mode of the balance. */
  1241.     int retval2 = -1;
  1242.     
  1243.     
  1244.     init_tb_struct(th, &s_cut_balance, p_s_inode->i_sb, p_s_path, n_cut_size);
  1245.     /* Repeat this loop until we either cut the item without needing
  1246.        to balance, or we fix_nodes without schedule occuring */
  1247.     while ( 1 ) {
  1248. /* Determine the balance mode, position of the first byte to
  1249.    be cut, and size to be cut.  In case of the indirect item
  1250.    free unformatted nodes which are pointed to by the cut
  1251.    pointers. */
  1252.       
  1253. c_mode = prepare_for_delete_or_cut(th, p_s_inode, p_s_path, p_s_item_key, &n_removed, 
  1254.    &n_cut_size, n_new_file_size);
  1255. if ( c_mode == M_CONVERT )  {
  1256.     /* convert last unformatted node to direct item or leave
  1257.                tail in the unformatted node */
  1258.     RFALSE( n_ret_value != CARRY_ON, "PAP-5570: can not convert twice");
  1259.     n_ret_value = maybe_indirect_to_direct (th, p_s_inode, page, p_s_path, p_s_item_key,
  1260.     n_new_file_size, &c_mode);
  1261.     if ( c_mode == M_SKIP_BALANCING )
  1262. /* tail has been left in the unformatted node */
  1263. return n_ret_value;
  1264.     n_is_inode_locked = 1;
  1265.   
  1266.     /* removing of last unformatted node will change value we
  1267.                have to return to truncate. Save it */
  1268.     retval2 = n_ret_value;
  1269.     /*retval2 = p_s_sb->s_blocksize - (n_new_file_size & (p_s_sb->s_blocksize - 1));*/
  1270.   
  1271.     /* So, we have performed the first part of the conversion:
  1272.        inserting the new direct item.  Now we are removing the
  1273.        last unformatted node pointer. Set key to search for
  1274.        it. */
  1275.            set_cpu_key_k_type (p_s_item_key, TYPE_INDIRECT);
  1276.     p_s_item_key->key_length = 4;
  1277.     n_new_file_size -= (n_new_file_size & (p_s_sb->s_blocksize - 1));
  1278.     set_cpu_key_k_offset (p_s_item_key, n_new_file_size + 1);
  1279.     if ( search_for_position_by_key(p_s_sb, p_s_item_key, p_s_path) == POSITION_NOT_FOUND ){
  1280. print_block (PATH_PLAST_BUFFER (p_s_path), 3, PATH_LAST_POSITION (p_s_path) - 1, PATH_LAST_POSITION (p_s_path) + 1);
  1281. reiserfs_panic(p_s_sb, "PAP-5580: reiserfs_cut_from_item: item to convert does not exist (%k)", p_s_item_key);
  1282.     }
  1283.     continue;
  1284. }
  1285. if (n_cut_size == 0) {
  1286.     pathrelse (p_s_path);
  1287.     return 0;
  1288. }
  1289. s_cut_balance.insert_size[0] = n_cut_size;
  1290. n_ret_value = fix_nodes(c_mode, &s_cut_balance, NULL, 0);
  1291.        if ( n_ret_value != REPEAT_SEARCH )
  1292.     break;
  1293. n_ret_value = search_for_position_by_key(p_s_sb, p_s_item_key, p_s_path);
  1294. if (n_ret_value == POSITION_FOUND)
  1295.     continue;
  1296. reiserfs_warning ("PAP-5610: reiserfs_cut_from_item: item %K not foundn", p_s_item_key);
  1297. unfix_nodes (&s_cut_balance);
  1298. return (n_ret_value == IO_ERROR) ? -EIO : -ENOENT;
  1299.     } /* while */
  1300.   
  1301.     // check fix_nodes results (IO_ERROR or NO_DISK_SPACE)
  1302.     if ( n_ret_value != CARRY_ON ) {
  1303. if ( n_is_inode_locked ) {
  1304.     // FIXME: this seems to be not needed: we are always able
  1305.     // to cut item
  1306.     indirect_to_direct_roll_back (th, p_s_inode, p_s_path);
  1307. }
  1308. if (n_ret_value == NO_DISK_SPACE)
  1309.     reiserfs_warning ("NO_DISK_SPACE");
  1310. unfix_nodes (&s_cut_balance);
  1311. return -EIO;
  1312.     }
  1313.     /* go ahead and perform balancing */
  1314.     
  1315.     RFALSE( c_mode == M_PASTE || c_mode == M_INSERT, "illegal mode");
  1316.     /* Calculate number of bytes that need to be cut from the item. */
  1317.     if (retval2 == -1)
  1318. n_ret_value = calc_deleted_bytes_number(&s_cut_balance, c_mode);
  1319.     else
  1320. n_ret_value = retval2;
  1321.     
  1322.     if ( c_mode == M_DELETE ) {
  1323. struct item_head * p_le_ih = PATH_PITEM_HEAD (s_cut_balance.tb_path);
  1324. if ( is_direct_le_ih (p_le_ih) && (le_ih_k_offset (p_le_ih) & (p_s_sb->s_blocksize - 1)) == 1 ) {
  1325.     /* we delete first part of tail which was stored in direct
  1326.                item(s) */
  1327.     // FIXME: this is to keep 3.5 happy
  1328.     p_s_inode->u.reiserfs_i.i_first_direct_byte = U32_MAX;
  1329.     p_s_inode->i_blocks -= p_s_sb->s_blocksize / 512;
  1330. }
  1331.     }
  1332. #ifdef CONFIG_REISERFS_CHECK
  1333.     if (n_is_inode_locked) {
  1334. struct item_head * le_ih = PATH_PITEM_HEAD (s_cut_balance.tb_path);
  1335. /* we are going to complete indirect2direct conversion. Make
  1336.            sure, that we exactly remove last unformatted node pointer
  1337.            of the item */
  1338. if (!is_indirect_le_ih (le_ih))
  1339.     reiserfs_panic (p_s_sb, "vs-5652: reiserfs_cut_from_item: "
  1340.     "item must be indirect %h", le_ih);
  1341. if (c_mode == M_DELETE && ih_item_len(le_ih) != UNFM_P_SIZE)
  1342.     reiserfs_panic (p_s_sb, "vs-5653: reiserfs_cut_from_item: "
  1343.     "completing indirect2direct conversion indirect item %h "
  1344.     "being deleted must be of 4 byte long", le_ih);
  1345. if (c_mode == M_CUT && s_cut_balance.insert_size[0] != -UNFM_P_SIZE) {
  1346.     reiserfs_panic (p_s_sb, "vs-5654: reiserfs_cut_from_item: "
  1347.     "can not complete indirect2direct conversion of %h (CUT, insert_size==%d)",
  1348.     le_ih, s_cut_balance.insert_size[0]);
  1349. }
  1350. /* it would be useful to make sure, that right neighboring
  1351.            item is direct item of this file */
  1352.     }
  1353. #endif
  1354.     
  1355.     do_balance(&s_cut_balance, NULL, NULL, c_mode);
  1356.     if ( n_is_inode_locked ) {
  1357. /* we've done an indirect->direct conversion.  when the data block 
  1358. ** was freed, it was removed from the list of blocks that must 
  1359. ** be flushed before the transaction commits, so we don't need to 
  1360. ** deal with it here.
  1361. */
  1362. p_s_inode->u.reiserfs_i.i_flags &= ~i_pack_on_close_mask;
  1363.     }
  1364.     return n_ret_value;
  1365. }
  1366. static void truncate_directory (struct reiserfs_transaction_handle *th, struct inode * inode)
  1367. {
  1368.     if (inode->i_nlink)
  1369. reiserfs_warning ("vs-5655: truncate_directory: link count != 0n");
  1370.     set_le_key_k_offset (KEY_FORMAT_3_5, INODE_PKEY (inode), DOT_OFFSET);
  1371.     set_le_key_k_type (KEY_FORMAT_3_5, INODE_PKEY (inode), TYPE_DIRENTRY);
  1372.     reiserfs_delete_solid_item (th, INODE_PKEY (inode));
  1373.     set_le_key_k_offset (KEY_FORMAT_3_5, INODE_PKEY (inode), SD_OFFSET);
  1374.     set_le_key_k_type (KEY_FORMAT_3_5, INODE_PKEY (inode), TYPE_STAT_DATA);    
  1375. }
  1376. /* Truncate file to the new size. Note, this must be called with a transaction
  1377.    already started */
  1378. void reiserfs_do_truncate (struct reiserfs_transaction_handle *th, 
  1379.    struct  inode * p_s_inode, /* ->i_size contains new
  1380.                                                          size */
  1381.    struct page *page, /* up to date for last block */
  1382.    int update_timestamps  /* when it is called by
  1383.      file_release to convert
  1384.      the tail - no timestamps
  1385.      should be updated */
  1386.     ) {
  1387.     INITIALIZE_PATH (s_search_path);       /* Path to the current object item. */
  1388.     struct item_head    * p_le_ih;         /* Pointer to an item header. */
  1389.     struct cpu_key      s_item_key;     /* Key to search for a previous file item. */
  1390.     loff_t         n_file_size,    /* Old file size. */
  1391. n_new_file_size;/* New file size. */
  1392.     int                   n_deleted;      /* Number of deleted or truncated bytes. */
  1393.     int retval;
  1394.     if ( ! (S_ISREG(p_s_inode->i_mode) || S_ISDIR(p_s_inode->i_mode) || S_ISLNK(p_s_inode->i_mode)) )
  1395. return;
  1396.     if (S_ISDIR(p_s_inode->i_mode)) {
  1397. // deletion of directory - no need to update timestamps
  1398. truncate_directory (th, p_s_inode);
  1399. return;
  1400.     }
  1401.     /* Get new file size. */
  1402.     n_new_file_size = p_s_inode->i_size;
  1403.     // FIXME: note, that key type is unimportant here
  1404.     make_cpu_key (&s_item_key, p_s_inode, max_reiserfs_offset (p_s_inode), TYPE_DIRECT, 3);
  1405.     retval = search_for_position_by_key(p_s_inode->i_sb, &s_item_key, &s_search_path);
  1406.     if (retval == IO_ERROR) {
  1407. reiserfs_warning ("vs-5657: reiserfs_do_truncate: "
  1408.   "i/o failure occurred trying to truncate %Kn", &s_item_key);
  1409. return;
  1410.     }
  1411.     if (retval == POSITION_FOUND || retval == FILE_NOT_FOUND) {
  1412. pathrelse (&s_search_path);
  1413. reiserfs_warning ("PAP-5660: reiserfs_do_truncate: "
  1414.   "wrong result %d of search for %Kn", retval, &s_item_key);
  1415. return;
  1416.     }
  1417.     s_search_path.pos_in_item --;
  1418.     /* Get real file size (total length of all file items) */
  1419.     p_le_ih = PATH_PITEM_HEAD(&s_search_path);
  1420.     if ( is_statdata_le_ih (p_le_ih) )
  1421. n_file_size = 0;
  1422.     else {
  1423. loff_t offset = le_ih_k_offset (p_le_ih);
  1424. int bytes = op_bytes_number (p_le_ih,p_s_inode->i_sb->s_blocksize);
  1425. /* this may mismatch with real file size: if last direct item
  1426.            had no padding zeros and last unformatted node had no free
  1427.            space, this file would have this file size */
  1428. n_file_size = offset + bytes - 1;
  1429.     }
  1430.     if ( n_file_size == 0 || n_file_size < n_new_file_size ) {
  1431. goto update_and_out ;
  1432.     }
  1433.     /* Update key to search for the last file item. */
  1434.     set_cpu_key_k_offset (&s_item_key, n_file_size);
  1435.     do  {
  1436. /* Cut or delete file item. */
  1437. n_deleted = reiserfs_cut_from_item(th, &s_search_path, &s_item_key, p_s_inode,  page, n_new_file_size);
  1438. if (n_deleted < 0) {
  1439.     reiserfs_warning ("vs-5665: reiserfs_truncate_file: cut_from_item failed");
  1440.     reiserfs_check_path(&s_search_path) ;
  1441.     return;
  1442. }
  1443. RFALSE( n_deleted > n_file_size,
  1444. "PAP-5670: reiserfs_truncate_file returns too big number: deleted %d, file_size %lu, item_key %k",
  1445. n_deleted, n_file_size, &s_item_key);
  1446. /* Change key to search the last file item. */
  1447. n_file_size -= n_deleted;
  1448. set_cpu_key_k_offset (&s_item_key, n_file_size);
  1449. /* While there are bytes to truncate and previous file item is presented in the tree. */
  1450. /*
  1451. ** This loop could take a really long time, and could log 
  1452. ** many more blocks than a transaction can hold.  So, we do a polite
  1453. ** journal end here, and if the transaction needs ending, we make
  1454. ** sure the file is consistent before ending the current trans
  1455. ** and starting a new one
  1456. */
  1457.         if (journal_transaction_should_end(th, th->t_blocks_allocated)) {
  1458.   int orig_len_alloc = th->t_blocks_allocated ;
  1459.   decrement_counters_in_path(&s_search_path) ;
  1460.   if (update_timestamps) {
  1461.       p_s_inode->i_mtime = p_s_inode->i_ctime = CURRENT_TIME;
  1462.   } 
  1463.   reiserfs_update_sd(th, p_s_inode) ;
  1464.   journal_end(th, p_s_inode->i_sb, orig_len_alloc) ;
  1465.   journal_begin(th, p_s_inode->i_sb, orig_len_alloc) ;
  1466.   reiserfs_update_inode_transaction(p_s_inode) ;
  1467. }
  1468.     } while ( n_file_size > ROUND_UP (n_new_file_size) &&
  1469.       search_for_position_by_key(p_s_inode->i_sb, &s_item_key, &s_search_path) == POSITION_FOUND )  ;
  1470.     RFALSE( n_file_size > ROUND_UP (n_new_file_size),
  1471.     "PAP-5680: truncate did not finish: new_file_size %Ld, current %Ld, oid %dn",
  1472.     n_new_file_size, n_file_size, s_item_key.on_disk_key.k_objectid);
  1473. update_and_out:
  1474.     if (update_timestamps) {
  1475. // this is truncate, not file closing
  1476. p_s_inode->i_mtime = p_s_inode->i_ctime = CURRENT_TIME;
  1477.     }
  1478.     reiserfs_update_sd (th, p_s_inode);
  1479.     pathrelse(&s_search_path) ;
  1480. }
  1481. #ifdef CONFIG_REISERFS_CHECK
  1482. // this makes sure, that we __append__, not overwrite or add holes
  1483. static void check_research_for_paste (struct path * path, 
  1484.       const struct cpu_key * p_s_key)
  1485. {
  1486.     struct item_head * found_ih = get_ih (path);
  1487.     
  1488.     if (is_direct_le_ih (found_ih)) {
  1489. if (le_ih_k_offset (found_ih) + op_bytes_number (found_ih, get_last_bh (path)->b_size) !=
  1490.     cpu_key_k_offset (p_s_key) ||
  1491.     op_bytes_number (found_ih, get_last_bh (path)->b_size) != pos_in_item (path))
  1492.     reiserfs_panic (0, "PAP-5720: check_research_for_paste: "
  1493.     "found direct item %h or position (%d) does not match to key %K",
  1494.     found_ih, pos_in_item (path), p_s_key);
  1495.     }
  1496.     if (is_indirect_le_ih (found_ih)) {
  1497. if (le_ih_k_offset (found_ih) + op_bytes_number (found_ih, get_last_bh (path)->b_size) != cpu_key_k_offset (p_s_key) || 
  1498.     I_UNFM_NUM (found_ih) != pos_in_item (path) ||
  1499.     get_ih_free_space (found_ih) != 0)
  1500.     reiserfs_panic (0, "PAP-5730: check_research_for_paste: "
  1501.     "found indirect item (%h) or position (%d) does not match to key (%K)",
  1502.     found_ih, pos_in_item (path), p_s_key);
  1503.     }
  1504. }
  1505. #endif /* config reiserfs check */
  1506. /* Paste bytes to the existing item. Returns bytes number pasted into the item. */
  1507. int reiserfs_paste_into_item (struct reiserfs_transaction_handle *th, 
  1508.       struct path         * p_s_search_path, /* Path to the pasted item.          */
  1509.       const struct cpu_key      * p_s_key,         /* Key to search for the needed item.*/
  1510.       const char          * p_c_body,        /* Pointer to the bytes to paste.    */
  1511.       int                   n_pasted_size)   /* Size of pasted bytes.             */
  1512. {
  1513.     struct tree_balance s_paste_balance;
  1514.     int                 retval;
  1515.     init_tb_struct(th, &s_paste_balance, th->t_super, p_s_search_path, n_pasted_size);
  1516.     
  1517.     while ( (retval = fix_nodes(M_PASTE, &s_paste_balance, NULL, p_c_body)) == REPEAT_SEARCH ) {
  1518. /* file system changed while we were in the fix_nodes */
  1519. retval = search_for_position_by_key (th->t_super, p_s_key, p_s_search_path);
  1520. if (retval == IO_ERROR) {
  1521.     retval = -EIO ;
  1522.     goto error_out ;
  1523. }
  1524. if (retval == POSITION_FOUND) {
  1525.     reiserfs_warning ("PAP-5710: reiserfs_paste_into_item: entry or pasted byte (%K) exists", p_s_key);
  1526.     retval = -EEXIST ;
  1527.     goto error_out ;
  1528. }
  1529. #ifdef CONFIG_REISERFS_CHECK
  1530. check_research_for_paste (p_s_search_path, p_s_key);
  1531. #endif
  1532.     }
  1533.     /* Perform balancing after all resources are collected by fix_nodes, and
  1534.        accessing them will not risk triggering schedule. */
  1535.     if ( retval == CARRY_ON ) {
  1536. do_balance(&s_paste_balance, NULL/*ih*/, p_c_body, M_PASTE);
  1537. return 0;
  1538.     }
  1539.     retval = (retval == NO_DISK_SPACE) ? -ENOSPC : -EIO;
  1540. error_out:
  1541.     /* this also releases the path */
  1542.     unfix_nodes(&s_paste_balance);
  1543.     return retval ;
  1544. }
  1545. /* Insert new item into the buffer at the path. */
  1546. int reiserfs_insert_item(struct reiserfs_transaction_handle *th, 
  1547.  struct path         *  p_s_path,         /* Path to the inserteded item.         */
  1548.  const struct cpu_key      * key,
  1549.  struct item_head    *  p_s_ih,           /* Pointer to the item header to insert.*/
  1550.  const char          *  p_c_body)         /* Pointer to the bytes to insert.      */
  1551. {
  1552.     struct tree_balance s_ins_balance;
  1553.     int                 retval;
  1554.     init_tb_struct(th, &s_ins_balance, th->t_super, p_s_path, IH_SIZE + ih_item_len(p_s_ih));
  1555.     /*
  1556.     if (p_c_body == 0)
  1557.       n_zeros_num = ih_item_len(p_s_ih);
  1558.     */
  1559.     //    le_key2cpu_key (&key, &(p_s_ih->ih_key));
  1560.     while ( (retval = fix_nodes(M_INSERT, &s_ins_balance, p_s_ih, p_c_body)) == REPEAT_SEARCH) {
  1561. /* file system changed while we were in the fix_nodes */
  1562. retval = search_item (th->t_super, key, p_s_path);
  1563. if (retval == IO_ERROR) {
  1564.     retval = -EIO;
  1565.     goto error_out ;
  1566. }
  1567. if (retval == ITEM_FOUND) {
  1568.     reiserfs_warning ("PAP-5760: reiserfs_insert_item: "
  1569.       "key %K already exists in the treen", key);
  1570.     retval = -EEXIST ;
  1571.     goto error_out; 
  1572. }
  1573.     }
  1574.     /* make balancing after all resources will be collected at a time */ 
  1575.     if ( retval == CARRY_ON ) {
  1576. do_balance (&s_ins_balance, p_s_ih, p_c_body, M_INSERT);
  1577. return 0;
  1578.     }
  1579.     retval = (retval == NO_DISK_SPACE) ? -ENOSPC : -EIO;
  1580. error_out:
  1581.     /* also releases the path */
  1582.     unfix_nodes(&s_ins_balance);
  1583.     return retval; 
  1584. }