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