ocfs2: Read support for inline data
[linux-block.git] / fs / ocfs2 / alloc.c
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * alloc.c
5 *
6 * Extent allocs and frees
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/highmem.h>
60b11392 30#include <linux/swap.h>
ccd979bd
MF
31
32#define MLOG_MASK_PREFIX ML_DISK_ALLOC
33#include <cluster/masklog.h>
34
35#include "ocfs2.h"
36
37#include "alloc.h"
60b11392 38#include "aops.h"
ccd979bd
MF
39#include "dlmglue.h"
40#include "extent_map.h"
41#include "inode.h"
42#include "journal.h"
43#include "localalloc.h"
44#include "suballoc.h"
45#include "sysfile.h"
46#include "file.h"
47#include "super.h"
48#include "uptodate.h"
49
50#include "buffer_head_io.h"
51
dcd0538f 52static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc);
59a5e416
MF
53static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
54 struct ocfs2_extent_block *eb);
ccd979bd 55
dcd0538f
MF
56/*
57 * Structures which describe a path through a btree, and functions to
58 * manipulate them.
59 *
60 * The idea here is to be as generic as possible with the tree
61 * manipulation code.
62 */
63struct ocfs2_path_item {
64 struct buffer_head *bh;
65 struct ocfs2_extent_list *el;
66};
ccd979bd 67
dcd0538f 68#define OCFS2_MAX_PATH_DEPTH 5
ccd979bd 69
dcd0538f
MF
70struct ocfs2_path {
71 int p_tree_depth;
72 struct ocfs2_path_item p_node[OCFS2_MAX_PATH_DEPTH];
73};
ccd979bd 74
dcd0538f
MF
75#define path_root_bh(_path) ((_path)->p_node[0].bh)
76#define path_root_el(_path) ((_path)->p_node[0].el)
77#define path_leaf_bh(_path) ((_path)->p_node[(_path)->p_tree_depth].bh)
78#define path_leaf_el(_path) ((_path)->p_node[(_path)->p_tree_depth].el)
79#define path_num_items(_path) ((_path)->p_tree_depth + 1)
ccd979bd 80
dcd0538f
MF
81/*
82 * Reset the actual path elements so that we can re-use the structure
83 * to build another path. Generally, this involves freeing the buffer
84 * heads.
85 */
86static void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root)
87{
88 int i, start = 0, depth = 0;
89 struct ocfs2_path_item *node;
ccd979bd 90
dcd0538f
MF
91 if (keep_root)
92 start = 1;
ccd979bd 93
dcd0538f
MF
94 for(i = start; i < path_num_items(path); i++) {
95 node = &path->p_node[i];
96
97 brelse(node->bh);
98 node->bh = NULL;
99 node->el = NULL;
100 }
101
102 /*
103 * Tree depth may change during truncate, or insert. If we're
104 * keeping the root extent list, then make sure that our path
105 * structure reflects the proper depth.
106 */
107 if (keep_root)
108 depth = le16_to_cpu(path_root_el(path)->l_tree_depth);
109
110 path->p_tree_depth = depth;
111}
112
113static void ocfs2_free_path(struct ocfs2_path *path)
114{
115 if (path) {
116 ocfs2_reinit_path(path, 0);
117 kfree(path);
118 }
119}
120
328d5752
MF
121/*
122 * All the elements of src into dest. After this call, src could be freed
123 * without affecting dest.
124 *
125 * Both paths should have the same root. Any non-root elements of dest
126 * will be freed.
127 */
128static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src)
129{
130 int i;
131
132 BUG_ON(path_root_bh(dest) != path_root_bh(src));
133 BUG_ON(path_root_el(dest) != path_root_el(src));
134
135 ocfs2_reinit_path(dest, 1);
136
137 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
138 dest->p_node[i].bh = src->p_node[i].bh;
139 dest->p_node[i].el = src->p_node[i].el;
140
141 if (dest->p_node[i].bh)
142 get_bh(dest->p_node[i].bh);
143 }
144}
145
dcd0538f
MF
146/*
147 * Make the *dest path the same as src and re-initialize src path to
148 * have a root only.
149 */
150static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src)
151{
152 int i;
153
154 BUG_ON(path_root_bh(dest) != path_root_bh(src));
155
156 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
157 brelse(dest->p_node[i].bh);
158
159 dest->p_node[i].bh = src->p_node[i].bh;
160 dest->p_node[i].el = src->p_node[i].el;
161
162 src->p_node[i].bh = NULL;
163 src->p_node[i].el = NULL;
164 }
165}
166
167/*
168 * Insert an extent block at given index.
169 *
170 * This will not take an additional reference on eb_bh.
171 */
172static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index,
173 struct buffer_head *eb_bh)
174{
175 struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data;
176
177 /*
178 * Right now, no root bh is an extent block, so this helps
179 * catch code errors with dinode trees. The assertion can be
180 * safely removed if we ever need to insert extent block
181 * structures at the root.
182 */
183 BUG_ON(index == 0);
184
185 path->p_node[index].bh = eb_bh;
186 path->p_node[index].el = &eb->h_list;
187}
188
189static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh,
190 struct ocfs2_extent_list *root_el)
191{
192 struct ocfs2_path *path;
ccd979bd 193
dcd0538f
MF
194 BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH);
195
196 path = kzalloc(sizeof(*path), GFP_NOFS);
197 if (path) {
198 path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth);
199 get_bh(root_bh);
200 path_root_bh(path) = root_bh;
201 path_root_el(path) = root_el;
202 }
203
204 return path;
205}
206
207/*
208 * Allocate and initialize a new path based on a disk inode tree.
209 */
210static struct ocfs2_path *ocfs2_new_inode_path(struct buffer_head *di_bh)
211{
212 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
213 struct ocfs2_extent_list *el = &di->id2.i_list;
214
215 return ocfs2_new_path(di_bh, el);
216}
217
218/*
219 * Convenience function to journal all components in a path.
220 */
221static int ocfs2_journal_access_path(struct inode *inode, handle_t *handle,
222 struct ocfs2_path *path)
223{
224 int i, ret = 0;
225
226 if (!path)
227 goto out;
228
229 for(i = 0; i < path_num_items(path); i++) {
230 ret = ocfs2_journal_access(handle, inode, path->p_node[i].bh,
231 OCFS2_JOURNAL_ACCESS_WRITE);
232 if (ret < 0) {
233 mlog_errno(ret);
234 goto out;
235 }
236 }
237
238out:
239 return ret;
240}
241
328d5752
MF
242/*
243 * Return the index of the extent record which contains cluster #v_cluster.
244 * -1 is returned if it was not found.
245 *
246 * Should work fine on interior and exterior nodes.
247 */
248int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster)
249{
250 int ret = -1;
251 int i;
252 struct ocfs2_extent_rec *rec;
253 u32 rec_end, rec_start, clusters;
254
255 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
256 rec = &el->l_recs[i];
257
258 rec_start = le32_to_cpu(rec->e_cpos);
259 clusters = ocfs2_rec_clusters(el, rec);
260
261 rec_end = rec_start + clusters;
262
263 if (v_cluster >= rec_start && v_cluster < rec_end) {
264 ret = i;
265 break;
266 }
267 }
268
269 return ret;
270}
271
dcd0538f
MF
272enum ocfs2_contig_type {
273 CONTIG_NONE = 0,
274 CONTIG_LEFT,
328d5752
MF
275 CONTIG_RIGHT,
276 CONTIG_LEFTRIGHT,
dcd0538f
MF
277};
278
e48edee2
MF
279
280/*
281 * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and
282 * ocfs2_extent_contig only work properly against leaf nodes!
283 */
dcd0538f
MF
284static int ocfs2_block_extent_contig(struct super_block *sb,
285 struct ocfs2_extent_rec *ext,
286 u64 blkno)
ccd979bd 287{
e48edee2
MF
288 u64 blk_end = le64_to_cpu(ext->e_blkno);
289
290 blk_end += ocfs2_clusters_to_blocks(sb,
291 le16_to_cpu(ext->e_leaf_clusters));
292
293 return blkno == blk_end;
ccd979bd
MF
294}
295
dcd0538f
MF
296static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left,
297 struct ocfs2_extent_rec *right)
298{
e48edee2
MF
299 u32 left_range;
300
301 left_range = le32_to_cpu(left->e_cpos) +
302 le16_to_cpu(left->e_leaf_clusters);
303
304 return (left_range == le32_to_cpu(right->e_cpos));
dcd0538f
MF
305}
306
307static enum ocfs2_contig_type
308 ocfs2_extent_contig(struct inode *inode,
309 struct ocfs2_extent_rec *ext,
310 struct ocfs2_extent_rec *insert_rec)
311{
312 u64 blkno = le64_to_cpu(insert_rec->e_blkno);
313
328d5752
MF
314 /*
315 * Refuse to coalesce extent records with different flag
316 * fields - we don't want to mix unwritten extents with user
317 * data.
318 */
319 if (ext->e_flags != insert_rec->e_flags)
320 return CONTIG_NONE;
321
dcd0538f
MF
322 if (ocfs2_extents_adjacent(ext, insert_rec) &&
323 ocfs2_block_extent_contig(inode->i_sb, ext, blkno))
324 return CONTIG_RIGHT;
325
326 blkno = le64_to_cpu(ext->e_blkno);
327 if (ocfs2_extents_adjacent(insert_rec, ext) &&
328 ocfs2_block_extent_contig(inode->i_sb, insert_rec, blkno))
329 return CONTIG_LEFT;
330
331 return CONTIG_NONE;
332}
333
334/*
335 * NOTE: We can have pretty much any combination of contiguousness and
336 * appending.
337 *
338 * The usefulness of APPEND_TAIL is more in that it lets us know that
339 * we'll have to update the path to that leaf.
340 */
341enum ocfs2_append_type {
342 APPEND_NONE = 0,
343 APPEND_TAIL,
344};
345
328d5752
MF
346enum ocfs2_split_type {
347 SPLIT_NONE = 0,
348 SPLIT_LEFT,
349 SPLIT_RIGHT,
350};
351
dcd0538f 352struct ocfs2_insert_type {
328d5752 353 enum ocfs2_split_type ins_split;
dcd0538f
MF
354 enum ocfs2_append_type ins_appending;
355 enum ocfs2_contig_type ins_contig;
356 int ins_contig_index;
dcd0538f
MF
357 int ins_tree_depth;
358};
359
328d5752
MF
360struct ocfs2_merge_ctxt {
361 enum ocfs2_contig_type c_contig_type;
362 int c_has_empty_extent;
363 int c_split_covers_rec;
328d5752
MF
364};
365
ccd979bd
MF
366/*
367 * How many free extents have we got before we need more meta data?
368 */
369int ocfs2_num_free_extents(struct ocfs2_super *osb,
370 struct inode *inode,
371 struct ocfs2_dinode *fe)
372{
373 int retval;
374 struct ocfs2_extent_list *el;
375 struct ocfs2_extent_block *eb;
376 struct buffer_head *eb_bh = NULL;
377
378 mlog_entry_void();
379
380 if (!OCFS2_IS_VALID_DINODE(fe)) {
381 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
382 retval = -EIO;
383 goto bail;
384 }
385
386 if (fe->i_last_eb_blk) {
387 retval = ocfs2_read_block(osb, le64_to_cpu(fe->i_last_eb_blk),
388 &eb_bh, OCFS2_BH_CACHED, inode);
389 if (retval < 0) {
390 mlog_errno(retval);
391 goto bail;
392 }
393 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
394 el = &eb->h_list;
395 } else
396 el = &fe->id2.i_list;
397
398 BUG_ON(el->l_tree_depth != 0);
399
400 retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec);
401bail:
402 if (eb_bh)
403 brelse(eb_bh);
404
405 mlog_exit(retval);
406 return retval;
407}
408
409/* expects array to already be allocated
410 *
411 * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and
412 * l_count for you
413 */
414static int ocfs2_create_new_meta_bhs(struct ocfs2_super *osb,
1fabe148 415 handle_t *handle,
ccd979bd
MF
416 struct inode *inode,
417 int wanted,
418 struct ocfs2_alloc_context *meta_ac,
419 struct buffer_head *bhs[])
420{
421 int count, status, i;
422 u16 suballoc_bit_start;
423 u32 num_got;
424 u64 first_blkno;
425 struct ocfs2_extent_block *eb;
426
427 mlog_entry_void();
428
429 count = 0;
430 while (count < wanted) {
431 status = ocfs2_claim_metadata(osb,
432 handle,
433 meta_ac,
434 wanted - count,
435 &suballoc_bit_start,
436 &num_got,
437 &first_blkno);
438 if (status < 0) {
439 mlog_errno(status);
440 goto bail;
441 }
442
443 for(i = count; i < (num_got + count); i++) {
444 bhs[i] = sb_getblk(osb->sb, first_blkno);
445 if (bhs[i] == NULL) {
446 status = -EIO;
447 mlog_errno(status);
448 goto bail;
449 }
450 ocfs2_set_new_buffer_uptodate(inode, bhs[i]);
451
452 status = ocfs2_journal_access(handle, inode, bhs[i],
453 OCFS2_JOURNAL_ACCESS_CREATE);
454 if (status < 0) {
455 mlog_errno(status);
456 goto bail;
457 }
458
459 memset(bhs[i]->b_data, 0, osb->sb->s_blocksize);
460 eb = (struct ocfs2_extent_block *) bhs[i]->b_data;
461 /* Ok, setup the minimal stuff here. */
462 strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE);
463 eb->h_blkno = cpu_to_le64(first_blkno);
464 eb->h_fs_generation = cpu_to_le32(osb->fs_generation);
ccd979bd 465 eb->h_suballoc_slot = cpu_to_le16(osb->slot_num);
ccd979bd
MF
466 eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start);
467 eb->h_list.l_count =
468 cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb));
469
470 suballoc_bit_start++;
471 first_blkno++;
472
473 /* We'll also be dirtied by the caller, so
474 * this isn't absolutely necessary. */
475 status = ocfs2_journal_dirty(handle, bhs[i]);
476 if (status < 0) {
477 mlog_errno(status);
478 goto bail;
479 }
480 }
481
482 count += num_got;
483 }
484
485 status = 0;
486bail:
487 if (status < 0) {
488 for(i = 0; i < wanted; i++) {
489 if (bhs[i])
490 brelse(bhs[i]);
491 bhs[i] = NULL;
492 }
493 }
494 mlog_exit(status);
495 return status;
496}
497
dcd0538f
MF
498/*
499 * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth().
500 *
501 * Returns the sum of the rightmost extent rec logical offset and
502 * cluster count.
503 *
504 * ocfs2_add_branch() uses this to determine what logical cluster
505 * value should be populated into the leftmost new branch records.
506 *
507 * ocfs2_shift_tree_depth() uses this to determine the # clusters
508 * value for the new topmost tree record.
509 */
510static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el)
511{
512 int i;
513
514 i = le16_to_cpu(el->l_next_free_rec) - 1;
515
516 return le32_to_cpu(el->l_recs[i].e_cpos) +
e48edee2 517 ocfs2_rec_clusters(el, &el->l_recs[i]);
dcd0538f
MF
518}
519
ccd979bd
MF
520/*
521 * Add an entire tree branch to our inode. eb_bh is the extent block
522 * to start at, if we don't want to start the branch at the dinode
523 * structure.
524 *
525 * last_eb_bh is required as we have to update it's next_leaf pointer
526 * for the new last extent block.
527 *
528 * the new branch will be 'empty' in the sense that every block will
e48edee2 529 * contain a single record with cluster count == 0.
ccd979bd
MF
530 */
531static int ocfs2_add_branch(struct ocfs2_super *osb,
1fabe148 532 handle_t *handle,
ccd979bd
MF
533 struct inode *inode,
534 struct buffer_head *fe_bh,
535 struct buffer_head *eb_bh,
328d5752 536 struct buffer_head **last_eb_bh,
ccd979bd
MF
537 struct ocfs2_alloc_context *meta_ac)
538{
539 int status, new_blocks, i;
540 u64 next_blkno, new_last_eb_blk;
541 struct buffer_head *bh;
542 struct buffer_head **new_eb_bhs = NULL;
543 struct ocfs2_dinode *fe;
544 struct ocfs2_extent_block *eb;
545 struct ocfs2_extent_list *eb_el;
546 struct ocfs2_extent_list *el;
dcd0538f 547 u32 new_cpos;
ccd979bd
MF
548
549 mlog_entry_void();
550
328d5752 551 BUG_ON(!last_eb_bh || !*last_eb_bh);
ccd979bd
MF
552
553 fe = (struct ocfs2_dinode *) fe_bh->b_data;
554
555 if (eb_bh) {
556 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
557 el = &eb->h_list;
558 } else
559 el = &fe->id2.i_list;
560
561 /* we never add a branch to a leaf. */
562 BUG_ON(!el->l_tree_depth);
563
564 new_blocks = le16_to_cpu(el->l_tree_depth);
565
566 /* allocate the number of new eb blocks we need */
567 new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *),
568 GFP_KERNEL);
569 if (!new_eb_bhs) {
570 status = -ENOMEM;
571 mlog_errno(status);
572 goto bail;
573 }
574
575 status = ocfs2_create_new_meta_bhs(osb, handle, inode, new_blocks,
576 meta_ac, new_eb_bhs);
577 if (status < 0) {
578 mlog_errno(status);
579 goto bail;
580 }
581
328d5752 582 eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data;
dcd0538f
MF
583 new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list);
584
ccd979bd
MF
585 /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be
586 * linked with the rest of the tree.
587 * conversly, new_eb_bhs[0] is the new bottommost leaf.
588 *
589 * when we leave the loop, new_last_eb_blk will point to the
590 * newest leaf, and next_blkno will point to the topmost extent
591 * block. */
592 next_blkno = new_last_eb_blk = 0;
593 for(i = 0; i < new_blocks; i++) {
594 bh = new_eb_bhs[i];
595 eb = (struct ocfs2_extent_block *) bh->b_data;
596 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
597 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
598 status = -EIO;
599 goto bail;
600 }
601 eb_el = &eb->h_list;
602
603 status = ocfs2_journal_access(handle, inode, bh,
604 OCFS2_JOURNAL_ACCESS_CREATE);
605 if (status < 0) {
606 mlog_errno(status);
607 goto bail;
608 }
609
610 eb->h_next_leaf_blk = 0;
611 eb_el->l_tree_depth = cpu_to_le16(i);
612 eb_el->l_next_free_rec = cpu_to_le16(1);
dcd0538f
MF
613 /*
614 * This actually counts as an empty extent as
615 * c_clusters == 0
616 */
617 eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos);
ccd979bd 618 eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno);
e48edee2
MF
619 /*
620 * eb_el isn't always an interior node, but even leaf
621 * nodes want a zero'd flags and reserved field so
622 * this gets the whole 32 bits regardless of use.
623 */
624 eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0);
ccd979bd
MF
625 if (!eb_el->l_tree_depth)
626 new_last_eb_blk = le64_to_cpu(eb->h_blkno);
627
628 status = ocfs2_journal_dirty(handle, bh);
629 if (status < 0) {
630 mlog_errno(status);
631 goto bail;
632 }
633
634 next_blkno = le64_to_cpu(eb->h_blkno);
635 }
636
637 /* This is a bit hairy. We want to update up to three blocks
638 * here without leaving any of them in an inconsistent state
639 * in case of error. We don't have to worry about
640 * journal_dirty erroring as it won't unless we've aborted the
641 * handle (in which case we would never be here) so reserving
642 * the write with journal_access is all we need to do. */
328d5752 643 status = ocfs2_journal_access(handle, inode, *last_eb_bh,
ccd979bd
MF
644 OCFS2_JOURNAL_ACCESS_WRITE);
645 if (status < 0) {
646 mlog_errno(status);
647 goto bail;
648 }
649 status = ocfs2_journal_access(handle, inode, fe_bh,
650 OCFS2_JOURNAL_ACCESS_WRITE);
651 if (status < 0) {
652 mlog_errno(status);
653 goto bail;
654 }
655 if (eb_bh) {
656 status = ocfs2_journal_access(handle, inode, eb_bh,
657 OCFS2_JOURNAL_ACCESS_WRITE);
658 if (status < 0) {
659 mlog_errno(status);
660 goto bail;
661 }
662 }
663
664 /* Link the new branch into the rest of the tree (el will
665 * either be on the fe, or the extent block passed in. */
666 i = le16_to_cpu(el->l_next_free_rec);
667 el->l_recs[i].e_blkno = cpu_to_le64(next_blkno);
dcd0538f 668 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
e48edee2 669 el->l_recs[i].e_int_clusters = 0;
ccd979bd
MF
670 le16_add_cpu(&el->l_next_free_rec, 1);
671
672 /* fe needs a new last extent block pointer, as does the
673 * next_leaf on the previously last-extent-block. */
674 fe->i_last_eb_blk = cpu_to_le64(new_last_eb_blk);
675
328d5752 676 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
ccd979bd
MF
677 eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk);
678
328d5752 679 status = ocfs2_journal_dirty(handle, *last_eb_bh);
ccd979bd
MF
680 if (status < 0)
681 mlog_errno(status);
682 status = ocfs2_journal_dirty(handle, fe_bh);
683 if (status < 0)
684 mlog_errno(status);
685 if (eb_bh) {
686 status = ocfs2_journal_dirty(handle, eb_bh);
687 if (status < 0)
688 mlog_errno(status);
689 }
690
328d5752
MF
691 /*
692 * Some callers want to track the rightmost leaf so pass it
693 * back here.
694 */
695 brelse(*last_eb_bh);
696 get_bh(new_eb_bhs[0]);
697 *last_eb_bh = new_eb_bhs[0];
698
ccd979bd
MF
699 status = 0;
700bail:
701 if (new_eb_bhs) {
702 for (i = 0; i < new_blocks; i++)
703 if (new_eb_bhs[i])
704 brelse(new_eb_bhs[i]);
705 kfree(new_eb_bhs);
706 }
707
708 mlog_exit(status);
709 return status;
710}
711
712/*
713 * adds another level to the allocation tree.
714 * returns back the new extent block so you can add a branch to it
715 * after this call.
716 */
717static int ocfs2_shift_tree_depth(struct ocfs2_super *osb,
1fabe148 718 handle_t *handle,
ccd979bd
MF
719 struct inode *inode,
720 struct buffer_head *fe_bh,
721 struct ocfs2_alloc_context *meta_ac,
722 struct buffer_head **ret_new_eb_bh)
723{
724 int status, i;
dcd0538f 725 u32 new_clusters;
ccd979bd
MF
726 struct buffer_head *new_eb_bh = NULL;
727 struct ocfs2_dinode *fe;
728 struct ocfs2_extent_block *eb;
729 struct ocfs2_extent_list *fe_el;
730 struct ocfs2_extent_list *eb_el;
731
732 mlog_entry_void();
733
734 status = ocfs2_create_new_meta_bhs(osb, handle, inode, 1, meta_ac,
735 &new_eb_bh);
736 if (status < 0) {
737 mlog_errno(status);
738 goto bail;
739 }
740
741 eb = (struct ocfs2_extent_block *) new_eb_bh->b_data;
742 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
743 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
744 status = -EIO;
745 goto bail;
746 }
747
748 eb_el = &eb->h_list;
749 fe = (struct ocfs2_dinode *) fe_bh->b_data;
750 fe_el = &fe->id2.i_list;
751
752 status = ocfs2_journal_access(handle, inode, new_eb_bh,
753 OCFS2_JOURNAL_ACCESS_CREATE);
754 if (status < 0) {
755 mlog_errno(status);
756 goto bail;
757 }
758
759 /* copy the fe data into the new extent block */
760 eb_el->l_tree_depth = fe_el->l_tree_depth;
761 eb_el->l_next_free_rec = fe_el->l_next_free_rec;
e48edee2
MF
762 for(i = 0; i < le16_to_cpu(fe_el->l_next_free_rec); i++)
763 eb_el->l_recs[i] = fe_el->l_recs[i];
ccd979bd
MF
764
765 status = ocfs2_journal_dirty(handle, new_eb_bh);
766 if (status < 0) {
767 mlog_errno(status);
768 goto bail;
769 }
770
771 status = ocfs2_journal_access(handle, inode, fe_bh,
772 OCFS2_JOURNAL_ACCESS_WRITE);
773 if (status < 0) {
774 mlog_errno(status);
775 goto bail;
776 }
777
dcd0538f
MF
778 new_clusters = ocfs2_sum_rightmost_rec(eb_el);
779
ccd979bd
MF
780 /* update fe now */
781 le16_add_cpu(&fe_el->l_tree_depth, 1);
782 fe_el->l_recs[0].e_cpos = 0;
783 fe_el->l_recs[0].e_blkno = eb->h_blkno;
e48edee2
MF
784 fe_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters);
785 for(i = 1; i < le16_to_cpu(fe_el->l_next_free_rec); i++)
786 memset(&fe_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
ccd979bd
MF
787 fe_el->l_next_free_rec = cpu_to_le16(1);
788
789 /* If this is our 1st tree depth shift, then last_eb_blk
790 * becomes the allocated extent block */
791 if (fe_el->l_tree_depth == cpu_to_le16(1))
792 fe->i_last_eb_blk = eb->h_blkno;
793
794 status = ocfs2_journal_dirty(handle, fe_bh);
795 if (status < 0) {
796 mlog_errno(status);
797 goto bail;
798 }
799
800 *ret_new_eb_bh = new_eb_bh;
801 new_eb_bh = NULL;
802 status = 0;
803bail:
804 if (new_eb_bh)
805 brelse(new_eb_bh);
806
807 mlog_exit(status);
808 return status;
809}
810
ccd979bd
MF
811/*
812 * Should only be called when there is no space left in any of the
813 * leaf nodes. What we want to do is find the lowest tree depth
814 * non-leaf extent block with room for new records. There are three
815 * valid results of this search:
816 *
817 * 1) a lowest extent block is found, then we pass it back in
818 * *lowest_eb_bh and return '0'
819 *
820 * 2) the search fails to find anything, but the dinode has room. We
821 * pass NULL back in *lowest_eb_bh, but still return '0'
822 *
823 * 3) the search fails to find anything AND the dinode is full, in
824 * which case we return > 0
825 *
826 * return status < 0 indicates an error.
827 */
828static int ocfs2_find_branch_target(struct ocfs2_super *osb,
829 struct inode *inode,
830 struct buffer_head *fe_bh,
831 struct buffer_head **target_bh)
832{
833 int status = 0, i;
834 u64 blkno;
835 struct ocfs2_dinode *fe;
836 struct ocfs2_extent_block *eb;
837 struct ocfs2_extent_list *el;
838 struct buffer_head *bh = NULL;
839 struct buffer_head *lowest_bh = NULL;
840
841 mlog_entry_void();
842
843 *target_bh = NULL;
844
845 fe = (struct ocfs2_dinode *) fe_bh->b_data;
846 el = &fe->id2.i_list;
847
848 while(le16_to_cpu(el->l_tree_depth) > 1) {
849 if (le16_to_cpu(el->l_next_free_rec) == 0) {
b0697053 850 ocfs2_error(inode->i_sb, "Dinode %llu has empty "
ccd979bd 851 "extent list (next_free_rec == 0)",
b0697053 852 (unsigned long long)OCFS2_I(inode)->ip_blkno);
ccd979bd
MF
853 status = -EIO;
854 goto bail;
855 }
856 i = le16_to_cpu(el->l_next_free_rec) - 1;
857 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
858 if (!blkno) {
b0697053 859 ocfs2_error(inode->i_sb, "Dinode %llu has extent "
ccd979bd
MF
860 "list where extent # %d has no physical "
861 "block start",
b0697053 862 (unsigned long long)OCFS2_I(inode)->ip_blkno, i);
ccd979bd
MF
863 status = -EIO;
864 goto bail;
865 }
866
867 if (bh) {
868 brelse(bh);
869 bh = NULL;
870 }
871
872 status = ocfs2_read_block(osb, blkno, &bh, OCFS2_BH_CACHED,
873 inode);
874 if (status < 0) {
875 mlog_errno(status);
876 goto bail;
877 }
dcd0538f
MF
878
879 eb = (struct ocfs2_extent_block *) bh->b_data;
880 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
881 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
882 status = -EIO;
883 goto bail;
884 }
885 el = &eb->h_list;
886
887 if (le16_to_cpu(el->l_next_free_rec) <
888 le16_to_cpu(el->l_count)) {
889 if (lowest_bh)
890 brelse(lowest_bh);
891 lowest_bh = bh;
892 get_bh(lowest_bh);
893 }
894 }
895
896 /* If we didn't find one and the fe doesn't have any room,
897 * then return '1' */
898 if (!lowest_bh
899 && (fe->id2.i_list.l_next_free_rec == fe->id2.i_list.l_count))
900 status = 1;
901
902 *target_bh = lowest_bh;
903bail:
904 if (bh)
905 brelse(bh);
906
907 mlog_exit(status);
908 return status;
909}
910
c3afcbb3
MF
911/*
912 * Grow a b-tree so that it has more records.
913 *
914 * We might shift the tree depth in which case existing paths should
915 * be considered invalid.
916 *
917 * Tree depth after the grow is returned via *final_depth.
328d5752
MF
918 *
919 * *last_eb_bh will be updated by ocfs2_add_branch().
c3afcbb3
MF
920 */
921static int ocfs2_grow_tree(struct inode *inode, handle_t *handle,
922 struct buffer_head *di_bh, int *final_depth,
328d5752 923 struct buffer_head **last_eb_bh,
c3afcbb3
MF
924 struct ocfs2_alloc_context *meta_ac)
925{
926 int ret, shift;
927 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
928 int depth = le16_to_cpu(di->id2.i_list.l_tree_depth);
929 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
930 struct buffer_head *bh = NULL;
931
932 BUG_ON(meta_ac == NULL);
933
934 shift = ocfs2_find_branch_target(osb, inode, di_bh, &bh);
935 if (shift < 0) {
936 ret = shift;
937 mlog_errno(ret);
938 goto out;
939 }
940
941 /* We traveled all the way to the bottom of the allocation tree
942 * and didn't find room for any more extents - we need to add
943 * another tree level */
944 if (shift) {
945 BUG_ON(bh);
946 mlog(0, "need to shift tree depth (current = %d)\n", depth);
947
948 /* ocfs2_shift_tree_depth will return us a buffer with
949 * the new extent block (so we can pass that to
950 * ocfs2_add_branch). */
951 ret = ocfs2_shift_tree_depth(osb, handle, inode, di_bh,
952 meta_ac, &bh);
953 if (ret < 0) {
954 mlog_errno(ret);
955 goto out;
956 }
957 depth++;
328d5752
MF
958 if (depth == 1) {
959 /*
960 * Special case: we have room now if we shifted from
961 * tree_depth 0, so no more work needs to be done.
962 *
963 * We won't be calling add_branch, so pass
964 * back *last_eb_bh as the new leaf. At depth
965 * zero, it should always be null so there's
966 * no reason to brelse.
967 */
968 BUG_ON(*last_eb_bh);
969 get_bh(bh);
970 *last_eb_bh = bh;
c3afcbb3 971 goto out;
328d5752 972 }
c3afcbb3
MF
973 }
974
975 /* call ocfs2_add_branch to add the final part of the tree with
976 * the new data. */
977 mlog(0, "add branch. bh = %p\n", bh);
978 ret = ocfs2_add_branch(osb, handle, inode, di_bh, bh, last_eb_bh,
979 meta_ac);
980 if (ret < 0) {
981 mlog_errno(ret);
982 goto out;
983 }
984
985out:
986 if (final_depth)
987 *final_depth = depth;
988 brelse(bh);
989 return ret;
990}
991
e48edee2
MF
992/*
993 * This is only valid for leaf nodes, which are the only ones that can
994 * have empty extents anyway.
995 */
dcd0538f
MF
996static inline int ocfs2_is_empty_extent(struct ocfs2_extent_rec *rec)
997{
e48edee2 998 return !rec->e_leaf_clusters;
dcd0538f
MF
999}
1000
1001/*
1002 * This function will discard the rightmost extent record.
1003 */
1004static void ocfs2_shift_records_right(struct ocfs2_extent_list *el)
1005{
1006 int next_free = le16_to_cpu(el->l_next_free_rec);
1007 int count = le16_to_cpu(el->l_count);
1008 unsigned int num_bytes;
1009
1010 BUG_ON(!next_free);
1011 /* This will cause us to go off the end of our extent list. */
1012 BUG_ON(next_free >= count);
1013
1014 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free;
1015
1016 memmove(&el->l_recs[1], &el->l_recs[0], num_bytes);
1017}
1018
1019static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el,
1020 struct ocfs2_extent_rec *insert_rec)
1021{
1022 int i, insert_index, next_free, has_empty, num_bytes;
1023 u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos);
1024 struct ocfs2_extent_rec *rec;
1025
1026 next_free = le16_to_cpu(el->l_next_free_rec);
1027 has_empty = ocfs2_is_empty_extent(&el->l_recs[0]);
1028
1029 BUG_ON(!next_free);
1030
1031 /* The tree code before us didn't allow enough room in the leaf. */
1032 if (el->l_next_free_rec == el->l_count && !has_empty)
1033 BUG();
1034
1035 /*
1036 * The easiest way to approach this is to just remove the
1037 * empty extent and temporarily decrement next_free.
1038 */
1039 if (has_empty) {
1040 /*
1041 * If next_free was 1 (only an empty extent), this
1042 * loop won't execute, which is fine. We still want
1043 * the decrement above to happen.
1044 */
1045 for(i = 0; i < (next_free - 1); i++)
1046 el->l_recs[i] = el->l_recs[i+1];
1047
1048 next_free--;
1049 }
1050
1051 /*
1052 * Figure out what the new record index should be.
1053 */
1054 for(i = 0; i < next_free; i++) {
1055 rec = &el->l_recs[i];
1056
1057 if (insert_cpos < le32_to_cpu(rec->e_cpos))
1058 break;
1059 }
1060 insert_index = i;
1061
1062 mlog(0, "ins %u: index %d, has_empty %d, next_free %d, count %d\n",
1063 insert_cpos, insert_index, has_empty, next_free, le16_to_cpu(el->l_count));
1064
1065 BUG_ON(insert_index < 0);
1066 BUG_ON(insert_index >= le16_to_cpu(el->l_count));
1067 BUG_ON(insert_index > next_free);
1068
1069 /*
1070 * No need to memmove if we're just adding to the tail.
1071 */
1072 if (insert_index != next_free) {
1073 BUG_ON(next_free >= le16_to_cpu(el->l_count));
1074
1075 num_bytes = next_free - insert_index;
1076 num_bytes *= sizeof(struct ocfs2_extent_rec);
1077 memmove(&el->l_recs[insert_index + 1],
1078 &el->l_recs[insert_index],
1079 num_bytes);
1080 }
1081
1082 /*
1083 * Either we had an empty extent, and need to re-increment or
1084 * there was no empty extent on a non full rightmost leaf node,
1085 * in which case we still need to increment.
1086 */
1087 next_free++;
1088 el->l_next_free_rec = cpu_to_le16(next_free);
1089 /*
1090 * Make sure none of the math above just messed up our tree.
1091 */
1092 BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count));
1093
1094 el->l_recs[insert_index] = *insert_rec;
1095
1096}
1097
328d5752
MF
1098static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el)
1099{
1100 int size, num_recs = le16_to_cpu(el->l_next_free_rec);
1101
1102 BUG_ON(num_recs == 0);
1103
1104 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
1105 num_recs--;
1106 size = num_recs * sizeof(struct ocfs2_extent_rec);
1107 memmove(&el->l_recs[0], &el->l_recs[1], size);
1108 memset(&el->l_recs[num_recs], 0,
1109 sizeof(struct ocfs2_extent_rec));
1110 el->l_next_free_rec = cpu_to_le16(num_recs);
1111 }
1112}
1113
dcd0538f
MF
1114/*
1115 * Create an empty extent record .
1116 *
1117 * l_next_free_rec may be updated.
1118 *
1119 * If an empty extent already exists do nothing.
1120 */
1121static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el)
1122{
1123 int next_free = le16_to_cpu(el->l_next_free_rec);
1124
e48edee2
MF
1125 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
1126
dcd0538f
MF
1127 if (next_free == 0)
1128 goto set_and_inc;
1129
1130 if (ocfs2_is_empty_extent(&el->l_recs[0]))
1131 return;
1132
1133 mlog_bug_on_msg(el->l_count == el->l_next_free_rec,
1134 "Asked to create an empty extent in a full list:\n"
1135 "count = %u, tree depth = %u",
1136 le16_to_cpu(el->l_count),
1137 le16_to_cpu(el->l_tree_depth));
1138
1139 ocfs2_shift_records_right(el);
1140
1141set_and_inc:
1142 le16_add_cpu(&el->l_next_free_rec, 1);
1143 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1144}
1145
1146/*
1147 * For a rotation which involves two leaf nodes, the "root node" is
1148 * the lowest level tree node which contains a path to both leafs. This
1149 * resulting set of information can be used to form a complete "subtree"
1150 *
1151 * This function is passed two full paths from the dinode down to a
1152 * pair of adjacent leaves. It's task is to figure out which path
1153 * index contains the subtree root - this can be the root index itself
1154 * in a worst-case rotation.
1155 *
1156 * The array index of the subtree root is passed back.
1157 */
1158static int ocfs2_find_subtree_root(struct inode *inode,
1159 struct ocfs2_path *left,
1160 struct ocfs2_path *right)
1161{
1162 int i = 0;
1163
1164 /*
1165 * Check that the caller passed in two paths from the same tree.
1166 */
1167 BUG_ON(path_root_bh(left) != path_root_bh(right));
1168
1169 do {
1170 i++;
1171
1172 /*
1173 * The caller didn't pass two adjacent paths.
1174 */
1175 mlog_bug_on_msg(i > left->p_tree_depth,
1176 "Inode %lu, left depth %u, right depth %u\n"
1177 "left leaf blk %llu, right leaf blk %llu\n",
1178 inode->i_ino, left->p_tree_depth,
1179 right->p_tree_depth,
1180 (unsigned long long)path_leaf_bh(left)->b_blocknr,
1181 (unsigned long long)path_leaf_bh(right)->b_blocknr);
1182 } while (left->p_node[i].bh->b_blocknr ==
1183 right->p_node[i].bh->b_blocknr);
1184
1185 return i - 1;
1186}
1187
1188typedef void (path_insert_t)(void *, struct buffer_head *);
1189
1190/*
1191 * Traverse a btree path in search of cpos, starting at root_el.
1192 *
1193 * This code can be called with a cpos larger than the tree, in which
1194 * case it will return the rightmost path.
1195 */
1196static int __ocfs2_find_path(struct inode *inode,
1197 struct ocfs2_extent_list *root_el, u32 cpos,
1198 path_insert_t *func, void *data)
1199{
1200 int i, ret = 0;
1201 u32 range;
1202 u64 blkno;
1203 struct buffer_head *bh = NULL;
1204 struct ocfs2_extent_block *eb;
1205 struct ocfs2_extent_list *el;
1206 struct ocfs2_extent_rec *rec;
1207 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1208
1209 el = root_el;
1210 while (el->l_tree_depth) {
1211 if (le16_to_cpu(el->l_next_free_rec) == 0) {
1212 ocfs2_error(inode->i_sb,
1213 "Inode %llu has empty extent list at "
1214 "depth %u\n",
1215 (unsigned long long)oi->ip_blkno,
1216 le16_to_cpu(el->l_tree_depth));
1217 ret = -EROFS;
1218 goto out;
1219
1220 }
1221
1222 for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) {
1223 rec = &el->l_recs[i];
1224
1225 /*
1226 * In the case that cpos is off the allocation
1227 * tree, this should just wind up returning the
1228 * rightmost record.
1229 */
1230 range = le32_to_cpu(rec->e_cpos) +
e48edee2 1231 ocfs2_rec_clusters(el, rec);
dcd0538f
MF
1232 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1233 break;
1234 }
1235
1236 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1237 if (blkno == 0) {
1238 ocfs2_error(inode->i_sb,
1239 "Inode %llu has bad blkno in extent list "
1240 "at depth %u (index %d)\n",
1241 (unsigned long long)oi->ip_blkno,
1242 le16_to_cpu(el->l_tree_depth), i);
1243 ret = -EROFS;
1244 goto out;
1245 }
1246
1247 brelse(bh);
1248 bh = NULL;
1249 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), blkno,
1250 &bh, OCFS2_BH_CACHED, inode);
1251 if (ret) {
1252 mlog_errno(ret);
1253 goto out;
1254 }
1255
1256 eb = (struct ocfs2_extent_block *) bh->b_data;
1257 el = &eb->h_list;
1258 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
1259 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
1260 ret = -EIO;
1261 goto out;
1262 }
1263
1264 if (le16_to_cpu(el->l_next_free_rec) >
1265 le16_to_cpu(el->l_count)) {
1266 ocfs2_error(inode->i_sb,
1267 "Inode %llu has bad count in extent list "
1268 "at block %llu (next free=%u, count=%u)\n",
1269 (unsigned long long)oi->ip_blkno,
1270 (unsigned long long)bh->b_blocknr,
1271 le16_to_cpu(el->l_next_free_rec),
1272 le16_to_cpu(el->l_count));
1273 ret = -EROFS;
1274 goto out;
1275 }
1276
1277 if (func)
1278 func(data, bh);
1279 }
1280
1281out:
1282 /*
1283 * Catch any trailing bh that the loop didn't handle.
1284 */
1285 brelse(bh);
1286
1287 return ret;
1288}
1289
1290/*
1291 * Given an initialized path (that is, it has a valid root extent
1292 * list), this function will traverse the btree in search of the path
1293 * which would contain cpos.
1294 *
1295 * The path traveled is recorded in the path structure.
1296 *
1297 * Note that this will not do any comparisons on leaf node extent
1298 * records, so it will work fine in the case that we just added a tree
1299 * branch.
1300 */
1301struct find_path_data {
1302 int index;
1303 struct ocfs2_path *path;
1304};
1305static void find_path_ins(void *data, struct buffer_head *bh)
1306{
1307 struct find_path_data *fp = data;
1308
1309 get_bh(bh);
1310 ocfs2_path_insert_eb(fp->path, fp->index, bh);
1311 fp->index++;
1312}
1313static int ocfs2_find_path(struct inode *inode, struct ocfs2_path *path,
1314 u32 cpos)
1315{
1316 struct find_path_data data;
1317
1318 data.index = 1;
1319 data.path = path;
1320 return __ocfs2_find_path(inode, path_root_el(path), cpos,
1321 find_path_ins, &data);
1322}
1323
1324static void find_leaf_ins(void *data, struct buffer_head *bh)
1325{
1326 struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data;
1327 struct ocfs2_extent_list *el = &eb->h_list;
1328 struct buffer_head **ret = data;
1329
1330 /* We want to retain only the leaf block. */
1331 if (le16_to_cpu(el->l_tree_depth) == 0) {
1332 get_bh(bh);
1333 *ret = bh;
1334 }
1335}
1336/*
1337 * Find the leaf block in the tree which would contain cpos. No
1338 * checking of the actual leaf is done.
1339 *
1340 * Some paths want to call this instead of allocating a path structure
1341 * and calling ocfs2_find_path().
1342 *
1343 * This function doesn't handle non btree extent lists.
1344 */
363041a5
MF
1345int ocfs2_find_leaf(struct inode *inode, struct ocfs2_extent_list *root_el,
1346 u32 cpos, struct buffer_head **leaf_bh)
dcd0538f
MF
1347{
1348 int ret;
1349 struct buffer_head *bh = NULL;
1350
1351 ret = __ocfs2_find_path(inode, root_el, cpos, find_leaf_ins, &bh);
1352 if (ret) {
1353 mlog_errno(ret);
1354 goto out;
1355 }
1356
1357 *leaf_bh = bh;
1358out:
1359 return ret;
1360}
1361
1362/*
1363 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1364 *
1365 * Basically, we've moved stuff around at the bottom of the tree and
1366 * we need to fix up the extent records above the changes to reflect
1367 * the new changes.
1368 *
1369 * left_rec: the record on the left.
1370 * left_child_el: is the child list pointed to by left_rec
1371 * right_rec: the record to the right of left_rec
1372 * right_child_el: is the child list pointed to by right_rec
1373 *
1374 * By definition, this only works on interior nodes.
1375 */
1376static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec,
1377 struct ocfs2_extent_list *left_child_el,
1378 struct ocfs2_extent_rec *right_rec,
1379 struct ocfs2_extent_list *right_child_el)
1380{
1381 u32 left_clusters, right_end;
1382
1383 /*
1384 * Interior nodes never have holes. Their cpos is the cpos of
1385 * the leftmost record in their child list. Their cluster
1386 * count covers the full theoretical range of their child list
1387 * - the range between their cpos and the cpos of the record
1388 * immediately to their right.
1389 */
1390 left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos);
328d5752
MF
1391 if (ocfs2_is_empty_extent(&right_child_el->l_recs[0])) {
1392 BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1);
1393 left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos);
1394 }
dcd0538f 1395 left_clusters -= le32_to_cpu(left_rec->e_cpos);
e48edee2 1396 left_rec->e_int_clusters = cpu_to_le32(left_clusters);
dcd0538f
MF
1397
1398 /*
1399 * Calculate the rightmost cluster count boundary before
e48edee2 1400 * moving cpos - we will need to adjust clusters after
dcd0538f
MF
1401 * updating e_cpos to keep the same highest cluster count.
1402 */
1403 right_end = le32_to_cpu(right_rec->e_cpos);
e48edee2 1404 right_end += le32_to_cpu(right_rec->e_int_clusters);
dcd0538f
MF
1405
1406 right_rec->e_cpos = left_rec->e_cpos;
1407 le32_add_cpu(&right_rec->e_cpos, left_clusters);
1408
1409 right_end -= le32_to_cpu(right_rec->e_cpos);
e48edee2 1410 right_rec->e_int_clusters = cpu_to_le32(right_end);
dcd0538f
MF
1411}
1412
1413/*
1414 * Adjust the adjacent root node records involved in a
1415 * rotation. left_el_blkno is passed in as a key so that we can easily
1416 * find it's index in the root list.
1417 */
1418static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
1419 struct ocfs2_extent_list *left_el,
1420 struct ocfs2_extent_list *right_el,
1421 u64 left_el_blkno)
1422{
1423 int i;
1424
1425 BUG_ON(le16_to_cpu(root_el->l_tree_depth) <=
1426 le16_to_cpu(left_el->l_tree_depth));
1427
1428 for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) {
1429 if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno)
1430 break;
1431 }
1432
1433 /*
1434 * The path walking code should have never returned a root and
1435 * two paths which are not adjacent.
1436 */
1437 BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1));
1438
1439 ocfs2_adjust_adjacent_records(&root_el->l_recs[i], left_el,
1440 &root_el->l_recs[i + 1], right_el);
1441}
1442
1443/*
1444 * We've changed a leaf block (in right_path) and need to reflect that
1445 * change back up the subtree.
1446 *
1447 * This happens in multiple places:
1448 * - When we've moved an extent record from the left path leaf to the right
1449 * path leaf to make room for an empty extent in the left path leaf.
1450 * - When our insert into the right path leaf is at the leftmost edge
1451 * and requires an update of the path immediately to it's left. This
1452 * can occur at the end of some types of rotation and appending inserts.
1453 */
1454static void ocfs2_complete_edge_insert(struct inode *inode, handle_t *handle,
1455 struct ocfs2_path *left_path,
1456 struct ocfs2_path *right_path,
1457 int subtree_index)
1458{
1459 int ret, i, idx;
1460 struct ocfs2_extent_list *el, *left_el, *right_el;
1461 struct ocfs2_extent_rec *left_rec, *right_rec;
1462 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
1463
1464 /*
1465 * Update the counts and position values within all the
1466 * interior nodes to reflect the leaf rotation we just did.
1467 *
1468 * The root node is handled below the loop.
1469 *
1470 * We begin the loop with right_el and left_el pointing to the
1471 * leaf lists and work our way up.
1472 *
1473 * NOTE: within this loop, left_el and right_el always refer
1474 * to the *child* lists.
1475 */
1476 left_el = path_leaf_el(left_path);
1477 right_el = path_leaf_el(right_path);
1478 for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) {
1479 mlog(0, "Adjust records at index %u\n", i);
1480
1481 /*
1482 * One nice property of knowing that all of these
1483 * nodes are below the root is that we only deal with
1484 * the leftmost right node record and the rightmost
1485 * left node record.
1486 */
1487 el = left_path->p_node[i].el;
1488 idx = le16_to_cpu(left_el->l_next_free_rec) - 1;
1489 left_rec = &el->l_recs[idx];
1490
1491 el = right_path->p_node[i].el;
1492 right_rec = &el->l_recs[0];
1493
1494 ocfs2_adjust_adjacent_records(left_rec, left_el, right_rec,
1495 right_el);
1496
1497 ret = ocfs2_journal_dirty(handle, left_path->p_node[i].bh);
1498 if (ret)
1499 mlog_errno(ret);
1500
1501 ret = ocfs2_journal_dirty(handle, right_path->p_node[i].bh);
1502 if (ret)
1503 mlog_errno(ret);
1504
1505 /*
1506 * Setup our list pointers now so that the current
1507 * parents become children in the next iteration.
1508 */
1509 left_el = left_path->p_node[i].el;
1510 right_el = right_path->p_node[i].el;
1511 }
1512
1513 /*
1514 * At the root node, adjust the two adjacent records which
1515 * begin our path to the leaves.
1516 */
1517
1518 el = left_path->p_node[subtree_index].el;
1519 left_el = left_path->p_node[subtree_index + 1].el;
1520 right_el = right_path->p_node[subtree_index + 1].el;
1521
1522 ocfs2_adjust_root_records(el, left_el, right_el,
1523 left_path->p_node[subtree_index + 1].bh->b_blocknr);
1524
1525 root_bh = left_path->p_node[subtree_index].bh;
1526
1527 ret = ocfs2_journal_dirty(handle, root_bh);
1528 if (ret)
1529 mlog_errno(ret);
1530}
1531
1532static int ocfs2_rotate_subtree_right(struct inode *inode,
1533 handle_t *handle,
1534 struct ocfs2_path *left_path,
1535 struct ocfs2_path *right_path,
1536 int subtree_index)
1537{
1538 int ret, i;
1539 struct buffer_head *right_leaf_bh;
1540 struct buffer_head *left_leaf_bh = NULL;
1541 struct buffer_head *root_bh;
1542 struct ocfs2_extent_list *right_el, *left_el;
1543 struct ocfs2_extent_rec move_rec;
1544
1545 left_leaf_bh = path_leaf_bh(left_path);
1546 left_el = path_leaf_el(left_path);
1547
1548 if (left_el->l_next_free_rec != left_el->l_count) {
1549 ocfs2_error(inode->i_sb,
1550 "Inode %llu has non-full interior leaf node %llu"
1551 "(next free = %u)",
1552 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1553 (unsigned long long)left_leaf_bh->b_blocknr,
1554 le16_to_cpu(left_el->l_next_free_rec));
1555 return -EROFS;
1556 }
1557
1558 /*
1559 * This extent block may already have an empty record, so we
1560 * return early if so.
1561 */
1562 if (ocfs2_is_empty_extent(&left_el->l_recs[0]))
1563 return 0;
1564
1565 root_bh = left_path->p_node[subtree_index].bh;
1566 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
1567
1568 ret = ocfs2_journal_access(handle, inode, root_bh,
1569 OCFS2_JOURNAL_ACCESS_WRITE);
1570 if (ret) {
1571 mlog_errno(ret);
1572 goto out;
1573 }
1574
1575 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
1576 ret = ocfs2_journal_access(handle, inode,
1577 right_path->p_node[i].bh,
1578 OCFS2_JOURNAL_ACCESS_WRITE);
1579 if (ret) {
1580 mlog_errno(ret);
1581 goto out;
1582 }
1583
1584 ret = ocfs2_journal_access(handle, inode,
1585 left_path->p_node[i].bh,
1586 OCFS2_JOURNAL_ACCESS_WRITE);
1587 if (ret) {
1588 mlog_errno(ret);
1589 goto out;
1590 }
1591 }
1592
1593 right_leaf_bh = path_leaf_bh(right_path);
1594 right_el = path_leaf_el(right_path);
1595
1596 /* This is a code error, not a disk corruption. */
1597 mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails "
1598 "because rightmost leaf block %llu is empty\n",
1599 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1600 (unsigned long long)right_leaf_bh->b_blocknr);
1601
1602 ocfs2_create_empty_extent(right_el);
1603
1604 ret = ocfs2_journal_dirty(handle, right_leaf_bh);
1605 if (ret) {
1606 mlog_errno(ret);
1607 goto out;
1608 }
1609
1610 /* Do the copy now. */
1611 i = le16_to_cpu(left_el->l_next_free_rec) - 1;
1612 move_rec = left_el->l_recs[i];
1613 right_el->l_recs[0] = move_rec;
1614
1615 /*
1616 * Clear out the record we just copied and shift everything
1617 * over, leaving an empty extent in the left leaf.
1618 *
1619 * We temporarily subtract from next_free_rec so that the
1620 * shift will lose the tail record (which is now defunct).
1621 */
1622 le16_add_cpu(&left_el->l_next_free_rec, -1);
1623 ocfs2_shift_records_right(left_el);
1624 memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1625 le16_add_cpu(&left_el->l_next_free_rec, 1);
1626
1627 ret = ocfs2_journal_dirty(handle, left_leaf_bh);
1628 if (ret) {
1629 mlog_errno(ret);
1630 goto out;
1631 }
1632
1633 ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
1634 subtree_index);
1635
1636out:
1637 return ret;
1638}
1639
1640/*
1641 * Given a full path, determine what cpos value would return us a path
1642 * containing the leaf immediately to the left of the current one.
1643 *
1644 * Will return zero if the path passed in is already the leftmost path.
1645 */
1646static int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
1647 struct ocfs2_path *path, u32 *cpos)
1648{
1649 int i, j, ret = 0;
1650 u64 blkno;
1651 struct ocfs2_extent_list *el;
1652
e48edee2
MF
1653 BUG_ON(path->p_tree_depth == 0);
1654
dcd0538f
MF
1655 *cpos = 0;
1656
1657 blkno = path_leaf_bh(path)->b_blocknr;
1658
1659 /* Start at the tree node just above the leaf and work our way up. */
1660 i = path->p_tree_depth - 1;
1661 while (i >= 0) {
1662 el = path->p_node[i].el;
1663
1664 /*
1665 * Find the extent record just before the one in our
1666 * path.
1667 */
1668 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
1669 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
1670 if (j == 0) {
1671 if (i == 0) {
1672 /*
1673 * We've determined that the
1674 * path specified is already
1675 * the leftmost one - return a
1676 * cpos of zero.
1677 */
1678 goto out;
1679 }
1680 /*
1681 * The leftmost record points to our
1682 * leaf - we need to travel up the
1683 * tree one level.
1684 */
1685 goto next_node;
1686 }
1687
1688 *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos);
e48edee2
MF
1689 *cpos = *cpos + ocfs2_rec_clusters(el,
1690 &el->l_recs[j - 1]);
1691 *cpos = *cpos - 1;
dcd0538f
MF
1692 goto out;
1693 }
1694 }
1695
1696 /*
1697 * If we got here, we never found a valid node where
1698 * the tree indicated one should be.
1699 */
1700 ocfs2_error(sb,
1701 "Invalid extent tree at extent block %llu\n",
1702 (unsigned long long)blkno);
1703 ret = -EROFS;
1704 goto out;
1705
1706next_node:
1707 blkno = path->p_node[i].bh->b_blocknr;
1708 i--;
1709 }
1710
1711out:
1712 return ret;
1713}
1714
328d5752
MF
1715/*
1716 * Extend the transaction by enough credits to complete the rotation,
1717 * and still leave at least the original number of credits allocated
1718 * to this transaction.
1719 */
dcd0538f 1720static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth,
328d5752 1721 int op_credits,
dcd0538f
MF
1722 struct ocfs2_path *path)
1723{
328d5752 1724 int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits;
dcd0538f
MF
1725
1726 if (handle->h_buffer_credits < credits)
1727 return ocfs2_extend_trans(handle, credits);
1728
1729 return 0;
1730}
1731
1732/*
1733 * Trap the case where we're inserting into the theoretical range past
1734 * the _actual_ left leaf range. Otherwise, we'll rotate a record
1735 * whose cpos is less than ours into the right leaf.
1736 *
1737 * It's only necessary to look at the rightmost record of the left
1738 * leaf because the logic that calls us should ensure that the
1739 * theoretical ranges in the path components above the leaves are
1740 * correct.
1741 */
1742static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path,
1743 u32 insert_cpos)
1744{
1745 struct ocfs2_extent_list *left_el;
1746 struct ocfs2_extent_rec *rec;
1747 int next_free;
1748
1749 left_el = path_leaf_el(left_path);
1750 next_free = le16_to_cpu(left_el->l_next_free_rec);
1751 rec = &left_el->l_recs[next_free - 1];
1752
1753 if (insert_cpos > le32_to_cpu(rec->e_cpos))
1754 return 1;
1755 return 0;
1756}
1757
328d5752
MF
1758static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos)
1759{
1760 int next_free = le16_to_cpu(el->l_next_free_rec);
1761 unsigned int range;
1762 struct ocfs2_extent_rec *rec;
1763
1764 if (next_free == 0)
1765 return 0;
1766
1767 rec = &el->l_recs[0];
1768 if (ocfs2_is_empty_extent(rec)) {
1769 /* Empty list. */
1770 if (next_free == 1)
1771 return 0;
1772 rec = &el->l_recs[1];
1773 }
1774
1775 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
1776 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1777 return 1;
1778 return 0;
1779}
1780
dcd0538f
MF
1781/*
1782 * Rotate all the records in a btree right one record, starting at insert_cpos.
1783 *
1784 * The path to the rightmost leaf should be passed in.
1785 *
1786 * The array is assumed to be large enough to hold an entire path (tree depth).
1787 *
1788 * Upon succesful return from this function:
1789 *
1790 * - The 'right_path' array will contain a path to the leaf block
1791 * whose range contains e_cpos.
1792 * - That leaf block will have a single empty extent in list index 0.
1793 * - In the case that the rotation requires a post-insert update,
1794 * *ret_left_path will contain a valid path which can be passed to
1795 * ocfs2_insert_path().
1796 */
1797static int ocfs2_rotate_tree_right(struct inode *inode,
1798 handle_t *handle,
328d5752 1799 enum ocfs2_split_type split,
dcd0538f
MF
1800 u32 insert_cpos,
1801 struct ocfs2_path *right_path,
1802 struct ocfs2_path **ret_left_path)
1803{
328d5752 1804 int ret, start, orig_credits = handle->h_buffer_credits;
dcd0538f
MF
1805 u32 cpos;
1806 struct ocfs2_path *left_path = NULL;
1807
1808 *ret_left_path = NULL;
1809
1810 left_path = ocfs2_new_path(path_root_bh(right_path),
1811 path_root_el(right_path));
1812 if (!left_path) {
1813 ret = -ENOMEM;
1814 mlog_errno(ret);
1815 goto out;
1816 }
1817
1818 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path, &cpos);
1819 if (ret) {
1820 mlog_errno(ret);
1821 goto out;
1822 }
1823
1824 mlog(0, "Insert: %u, first left path cpos: %u\n", insert_cpos, cpos);
1825
1826 /*
1827 * What we want to do here is:
1828 *
1829 * 1) Start with the rightmost path.
1830 *
1831 * 2) Determine a path to the leaf block directly to the left
1832 * of that leaf.
1833 *
1834 * 3) Determine the 'subtree root' - the lowest level tree node
1835 * which contains a path to both leaves.
1836 *
1837 * 4) Rotate the subtree.
1838 *
1839 * 5) Find the next subtree by considering the left path to be
1840 * the new right path.
1841 *
1842 * The check at the top of this while loop also accepts
1843 * insert_cpos == cpos because cpos is only a _theoretical_
1844 * value to get us the left path - insert_cpos might very well
1845 * be filling that hole.
1846 *
1847 * Stop at a cpos of '0' because we either started at the
1848 * leftmost branch (i.e., a tree with one branch and a
1849 * rotation inside of it), or we've gone as far as we can in
1850 * rotating subtrees.
1851 */
1852 while (cpos && insert_cpos <= cpos) {
1853 mlog(0, "Rotating a tree: ins. cpos: %u, left path cpos: %u\n",
1854 insert_cpos, cpos);
1855
1856 ret = ocfs2_find_path(inode, left_path, cpos);
1857 if (ret) {
1858 mlog_errno(ret);
1859 goto out;
1860 }
1861
1862 mlog_bug_on_msg(path_leaf_bh(left_path) ==
1863 path_leaf_bh(right_path),
1864 "Inode %lu: error during insert of %u "
1865 "(left path cpos %u) results in two identical "
1866 "paths ending at %llu\n",
1867 inode->i_ino, insert_cpos, cpos,
1868 (unsigned long long)
1869 path_leaf_bh(left_path)->b_blocknr);
1870
328d5752
MF
1871 if (split == SPLIT_NONE &&
1872 ocfs2_rotate_requires_path_adjustment(left_path,
dcd0538f 1873 insert_cpos)) {
dcd0538f
MF
1874
1875 /*
1876 * We've rotated the tree as much as we
1877 * should. The rest is up to
1878 * ocfs2_insert_path() to complete, after the
1879 * record insertion. We indicate this
1880 * situation by returning the left path.
1881 *
1882 * The reason we don't adjust the records here
1883 * before the record insert is that an error
1884 * later might break the rule where a parent
1885 * record e_cpos will reflect the actual
1886 * e_cpos of the 1st nonempty record of the
1887 * child list.
1888 */
1889 *ret_left_path = left_path;
1890 goto out_ret_path;
1891 }
1892
1893 start = ocfs2_find_subtree_root(inode, left_path, right_path);
1894
1895 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
1896 start,
1897 (unsigned long long) right_path->p_node[start].bh->b_blocknr,
1898 right_path->p_tree_depth);
1899
1900 ret = ocfs2_extend_rotate_transaction(handle, start,
328d5752 1901 orig_credits, right_path);
dcd0538f
MF
1902 if (ret) {
1903 mlog_errno(ret);
1904 goto out;
1905 }
1906
1907 ret = ocfs2_rotate_subtree_right(inode, handle, left_path,
1908 right_path, start);
1909 if (ret) {
1910 mlog_errno(ret);
1911 goto out;
1912 }
1913
328d5752
MF
1914 if (split != SPLIT_NONE &&
1915 ocfs2_leftmost_rec_contains(path_leaf_el(right_path),
1916 insert_cpos)) {
1917 /*
1918 * A rotate moves the rightmost left leaf
1919 * record over to the leftmost right leaf
1920 * slot. If we're doing an extent split
1921 * instead of a real insert, then we have to
1922 * check that the extent to be split wasn't
1923 * just moved over. If it was, then we can
1924 * exit here, passing left_path back -
1925 * ocfs2_split_extent() is smart enough to
1926 * search both leaves.
1927 */
1928 *ret_left_path = left_path;
1929 goto out_ret_path;
1930 }
1931
dcd0538f
MF
1932 /*
1933 * There is no need to re-read the next right path
1934 * as we know that it'll be our current left
1935 * path. Optimize by copying values instead.
1936 */
1937 ocfs2_mv_path(right_path, left_path);
1938
1939 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path,
1940 &cpos);
1941 if (ret) {
1942 mlog_errno(ret);
1943 goto out;
1944 }
1945 }
1946
1947out:
1948 ocfs2_free_path(left_path);
1949
1950out_ret_path:
1951 return ret;
1952}
1953
328d5752
MF
1954static void ocfs2_update_edge_lengths(struct inode *inode, handle_t *handle,
1955 struct ocfs2_path *path)
dcd0538f 1956{
328d5752 1957 int i, idx;
dcd0538f 1958 struct ocfs2_extent_rec *rec;
328d5752
MF
1959 struct ocfs2_extent_list *el;
1960 struct ocfs2_extent_block *eb;
1961 u32 range;
dcd0538f 1962
328d5752
MF
1963 /* Path should always be rightmost. */
1964 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
1965 BUG_ON(eb->h_next_leaf_blk != 0ULL);
dcd0538f 1966
328d5752
MF
1967 el = &eb->h_list;
1968 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
1969 idx = le16_to_cpu(el->l_next_free_rec) - 1;
1970 rec = &el->l_recs[idx];
1971 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
dcd0538f 1972
328d5752
MF
1973 for (i = 0; i < path->p_tree_depth; i++) {
1974 el = path->p_node[i].el;
1975 idx = le16_to_cpu(el->l_next_free_rec) - 1;
1976 rec = &el->l_recs[idx];
dcd0538f 1977
328d5752
MF
1978 rec->e_int_clusters = cpu_to_le32(range);
1979 le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos));
dcd0538f 1980
328d5752 1981 ocfs2_journal_dirty(handle, path->p_node[i].bh);
dcd0538f 1982 }
dcd0538f
MF
1983}
1984
328d5752
MF
1985static void ocfs2_unlink_path(struct inode *inode, handle_t *handle,
1986 struct ocfs2_cached_dealloc_ctxt *dealloc,
1987 struct ocfs2_path *path, int unlink_start)
dcd0538f 1988{
328d5752
MF
1989 int ret, i;
1990 struct ocfs2_extent_block *eb;
1991 struct ocfs2_extent_list *el;
1992 struct buffer_head *bh;
1993
1994 for(i = unlink_start; i < path_num_items(path); i++) {
1995 bh = path->p_node[i].bh;
1996
1997 eb = (struct ocfs2_extent_block *)bh->b_data;
1998 /*
1999 * Not all nodes might have had their final count
2000 * decremented by the caller - handle this here.
2001 */
2002 el = &eb->h_list;
2003 if (le16_to_cpu(el->l_next_free_rec) > 1) {
2004 mlog(ML_ERROR,
2005 "Inode %llu, attempted to remove extent block "
2006 "%llu with %u records\n",
2007 (unsigned long long)OCFS2_I(inode)->ip_blkno,
2008 (unsigned long long)le64_to_cpu(eb->h_blkno),
2009 le16_to_cpu(el->l_next_free_rec));
2010
2011 ocfs2_journal_dirty(handle, bh);
2012 ocfs2_remove_from_cache(inode, bh);
2013 continue;
2014 }
2015
2016 el->l_next_free_rec = 0;
2017 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2018
2019 ocfs2_journal_dirty(handle, bh);
2020
2021 ret = ocfs2_cache_extent_block_free(dealloc, eb);
2022 if (ret)
2023 mlog_errno(ret);
2024
2025 ocfs2_remove_from_cache(inode, bh);
2026 }
dcd0538f
MF
2027}
2028
328d5752
MF
2029static void ocfs2_unlink_subtree(struct inode *inode, handle_t *handle,
2030 struct ocfs2_path *left_path,
2031 struct ocfs2_path *right_path,
2032 int subtree_index,
2033 struct ocfs2_cached_dealloc_ctxt *dealloc)
dcd0538f 2034{
328d5752
MF
2035 int i;
2036 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2037 struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el;
dcd0538f 2038 struct ocfs2_extent_list *el;
328d5752 2039 struct ocfs2_extent_block *eb;
dcd0538f 2040
328d5752 2041 el = path_leaf_el(left_path);
dcd0538f 2042
328d5752 2043 eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data;
e48edee2 2044
328d5752
MF
2045 for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
2046 if (root_el->l_recs[i].e_blkno == eb->h_blkno)
2047 break;
dcd0538f 2048
328d5752 2049 BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec));
dcd0538f 2050
328d5752
MF
2051 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
2052 le16_add_cpu(&root_el->l_next_free_rec, -1);
2053
2054 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2055 eb->h_next_leaf_blk = 0;
2056
2057 ocfs2_journal_dirty(handle, root_bh);
2058 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2059
2060 ocfs2_unlink_path(inode, handle, dealloc, right_path,
2061 subtree_index + 1);
2062}
2063
2064static int ocfs2_rotate_subtree_left(struct inode *inode, handle_t *handle,
2065 struct ocfs2_path *left_path,
2066 struct ocfs2_path *right_path,
2067 int subtree_index,
2068 struct ocfs2_cached_dealloc_ctxt *dealloc,
2069 int *deleted)
2070{
2071 int ret, i, del_right_subtree = 0, right_has_empty = 0;
2072 struct buffer_head *root_bh, *di_bh = path_root_bh(right_path);
2073 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2074 struct ocfs2_extent_list *right_leaf_el, *left_leaf_el;
2075 struct ocfs2_extent_block *eb;
2076
2077 *deleted = 0;
2078
2079 right_leaf_el = path_leaf_el(right_path);
2080 left_leaf_el = path_leaf_el(left_path);
2081 root_bh = left_path->p_node[subtree_index].bh;
2082 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2083
2084 if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0]))
2085 return 0;
dcd0538f 2086
328d5752
MF
2087 eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data;
2088 if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) {
dcd0538f 2089 /*
328d5752
MF
2090 * It's legal for us to proceed if the right leaf is
2091 * the rightmost one and it has an empty extent. There
2092 * are two cases to handle - whether the leaf will be
2093 * empty after removal or not. If the leaf isn't empty
2094 * then just remove the empty extent up front. The
2095 * next block will handle empty leaves by flagging
2096 * them for unlink.
2097 *
2098 * Non rightmost leaves will throw -EAGAIN and the
2099 * caller can manually move the subtree and retry.
dcd0538f 2100 */
dcd0538f 2101
328d5752
MF
2102 if (eb->h_next_leaf_blk != 0ULL)
2103 return -EAGAIN;
2104
2105 if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) {
2106 ret = ocfs2_journal_access(handle, inode,
2107 path_leaf_bh(right_path),
2108 OCFS2_JOURNAL_ACCESS_WRITE);
dcd0538f
MF
2109 if (ret) {
2110 mlog_errno(ret);
2111 goto out;
2112 }
2113
328d5752
MF
2114 ocfs2_remove_empty_extent(right_leaf_el);
2115 } else
2116 right_has_empty = 1;
dcd0538f
MF
2117 }
2118
328d5752
MF
2119 if (eb->h_next_leaf_blk == 0ULL &&
2120 le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) {
2121 /*
2122 * We have to update i_last_eb_blk during the meta
2123 * data delete.
2124 */
2125 ret = ocfs2_journal_access(handle, inode, di_bh,
2126 OCFS2_JOURNAL_ACCESS_WRITE);
2127 if (ret) {
2128 mlog_errno(ret);
2129 goto out;
2130 }
2131
2132 del_right_subtree = 1;
2133 }
2134
2135 /*
2136 * Getting here with an empty extent in the right path implies
2137 * that it's the rightmost path and will be deleted.
2138 */
2139 BUG_ON(right_has_empty && !del_right_subtree);
2140
2141 ret = ocfs2_journal_access(handle, inode, root_bh,
2142 OCFS2_JOURNAL_ACCESS_WRITE);
2143 if (ret) {
2144 mlog_errno(ret);
2145 goto out;
2146 }
2147
2148 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
2149 ret = ocfs2_journal_access(handle, inode,
2150 right_path->p_node[i].bh,
2151 OCFS2_JOURNAL_ACCESS_WRITE);
2152 if (ret) {
2153 mlog_errno(ret);
2154 goto out;
2155 }
2156
2157 ret = ocfs2_journal_access(handle, inode,
2158 left_path->p_node[i].bh,
2159 OCFS2_JOURNAL_ACCESS_WRITE);
2160 if (ret) {
2161 mlog_errno(ret);
2162 goto out;
2163 }
2164 }
2165
2166 if (!right_has_empty) {
2167 /*
2168 * Only do this if we're moving a real
2169 * record. Otherwise, the action is delayed until
2170 * after removal of the right path in which case we
2171 * can do a simple shift to remove the empty extent.
2172 */
2173 ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]);
2174 memset(&right_leaf_el->l_recs[0], 0,
2175 sizeof(struct ocfs2_extent_rec));
2176 }
2177 if (eb->h_next_leaf_blk == 0ULL) {
2178 /*
2179 * Move recs over to get rid of empty extent, decrease
2180 * next_free. This is allowed to remove the last
2181 * extent in our leaf (setting l_next_free_rec to
2182 * zero) - the delete code below won't care.
2183 */
2184 ocfs2_remove_empty_extent(right_leaf_el);
2185 }
2186
2187 ret = ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2188 if (ret)
2189 mlog_errno(ret);
2190 ret = ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
2191 if (ret)
2192 mlog_errno(ret);
2193
2194 if (del_right_subtree) {
2195 ocfs2_unlink_subtree(inode, handle, left_path, right_path,
2196 subtree_index, dealloc);
2197 ocfs2_update_edge_lengths(inode, handle, left_path);
2198
2199 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2200 di->i_last_eb_blk = eb->h_blkno;
2201
2202 /*
2203 * Removal of the extent in the left leaf was skipped
2204 * above so we could delete the right path
2205 * 1st.
2206 */
2207 if (right_has_empty)
2208 ocfs2_remove_empty_extent(left_leaf_el);
2209
2210 ret = ocfs2_journal_dirty(handle, di_bh);
2211 if (ret)
2212 mlog_errno(ret);
2213
2214 *deleted = 1;
2215 } else
2216 ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
2217 subtree_index);
2218
2219out:
2220 return ret;
2221}
2222
2223/*
2224 * Given a full path, determine what cpos value would return us a path
2225 * containing the leaf immediately to the right of the current one.
2226 *
2227 * Will return zero if the path passed in is already the rightmost path.
2228 *
2229 * This looks similar, but is subtly different to
2230 * ocfs2_find_cpos_for_left_leaf().
2231 */
2232static int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
2233 struct ocfs2_path *path, u32 *cpos)
2234{
2235 int i, j, ret = 0;
2236 u64 blkno;
2237 struct ocfs2_extent_list *el;
2238
2239 *cpos = 0;
2240
2241 if (path->p_tree_depth == 0)
2242 return 0;
2243
2244 blkno = path_leaf_bh(path)->b_blocknr;
2245
2246 /* Start at the tree node just above the leaf and work our way up. */
2247 i = path->p_tree_depth - 1;
2248 while (i >= 0) {
2249 int next_free;
2250
2251 el = path->p_node[i].el;
2252
2253 /*
2254 * Find the extent record just after the one in our
2255 * path.
2256 */
2257 next_free = le16_to_cpu(el->l_next_free_rec);
2258 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2259 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2260 if (j == (next_free - 1)) {
2261 if (i == 0) {
2262 /*
2263 * We've determined that the
2264 * path specified is already
2265 * the rightmost one - return a
2266 * cpos of zero.
2267 */
2268 goto out;
2269 }
2270 /*
2271 * The rightmost record points to our
2272 * leaf - we need to travel up the
2273 * tree one level.
2274 */
2275 goto next_node;
2276 }
2277
2278 *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos);
2279 goto out;
2280 }
2281 }
2282
2283 /*
2284 * If we got here, we never found a valid node where
2285 * the tree indicated one should be.
2286 */
2287 ocfs2_error(sb,
2288 "Invalid extent tree at extent block %llu\n",
2289 (unsigned long long)blkno);
2290 ret = -EROFS;
2291 goto out;
2292
2293next_node:
2294 blkno = path->p_node[i].bh->b_blocknr;
2295 i--;
2296 }
2297
2298out:
2299 return ret;
2300}
2301
2302static int ocfs2_rotate_rightmost_leaf_left(struct inode *inode,
2303 handle_t *handle,
2304 struct buffer_head *bh,
2305 struct ocfs2_extent_list *el)
2306{
2307 int ret;
2308
2309 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2310 return 0;
2311
2312 ret = ocfs2_journal_access(handle, inode, bh,
2313 OCFS2_JOURNAL_ACCESS_WRITE);
2314 if (ret) {
2315 mlog_errno(ret);
2316 goto out;
2317 }
2318
2319 ocfs2_remove_empty_extent(el);
2320
2321 ret = ocfs2_journal_dirty(handle, bh);
2322 if (ret)
2323 mlog_errno(ret);
2324
2325out:
2326 return ret;
2327}
2328
2329static int __ocfs2_rotate_tree_left(struct inode *inode,
2330 handle_t *handle, int orig_credits,
2331 struct ocfs2_path *path,
2332 struct ocfs2_cached_dealloc_ctxt *dealloc,
2333 struct ocfs2_path **empty_extent_path)
2334{
2335 int ret, subtree_root, deleted;
2336 u32 right_cpos;
2337 struct ocfs2_path *left_path = NULL;
2338 struct ocfs2_path *right_path = NULL;
2339
2340 BUG_ON(!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0])));
2341
2342 *empty_extent_path = NULL;
2343
2344 ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, path,
2345 &right_cpos);
2346 if (ret) {
2347 mlog_errno(ret);
2348 goto out;
2349 }
2350
2351 left_path = ocfs2_new_path(path_root_bh(path),
2352 path_root_el(path));
2353 if (!left_path) {
2354 ret = -ENOMEM;
2355 mlog_errno(ret);
2356 goto out;
2357 }
2358
2359 ocfs2_cp_path(left_path, path);
2360
2361 right_path = ocfs2_new_path(path_root_bh(path),
2362 path_root_el(path));
2363 if (!right_path) {
2364 ret = -ENOMEM;
2365 mlog_errno(ret);
2366 goto out;
2367 }
2368
2369 while (right_cpos) {
2370 ret = ocfs2_find_path(inode, right_path, right_cpos);
2371 if (ret) {
2372 mlog_errno(ret);
2373 goto out;
2374 }
2375
2376 subtree_root = ocfs2_find_subtree_root(inode, left_path,
2377 right_path);
2378
2379 mlog(0, "Subtree root at index %d (blk %llu, depth %d)\n",
2380 subtree_root,
2381 (unsigned long long)
2382 right_path->p_node[subtree_root].bh->b_blocknr,
2383 right_path->p_tree_depth);
2384
2385 ret = ocfs2_extend_rotate_transaction(handle, subtree_root,
2386 orig_credits, left_path);
2387 if (ret) {
2388 mlog_errno(ret);
2389 goto out;
2390 }
2391
2392 ret = ocfs2_rotate_subtree_left(inode, handle, left_path,
2393 right_path, subtree_root,
2394 dealloc, &deleted);
2395 if (ret == -EAGAIN) {
2396 /*
2397 * The rotation has to temporarily stop due to
2398 * the right subtree having an empty
2399 * extent. Pass it back to the caller for a
2400 * fixup.
2401 */
2402 *empty_extent_path = right_path;
2403 right_path = NULL;
2404 goto out;
2405 }
2406 if (ret) {
2407 mlog_errno(ret);
2408 goto out;
2409 }
2410
2411 /*
2412 * The subtree rotate might have removed records on
2413 * the rightmost edge. If so, then rotation is
2414 * complete.
2415 */
2416 if (deleted)
2417 break;
2418
2419 ocfs2_mv_path(left_path, right_path);
2420
2421 ret = ocfs2_find_cpos_for_right_leaf(inode->i_sb, left_path,
2422 &right_cpos);
2423 if (ret) {
2424 mlog_errno(ret);
2425 goto out;
2426 }
2427 }
2428
2429out:
2430 ocfs2_free_path(right_path);
2431 ocfs2_free_path(left_path);
2432
2433 return ret;
2434}
2435
2436static int ocfs2_remove_rightmost_path(struct inode *inode, handle_t *handle,
2437 struct ocfs2_path *path,
2438 struct ocfs2_cached_dealloc_ctxt *dealloc)
2439{
2440 int ret, subtree_index;
2441 u32 cpos;
2442 struct ocfs2_path *left_path = NULL;
2443 struct ocfs2_dinode *di;
2444 struct ocfs2_extent_block *eb;
2445 struct ocfs2_extent_list *el;
2446
2447 /*
2448 * XXX: This code assumes that the root is an inode, which is
2449 * true for now but may change as tree code gets generic.
2450 */
2451 di = (struct ocfs2_dinode *)path_root_bh(path)->b_data;
2452 if (!OCFS2_IS_VALID_DINODE(di)) {
2453 ret = -EIO;
2454 ocfs2_error(inode->i_sb,
2455 "Inode %llu has invalid path root",
2456 (unsigned long long)OCFS2_I(inode)->ip_blkno);
2457 goto out;
2458 }
2459
2460 /*
2461 * There's two ways we handle this depending on
2462 * whether path is the only existing one.
2463 */
2464 ret = ocfs2_extend_rotate_transaction(handle, 0,
2465 handle->h_buffer_credits,
2466 path);
2467 if (ret) {
2468 mlog_errno(ret);
2469 goto out;
2470 }
2471
2472 ret = ocfs2_journal_access_path(inode, handle, path);
2473 if (ret) {
2474 mlog_errno(ret);
2475 goto out;
2476 }
2477
2478 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos);
2479 if (ret) {
2480 mlog_errno(ret);
2481 goto out;
2482 }
2483
2484 if (cpos) {
2485 /*
2486 * We have a path to the left of this one - it needs
2487 * an update too.
2488 */
2489 left_path = ocfs2_new_path(path_root_bh(path),
2490 path_root_el(path));
2491 if (!left_path) {
2492 ret = -ENOMEM;
2493 mlog_errno(ret);
2494 goto out;
2495 }
2496
2497 ret = ocfs2_find_path(inode, left_path, cpos);
2498 if (ret) {
2499 mlog_errno(ret);
2500 goto out;
2501 }
2502
2503 ret = ocfs2_journal_access_path(inode, handle, left_path);
2504 if (ret) {
2505 mlog_errno(ret);
2506 goto out;
2507 }
2508
2509 subtree_index = ocfs2_find_subtree_root(inode, left_path, path);
2510
2511 ocfs2_unlink_subtree(inode, handle, left_path, path,
2512 subtree_index, dealloc);
2513 ocfs2_update_edge_lengths(inode, handle, left_path);
2514
2515 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2516 di->i_last_eb_blk = eb->h_blkno;
2517 } else {
2518 /*
2519 * 'path' is also the leftmost path which
2520 * means it must be the only one. This gets
2521 * handled differently because we want to
2522 * revert the inode back to having extents
2523 * in-line.
2524 */
2525 ocfs2_unlink_path(inode, handle, dealloc, path, 1);
2526
2527 el = &di->id2.i_list;
2528 el->l_tree_depth = 0;
2529 el->l_next_free_rec = 0;
2530 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2531
2532 di->i_last_eb_blk = 0;
2533 }
2534
2535 ocfs2_journal_dirty(handle, path_root_bh(path));
2536
2537out:
2538 ocfs2_free_path(left_path);
2539 return ret;
2540}
2541
2542/*
2543 * Left rotation of btree records.
2544 *
2545 * In many ways, this is (unsurprisingly) the opposite of right
2546 * rotation. We start at some non-rightmost path containing an empty
2547 * extent in the leaf block. The code works its way to the rightmost
2548 * path by rotating records to the left in every subtree.
2549 *
2550 * This is used by any code which reduces the number of extent records
2551 * in a leaf. After removal, an empty record should be placed in the
2552 * leftmost list position.
2553 *
2554 * This won't handle a length update of the rightmost path records if
2555 * the rightmost tree leaf record is removed so the caller is
2556 * responsible for detecting and correcting that.
2557 */
2558static int ocfs2_rotate_tree_left(struct inode *inode, handle_t *handle,
2559 struct ocfs2_path *path,
2560 struct ocfs2_cached_dealloc_ctxt *dealloc)
2561{
2562 int ret, orig_credits = handle->h_buffer_credits;
2563 struct ocfs2_path *tmp_path = NULL, *restart_path = NULL;
2564 struct ocfs2_extent_block *eb;
2565 struct ocfs2_extent_list *el;
2566
2567 el = path_leaf_el(path);
2568 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2569 return 0;
2570
2571 if (path->p_tree_depth == 0) {
2572rightmost_no_delete:
2573 /*
2574 * In-inode extents. This is trivially handled, so do
2575 * it up front.
2576 */
2577 ret = ocfs2_rotate_rightmost_leaf_left(inode, handle,
2578 path_leaf_bh(path),
2579 path_leaf_el(path));
2580 if (ret)
2581 mlog_errno(ret);
2582 goto out;
2583 }
2584
2585 /*
2586 * Handle rightmost branch now. There's several cases:
2587 * 1) simple rotation leaving records in there. That's trivial.
2588 * 2) rotation requiring a branch delete - there's no more
2589 * records left. Two cases of this:
2590 * a) There are branches to the left.
2591 * b) This is also the leftmost (the only) branch.
2592 *
2593 * 1) is handled via ocfs2_rotate_rightmost_leaf_left()
2594 * 2a) we need the left branch so that we can update it with the unlink
2595 * 2b) we need to bring the inode back to inline extents.
2596 */
2597
2598 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2599 el = &eb->h_list;
2600 if (eb->h_next_leaf_blk == 0) {
2601 /*
2602 * This gets a bit tricky if we're going to delete the
2603 * rightmost path. Get the other cases out of the way
2604 * 1st.
2605 */
2606 if (le16_to_cpu(el->l_next_free_rec) > 1)
2607 goto rightmost_no_delete;
2608
2609 if (le16_to_cpu(el->l_next_free_rec) == 0) {
2610 ret = -EIO;
2611 ocfs2_error(inode->i_sb,
2612 "Inode %llu has empty extent block at %llu",
2613 (unsigned long long)OCFS2_I(inode)->ip_blkno,
2614 (unsigned long long)le64_to_cpu(eb->h_blkno));
2615 goto out;
2616 }
2617
2618 /*
2619 * XXX: The caller can not trust "path" any more after
2620 * this as it will have been deleted. What do we do?
2621 *
2622 * In theory the rotate-for-merge code will never get
2623 * here because it'll always ask for a rotate in a
2624 * nonempty list.
2625 */
2626
2627 ret = ocfs2_remove_rightmost_path(inode, handle, path,
2628 dealloc);
2629 if (ret)
2630 mlog_errno(ret);
2631 goto out;
2632 }
2633
2634 /*
2635 * Now we can loop, remembering the path we get from -EAGAIN
2636 * and restarting from there.
2637 */
2638try_rotate:
2639 ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits, path,
2640 dealloc, &restart_path);
2641 if (ret && ret != -EAGAIN) {
2642 mlog_errno(ret);
2643 goto out;
2644 }
2645
2646 while (ret == -EAGAIN) {
2647 tmp_path = restart_path;
2648 restart_path = NULL;
2649
2650 ret = __ocfs2_rotate_tree_left(inode, handle, orig_credits,
2651 tmp_path, dealloc,
2652 &restart_path);
2653 if (ret && ret != -EAGAIN) {
2654 mlog_errno(ret);
2655 goto out;
2656 }
2657
2658 ocfs2_free_path(tmp_path);
2659 tmp_path = NULL;
2660
2661 if (ret == 0)
2662 goto try_rotate;
2663 }
2664
2665out:
2666 ocfs2_free_path(tmp_path);
2667 ocfs2_free_path(restart_path);
2668 return ret;
2669}
2670
2671static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el,
2672 int index)
2673{
2674 struct ocfs2_extent_rec *rec = &el->l_recs[index];
2675 unsigned int size;
2676
2677 if (rec->e_leaf_clusters == 0) {
2678 /*
2679 * We consumed all of the merged-from record. An empty
2680 * extent cannot exist anywhere but the 1st array
2681 * position, so move things over if the merged-from
2682 * record doesn't occupy that position.
2683 *
2684 * This creates a new empty extent so the caller
2685 * should be smart enough to have removed any existing
2686 * ones.
2687 */
2688 if (index > 0) {
2689 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
2690 size = index * sizeof(struct ocfs2_extent_rec);
2691 memmove(&el->l_recs[1], &el->l_recs[0], size);
2692 }
2693
2694 /*
2695 * Always memset - the caller doesn't check whether it
2696 * created an empty extent, so there could be junk in
2697 * the other fields.
2698 */
2699 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2700 }
2701}
2702
2703/*
2704 * Remove split_rec clusters from the record at index and merge them
2705 * onto the beginning of the record at index + 1.
2706 */
2707static int ocfs2_merge_rec_right(struct inode *inode, struct buffer_head *bh,
2708 handle_t *handle,
2709 struct ocfs2_extent_rec *split_rec,
2710 struct ocfs2_extent_list *el, int index)
2711{
2712 int ret;
2713 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
2714 struct ocfs2_extent_rec *left_rec;
2715 struct ocfs2_extent_rec *right_rec;
2716
2717 BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
2718
2719 left_rec = &el->l_recs[index];
2720 right_rec = &el->l_recs[index + 1];
2721
2722 ret = ocfs2_journal_access(handle, inode, bh,
2723 OCFS2_JOURNAL_ACCESS_WRITE);
2724 if (ret) {
2725 mlog_errno(ret);
2726 goto out;
2727 }
2728
2729 le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters);
2730
2731 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
2732 le64_add_cpu(&right_rec->e_blkno,
2733 -ocfs2_clusters_to_blocks(inode->i_sb, split_clusters));
2734 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
2735
2736 ocfs2_cleanup_merge(el, index);
2737
2738 ret = ocfs2_journal_dirty(handle, bh);
2739 if (ret)
2740 mlog_errno(ret);
2741
2742out:
2743 return ret;
2744}
2745
2746/*
2747 * Remove split_rec clusters from the record at index and merge them
2748 * onto the tail of the record at index - 1.
2749 */
2750static int ocfs2_merge_rec_left(struct inode *inode, struct buffer_head *bh,
2751 handle_t *handle,
2752 struct ocfs2_extent_rec *split_rec,
2753 struct ocfs2_extent_list *el, int index)
2754{
2755 int ret, has_empty_extent = 0;
2756 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
2757 struct ocfs2_extent_rec *left_rec;
2758 struct ocfs2_extent_rec *right_rec;
2759
2760 BUG_ON(index <= 0);
2761
2762 left_rec = &el->l_recs[index - 1];
2763 right_rec = &el->l_recs[index];
2764 if (ocfs2_is_empty_extent(&el->l_recs[0]))
2765 has_empty_extent = 1;
2766
2767 ret = ocfs2_journal_access(handle, inode, bh,
2768 OCFS2_JOURNAL_ACCESS_WRITE);
2769 if (ret) {
2770 mlog_errno(ret);
2771 goto out;
2772 }
2773
2774 if (has_empty_extent && index == 1) {
2775 /*
2776 * The easy case - we can just plop the record right in.
2777 */
2778 *left_rec = *split_rec;
2779
2780 has_empty_extent = 0;
2781 } else {
2782 le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters);
2783 }
2784
2785 le32_add_cpu(&right_rec->e_cpos, split_clusters);
2786 le64_add_cpu(&right_rec->e_blkno,
2787 ocfs2_clusters_to_blocks(inode->i_sb, split_clusters));
2788 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
2789
2790 ocfs2_cleanup_merge(el, index);
2791
2792 ret = ocfs2_journal_dirty(handle, bh);
2793 if (ret)
2794 mlog_errno(ret);
2795
2796out:
2797 return ret;
2798}
2799
2800static int ocfs2_try_to_merge_extent(struct inode *inode,
2801 handle_t *handle,
2802 struct ocfs2_path *left_path,
2803 int split_index,
2804 struct ocfs2_extent_rec *split_rec,
2805 struct ocfs2_cached_dealloc_ctxt *dealloc,
2806 struct ocfs2_merge_ctxt *ctxt)
2807
2808{
518d7269 2809 int ret = 0;
328d5752
MF
2810 struct ocfs2_extent_list *el = path_leaf_el(left_path);
2811 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
2812
2813 BUG_ON(ctxt->c_contig_type == CONTIG_NONE);
2814
518d7269
TM
2815 if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) {
2816 /*
2817 * The merge code will need to create an empty
2818 * extent to take the place of the newly
2819 * emptied slot. Remove any pre-existing empty
2820 * extents - having more than one in a leaf is
2821 * illegal.
2822 */
2823 ret = ocfs2_rotate_tree_left(inode, handle, left_path,
2824 dealloc);
2825 if (ret) {
2826 mlog_errno(ret);
2827 goto out;
328d5752 2828 }
518d7269
TM
2829 split_index--;
2830 rec = &el->l_recs[split_index];
328d5752
MF
2831 }
2832
2833 if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) {
2834 /*
2835 * Left-right contig implies this.
2836 */
2837 BUG_ON(!ctxt->c_split_covers_rec);
2838 BUG_ON(split_index == 0);
2839
2840 /*
2841 * Since the leftright insert always covers the entire
2842 * extent, this call will delete the insert record
2843 * entirely, resulting in an empty extent record added to
2844 * the extent block.
2845 *
2846 * Since the adding of an empty extent shifts
2847 * everything back to the right, there's no need to
2848 * update split_index here.
2849 */
2850 ret = ocfs2_merge_rec_left(inode, path_leaf_bh(left_path),
2851 handle, split_rec, el, split_index);
2852 if (ret) {
2853 mlog_errno(ret);
2854 goto out;
2855 }
2856
2857 /*
2858 * We can only get this from logic error above.
2859 */
2860 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
2861
2862 /*
2863 * The left merge left us with an empty extent, remove
2864 * it.
2865 */
2866 ret = ocfs2_rotate_tree_left(inode, handle, left_path, dealloc);
2867 if (ret) {
2868 mlog_errno(ret);
2869 goto out;
2870 }
2871 split_index--;
2872 rec = &el->l_recs[split_index];
2873
2874 /*
2875 * Note that we don't pass split_rec here on purpose -
2876 * we've merged it into the left side.
2877 */
2878 ret = ocfs2_merge_rec_right(inode, path_leaf_bh(left_path),
2879 handle, rec, el, split_index);
2880 if (ret) {
2881 mlog_errno(ret);
2882 goto out;
2883 }
2884
2885 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
2886
2887 ret = ocfs2_rotate_tree_left(inode, handle, left_path,
2888 dealloc);
2889 /*
2890 * Error from this last rotate is not critical, so
2891 * print but don't bubble it up.
2892 */
2893 if (ret)
2894 mlog_errno(ret);
2895 ret = 0;
2896 } else {
2897 /*
2898 * Merge a record to the left or right.
2899 *
2900 * 'contig_type' is relative to the existing record,
2901 * so for example, if we're "right contig", it's to
2902 * the record on the left (hence the left merge).
2903 */
2904 if (ctxt->c_contig_type == CONTIG_RIGHT) {
2905 ret = ocfs2_merge_rec_left(inode,
2906 path_leaf_bh(left_path),
2907 handle, split_rec, el,
2908 split_index);
2909 if (ret) {
2910 mlog_errno(ret);
2911 goto out;
2912 }
2913 } else {
2914 ret = ocfs2_merge_rec_right(inode,
2915 path_leaf_bh(left_path),
2916 handle, split_rec, el,
2917 split_index);
2918 if (ret) {
2919 mlog_errno(ret);
2920 goto out;
2921 }
2922 }
2923
2924 if (ctxt->c_split_covers_rec) {
2925 /*
2926 * The merge may have left an empty extent in
2927 * our leaf. Try to rotate it away.
2928 */
2929 ret = ocfs2_rotate_tree_left(inode, handle, left_path,
2930 dealloc);
2931 if (ret)
2932 mlog_errno(ret);
2933 ret = 0;
2934 }
2935 }
2936
2937out:
2938 return ret;
2939}
2940
2941static void ocfs2_subtract_from_rec(struct super_block *sb,
2942 enum ocfs2_split_type split,
2943 struct ocfs2_extent_rec *rec,
2944 struct ocfs2_extent_rec *split_rec)
2945{
2946 u64 len_blocks;
2947
2948 len_blocks = ocfs2_clusters_to_blocks(sb,
2949 le16_to_cpu(split_rec->e_leaf_clusters));
2950
2951 if (split == SPLIT_LEFT) {
2952 /*
2953 * Region is on the left edge of the existing
2954 * record.
2955 */
2956 le32_add_cpu(&rec->e_cpos,
2957 le16_to_cpu(split_rec->e_leaf_clusters));
2958 le64_add_cpu(&rec->e_blkno, len_blocks);
2959 le16_add_cpu(&rec->e_leaf_clusters,
2960 -le16_to_cpu(split_rec->e_leaf_clusters));
2961 } else {
2962 /*
2963 * Region is on the right edge of the existing
2964 * record.
2965 */
2966 le16_add_cpu(&rec->e_leaf_clusters,
2967 -le16_to_cpu(split_rec->e_leaf_clusters));
2968 }
2969}
2970
2971/*
2972 * Do the final bits of extent record insertion at the target leaf
2973 * list. If this leaf is part of an allocation tree, it is assumed
2974 * that the tree above has been prepared.
2975 */
2976static void ocfs2_insert_at_leaf(struct ocfs2_extent_rec *insert_rec,
2977 struct ocfs2_extent_list *el,
2978 struct ocfs2_insert_type *insert,
2979 struct inode *inode)
2980{
2981 int i = insert->ins_contig_index;
2982 unsigned int range;
2983 struct ocfs2_extent_rec *rec;
2984
2985 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
2986
2987 if (insert->ins_split != SPLIT_NONE) {
2988 i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos));
2989 BUG_ON(i == -1);
2990 rec = &el->l_recs[i];
2991 ocfs2_subtract_from_rec(inode->i_sb, insert->ins_split, rec,
2992 insert_rec);
2993 goto rotate;
2994 }
2995
2996 /*
2997 * Contiguous insert - either left or right.
2998 */
2999 if (insert->ins_contig != CONTIG_NONE) {
3000 rec = &el->l_recs[i];
3001 if (insert->ins_contig == CONTIG_LEFT) {
3002 rec->e_blkno = insert_rec->e_blkno;
3003 rec->e_cpos = insert_rec->e_cpos;
3004 }
3005 le16_add_cpu(&rec->e_leaf_clusters,
3006 le16_to_cpu(insert_rec->e_leaf_clusters));
3007 return;
3008 }
3009
3010 /*
3011 * Handle insert into an empty leaf.
3012 */
3013 if (le16_to_cpu(el->l_next_free_rec) == 0 ||
3014 ((le16_to_cpu(el->l_next_free_rec) == 1) &&
3015 ocfs2_is_empty_extent(&el->l_recs[0]))) {
3016 el->l_recs[0] = *insert_rec;
3017 el->l_next_free_rec = cpu_to_le16(1);
3018 return;
3019 }
3020
3021 /*
3022 * Appending insert.
3023 */
3024 if (insert->ins_appending == APPEND_TAIL) {
3025 i = le16_to_cpu(el->l_next_free_rec) - 1;
3026 rec = &el->l_recs[i];
3027 range = le32_to_cpu(rec->e_cpos)
3028 + le16_to_cpu(rec->e_leaf_clusters);
3029 BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range);
3030
3031 mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >=
3032 le16_to_cpu(el->l_count),
3033 "inode %lu, depth %u, count %u, next free %u, "
3034 "rec.cpos %u, rec.clusters %u, "
3035 "insert.cpos %u, insert.clusters %u\n",
3036 inode->i_ino,
3037 le16_to_cpu(el->l_tree_depth),
3038 le16_to_cpu(el->l_count),
3039 le16_to_cpu(el->l_next_free_rec),
3040 le32_to_cpu(el->l_recs[i].e_cpos),
3041 le16_to_cpu(el->l_recs[i].e_leaf_clusters),
3042 le32_to_cpu(insert_rec->e_cpos),
3043 le16_to_cpu(insert_rec->e_leaf_clusters));
3044 i++;
3045 el->l_recs[i] = *insert_rec;
3046 le16_add_cpu(&el->l_next_free_rec, 1);
3047 return;
3048 }
3049
3050rotate:
3051 /*
3052 * Ok, we have to rotate.
3053 *
3054 * At this point, it is safe to assume that inserting into an
3055 * empty leaf and appending to a leaf have both been handled
3056 * above.
3057 *
3058 * This leaf needs to have space, either by the empty 1st
3059 * extent record, or by virtue of an l_next_rec < l_count.
3060 */
3061 ocfs2_rotate_leaf(el, insert_rec);
3062}
3063
3064static inline void ocfs2_update_dinode_clusters(struct inode *inode,
3065 struct ocfs2_dinode *di,
3066 u32 clusters)
3067{
3068 le32_add_cpu(&di->i_clusters, clusters);
3069 spin_lock(&OCFS2_I(inode)->ip_lock);
3070 OCFS2_I(inode)->ip_clusters = le32_to_cpu(di->i_clusters);
3071 spin_unlock(&OCFS2_I(inode)->ip_lock);
3072}
3073
3074static void ocfs2_adjust_rightmost_records(struct inode *inode,
3075 handle_t *handle,
3076 struct ocfs2_path *path,
3077 struct ocfs2_extent_rec *insert_rec)
3078{
3079 int ret, i, next_free;
3080 struct buffer_head *bh;
3081 struct ocfs2_extent_list *el;
3082 struct ocfs2_extent_rec *rec;
3083
3084 /*
3085 * Update everything except the leaf block.
3086 */
3087 for (i = 0; i < path->p_tree_depth; i++) {
3088 bh = path->p_node[i].bh;
3089 el = path->p_node[i].el;
3090
dcd0538f
MF
3091 next_free = le16_to_cpu(el->l_next_free_rec);
3092 if (next_free == 0) {
3093 ocfs2_error(inode->i_sb,
3094 "Dinode %llu has a bad extent list",
3095 (unsigned long long)OCFS2_I(inode)->ip_blkno);
3096 ret = -EIO;
328d5752
MF
3097 return;
3098 }
3099
3100 rec = &el->l_recs[next_free - 1];
3101
3102 rec->e_int_clusters = insert_rec->e_cpos;
3103 le32_add_cpu(&rec->e_int_clusters,
3104 le16_to_cpu(insert_rec->e_leaf_clusters));
3105 le32_add_cpu(&rec->e_int_clusters,
3106 -le32_to_cpu(rec->e_cpos));
3107
3108 ret = ocfs2_journal_dirty(handle, bh);
3109 if (ret)
3110 mlog_errno(ret);
3111
3112 }
3113}
3114
3115static int ocfs2_append_rec_to_path(struct inode *inode, handle_t *handle,
3116 struct ocfs2_extent_rec *insert_rec,
3117 struct ocfs2_path *right_path,
3118 struct ocfs2_path **ret_left_path)
3119{
3120 int ret, next_free;
3121 struct ocfs2_extent_list *el;
3122 struct ocfs2_path *left_path = NULL;
3123
3124 *ret_left_path = NULL;
3125
3126 /*
3127 * This shouldn't happen for non-trees. The extent rec cluster
3128 * count manipulation below only works for interior nodes.
3129 */
3130 BUG_ON(right_path->p_tree_depth == 0);
3131
3132 /*
3133 * If our appending insert is at the leftmost edge of a leaf,
3134 * then we might need to update the rightmost records of the
3135 * neighboring path.
3136 */
3137 el = path_leaf_el(right_path);
3138 next_free = le16_to_cpu(el->l_next_free_rec);
3139 if (next_free == 0 ||
3140 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) {
3141 u32 left_cpos;
3142
3143 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, right_path,
3144 &left_cpos);
3145 if (ret) {
3146 mlog_errno(ret);
dcd0538f
MF
3147 goto out;
3148 }
3149
328d5752
MF
3150 mlog(0, "Append may need a left path update. cpos: %u, "
3151 "left_cpos: %u\n", le32_to_cpu(insert_rec->e_cpos),
3152 left_cpos);
e48edee2 3153
328d5752
MF
3154 /*
3155 * No need to worry if the append is already in the
3156 * leftmost leaf.
3157 */
3158 if (left_cpos) {
3159 left_path = ocfs2_new_path(path_root_bh(right_path),
3160 path_root_el(right_path));
3161 if (!left_path) {
3162 ret = -ENOMEM;
3163 mlog_errno(ret);
3164 goto out;
3165 }
dcd0538f 3166
328d5752
MF
3167 ret = ocfs2_find_path(inode, left_path, left_cpos);
3168 if (ret) {
3169 mlog_errno(ret);
3170 goto out;
3171 }
dcd0538f 3172
328d5752
MF
3173 /*
3174 * ocfs2_insert_path() will pass the left_path to the
3175 * journal for us.
3176 */
3177 }
3178 }
dcd0538f 3179
328d5752
MF
3180 ret = ocfs2_journal_access_path(inode, handle, right_path);
3181 if (ret) {
3182 mlog_errno(ret);
3183 goto out;
dcd0538f
MF
3184 }
3185
328d5752
MF
3186 ocfs2_adjust_rightmost_records(inode, handle, right_path, insert_rec);
3187
dcd0538f
MF
3188 *ret_left_path = left_path;
3189 ret = 0;
3190out:
3191 if (ret != 0)
3192 ocfs2_free_path(left_path);
3193
3194 return ret;
3195}
3196
328d5752
MF
3197static void ocfs2_split_record(struct inode *inode,
3198 struct ocfs2_path *left_path,
3199 struct ocfs2_path *right_path,
3200 struct ocfs2_extent_rec *split_rec,
3201 enum ocfs2_split_type split)
3202{
3203 int index;
3204 u32 cpos = le32_to_cpu(split_rec->e_cpos);
3205 struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
3206 struct ocfs2_extent_rec *rec, *tmprec;
3207
3208 right_el = path_leaf_el(right_path);;
3209 if (left_path)
3210 left_el = path_leaf_el(left_path);
3211
3212 el = right_el;
3213 insert_el = right_el;
3214 index = ocfs2_search_extent_list(el, cpos);
3215 if (index != -1) {
3216 if (index == 0 && left_path) {
3217 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
3218
3219 /*
3220 * This typically means that the record
3221 * started in the left path but moved to the
3222 * right as a result of rotation. We either
3223 * move the existing record to the left, or we
3224 * do the later insert there.
3225 *
3226 * In this case, the left path should always
3227 * exist as the rotate code will have passed
3228 * it back for a post-insert update.
3229 */
3230
3231 if (split == SPLIT_LEFT) {
3232 /*
3233 * It's a left split. Since we know
3234 * that the rotate code gave us an
3235 * empty extent in the left path, we
3236 * can just do the insert there.
3237 */
3238 insert_el = left_el;
3239 } else {
3240 /*
3241 * Right split - we have to move the
3242 * existing record over to the left
3243 * leaf. The insert will be into the
3244 * newly created empty extent in the
3245 * right leaf.
3246 */
3247 tmprec = &right_el->l_recs[index];
3248 ocfs2_rotate_leaf(left_el, tmprec);
3249 el = left_el;
3250
3251 memset(tmprec, 0, sizeof(*tmprec));
3252 index = ocfs2_search_extent_list(left_el, cpos);
3253 BUG_ON(index == -1);
3254 }
3255 }
3256 } else {
3257 BUG_ON(!left_path);
3258 BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0]));
3259 /*
3260 * Left path is easy - we can just allow the insert to
3261 * happen.
3262 */
3263 el = left_el;
3264 insert_el = left_el;
3265 index = ocfs2_search_extent_list(el, cpos);
3266 BUG_ON(index == -1);
3267 }
3268
3269 rec = &el->l_recs[index];
3270 ocfs2_subtract_from_rec(inode->i_sb, split, rec, split_rec);
3271 ocfs2_rotate_leaf(insert_el, split_rec);
3272}
3273
dcd0538f
MF
3274/*
3275 * This function only does inserts on an allocation b-tree. For dinode
3276 * lists, ocfs2_insert_at_leaf() is called directly.
3277 *
3278 * right_path is the path we want to do the actual insert
3279 * in. left_path should only be passed in if we need to update that
3280 * portion of the tree after an edge insert.
3281 */
3282static int ocfs2_insert_path(struct inode *inode,
3283 handle_t *handle,
3284 struct ocfs2_path *left_path,
3285 struct ocfs2_path *right_path,
3286 struct ocfs2_extent_rec *insert_rec,
3287 struct ocfs2_insert_type *insert)
3288{
3289 int ret, subtree_index;
3290 struct buffer_head *leaf_bh = path_leaf_bh(right_path);
dcd0538f
MF
3291
3292 /*
3293 * Pass both paths to the journal. The majority of inserts
3294 * will be touching all components anyway.
3295 */
3296 ret = ocfs2_journal_access_path(inode, handle, right_path);
3297 if (ret < 0) {
3298 mlog_errno(ret);
3299 goto out;
3300 }
3301
3302 if (left_path) {
3303 int credits = handle->h_buffer_credits;
3304
3305 /*
3306 * There's a chance that left_path got passed back to
3307 * us without being accounted for in the
3308 * journal. Extend our transaction here to be sure we
3309 * can change those blocks.
3310 */
3311 credits += left_path->p_tree_depth;
3312
3313 ret = ocfs2_extend_trans(handle, credits);
3314 if (ret < 0) {
3315 mlog_errno(ret);
3316 goto out;
3317 }
3318
3319 ret = ocfs2_journal_access_path(inode, handle, left_path);
3320 if (ret < 0) {
3321 mlog_errno(ret);
3322 goto out;
3323 }
3324 }
3325
328d5752
MF
3326 if (insert->ins_split != SPLIT_NONE) {
3327 /*
3328 * We could call ocfs2_insert_at_leaf() for some types
3329 * of splits, but it's easier to just let one seperate
3330 * function sort it all out.
3331 */
3332 ocfs2_split_record(inode, left_path, right_path,
3333 insert_rec, insert->ins_split);
3334 } else
3335 ocfs2_insert_at_leaf(insert_rec, path_leaf_el(right_path),
3336 insert, inode);
dcd0538f 3337
dcd0538f
MF
3338 ret = ocfs2_journal_dirty(handle, leaf_bh);
3339 if (ret)
3340 mlog_errno(ret);
3341
3342 if (left_path) {
3343 /*
3344 * The rotate code has indicated that we need to fix
3345 * up portions of the tree after the insert.
3346 *
3347 * XXX: Should we extend the transaction here?
3348 */
3349 subtree_index = ocfs2_find_subtree_root(inode, left_path,
3350 right_path);
3351 ocfs2_complete_edge_insert(inode, handle, left_path,
3352 right_path, subtree_index);
3353 }
3354
3355 ret = 0;
3356out:
3357 return ret;
3358}
3359
3360static int ocfs2_do_insert_extent(struct inode *inode,
3361 handle_t *handle,
3362 struct buffer_head *di_bh,
3363 struct ocfs2_extent_rec *insert_rec,
3364 struct ocfs2_insert_type *type)
3365{
3366 int ret, rotate = 0;
3367 u32 cpos;
3368 struct ocfs2_path *right_path = NULL;
3369 struct ocfs2_path *left_path = NULL;
3370 struct ocfs2_dinode *di;
3371 struct ocfs2_extent_list *el;
3372
3373 di = (struct ocfs2_dinode *) di_bh->b_data;
3374 el = &di->id2.i_list;
3375
3376 ret = ocfs2_journal_access(handle, inode, di_bh,
3377 OCFS2_JOURNAL_ACCESS_WRITE);
3378 if (ret) {
3379 mlog_errno(ret);
3380 goto out;
3381 }
3382
3383 if (le16_to_cpu(el->l_tree_depth) == 0) {
3384 ocfs2_insert_at_leaf(insert_rec, el, type, inode);
3385 goto out_update_clusters;
3386 }
3387
3388 right_path = ocfs2_new_inode_path(di_bh);
3389 if (!right_path) {
3390 ret = -ENOMEM;
3391 mlog_errno(ret);
3392 goto out;
3393 }
3394
3395 /*
3396 * Determine the path to start with. Rotations need the
3397 * rightmost path, everything else can go directly to the
3398 * target leaf.
3399 */
3400 cpos = le32_to_cpu(insert_rec->e_cpos);
3401 if (type->ins_appending == APPEND_NONE &&
3402 type->ins_contig == CONTIG_NONE) {
3403 rotate = 1;
3404 cpos = UINT_MAX;
3405 }
3406
3407 ret = ocfs2_find_path(inode, right_path, cpos);
3408 if (ret) {
3409 mlog_errno(ret);
3410 goto out;
3411 }
3412
3413 /*
3414 * Rotations and appends need special treatment - they modify
3415 * parts of the tree's above them.
3416 *
3417 * Both might pass back a path immediate to the left of the
3418 * one being inserted to. This will be cause
3419 * ocfs2_insert_path() to modify the rightmost records of
3420 * left_path to account for an edge insert.
3421 *
3422 * XXX: When modifying this code, keep in mind that an insert
3423 * can wind up skipping both of these two special cases...
3424 */
3425 if (rotate) {
328d5752 3426 ret = ocfs2_rotate_tree_right(inode, handle, type->ins_split,
dcd0538f
MF
3427 le32_to_cpu(insert_rec->e_cpos),
3428 right_path, &left_path);
3429 if (ret) {
3430 mlog_errno(ret);
3431 goto out;
3432 }
3433 } else if (type->ins_appending == APPEND_TAIL
3434 && type->ins_contig != CONTIG_LEFT) {
3435 ret = ocfs2_append_rec_to_path(inode, handle, insert_rec,
3436 right_path, &left_path);
3437 if (ret) {
3438 mlog_errno(ret);
3439 goto out;
3440 }
3441 }
3442
3443 ret = ocfs2_insert_path(inode, handle, left_path, right_path,
3444 insert_rec, type);
3445 if (ret) {
3446 mlog_errno(ret);
3447 goto out;
3448 }
3449
3450out_update_clusters:
328d5752
MF
3451 if (type->ins_split == SPLIT_NONE)
3452 ocfs2_update_dinode_clusters(inode, di,
3453 le16_to_cpu(insert_rec->e_leaf_clusters));
dcd0538f
MF
3454
3455 ret = ocfs2_journal_dirty(handle, di_bh);
3456 if (ret)
3457 mlog_errno(ret);
3458
3459out:
3460 ocfs2_free_path(left_path);
3461 ocfs2_free_path(right_path);
3462
3463 return ret;
3464}
3465
328d5752
MF
3466static enum ocfs2_contig_type
3467ocfs2_figure_merge_contig_type(struct inode *inode,
3468 struct ocfs2_extent_list *el, int index,
3469 struct ocfs2_extent_rec *split_rec)
3470{
3471 struct ocfs2_extent_rec *rec;
3472 enum ocfs2_contig_type ret = CONTIG_NONE;
3473
3474 /*
3475 * We're careful to check for an empty extent record here -
3476 * the merge code will know what to do if it sees one.
3477 */
3478
3479 if (index > 0) {
3480 rec = &el->l_recs[index - 1];
3481 if (index == 1 && ocfs2_is_empty_extent(rec)) {
3482 if (split_rec->e_cpos == el->l_recs[index].e_cpos)
3483 ret = CONTIG_RIGHT;
3484 } else {
3485 ret = ocfs2_extent_contig(inode, rec, split_rec);
3486 }
3487 }
3488
3489 if (index < (le16_to_cpu(el->l_next_free_rec) - 1)) {
3490 enum ocfs2_contig_type contig_type;
3491
3492 rec = &el->l_recs[index + 1];
3493 contig_type = ocfs2_extent_contig(inode, rec, split_rec);
3494
3495 if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT)
3496 ret = CONTIG_LEFTRIGHT;
3497 else if (ret == CONTIG_NONE)
3498 ret = contig_type;
3499 }
3500
3501 return ret;
3502}
3503
dcd0538f
MF
3504static void ocfs2_figure_contig_type(struct inode *inode,
3505 struct ocfs2_insert_type *insert,
3506 struct ocfs2_extent_list *el,
3507 struct ocfs2_extent_rec *insert_rec)
3508{
3509 int i;
3510 enum ocfs2_contig_type contig_type = CONTIG_NONE;
3511
e48edee2
MF
3512 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
3513
dcd0538f
MF
3514 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
3515 contig_type = ocfs2_extent_contig(inode, &el->l_recs[i],
3516 insert_rec);
3517 if (contig_type != CONTIG_NONE) {
3518 insert->ins_contig_index = i;
3519 break;
3520 }
3521 }
3522 insert->ins_contig = contig_type;
3523}
3524
3525/*
3526 * This should only be called against the righmost leaf extent list.
3527 *
3528 * ocfs2_figure_appending_type() will figure out whether we'll have to
3529 * insert at the tail of the rightmost leaf.
3530 *
3531 * This should also work against the dinode list for tree's with 0
3532 * depth. If we consider the dinode list to be the rightmost leaf node
3533 * then the logic here makes sense.
3534 */
3535static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert,
3536 struct ocfs2_extent_list *el,
3537 struct ocfs2_extent_rec *insert_rec)
3538{
3539 int i;
3540 u32 cpos = le32_to_cpu(insert_rec->e_cpos);
3541 struct ocfs2_extent_rec *rec;
3542
3543 insert->ins_appending = APPEND_NONE;
3544
e48edee2 3545 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
dcd0538f
MF
3546
3547 if (!el->l_next_free_rec)
3548 goto set_tail_append;
3549
3550 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
3551 /* Were all records empty? */
3552 if (le16_to_cpu(el->l_next_free_rec) == 1)
3553 goto set_tail_append;
3554 }
3555
3556 i = le16_to_cpu(el->l_next_free_rec) - 1;
3557 rec = &el->l_recs[i];
3558
e48edee2
MF
3559 if (cpos >=
3560 (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)))
dcd0538f
MF
3561 goto set_tail_append;
3562
3563 return;
3564
3565set_tail_append:
3566 insert->ins_appending = APPEND_TAIL;
3567}
3568
3569/*
3570 * Helper function called at the begining of an insert.
3571 *
3572 * This computes a few things that are commonly used in the process of
3573 * inserting into the btree:
3574 * - Whether the new extent is contiguous with an existing one.
3575 * - The current tree depth.
3576 * - Whether the insert is an appending one.
3577 * - The total # of free records in the tree.
3578 *
3579 * All of the information is stored on the ocfs2_insert_type
3580 * structure.
3581 */
3582static int ocfs2_figure_insert_type(struct inode *inode,
3583 struct buffer_head *di_bh,
3584 struct buffer_head **last_eb_bh,
3585 struct ocfs2_extent_rec *insert_rec,
c77534f6 3586 int *free_records,
dcd0538f
MF
3587 struct ocfs2_insert_type *insert)
3588{
3589 int ret;
3590 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3591 struct ocfs2_extent_block *eb;
3592 struct ocfs2_extent_list *el;
3593 struct ocfs2_path *path = NULL;
3594 struct buffer_head *bh = NULL;
3595
328d5752
MF
3596 insert->ins_split = SPLIT_NONE;
3597
dcd0538f
MF
3598 el = &di->id2.i_list;
3599 insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth);
3600
3601 if (el->l_tree_depth) {
3602 /*
3603 * If we have tree depth, we read in the
3604 * rightmost extent block ahead of time as
3605 * ocfs2_figure_insert_type() and ocfs2_add_branch()
3606 * may want it later.
3607 */
3608 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
3609 le64_to_cpu(di->i_last_eb_blk), &bh,
3610 OCFS2_BH_CACHED, inode);
3611 if (ret) {
3612 mlog_exit(ret);
3613 goto out;
3614 }
ccd979bd 3615 eb = (struct ocfs2_extent_block *) bh->b_data;
ccd979bd 3616 el = &eb->h_list;
dcd0538f 3617 }
ccd979bd 3618
dcd0538f
MF
3619 /*
3620 * Unless we have a contiguous insert, we'll need to know if
3621 * there is room left in our allocation tree for another
3622 * extent record.
3623 *
3624 * XXX: This test is simplistic, we can search for empty
3625 * extent records too.
3626 */
c77534f6 3627 *free_records = le16_to_cpu(el->l_count) -
dcd0538f
MF
3628 le16_to_cpu(el->l_next_free_rec);
3629
3630 if (!insert->ins_tree_depth) {
3631 ocfs2_figure_contig_type(inode, insert, el, insert_rec);
3632 ocfs2_figure_appending_type(insert, el, insert_rec);
3633 return 0;
ccd979bd
MF
3634 }
3635
dcd0538f
MF
3636 path = ocfs2_new_inode_path(di_bh);
3637 if (!path) {
3638 ret = -ENOMEM;
3639 mlog_errno(ret);
3640 goto out;
3641 }
ccd979bd 3642
dcd0538f
MF
3643 /*
3644 * In the case that we're inserting past what the tree
3645 * currently accounts for, ocfs2_find_path() will return for
3646 * us the rightmost tree path. This is accounted for below in
3647 * the appending code.
3648 */
3649 ret = ocfs2_find_path(inode, path, le32_to_cpu(insert_rec->e_cpos));
3650 if (ret) {
3651 mlog_errno(ret);
3652 goto out;
3653 }
ccd979bd 3654
dcd0538f
MF
3655 el = path_leaf_el(path);
3656
3657 /*
3658 * Now that we have the path, there's two things we want to determine:
3659 * 1) Contiguousness (also set contig_index if this is so)
3660 *
3661 * 2) Are we doing an append? We can trivially break this up
3662 * into two types of appends: simple record append, or a
3663 * rotate inside the tail leaf.
3664 */
3665 ocfs2_figure_contig_type(inode, insert, el, insert_rec);
3666
3667 /*
3668 * The insert code isn't quite ready to deal with all cases of
3669 * left contiguousness. Specifically, if it's an insert into
3670 * the 1st record in a leaf, it will require the adjustment of
e48edee2 3671 * cluster count on the last record of the path directly to it's
dcd0538f
MF
3672 * left. For now, just catch that case and fool the layers
3673 * above us. This works just fine for tree_depth == 0, which
3674 * is why we allow that above.
3675 */
3676 if (insert->ins_contig == CONTIG_LEFT &&
3677 insert->ins_contig_index == 0)
3678 insert->ins_contig = CONTIG_NONE;
3679
3680 /*
3681 * Ok, so we can simply compare against last_eb to figure out
3682 * whether the path doesn't exist. This will only happen in
3683 * the case that we're doing a tail append, so maybe we can
3684 * take advantage of that information somehow.
3685 */
3686 if (le64_to_cpu(di->i_last_eb_blk) == path_leaf_bh(path)->b_blocknr) {
3687 /*
3688 * Ok, ocfs2_find_path() returned us the rightmost
3689 * tree path. This might be an appending insert. There are
3690 * two cases:
3691 * 1) We're doing a true append at the tail:
3692 * -This might even be off the end of the leaf
3693 * 2) We're "appending" by rotating in the tail
3694 */
3695 ocfs2_figure_appending_type(insert, el, insert_rec);
3696 }
3697
3698out:
3699 ocfs2_free_path(path);
3700
3701 if (ret == 0)
3702 *last_eb_bh = bh;
3703 else
3704 brelse(bh);
3705 return ret;
ccd979bd
MF
3706}
3707
dcd0538f
MF
3708/*
3709 * Insert an extent into an inode btree.
3710 *
3711 * The caller needs to update fe->i_clusters
3712 */
ccd979bd 3713int ocfs2_insert_extent(struct ocfs2_super *osb,
1fabe148 3714 handle_t *handle,
ccd979bd
MF
3715 struct inode *inode,
3716 struct buffer_head *fe_bh,
dcd0538f 3717 u32 cpos,
ccd979bd
MF
3718 u64 start_blk,
3719 u32 new_clusters,
2ae99a60 3720 u8 flags,
ccd979bd
MF
3721 struct ocfs2_alloc_context *meta_ac)
3722{
c3afcbb3 3723 int status;
c77534f6 3724 int uninitialized_var(free_records);
ccd979bd 3725 struct buffer_head *last_eb_bh = NULL;
dcd0538f
MF
3726 struct ocfs2_insert_type insert = {0, };
3727 struct ocfs2_extent_rec rec;
3728
3729 mlog(0, "add %u clusters at position %u to inode %llu\n",
3730 new_clusters, cpos, (unsigned long long)OCFS2_I(inode)->ip_blkno);
3731
3732 mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) &&
3733 (OCFS2_I(inode)->ip_clusters != cpos),
3734 "Device %s, asking for sparse allocation: inode %llu, "
3735 "cpos %u, clusters %u\n",
3736 osb->dev_str,
3737 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos,
3738 OCFS2_I(inode)->ip_clusters);
3739
e48edee2 3740 memset(&rec, 0, sizeof(rec));
dcd0538f
MF
3741 rec.e_cpos = cpu_to_le32(cpos);
3742 rec.e_blkno = cpu_to_le64(start_blk);
e48edee2 3743 rec.e_leaf_clusters = cpu_to_le16(new_clusters);
2ae99a60 3744 rec.e_flags = flags;
dcd0538f
MF
3745
3746 status = ocfs2_figure_insert_type(inode, fe_bh, &last_eb_bh, &rec,
c77534f6 3747 &free_records, &insert);
dcd0538f
MF
3748 if (status < 0) {
3749 mlog_errno(status);
3750 goto bail;
ccd979bd
MF
3751 }
3752
dcd0538f
MF
3753 mlog(0, "Insert.appending: %u, Insert.Contig: %u, "
3754 "Insert.contig_index: %d, Insert.free_records: %d, "
3755 "Insert.tree_depth: %d\n",
3756 insert.ins_appending, insert.ins_contig, insert.ins_contig_index,
c77534f6 3757 free_records, insert.ins_tree_depth);
ccd979bd 3758
c77534f6 3759 if (insert.ins_contig == CONTIG_NONE && free_records == 0) {
c3afcbb3 3760 status = ocfs2_grow_tree(inode, handle, fe_bh,
328d5752 3761 &insert.ins_tree_depth, &last_eb_bh,
c3afcbb3
MF
3762 meta_ac);
3763 if (status) {
ccd979bd
MF
3764 mlog_errno(status);
3765 goto bail;
3766 }
ccd979bd
MF
3767 }
3768
dcd0538f
MF
3769 /* Finally, we can add clusters. This might rotate the tree for us. */
3770 status = ocfs2_do_insert_extent(inode, handle, fe_bh, &rec, &insert);
ccd979bd
MF
3771 if (status < 0)
3772 mlog_errno(status);
83418978
MF
3773 else
3774 ocfs2_extent_map_insert_rec(inode, &rec);
ccd979bd
MF
3775
3776bail:
ccd979bd
MF
3777 if (last_eb_bh)
3778 brelse(last_eb_bh);
3779
3780 mlog_exit(status);
3781 return status;
3782}
3783
328d5752
MF
3784static void ocfs2_make_right_split_rec(struct super_block *sb,
3785 struct ocfs2_extent_rec *split_rec,
3786 u32 cpos,
3787 struct ocfs2_extent_rec *rec)
3788{
3789 u32 rec_cpos = le32_to_cpu(rec->e_cpos);
3790 u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters);
3791
3792 memset(split_rec, 0, sizeof(struct ocfs2_extent_rec));
3793
3794 split_rec->e_cpos = cpu_to_le32(cpos);
3795 split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos);
3796
3797 split_rec->e_blkno = rec->e_blkno;
3798 le64_add_cpu(&split_rec->e_blkno,
3799 ocfs2_clusters_to_blocks(sb, cpos - rec_cpos));
3800
3801 split_rec->e_flags = rec->e_flags;
3802}
3803
3804static int ocfs2_split_and_insert(struct inode *inode,
3805 handle_t *handle,
3806 struct ocfs2_path *path,
3807 struct buffer_head *di_bh,
3808 struct buffer_head **last_eb_bh,
3809 int split_index,
3810 struct ocfs2_extent_rec *orig_split_rec,
3811 struct ocfs2_alloc_context *meta_ac)
3812{
3813 int ret = 0, depth;
3814 unsigned int insert_range, rec_range, do_leftright = 0;
3815 struct ocfs2_extent_rec tmprec;
3816 struct ocfs2_extent_list *rightmost_el;
3817 struct ocfs2_extent_rec rec;
3818 struct ocfs2_extent_rec split_rec = *orig_split_rec;
3819 struct ocfs2_insert_type insert;
3820 struct ocfs2_extent_block *eb;
3821 struct ocfs2_dinode *di;
3822
3823leftright:
3824 /*
3825 * Store a copy of the record on the stack - it might move
3826 * around as the tree is manipulated below.
3827 */
3828 rec = path_leaf_el(path)->l_recs[split_index];
3829
3830 di = (struct ocfs2_dinode *)di_bh->b_data;
3831 rightmost_el = &di->id2.i_list;
3832
3833 depth = le16_to_cpu(rightmost_el->l_tree_depth);
3834 if (depth) {
3835 BUG_ON(!(*last_eb_bh));
3836 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
3837 rightmost_el = &eb->h_list;
3838 }
3839
3840 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
3841 le16_to_cpu(rightmost_el->l_count)) {
328d5752
MF
3842 ret = ocfs2_grow_tree(inode, handle, di_bh, &depth, last_eb_bh,
3843 meta_ac);
3844 if (ret) {
3845 mlog_errno(ret);
3846 goto out;
3847 }
328d5752
MF
3848 }
3849
3850 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
3851 insert.ins_appending = APPEND_NONE;
3852 insert.ins_contig = CONTIG_NONE;
328d5752
MF
3853 insert.ins_tree_depth = depth;
3854
3855 insert_range = le32_to_cpu(split_rec.e_cpos) +
3856 le16_to_cpu(split_rec.e_leaf_clusters);
3857 rec_range = le32_to_cpu(rec.e_cpos) +
3858 le16_to_cpu(rec.e_leaf_clusters);
3859
3860 if (split_rec.e_cpos == rec.e_cpos) {
3861 insert.ins_split = SPLIT_LEFT;
3862 } else if (insert_range == rec_range) {
3863 insert.ins_split = SPLIT_RIGHT;
3864 } else {
3865 /*
3866 * Left/right split. We fake this as a right split
3867 * first and then make a second pass as a left split.
3868 */
3869 insert.ins_split = SPLIT_RIGHT;
3870
3871 ocfs2_make_right_split_rec(inode->i_sb, &tmprec, insert_range,
3872 &rec);
3873
3874 split_rec = tmprec;
3875
3876 BUG_ON(do_leftright);
3877 do_leftright = 1;
3878 }
3879
3880 ret = ocfs2_do_insert_extent(inode, handle, di_bh, &split_rec,
3881 &insert);
3882 if (ret) {
3883 mlog_errno(ret);
3884 goto out;
3885 }
3886
3887 if (do_leftright == 1) {
3888 u32 cpos;
3889 struct ocfs2_extent_list *el;
3890
3891 do_leftright++;
3892 split_rec = *orig_split_rec;
3893
3894 ocfs2_reinit_path(path, 1);
3895
3896 cpos = le32_to_cpu(split_rec.e_cpos);
3897 ret = ocfs2_find_path(inode, path, cpos);
3898 if (ret) {
3899 mlog_errno(ret);
3900 goto out;
3901 }
3902
3903 el = path_leaf_el(path);
3904 split_index = ocfs2_search_extent_list(el, cpos);
3905 goto leftright;
3906 }
3907out:
3908
3909 return ret;
3910}
3911
3912/*
3913 * Mark part or all of the extent record at split_index in the leaf
3914 * pointed to by path as written. This removes the unwritten
3915 * extent flag.
3916 *
3917 * Care is taken to handle contiguousness so as to not grow the tree.
3918 *
3919 * meta_ac is not strictly necessary - we only truly need it if growth
3920 * of the tree is required. All other cases will degrade into a less
3921 * optimal tree layout.
3922 *
3923 * last_eb_bh should be the rightmost leaf block for any inode with a
3924 * btree. Since a split may grow the tree or a merge might shrink it, the caller cannot trust the contents of that buffer after this call.
3925 *
3926 * This code is optimized for readability - several passes might be
3927 * made over certain portions of the tree. All of those blocks will
3928 * have been brought into cache (and pinned via the journal), so the
3929 * extra overhead is not expressed in terms of disk reads.
3930 */
3931static int __ocfs2_mark_extent_written(struct inode *inode,
3932 struct buffer_head *di_bh,
3933 handle_t *handle,
3934 struct ocfs2_path *path,
3935 int split_index,
3936 struct ocfs2_extent_rec *split_rec,
3937 struct ocfs2_alloc_context *meta_ac,
3938 struct ocfs2_cached_dealloc_ctxt *dealloc)
3939{
3940 int ret = 0;
3941 struct ocfs2_extent_list *el = path_leaf_el(path);
3942 struct buffer_head *eb_bh, *last_eb_bh = NULL;
3943 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
3944 struct ocfs2_merge_ctxt ctxt;
3945 struct ocfs2_extent_list *rightmost_el;
3946
3947 if (!rec->e_flags & OCFS2_EXT_UNWRITTEN) {
3948 ret = -EIO;
3949 mlog_errno(ret);
3950 goto out;
3951 }
3952
3953 if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) ||
3954 ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) <
3955 (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) {
3956 ret = -EIO;
3957 mlog_errno(ret);
3958 goto out;
3959 }
3960
3961 eb_bh = path_leaf_bh(path);
3962 ret = ocfs2_journal_access(handle, inode, eb_bh,
3963 OCFS2_JOURNAL_ACCESS_WRITE);
3964 if (ret) {
3965 mlog_errno(ret);
3966 goto out;
3967 }
3968
3969 ctxt.c_contig_type = ocfs2_figure_merge_contig_type(inode, el,
3970 split_index,
3971 split_rec);
3972
3973 /*
3974 * The core merge / split code wants to know how much room is
3975 * left in this inodes allocation tree, so we pass the
3976 * rightmost extent list.
3977 */
3978 if (path->p_tree_depth) {
3979 struct ocfs2_extent_block *eb;
3980 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3981
3982 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
3983 le64_to_cpu(di->i_last_eb_blk),
3984 &last_eb_bh, OCFS2_BH_CACHED, inode);
3985 if (ret) {
3986 mlog_exit(ret);
3987 goto out;
3988 }
3989
3990 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
3991 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
3992 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
3993 ret = -EROFS;
3994 goto out;
3995 }
3996
3997 rightmost_el = &eb->h_list;
3998 } else
3999 rightmost_el = path_root_el(path);
4000
328d5752
MF
4001 if (rec->e_cpos == split_rec->e_cpos &&
4002 rec->e_leaf_clusters == split_rec->e_leaf_clusters)
4003 ctxt.c_split_covers_rec = 1;
4004 else
4005 ctxt.c_split_covers_rec = 0;
4006
4007 ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]);
4008
015452b1
MF
4009 mlog(0, "index: %d, contig: %u, has_empty: %u, split_covers: %u\n",
4010 split_index, ctxt.c_contig_type, ctxt.c_has_empty_extent,
4011 ctxt.c_split_covers_rec);
328d5752
MF
4012
4013 if (ctxt.c_contig_type == CONTIG_NONE) {
4014 if (ctxt.c_split_covers_rec)
4015 el->l_recs[split_index] = *split_rec;
4016 else
4017 ret = ocfs2_split_and_insert(inode, handle, path, di_bh,
4018 &last_eb_bh, split_index,
4019 split_rec, meta_ac);
4020 if (ret)
4021 mlog_errno(ret);
4022 } else {
4023 ret = ocfs2_try_to_merge_extent(inode, handle, path,
4024 split_index, split_rec,
4025 dealloc, &ctxt);
4026 if (ret)
4027 mlog_errno(ret);
4028 }
4029
4030 ocfs2_journal_dirty(handle, eb_bh);
4031
4032out:
4033 brelse(last_eb_bh);
4034 return ret;
4035}
4036
4037/*
4038 * Mark the already-existing extent at cpos as written for len clusters.
4039 *
4040 * If the existing extent is larger than the request, initiate a
4041 * split. An attempt will be made at merging with adjacent extents.
4042 *
4043 * The caller is responsible for passing down meta_ac if we'll need it.
4044 */
4045int ocfs2_mark_extent_written(struct inode *inode, struct buffer_head *di_bh,
4046 handle_t *handle, u32 cpos, u32 len, u32 phys,
4047 struct ocfs2_alloc_context *meta_ac,
4048 struct ocfs2_cached_dealloc_ctxt *dealloc)
4049{
4050 int ret, index;
4051 u64 start_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys);
4052 struct ocfs2_extent_rec split_rec;
4053 struct ocfs2_path *left_path = NULL;
4054 struct ocfs2_extent_list *el;
4055
4056 mlog(0, "Inode %lu cpos %u, len %u, phys %u (%llu)\n",
4057 inode->i_ino, cpos, len, phys, (unsigned long long)start_blkno);
4058
4059 if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) {
4060 ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents "
4061 "that are being written to, but the feature bit "
4062 "is not set in the super block.",
4063 (unsigned long long)OCFS2_I(inode)->ip_blkno);
4064 ret = -EROFS;
4065 goto out;
4066 }
4067
4068 /*
4069 * XXX: This should be fixed up so that we just re-insert the
4070 * next extent records.
4071 */
4072 ocfs2_extent_map_trunc(inode, 0);
4073
4074 left_path = ocfs2_new_inode_path(di_bh);
4075 if (!left_path) {
4076 ret = -ENOMEM;
4077 mlog_errno(ret);
4078 goto out;
4079 }
4080
4081 ret = ocfs2_find_path(inode, left_path, cpos);
4082 if (ret) {
4083 mlog_errno(ret);
4084 goto out;
4085 }
4086 el = path_leaf_el(left_path);
4087
4088 index = ocfs2_search_extent_list(el, cpos);
4089 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
4090 ocfs2_error(inode->i_sb,
4091 "Inode %llu has an extent at cpos %u which can no "
4092 "longer be found.\n",
4093 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos);
4094 ret = -EROFS;
4095 goto out;
4096 }
4097
4098 memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec));
4099 split_rec.e_cpos = cpu_to_le32(cpos);
4100 split_rec.e_leaf_clusters = cpu_to_le16(len);
4101 split_rec.e_blkno = cpu_to_le64(start_blkno);
4102 split_rec.e_flags = path_leaf_el(left_path)->l_recs[index].e_flags;
4103 split_rec.e_flags &= ~OCFS2_EXT_UNWRITTEN;
4104
4105 ret = __ocfs2_mark_extent_written(inode, di_bh, handle, left_path,
4106 index, &split_rec, meta_ac, dealloc);
4107 if (ret)
4108 mlog_errno(ret);
4109
4110out:
4111 ocfs2_free_path(left_path);
4112 return ret;
4113}
4114
d0c7d708
MF
4115static int ocfs2_split_tree(struct inode *inode, struct buffer_head *di_bh,
4116 handle_t *handle, struct ocfs2_path *path,
4117 int index, u32 new_range,
4118 struct ocfs2_alloc_context *meta_ac)
4119{
4120 int ret, depth, credits = handle->h_buffer_credits;
4121 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
4122 struct buffer_head *last_eb_bh = NULL;
4123 struct ocfs2_extent_block *eb;
4124 struct ocfs2_extent_list *rightmost_el, *el;
4125 struct ocfs2_extent_rec split_rec;
4126 struct ocfs2_extent_rec *rec;
4127 struct ocfs2_insert_type insert;
4128
4129 /*
4130 * Setup the record to split before we grow the tree.
4131 */
4132 el = path_leaf_el(path);
4133 rec = &el->l_recs[index];
4134 ocfs2_make_right_split_rec(inode->i_sb, &split_rec, new_range, rec);
4135
4136 depth = path->p_tree_depth;
4137 if (depth > 0) {
4138 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
4139 le64_to_cpu(di->i_last_eb_blk),
4140 &last_eb_bh, OCFS2_BH_CACHED, inode);
4141 if (ret < 0) {
4142 mlog_errno(ret);
4143 goto out;
4144 }
4145
4146 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
4147 rightmost_el = &eb->h_list;
4148 } else
4149 rightmost_el = path_leaf_el(path);
4150
4151 credits += path->p_tree_depth + ocfs2_extend_meta_needed(di);
4152 ret = ocfs2_extend_trans(handle, credits);
4153 if (ret) {
4154 mlog_errno(ret);
4155 goto out;
4156 }
4157
4158 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4159 le16_to_cpu(rightmost_el->l_count)) {
d0c7d708
MF
4160 ret = ocfs2_grow_tree(inode, handle, di_bh, &depth, &last_eb_bh,
4161 meta_ac);
4162 if (ret) {
4163 mlog_errno(ret);
4164 goto out;
4165 }
d0c7d708
MF
4166 }
4167
4168 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4169 insert.ins_appending = APPEND_NONE;
4170 insert.ins_contig = CONTIG_NONE;
4171 insert.ins_split = SPLIT_RIGHT;
d0c7d708
MF
4172 insert.ins_tree_depth = depth;
4173
4174 ret = ocfs2_do_insert_extent(inode, handle, di_bh, &split_rec, &insert);
4175 if (ret)
4176 mlog_errno(ret);
4177
4178out:
4179 brelse(last_eb_bh);
4180 return ret;
4181}
4182
4183static int ocfs2_truncate_rec(struct inode *inode, handle_t *handle,
4184 struct ocfs2_path *path, int index,
4185 struct ocfs2_cached_dealloc_ctxt *dealloc,
4186 u32 cpos, u32 len)
4187{
4188 int ret;
4189 u32 left_cpos, rec_range, trunc_range;
4190 int wants_rotate = 0, is_rightmost_tree_rec = 0;
4191 struct super_block *sb = inode->i_sb;
4192 struct ocfs2_path *left_path = NULL;
4193 struct ocfs2_extent_list *el = path_leaf_el(path);
4194 struct ocfs2_extent_rec *rec;
4195 struct ocfs2_extent_block *eb;
4196
4197 if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) {
4198 ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc);
4199 if (ret) {
4200 mlog_errno(ret);
4201 goto out;
4202 }
4203
4204 index--;
4205 }
4206
4207 if (index == (le16_to_cpu(el->l_next_free_rec) - 1) &&
4208 path->p_tree_depth) {
4209 /*
4210 * Check whether this is the rightmost tree record. If
4211 * we remove all of this record or part of its right
4212 * edge then an update of the record lengths above it
4213 * will be required.
4214 */
4215 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
4216 if (eb->h_next_leaf_blk == 0)
4217 is_rightmost_tree_rec = 1;
4218 }
4219
4220 rec = &el->l_recs[index];
4221 if (index == 0 && path->p_tree_depth &&
4222 le32_to_cpu(rec->e_cpos) == cpos) {
4223 /*
4224 * Changing the leftmost offset (via partial or whole
4225 * record truncate) of an interior (or rightmost) path
4226 * means we have to update the subtree that is formed
4227 * by this leaf and the one to it's left.
4228 *
4229 * There are two cases we can skip:
4230 * 1) Path is the leftmost one in our inode tree.
4231 * 2) The leaf is rightmost and will be empty after
4232 * we remove the extent record - the rotate code
4233 * knows how to update the newly formed edge.
4234 */
4235
4236 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path,
4237 &left_cpos);
4238 if (ret) {
4239 mlog_errno(ret);
4240 goto out;
4241 }
4242
4243 if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) {
4244 left_path = ocfs2_new_path(path_root_bh(path),
4245 path_root_el(path));
4246 if (!left_path) {
4247 ret = -ENOMEM;
4248 mlog_errno(ret);
4249 goto out;
4250 }
4251
4252 ret = ocfs2_find_path(inode, left_path, left_cpos);
4253 if (ret) {
4254 mlog_errno(ret);
4255 goto out;
4256 }
4257 }
4258 }
4259
4260 ret = ocfs2_extend_rotate_transaction(handle, 0,
4261 handle->h_buffer_credits,
4262 path);
4263 if (ret) {
4264 mlog_errno(ret);
4265 goto out;
4266 }
4267
4268 ret = ocfs2_journal_access_path(inode, handle, path);
4269 if (ret) {
4270 mlog_errno(ret);
4271 goto out;
4272 }
4273
4274 ret = ocfs2_journal_access_path(inode, handle, left_path);
4275 if (ret) {
4276 mlog_errno(ret);
4277 goto out;
4278 }
4279
4280 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
4281 trunc_range = cpos + len;
4282
4283 if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) {
4284 int next_free;
4285
4286 memset(rec, 0, sizeof(*rec));
4287 ocfs2_cleanup_merge(el, index);
4288 wants_rotate = 1;
4289
4290 next_free = le16_to_cpu(el->l_next_free_rec);
4291 if (is_rightmost_tree_rec && next_free > 1) {
4292 /*
4293 * We skip the edge update if this path will
4294 * be deleted by the rotate code.
4295 */
4296 rec = &el->l_recs[next_free - 1];
4297 ocfs2_adjust_rightmost_records(inode, handle, path,
4298 rec);
4299 }
4300 } else if (le32_to_cpu(rec->e_cpos) == cpos) {
4301 /* Remove leftmost portion of the record. */
4302 le32_add_cpu(&rec->e_cpos, len);
4303 le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len));
4304 le16_add_cpu(&rec->e_leaf_clusters, -len);
4305 } else if (rec_range == trunc_range) {
4306 /* Remove rightmost portion of the record */
4307 le16_add_cpu(&rec->e_leaf_clusters, -len);
4308 if (is_rightmost_tree_rec)
4309 ocfs2_adjust_rightmost_records(inode, handle, path, rec);
4310 } else {
4311 /* Caller should have trapped this. */
4312 mlog(ML_ERROR, "Inode %llu: Invalid record truncate: (%u, %u) "
4313 "(%u, %u)\n", (unsigned long long)OCFS2_I(inode)->ip_blkno,
4314 le32_to_cpu(rec->e_cpos),
4315 le16_to_cpu(rec->e_leaf_clusters), cpos, len);
4316 BUG();
4317 }
4318
4319 if (left_path) {
4320 int subtree_index;
4321
4322 subtree_index = ocfs2_find_subtree_root(inode, left_path, path);
4323 ocfs2_complete_edge_insert(inode, handle, left_path, path,
4324 subtree_index);
4325 }
4326
4327 ocfs2_journal_dirty(handle, path_leaf_bh(path));
4328
4329 ret = ocfs2_rotate_tree_left(inode, handle, path, dealloc);
4330 if (ret) {
4331 mlog_errno(ret);
4332 goto out;
4333 }
4334
4335out:
4336 ocfs2_free_path(left_path);
4337 return ret;
4338}
4339
063c4561
MF
4340int ocfs2_remove_extent(struct inode *inode, struct buffer_head *di_bh,
4341 u32 cpos, u32 len, handle_t *handle,
4342 struct ocfs2_alloc_context *meta_ac,
4343 struct ocfs2_cached_dealloc_ctxt *dealloc)
d0c7d708
MF
4344{
4345 int ret, index;
4346 u32 rec_range, trunc_range;
4347 struct ocfs2_extent_rec *rec;
4348 struct ocfs2_extent_list *el;
4349 struct ocfs2_path *path;
4350
4351 ocfs2_extent_map_trunc(inode, 0);
4352
4353 path = ocfs2_new_inode_path(di_bh);
4354 if (!path) {
4355 ret = -ENOMEM;
4356 mlog_errno(ret);
4357 goto out;
4358 }
4359
4360 ret = ocfs2_find_path(inode, path, cpos);
4361 if (ret) {
4362 mlog_errno(ret);
4363 goto out;
4364 }
4365
4366 el = path_leaf_el(path);
4367 index = ocfs2_search_extent_list(el, cpos);
4368 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
4369 ocfs2_error(inode->i_sb,
4370 "Inode %llu has an extent at cpos %u which can no "
4371 "longer be found.\n",
4372 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos);
4373 ret = -EROFS;
4374 goto out;
4375 }
4376
4377 /*
4378 * We have 3 cases of extent removal:
4379 * 1) Range covers the entire extent rec
4380 * 2) Range begins or ends on one edge of the extent rec
4381 * 3) Range is in the middle of the extent rec (no shared edges)
4382 *
4383 * For case 1 we remove the extent rec and left rotate to
4384 * fill the hole.
4385 *
4386 * For case 2 we just shrink the existing extent rec, with a
4387 * tree update if the shrinking edge is also the edge of an
4388 * extent block.
4389 *
4390 * For case 3 we do a right split to turn the extent rec into
4391 * something case 2 can handle.
4392 */
4393 rec = &el->l_recs[index];
4394 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
4395 trunc_range = cpos + len;
4396
4397 BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range);
4398
4399 mlog(0, "Inode %llu, remove (cpos %u, len %u). Existing index %d "
4400 "(cpos %u, len %u)\n",
4401 (unsigned long long)OCFS2_I(inode)->ip_blkno, cpos, len, index,
4402 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec));
4403
4404 if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) {
4405 ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc,
4406 cpos, len);
4407 if (ret) {
4408 mlog_errno(ret);
4409 goto out;
4410 }
4411 } else {
4412 ret = ocfs2_split_tree(inode, di_bh, handle, path, index,
4413 trunc_range, meta_ac);
4414 if (ret) {
4415 mlog_errno(ret);
4416 goto out;
4417 }
4418
4419 /*
4420 * The split could have manipulated the tree enough to
4421 * move the record location, so we have to look for it again.
4422 */
4423 ocfs2_reinit_path(path, 1);
4424
4425 ret = ocfs2_find_path(inode, path, cpos);
4426 if (ret) {
4427 mlog_errno(ret);
4428 goto out;
4429 }
4430
4431 el = path_leaf_el(path);
4432 index = ocfs2_search_extent_list(el, cpos);
4433 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
4434 ocfs2_error(inode->i_sb,
4435 "Inode %llu: split at cpos %u lost record.",
4436 (unsigned long long)OCFS2_I(inode)->ip_blkno,
4437 cpos);
4438 ret = -EROFS;
4439 goto out;
4440 }
4441
4442 /*
4443 * Double check our values here. If anything is fishy,
4444 * it's easier to catch it at the top level.
4445 */
4446 rec = &el->l_recs[index];
4447 rec_range = le32_to_cpu(rec->e_cpos) +
4448 ocfs2_rec_clusters(el, rec);
4449 if (rec_range != trunc_range) {
4450 ocfs2_error(inode->i_sb,
4451 "Inode %llu: error after split at cpos %u"
4452 "trunc len %u, existing record is (%u,%u)",
4453 (unsigned long long)OCFS2_I(inode)->ip_blkno,
4454 cpos, len, le32_to_cpu(rec->e_cpos),
4455 ocfs2_rec_clusters(el, rec));
4456 ret = -EROFS;
4457 goto out;
4458 }
4459
4460 ret = ocfs2_truncate_rec(inode, handle, path, index, dealloc,
4461 cpos, len);
4462 if (ret) {
4463 mlog_errno(ret);
4464 goto out;
4465 }
4466 }
4467
4468out:
4469 ocfs2_free_path(path);
4470 return ret;
4471}
4472
063c4561 4473int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb)
ccd979bd
MF
4474{
4475 struct buffer_head *tl_bh = osb->osb_tl_bh;
4476 struct ocfs2_dinode *di;
4477 struct ocfs2_truncate_log *tl;
4478
4479 di = (struct ocfs2_dinode *) tl_bh->b_data;
4480 tl = &di->id2.i_dealloc;
4481
4482 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count),
4483 "slot %d, invalid truncate log parameters: used = "
4484 "%u, count = %u\n", osb->slot_num,
4485 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count));
4486 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count);
4487}
4488
4489static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl,
4490 unsigned int new_start)
4491{
4492 unsigned int tail_index;
4493 unsigned int current_tail;
4494
4495 /* No records, nothing to coalesce */
4496 if (!le16_to_cpu(tl->tl_used))
4497 return 0;
4498
4499 tail_index = le16_to_cpu(tl->tl_used) - 1;
4500 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start);
4501 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters);
4502
4503 return current_tail == new_start;
4504}
4505
063c4561
MF
4506int ocfs2_truncate_log_append(struct ocfs2_super *osb,
4507 handle_t *handle,
4508 u64 start_blk,
4509 unsigned int num_clusters)
ccd979bd
MF
4510{
4511 int status, index;
4512 unsigned int start_cluster, tl_count;
4513 struct inode *tl_inode = osb->osb_tl_inode;
4514 struct buffer_head *tl_bh = osb->osb_tl_bh;
4515 struct ocfs2_dinode *di;
4516 struct ocfs2_truncate_log *tl;
4517
b0697053
MF
4518 mlog_entry("start_blk = %llu, num_clusters = %u\n",
4519 (unsigned long long)start_blk, num_clusters);
ccd979bd 4520
1b1dcc1b 4521 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
ccd979bd
MF
4522
4523 start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk);
4524
4525 di = (struct ocfs2_dinode *) tl_bh->b_data;
4526 tl = &di->id2.i_dealloc;
4527 if (!OCFS2_IS_VALID_DINODE(di)) {
4528 OCFS2_RO_ON_INVALID_DINODE(osb->sb, di);
4529 status = -EIO;
4530 goto bail;
4531 }
4532
4533 tl_count = le16_to_cpu(tl->tl_count);
4534 mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) ||
4535 tl_count == 0,
b0697053
MF
4536 "Truncate record count on #%llu invalid "
4537 "wanted %u, actual %u\n",
4538 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
ccd979bd
MF
4539 ocfs2_truncate_recs_per_inode(osb->sb),
4540 le16_to_cpu(tl->tl_count));
4541
4542 /* Caller should have known to flush before calling us. */
4543 index = le16_to_cpu(tl->tl_used);
4544 if (index >= tl_count) {
4545 status = -ENOSPC;
4546 mlog_errno(status);
4547 goto bail;
4548 }
4549
4550 status = ocfs2_journal_access(handle, tl_inode, tl_bh,
4551 OCFS2_JOURNAL_ACCESS_WRITE);
4552 if (status < 0) {
4553 mlog_errno(status);
4554 goto bail;
4555 }
4556
4557 mlog(0, "Log truncate of %u clusters starting at cluster %u to "
b0697053
MF
4558 "%llu (index = %d)\n", num_clusters, start_cluster,
4559 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index);
ccd979bd
MF
4560
4561 if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) {
4562 /*
4563 * Move index back to the record we are coalescing with.
4564 * ocfs2_truncate_log_can_coalesce() guarantees nonzero
4565 */
4566 index--;
4567
4568 num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters);
4569 mlog(0, "Coalesce with index %u (start = %u, clusters = %u)\n",
4570 index, le32_to_cpu(tl->tl_recs[index].t_start),
4571 num_clusters);
4572 } else {
4573 tl->tl_recs[index].t_start = cpu_to_le32(start_cluster);
4574 tl->tl_used = cpu_to_le16(index + 1);
4575 }
4576 tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters);
4577
4578 status = ocfs2_journal_dirty(handle, tl_bh);
4579 if (status < 0) {
4580 mlog_errno(status);
4581 goto bail;
4582 }
4583
4584bail:
4585 mlog_exit(status);
4586 return status;
4587}
4588
4589static int ocfs2_replay_truncate_records(struct ocfs2_super *osb,
1fabe148 4590 handle_t *handle,
ccd979bd
MF
4591 struct inode *data_alloc_inode,
4592 struct buffer_head *data_alloc_bh)
4593{
4594 int status = 0;
4595 int i;
4596 unsigned int num_clusters;
4597 u64 start_blk;
4598 struct ocfs2_truncate_rec rec;
4599 struct ocfs2_dinode *di;
4600 struct ocfs2_truncate_log *tl;
4601 struct inode *tl_inode = osb->osb_tl_inode;
4602 struct buffer_head *tl_bh = osb->osb_tl_bh;
4603
4604 mlog_entry_void();
4605
4606 di = (struct ocfs2_dinode *) tl_bh->b_data;
4607 tl = &di->id2.i_dealloc;
4608 i = le16_to_cpu(tl->tl_used) - 1;
4609 while (i >= 0) {
4610 /* Caller has given us at least enough credits to
4611 * update the truncate log dinode */
4612 status = ocfs2_journal_access(handle, tl_inode, tl_bh,
4613 OCFS2_JOURNAL_ACCESS_WRITE);
4614 if (status < 0) {
4615 mlog_errno(status);
4616 goto bail;
4617 }
4618
4619 tl->tl_used = cpu_to_le16(i);
4620
4621 status = ocfs2_journal_dirty(handle, tl_bh);
4622 if (status < 0) {
4623 mlog_errno(status);
4624 goto bail;
4625 }
4626
4627 /* TODO: Perhaps we can calculate the bulk of the
4628 * credits up front rather than extending like
4629 * this. */
4630 status = ocfs2_extend_trans(handle,
4631 OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC);
4632 if (status < 0) {
4633 mlog_errno(status);
4634 goto bail;
4635 }
4636
4637 rec = tl->tl_recs[i];
4638 start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb,
4639 le32_to_cpu(rec.t_start));
4640 num_clusters = le32_to_cpu(rec.t_clusters);
4641
4642 /* if start_blk is not set, we ignore the record as
4643 * invalid. */
4644 if (start_blk) {
4645 mlog(0, "free record %d, start = %u, clusters = %u\n",
4646 i, le32_to_cpu(rec.t_start), num_clusters);
4647
4648 status = ocfs2_free_clusters(handle, data_alloc_inode,
4649 data_alloc_bh, start_blk,
4650 num_clusters);
4651 if (status < 0) {
4652 mlog_errno(status);
4653 goto bail;
4654 }
4655 }
4656 i--;
4657 }
4658
4659bail:
4660 mlog_exit(status);
4661 return status;
4662}
4663
1b1dcc1b 4664/* Expects you to already be holding tl_inode->i_mutex */
063c4561 4665int __ocfs2_flush_truncate_log(struct ocfs2_super *osb)
ccd979bd
MF
4666{
4667 int status;
4668 unsigned int num_to_flush;
1fabe148 4669 handle_t *handle;
ccd979bd
MF
4670 struct inode *tl_inode = osb->osb_tl_inode;
4671 struct inode *data_alloc_inode = NULL;
4672 struct buffer_head *tl_bh = osb->osb_tl_bh;
4673 struct buffer_head *data_alloc_bh = NULL;
4674 struct ocfs2_dinode *di;
4675 struct ocfs2_truncate_log *tl;
4676
4677 mlog_entry_void();
4678
1b1dcc1b 4679 BUG_ON(mutex_trylock(&tl_inode->i_mutex));
ccd979bd
MF
4680
4681 di = (struct ocfs2_dinode *) tl_bh->b_data;
4682 tl = &di->id2.i_dealloc;
4683 if (!OCFS2_IS_VALID_DINODE(di)) {
4684 OCFS2_RO_ON_INVALID_DINODE(osb->sb, di);
4685 status = -EIO;
e08dc8b9 4686 goto out;
ccd979bd
MF
4687 }
4688
4689 num_to_flush = le16_to_cpu(tl->tl_used);
b0697053
MF
4690 mlog(0, "Flush %u records from truncate log #%llu\n",
4691 num_to_flush, (unsigned long long)OCFS2_I(tl_inode)->ip_blkno);
ccd979bd
MF
4692 if (!num_to_flush) {
4693 status = 0;
e08dc8b9 4694 goto out;
ccd979bd
MF
4695 }
4696
4697 data_alloc_inode = ocfs2_get_system_file_inode(osb,
4698 GLOBAL_BITMAP_SYSTEM_INODE,
4699 OCFS2_INVALID_SLOT);
4700 if (!data_alloc_inode) {
4701 status = -EINVAL;
4702 mlog(ML_ERROR, "Could not get bitmap inode!\n");
e08dc8b9 4703 goto out;
ccd979bd
MF
4704 }
4705
e08dc8b9
MF
4706 mutex_lock(&data_alloc_inode->i_mutex);
4707
4bcec184 4708 status = ocfs2_meta_lock(data_alloc_inode, &data_alloc_bh, 1);
ccd979bd
MF
4709 if (status < 0) {
4710 mlog_errno(status);
e08dc8b9 4711 goto out_mutex;
ccd979bd
MF
4712 }
4713
65eff9cc 4714 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
ccd979bd
MF
4715 if (IS_ERR(handle)) {
4716 status = PTR_ERR(handle);
ccd979bd 4717 mlog_errno(status);
e08dc8b9 4718 goto out_unlock;
ccd979bd
MF
4719 }
4720
4721 status = ocfs2_replay_truncate_records(osb, handle, data_alloc_inode,
4722 data_alloc_bh);
e08dc8b9 4723 if (status < 0)
ccd979bd 4724 mlog_errno(status);
ccd979bd 4725
02dc1af4 4726 ocfs2_commit_trans(osb, handle);
ccd979bd 4727
e08dc8b9
MF
4728out_unlock:
4729 brelse(data_alloc_bh);
4730 ocfs2_meta_unlock(data_alloc_inode, 1);
ccd979bd 4731
e08dc8b9
MF
4732out_mutex:
4733 mutex_unlock(&data_alloc_inode->i_mutex);
4734 iput(data_alloc_inode);
ccd979bd 4735
e08dc8b9 4736out:
ccd979bd
MF
4737 mlog_exit(status);
4738 return status;
4739}
4740
4741int ocfs2_flush_truncate_log(struct ocfs2_super *osb)
4742{
4743 int status;
4744 struct inode *tl_inode = osb->osb_tl_inode;
4745
1b1dcc1b 4746 mutex_lock(&tl_inode->i_mutex);
ccd979bd 4747 status = __ocfs2_flush_truncate_log(osb);
1b1dcc1b 4748 mutex_unlock(&tl_inode->i_mutex);
ccd979bd
MF
4749
4750 return status;
4751}
4752
c4028958 4753static void ocfs2_truncate_log_worker(struct work_struct *work)
ccd979bd
MF
4754{
4755 int status;
c4028958
DH
4756 struct ocfs2_super *osb =
4757 container_of(work, struct ocfs2_super,
4758 osb_truncate_log_wq.work);
ccd979bd
MF
4759
4760 mlog_entry_void();
4761
4762 status = ocfs2_flush_truncate_log(osb);
4763 if (status < 0)
4764 mlog_errno(status);
4765
4766 mlog_exit(status);
4767}
4768
4769#define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ)
4770void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
4771 int cancel)
4772{
4773 if (osb->osb_tl_inode) {
4774 /* We want to push off log flushes while truncates are
4775 * still running. */
4776 if (cancel)
4777 cancel_delayed_work(&osb->osb_truncate_log_wq);
4778
4779 queue_delayed_work(ocfs2_wq, &osb->osb_truncate_log_wq,
4780 OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL);
4781 }
4782}
4783
4784static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb,
4785 int slot_num,
4786 struct inode **tl_inode,
4787 struct buffer_head **tl_bh)
4788{
4789 int status;
4790 struct inode *inode = NULL;
4791 struct buffer_head *bh = NULL;
4792
4793 inode = ocfs2_get_system_file_inode(osb,
4794 TRUNCATE_LOG_SYSTEM_INODE,
4795 slot_num);
4796 if (!inode) {
4797 status = -EINVAL;
4798 mlog(ML_ERROR, "Could not get load truncate log inode!\n");
4799 goto bail;
4800 }
4801
4802 status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh,
4803 OCFS2_BH_CACHED, inode);
4804 if (status < 0) {
4805 iput(inode);
4806 mlog_errno(status);
4807 goto bail;
4808 }
4809
4810 *tl_inode = inode;
4811 *tl_bh = bh;
4812bail:
4813 mlog_exit(status);
4814 return status;
4815}
4816
4817/* called during the 1st stage of node recovery. we stamp a clean
4818 * truncate log and pass back a copy for processing later. if the
4819 * truncate log does not require processing, a *tl_copy is set to
4820 * NULL. */
4821int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
4822 int slot_num,
4823 struct ocfs2_dinode **tl_copy)
4824{
4825 int status;
4826 struct inode *tl_inode = NULL;
4827 struct buffer_head *tl_bh = NULL;
4828 struct ocfs2_dinode *di;
4829 struct ocfs2_truncate_log *tl;
4830
4831 *tl_copy = NULL;
4832
4833 mlog(0, "recover truncate log from slot %d\n", slot_num);
4834
4835 status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh);
4836 if (status < 0) {
4837 mlog_errno(status);
4838 goto bail;
4839 }
4840
4841 di = (struct ocfs2_dinode *) tl_bh->b_data;
4842 tl = &di->id2.i_dealloc;
4843 if (!OCFS2_IS_VALID_DINODE(di)) {
4844 OCFS2_RO_ON_INVALID_DINODE(tl_inode->i_sb, di);
4845 status = -EIO;
4846 goto bail;
4847 }
4848
4849 if (le16_to_cpu(tl->tl_used)) {
4850 mlog(0, "We'll have %u logs to recover\n",
4851 le16_to_cpu(tl->tl_used));
4852
4853 *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL);
4854 if (!(*tl_copy)) {
4855 status = -ENOMEM;
4856 mlog_errno(status);
4857 goto bail;
4858 }
4859
4860 /* Assuming the write-out below goes well, this copy
4861 * will be passed back to recovery for processing. */
4862 memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size);
4863
4864 /* All we need to do to clear the truncate log is set
4865 * tl_used. */
4866 tl->tl_used = 0;
4867
4868 status = ocfs2_write_block(osb, tl_bh, tl_inode);
4869 if (status < 0) {
4870 mlog_errno(status);
4871 goto bail;
4872 }
4873 }
4874
4875bail:
4876 if (tl_inode)
4877 iput(tl_inode);
4878 if (tl_bh)
4879 brelse(tl_bh);
4880
4881 if (status < 0 && (*tl_copy)) {
4882 kfree(*tl_copy);
4883 *tl_copy = NULL;
4884 }
4885
4886 mlog_exit(status);
4887 return status;
4888}
4889
4890int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
4891 struct ocfs2_dinode *tl_copy)
4892{
4893 int status = 0;
4894 int i;
4895 unsigned int clusters, num_recs, start_cluster;
4896 u64 start_blk;
1fabe148 4897 handle_t *handle;
ccd979bd
MF
4898 struct inode *tl_inode = osb->osb_tl_inode;
4899 struct ocfs2_truncate_log *tl;
4900
4901 mlog_entry_void();
4902
4903 if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) {
4904 mlog(ML_ERROR, "Asked to recover my own truncate log!\n");
4905 return -EINVAL;
4906 }
4907
4908 tl = &tl_copy->id2.i_dealloc;
4909 num_recs = le16_to_cpu(tl->tl_used);
b0697053 4910 mlog(0, "cleanup %u records from %llu\n", num_recs,
1ca1a111 4911 (unsigned long long)le64_to_cpu(tl_copy->i_blkno));
ccd979bd 4912
1b1dcc1b 4913 mutex_lock(&tl_inode->i_mutex);
ccd979bd
MF
4914 for(i = 0; i < num_recs; i++) {
4915 if (ocfs2_truncate_log_needs_flush(osb)) {
4916 status = __ocfs2_flush_truncate_log(osb);
4917 if (status < 0) {
4918 mlog_errno(status);
4919 goto bail_up;
4920 }
4921 }
4922
65eff9cc 4923 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
ccd979bd
MF
4924 if (IS_ERR(handle)) {
4925 status = PTR_ERR(handle);
4926 mlog_errno(status);
4927 goto bail_up;
4928 }
4929
4930 clusters = le32_to_cpu(tl->tl_recs[i].t_clusters);
4931 start_cluster = le32_to_cpu(tl->tl_recs[i].t_start);
4932 start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster);
4933
4934 status = ocfs2_truncate_log_append(osb, handle,
4935 start_blk, clusters);
02dc1af4 4936 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
4937 if (status < 0) {
4938 mlog_errno(status);
4939 goto bail_up;
4940 }
4941 }
4942
4943bail_up:
1b1dcc1b 4944 mutex_unlock(&tl_inode->i_mutex);
ccd979bd
MF
4945
4946 mlog_exit(status);
4947 return status;
4948}
4949
4950void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb)
4951{
4952 int status;
4953 struct inode *tl_inode = osb->osb_tl_inode;
4954
4955 mlog_entry_void();
4956
4957 if (tl_inode) {
4958 cancel_delayed_work(&osb->osb_truncate_log_wq);
4959 flush_workqueue(ocfs2_wq);
4960
4961 status = ocfs2_flush_truncate_log(osb);
4962 if (status < 0)
4963 mlog_errno(status);
4964
4965 brelse(osb->osb_tl_bh);
4966 iput(osb->osb_tl_inode);
4967 }
4968
4969 mlog_exit_void();
4970}
4971
4972int ocfs2_truncate_log_init(struct ocfs2_super *osb)
4973{
4974 int status;
4975 struct inode *tl_inode = NULL;
4976 struct buffer_head *tl_bh = NULL;
4977
4978 mlog_entry_void();
4979
4980 status = ocfs2_get_truncate_log_info(osb,
4981 osb->slot_num,
4982 &tl_inode,
4983 &tl_bh);
4984 if (status < 0)
4985 mlog_errno(status);
4986
4987 /* ocfs2_truncate_log_shutdown keys on the existence of
4988 * osb->osb_tl_inode so we don't set any of the osb variables
4989 * until we're sure all is well. */
c4028958
DH
4990 INIT_DELAYED_WORK(&osb->osb_truncate_log_wq,
4991 ocfs2_truncate_log_worker);
ccd979bd
MF
4992 osb->osb_tl_bh = tl_bh;
4993 osb->osb_tl_inode = tl_inode;
4994
4995 mlog_exit(status);
4996 return status;
4997}
4998
2b604351
MF
4999/*
5000 * Delayed de-allocation of suballocator blocks.
5001 *
5002 * Some sets of block de-allocations might involve multiple suballocator inodes.
5003 *
5004 * The locking for this can get extremely complicated, especially when
5005 * the suballocator inodes to delete from aren't known until deep
5006 * within an unrelated codepath.
5007 *
5008 * ocfs2_extent_block structures are a good example of this - an inode
5009 * btree could have been grown by any number of nodes each allocating
5010 * out of their own suballoc inode.
5011 *
5012 * These structures allow the delay of block de-allocation until a
5013 * later time, when locking of multiple cluster inodes won't cause
5014 * deadlock.
5015 */
5016
5017/*
5018 * Describes a single block free from a suballocator
5019 */
5020struct ocfs2_cached_block_free {
5021 struct ocfs2_cached_block_free *free_next;
5022 u64 free_blk;
5023 unsigned int free_bit;
5024};
5025
5026struct ocfs2_per_slot_free_list {
5027 struct ocfs2_per_slot_free_list *f_next_suballocator;
5028 int f_inode_type;
5029 int f_slot;
5030 struct ocfs2_cached_block_free *f_first;
5031};
5032
5033static int ocfs2_free_cached_items(struct ocfs2_super *osb,
5034 int sysfile_type,
5035 int slot,
5036 struct ocfs2_cached_block_free *head)
5037{
5038 int ret;
5039 u64 bg_blkno;
5040 handle_t *handle;
5041 struct inode *inode;
5042 struct buffer_head *di_bh = NULL;
5043 struct ocfs2_cached_block_free *tmp;
5044
5045 inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot);
5046 if (!inode) {
5047 ret = -EINVAL;
5048 mlog_errno(ret);
5049 goto out;
5050 }
5051
5052 mutex_lock(&inode->i_mutex);
5053
5054 ret = ocfs2_meta_lock(inode, &di_bh, 1);
5055 if (ret) {
5056 mlog_errno(ret);
5057 goto out_mutex;
5058 }
5059
5060 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
5061 if (IS_ERR(handle)) {
5062 ret = PTR_ERR(handle);
5063 mlog_errno(ret);
5064 goto out_unlock;
5065 }
5066
5067 while (head) {
5068 bg_blkno = ocfs2_which_suballoc_group(head->free_blk,
5069 head->free_bit);
5070 mlog(0, "Free bit: (bit %u, blkno %llu)\n",
5071 head->free_bit, (unsigned long long)head->free_blk);
5072
5073 ret = ocfs2_free_suballoc_bits(handle, inode, di_bh,
5074 head->free_bit, bg_blkno, 1);
5075 if (ret) {
5076 mlog_errno(ret);
5077 goto out_journal;
5078 }
5079
5080 ret = ocfs2_extend_trans(handle, OCFS2_SUBALLOC_FREE);
5081 if (ret) {
5082 mlog_errno(ret);
5083 goto out_journal;
5084 }
5085
5086 tmp = head;
5087 head = head->free_next;
5088 kfree(tmp);
5089 }
5090
5091out_journal:
5092 ocfs2_commit_trans(osb, handle);
5093
5094out_unlock:
5095 ocfs2_meta_unlock(inode, 1);
5096 brelse(di_bh);
5097out_mutex:
5098 mutex_unlock(&inode->i_mutex);
5099 iput(inode);
5100out:
5101 while(head) {
5102 /* Premature exit may have left some dangling items. */
5103 tmp = head;
5104 head = head->free_next;
5105 kfree(tmp);
5106 }
5107
5108 return ret;
5109}
5110
5111int ocfs2_run_deallocs(struct ocfs2_super *osb,
5112 struct ocfs2_cached_dealloc_ctxt *ctxt)
5113{
5114 int ret = 0, ret2;
5115 struct ocfs2_per_slot_free_list *fl;
5116
5117 if (!ctxt)
5118 return 0;
5119
5120 while (ctxt->c_first_suballocator) {
5121 fl = ctxt->c_first_suballocator;
5122
5123 if (fl->f_first) {
5124 mlog(0, "Free items: (type %u, slot %d)\n",
5125 fl->f_inode_type, fl->f_slot);
5126 ret2 = ocfs2_free_cached_items(osb, fl->f_inode_type,
5127 fl->f_slot, fl->f_first);
5128 if (ret2)
5129 mlog_errno(ret2);
5130 if (!ret)
5131 ret = ret2;
5132 }
5133
5134 ctxt->c_first_suballocator = fl->f_next_suballocator;
5135 kfree(fl);
5136 }
5137
5138 return ret;
5139}
5140
5141static struct ocfs2_per_slot_free_list *
5142ocfs2_find_per_slot_free_list(int type,
5143 int slot,
5144 struct ocfs2_cached_dealloc_ctxt *ctxt)
5145{
5146 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
5147
5148 while (fl) {
5149 if (fl->f_inode_type == type && fl->f_slot == slot)
5150 return fl;
5151
5152 fl = fl->f_next_suballocator;
5153 }
5154
5155 fl = kmalloc(sizeof(*fl), GFP_NOFS);
5156 if (fl) {
5157 fl->f_inode_type = type;
5158 fl->f_slot = slot;
5159 fl->f_first = NULL;
5160 fl->f_next_suballocator = ctxt->c_first_suballocator;
5161
5162 ctxt->c_first_suballocator = fl;
5163 }
5164 return fl;
5165}
5166
5167static int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
5168 int type, int slot, u64 blkno,
5169 unsigned int bit)
5170{
5171 int ret;
5172 struct ocfs2_per_slot_free_list *fl;
5173 struct ocfs2_cached_block_free *item;
5174
5175 fl = ocfs2_find_per_slot_free_list(type, slot, ctxt);
5176 if (fl == NULL) {
5177 ret = -ENOMEM;
5178 mlog_errno(ret);
5179 goto out;
5180 }
5181
5182 item = kmalloc(sizeof(*item), GFP_NOFS);
5183 if (item == NULL) {
5184 ret = -ENOMEM;
5185 mlog_errno(ret);
5186 goto out;
5187 }
5188
5189 mlog(0, "Insert: (type %d, slot %u, bit %u, blk %llu)\n",
5190 type, slot, bit, (unsigned long long)blkno);
5191
5192 item->free_blk = blkno;
5193 item->free_bit = bit;
5194 item->free_next = fl->f_first;
5195
5196 fl->f_first = item;
5197
5198 ret = 0;
5199out:
5200 return ret;
5201}
5202
59a5e416
MF
5203static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
5204 struct ocfs2_extent_block *eb)
5205{
5206 return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE,
5207 le16_to_cpu(eb->h_suballoc_slot),
5208 le64_to_cpu(eb->h_blkno),
5209 le16_to_cpu(eb->h_suballoc_bit));
5210}
5211
ccd979bd
MF
5212/* This function will figure out whether the currently last extent
5213 * block will be deleted, and if it will, what the new last extent
5214 * block will be so we can update his h_next_leaf_blk field, as well
5215 * as the dinodes i_last_eb_blk */
dcd0538f 5216static int ocfs2_find_new_last_ext_blk(struct inode *inode,
3a0782d0 5217 unsigned int clusters_to_del,
dcd0538f 5218 struct ocfs2_path *path,
ccd979bd
MF
5219 struct buffer_head **new_last_eb)
5220{
3a0782d0 5221 int next_free, ret = 0;
dcd0538f 5222 u32 cpos;
3a0782d0 5223 struct ocfs2_extent_rec *rec;
ccd979bd
MF
5224 struct ocfs2_extent_block *eb;
5225 struct ocfs2_extent_list *el;
5226 struct buffer_head *bh = NULL;
5227
5228 *new_last_eb = NULL;
5229
ccd979bd 5230 /* we have no tree, so of course, no last_eb. */
dcd0538f
MF
5231 if (!path->p_tree_depth)
5232 goto out;
ccd979bd
MF
5233
5234 /* trunc to zero special case - this makes tree_depth = 0
5235 * regardless of what it is. */
3a0782d0 5236 if (OCFS2_I(inode)->ip_clusters == clusters_to_del)
dcd0538f 5237 goto out;
ccd979bd 5238
dcd0538f 5239 el = path_leaf_el(path);
ccd979bd
MF
5240 BUG_ON(!el->l_next_free_rec);
5241
3a0782d0
MF
5242 /*
5243 * Make sure that this extent list will actually be empty
5244 * after we clear away the data. We can shortcut out if
5245 * there's more than one non-empty extent in the
5246 * list. Otherwise, a check of the remaining extent is
5247 * necessary.
5248 */
5249 next_free = le16_to_cpu(el->l_next_free_rec);
5250 rec = NULL;
dcd0538f 5251 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
3a0782d0 5252 if (next_free > 2)
dcd0538f 5253 goto out;
3a0782d0
MF
5254
5255 /* We may have a valid extent in index 1, check it. */
5256 if (next_free == 2)
5257 rec = &el->l_recs[1];
5258
5259 /*
5260 * Fall through - no more nonempty extents, so we want
5261 * to delete this leaf.
5262 */
5263 } else {
5264 if (next_free > 1)
5265 goto out;
5266
5267 rec = &el->l_recs[0];
5268 }
5269
5270 if (rec) {
5271 /*
5272 * Check it we'll only be trimming off the end of this
5273 * cluster.
5274 */
e48edee2 5275 if (le16_to_cpu(rec->e_leaf_clusters) > clusters_to_del)
3a0782d0
MF
5276 goto out;
5277 }
ccd979bd 5278
dcd0538f
MF
5279 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb, path, &cpos);
5280 if (ret) {
5281 mlog_errno(ret);
5282 goto out;
5283 }
ccd979bd 5284
dcd0538f
MF
5285 ret = ocfs2_find_leaf(inode, path_root_el(path), cpos, &bh);
5286 if (ret) {
5287 mlog_errno(ret);
5288 goto out;
5289 }
ccd979bd 5290
dcd0538f
MF
5291 eb = (struct ocfs2_extent_block *) bh->b_data;
5292 el = &eb->h_list;
5293 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
5294 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
5295 ret = -EROFS;
5296 goto out;
5297 }
ccd979bd
MF
5298
5299 *new_last_eb = bh;
5300 get_bh(*new_last_eb);
dcd0538f
MF
5301 mlog(0, "returning block %llu, (cpos: %u)\n",
5302 (unsigned long long)le64_to_cpu(eb->h_blkno), cpos);
5303out:
5304 brelse(bh);
ccd979bd 5305
dcd0538f 5306 return ret;
ccd979bd
MF
5307}
5308
3a0782d0
MF
5309/*
5310 * Trim some clusters off the rightmost edge of a tree. Only called
5311 * during truncate.
5312 *
5313 * The caller needs to:
5314 * - start journaling of each path component.
5315 * - compute and fully set up any new last ext block
5316 */
5317static int ocfs2_trim_tree(struct inode *inode, struct ocfs2_path *path,
5318 handle_t *handle, struct ocfs2_truncate_context *tc,
5319 u32 clusters_to_del, u64 *delete_start)
5320{
5321 int ret, i, index = path->p_tree_depth;
5322 u32 new_edge = 0;
5323 u64 deleted_eb = 0;
5324 struct buffer_head *bh;
5325 struct ocfs2_extent_list *el;
5326 struct ocfs2_extent_rec *rec;
5327
5328 *delete_start = 0;
5329
5330 while (index >= 0) {
5331 bh = path->p_node[index].bh;
5332 el = path->p_node[index].el;
5333
5334 mlog(0, "traveling tree (index = %d, block = %llu)\n",
5335 index, (unsigned long long)bh->b_blocknr);
5336
5337 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
5338
5339 if (index !=
5340 (path->p_tree_depth - le16_to_cpu(el->l_tree_depth))) {
5341 ocfs2_error(inode->i_sb,
5342 "Inode %lu has invalid ext. block %llu",
5343 inode->i_ino,
5344 (unsigned long long)bh->b_blocknr);
5345 ret = -EROFS;
5346 goto out;
5347 }
5348
5349find_tail_record:
5350 i = le16_to_cpu(el->l_next_free_rec) - 1;
5351 rec = &el->l_recs[i];
5352
5353 mlog(0, "Extent list before: record %d: (%u, %u, %llu), "
5354 "next = %u\n", i, le32_to_cpu(rec->e_cpos),
e48edee2 5355 ocfs2_rec_clusters(el, rec),
3a0782d0
MF
5356 (unsigned long long)le64_to_cpu(rec->e_blkno),
5357 le16_to_cpu(el->l_next_free_rec));
5358
e48edee2 5359 BUG_ON(ocfs2_rec_clusters(el, rec) < clusters_to_del);
3a0782d0
MF
5360
5361 if (le16_to_cpu(el->l_tree_depth) == 0) {
5362 /*
5363 * If the leaf block contains a single empty
5364 * extent and no records, we can just remove
5365 * the block.
5366 */
5367 if (i == 0 && ocfs2_is_empty_extent(rec)) {
5368 memset(rec, 0,
5369 sizeof(struct ocfs2_extent_rec));
5370 el->l_next_free_rec = cpu_to_le16(0);
5371
5372 goto delete;
5373 }
5374
5375 /*
5376 * Remove any empty extents by shifting things
5377 * left. That should make life much easier on
5378 * the code below. This condition is rare
5379 * enough that we shouldn't see a performance
5380 * hit.
5381 */
5382 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
5383 le16_add_cpu(&el->l_next_free_rec, -1);
5384
5385 for(i = 0;
5386 i < le16_to_cpu(el->l_next_free_rec); i++)
5387 el->l_recs[i] = el->l_recs[i + 1];
5388
5389 memset(&el->l_recs[i], 0,
5390 sizeof(struct ocfs2_extent_rec));
5391
5392 /*
5393 * We've modified our extent list. The
5394 * simplest way to handle this change
5395 * is to being the search from the
5396 * start again.
5397 */
5398 goto find_tail_record;
5399 }
5400
e48edee2 5401 le16_add_cpu(&rec->e_leaf_clusters, -clusters_to_del);
3a0782d0
MF
5402
5403 /*
5404 * We'll use "new_edge" on our way back up the
5405 * tree to know what our rightmost cpos is.
5406 */
e48edee2 5407 new_edge = le16_to_cpu(rec->e_leaf_clusters);
3a0782d0
MF
5408 new_edge += le32_to_cpu(rec->e_cpos);
5409
5410 /*
5411 * The caller will use this to delete data blocks.
5412 */
5413 *delete_start = le64_to_cpu(rec->e_blkno)
5414 + ocfs2_clusters_to_blocks(inode->i_sb,
e48edee2 5415 le16_to_cpu(rec->e_leaf_clusters));
3a0782d0
MF
5416
5417 /*
5418 * If it's now empty, remove this record.
5419 */
e48edee2 5420 if (le16_to_cpu(rec->e_leaf_clusters) == 0) {
3a0782d0
MF
5421 memset(rec, 0,
5422 sizeof(struct ocfs2_extent_rec));
5423 le16_add_cpu(&el->l_next_free_rec, -1);
5424 }
5425 } else {
5426 if (le64_to_cpu(rec->e_blkno) == deleted_eb) {
5427 memset(rec, 0,
5428 sizeof(struct ocfs2_extent_rec));
5429 le16_add_cpu(&el->l_next_free_rec, -1);
5430
5431 goto delete;
5432 }
5433
5434 /* Can this actually happen? */
5435 if (le16_to_cpu(el->l_next_free_rec) == 0)
5436 goto delete;
5437
5438 /*
5439 * We never actually deleted any clusters
5440 * because our leaf was empty. There's no
5441 * reason to adjust the rightmost edge then.
5442 */
5443 if (new_edge == 0)
5444 goto delete;
5445
e48edee2
MF
5446 rec->e_int_clusters = cpu_to_le32(new_edge);
5447 le32_add_cpu(&rec->e_int_clusters,
3a0782d0
MF
5448 -le32_to_cpu(rec->e_cpos));
5449
5450 /*
5451 * A deleted child record should have been
5452 * caught above.
5453 */
e48edee2 5454 BUG_ON(le32_to_cpu(rec->e_int_clusters) == 0);
3a0782d0
MF
5455 }
5456
5457delete:
5458 ret = ocfs2_journal_dirty(handle, bh);
5459 if (ret) {
5460 mlog_errno(ret);
5461 goto out;
5462 }
5463
5464 mlog(0, "extent list container %llu, after: record %d: "
5465 "(%u, %u, %llu), next = %u.\n",
5466 (unsigned long long)bh->b_blocknr, i,
e48edee2 5467 le32_to_cpu(rec->e_cpos), ocfs2_rec_clusters(el, rec),
3a0782d0
MF
5468 (unsigned long long)le64_to_cpu(rec->e_blkno),
5469 le16_to_cpu(el->l_next_free_rec));
5470
5471 /*
5472 * We must be careful to only attempt delete of an
5473 * extent block (and not the root inode block).
5474 */
5475 if (index > 0 && le16_to_cpu(el->l_next_free_rec) == 0) {
5476 struct ocfs2_extent_block *eb =
5477 (struct ocfs2_extent_block *)bh->b_data;
5478
5479 /*
5480 * Save this for use when processing the
5481 * parent block.
5482 */
5483 deleted_eb = le64_to_cpu(eb->h_blkno);
5484
5485 mlog(0, "deleting this extent block.\n");
5486
5487 ocfs2_remove_from_cache(inode, bh);
5488
e48edee2 5489 BUG_ON(ocfs2_rec_clusters(el, &el->l_recs[0]));
3a0782d0
MF
5490 BUG_ON(le32_to_cpu(el->l_recs[0].e_cpos));
5491 BUG_ON(le64_to_cpu(el->l_recs[0].e_blkno));
5492
59a5e416
MF
5493 ret = ocfs2_cache_extent_block_free(&tc->tc_dealloc, eb);
5494 /* An error here is not fatal. */
5495 if (ret < 0)
5496 mlog_errno(ret);
3a0782d0
MF
5497 } else {
5498 deleted_eb = 0;
5499 }
5500
5501 index--;
5502 }
5503
5504 ret = 0;
5505out:
5506 return ret;
5507}
5508
ccd979bd
MF
5509static int ocfs2_do_truncate(struct ocfs2_super *osb,
5510 unsigned int clusters_to_del,
5511 struct inode *inode,
5512 struct buffer_head *fe_bh,
1fabe148 5513 handle_t *handle,
dcd0538f
MF
5514 struct ocfs2_truncate_context *tc,
5515 struct ocfs2_path *path)
ccd979bd 5516{
3a0782d0 5517 int status;
ccd979bd 5518 struct ocfs2_dinode *fe;
ccd979bd
MF
5519 struct ocfs2_extent_block *last_eb = NULL;
5520 struct ocfs2_extent_list *el;
ccd979bd 5521 struct buffer_head *last_eb_bh = NULL;
ccd979bd
MF
5522 u64 delete_blk = 0;
5523
5524 fe = (struct ocfs2_dinode *) fe_bh->b_data;
5525
3a0782d0 5526 status = ocfs2_find_new_last_ext_blk(inode, clusters_to_del,
dcd0538f 5527 path, &last_eb_bh);
ccd979bd
MF
5528 if (status < 0) {
5529 mlog_errno(status);
5530 goto bail;
5531 }
dcd0538f
MF
5532
5533 /*
5534 * Each component will be touched, so we might as well journal
5535 * here to avoid having to handle errors later.
5536 */
3a0782d0
MF
5537 status = ocfs2_journal_access_path(inode, handle, path);
5538 if (status < 0) {
5539 mlog_errno(status);
5540 goto bail;
dcd0538f
MF
5541 }
5542
5543 if (last_eb_bh) {
5544 status = ocfs2_journal_access(handle, inode, last_eb_bh,
5545 OCFS2_JOURNAL_ACCESS_WRITE);
5546 if (status < 0) {
5547 mlog_errno(status);
5548 goto bail;
5549 }
5550
ccd979bd 5551 last_eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
dcd0538f 5552 }
ccd979bd 5553
dcd0538f
MF
5554 el = &(fe->id2.i_list);
5555
5556 /*
5557 * Lower levels depend on this never happening, but it's best
5558 * to check it up here before changing the tree.
5559 */
e48edee2 5560 if (el->l_tree_depth && el->l_recs[0].e_int_clusters == 0) {
dcd0538f
MF
5561 ocfs2_error(inode->i_sb,
5562 "Inode %lu has an empty extent record, depth %u\n",
5563 inode->i_ino, le16_to_cpu(el->l_tree_depth));
3a0782d0 5564 status = -EROFS;
ccd979bd
MF
5565 goto bail;
5566 }
ccd979bd
MF
5567
5568 spin_lock(&OCFS2_I(inode)->ip_lock);
5569 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters) -
5570 clusters_to_del;
5571 spin_unlock(&OCFS2_I(inode)->ip_lock);
5572 le32_add_cpu(&fe->i_clusters, -clusters_to_del);
e535e2ef 5573 inode->i_blocks = ocfs2_inode_sector_count(inode);
ccd979bd 5574
3a0782d0
MF
5575 status = ocfs2_trim_tree(inode, path, handle, tc,
5576 clusters_to_del, &delete_blk);
5577 if (status) {
5578 mlog_errno(status);
5579 goto bail;
ccd979bd
MF
5580 }
5581
dcd0538f 5582 if (le32_to_cpu(fe->i_clusters) == 0) {
ccd979bd
MF
5583 /* trunc to zero is a special case. */
5584 el->l_tree_depth = 0;
5585 fe->i_last_eb_blk = 0;
5586 } else if (last_eb)
5587 fe->i_last_eb_blk = last_eb->h_blkno;
5588
5589 status = ocfs2_journal_dirty(handle, fe_bh);
5590 if (status < 0) {
5591 mlog_errno(status);
5592 goto bail;
5593 }
5594
5595 if (last_eb) {
5596 /* If there will be a new last extent block, then by
5597 * definition, there cannot be any leaves to the right of
5598 * him. */
ccd979bd
MF
5599 last_eb->h_next_leaf_blk = 0;
5600 status = ocfs2_journal_dirty(handle, last_eb_bh);
5601 if (status < 0) {
5602 mlog_errno(status);
5603 goto bail;
5604 }
5605 }
5606
3a0782d0
MF
5607 if (delete_blk) {
5608 status = ocfs2_truncate_log_append(osb, handle, delete_blk,
5609 clusters_to_del);
ccd979bd
MF
5610 if (status < 0) {
5611 mlog_errno(status);
5612 goto bail;
5613 }
ccd979bd
MF
5614 }
5615 status = 0;
5616bail:
dcd0538f 5617
ccd979bd
MF
5618 mlog_exit(status);
5619 return status;
5620}
5621
60b11392
MF
5622static int ocfs2_writeback_zero_func(handle_t *handle, struct buffer_head *bh)
5623{
5624 set_buffer_uptodate(bh);
5625 mark_buffer_dirty(bh);
5626 return 0;
5627}
5628
5629static int ocfs2_ordered_zero_func(handle_t *handle, struct buffer_head *bh)
5630{
5631 set_buffer_uptodate(bh);
5632 mark_buffer_dirty(bh);
5633 return ocfs2_journal_dirty_data(handle, bh);
5634}
5635
1d410a6e
MF
5636static void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
5637 unsigned int from, unsigned int to,
5638 struct page *page, int zero, u64 *phys)
5639{
5640 int ret, partial = 0;
5641
5642 ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0);
5643 if (ret)
5644 mlog_errno(ret);
5645
5646 if (zero)
5647 zero_user_page(page, from, to - from, KM_USER0);
5648
5649 /*
5650 * Need to set the buffers we zero'd into uptodate
5651 * here if they aren't - ocfs2_map_page_blocks()
5652 * might've skipped some
5653 */
5654 if (ocfs2_should_order_data(inode)) {
5655 ret = walk_page_buffers(handle,
5656 page_buffers(page),
5657 from, to, &partial,
5658 ocfs2_ordered_zero_func);
5659 if (ret < 0)
5660 mlog_errno(ret);
5661 } else {
5662 ret = walk_page_buffers(handle, page_buffers(page),
5663 from, to, &partial,
5664 ocfs2_writeback_zero_func);
5665 if (ret < 0)
5666 mlog_errno(ret);
5667 }
5668
5669 if (!partial)
5670 SetPageUptodate(page);
5671
5672 flush_dcache_page(page);
5673}
5674
35edec1d
MF
5675static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start,
5676 loff_t end, struct page **pages,
5677 int numpages, u64 phys, handle_t *handle)
60b11392 5678{
1d410a6e 5679 int i;
60b11392
MF
5680 struct page *page;
5681 unsigned int from, to = PAGE_CACHE_SIZE;
5682 struct super_block *sb = inode->i_sb;
5683
5684 BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb)));
5685
5686 if (numpages == 0)
5687 goto out;
5688
35edec1d 5689 to = PAGE_CACHE_SIZE;
60b11392
MF
5690 for(i = 0; i < numpages; i++) {
5691 page = pages[i];
5692
35edec1d
MF
5693 from = start & (PAGE_CACHE_SIZE - 1);
5694 if ((end >> PAGE_CACHE_SHIFT) == page->index)
5695 to = end & (PAGE_CACHE_SIZE - 1);
5696
60b11392
MF
5697 BUG_ON(from > PAGE_CACHE_SIZE);
5698 BUG_ON(to > PAGE_CACHE_SIZE);
5699
1d410a6e
MF
5700 ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1,
5701 &phys);
60b11392 5702
35edec1d 5703 start = (page->index + 1) << PAGE_CACHE_SHIFT;
60b11392
MF
5704 }
5705out:
1d410a6e
MF
5706 if (pages)
5707 ocfs2_unlock_and_free_pages(pages, numpages);
60b11392
MF
5708}
5709
35edec1d 5710static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end,
1d410a6e 5711 struct page **pages, int *num)
60b11392 5712{
1d410a6e 5713 int numpages, ret = 0;
60b11392
MF
5714 struct super_block *sb = inode->i_sb;
5715 struct address_space *mapping = inode->i_mapping;
5716 unsigned long index;
35edec1d 5717 loff_t last_page_bytes;
60b11392 5718
35edec1d 5719 BUG_ON(start > end);
60b11392 5720
35edec1d
MF
5721 BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits !=
5722 (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits);
5723
1d410a6e 5724 numpages = 0;
35edec1d
MF
5725 last_page_bytes = PAGE_ALIGN(end);
5726 index = start >> PAGE_CACHE_SHIFT;
60b11392
MF
5727 do {
5728 pages[numpages] = grab_cache_page(mapping, index);
5729 if (!pages[numpages]) {
5730 ret = -ENOMEM;
5731 mlog_errno(ret);
5732 goto out;
5733 }
5734
5735 numpages++;
5736 index++;
35edec1d 5737 } while (index < (last_page_bytes >> PAGE_CACHE_SHIFT));
60b11392
MF
5738
5739out:
5740 if (ret != 0) {
1d410a6e
MF
5741 if (pages)
5742 ocfs2_unlock_and_free_pages(pages, numpages);
60b11392
MF
5743 numpages = 0;
5744 }
5745
5746 *num = numpages;
5747
5748 return ret;
5749}
5750
5751/*
5752 * Zero the area past i_size but still within an allocated
5753 * cluster. This avoids exposing nonzero data on subsequent file
5754 * extends.
5755 *
5756 * We need to call this before i_size is updated on the inode because
5757 * otherwise block_write_full_page() will skip writeout of pages past
5758 * i_size. The new_i_size parameter is passed for this reason.
5759 */
35edec1d
MF
5760int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
5761 u64 range_start, u64 range_end)
60b11392 5762{
1d410a6e 5763 int ret = 0, numpages;
60b11392
MF
5764 struct page **pages = NULL;
5765 u64 phys;
1d410a6e
MF
5766 unsigned int ext_flags;
5767 struct super_block *sb = inode->i_sb;
60b11392
MF
5768
5769 /*
5770 * File systems which don't support sparse files zero on every
5771 * extend.
5772 */
1d410a6e 5773 if (!ocfs2_sparse_alloc(OCFS2_SB(sb)))
60b11392
MF
5774 return 0;
5775
1d410a6e 5776 pages = kcalloc(ocfs2_pages_per_cluster(sb),
60b11392
MF
5777 sizeof(struct page *), GFP_NOFS);
5778 if (pages == NULL) {
5779 ret = -ENOMEM;
5780 mlog_errno(ret);
5781 goto out;
5782 }
5783
1d410a6e
MF
5784 if (range_start == range_end)
5785 goto out;
5786
5787 ret = ocfs2_extent_map_get_blocks(inode,
5788 range_start >> sb->s_blocksize_bits,
5789 &phys, NULL, &ext_flags);
60b11392
MF
5790 if (ret) {
5791 mlog_errno(ret);
5792 goto out;
5793 }
5794
1d410a6e
MF
5795 /*
5796 * Tail is a hole, or is marked unwritten. In either case, we
5797 * can count on read and write to return/push zero's.
5798 */
5799 if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN)
60b11392
MF
5800 goto out;
5801
1d410a6e
MF
5802 ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages,
5803 &numpages);
5804 if (ret) {
5805 mlog_errno(ret);
5806 goto out;
5807 }
5808
35edec1d
MF
5809 ocfs2_zero_cluster_pages(inode, range_start, range_end, pages,
5810 numpages, phys, handle);
60b11392
MF
5811
5812 /*
5813 * Initiate writeout of the pages we zero'd here. We don't
5814 * wait on them - the truncate_inode_pages() call later will
5815 * do that for us.
5816 */
35edec1d
MF
5817 ret = do_sync_mapping_range(inode->i_mapping, range_start,
5818 range_end - 1, SYNC_FILE_RANGE_WRITE);
60b11392
MF
5819 if (ret)
5820 mlog_errno(ret);
5821
5822out:
5823 if (pages)
5824 kfree(pages);
5825
5826 return ret;
5827}
5828
ccd979bd
MF
5829/*
5830 * It is expected, that by the time you call this function,
5831 * inode->i_size and fe->i_size have been adjusted.
5832 *
5833 * WARNING: This will kfree the truncate context
5834 */
5835int ocfs2_commit_truncate(struct ocfs2_super *osb,
5836 struct inode *inode,
5837 struct buffer_head *fe_bh,
5838 struct ocfs2_truncate_context *tc)
5839{
5840 int status, i, credits, tl_sem = 0;
dcd0538f 5841 u32 clusters_to_del, new_highest_cpos, range;
ccd979bd 5842 struct ocfs2_extent_list *el;
1fabe148 5843 handle_t *handle = NULL;
ccd979bd 5844 struct inode *tl_inode = osb->osb_tl_inode;
dcd0538f 5845 struct ocfs2_path *path = NULL;
ccd979bd
MF
5846
5847 mlog_entry_void();
5848
dcd0538f 5849 new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb,
ccd979bd
MF
5850 i_size_read(inode));
5851
dcd0538f
MF
5852 path = ocfs2_new_inode_path(fe_bh);
5853 if (!path) {
5854 status = -ENOMEM;
5855 mlog_errno(status);
5856 goto bail;
5857 }
83418978
MF
5858
5859 ocfs2_extent_map_trunc(inode, new_highest_cpos);
5860
ccd979bd 5861start:
3a0782d0
MF
5862 /*
5863 * Check that we still have allocation to delete.
5864 */
5865 if (OCFS2_I(inode)->ip_clusters == 0) {
5866 status = 0;
5867 goto bail;
5868 }
5869
dcd0538f
MF
5870 /*
5871 * Truncate always works against the rightmost tree branch.
5872 */
5873 status = ocfs2_find_path(inode, path, UINT_MAX);
5874 if (status) {
5875 mlog_errno(status);
5876 goto bail;
ccd979bd
MF
5877 }
5878
dcd0538f
MF
5879 mlog(0, "inode->ip_clusters = %u, tree_depth = %u\n",
5880 OCFS2_I(inode)->ip_clusters, path->p_tree_depth);
5881
5882 /*
5883 * By now, el will point to the extent list on the bottom most
5884 * portion of this tree. Only the tail record is considered in
5885 * each pass.
5886 *
5887 * We handle the following cases, in order:
5888 * - empty extent: delete the remaining branch
5889 * - remove the entire record
5890 * - remove a partial record
5891 * - no record needs to be removed (truncate has completed)
5892 */
5893 el = path_leaf_el(path);
3a0782d0
MF
5894 if (le16_to_cpu(el->l_next_free_rec) == 0) {
5895 ocfs2_error(inode->i_sb,
5896 "Inode %llu has empty extent block at %llu\n",
5897 (unsigned long long)OCFS2_I(inode)->ip_blkno,
5898 (unsigned long long)path_leaf_bh(path)->b_blocknr);
5899 status = -EROFS;
5900 goto bail;
5901 }
5902
ccd979bd 5903 i = le16_to_cpu(el->l_next_free_rec) - 1;
dcd0538f 5904 range = le32_to_cpu(el->l_recs[i].e_cpos) +
e48edee2 5905 ocfs2_rec_clusters(el, &el->l_recs[i]);
dcd0538f
MF
5906 if (i == 0 && ocfs2_is_empty_extent(&el->l_recs[i])) {
5907 clusters_to_del = 0;
5908 } else if (le32_to_cpu(el->l_recs[i].e_cpos) >= new_highest_cpos) {
e48edee2 5909 clusters_to_del = ocfs2_rec_clusters(el, &el->l_recs[i]);
dcd0538f 5910 } else if (range > new_highest_cpos) {
e48edee2 5911 clusters_to_del = (ocfs2_rec_clusters(el, &el->l_recs[i]) +
ccd979bd 5912 le32_to_cpu(el->l_recs[i].e_cpos)) -
dcd0538f
MF
5913 new_highest_cpos;
5914 } else {
5915 status = 0;
5916 goto bail;
5917 }
ccd979bd 5918
dcd0538f
MF
5919 mlog(0, "clusters_to_del = %u in this pass, tail blk=%llu\n",
5920 clusters_to_del, (unsigned long long)path_leaf_bh(path)->b_blocknr);
5921
5922 BUG_ON(clusters_to_del == 0);
ccd979bd 5923
1b1dcc1b 5924 mutex_lock(&tl_inode->i_mutex);
ccd979bd
MF
5925 tl_sem = 1;
5926 /* ocfs2_truncate_log_needs_flush guarantees us at least one
5927 * record is free for use. If there isn't any, we flush to get
5928 * an empty truncate log. */
5929 if (ocfs2_truncate_log_needs_flush(osb)) {
5930 status = __ocfs2_flush_truncate_log(osb);
5931 if (status < 0) {
5932 mlog_errno(status);
5933 goto bail;
5934 }
5935 }
5936
5937 credits = ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del,
dcd0538f
MF
5938 (struct ocfs2_dinode *)fe_bh->b_data,
5939 el);
65eff9cc 5940 handle = ocfs2_start_trans(osb, credits);
ccd979bd
MF
5941 if (IS_ERR(handle)) {
5942 status = PTR_ERR(handle);
5943 handle = NULL;
5944 mlog_errno(status);
5945 goto bail;
5946 }
5947
dcd0538f
MF
5948 status = ocfs2_do_truncate(osb, clusters_to_del, inode, fe_bh, handle,
5949 tc, path);
ccd979bd
MF
5950 if (status < 0) {
5951 mlog_errno(status);
5952 goto bail;
5953 }
5954
1b1dcc1b 5955 mutex_unlock(&tl_inode->i_mutex);
ccd979bd
MF
5956 tl_sem = 0;
5957
02dc1af4 5958 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
5959 handle = NULL;
5960
dcd0538f
MF
5961 ocfs2_reinit_path(path, 1);
5962
5963 /*
3a0782d0
MF
5964 * The check above will catch the case where we've truncated
5965 * away all allocation.
dcd0538f 5966 */
3a0782d0
MF
5967 goto start;
5968
ccd979bd 5969bail:
ccd979bd
MF
5970
5971 ocfs2_schedule_truncate_log_flush(osb, 1);
5972
5973 if (tl_sem)
1b1dcc1b 5974 mutex_unlock(&tl_inode->i_mutex);
ccd979bd
MF
5975
5976 if (handle)
02dc1af4 5977 ocfs2_commit_trans(osb, handle);
ccd979bd 5978
59a5e416
MF
5979 ocfs2_run_deallocs(osb, &tc->tc_dealloc);
5980
dcd0538f 5981 ocfs2_free_path(path);
ccd979bd
MF
5982
5983 /* This will drop the ext_alloc cluster lock for us */
5984 ocfs2_free_truncate_context(tc);
5985
5986 mlog_exit(status);
5987 return status;
5988}
5989
ccd979bd 5990/*
59a5e416 5991 * Expects the inode to already be locked.
ccd979bd
MF
5992 */
5993int ocfs2_prepare_truncate(struct ocfs2_super *osb,
5994 struct inode *inode,
5995 struct buffer_head *fe_bh,
5996 struct ocfs2_truncate_context **tc)
5997{
59a5e416 5998 int status;
ccd979bd
MF
5999 unsigned int new_i_clusters;
6000 struct ocfs2_dinode *fe;
6001 struct ocfs2_extent_block *eb;
ccd979bd 6002 struct buffer_head *last_eb_bh = NULL;
ccd979bd
MF
6003
6004 mlog_entry_void();
6005
6006 *tc = NULL;
6007
6008 new_i_clusters = ocfs2_clusters_for_bytes(osb->sb,
6009 i_size_read(inode));
6010 fe = (struct ocfs2_dinode *) fe_bh->b_data;
6011
6012 mlog(0, "fe->i_clusters = %u, new_i_clusters = %u, fe->i_size ="
1ca1a111
MF
6013 "%llu\n", le32_to_cpu(fe->i_clusters), new_i_clusters,
6014 (unsigned long long)le64_to_cpu(fe->i_size));
ccd979bd 6015
cd861280 6016 *tc = kzalloc(sizeof(struct ocfs2_truncate_context), GFP_KERNEL);
ccd979bd
MF
6017 if (!(*tc)) {
6018 status = -ENOMEM;
6019 mlog_errno(status);
6020 goto bail;
6021 }
59a5e416 6022 ocfs2_init_dealloc_ctxt(&(*tc)->tc_dealloc);
ccd979bd 6023
ccd979bd 6024 if (fe->id2.i_list.l_tree_depth) {
ccd979bd
MF
6025 status = ocfs2_read_block(osb, le64_to_cpu(fe->i_last_eb_blk),
6026 &last_eb_bh, OCFS2_BH_CACHED, inode);
6027 if (status < 0) {
6028 mlog_errno(status);
6029 goto bail;
6030 }
6031 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
6032 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
6033 OCFS2_RO_ON_INVALID_EXTENT_BLOCK(inode->i_sb, eb);
6034
6035 brelse(last_eb_bh);
6036 status = -EIO;
6037 goto bail;
6038 }
ccd979bd
MF
6039 }
6040
6041 (*tc)->tc_last_eb_bh = last_eb_bh;
6042
ccd979bd
MF
6043 status = 0;
6044bail:
6045 if (status < 0) {
6046 if (*tc)
6047 ocfs2_free_truncate_context(*tc);
6048 *tc = NULL;
6049 }
6050 mlog_exit_void();
6051 return status;
6052}
6053
6054static void ocfs2_free_truncate_context(struct ocfs2_truncate_context *tc)
6055{
59a5e416
MF
6056 /*
6057 * The caller is responsible for completing deallocation
6058 * before freeing the context.
6059 */
6060 if (tc->tc_dealloc.c_first_suballocator != NULL)
6061 mlog(ML_NOTICE,
6062 "Truncate completion has non-empty dealloc context\n");
ccd979bd
MF
6063
6064 if (tc->tc_last_eb_bh)
6065 brelse(tc->tc_last_eb_bh);
6066
6067 kfree(tc);
6068}