blob: d6744c8b24e12f6b2108109f05b31c0f88b5a2b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <asm/uaccess.h>
6#include <linux/string.h>
7#include <linux/time.h>
Al Virof466c6f2012-03-17 01:16:43 -04008#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/buffer_head.h>
10
Jeff Mahoney098297b2014-04-23 10:00:36 -040011/*
12 * copy copy_count entries from source directory item to dest buffer
13 * (creating new item if needed)
14 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070015static void leaf_copy_dir_entries(struct buffer_info *dest_bi,
16 struct buffer_head *source, int last_first,
17 int item_num, int from, int copy_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070019 struct buffer_head *dest = dest_bi->bi_bh;
Jeff Mahoney098297b2014-04-23 10:00:36 -040020 /*
21 * either the number of target item, or if we must create a
22 * new item, the number of the item we will create it next to
23 */
24 int item_num_in_dest;
25
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070026 struct item_head *ih;
27 struct reiserfs_de_head *deh;
28 int copy_records_len; /* length of all records in item to be copied */
29 char *records;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -040031 ih = item_head(source, item_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070033 RFALSE(!is_direntry_le_ih(ih), "vs-10000: item must be directory item");
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jeff Mahoney098297b2014-04-23 10:00:36 -040035 /*
36 * length of all record to be copied and first byte of
37 * the last of them
38 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070039 deh = B_I_DEH(source, ih);
40 if (copy_count) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -040041 copy_records_len = (from ? deh_location(&deh[from - 1]) :
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070042 ih_item_len(ih)) -
Jeff Mahoneya228bf82014-04-23 10:00:42 -040043 deh_location(&deh[from + copy_count - 1]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070044 records =
45 source->b_data + ih_location(ih) +
Jeff Mahoneya228bf82014-04-23 10:00:42 -040046 deh_location(&deh[from + copy_count - 1]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070047 } else {
48 copy_records_len = 0;
49 records = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070052 /* when copy last to first, dest buffer can contain 0 items */
53 item_num_in_dest =
54 (last_first ==
55 LAST_TO_FIRST) ? ((B_NR_ITEMS(dest)) ? 0 : -1) : (B_NR_ITEMS(dest)
56 - 1);
57
Jeff Mahoney098297b2014-04-23 10:00:36 -040058 /*
59 * if there are no items in dest or the first/last item in
60 * dest is not item of the same directory
61 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070062 if ((item_num_in_dest == -1) ||
63 (last_first == FIRST_TO_LAST && le_ih_k_offset(ih) == DOT_OFFSET) ||
64 (last_first == LAST_TO_FIRST
65 && comp_short_le_keys /*COMP_SHORT_KEYS */ (&ih->ih_key,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -040066 leaf_key(dest,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070067 item_num_in_dest))))
68 {
69 /* create new item in dest */
70 struct item_head new_ih;
71
72 /* form item header */
73 memcpy(&new_ih.ih_key, &ih->ih_key, KEY_SIZE);
74 put_ih_version(&new_ih, KEY_FORMAT_3_5);
75 /* calculate item len */
76 put_ih_item_len(&new_ih,
77 DEH_SIZE * copy_count + copy_records_len);
78 put_ih_entry_count(&new_ih, 0);
79
80 if (last_first == LAST_TO_FIRST) {
81 /* form key by the following way */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -040082 if (from < ih_entry_count(ih)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070083 set_le_ih_k_offset(&new_ih,
Jeff Mahoneya228bf82014-04-23 10:00:42 -040084 deh_offset(&deh[from]));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070085 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -040086 /*
87 * no entries will be copied to this
88 * item in this function
89 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070090 set_le_ih_k_offset(&new_ih, U32_MAX);
Jeff Mahoney098297b2014-04-23 10:00:36 -040091 /*
92 * this item is not yet valid, but we
93 * want I_IS_DIRECTORY_ITEM to return 1
94 * for it, so we -1
95 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070096 }
Jeff Mahoneya228bf82014-04-23 10:00:42 -040097 set_le_key_k_type(KEY_FORMAT_3_5, &new_ih.ih_key,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070098 TYPE_DIRENTRY);
99 }
100
101 /* insert item into dest buffer */
102 leaf_insert_into_buf(dest_bi,
103 (last_first ==
104 LAST_TO_FIRST) ? 0 : B_NR_ITEMS(dest),
105 &new_ih, NULL, 0);
106 } else {
107 /* prepare space for entries */
108 leaf_paste_in_buffer(dest_bi,
109 (last_first ==
110 FIRST_TO_LAST) ? (B_NR_ITEMS(dest) -
111 1) : 0, MAX_US_INT,
112 DEH_SIZE * copy_count + copy_records_len,
113 records, 0);
114 }
115
116 item_num_in_dest =
117 (last_first == FIRST_TO_LAST) ? (B_NR_ITEMS(dest) - 1) : 0;
118
Jeff Mahoneyeba00302009-03-30 14:02:18 -0400119 leaf_paste_entries(dest_bi, item_num_in_dest,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700120 (last_first ==
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400121 FIRST_TO_LAST) ? ih_entry_count(item_head(dest,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700122 item_num_in_dest))
123 : 0, copy_count, deh + from, records,
124 DEH_SIZE * copy_count + copy_records_len);
125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Jeff Mahoney098297b2014-04-23 10:00:36 -0400127/*
128 * Copy the first (if last_first == FIRST_TO_LAST) or last
129 * (last_first == LAST_TO_FIRST) item or part of it or nothing
130 * (see the return 0 below) from SOURCE to the end (if last_first)
131 * or beginning (!last_first) of the DEST
132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* returns 1 if anything was copied, else 0 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700134static int leaf_copy_boundary_item(struct buffer_info *dest_bi,
135 struct buffer_head *src, int last_first,
136 int bytes_or_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700138 struct buffer_head *dest = dest_bi->bi_bh;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400139 /* number of items in the source and destination buffers */
140 int dest_nr_item, src_nr_item;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700141 struct item_head *ih;
142 struct item_head *dih;
143
144 dest_nr_item = B_NR_ITEMS(dest);
145
Jeff Mahoney098297b2014-04-23 10:00:36 -0400146 /*
147 * if ( DEST is empty or first item of SOURCE and last item of
148 * DEST are the items of different objects or of different types )
149 * then there is no need to treat this item differently from the
150 * other items that we copy, so we return
151 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700152 if (last_first == FIRST_TO_LAST) {
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400153 ih = item_head(src, 0);
154 dih = item_head(dest, dest_nr_item - 1);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400155
156 /* there is nothing to merge */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700157 if (!dest_nr_item
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400158 || (!op_is_left_mergeable(&ih->ih_key, src->b_size)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700159 return 0;
160
161 RFALSE(!ih_item_len(ih),
162 "vs-10010: item can not have empty length");
163
164 if (is_direntry_le_ih(ih)) {
165 if (bytes_or_entries == -1)
166 /* copy all entries to dest */
167 bytes_or_entries = ih_entry_count(ih);
168 leaf_copy_dir_entries(dest_bi, src, FIRST_TO_LAST, 0, 0,
169 bytes_or_entries);
170 return 1;
171 }
172
Jeff Mahoney098297b2014-04-23 10:00:36 -0400173 /*
174 * copy part of the body of the first item of SOURCE
175 * to the end of the body of the last item of the DEST
176 * part defined by 'bytes_or_entries'; if bytes_or_entries
177 * == -1 copy whole body; don't create new item header
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700178 */
179 if (bytes_or_entries == -1)
180 bytes_or_entries = ih_item_len(ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700183 else {
184 if (bytes_or_entries == ih_item_len(ih)
185 && is_indirect_le_ih(ih))
186 if (get_ih_free_space(ih))
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400187 reiserfs_panic(sb_from_bi(dest_bi),
188 "vs-10020",
189 "last unformatted node "
190 "must be filled "
191 "entirely (%h)", ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Jeff Mahoney098297b2014-04-23 10:00:36 -0400195 /*
196 * merge first item (or its part) of src buffer with the last
197 * item of dest buffer. Both are of the same file
198 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700199 leaf_paste_in_buffer(dest_bi,
200 dest_nr_item - 1, ih_item_len(dih),
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400201 bytes_or_entries, ih_item_body(src, ih), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700203 if (is_indirect_le_ih(dih)) {
204 RFALSE(get_ih_free_space(dih),
205 "vs-10030: merge to left: last unformatted node of non-last indirect item %h must have zerto free space",
206 ih);
207 if (bytes_or_entries == ih_item_len(ih))
208 set_ih_free_space(dih, get_ih_free_space(ih));
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700211 return 1;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700214 /* copy boundary item to right (last_first == LAST_TO_FIRST) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jeff Mahoney098297b2014-04-23 10:00:36 -0400216 /*
217 * (DEST is empty or last item of SOURCE and first item of DEST
218 * are the items of different object or of different types)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700219 */
220 src_nr_item = B_NR_ITEMS(src);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400221 ih = item_head(src, src_nr_item - 1);
222 dih = item_head(dest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400224 if (!dest_nr_item || !op_is_left_mergeable(&dih->ih_key, src->b_size))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 if (is_direntry_le_ih(ih)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400228 /*
229 * bytes_or_entries = entries number in last
230 * item body of SOURCE
231 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700232 if (bytes_or_entries == -1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700233 bytes_or_entries = ih_entry_count(ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700235 leaf_copy_dir_entries(dest_bi, src, LAST_TO_FIRST,
236 src_nr_item - 1,
237 ih_entry_count(ih) - bytes_or_entries,
238 bytes_or_entries);
239 return 1;
240 }
241
Jeff Mahoney098297b2014-04-23 10:00:36 -0400242 /*
243 * copy part of the body of the last item of SOURCE to the
244 * begin of the body of the first item of the DEST; part defined
245 * by 'bytes_or_entries'; if byte_or_entriess == -1 copy whole body;
246 * change first item key of the DEST; don't create new item header
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700247 */
248
249 RFALSE(is_indirect_le_ih(ih) && get_ih_free_space(ih),
250 "vs-10040: merge to right: last unformatted node of non-last indirect item must be filled entirely (%h)",
251 ih);
252
253 if (bytes_or_entries == -1) {
254 /* bytes_or_entries = length of last item body of SOURCE */
255 bytes_or_entries = ih_item_len(ih);
256
257 RFALSE(le_ih_k_offset(dih) !=
258 le_ih_k_offset(ih) + op_bytes_number(ih, src->b_size),
259 "vs-10050: items %h and %h do not match", ih, dih);
260
261 /* change first item key of the DEST */
262 set_le_ih_k_offset(dih, le_ih_k_offset(ih));
263
264 /* item becomes non-mergeable */
265 /* or mergeable if left item was */
266 set_le_ih_k_type(dih, le_ih_k_type(ih));
267 } else {
268 /* merge to right only part of item */
269 RFALSE(ih_item_len(ih) <= bytes_or_entries,
270 "vs-10060: no so much bytes %lu (needed %lu)",
271 (unsigned long)ih_item_len(ih),
272 (unsigned long)bytes_or_entries);
273
274 /* change first item key of the DEST */
275 if (is_direct_le_ih(dih)) {
276 RFALSE(le_ih_k_offset(dih) <=
277 (unsigned long)bytes_or_entries,
278 "vs-10070: dih %h, bytes_or_entries(%d)", dih,
279 bytes_or_entries);
280 set_le_ih_k_offset(dih,
281 le_ih_k_offset(dih) -
282 bytes_or_entries);
283 } else {
284 RFALSE(le_ih_k_offset(dih) <=
285 (bytes_or_entries / UNFM_P_SIZE) * dest->b_size,
286 "vs-10080: dih %h, bytes_or_entries(%d)",
287 dih,
288 (bytes_or_entries / UNFM_P_SIZE) * dest->b_size);
289 set_le_ih_k_offset(dih,
290 le_ih_k_offset(dih) -
291 ((bytes_or_entries / UNFM_P_SIZE) *
292 dest->b_size));
293 }
294 }
295
296 leaf_paste_in_buffer(dest_bi, 0, 0, bytes_or_entries,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400297 ih_item_body(src,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700298 ih) + ih_item_len(ih) - bytes_or_entries,
299 0);
300 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Jeff Mahoney098297b2014-04-23 10:00:36 -0400303/*
304 * copy cpy_mun items from buffer src to buffer dest
305 * last_first == FIRST_TO_LAST means, that we copy cpy_num items beginning
306 * from first-th item in src to tail of dest
307 * last_first == LAST_TO_FIRST means, that we copy cpy_num items beginning
308 * from first-th item in src to head of dest
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700310static void leaf_copy_items_entirely(struct buffer_info *dest_bi,
311 struct buffer_head *src, int last_first,
312 int first, int cpy_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700314 struct buffer_head *dest;
315 int nr, free_space;
316 int dest_before;
317 int last_loc, last_inserted_loc, location;
318 int i, j;
319 struct block_head *blkh;
320 struct item_head *ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700322 RFALSE(last_first != LAST_TO_FIRST && last_first != FIRST_TO_LAST,
323 "vs-10090: bad last_first parameter %d", last_first);
324 RFALSE(B_NR_ITEMS(src) - first < cpy_num,
325 "vs-10100: too few items in source %d, required %d from %d",
326 B_NR_ITEMS(src), cpy_num, first);
327 RFALSE(cpy_num < 0, "vs-10110: can not copy negative amount of items");
328 RFALSE(!dest_bi, "vs-10120: can not copy negative amount of items");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700330 dest = dest_bi->bi_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700332 RFALSE(!dest, "vs-10130: can not copy negative amount of items");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700334 if (cpy_num == 0)
335 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700337 blkh = B_BLK_HEAD(dest);
338 nr = blkh_nr_item(blkh);
339 free_space = blkh_free_space(blkh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Jeff Mahoney098297b2014-04-23 10:00:36 -0400341 /*
342 * we will insert items before 0-th or nr-th item in dest buffer.
343 * It depends of last_first parameter
344 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700345 dest_before = (last_first == LAST_TO_FIRST) ? 0 : nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700347 /* location of head of first new item */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400348 ih = item_head(dest, dest_before);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700350 RFALSE(blkh_free_space(blkh) < cpy_num * IH_SIZE,
351 "vs-10140: not enough free space for headers %d (needed %d)",
352 B_FREE_SPACE(dest), cpy_num * IH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700354 /* prepare space for headers */
355 memmove(ih + cpy_num, ih, (nr - dest_before) * IH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700357 /* copy item headers */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400358 memcpy(ih, item_head(src, first), cpy_num * IH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700360 free_space -= (IH_SIZE * cpy_num);
361 set_blkh_free_space(blkh, free_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700363 /* location of unmovable item */
364 j = location = (dest_before == 0) ? dest->b_size : ih_location(ih - 1);
365 for (i = dest_before; i < nr + cpy_num; i++) {
366 location -= ih_item_len(ih + i - dest_before);
367 put_ih_location(ih + i - dest_before, location);
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700370 /* prepare space for items */
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400371 last_loc = ih_location(&ih[nr + cpy_num - 1 - dest_before]);
372 last_inserted_loc = ih_location(&ih[cpy_num - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700374 /* check free space */
375 RFALSE(free_space < j - last_inserted_loc,
376 "vs-10150: not enough free space for items %d (needed %d)",
377 free_space, j - last_inserted_loc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700379 memmove(dest->b_data + last_loc,
380 dest->b_data + last_loc + j - last_inserted_loc,
381 last_inserted_loc - last_loc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700383 /* copy items */
384 memcpy(dest->b_data + last_inserted_loc,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400385 item_body(src, (first + cpy_num - 1)),
386 j - last_inserted_loc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 /* sizes, item number */
389 set_blkh_nr_item(blkh, nr + cpy_num);
390 set_blkh_free_space(blkh, free_space - (j - last_inserted_loc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700392 do_balance_mark_leaf_dirty(dest_bi->tb, dest, 0);
393
394 if (dest_bi->bi_parent) {
395 struct disk_child *t_dc;
396 t_dc = B_N_CHILD(dest_bi->bi_parent, dest_bi->bi_position);
397 RFALSE(dc_block_number(t_dc) != dest->b_blocknr,
398 "vs-10160: block number in bh does not match to field in disk_child structure %lu and %lu",
399 (long unsigned)dest->b_blocknr,
400 (long unsigned)dc_block_number(t_dc));
401 put_dc_size(t_dc,
402 dc_size(t_dc) + (j - last_inserted_loc +
403 IH_SIZE * cpy_num));
404
405 do_balance_mark_internal_dirty(dest_bi->tb, dest_bi->bi_parent,
406 0);
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Jeff Mahoney098297b2014-04-23 10:00:36 -0400410/*
411 * This function splits the (liquid) item into two items (useful when
412 * shifting part of an item into another node.)
413 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700414static void leaf_item_bottle(struct buffer_info *dest_bi,
415 struct buffer_head *src, int last_first,
416 int item_num, int cpy_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700418 struct buffer_head *dest = dest_bi->bi_bh;
419 struct item_head *ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700421 RFALSE(cpy_bytes == -1,
422 "vs-10170: bytes == - 1 means: do not split item");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700424 if (last_first == FIRST_TO_LAST) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400425 /*
426 * if ( if item in position item_num in buffer SOURCE
427 * is directory item )
428 */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400429 ih = item_head(src, item_num);
Jeff Mahoney1d965fe2009-06-17 16:26:29 -0700430 if (is_direntry_le_ih(ih))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700431 leaf_copy_dir_entries(dest_bi, src, FIRST_TO_LAST,
432 item_num, 0, cpy_bytes);
433 else {
434 struct item_head n_ih;
435
Jeff Mahoney098297b2014-04-23 10:00:36 -0400436 /*
437 * copy part of the body of the item number 'item_num'
438 * of SOURCE to the end of the DEST part defined by
439 * 'cpy_bytes'; create new item header; change old
440 * item_header (????); n_ih = new item_header;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700441 */
442 memcpy(&n_ih, ih, IH_SIZE);
443 put_ih_item_len(&n_ih, cpy_bytes);
444 if (is_indirect_le_ih(ih)) {
445 RFALSE(cpy_bytes == ih_item_len(ih)
446 && get_ih_free_space(ih),
447 "vs-10180: when whole indirect item is bottle to left neighbor, it must have free_space==0 (not %lu)",
448 (long unsigned)get_ih_free_space(ih));
449 set_ih_free_space(&n_ih, 0);
450 }
451
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400452 RFALSE(op_is_left_mergeable(&ih->ih_key, src->b_size),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700453 "vs-10190: bad mergeability of item %h", ih);
454 n_ih.ih_version = ih->ih_version; /* JDM Endian safe, both le */
455 leaf_insert_into_buf(dest_bi, B_NR_ITEMS(dest), &n_ih,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400456 item_body(src, item_num), 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700457 }
458 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400459 /*
460 * if ( if item in position item_num in buffer
461 * SOURCE is directory item )
462 */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400463 ih = item_head(src, item_num);
Jeff Mahoney1d965fe2009-06-17 16:26:29 -0700464 if (is_direntry_le_ih(ih))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700465 leaf_copy_dir_entries(dest_bi, src, LAST_TO_FIRST,
466 item_num,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400467 ih_entry_count(ih) - cpy_bytes,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700468 cpy_bytes);
469 else {
470 struct item_head n_ih;
471
Jeff Mahoney098297b2014-04-23 10:00:36 -0400472 /*
473 * copy part of the body of the item number 'item_num'
474 * of SOURCE to the begin of the DEST part defined by
475 * 'cpy_bytes'; create new item header;
476 * n_ih = new item_header;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700477 */
478 memcpy(&n_ih, ih, SHORT_KEY_SIZE);
479
Jeff Mahoney098297b2014-04-23 10:00:36 -0400480 /* Endian safe, both le */
481 n_ih.ih_version = ih->ih_version;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700482
483 if (is_direct_le_ih(ih)) {
484 set_le_ih_k_offset(&n_ih,
485 le_ih_k_offset(ih) +
486 ih_item_len(ih) - cpy_bytes);
487 set_le_ih_k_type(&n_ih, TYPE_DIRECT);
488 set_ih_free_space(&n_ih, MAX_US_INT);
489 } else {
490 /* indirect item */
491 RFALSE(!cpy_bytes && get_ih_free_space(ih),
492 "vs-10200: ih->ih_free_space must be 0 when indirect item will be appended");
493 set_le_ih_k_offset(&n_ih,
494 le_ih_k_offset(ih) +
495 (ih_item_len(ih) -
496 cpy_bytes) / UNFM_P_SIZE *
497 dest->b_size);
498 set_le_ih_k_type(&n_ih, TYPE_INDIRECT);
499 set_ih_free_space(&n_ih, get_ih_free_space(ih));
500 }
501
502 /* set item length */
503 put_ih_item_len(&n_ih, cpy_bytes);
504
Jeff Mahoney098297b2014-04-23 10:00:36 -0400505 /* Endian safe, both le */
506 n_ih.ih_version = ih->ih_version;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700507
508 leaf_insert_into_buf(dest_bi, 0, &n_ih,
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400509 item_body(src, item_num) +
510 ih_item_len(ih) - cpy_bytes, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Jeff Mahoney098297b2014-04-23 10:00:36 -0400515/*
516 * If cpy_bytes equals minus one than copy cpy_num whole items from SOURCE
517 * to DEST. If cpy_bytes not equal to minus one than copy cpy_num-1 whole
518 * items from SOURCE to DEST. From last item copy cpy_num bytes for regular
519 * item and cpy_num directory entries for directory item.
520 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700521static int leaf_copy_items(struct buffer_info *dest_bi, struct buffer_head *src,
522 int last_first, int cpy_num, int cpy_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700524 struct buffer_head *dest;
525 int pos, i, src_nr_item, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700527 dest = dest_bi->bi_bh;
528 RFALSE(!dest || !src, "vs-10210: !dest || !src");
529 RFALSE(last_first != FIRST_TO_LAST && last_first != LAST_TO_FIRST,
530 "vs-10220:last_first != FIRST_TO_LAST && last_first != LAST_TO_FIRST");
531 RFALSE(B_NR_ITEMS(src) < cpy_num,
532 "vs-10230: No enough items: %d, req. %d", B_NR_ITEMS(src),
533 cpy_num);
534 RFALSE(cpy_num < 0, "vs-10240: cpy_num < 0 (%d)", cpy_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700536 if (cpy_num == 0)
537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700539 if (last_first == FIRST_TO_LAST) {
540 /* copy items to left */
541 pos = 0;
542 if (cpy_num == 1)
543 bytes = cpy_bytes;
544 else
545 bytes = -1;
546
Jeff Mahoney098297b2014-04-23 10:00:36 -0400547 /*
548 * copy the first item or it part or nothing to the end of
549 * the DEST (i = leaf_copy_boundary_item(DEST,SOURCE,0,bytes))
550 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700551 i = leaf_copy_boundary_item(dest_bi, src, FIRST_TO_LAST, bytes);
552 cpy_num -= i;
553 if (cpy_num == 0)
554 return i;
555 pos += i;
556 if (cpy_bytes == -1)
Jeff Mahoney098297b2014-04-23 10:00:36 -0400557 /*
558 * copy first cpy_num items starting from position
559 * 'pos' of SOURCE to end of DEST
560 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700561 leaf_copy_items_entirely(dest_bi, src, FIRST_TO_LAST,
562 pos, cpy_num);
563 else {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400564 /*
565 * copy first cpy_num-1 items starting from position
566 * 'pos-1' of the SOURCE to the end of the DEST
567 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700568 leaf_copy_items_entirely(dest_bi, src, FIRST_TO_LAST,
569 pos, cpy_num - 1);
570
Jeff Mahoney098297b2014-04-23 10:00:36 -0400571 /*
572 * copy part of the item which number is
573 * cpy_num+pos-1 to the end of the DEST
574 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700575 leaf_item_bottle(dest_bi, src, FIRST_TO_LAST,
576 cpy_num + pos - 1, cpy_bytes);
577 }
578 } else {
579 /* copy items to right */
580 src_nr_item = B_NR_ITEMS(src);
581 if (cpy_num == 1)
582 bytes = cpy_bytes;
583 else
584 bytes = -1;
585
Jeff Mahoney098297b2014-04-23 10:00:36 -0400586 /*
587 * copy the last item or it part or nothing to the
588 * begin of the DEST
589 * (i = leaf_copy_boundary_item(DEST,SOURCE,1,bytes));
590 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700591 i = leaf_copy_boundary_item(dest_bi, src, LAST_TO_FIRST, bytes);
592
593 cpy_num -= i;
594 if (cpy_num == 0)
595 return i;
596
597 pos = src_nr_item - cpy_num - i;
598 if (cpy_bytes == -1) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400599 /*
600 * starting from position 'pos' copy last cpy_num
601 * items of SOURCE to begin of DEST
602 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700603 leaf_copy_items_entirely(dest_bi, src, LAST_TO_FIRST,
604 pos, cpy_num);
605 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400606 /*
607 * copy last cpy_num-1 items starting from position
608 * 'pos+1' of the SOURCE to the begin of the DEST;
609 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700610 leaf_copy_items_entirely(dest_bi, src, LAST_TO_FIRST,
611 pos + 1, cpy_num - 1);
612
Jeff Mahoney098297b2014-04-23 10:00:36 -0400613 /*
614 * copy part of the item which number is pos to
615 * the begin of the DEST
616 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700617 leaf_item_bottle(dest_bi, src, LAST_TO_FIRST, pos,
618 cpy_bytes);
619 }
620 }
621 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Jeff Mahoney098297b2014-04-23 10:00:36 -0400624/*
625 * there are types of coping: from S[0] to L[0], from S[0] to R[0],
626 * from R[0] to L[0]. for each of these we have to define parent and
627 * positions of destination and source buffers
628 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700629static void leaf_define_dest_src_infos(int shift_mode, struct tree_balance *tb,
630 struct buffer_info *dest_bi,
631 struct buffer_info *src_bi,
632 int *first_last,
633 struct buffer_head *Snew)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700635 memset(dest_bi, 0, sizeof(struct buffer_info));
636 memset(src_bi, 0, sizeof(struct buffer_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700638 /* define dest, src, dest parent, dest position */
639 switch (shift_mode) {
640 case LEAF_FROM_S_TO_L: /* it is used in leaf_shift_left */
641 src_bi->tb = tb;
642 src_bi->bi_bh = PATH_PLAST_BUFFER(tb->tb_path);
643 src_bi->bi_parent = PATH_H_PPARENT(tb->tb_path, 0);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400644
645 /* src->b_item_order */
646 src_bi->bi_position = PATH_H_B_ITEM_ORDER(tb->tb_path, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700647 dest_bi->tb = tb;
648 dest_bi->bi_bh = tb->L[0];
649 dest_bi->bi_parent = tb->FL[0];
650 dest_bi->bi_position = get_left_neighbor_position(tb, 0);
651 *first_last = FIRST_TO_LAST;
652 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700654 case LEAF_FROM_S_TO_R: /* it is used in leaf_shift_right */
655 src_bi->tb = tb;
656 src_bi->bi_bh = PATH_PLAST_BUFFER(tb->tb_path);
657 src_bi->bi_parent = PATH_H_PPARENT(tb->tb_path, 0);
658 src_bi->bi_position = PATH_H_B_ITEM_ORDER(tb->tb_path, 0);
659 dest_bi->tb = tb;
660 dest_bi->bi_bh = tb->R[0];
661 dest_bi->bi_parent = tb->FR[0];
662 dest_bi->bi_position = get_right_neighbor_position(tb, 0);
663 *first_last = LAST_TO_FIRST;
664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700666 case LEAF_FROM_R_TO_L: /* it is used in balance_leaf_when_delete */
667 src_bi->tb = tb;
668 src_bi->bi_bh = tb->R[0];
669 src_bi->bi_parent = tb->FR[0];
670 src_bi->bi_position = get_right_neighbor_position(tb, 0);
671 dest_bi->tb = tb;
672 dest_bi->bi_bh = tb->L[0];
673 dest_bi->bi_parent = tb->FL[0];
674 dest_bi->bi_position = get_left_neighbor_position(tb, 0);
675 *first_last = FIRST_TO_LAST;
676 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700678 case LEAF_FROM_L_TO_R: /* it is used in balance_leaf_when_delete */
679 src_bi->tb = tb;
680 src_bi->bi_bh = tb->L[0];
681 src_bi->bi_parent = tb->FL[0];
682 src_bi->bi_position = get_left_neighbor_position(tb, 0);
683 dest_bi->tb = tb;
684 dest_bi->bi_bh = tb->R[0];
685 dest_bi->bi_parent = tb->FR[0];
686 dest_bi->bi_position = get_right_neighbor_position(tb, 0);
687 *first_last = LAST_TO_FIRST;
688 break;
689
690 case LEAF_FROM_S_TO_SNEW:
691 src_bi->tb = tb;
692 src_bi->bi_bh = PATH_PLAST_BUFFER(tb->tb_path);
693 src_bi->bi_parent = PATH_H_PPARENT(tb->tb_path, 0);
694 src_bi->bi_position = PATH_H_B_ITEM_ORDER(tb->tb_path, 0);
695 dest_bi->tb = tb;
696 dest_bi->bi_bh = Snew;
697 dest_bi->bi_parent = NULL;
698 dest_bi->bi_position = 0;
699 *first_last = LAST_TO_FIRST;
700 break;
701
702 default:
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400703 reiserfs_panic(sb_from_bi(src_bi), "vs-10250",
704 "shift type is unknown (%d)", shift_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700705 }
Al Viro9dce07f2008-03-29 03:07:28 +0000706 RFALSE(!src_bi->bi_bh || !dest_bi->bi_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700707 "vs-10260: mode==%d, source (%p) or dest (%p) buffer is initialized incorrectly",
708 shift_mode, src_bi->bi_bh, dest_bi->bi_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Jeff Mahoney098297b2014-04-23 10:00:36 -0400711/*
712 * copy mov_num items and mov_bytes of the (mov_num-1)th item to
713 * neighbor. Delete them from source
714 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700715int leaf_move_items(int shift_mode, struct tree_balance *tb, int mov_num,
716 int mov_bytes, struct buffer_head *Snew)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700718 int ret_value;
719 struct buffer_info dest_bi, src_bi;
720 int first_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700722 leaf_define_dest_src_infos(shift_mode, tb, &dest_bi, &src_bi,
723 &first_last, Snew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700725 ret_value =
726 leaf_copy_items(&dest_bi, src_bi.bi_bh, first_last, mov_num,
727 mov_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700729 leaf_delete_items(&src_bi, first_last,
730 (first_last ==
731 FIRST_TO_LAST) ? 0 : (B_NR_ITEMS(src_bi.bi_bh) -
732 mov_num), mov_num, mov_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700734 return ret_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Jeff Mahoney098297b2014-04-23 10:00:36 -0400737/*
738 * Shift shift_num items (and shift_bytes of last shifted item if
739 * shift_bytes != -1) from S[0] to L[0] and replace the delimiting key
740 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741int leaf_shift_left(struct tree_balance *tb, int shift_num, int shift_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700743 struct buffer_head *S0 = PATH_PLAST_BUFFER(tb->tb_path);
744 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Jeff Mahoney098297b2014-04-23 10:00:36 -0400746 /*
747 * move shift_num (and shift_bytes bytes) items from S[0]
748 * to left neighbor L[0]
749 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700750 i = leaf_move_items(LEAF_FROM_S_TO_L, tb, shift_num, shift_bytes, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700752 if (shift_num) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400753 /* number of items in S[0] == 0 */
754 if (B_NR_ITEMS(S0) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700756 RFALSE(shift_bytes != -1,
757 "vs-10270: S0 is empty now, but shift_bytes != -1 (%d)",
758 shift_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700760 if (tb->tb_mode == M_PASTE || tb->tb_mode == M_INSERT) {
761 print_cur_tb("vs-10275");
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400762 reiserfs_panic(tb->tb_sb, "vs-10275",
763 "balance condition corrupted "
764 "(%c)", tb->tb_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766#endif
767
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700768 if (PATH_H_POSITION(tb->tb_path, 1) == 0)
769 replace_key(tb, tb->CFL[0], tb->lkey[0],
770 PATH_H_PPARENT(tb->tb_path, 0), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700772 } else {
773 /* replace lkey in CFL[0] by 0-th key from S[0]; */
774 replace_key(tb, tb->CFL[0], tb->lkey[0], S0, 0);
775
776 RFALSE((shift_bytes != -1 &&
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400777 !(is_direntry_le_ih(item_head(S0, 0))
778 && !ih_entry_count(item_head(S0, 0)))) &&
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700779 (!op_is_left_mergeable
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400780 (leaf_key(S0, 0), S0->b_size)),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700781 "vs-10280: item must be mergeable");
782 }
783 }
784
785 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/* CLEANING STOPPED HERE */
789
Jeff Mahoney098297b2014-04-23 10:00:36 -0400790/*
791 * Shift shift_num (shift_bytes) items from S[0] to the right neighbor,
792 * and replace the delimiting key
793 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700794int leaf_shift_right(struct tree_balance *tb, int shift_num, int shift_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700796 int ret_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Jeff Mahoney098297b2014-04-23 10:00:36 -0400798 /*
799 * move shift_num (and shift_bytes) items from S[0] to
800 * right neighbor R[0]
801 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700802 ret_value =
803 leaf_move_items(LEAF_FROM_S_TO_R, tb, shift_num, shift_bytes, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700805 /* replace rkey in CFR[0] by the 0-th key from R[0] */
806 if (shift_num) {
807 replace_key(tb, tb->CFR[0], tb->rkey[0], tb->R[0], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700811 return ret_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700814static void leaf_delete_items_entirely(struct buffer_info *bi,
815 int first, int del_num);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400816/*
817 * If del_bytes == -1, starting from position 'first' delete del_num
818 * items in whole in buffer CUR.
819 * If not.
820 * If last_first == 0. Starting from position 'first' delete del_num-1
821 * items in whole. Delete part of body of the first item. Part defined by
822 * del_bytes. Don't delete first item header
823 * If last_first == 1. Starting from position 'first+1' delete del_num-1
824 * items in whole. Delete part of body of the last item . Part defined by
825 * del_bytes. Don't delete last item header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700827void leaf_delete_items(struct buffer_info *cur_bi, int last_first,
828 int first, int del_num, int del_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700830 struct buffer_head *bh;
831 int item_amount = B_NR_ITEMS(bh = cur_bi->bi_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700833 RFALSE(!bh, "10155: bh is not defined");
834 RFALSE(del_num < 0, "10160: del_num can not be < 0. del_num==%d",
835 del_num);
836 RFALSE(first < 0
837 || first + del_num > item_amount,
838 "10165: invalid number of first item to be deleted (%d) or "
839 "no so much items (%d) to delete (only %d)", first,
840 first + del_num, item_amount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700842 if (del_num == 0)
843 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700845 if (first == 0 && del_num == item_amount && del_bytes == -1) {
846 make_empty_node(cur_bi);
847 do_balance_mark_leaf_dirty(cur_bi->tb, bh, 0);
848 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700851 if (del_bytes == -1)
852 /* delete del_num items beginning from item in position first */
853 leaf_delete_items_entirely(cur_bi, first, del_num);
854 else {
855 if (last_first == FIRST_TO_LAST) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400856 /*
857 * delete del_num-1 items beginning from
858 * item in position first
859 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700860 leaf_delete_items_entirely(cur_bi, first, del_num - 1);
861
Jeff Mahoney098297b2014-04-23 10:00:36 -0400862 /*
863 * delete the part of the first item of the bh
864 * do not delete item header
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700865 */
866 leaf_cut_from_buffer(cur_bi, 0, 0, del_bytes);
867 } else {
868 struct item_head *ih;
869 int len;
870
Jeff Mahoney098297b2014-04-23 10:00:36 -0400871 /*
872 * delete del_num-1 items beginning from
873 * item in position first+1
874 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700875 leaf_delete_items_entirely(cur_bi, first + 1,
876 del_num - 1);
877
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400878 ih = item_head(bh, B_NR_ITEMS(bh) - 1);
Jeff Mahoney1d965fe2009-06-17 16:26:29 -0700879 if (is_direntry_le_ih(ih))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700880 /* the last item is directory */
Jeff Mahoney098297b2014-04-23 10:00:36 -0400881 /*
882 * len = numbers of directory entries
883 * in this item
884 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700885 len = ih_entry_count(ih);
886 else
887 /* len = body len of item */
888 len = ih_item_len(ih);
889
Jeff Mahoney098297b2014-04-23 10:00:36 -0400890 /*
891 * delete the part of the last item of the bh
892 * do not delete item header
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700893 */
894 leaf_cut_from_buffer(cur_bi, B_NR_ITEMS(bh) - 1,
895 len - del_bytes, del_bytes);
896 }
897 }
898}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900/* insert item into the leaf node in position before */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700901void leaf_insert_into_buf(struct buffer_info *bi, int before,
902 struct item_head *inserted_item_ih,
903 const char *inserted_item_body, int zeros_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700905 struct buffer_head *bh = bi->bi_bh;
906 int nr, free_space;
907 struct block_head *blkh;
908 struct item_head *ih;
909 int i;
910 int last_loc, unmoved_loc;
911 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700913 blkh = B_BLK_HEAD(bh);
914 nr = blkh_nr_item(blkh);
915 free_space = blkh_free_space(blkh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700917 /* check free space */
918 RFALSE(free_space < ih_item_len(inserted_item_ih) + IH_SIZE,
919 "vs-10170: not enough free space in block %z, new item %h",
920 bh, inserted_item_ih);
921 RFALSE(zeros_number > ih_item_len(inserted_item_ih),
922 "vs-10172: zero number == %d, item length == %d",
923 zeros_number, ih_item_len(inserted_item_ih));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700925 /* get item new item must be inserted before */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400926 ih = item_head(bh, before);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700928 /* prepare space for the body of new item */
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400929 last_loc = nr ? ih_location(&ih[nr - before - 1]) : bh->b_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700930 unmoved_loc = before ? ih_location(ih - 1) : bh->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700932 memmove(bh->b_data + last_loc - ih_item_len(inserted_item_ih),
933 bh->b_data + last_loc, unmoved_loc - last_loc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700935 to = bh->b_data + unmoved_loc - ih_item_len(inserted_item_ih);
936 memset(to, 0, zeros_number);
937 to += zeros_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700939 /* copy body to prepared space */
940 if (inserted_item_body)
941 memmove(to, inserted_item_body,
942 ih_item_len(inserted_item_ih) - zeros_number);
943 else
944 memset(to, '\0', ih_item_len(inserted_item_ih) - zeros_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700946 /* insert item header */
947 memmove(ih + 1, ih, IH_SIZE * (nr - before));
948 memmove(ih, inserted_item_ih, IH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700950 /* change locations */
951 for (i = before; i < nr + 1; i++) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400952 unmoved_loc -= ih_item_len(&ih[i - before]);
953 put_ih_location(&ih[i - before], unmoved_loc);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700956 /* sizes, free space, item number */
957 set_blkh_nr_item(blkh, blkh_nr_item(blkh) + 1);
958 set_blkh_free_space(blkh,
959 free_space - (IH_SIZE +
960 ih_item_len(inserted_item_ih)));
961 do_balance_mark_leaf_dirty(bi->tb, bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700963 if (bi->bi_parent) {
964 struct disk_child *t_dc;
965 t_dc = B_N_CHILD(bi->bi_parent, bi->bi_position);
966 put_dc_size(t_dc,
967 dc_size(t_dc) + (IH_SIZE +
968 ih_item_len(inserted_item_ih)));
969 do_balance_mark_internal_dirty(bi->tb, bi->bi_parent, 0);
970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Jeff Mahoney098297b2014-04-23 10:00:36 -0400973/*
974 * paste paste_size bytes to affected_item_num-th item.
975 * When item is a directory, this only prepare space for new entries
976 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700977void leaf_paste_in_buffer(struct buffer_info *bi, int affected_item_num,
978 int pos_in_item, int paste_size,
979 const char *body, int zeros_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700981 struct buffer_head *bh = bi->bi_bh;
982 int nr, free_space;
983 struct block_head *blkh;
984 struct item_head *ih;
985 int i;
986 int last_loc, unmoved_loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700988 blkh = B_BLK_HEAD(bh);
989 nr = blkh_nr_item(blkh);
990 free_space = blkh_free_space(blkh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700992 /* check free space */
993 RFALSE(free_space < paste_size,
994 "vs-10175: not enough free space: needed %d, available %d",
995 paste_size, free_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700998 if (zeros_number > paste_size) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400999 struct super_block *sb = NULL;
1000 if (bi && bi->tb)
1001 sb = bi->tb->tb_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001002 print_cur_tb("10177");
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001003 reiserfs_panic(sb, "vs-10177",
1004 "zeros_number == %d, paste_size == %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001005 zeros_number, paste_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001007#endif /* CONFIG_REISERFS_CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001009 /* item to be appended */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001010 ih = item_head(bh, affected_item_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001012 last_loc = ih_location(&ih[nr - affected_item_num - 1]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001013 unmoved_loc = affected_item_num ? ih_location(ih - 1) : bh->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001015 /* prepare space */
1016 memmove(bh->b_data + last_loc - paste_size, bh->b_data + last_loc,
1017 unmoved_loc - last_loc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001019 /* change locations */
1020 for (i = affected_item_num; i < nr; i++)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001021 put_ih_location(&ih[i - affected_item_num],
1022 ih_location(&ih[i - affected_item_num]) -
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001023 paste_size);
1024
1025 if (body) {
1026 if (!is_direntry_le_ih(ih)) {
1027 if (!pos_in_item) {
1028 /* shift data to right */
1029 memmove(bh->b_data + ih_location(ih) +
1030 paste_size,
1031 bh->b_data + ih_location(ih),
1032 ih_item_len(ih));
1033 /* paste data in the head of item */
1034 memset(bh->b_data + ih_location(ih), 0,
1035 zeros_number);
1036 memcpy(bh->b_data + ih_location(ih) +
1037 zeros_number, body,
1038 paste_size - zeros_number);
1039 } else {
1040 memset(bh->b_data + unmoved_loc - paste_size, 0,
1041 zeros_number);
1042 memcpy(bh->b_data + unmoved_loc - paste_size +
1043 zeros_number, body,
1044 paste_size - zeros_number);
1045 }
1046 }
1047 } else
1048 memset(bh->b_data + unmoved_loc - paste_size, '\0', paste_size);
1049
1050 put_ih_item_len(ih, ih_item_len(ih) + paste_size);
1051
1052 /* change free space */
1053 set_blkh_free_space(blkh, free_space - paste_size);
1054
1055 do_balance_mark_leaf_dirty(bi->tb, bh, 0);
1056
1057 if (bi->bi_parent) {
1058 struct disk_child *t_dc =
1059 B_N_CHILD(bi->bi_parent, bi->bi_position);
1060 put_dc_size(t_dc, dc_size(t_dc) + paste_size);
1061 do_balance_mark_internal_dirty(bi->tb, bi->bi_parent, 0);
1062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
Jeff Mahoney098297b2014-04-23 10:00:36 -04001065/*
1066 * cuts DEL_COUNT entries beginning from FROM-th entry. Directory item
1067 * does not have free space, so it moves DEHs and remaining records as
1068 * necessary. Return value is size of removed part of directory item
1069 * in bytes.
1070 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001071static int leaf_cut_entries(struct buffer_head *bh,
1072 struct item_head *ih, int from, int del_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001074 char *item;
1075 struct reiserfs_de_head *deh;
1076 int prev_record_offset; /* offset of record, that is (from-1)th */
1077 char *prev_record; /* */
1078 int cut_records_len; /* length of all removed records */
1079 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Jeff Mahoney098297b2014-04-23 10:00:36 -04001081 /*
1082 * make sure that item is directory and there are enough entries to
1083 * remove
1084 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001085 RFALSE(!is_direntry_le_ih(ih), "10180: item is not directory item");
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001086 RFALSE(ih_entry_count(ih) < from + del_count,
Masanari Iida8112b982012-01-22 23:27:00 +09001087 "10185: item contains not enough entries: entry_count = %d, from = %d, to delete = %d",
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001088 ih_entry_count(ih), from, del_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001090 if (del_count == 0)
1091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001093 /* first byte of item */
1094 item = bh->b_data + ih_location(ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001096 /* entry head array */
1097 deh = B_I_DEH(bh, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Jeff Mahoney098297b2014-04-23 10:00:36 -04001099 /*
1100 * first byte of remaining entries, those are BEFORE cut entries
1101 * (prev_record) and length of all removed records (cut_records_len)
1102 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001103 prev_record_offset =
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001104 (from ? deh_location(&deh[from - 1]) : ih_item_len(ih));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001105 cut_records_len = prev_record_offset /*from_record */ -
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001106 deh_location(&deh[from + del_count - 1]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001107 prev_record = item + prev_record_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001109 /* adjust locations of remaining entries */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001110 for (i = ih_entry_count(ih) - 1; i > from + del_count - 1; i--)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001111 put_deh_location(&deh[i],
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001112 deh_location(&deh[i]) -
1113 (DEH_SIZE * del_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001115 for (i = 0; i < from; i++)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001116 put_deh_location(&deh[i],
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001117 deh_location(&deh[i]) - (DEH_SIZE * del_count +
1118 cut_records_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001120 put_ih_entry_count(ih, ih_entry_count(ih) - del_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001122 /* shift entry head array and entries those are AFTER removed entries */
1123 memmove((char *)(deh + from),
1124 deh + from + del_count,
1125 prev_record - cut_records_len - (char *)(deh + from +
1126 del_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001128 /* shift records, those are BEFORE removed entries */
1129 memmove(prev_record - cut_records_len - DEH_SIZE * del_count,
1130 prev_record, item + ih_item_len(ih) - prev_record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001132 return DEH_SIZE * del_count + cut_records_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Jeff Mahoney098297b2014-04-23 10:00:36 -04001135/*
1136 * when cut item is part of regular file
1137 * pos_in_item - first byte that must be cut
1138 * cut_size - number of bytes to be cut beginning from pos_in_item
1139 *
1140 * when cut item is part of directory
1141 * pos_in_item - number of first deleted entry
1142 * cut_size - count of deleted entries
1143 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001144void leaf_cut_from_buffer(struct buffer_info *bi, int cut_item_num,
1145 int pos_in_item, int cut_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001147 int nr;
1148 struct buffer_head *bh = bi->bi_bh;
1149 struct block_head *blkh;
1150 struct item_head *ih;
1151 int last_loc, unmoved_loc;
1152 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001154 blkh = B_BLK_HEAD(bh);
1155 nr = blkh_nr_item(blkh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001157 /* item head of truncated item */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001158 ih = item_head(bh, cut_item_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001160 if (is_direntry_le_ih(ih)) {
1161 /* first cut entry () */
1162 cut_size = leaf_cut_entries(bh, ih, pos_in_item, cut_size);
1163 if (pos_in_item == 0) {
1164 /* change key */
1165 RFALSE(cut_item_num,
1166 "when 0-th enrty of item is cut, that item must be first in the node, not %d-th",
1167 cut_item_num);
1168 /* change item key by key of first entry in the item */
1169 set_le_ih_k_offset(ih, deh_offset(B_I_DEH(bh, ih)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001170 }
1171 } else {
1172 /* item is direct or indirect */
1173 RFALSE(is_statdata_le_ih(ih), "10195: item is stat data");
1174 RFALSE(pos_in_item && pos_in_item + cut_size != ih_item_len(ih),
1175 "10200: invalid offset (%lu) or trunc_size (%lu) or ih_item_len (%lu)",
1176 (long unsigned)pos_in_item, (long unsigned)cut_size,
1177 (long unsigned)ih_item_len(ih));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001179 /* shift item body to left if cut is from the head of item */
1180 if (pos_in_item == 0) {
1181 memmove(bh->b_data + ih_location(ih),
1182 bh->b_data + ih_location(ih) + cut_size,
1183 ih_item_len(ih) - cut_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001185 /* change key of item */
1186 if (is_direct_le_ih(ih))
1187 set_le_ih_k_offset(ih,
1188 le_ih_k_offset(ih) +
1189 cut_size);
1190 else {
1191 set_le_ih_k_offset(ih,
1192 le_ih_k_offset(ih) +
1193 (cut_size / UNFM_P_SIZE) *
1194 bh->b_size);
1195 RFALSE(ih_item_len(ih) == cut_size
1196 && get_ih_free_space(ih),
1197 "10205: invalid ih_free_space (%h)", ih);
1198 }
1199 }
1200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001202 /* location of the last item */
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001203 last_loc = ih_location(&ih[nr - cut_item_num - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001205 /* location of the item, which is remaining at the same place */
1206 unmoved_loc = cut_item_num ? ih_location(ih - 1) : bh->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001208 /* shift */
1209 memmove(bh->b_data + last_loc + cut_size, bh->b_data + last_loc,
1210 unmoved_loc - last_loc - cut_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001212 /* change item length */
1213 put_ih_item_len(ih, ih_item_len(ih) - cut_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001215 if (is_indirect_le_ih(ih)) {
1216 if (pos_in_item)
1217 set_ih_free_space(ih, 0);
1218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001220 /* change locations */
1221 for (i = cut_item_num; i < nr; i++)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001222 put_ih_location(&ih[i - cut_item_num],
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001223 ih_location(&ih[i - cut_item_num]) + cut_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001225 /* size, free space */
1226 set_blkh_free_space(blkh, blkh_free_space(blkh) + cut_size);
1227
1228 do_balance_mark_leaf_dirty(bi->tb, bh, 0);
1229
1230 if (bi->bi_parent) {
1231 struct disk_child *t_dc;
1232 t_dc = B_N_CHILD(bi->bi_parent, bi->bi_position);
1233 put_dc_size(t_dc, dc_size(t_dc) - cut_size);
1234 do_balance_mark_internal_dirty(bi->tb, bi->bi_parent, 0);
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238/* delete del_num items from buffer starting from the first'th item */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001239static void leaf_delete_items_entirely(struct buffer_info *bi,
1240 int first, int del_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001242 struct buffer_head *bh = bi->bi_bh;
1243 int nr;
1244 int i, j;
1245 int last_loc, last_removed_loc;
1246 struct block_head *blkh;
1247 struct item_head *ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001249 RFALSE(bh == NULL, "10210: buffer is 0");
1250 RFALSE(del_num < 0, "10215: del_num less than 0 (%d)", del_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001252 if (del_num == 0)
1253 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001255 blkh = B_BLK_HEAD(bh);
1256 nr = blkh_nr_item(blkh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001258 RFALSE(first < 0 || first + del_num > nr,
1259 "10220: first=%d, number=%d, there is %d items", first, del_num,
1260 nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001262 if (first == 0 && del_num == nr) {
1263 /* this does not work */
1264 make_empty_node(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001266 do_balance_mark_leaf_dirty(bi->tb, bh, 0);
1267 return;
1268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001270 ih = item_head(bh, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001272 /* location of unmovable item */
1273 j = (first == 0) ? bh->b_size : ih_location(ih - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001275 /* delete items */
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001276 last_loc = ih_location(&ih[nr - 1 - first]);
1277 last_removed_loc = ih_location(&ih[del_num - 1]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001278
1279 memmove(bh->b_data + last_loc + j - last_removed_loc,
1280 bh->b_data + last_loc, last_removed_loc - last_loc);
1281
1282 /* delete item headers */
1283 memmove(ih, ih + del_num, (nr - first - del_num) * IH_SIZE);
1284
1285 /* change item location */
1286 for (i = first; i < nr - del_num; i++)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001287 put_ih_location(&ih[i - first],
1288 ih_location(&ih[i - first]) + (j -
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001289 last_removed_loc));
1290
1291 /* sizes, item number */
1292 set_blkh_nr_item(blkh, blkh_nr_item(blkh) - del_num);
1293 set_blkh_free_space(blkh,
1294 blkh_free_space(blkh) + (j - last_removed_loc +
1295 IH_SIZE * del_num));
1296
1297 do_balance_mark_leaf_dirty(bi->tb, bh, 0);
1298
1299 if (bi->bi_parent) {
1300 struct disk_child *t_dc =
1301 B_N_CHILD(bi->bi_parent, bi->bi_position);
1302 put_dc_size(t_dc,
1303 dc_size(t_dc) - (j - last_removed_loc +
1304 IH_SIZE * del_num));
1305 do_balance_mark_internal_dirty(bi->tb, bi->bi_parent, 0);
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Jeff Mahoney098297b2014-04-23 10:00:36 -04001309/*
1310 * paste new_entry_count entries (new_dehs, records) into position
1311 * before to item_num-th item
1312 */
Jeff Mahoneyeba00302009-03-30 14:02:18 -04001313void leaf_paste_entries(struct buffer_info *bi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 int item_num,
1315 int before,
1316 int new_entry_count,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001317 struct reiserfs_de_head *new_dehs,
1318 const char *records, int paste_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001320 struct item_head *ih;
1321 char *item;
1322 struct reiserfs_de_head *deh;
1323 char *insert_point;
1324 int i, old_entry_num;
Jeff Mahoneyeba00302009-03-30 14:02:18 -04001325 struct buffer_head *bh = bi->bi_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001327 if (new_entry_count == 0)
1328 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001330 ih = item_head(bh, item_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Jeff Mahoney098297b2014-04-23 10:00:36 -04001332 /*
1333 * make sure, that item is directory, and there are enough
1334 * records in it
1335 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001336 RFALSE(!is_direntry_le_ih(ih), "10225: item is not directory item");
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001337 RFALSE(ih_entry_count(ih) < before,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001338 "10230: there are no entry we paste entries before. entry_count = %d, before = %d",
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001339 ih_entry_count(ih), before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001341 /* first byte of dest item */
1342 item = bh->b_data + ih_location(ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001344 /* entry head array */
1345 deh = B_I_DEH(bh, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001347 /* new records will be pasted at this point */
1348 insert_point =
1349 item +
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001350 (before ? deh_location(&deh[before - 1])
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001351 : (ih_item_len(ih) - paste_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001353 /* adjust locations of records that will be AFTER new records */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001354 for (i = ih_entry_count(ih) - 1; i >= before; i--)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001355 put_deh_location(&deh[i],
1356 deh_location(&deh[i]) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001357 (DEH_SIZE * new_entry_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001359 /* adjust locations of records that will be BEFORE new records */
1360 for (i = 0; i < before; i++)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001361 put_deh_location(&deh[i],
1362 deh_location(&deh[i]) + paste_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001364 old_entry_num = ih_entry_count(ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001365 put_ih_entry_count(ih, ih_entry_count(ih) + new_entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001367 /* prepare space for pasted records */
1368 memmove(insert_point + paste_size, insert_point,
1369 item + (ih_item_len(ih) - paste_size) - insert_point);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001371 /* copy new records */
1372 memcpy(insert_point + DEH_SIZE * new_entry_count, records,
1373 paste_size - DEH_SIZE * new_entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001375 /* prepare space for new entry heads */
1376 deh += before;
1377 memmove((char *)(deh + new_entry_count), deh,
1378 insert_point - (char *)deh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001380 /* copy new entry heads */
1381 deh = (struct reiserfs_de_head *)((char *)deh);
1382 memcpy(deh, new_dehs, DEH_SIZE * new_entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001384 /* set locations of new records */
1385 for (i = 0; i < new_entry_count; i++) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001386 put_deh_location(&deh[i],
1387 deh_location(&deh[i]) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001388 (-deh_location
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001389 (&new_dehs[new_entry_count - 1]) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001390 insert_point + DEH_SIZE * new_entry_count -
1391 item));
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001394 /* change item key if necessary (when we paste before 0-th entry */
1395 if (!before) {
1396 set_le_ih_k_offset(ih, deh_offset(new_dehs));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001399 {
1400 int prev, next;
1401 /* check record locations */
1402 deh = B_I_DEH(bh, ih);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001403 for (i = 0; i < ih_entry_count(ih); i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001404 next =
1405 (i <
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001406 ih_entry_count(ih) -
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001407 1) ? deh_location(&deh[i + 1]) : 0;
1408 prev = (i != 0) ? deh_location(&deh[i - 1]) : 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001409
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001410 if (prev && prev <= deh_location(&deh[i]))
Jeff Mahoney0030b642009-03-30 14:02:28 -04001411 reiserfs_error(sb_from_bi(bi), "vs-10240",
1412 "directory item (%h) "
1413 "corrupted (prev %a, "
1414 "cur(%d) %a)",
1415 ih, deh + i - 1, i, deh + i);
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001416 if (next && next >= deh_location(&deh[i]))
Jeff Mahoney0030b642009-03-30 14:02:28 -04001417 reiserfs_error(sb_from_bi(bi), "vs-10250",
1418 "directory item (%h) "
1419 "corrupted (cur(%d) %a, "
1420 "next %a)",
1421 ih, i, deh + i, deh + i + 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001422 }
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424#endif
1425
1426}