Loading...
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * refcounttree.c
5 *
6 * Copyright (C) 2009 Oracle. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
18#include <linux/sort.h>
19#include <cluster/masklog.h>
20#include "ocfs2.h"
21#include "inode.h"
22#include "alloc.h"
23#include "suballoc.h"
24#include "journal.h"
25#include "uptodate.h"
26#include "super.h"
27#include "buffer_head_io.h"
28#include "blockcheck.h"
29#include "refcounttree.h"
30#include "sysfile.h"
31#include "dlmglue.h"
32#include "extent_map.h"
33#include "aops.h"
34#include "xattr.h"
35#include "namei.h"
36#include "ocfs2_trace.h"
37
38#include <linux/bio.h>
39#include <linux/blkdev.h>
40#include <linux/slab.h>
41#include <linux/writeback.h>
42#include <linux/pagevec.h>
43#include <linux/swap.h>
44#include <linux/security.h>
45#include <linux/fsnotify.h>
46#include <linux/quotaops.h>
47#include <linux/namei.h>
48#include <linux/mount.h>
49
50struct ocfs2_cow_context {
51 struct inode *inode;
52 struct file *file;
53 u32 cow_start;
54 u32 cow_len;
55 struct ocfs2_extent_tree data_et;
56 struct ocfs2_refcount_tree *ref_tree;
57 struct buffer_head *ref_root_bh;
58 struct ocfs2_alloc_context *meta_ac;
59 struct ocfs2_alloc_context *data_ac;
60 struct ocfs2_cached_dealloc_ctxt dealloc;
61 void *cow_object;
62 struct ocfs2_post_refcount *post_refcount;
63 int extra_credits;
64 int (*get_clusters)(struct ocfs2_cow_context *context,
65 u32 v_cluster, u32 *p_cluster,
66 u32 *num_clusters,
67 unsigned int *extent_flags);
68 int (*cow_duplicate_clusters)(handle_t *handle,
69 struct file *file,
70 u32 cpos, u32 old_cluster,
71 u32 new_cluster, u32 new_len);
72};
73
74static inline struct ocfs2_refcount_tree *
75cache_info_to_refcount(struct ocfs2_caching_info *ci)
76{
77 return container_of(ci, struct ocfs2_refcount_tree, rf_ci);
78}
79
80static int ocfs2_validate_refcount_block(struct super_block *sb,
81 struct buffer_head *bh)
82{
83 int rc;
84 struct ocfs2_refcount_block *rb =
85 (struct ocfs2_refcount_block *)bh->b_data;
86
87 trace_ocfs2_validate_refcount_block((unsigned long long)bh->b_blocknr);
88
89 BUG_ON(!buffer_uptodate(bh));
90
91 /*
92 * If the ecc fails, we return the error but otherwise
93 * leave the filesystem running. We know any error is
94 * local to this block.
95 */
96 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &rb->rf_check);
97 if (rc) {
98 mlog(ML_ERROR, "Checksum failed for refcount block %llu\n",
99 (unsigned long long)bh->b_blocknr);
100 return rc;
101 }
102
103
104 if (!OCFS2_IS_VALID_REFCOUNT_BLOCK(rb)) {
105 ocfs2_error(sb,
106 "Refcount block #%llu has bad signature %.*s",
107 (unsigned long long)bh->b_blocknr, 7,
108 rb->rf_signature);
109 return -EINVAL;
110 }
111
112 if (le64_to_cpu(rb->rf_blkno) != bh->b_blocknr) {
113 ocfs2_error(sb,
114 "Refcount block #%llu has an invalid rf_blkno "
115 "of %llu",
116 (unsigned long long)bh->b_blocknr,
117 (unsigned long long)le64_to_cpu(rb->rf_blkno));
118 return -EINVAL;
119 }
120
121 if (le32_to_cpu(rb->rf_fs_generation) != OCFS2_SB(sb)->fs_generation) {
122 ocfs2_error(sb,
123 "Refcount block #%llu has an invalid "
124 "rf_fs_generation of #%u",
125 (unsigned long long)bh->b_blocknr,
126 le32_to_cpu(rb->rf_fs_generation));
127 return -EINVAL;
128 }
129
130 return 0;
131}
132
133static int ocfs2_read_refcount_block(struct ocfs2_caching_info *ci,
134 u64 rb_blkno,
135 struct buffer_head **bh)
136{
137 int rc;
138 struct buffer_head *tmp = *bh;
139
140 rc = ocfs2_read_block(ci, rb_blkno, &tmp,
141 ocfs2_validate_refcount_block);
142
143 /* If ocfs2_read_block() got us a new bh, pass it up. */
144 if (!rc && !*bh)
145 *bh = tmp;
146
147 return rc;
148}
149
150static u64 ocfs2_refcount_cache_owner(struct ocfs2_caching_info *ci)
151{
152 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
153
154 return rf->rf_blkno;
155}
156
157static struct super_block *
158ocfs2_refcount_cache_get_super(struct ocfs2_caching_info *ci)
159{
160 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
161
162 return rf->rf_sb;
163}
164
165static void ocfs2_refcount_cache_lock(struct ocfs2_caching_info *ci)
166{
167 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
168
169 spin_lock(&rf->rf_lock);
170}
171
172static void ocfs2_refcount_cache_unlock(struct ocfs2_caching_info *ci)
173{
174 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
175
176 spin_unlock(&rf->rf_lock);
177}
178
179static void ocfs2_refcount_cache_io_lock(struct ocfs2_caching_info *ci)
180{
181 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
182
183 mutex_lock(&rf->rf_io_mutex);
184}
185
186static void ocfs2_refcount_cache_io_unlock(struct ocfs2_caching_info *ci)
187{
188 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
189
190 mutex_unlock(&rf->rf_io_mutex);
191}
192
193static const struct ocfs2_caching_operations ocfs2_refcount_caching_ops = {
194 .co_owner = ocfs2_refcount_cache_owner,
195 .co_get_super = ocfs2_refcount_cache_get_super,
196 .co_cache_lock = ocfs2_refcount_cache_lock,
197 .co_cache_unlock = ocfs2_refcount_cache_unlock,
198 .co_io_lock = ocfs2_refcount_cache_io_lock,
199 .co_io_unlock = ocfs2_refcount_cache_io_unlock,
200};
201
202static struct ocfs2_refcount_tree *
203ocfs2_find_refcount_tree(struct ocfs2_super *osb, u64 blkno)
204{
205 struct rb_node *n = osb->osb_rf_lock_tree.rb_node;
206 struct ocfs2_refcount_tree *tree = NULL;
207
208 while (n) {
209 tree = rb_entry(n, struct ocfs2_refcount_tree, rf_node);
210
211 if (blkno < tree->rf_blkno)
212 n = n->rb_left;
213 else if (blkno > tree->rf_blkno)
214 n = n->rb_right;
215 else
216 return tree;
217 }
218
219 return NULL;
220}
221
222/* osb_lock is already locked. */
223static void ocfs2_insert_refcount_tree(struct ocfs2_super *osb,
224 struct ocfs2_refcount_tree *new)
225{
226 u64 rf_blkno = new->rf_blkno;
227 struct rb_node *parent = NULL;
228 struct rb_node **p = &osb->osb_rf_lock_tree.rb_node;
229 struct ocfs2_refcount_tree *tmp;
230
231 while (*p) {
232 parent = *p;
233
234 tmp = rb_entry(parent, struct ocfs2_refcount_tree,
235 rf_node);
236
237 if (rf_blkno < tmp->rf_blkno)
238 p = &(*p)->rb_left;
239 else if (rf_blkno > tmp->rf_blkno)
240 p = &(*p)->rb_right;
241 else {
242 /* This should never happen! */
243 mlog(ML_ERROR, "Duplicate refcount block %llu found!\n",
244 (unsigned long long)rf_blkno);
245 BUG();
246 }
247 }
248
249 rb_link_node(&new->rf_node, parent, p);
250 rb_insert_color(&new->rf_node, &osb->osb_rf_lock_tree);
251}
252
253static void ocfs2_free_refcount_tree(struct ocfs2_refcount_tree *tree)
254{
255 ocfs2_metadata_cache_exit(&tree->rf_ci);
256 ocfs2_simple_drop_lockres(OCFS2_SB(tree->rf_sb), &tree->rf_lockres);
257 ocfs2_lock_res_free(&tree->rf_lockres);
258 kfree(tree);
259}
260
261static inline void
262ocfs2_erase_refcount_tree_from_list_no_lock(struct ocfs2_super *osb,
263 struct ocfs2_refcount_tree *tree)
264{
265 rb_erase(&tree->rf_node, &osb->osb_rf_lock_tree);
266 if (osb->osb_ref_tree_lru && osb->osb_ref_tree_lru == tree)
267 osb->osb_ref_tree_lru = NULL;
268}
269
270static void ocfs2_erase_refcount_tree_from_list(struct ocfs2_super *osb,
271 struct ocfs2_refcount_tree *tree)
272{
273 spin_lock(&osb->osb_lock);
274 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
275 spin_unlock(&osb->osb_lock);
276}
277
278static void ocfs2_kref_remove_refcount_tree(struct kref *kref)
279{
280 struct ocfs2_refcount_tree *tree =
281 container_of(kref, struct ocfs2_refcount_tree, rf_getcnt);
282
283 ocfs2_free_refcount_tree(tree);
284}
285
286static inline void
287ocfs2_refcount_tree_get(struct ocfs2_refcount_tree *tree)
288{
289 kref_get(&tree->rf_getcnt);
290}
291
292static inline void
293ocfs2_refcount_tree_put(struct ocfs2_refcount_tree *tree)
294{
295 kref_put(&tree->rf_getcnt, ocfs2_kref_remove_refcount_tree);
296}
297
298static inline void ocfs2_init_refcount_tree_ci(struct ocfs2_refcount_tree *new,
299 struct super_block *sb)
300{
301 ocfs2_metadata_cache_init(&new->rf_ci, &ocfs2_refcount_caching_ops);
302 mutex_init(&new->rf_io_mutex);
303 new->rf_sb = sb;
304 spin_lock_init(&new->rf_lock);
305}
306
307static inline void ocfs2_init_refcount_tree_lock(struct ocfs2_super *osb,
308 struct ocfs2_refcount_tree *new,
309 u64 rf_blkno, u32 generation)
310{
311 init_rwsem(&new->rf_sem);
312 ocfs2_refcount_lock_res_init(&new->rf_lockres, osb,
313 rf_blkno, generation);
314}
315
316static struct ocfs2_refcount_tree*
317ocfs2_allocate_refcount_tree(struct ocfs2_super *osb, u64 rf_blkno)
318{
319 struct ocfs2_refcount_tree *new;
320
321 new = kzalloc(sizeof(struct ocfs2_refcount_tree), GFP_NOFS);
322 if (!new)
323 return NULL;
324
325 new->rf_blkno = rf_blkno;
326 kref_init(&new->rf_getcnt);
327 ocfs2_init_refcount_tree_ci(new, osb->sb);
328
329 return new;
330}
331
332static int ocfs2_get_refcount_tree(struct ocfs2_super *osb, u64 rf_blkno,
333 struct ocfs2_refcount_tree **ret_tree)
334{
335 int ret = 0;
336 struct ocfs2_refcount_tree *tree, *new = NULL;
337 struct buffer_head *ref_root_bh = NULL;
338 struct ocfs2_refcount_block *ref_rb;
339
340 spin_lock(&osb->osb_lock);
341 if (osb->osb_ref_tree_lru &&
342 osb->osb_ref_tree_lru->rf_blkno == rf_blkno)
343 tree = osb->osb_ref_tree_lru;
344 else
345 tree = ocfs2_find_refcount_tree(osb, rf_blkno);
346 if (tree)
347 goto out;
348
349 spin_unlock(&osb->osb_lock);
350
351 new = ocfs2_allocate_refcount_tree(osb, rf_blkno);
352 if (!new) {
353 ret = -ENOMEM;
354 mlog_errno(ret);
355 return ret;
356 }
357 /*
358 * We need the generation to create the refcount tree lock and since
359 * it isn't changed during the tree modification, we are safe here to
360 * read without protection.
361 * We also have to purge the cache after we create the lock since the
362 * refcount block may have the stale data. It can only be trusted when
363 * we hold the refcount lock.
364 */
365 ret = ocfs2_read_refcount_block(&new->rf_ci, rf_blkno, &ref_root_bh);
366 if (ret) {
367 mlog_errno(ret);
368 ocfs2_metadata_cache_exit(&new->rf_ci);
369 kfree(new);
370 return ret;
371 }
372
373 ref_rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
374 new->rf_generation = le32_to_cpu(ref_rb->rf_generation);
375 ocfs2_init_refcount_tree_lock(osb, new, rf_blkno,
376 new->rf_generation);
377 ocfs2_metadata_cache_purge(&new->rf_ci);
378
379 spin_lock(&osb->osb_lock);
380 tree = ocfs2_find_refcount_tree(osb, rf_blkno);
381 if (tree)
382 goto out;
383
384 ocfs2_insert_refcount_tree(osb, new);
385
386 tree = new;
387 new = NULL;
388
389out:
390 *ret_tree = tree;
391
392 osb->osb_ref_tree_lru = tree;
393
394 spin_unlock(&osb->osb_lock);
395
396 if (new)
397 ocfs2_free_refcount_tree(new);
398
399 brelse(ref_root_bh);
400 return ret;
401}
402
403static int ocfs2_get_refcount_block(struct inode *inode, u64 *ref_blkno)
404{
405 int ret;
406 struct buffer_head *di_bh = NULL;
407 struct ocfs2_dinode *di;
408
409 ret = ocfs2_read_inode_block(inode, &di_bh);
410 if (ret) {
411 mlog_errno(ret);
412 goto out;
413 }
414
415 BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
416
417 di = (struct ocfs2_dinode *)di_bh->b_data;
418 *ref_blkno = le64_to_cpu(di->i_refcount_loc);
419 brelse(di_bh);
420out:
421 return ret;
422}
423
424static int __ocfs2_lock_refcount_tree(struct ocfs2_super *osb,
425 struct ocfs2_refcount_tree *tree, int rw)
426{
427 int ret;
428
429 ret = ocfs2_refcount_lock(tree, rw);
430 if (ret) {
431 mlog_errno(ret);
432 goto out;
433 }
434
435 if (rw)
436 down_write(&tree->rf_sem);
437 else
438 down_read(&tree->rf_sem);
439
440out:
441 return ret;
442}
443
444/*
445 * Lock the refcount tree pointed by ref_blkno and return the tree.
446 * In most case, we lock the tree and read the refcount block.
447 * So read it here if the caller really needs it.
448 *
449 * If the tree has been re-created by other node, it will free the
450 * old one and re-create it.
451 */
452int ocfs2_lock_refcount_tree(struct ocfs2_super *osb,
453 u64 ref_blkno, int rw,
454 struct ocfs2_refcount_tree **ret_tree,
455 struct buffer_head **ref_bh)
456{
457 int ret, delete_tree = 0;
458 struct ocfs2_refcount_tree *tree = NULL;
459 struct buffer_head *ref_root_bh = NULL;
460 struct ocfs2_refcount_block *rb;
461
462again:
463 ret = ocfs2_get_refcount_tree(osb, ref_blkno, &tree);
464 if (ret) {
465 mlog_errno(ret);
466 return ret;
467 }
468
469 ocfs2_refcount_tree_get(tree);
470
471 ret = __ocfs2_lock_refcount_tree(osb, tree, rw);
472 if (ret) {
473 mlog_errno(ret);
474 ocfs2_refcount_tree_put(tree);
475 goto out;
476 }
477
478 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
479 &ref_root_bh);
480 if (ret) {
481 mlog_errno(ret);
482 ocfs2_unlock_refcount_tree(osb, tree, rw);
483 ocfs2_refcount_tree_put(tree);
484 goto out;
485 }
486
487 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
488 /*
489 * If the refcount block has been freed and re-created, we may need
490 * to recreate the refcount tree also.
491 *
492 * Here we just remove the tree from the rb-tree, and the last
493 * kref holder will unlock and delete this refcount_tree.
494 * Then we goto "again" and ocfs2_get_refcount_tree will create
495 * the new refcount tree for us.
496 */
497 if (tree->rf_generation != le32_to_cpu(rb->rf_generation)) {
498 if (!tree->rf_removed) {
499 ocfs2_erase_refcount_tree_from_list(osb, tree);
500 tree->rf_removed = 1;
501 delete_tree = 1;
502 }
503
504 ocfs2_unlock_refcount_tree(osb, tree, rw);
505 /*
506 * We get an extra reference when we create the refcount
507 * tree, so another put will destroy it.
508 */
509 if (delete_tree)
510 ocfs2_refcount_tree_put(tree);
511 brelse(ref_root_bh);
512 ref_root_bh = NULL;
513 goto again;
514 }
515
516 *ret_tree = tree;
517 if (ref_bh) {
518 *ref_bh = ref_root_bh;
519 ref_root_bh = NULL;
520 }
521out:
522 brelse(ref_root_bh);
523 return ret;
524}
525
526void ocfs2_unlock_refcount_tree(struct ocfs2_super *osb,
527 struct ocfs2_refcount_tree *tree, int rw)
528{
529 if (rw)
530 up_write(&tree->rf_sem);
531 else
532 up_read(&tree->rf_sem);
533
534 ocfs2_refcount_unlock(tree, rw);
535 ocfs2_refcount_tree_put(tree);
536}
537
538void ocfs2_purge_refcount_trees(struct ocfs2_super *osb)
539{
540 struct rb_node *node;
541 struct ocfs2_refcount_tree *tree;
542 struct rb_root *root = &osb->osb_rf_lock_tree;
543
544 while ((node = rb_last(root)) != NULL) {
545 tree = rb_entry(node, struct ocfs2_refcount_tree, rf_node);
546
547 trace_ocfs2_purge_refcount_trees(
548 (unsigned long long) tree->rf_blkno);
549
550 rb_erase(&tree->rf_node, root);
551 ocfs2_free_refcount_tree(tree);
552 }
553}
554
555/*
556 * Create a refcount tree for an inode.
557 * We take for granted that the inode is already locked.
558 */
559static int ocfs2_create_refcount_tree(struct inode *inode,
560 struct buffer_head *di_bh)
561{
562 int ret;
563 handle_t *handle = NULL;
564 struct ocfs2_alloc_context *meta_ac = NULL;
565 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
566 struct ocfs2_inode_info *oi = OCFS2_I(inode);
567 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
568 struct buffer_head *new_bh = NULL;
569 struct ocfs2_refcount_block *rb;
570 struct ocfs2_refcount_tree *new_tree = NULL, *tree = NULL;
571 u16 suballoc_bit_start;
572 u32 num_got;
573 u64 suballoc_loc, first_blkno;
574
575 BUG_ON(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL);
576
577 trace_ocfs2_create_refcount_tree(
578 (unsigned long long)OCFS2_I(inode)->ip_blkno);
579
580 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac);
581 if (ret) {
582 mlog_errno(ret);
583 goto out;
584 }
585
586 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_CREATE_CREDITS);
587 if (IS_ERR(handle)) {
588 ret = PTR_ERR(handle);
589 mlog_errno(ret);
590 goto out;
591 }
592
593 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
594 OCFS2_JOURNAL_ACCESS_WRITE);
595 if (ret) {
596 mlog_errno(ret);
597 goto out_commit;
598 }
599
600 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
601 &suballoc_bit_start, &num_got,
602 &first_blkno);
603 if (ret) {
604 mlog_errno(ret);
605 goto out_commit;
606 }
607
608 new_tree = ocfs2_allocate_refcount_tree(osb, first_blkno);
609 if (!new_tree) {
610 ret = -ENOMEM;
611 mlog_errno(ret);
612 goto out_commit;
613 }
614
615 new_bh = sb_getblk(inode->i_sb, first_blkno);
616 ocfs2_set_new_buffer_uptodate(&new_tree->rf_ci, new_bh);
617
618 ret = ocfs2_journal_access_rb(handle, &new_tree->rf_ci, new_bh,
619 OCFS2_JOURNAL_ACCESS_CREATE);
620 if (ret) {
621 mlog_errno(ret);
622 goto out_commit;
623 }
624
625 /* Initialize ocfs2_refcount_block. */
626 rb = (struct ocfs2_refcount_block *)new_bh->b_data;
627 memset(rb, 0, inode->i_sb->s_blocksize);
628 strcpy((void *)rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
629 rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
630 rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
631 rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
632 rb->rf_fs_generation = cpu_to_le32(osb->fs_generation);
633 rb->rf_blkno = cpu_to_le64(first_blkno);
634 rb->rf_count = cpu_to_le32(1);
635 rb->rf_records.rl_count =
636 cpu_to_le16(ocfs2_refcount_recs_per_rb(osb->sb));
637 spin_lock(&osb->osb_lock);
638 rb->rf_generation = osb->s_next_generation++;
639 spin_unlock(&osb->osb_lock);
640
641 ocfs2_journal_dirty(handle, new_bh);
642
643 spin_lock(&oi->ip_lock);
644 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
645 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
646 di->i_refcount_loc = cpu_to_le64(first_blkno);
647 spin_unlock(&oi->ip_lock);
648
649 trace_ocfs2_create_refcount_tree_blkno((unsigned long long)first_blkno);
650
651 ocfs2_journal_dirty(handle, di_bh);
652
653 /*
654 * We have to init the tree lock here since it will use
655 * the generation number to create it.
656 */
657 new_tree->rf_generation = le32_to_cpu(rb->rf_generation);
658 ocfs2_init_refcount_tree_lock(osb, new_tree, first_blkno,
659 new_tree->rf_generation);
660
661 spin_lock(&osb->osb_lock);
662 tree = ocfs2_find_refcount_tree(osb, first_blkno);
663
664 /*
665 * We've just created a new refcount tree in this block. If
666 * we found a refcount tree on the ocfs2_super, it must be
667 * one we just deleted. We free the old tree before
668 * inserting the new tree.
669 */
670 BUG_ON(tree && tree->rf_generation == new_tree->rf_generation);
671 if (tree)
672 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
673 ocfs2_insert_refcount_tree(osb, new_tree);
674 spin_unlock(&osb->osb_lock);
675 new_tree = NULL;
676 if (tree)
677 ocfs2_refcount_tree_put(tree);
678
679out_commit:
680 ocfs2_commit_trans(osb, handle);
681
682out:
683 if (new_tree) {
684 ocfs2_metadata_cache_exit(&new_tree->rf_ci);
685 kfree(new_tree);
686 }
687
688 brelse(new_bh);
689 if (meta_ac)
690 ocfs2_free_alloc_context(meta_ac);
691
692 return ret;
693}
694
695static int ocfs2_set_refcount_tree(struct inode *inode,
696 struct buffer_head *di_bh,
697 u64 refcount_loc)
698{
699 int ret;
700 handle_t *handle = NULL;
701 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
702 struct ocfs2_inode_info *oi = OCFS2_I(inode);
703 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
704 struct buffer_head *ref_root_bh = NULL;
705 struct ocfs2_refcount_block *rb;
706 struct ocfs2_refcount_tree *ref_tree;
707
708 BUG_ON(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL);
709
710 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
711 &ref_tree, &ref_root_bh);
712 if (ret) {
713 mlog_errno(ret);
714 return ret;
715 }
716
717 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_SET_CREDITS);
718 if (IS_ERR(handle)) {
719 ret = PTR_ERR(handle);
720 mlog_errno(ret);
721 goto out;
722 }
723
724 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
725 OCFS2_JOURNAL_ACCESS_WRITE);
726 if (ret) {
727 mlog_errno(ret);
728 goto out_commit;
729 }
730
731 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, ref_root_bh,
732 OCFS2_JOURNAL_ACCESS_WRITE);
733 if (ret) {
734 mlog_errno(ret);
735 goto out_commit;
736 }
737
738 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
739 le32_add_cpu(&rb->rf_count, 1);
740
741 ocfs2_journal_dirty(handle, ref_root_bh);
742
743 spin_lock(&oi->ip_lock);
744 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
745 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
746 di->i_refcount_loc = cpu_to_le64(refcount_loc);
747 spin_unlock(&oi->ip_lock);
748 ocfs2_journal_dirty(handle, di_bh);
749
750out_commit:
751 ocfs2_commit_trans(osb, handle);
752out:
753 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
754 brelse(ref_root_bh);
755
756 return ret;
757}
758
759int ocfs2_remove_refcount_tree(struct inode *inode, struct buffer_head *di_bh)
760{
761 int ret, delete_tree = 0;
762 handle_t *handle = NULL;
763 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
764 struct ocfs2_inode_info *oi = OCFS2_I(inode);
765 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
766 struct ocfs2_refcount_block *rb;
767 struct inode *alloc_inode = NULL;
768 struct buffer_head *alloc_bh = NULL;
769 struct buffer_head *blk_bh = NULL;
770 struct ocfs2_refcount_tree *ref_tree;
771 int credits = OCFS2_REFCOUNT_TREE_REMOVE_CREDITS;
772 u64 blk = 0, bg_blkno = 0, ref_blkno = le64_to_cpu(di->i_refcount_loc);
773 u16 bit = 0;
774
775 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL))
776 return 0;
777
778 BUG_ON(!ref_blkno);
779 ret = ocfs2_lock_refcount_tree(osb, ref_blkno, 1, &ref_tree, &blk_bh);
780 if (ret) {
781 mlog_errno(ret);
782 return ret;
783 }
784
785 rb = (struct ocfs2_refcount_block *)blk_bh->b_data;
786
787 /*
788 * If we are the last user, we need to free the block.
789 * So lock the allocator ahead.
790 */
791 if (le32_to_cpu(rb->rf_count) == 1) {
792 blk = le64_to_cpu(rb->rf_blkno);
793 bit = le16_to_cpu(rb->rf_suballoc_bit);
794 if (rb->rf_suballoc_loc)
795 bg_blkno = le64_to_cpu(rb->rf_suballoc_loc);
796 else
797 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
798
799 alloc_inode = ocfs2_get_system_file_inode(osb,
800 EXTENT_ALLOC_SYSTEM_INODE,
801 le16_to_cpu(rb->rf_suballoc_slot));
802 if (!alloc_inode) {
803 ret = -ENOMEM;
804 mlog_errno(ret);
805 goto out;
806 }
807 mutex_lock(&alloc_inode->i_mutex);
808
809 ret = ocfs2_inode_lock(alloc_inode, &alloc_bh, 1);
810 if (ret) {
811 mlog_errno(ret);
812 goto out_mutex;
813 }
814
815 credits += OCFS2_SUBALLOC_FREE;
816 }
817
818 handle = ocfs2_start_trans(osb, credits);
819 if (IS_ERR(handle)) {
820 ret = PTR_ERR(handle);
821 mlog_errno(ret);
822 goto out_unlock;
823 }
824
825 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
826 OCFS2_JOURNAL_ACCESS_WRITE);
827 if (ret) {
828 mlog_errno(ret);
829 goto out_commit;
830 }
831
832 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, blk_bh,
833 OCFS2_JOURNAL_ACCESS_WRITE);
834 if (ret) {
835 mlog_errno(ret);
836 goto out_commit;
837 }
838
839 spin_lock(&oi->ip_lock);
840 oi->ip_dyn_features &= ~OCFS2_HAS_REFCOUNT_FL;
841 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
842 di->i_refcount_loc = 0;
843 spin_unlock(&oi->ip_lock);
844 ocfs2_journal_dirty(handle, di_bh);
845
846 le32_add_cpu(&rb->rf_count , -1);
847 ocfs2_journal_dirty(handle, blk_bh);
848
849 if (!rb->rf_count) {
850 delete_tree = 1;
851 ocfs2_erase_refcount_tree_from_list(osb, ref_tree);
852 ret = ocfs2_free_suballoc_bits(handle, alloc_inode,
853 alloc_bh, bit, bg_blkno, 1);
854 if (ret)
855 mlog_errno(ret);
856 }
857
858out_commit:
859 ocfs2_commit_trans(osb, handle);
860out_unlock:
861 if (alloc_inode) {
862 ocfs2_inode_unlock(alloc_inode, 1);
863 brelse(alloc_bh);
864 }
865out_mutex:
866 if (alloc_inode) {
867 mutex_unlock(&alloc_inode->i_mutex);
868 iput(alloc_inode);
869 }
870out:
871 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
872 if (delete_tree)
873 ocfs2_refcount_tree_put(ref_tree);
874 brelse(blk_bh);
875
876 return ret;
877}
878
879static void ocfs2_find_refcount_rec_in_rl(struct ocfs2_caching_info *ci,
880 struct buffer_head *ref_leaf_bh,
881 u64 cpos, unsigned int len,
882 struct ocfs2_refcount_rec *ret_rec,
883 int *index)
884{
885 int i = 0;
886 struct ocfs2_refcount_block *rb =
887 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
888 struct ocfs2_refcount_rec *rec = NULL;
889
890 for (; i < le16_to_cpu(rb->rf_records.rl_used); i++) {
891 rec = &rb->rf_records.rl_recs[i];
892
893 if (le64_to_cpu(rec->r_cpos) +
894 le32_to_cpu(rec->r_clusters) <= cpos)
895 continue;
896 else if (le64_to_cpu(rec->r_cpos) > cpos)
897 break;
898
899 /* ok, cpos fail in this rec. Just return. */
900 if (ret_rec)
901 *ret_rec = *rec;
902 goto out;
903 }
904
905 if (ret_rec) {
906 /* We meet with a hole here, so fake the rec. */
907 ret_rec->r_cpos = cpu_to_le64(cpos);
908 ret_rec->r_refcount = 0;
909 if (i < le16_to_cpu(rb->rf_records.rl_used) &&
910 le64_to_cpu(rec->r_cpos) < cpos + len)
911 ret_rec->r_clusters =
912 cpu_to_le32(le64_to_cpu(rec->r_cpos) - cpos);
913 else
914 ret_rec->r_clusters = cpu_to_le32(len);
915 }
916
917out:
918 *index = i;
919}
920
921/*
922 * Try to remove refcount tree. The mechanism is:
923 * 1) Check whether i_clusters == 0, if no, exit.
924 * 2) check whether we have i_xattr_loc in dinode. if yes, exit.
925 * 3) Check whether we have inline xattr stored outside, if yes, exit.
926 * 4) Remove the tree.
927 */
928int ocfs2_try_remove_refcount_tree(struct inode *inode,
929 struct buffer_head *di_bh)
930{
931 int ret;
932 struct ocfs2_inode_info *oi = OCFS2_I(inode);
933 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
934
935 down_write(&oi->ip_xattr_sem);
936 down_write(&oi->ip_alloc_sem);
937
938 if (oi->ip_clusters)
939 goto out;
940
941 if ((oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) && di->i_xattr_loc)
942 goto out;
943
944 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL &&
945 ocfs2_has_inline_xattr_value_outside(inode, di))
946 goto out;
947
948 ret = ocfs2_remove_refcount_tree(inode, di_bh);
949 if (ret)
950 mlog_errno(ret);
951out:
952 up_write(&oi->ip_alloc_sem);
953 up_write(&oi->ip_xattr_sem);
954 return 0;
955}
956
957/*
958 * Find the end range for a leaf refcount block indicated by
959 * el->l_recs[index].e_blkno.
960 */
961static int ocfs2_get_refcount_cpos_end(struct ocfs2_caching_info *ci,
962 struct buffer_head *ref_root_bh,
963 struct ocfs2_extent_block *eb,
964 struct ocfs2_extent_list *el,
965 int index, u32 *cpos_end)
966{
967 int ret, i, subtree_root;
968 u32 cpos;
969 u64 blkno;
970 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
971 struct ocfs2_path *left_path = NULL, *right_path = NULL;
972 struct ocfs2_extent_tree et;
973 struct ocfs2_extent_list *tmp_el;
974
975 if (index < le16_to_cpu(el->l_next_free_rec) - 1) {
976 /*
977 * We have a extent rec after index, so just use the e_cpos
978 * of the next extent rec.
979 */
980 *cpos_end = le32_to_cpu(el->l_recs[index+1].e_cpos);
981 return 0;
982 }
983
984 if (!eb || (eb && !eb->h_next_leaf_blk)) {
985 /*
986 * We are the last extent rec, so any high cpos should
987 * be stored in this leaf refcount block.
988 */
989 *cpos_end = UINT_MAX;
990 return 0;
991 }
992
993 /*
994 * If the extent block isn't the last one, we have to find
995 * the subtree root between this extent block and the next
996 * leaf extent block and get the corresponding e_cpos from
997 * the subroot. Otherwise we may corrupt the b-tree.
998 */
999 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1000
1001 left_path = ocfs2_new_path_from_et(&et);
1002 if (!left_path) {
1003 ret = -ENOMEM;
1004 mlog_errno(ret);
1005 goto out;
1006 }
1007
1008 cpos = le32_to_cpu(eb->h_list.l_recs[index].e_cpos);
1009 ret = ocfs2_find_path(ci, left_path, cpos);
1010 if (ret) {
1011 mlog_errno(ret);
1012 goto out;
1013 }
1014
1015 right_path = ocfs2_new_path_from_path(left_path);
1016 if (!right_path) {
1017 ret = -ENOMEM;
1018 mlog_errno(ret);
1019 goto out;
1020 }
1021
1022 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path, &cpos);
1023 if (ret) {
1024 mlog_errno(ret);
1025 goto out;
1026 }
1027
1028 ret = ocfs2_find_path(ci, right_path, cpos);
1029 if (ret) {
1030 mlog_errno(ret);
1031 goto out;
1032 }
1033
1034 subtree_root = ocfs2_find_subtree_root(&et, left_path,
1035 right_path);
1036
1037 tmp_el = left_path->p_node[subtree_root].el;
1038 blkno = left_path->p_node[subtree_root+1].bh->b_blocknr;
1039 for (i = 0; i < le32_to_cpu(tmp_el->l_next_free_rec); i++) {
1040 if (le64_to_cpu(tmp_el->l_recs[i].e_blkno) == blkno) {
1041 *cpos_end = le32_to_cpu(tmp_el->l_recs[i+1].e_cpos);
1042 break;
1043 }
1044 }
1045
1046 BUG_ON(i == le32_to_cpu(tmp_el->l_next_free_rec));
1047
1048out:
1049 ocfs2_free_path(left_path);
1050 ocfs2_free_path(right_path);
1051 return ret;
1052}
1053
1054/*
1055 * Given a cpos and len, try to find the refcount record which contains cpos.
1056 * 1. If cpos can be found in one refcount record, return the record.
1057 * 2. If cpos can't be found, return a fake record which start from cpos
1058 * and end at a small value between cpos+len and start of the next record.
1059 * This fake record has r_refcount = 0.
1060 */
1061static int ocfs2_get_refcount_rec(struct ocfs2_caching_info *ci,
1062 struct buffer_head *ref_root_bh,
1063 u64 cpos, unsigned int len,
1064 struct ocfs2_refcount_rec *ret_rec,
1065 int *index,
1066 struct buffer_head **ret_bh)
1067{
1068 int ret = 0, i, found;
1069 u32 low_cpos, uninitialized_var(cpos_end);
1070 struct ocfs2_extent_list *el;
1071 struct ocfs2_extent_rec *rec = NULL;
1072 struct ocfs2_extent_block *eb = NULL;
1073 struct buffer_head *eb_bh = NULL, *ref_leaf_bh = NULL;
1074 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1075 struct ocfs2_refcount_block *rb =
1076 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1077
1078 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)) {
1079 ocfs2_find_refcount_rec_in_rl(ci, ref_root_bh, cpos, len,
1080 ret_rec, index);
1081 *ret_bh = ref_root_bh;
1082 get_bh(ref_root_bh);
1083 return 0;
1084 }
1085
1086 el = &rb->rf_list;
1087 low_cpos = cpos & OCFS2_32BIT_POS_MASK;
1088
1089 if (el->l_tree_depth) {
1090 ret = ocfs2_find_leaf(ci, el, low_cpos, &eb_bh);
1091 if (ret) {
1092 mlog_errno(ret);
1093 goto out;
1094 }
1095
1096 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1097 el = &eb->h_list;
1098
1099 if (el->l_tree_depth) {
1100 ocfs2_error(sb,
1101 "refcount tree %llu has non zero tree "
1102 "depth in leaf btree tree block %llu\n",
1103 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1104 (unsigned long long)eb_bh->b_blocknr);
1105 ret = -EROFS;
1106 goto out;
1107 }
1108 }
1109
1110 found = 0;
1111 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1112 rec = &el->l_recs[i];
1113
1114 if (le32_to_cpu(rec->e_cpos) <= low_cpos) {
1115 found = 1;
1116 break;
1117 }
1118 }
1119
1120 if (found) {
1121 ret = ocfs2_get_refcount_cpos_end(ci, ref_root_bh,
1122 eb, el, i, &cpos_end);
1123 if (ret) {
1124 mlog_errno(ret);
1125 goto out;
1126 }
1127
1128 if (cpos_end < low_cpos + len)
1129 len = cpos_end - low_cpos;
1130 }
1131
1132 ret = ocfs2_read_refcount_block(ci, le64_to_cpu(rec->e_blkno),
1133 &ref_leaf_bh);
1134 if (ret) {
1135 mlog_errno(ret);
1136 goto out;
1137 }
1138
1139 ocfs2_find_refcount_rec_in_rl(ci, ref_leaf_bh, cpos, len,
1140 ret_rec, index);
1141 *ret_bh = ref_leaf_bh;
1142out:
1143 brelse(eb_bh);
1144 return ret;
1145}
1146
1147enum ocfs2_ref_rec_contig {
1148 REF_CONTIG_NONE = 0,
1149 REF_CONTIG_LEFT,
1150 REF_CONTIG_RIGHT,
1151 REF_CONTIG_LEFTRIGHT,
1152};
1153
1154static enum ocfs2_ref_rec_contig
1155 ocfs2_refcount_rec_adjacent(struct ocfs2_refcount_block *rb,
1156 int index)
1157{
1158 if ((rb->rf_records.rl_recs[index].r_refcount ==
1159 rb->rf_records.rl_recs[index + 1].r_refcount) &&
1160 (le64_to_cpu(rb->rf_records.rl_recs[index].r_cpos) +
1161 le32_to_cpu(rb->rf_records.rl_recs[index].r_clusters) ==
1162 le64_to_cpu(rb->rf_records.rl_recs[index + 1].r_cpos)))
1163 return REF_CONTIG_RIGHT;
1164
1165 return REF_CONTIG_NONE;
1166}
1167
1168static enum ocfs2_ref_rec_contig
1169 ocfs2_refcount_rec_contig(struct ocfs2_refcount_block *rb,
1170 int index)
1171{
1172 enum ocfs2_ref_rec_contig ret = REF_CONTIG_NONE;
1173
1174 if (index < le16_to_cpu(rb->rf_records.rl_used) - 1)
1175 ret = ocfs2_refcount_rec_adjacent(rb, index);
1176
1177 if (index > 0) {
1178 enum ocfs2_ref_rec_contig tmp;
1179
1180 tmp = ocfs2_refcount_rec_adjacent(rb, index - 1);
1181
1182 if (tmp == REF_CONTIG_RIGHT) {
1183 if (ret == REF_CONTIG_RIGHT)
1184 ret = REF_CONTIG_LEFTRIGHT;
1185 else
1186 ret = REF_CONTIG_LEFT;
1187 }
1188 }
1189
1190 return ret;
1191}
1192
1193static void ocfs2_rotate_refcount_rec_left(struct ocfs2_refcount_block *rb,
1194 int index)
1195{
1196 BUG_ON(rb->rf_records.rl_recs[index].r_refcount !=
1197 rb->rf_records.rl_recs[index+1].r_refcount);
1198
1199 le32_add_cpu(&rb->rf_records.rl_recs[index].r_clusters,
1200 le32_to_cpu(rb->rf_records.rl_recs[index+1].r_clusters));
1201
1202 if (index < le16_to_cpu(rb->rf_records.rl_used) - 2)
1203 memmove(&rb->rf_records.rl_recs[index + 1],
1204 &rb->rf_records.rl_recs[index + 2],
1205 sizeof(struct ocfs2_refcount_rec) *
1206 (le16_to_cpu(rb->rf_records.rl_used) - index - 2));
1207
1208 memset(&rb->rf_records.rl_recs[le16_to_cpu(rb->rf_records.rl_used) - 1],
1209 0, sizeof(struct ocfs2_refcount_rec));
1210 le16_add_cpu(&rb->rf_records.rl_used, -1);
1211}
1212
1213/*
1214 * Merge the refcount rec if we are contiguous with the adjacent recs.
1215 */
1216static void ocfs2_refcount_rec_merge(struct ocfs2_refcount_block *rb,
1217 int index)
1218{
1219 enum ocfs2_ref_rec_contig contig =
1220 ocfs2_refcount_rec_contig(rb, index);
1221
1222 if (contig == REF_CONTIG_NONE)
1223 return;
1224
1225 if (contig == REF_CONTIG_LEFT || contig == REF_CONTIG_LEFTRIGHT) {
1226 BUG_ON(index == 0);
1227 index--;
1228 }
1229
1230 ocfs2_rotate_refcount_rec_left(rb, index);
1231
1232 if (contig == REF_CONTIG_LEFTRIGHT)
1233 ocfs2_rotate_refcount_rec_left(rb, index);
1234}
1235
1236/*
1237 * Change the refcount indexed by "index" in ref_bh.
1238 * If refcount reaches 0, remove it.
1239 */
1240static int ocfs2_change_refcount_rec(handle_t *handle,
1241 struct ocfs2_caching_info *ci,
1242 struct buffer_head *ref_leaf_bh,
1243 int index, int merge, int change)
1244{
1245 int ret;
1246 struct ocfs2_refcount_block *rb =
1247 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1248 struct ocfs2_refcount_list *rl = &rb->rf_records;
1249 struct ocfs2_refcount_rec *rec = &rl->rl_recs[index];
1250
1251 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1252 OCFS2_JOURNAL_ACCESS_WRITE);
1253 if (ret) {
1254 mlog_errno(ret);
1255 goto out;
1256 }
1257
1258 trace_ocfs2_change_refcount_rec(
1259 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1260 index, le32_to_cpu(rec->r_refcount), change);
1261 le32_add_cpu(&rec->r_refcount, change);
1262
1263 if (!rec->r_refcount) {
1264 if (index != le16_to_cpu(rl->rl_used) - 1) {
1265 memmove(rec, rec + 1,
1266 (le16_to_cpu(rl->rl_used) - index - 1) *
1267 sizeof(struct ocfs2_refcount_rec));
1268 memset(&rl->rl_recs[le16_to_cpu(rl->rl_used) - 1],
1269 0, sizeof(struct ocfs2_refcount_rec));
1270 }
1271
1272 le16_add_cpu(&rl->rl_used, -1);
1273 } else if (merge)
1274 ocfs2_refcount_rec_merge(rb, index);
1275
1276 ocfs2_journal_dirty(handle, ref_leaf_bh);
1277out:
1278 return ret;
1279}
1280
1281static int ocfs2_expand_inline_ref_root(handle_t *handle,
1282 struct ocfs2_caching_info *ci,
1283 struct buffer_head *ref_root_bh,
1284 struct buffer_head **ref_leaf_bh,
1285 struct ocfs2_alloc_context *meta_ac)
1286{
1287 int ret;
1288 u16 suballoc_bit_start;
1289 u32 num_got;
1290 u64 suballoc_loc, blkno;
1291 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1292 struct buffer_head *new_bh = NULL;
1293 struct ocfs2_refcount_block *new_rb;
1294 struct ocfs2_refcount_block *root_rb =
1295 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1296
1297 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1298 OCFS2_JOURNAL_ACCESS_WRITE);
1299 if (ret) {
1300 mlog_errno(ret);
1301 goto out;
1302 }
1303
1304 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
1305 &suballoc_bit_start, &num_got,
1306 &blkno);
1307 if (ret) {
1308 mlog_errno(ret);
1309 goto out;
1310 }
1311
1312 new_bh = sb_getblk(sb, blkno);
1313 if (new_bh == NULL) {
1314 ret = -EIO;
1315 mlog_errno(ret);
1316 goto out;
1317 }
1318 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1319
1320 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1321 OCFS2_JOURNAL_ACCESS_CREATE);
1322 if (ret) {
1323 mlog_errno(ret);
1324 goto out;
1325 }
1326
1327 /*
1328 * Initialize ocfs2_refcount_block.
1329 * It should contain the same information as the old root.
1330 * so just memcpy it and change the corresponding field.
1331 */
1332 memcpy(new_bh->b_data, ref_root_bh->b_data, sb->s_blocksize);
1333
1334 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1335 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
1336 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
1337 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1338 new_rb->rf_blkno = cpu_to_le64(blkno);
1339 new_rb->rf_cpos = cpu_to_le32(0);
1340 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1341 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1342 ocfs2_journal_dirty(handle, new_bh);
1343
1344 /* Now change the root. */
1345 memset(&root_rb->rf_list, 0, sb->s_blocksize -
1346 offsetof(struct ocfs2_refcount_block, rf_list));
1347 root_rb->rf_list.l_count = cpu_to_le16(ocfs2_extent_recs_per_rb(sb));
1348 root_rb->rf_clusters = cpu_to_le32(1);
1349 root_rb->rf_list.l_next_free_rec = cpu_to_le16(1);
1350 root_rb->rf_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
1351 root_rb->rf_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
1352 root_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_TREE_FL);
1353
1354 ocfs2_journal_dirty(handle, ref_root_bh);
1355
1356 trace_ocfs2_expand_inline_ref_root((unsigned long long)blkno,
1357 le16_to_cpu(new_rb->rf_records.rl_used));
1358
1359 *ref_leaf_bh = new_bh;
1360 new_bh = NULL;
1361out:
1362 brelse(new_bh);
1363 return ret;
1364}
1365
1366static int ocfs2_refcount_rec_no_intersect(struct ocfs2_refcount_rec *prev,
1367 struct ocfs2_refcount_rec *next)
1368{
1369 if (ocfs2_get_ref_rec_low_cpos(prev) + le32_to_cpu(prev->r_clusters) <=
1370 ocfs2_get_ref_rec_low_cpos(next))
1371 return 1;
1372
1373 return 0;
1374}
1375
1376static int cmp_refcount_rec_by_low_cpos(const void *a, const void *b)
1377{
1378 const struct ocfs2_refcount_rec *l = a, *r = b;
1379 u32 l_cpos = ocfs2_get_ref_rec_low_cpos(l);
1380 u32 r_cpos = ocfs2_get_ref_rec_low_cpos(r);
1381
1382 if (l_cpos > r_cpos)
1383 return 1;
1384 if (l_cpos < r_cpos)
1385 return -1;
1386 return 0;
1387}
1388
1389static int cmp_refcount_rec_by_cpos(const void *a, const void *b)
1390{
1391 const struct ocfs2_refcount_rec *l = a, *r = b;
1392 u64 l_cpos = le64_to_cpu(l->r_cpos);
1393 u64 r_cpos = le64_to_cpu(r->r_cpos);
1394
1395 if (l_cpos > r_cpos)
1396 return 1;
1397 if (l_cpos < r_cpos)
1398 return -1;
1399 return 0;
1400}
1401
1402static void swap_refcount_rec(void *a, void *b, int size)
1403{
1404 struct ocfs2_refcount_rec *l = a, *r = b, tmp;
1405
1406 tmp = *(struct ocfs2_refcount_rec *)l;
1407 *(struct ocfs2_refcount_rec *)l =
1408 *(struct ocfs2_refcount_rec *)r;
1409 *(struct ocfs2_refcount_rec *)r = tmp;
1410}
1411
1412/*
1413 * The refcount cpos are ordered by their 64bit cpos,
1414 * But we will use the low 32 bit to be the e_cpos in the b-tree.
1415 * So we need to make sure that this pos isn't intersected with others.
1416 *
1417 * Note: The refcount block is already sorted by their low 32 bit cpos,
1418 * So just try the middle pos first, and we will exit when we find
1419 * the good position.
1420 */
1421static int ocfs2_find_refcount_split_pos(struct ocfs2_refcount_list *rl,
1422 u32 *split_pos, int *split_index)
1423{
1424 int num_used = le16_to_cpu(rl->rl_used);
1425 int delta, middle = num_used / 2;
1426
1427 for (delta = 0; delta < middle; delta++) {
1428 /* Let's check delta earlier than middle */
1429 if (ocfs2_refcount_rec_no_intersect(
1430 &rl->rl_recs[middle - delta - 1],
1431 &rl->rl_recs[middle - delta])) {
1432 *split_index = middle - delta;
1433 break;
1434 }
1435
1436 /* For even counts, don't walk off the end */
1437 if ((middle + delta + 1) == num_used)
1438 continue;
1439
1440 /* Now try delta past middle */
1441 if (ocfs2_refcount_rec_no_intersect(
1442 &rl->rl_recs[middle + delta],
1443 &rl->rl_recs[middle + delta + 1])) {
1444 *split_index = middle + delta + 1;
1445 break;
1446 }
1447 }
1448
1449 if (delta >= middle)
1450 return -ENOSPC;
1451
1452 *split_pos = ocfs2_get_ref_rec_low_cpos(&rl->rl_recs[*split_index]);
1453 return 0;
1454}
1455
1456static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh,
1457 struct buffer_head *new_bh,
1458 u32 *split_cpos)
1459{
1460 int split_index = 0, num_moved, ret;
1461 u32 cpos = 0;
1462 struct ocfs2_refcount_block *rb =
1463 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1464 struct ocfs2_refcount_list *rl = &rb->rf_records;
1465 struct ocfs2_refcount_block *new_rb =
1466 (struct ocfs2_refcount_block *)new_bh->b_data;
1467 struct ocfs2_refcount_list *new_rl = &new_rb->rf_records;
1468
1469 trace_ocfs2_divide_leaf_refcount_block(
1470 (unsigned long long)ref_leaf_bh->b_blocknr,
1471 le32_to_cpu(rl->rl_count), le32_to_cpu(rl->rl_used));
1472
1473 /*
1474 * XXX: Improvement later.
1475 * If we know all the high 32 bit cpos is the same, no need to sort.
1476 *
1477 * In order to make the whole process safe, we do:
1478 * 1. sort the entries by their low 32 bit cpos first so that we can
1479 * find the split cpos easily.
1480 * 2. call ocfs2_insert_extent to insert the new refcount block.
1481 * 3. move the refcount rec to the new block.
1482 * 4. sort the entries by their 64 bit cpos.
1483 * 5. dirty the new_rb and rb.
1484 */
1485 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1486 sizeof(struct ocfs2_refcount_rec),
1487 cmp_refcount_rec_by_low_cpos, swap_refcount_rec);
1488
1489 ret = ocfs2_find_refcount_split_pos(rl, &cpos, &split_index);
1490 if (ret) {
1491 mlog_errno(ret);
1492 return ret;
1493 }
1494
1495 new_rb->rf_cpos = cpu_to_le32(cpos);
1496
1497 /* move refcount records starting from split_index to the new block. */
1498 num_moved = le16_to_cpu(rl->rl_used) - split_index;
1499 memcpy(new_rl->rl_recs, &rl->rl_recs[split_index],
1500 num_moved * sizeof(struct ocfs2_refcount_rec));
1501
1502 /*ok, remove the entries we just moved over to the other block. */
1503 memset(&rl->rl_recs[split_index], 0,
1504 num_moved * sizeof(struct ocfs2_refcount_rec));
1505
1506 /* change old and new rl_used accordingly. */
1507 le16_add_cpu(&rl->rl_used, -num_moved);
1508 new_rl->rl_used = cpu_to_le16(num_moved);
1509
1510 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1511 sizeof(struct ocfs2_refcount_rec),
1512 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1513
1514 sort(&new_rl->rl_recs, le16_to_cpu(new_rl->rl_used),
1515 sizeof(struct ocfs2_refcount_rec),
1516 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1517
1518 *split_cpos = cpos;
1519 return 0;
1520}
1521
1522static int ocfs2_new_leaf_refcount_block(handle_t *handle,
1523 struct ocfs2_caching_info *ci,
1524 struct buffer_head *ref_root_bh,
1525 struct buffer_head *ref_leaf_bh,
1526 struct ocfs2_alloc_context *meta_ac)
1527{
1528 int ret;
1529 u16 suballoc_bit_start;
1530 u32 num_got, new_cpos;
1531 u64 suballoc_loc, blkno;
1532 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1533 struct ocfs2_refcount_block *root_rb =
1534 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1535 struct buffer_head *new_bh = NULL;
1536 struct ocfs2_refcount_block *new_rb;
1537 struct ocfs2_extent_tree ref_et;
1538
1539 BUG_ON(!(le32_to_cpu(root_rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL));
1540
1541 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1542 OCFS2_JOURNAL_ACCESS_WRITE);
1543 if (ret) {
1544 mlog_errno(ret);
1545 goto out;
1546 }
1547
1548 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1549 OCFS2_JOURNAL_ACCESS_WRITE);
1550 if (ret) {
1551 mlog_errno(ret);
1552 goto out;
1553 }
1554
1555 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
1556 &suballoc_bit_start, &num_got,
1557 &blkno);
1558 if (ret) {
1559 mlog_errno(ret);
1560 goto out;
1561 }
1562
1563 new_bh = sb_getblk(sb, blkno);
1564 if (new_bh == NULL) {
1565 ret = -EIO;
1566 mlog_errno(ret);
1567 goto out;
1568 }
1569 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1570
1571 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1572 OCFS2_JOURNAL_ACCESS_CREATE);
1573 if (ret) {
1574 mlog_errno(ret);
1575 goto out;
1576 }
1577
1578 /* Initialize ocfs2_refcount_block. */
1579 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1580 memset(new_rb, 0, sb->s_blocksize);
1581 strcpy((void *)new_rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
1582 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
1583 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
1584 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1585 new_rb->rf_fs_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
1586 new_rb->rf_blkno = cpu_to_le64(blkno);
1587 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1588 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1589 new_rb->rf_records.rl_count =
1590 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
1591 new_rb->rf_generation = root_rb->rf_generation;
1592
1593 ret = ocfs2_divide_leaf_refcount_block(ref_leaf_bh, new_bh, &new_cpos);
1594 if (ret) {
1595 mlog_errno(ret);
1596 goto out;
1597 }
1598
1599 ocfs2_journal_dirty(handle, ref_leaf_bh);
1600 ocfs2_journal_dirty(handle, new_bh);
1601
1602 ocfs2_init_refcount_extent_tree(&ref_et, ci, ref_root_bh);
1603
1604 trace_ocfs2_new_leaf_refcount_block(
1605 (unsigned long long)new_bh->b_blocknr, new_cpos);
1606
1607 /* Insert the new leaf block with the specific offset cpos. */
1608 ret = ocfs2_insert_extent(handle, &ref_et, new_cpos, new_bh->b_blocknr,
1609 1, 0, meta_ac);
1610 if (ret)
1611 mlog_errno(ret);
1612
1613out:
1614 brelse(new_bh);
1615 return ret;
1616}
1617
1618static int ocfs2_expand_refcount_tree(handle_t *handle,
1619 struct ocfs2_caching_info *ci,
1620 struct buffer_head *ref_root_bh,
1621 struct buffer_head *ref_leaf_bh,
1622 struct ocfs2_alloc_context *meta_ac)
1623{
1624 int ret;
1625 struct buffer_head *expand_bh = NULL;
1626
1627 if (ref_root_bh == ref_leaf_bh) {
1628 /*
1629 * the old root bh hasn't been expanded to a b-tree,
1630 * so expand it first.
1631 */
1632 ret = ocfs2_expand_inline_ref_root(handle, ci, ref_root_bh,
1633 &expand_bh, meta_ac);
1634 if (ret) {
1635 mlog_errno(ret);
1636 goto out;
1637 }
1638 } else {
1639 expand_bh = ref_leaf_bh;
1640 get_bh(expand_bh);
1641 }
1642
1643
1644 /* Now add a new refcount block into the tree.*/
1645 ret = ocfs2_new_leaf_refcount_block(handle, ci, ref_root_bh,
1646 expand_bh, meta_ac);
1647 if (ret)
1648 mlog_errno(ret);
1649out:
1650 brelse(expand_bh);
1651 return ret;
1652}
1653
1654/*
1655 * Adjust the extent rec in b-tree representing ref_leaf_bh.
1656 *
1657 * Only called when we have inserted a new refcount rec at index 0
1658 * which means ocfs2_extent_rec.e_cpos may need some change.
1659 */
1660static int ocfs2_adjust_refcount_rec(handle_t *handle,
1661 struct ocfs2_caching_info *ci,
1662 struct buffer_head *ref_root_bh,
1663 struct buffer_head *ref_leaf_bh,
1664 struct ocfs2_refcount_rec *rec)
1665{
1666 int ret = 0, i;
1667 u32 new_cpos, old_cpos;
1668 struct ocfs2_path *path = NULL;
1669 struct ocfs2_extent_tree et;
1670 struct ocfs2_refcount_block *rb =
1671 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1672 struct ocfs2_extent_list *el;
1673
1674 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL))
1675 goto out;
1676
1677 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1678 old_cpos = le32_to_cpu(rb->rf_cpos);
1679 new_cpos = le64_to_cpu(rec->r_cpos) & OCFS2_32BIT_POS_MASK;
1680 if (old_cpos <= new_cpos)
1681 goto out;
1682
1683 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1684
1685 path = ocfs2_new_path_from_et(&et);
1686 if (!path) {
1687 ret = -ENOMEM;
1688 mlog_errno(ret);
1689 goto out;
1690 }
1691
1692 ret = ocfs2_find_path(ci, path, old_cpos);
1693 if (ret) {
1694 mlog_errno(ret);
1695 goto out;
1696 }
1697
1698 /*
1699 * 2 more credits, one for the leaf refcount block, one for
1700 * the extent block contains the extent rec.
1701 */
1702 ret = ocfs2_extend_trans(handle, 2);
1703 if (ret < 0) {
1704 mlog_errno(ret);
1705 goto out;
1706 }
1707
1708 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1709 OCFS2_JOURNAL_ACCESS_WRITE);
1710 if (ret < 0) {
1711 mlog_errno(ret);
1712 goto out;
1713 }
1714
1715 ret = ocfs2_journal_access_eb(handle, ci, path_leaf_bh(path),
1716 OCFS2_JOURNAL_ACCESS_WRITE);
1717 if (ret < 0) {
1718 mlog_errno(ret);
1719 goto out;
1720 }
1721
1722 /* change the leaf extent block first. */
1723 el = path_leaf_el(path);
1724
1725 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++)
1726 if (le32_to_cpu(el->l_recs[i].e_cpos) == old_cpos)
1727 break;
1728
1729 BUG_ON(i == le16_to_cpu(el->l_next_free_rec));
1730
1731 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
1732
1733 /* change the r_cpos in the leaf block. */
1734 rb->rf_cpos = cpu_to_le32(new_cpos);
1735
1736 ocfs2_journal_dirty(handle, path_leaf_bh(path));
1737 ocfs2_journal_dirty(handle, ref_leaf_bh);
1738
1739out:
1740 ocfs2_free_path(path);
1741 return ret;
1742}
1743
1744static int ocfs2_insert_refcount_rec(handle_t *handle,
1745 struct ocfs2_caching_info *ci,
1746 struct buffer_head *ref_root_bh,
1747 struct buffer_head *ref_leaf_bh,
1748 struct ocfs2_refcount_rec *rec,
1749 int index, int merge,
1750 struct ocfs2_alloc_context *meta_ac)
1751{
1752 int ret;
1753 struct ocfs2_refcount_block *rb =
1754 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1755 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1756 struct buffer_head *new_bh = NULL;
1757
1758 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1759
1760 if (rf_list->rl_used == rf_list->rl_count) {
1761 u64 cpos = le64_to_cpu(rec->r_cpos);
1762 u32 len = le32_to_cpu(rec->r_clusters);
1763
1764 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1765 ref_leaf_bh, meta_ac);
1766 if (ret) {
1767 mlog_errno(ret);
1768 goto out;
1769 }
1770
1771 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1772 cpos, len, NULL, &index,
1773 &new_bh);
1774 if (ret) {
1775 mlog_errno(ret);
1776 goto out;
1777 }
1778
1779 ref_leaf_bh = new_bh;
1780 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1781 rf_list = &rb->rf_records;
1782 }
1783
1784 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1785 OCFS2_JOURNAL_ACCESS_WRITE);
1786 if (ret) {
1787 mlog_errno(ret);
1788 goto out;
1789 }
1790
1791 if (index < le16_to_cpu(rf_list->rl_used))
1792 memmove(&rf_list->rl_recs[index + 1],
1793 &rf_list->rl_recs[index],
1794 (le16_to_cpu(rf_list->rl_used) - index) *
1795 sizeof(struct ocfs2_refcount_rec));
1796
1797 trace_ocfs2_insert_refcount_rec(
1798 (unsigned long long)ref_leaf_bh->b_blocknr, index,
1799 (unsigned long long)le64_to_cpu(rec->r_cpos),
1800 le32_to_cpu(rec->r_clusters), le32_to_cpu(rec->r_refcount));
1801
1802 rf_list->rl_recs[index] = *rec;
1803
1804 le16_add_cpu(&rf_list->rl_used, 1);
1805
1806 if (merge)
1807 ocfs2_refcount_rec_merge(rb, index);
1808
1809 ocfs2_journal_dirty(handle, ref_leaf_bh);
1810
1811 if (index == 0) {
1812 ret = ocfs2_adjust_refcount_rec(handle, ci,
1813 ref_root_bh,
1814 ref_leaf_bh, rec);
1815 if (ret)
1816 mlog_errno(ret);
1817 }
1818out:
1819 brelse(new_bh);
1820 return ret;
1821}
1822
1823/*
1824 * Split the refcount_rec indexed by "index" in ref_leaf_bh.
1825 * This is much simple than our b-tree code.
1826 * split_rec is the new refcount rec we want to insert.
1827 * If split_rec->r_refcount > 0, we are changing the refcount(in case we
1828 * increase refcount or decrease a refcount to non-zero).
1829 * If split_rec->r_refcount == 0, we are punching a hole in current refcount
1830 * rec( in case we decrease a refcount to zero).
1831 */
1832static int ocfs2_split_refcount_rec(handle_t *handle,
1833 struct ocfs2_caching_info *ci,
1834 struct buffer_head *ref_root_bh,
1835 struct buffer_head *ref_leaf_bh,
1836 struct ocfs2_refcount_rec *split_rec,
1837 int index, int merge,
1838 struct ocfs2_alloc_context *meta_ac,
1839 struct ocfs2_cached_dealloc_ctxt *dealloc)
1840{
1841 int ret, recs_need;
1842 u32 len;
1843 struct ocfs2_refcount_block *rb =
1844 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1845 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1846 struct ocfs2_refcount_rec *orig_rec = &rf_list->rl_recs[index];
1847 struct ocfs2_refcount_rec *tail_rec = NULL;
1848 struct buffer_head *new_bh = NULL;
1849
1850 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1851
1852 trace_ocfs2_split_refcount_rec(le64_to_cpu(orig_rec->r_cpos),
1853 le32_to_cpu(orig_rec->r_clusters),
1854 le32_to_cpu(orig_rec->r_refcount),
1855 le64_to_cpu(split_rec->r_cpos),
1856 le32_to_cpu(split_rec->r_clusters),
1857 le32_to_cpu(split_rec->r_refcount));
1858
1859 /*
1860 * If we just need to split the header or tail clusters,
1861 * no more recs are needed, just split is OK.
1862 * Otherwise we at least need one new recs.
1863 */
1864 if (!split_rec->r_refcount &&
1865 (split_rec->r_cpos == orig_rec->r_cpos ||
1866 le64_to_cpu(split_rec->r_cpos) +
1867 le32_to_cpu(split_rec->r_clusters) ==
1868 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1869 recs_need = 0;
1870 else
1871 recs_need = 1;
1872
1873 /*
1874 * We need one more rec if we split in the middle and the new rec have
1875 * some refcount in it.
1876 */
1877 if (split_rec->r_refcount &&
1878 (split_rec->r_cpos != orig_rec->r_cpos &&
1879 le64_to_cpu(split_rec->r_cpos) +
1880 le32_to_cpu(split_rec->r_clusters) !=
1881 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1882 recs_need++;
1883
1884 /* If the leaf block don't have enough record, expand it. */
1885 if (le16_to_cpu(rf_list->rl_used) + recs_need >
1886 le16_to_cpu(rf_list->rl_count)) {
1887 struct ocfs2_refcount_rec tmp_rec;
1888 u64 cpos = le64_to_cpu(orig_rec->r_cpos);
1889 len = le32_to_cpu(orig_rec->r_clusters);
1890 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1891 ref_leaf_bh, meta_ac);
1892 if (ret) {
1893 mlog_errno(ret);
1894 goto out;
1895 }
1896
1897 /*
1898 * We have to re-get it since now cpos may be moved to
1899 * another leaf block.
1900 */
1901 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1902 cpos, len, &tmp_rec, &index,
1903 &new_bh);
1904 if (ret) {
1905 mlog_errno(ret);
1906 goto out;
1907 }
1908
1909 ref_leaf_bh = new_bh;
1910 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1911 rf_list = &rb->rf_records;
1912 orig_rec = &rf_list->rl_recs[index];
1913 }
1914
1915 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1916 OCFS2_JOURNAL_ACCESS_WRITE);
1917 if (ret) {
1918 mlog_errno(ret);
1919 goto out;
1920 }
1921
1922 /*
1923 * We have calculated out how many new records we need and store
1924 * in recs_need, so spare enough space first by moving the records
1925 * after "index" to the end.
1926 */
1927 if (index != le16_to_cpu(rf_list->rl_used) - 1)
1928 memmove(&rf_list->rl_recs[index + 1 + recs_need],
1929 &rf_list->rl_recs[index + 1],
1930 (le16_to_cpu(rf_list->rl_used) - index - 1) *
1931 sizeof(struct ocfs2_refcount_rec));
1932
1933 len = (le64_to_cpu(orig_rec->r_cpos) +
1934 le32_to_cpu(orig_rec->r_clusters)) -
1935 (le64_to_cpu(split_rec->r_cpos) +
1936 le32_to_cpu(split_rec->r_clusters));
1937
1938 /*
1939 * If we have "len", the we will split in the tail and move it
1940 * to the end of the space we have just spared.
1941 */
1942 if (len) {
1943 tail_rec = &rf_list->rl_recs[index + recs_need];
1944
1945 memcpy(tail_rec, orig_rec, sizeof(struct ocfs2_refcount_rec));
1946 le64_add_cpu(&tail_rec->r_cpos,
1947 le32_to_cpu(tail_rec->r_clusters) - len);
1948 tail_rec->r_clusters = cpu_to_le32(len);
1949 }
1950
1951 /*
1952 * If the split pos isn't the same as the original one, we need to
1953 * split in the head.
1954 *
1955 * Note: We have the chance that split_rec.r_refcount = 0,
1956 * recs_need = 0 and len > 0, which means we just cut the head from
1957 * the orig_rec and in that case we have done some modification in
1958 * orig_rec above, so the check for r_cpos is faked.
1959 */
1960 if (split_rec->r_cpos != orig_rec->r_cpos && tail_rec != orig_rec) {
1961 len = le64_to_cpu(split_rec->r_cpos) -
1962 le64_to_cpu(orig_rec->r_cpos);
1963 orig_rec->r_clusters = cpu_to_le32(len);
1964 index++;
1965 }
1966
1967 le16_add_cpu(&rf_list->rl_used, recs_need);
1968
1969 if (split_rec->r_refcount) {
1970 rf_list->rl_recs[index] = *split_rec;
1971 trace_ocfs2_split_refcount_rec_insert(
1972 (unsigned long long)ref_leaf_bh->b_blocknr, index,
1973 (unsigned long long)le64_to_cpu(split_rec->r_cpos),
1974 le32_to_cpu(split_rec->r_clusters),
1975 le32_to_cpu(split_rec->r_refcount));
1976
1977 if (merge)
1978 ocfs2_refcount_rec_merge(rb, index);
1979 }
1980
1981 ocfs2_journal_dirty(handle, ref_leaf_bh);
1982
1983out:
1984 brelse(new_bh);
1985 return ret;
1986}
1987
1988static int __ocfs2_increase_refcount(handle_t *handle,
1989 struct ocfs2_caching_info *ci,
1990 struct buffer_head *ref_root_bh,
1991 u64 cpos, u32 len, int merge,
1992 struct ocfs2_alloc_context *meta_ac,
1993 struct ocfs2_cached_dealloc_ctxt *dealloc)
1994{
1995 int ret = 0, index;
1996 struct buffer_head *ref_leaf_bh = NULL;
1997 struct ocfs2_refcount_rec rec;
1998 unsigned int set_len = 0;
1999
2000 trace_ocfs2_increase_refcount_begin(
2001 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2002 (unsigned long long)cpos, len);
2003
2004 while (len) {
2005 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2006 cpos, len, &rec, &index,
2007 &ref_leaf_bh);
2008 if (ret) {
2009 mlog_errno(ret);
2010 goto out;
2011 }
2012
2013 set_len = le32_to_cpu(rec.r_clusters);
2014
2015 /*
2016 * Here we may meet with 3 situations:
2017 *
2018 * 1. If we find an already existing record, and the length
2019 * is the same, cool, we just need to increase the r_refcount
2020 * and it is OK.
2021 * 2. If we find a hole, just insert it with r_refcount = 1.
2022 * 3. If we are in the middle of one extent record, split
2023 * it.
2024 */
2025 if (rec.r_refcount && le64_to_cpu(rec.r_cpos) == cpos &&
2026 set_len <= len) {
2027 trace_ocfs2_increase_refcount_change(
2028 (unsigned long long)cpos, set_len,
2029 le32_to_cpu(rec.r_refcount));
2030 ret = ocfs2_change_refcount_rec(handle, ci,
2031 ref_leaf_bh, index,
2032 merge, 1);
2033 if (ret) {
2034 mlog_errno(ret);
2035 goto out;
2036 }
2037 } else if (!rec.r_refcount) {
2038 rec.r_refcount = cpu_to_le32(1);
2039
2040 trace_ocfs2_increase_refcount_insert(
2041 (unsigned long long)le64_to_cpu(rec.r_cpos),
2042 set_len);
2043 ret = ocfs2_insert_refcount_rec(handle, ci, ref_root_bh,
2044 ref_leaf_bh,
2045 &rec, index,
2046 merge, meta_ac);
2047 if (ret) {
2048 mlog_errno(ret);
2049 goto out;
2050 }
2051 } else {
2052 set_len = min((u64)(cpos + len),
2053 le64_to_cpu(rec.r_cpos) + set_len) - cpos;
2054 rec.r_cpos = cpu_to_le64(cpos);
2055 rec.r_clusters = cpu_to_le32(set_len);
2056 le32_add_cpu(&rec.r_refcount, 1);
2057
2058 trace_ocfs2_increase_refcount_split(
2059 (unsigned long long)le64_to_cpu(rec.r_cpos),
2060 set_len, le32_to_cpu(rec.r_refcount));
2061 ret = ocfs2_split_refcount_rec(handle, ci,
2062 ref_root_bh, ref_leaf_bh,
2063 &rec, index, merge,
2064 meta_ac, dealloc);
2065 if (ret) {
2066 mlog_errno(ret);
2067 goto out;
2068 }
2069 }
2070
2071 cpos += set_len;
2072 len -= set_len;
2073 brelse(ref_leaf_bh);
2074 ref_leaf_bh = NULL;
2075 }
2076
2077out:
2078 brelse(ref_leaf_bh);
2079 return ret;
2080}
2081
2082static int ocfs2_remove_refcount_extent(handle_t *handle,
2083 struct ocfs2_caching_info *ci,
2084 struct buffer_head *ref_root_bh,
2085 struct buffer_head *ref_leaf_bh,
2086 struct ocfs2_alloc_context *meta_ac,
2087 struct ocfs2_cached_dealloc_ctxt *dealloc)
2088{
2089 int ret;
2090 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2091 struct ocfs2_refcount_block *rb =
2092 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2093 struct ocfs2_extent_tree et;
2094
2095 BUG_ON(rb->rf_records.rl_used);
2096
2097 trace_ocfs2_remove_refcount_extent(
2098 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2099 (unsigned long long)ref_leaf_bh->b_blocknr,
2100 le32_to_cpu(rb->rf_cpos));
2101
2102 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2103 ret = ocfs2_remove_extent(handle, &et, le32_to_cpu(rb->rf_cpos),
2104 1, meta_ac, dealloc);
2105 if (ret) {
2106 mlog_errno(ret);
2107 goto out;
2108 }
2109
2110 ocfs2_remove_from_cache(ci, ref_leaf_bh);
2111
2112 /*
2113 * add the freed block to the dealloc so that it will be freed
2114 * when we run dealloc.
2115 */
2116 ret = ocfs2_cache_block_dealloc(dealloc, EXTENT_ALLOC_SYSTEM_INODE,
2117 le16_to_cpu(rb->rf_suballoc_slot),
2118 le64_to_cpu(rb->rf_suballoc_loc),
2119 le64_to_cpu(rb->rf_blkno),
2120 le16_to_cpu(rb->rf_suballoc_bit));
2121 if (ret) {
2122 mlog_errno(ret);
2123 goto out;
2124 }
2125
2126 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
2127 OCFS2_JOURNAL_ACCESS_WRITE);
2128 if (ret) {
2129 mlog_errno(ret);
2130 goto out;
2131 }
2132
2133 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2134
2135 le32_add_cpu(&rb->rf_clusters, -1);
2136
2137 /*
2138 * check whether we need to restore the root refcount block if
2139 * there is no leaf extent block at atll.
2140 */
2141 if (!rb->rf_list.l_next_free_rec) {
2142 BUG_ON(rb->rf_clusters);
2143
2144 trace_ocfs2_restore_refcount_block(
2145 (unsigned long long)ref_root_bh->b_blocknr);
2146
2147 rb->rf_flags = 0;
2148 rb->rf_parent = 0;
2149 rb->rf_cpos = 0;
2150 memset(&rb->rf_records, 0, sb->s_blocksize -
2151 offsetof(struct ocfs2_refcount_block, rf_records));
2152 rb->rf_records.rl_count =
2153 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
2154 }
2155
2156 ocfs2_journal_dirty(handle, ref_root_bh);
2157
2158out:
2159 return ret;
2160}
2161
2162int ocfs2_increase_refcount(handle_t *handle,
2163 struct ocfs2_caching_info *ci,
2164 struct buffer_head *ref_root_bh,
2165 u64 cpos, u32 len,
2166 struct ocfs2_alloc_context *meta_ac,
2167 struct ocfs2_cached_dealloc_ctxt *dealloc)
2168{
2169 return __ocfs2_increase_refcount(handle, ci, ref_root_bh,
2170 cpos, len, 1,
2171 meta_ac, dealloc);
2172}
2173
2174static int ocfs2_decrease_refcount_rec(handle_t *handle,
2175 struct ocfs2_caching_info *ci,
2176 struct buffer_head *ref_root_bh,
2177 struct buffer_head *ref_leaf_bh,
2178 int index, u64 cpos, unsigned int len,
2179 struct ocfs2_alloc_context *meta_ac,
2180 struct ocfs2_cached_dealloc_ctxt *dealloc)
2181{
2182 int ret;
2183 struct ocfs2_refcount_block *rb =
2184 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2185 struct ocfs2_refcount_rec *rec = &rb->rf_records.rl_recs[index];
2186
2187 BUG_ON(cpos < le64_to_cpu(rec->r_cpos));
2188 BUG_ON(cpos + len >
2189 le64_to_cpu(rec->r_cpos) + le32_to_cpu(rec->r_clusters));
2190
2191 trace_ocfs2_decrease_refcount_rec(
2192 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2193 (unsigned long long)cpos, len);
2194
2195 if (cpos == le64_to_cpu(rec->r_cpos) &&
2196 len == le32_to_cpu(rec->r_clusters))
2197 ret = ocfs2_change_refcount_rec(handle, ci,
2198 ref_leaf_bh, index, 1, -1);
2199 else {
2200 struct ocfs2_refcount_rec split = *rec;
2201 split.r_cpos = cpu_to_le64(cpos);
2202 split.r_clusters = cpu_to_le32(len);
2203
2204 le32_add_cpu(&split.r_refcount, -1);
2205
2206 ret = ocfs2_split_refcount_rec(handle, ci,
2207 ref_root_bh, ref_leaf_bh,
2208 &split, index, 1,
2209 meta_ac, dealloc);
2210 }
2211
2212 if (ret) {
2213 mlog_errno(ret);
2214 goto out;
2215 }
2216
2217 /* Remove the leaf refcount block if it contains no refcount record. */
2218 if (!rb->rf_records.rl_used && ref_leaf_bh != ref_root_bh) {
2219 ret = ocfs2_remove_refcount_extent(handle, ci, ref_root_bh,
2220 ref_leaf_bh, meta_ac,
2221 dealloc);
2222 if (ret)
2223 mlog_errno(ret);
2224 }
2225
2226out:
2227 return ret;
2228}
2229
2230static int __ocfs2_decrease_refcount(handle_t *handle,
2231 struct ocfs2_caching_info *ci,
2232 struct buffer_head *ref_root_bh,
2233 u64 cpos, u32 len,
2234 struct ocfs2_alloc_context *meta_ac,
2235 struct ocfs2_cached_dealloc_ctxt *dealloc,
2236 int delete)
2237{
2238 int ret = 0, index = 0;
2239 struct ocfs2_refcount_rec rec;
2240 unsigned int r_count = 0, r_len;
2241 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2242 struct buffer_head *ref_leaf_bh = NULL;
2243
2244 trace_ocfs2_decrease_refcount(
2245 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2246 (unsigned long long)cpos, len, delete);
2247
2248 while (len) {
2249 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2250 cpos, len, &rec, &index,
2251 &ref_leaf_bh);
2252 if (ret) {
2253 mlog_errno(ret);
2254 goto out;
2255 }
2256
2257 r_count = le32_to_cpu(rec.r_refcount);
2258 BUG_ON(r_count == 0);
2259 if (!delete)
2260 BUG_ON(r_count > 1);
2261
2262 r_len = min((u64)(cpos + len), le64_to_cpu(rec.r_cpos) +
2263 le32_to_cpu(rec.r_clusters)) - cpos;
2264
2265 ret = ocfs2_decrease_refcount_rec(handle, ci, ref_root_bh,
2266 ref_leaf_bh, index,
2267 cpos, r_len,
2268 meta_ac, dealloc);
2269 if (ret) {
2270 mlog_errno(ret);
2271 goto out;
2272 }
2273
2274 if (le32_to_cpu(rec.r_refcount) == 1 && delete) {
2275 ret = ocfs2_cache_cluster_dealloc(dealloc,
2276 ocfs2_clusters_to_blocks(sb, cpos),
2277 r_len);
2278 if (ret) {
2279 mlog_errno(ret);
2280 goto out;
2281 }
2282 }
2283
2284 cpos += r_len;
2285 len -= r_len;
2286 brelse(ref_leaf_bh);
2287 ref_leaf_bh = NULL;
2288 }
2289
2290out:
2291 brelse(ref_leaf_bh);
2292 return ret;
2293}
2294
2295/* Caller must hold refcount tree lock. */
2296int ocfs2_decrease_refcount(struct inode *inode,
2297 handle_t *handle, u32 cpos, u32 len,
2298 struct ocfs2_alloc_context *meta_ac,
2299 struct ocfs2_cached_dealloc_ctxt *dealloc,
2300 int delete)
2301{
2302 int ret;
2303 u64 ref_blkno;
2304 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2305 struct buffer_head *ref_root_bh = NULL;
2306 struct ocfs2_refcount_tree *tree;
2307
2308 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2309
2310 ret = ocfs2_get_refcount_block(inode, &ref_blkno);
2311 if (ret) {
2312 mlog_errno(ret);
2313 goto out;
2314 }
2315
2316 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb), ref_blkno, &tree);
2317 if (ret) {
2318 mlog_errno(ret);
2319 goto out;
2320 }
2321
2322 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
2323 &ref_root_bh);
2324 if (ret) {
2325 mlog_errno(ret);
2326 goto out;
2327 }
2328
2329 ret = __ocfs2_decrease_refcount(handle, &tree->rf_ci, ref_root_bh,
2330 cpos, len, meta_ac, dealloc, delete);
2331 if (ret)
2332 mlog_errno(ret);
2333out:
2334 brelse(ref_root_bh);
2335 return ret;
2336}
2337
2338/*
2339 * Mark the already-existing extent at cpos as refcounted for len clusters.
2340 * This adds the refcount extent flag.
2341 *
2342 * If the existing extent is larger than the request, initiate a
2343 * split. An attempt will be made at merging with adjacent extents.
2344 *
2345 * The caller is responsible for passing down meta_ac if we'll need it.
2346 */
2347static int ocfs2_mark_extent_refcounted(struct inode *inode,
2348 struct ocfs2_extent_tree *et,
2349 handle_t *handle, u32 cpos,
2350 u32 len, u32 phys,
2351 struct ocfs2_alloc_context *meta_ac,
2352 struct ocfs2_cached_dealloc_ctxt *dealloc)
2353{
2354 int ret;
2355
2356 trace_ocfs2_mark_extent_refcounted(OCFS2_I(inode)->ip_blkno,
2357 cpos, len, phys);
2358
2359 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2360 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2361 "tree, but the feature bit is not set in the "
2362 "super block.", inode->i_ino);
2363 ret = -EROFS;
2364 goto out;
2365 }
2366
2367 ret = ocfs2_change_extent_flag(handle, et, cpos,
2368 len, phys, meta_ac, dealloc,
2369 OCFS2_EXT_REFCOUNTED, 0);
2370 if (ret)
2371 mlog_errno(ret);
2372
2373out:
2374 return ret;
2375}
2376
2377/*
2378 * Given some contiguous physical clusters, calculate what we need
2379 * for modifying their refcount.
2380 */
2381static int ocfs2_calc_refcount_meta_credits(struct super_block *sb,
2382 struct ocfs2_caching_info *ci,
2383 struct buffer_head *ref_root_bh,
2384 u64 start_cpos,
2385 u32 clusters,
2386 int *meta_add,
2387 int *credits)
2388{
2389 int ret = 0, index, ref_blocks = 0, recs_add = 0;
2390 u64 cpos = start_cpos;
2391 struct ocfs2_refcount_block *rb;
2392 struct ocfs2_refcount_rec rec;
2393 struct buffer_head *ref_leaf_bh = NULL, *prev_bh = NULL;
2394 u32 len;
2395
2396 while (clusters) {
2397 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2398 cpos, clusters, &rec,
2399 &index, &ref_leaf_bh);
2400 if (ret) {
2401 mlog_errno(ret);
2402 goto out;
2403 }
2404
2405 if (ref_leaf_bh != prev_bh) {
2406 /*
2407 * Now we encounter a new leaf block, so calculate
2408 * whether we need to extend the old leaf.
2409 */
2410 if (prev_bh) {
2411 rb = (struct ocfs2_refcount_block *)
2412 prev_bh->b_data;
2413
2414 if (le64_to_cpu(rb->rf_records.rl_used) +
2415 recs_add >
2416 le16_to_cpu(rb->rf_records.rl_count))
2417 ref_blocks++;
2418 }
2419
2420 recs_add = 0;
2421 *credits += 1;
2422 brelse(prev_bh);
2423 prev_bh = ref_leaf_bh;
2424 get_bh(prev_bh);
2425 }
2426
2427 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2428
2429 trace_ocfs2_calc_refcount_meta_credits_iterate(
2430 recs_add, (unsigned long long)cpos, clusters,
2431 (unsigned long long)le64_to_cpu(rec.r_cpos),
2432 le32_to_cpu(rec.r_clusters),
2433 le32_to_cpu(rec.r_refcount), index);
2434
2435 len = min((u64)cpos + clusters, le64_to_cpu(rec.r_cpos) +
2436 le32_to_cpu(rec.r_clusters)) - cpos;
2437 /*
2438 * We record all the records which will be inserted to the
2439 * same refcount block, so that we can tell exactly whether
2440 * we need a new refcount block or not.
2441 *
2442 * If we will insert a new one, this is easy and only happens
2443 * during adding refcounted flag to the extent, so we don't
2444 * have a chance of spliting. We just need one record.
2445 *
2446 * If the refcount rec already exists, that would be a little
2447 * complicated. we may have to:
2448 * 1) split at the beginning if the start pos isn't aligned.
2449 * we need 1 more record in this case.
2450 * 2) split int the end if the end pos isn't aligned.
2451 * we need 1 more record in this case.
2452 * 3) split in the middle because of file system fragmentation.
2453 * we need 2 more records in this case(we can't detect this
2454 * beforehand, so always think of the worst case).
2455 */
2456 if (rec.r_refcount) {
2457 recs_add += 2;
2458 /* Check whether we need a split at the beginning. */
2459 if (cpos == start_cpos &&
2460 cpos != le64_to_cpu(rec.r_cpos))
2461 recs_add++;
2462
2463 /* Check whether we need a split in the end. */
2464 if (cpos + clusters < le64_to_cpu(rec.r_cpos) +
2465 le32_to_cpu(rec.r_clusters))
2466 recs_add++;
2467 } else
2468 recs_add++;
2469
2470 brelse(ref_leaf_bh);
2471 ref_leaf_bh = NULL;
2472 clusters -= len;
2473 cpos += len;
2474 }
2475
2476 if (prev_bh) {
2477 rb = (struct ocfs2_refcount_block *)prev_bh->b_data;
2478
2479 if (le64_to_cpu(rb->rf_records.rl_used) + recs_add >
2480 le16_to_cpu(rb->rf_records.rl_count))
2481 ref_blocks++;
2482
2483 *credits += 1;
2484 }
2485
2486 if (!ref_blocks)
2487 goto out;
2488
2489 *meta_add += ref_blocks;
2490 *credits += ref_blocks;
2491
2492 /*
2493 * So we may need ref_blocks to insert into the tree.
2494 * That also means we need to change the b-tree and add that number
2495 * of records since we never merge them.
2496 * We need one more block for expansion since the new created leaf
2497 * block is also full and needs split.
2498 */
2499 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2500 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL) {
2501 struct ocfs2_extent_tree et;
2502
2503 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2504 *meta_add += ocfs2_extend_meta_needed(et.et_root_el);
2505 *credits += ocfs2_calc_extend_credits(sb,
2506 et.et_root_el,
2507 ref_blocks);
2508 } else {
2509 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
2510 *meta_add += 1;
2511 }
2512
2513out:
2514
2515 trace_ocfs2_calc_refcount_meta_credits(
2516 (unsigned long long)start_cpos, clusters,
2517 *meta_add, *credits);
2518 brelse(ref_leaf_bh);
2519 brelse(prev_bh);
2520 return ret;
2521}
2522
2523/*
2524 * For refcount tree, we will decrease some contiguous clusters
2525 * refcount count, so just go through it to see how many blocks
2526 * we gonna touch and whether we need to create new blocks.
2527 *
2528 * Normally the refcount blocks store these refcount should be
2529 * contiguous also, so that we can get the number easily.
2530 * We will at most add split 2 refcount records and 2 more
2531 * refcount blocks, so just check it in a rough way.
2532 *
2533 * Caller must hold refcount tree lock.
2534 */
2535int ocfs2_prepare_refcount_change_for_del(struct inode *inode,
2536 u64 refcount_loc,
2537 u64 phys_blkno,
2538 u32 clusters,
2539 int *credits,
2540 int *ref_blocks)
2541{
2542 int ret;
2543 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2544 struct buffer_head *ref_root_bh = NULL;
2545 struct ocfs2_refcount_tree *tree;
2546 u64 start_cpos = ocfs2_blocks_to_clusters(inode->i_sb, phys_blkno);
2547
2548 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2549 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2550 "tree, but the feature bit is not set in the "
2551 "super block.", inode->i_ino);
2552 ret = -EROFS;
2553 goto out;
2554 }
2555
2556 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2557
2558 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb),
2559 refcount_loc, &tree);
2560 if (ret) {
2561 mlog_errno(ret);
2562 goto out;
2563 }
2564
2565 ret = ocfs2_read_refcount_block(&tree->rf_ci, refcount_loc,
2566 &ref_root_bh);
2567 if (ret) {
2568 mlog_errno(ret);
2569 goto out;
2570 }
2571
2572 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
2573 &tree->rf_ci,
2574 ref_root_bh,
2575 start_cpos, clusters,
2576 ref_blocks, credits);
2577 if (ret) {
2578 mlog_errno(ret);
2579 goto out;
2580 }
2581
2582 trace_ocfs2_prepare_refcount_change_for_del(*ref_blocks, *credits);
2583
2584out:
2585 brelse(ref_root_bh);
2586 return ret;
2587}
2588
2589#define MAX_CONTIG_BYTES 1048576
2590
2591static inline unsigned int ocfs2_cow_contig_clusters(struct super_block *sb)
2592{
2593 return ocfs2_clusters_for_bytes(sb, MAX_CONTIG_BYTES);
2594}
2595
2596static inline unsigned int ocfs2_cow_contig_mask(struct super_block *sb)
2597{
2598 return ~(ocfs2_cow_contig_clusters(sb) - 1);
2599}
2600
2601/*
2602 * Given an extent that starts at 'start' and an I/O that starts at 'cpos',
2603 * find an offset (start + (n * contig_clusters)) that is closest to cpos
2604 * while still being less than or equal to it.
2605 *
2606 * The goal is to break the extent at a multiple of contig_clusters.
2607 */
2608static inline unsigned int ocfs2_cow_align_start(struct super_block *sb,
2609 unsigned int start,
2610 unsigned int cpos)
2611{
2612 BUG_ON(start > cpos);
2613
2614 return start + ((cpos - start) & ocfs2_cow_contig_mask(sb));
2615}
2616
2617/*
2618 * Given a cluster count of len, pad it out so that it is a multiple
2619 * of contig_clusters.
2620 */
2621static inline unsigned int ocfs2_cow_align_length(struct super_block *sb,
2622 unsigned int len)
2623{
2624 unsigned int padded =
2625 (len + (ocfs2_cow_contig_clusters(sb) - 1)) &
2626 ocfs2_cow_contig_mask(sb);
2627
2628 /* Did we wrap? */
2629 if (padded < len)
2630 padded = UINT_MAX;
2631
2632 return padded;
2633}
2634
2635/*
2636 * Calculate out the start and number of virtual clusters we need to to CoW.
2637 *
2638 * cpos is vitual start cluster position we want to do CoW in a
2639 * file and write_len is the cluster length.
2640 * max_cpos is the place where we want to stop CoW intentionally.
2641 *
2642 * Normal we will start CoW from the beginning of extent record cotaining cpos.
2643 * We try to break up extents on boundaries of MAX_CONTIG_BYTES so that we
2644 * get good I/O from the resulting extent tree.
2645 */
2646static int ocfs2_refcount_cal_cow_clusters(struct inode *inode,
2647 struct ocfs2_extent_list *el,
2648 u32 cpos,
2649 u32 write_len,
2650 u32 max_cpos,
2651 u32 *cow_start,
2652 u32 *cow_len)
2653{
2654 int ret = 0;
2655 int tree_height = le16_to_cpu(el->l_tree_depth), i;
2656 struct buffer_head *eb_bh = NULL;
2657 struct ocfs2_extent_block *eb = NULL;
2658 struct ocfs2_extent_rec *rec;
2659 unsigned int want_clusters, rec_end = 0;
2660 int contig_clusters = ocfs2_cow_contig_clusters(inode->i_sb);
2661 int leaf_clusters;
2662
2663 BUG_ON(cpos + write_len > max_cpos);
2664
2665 if (tree_height > 0) {
2666 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, cpos, &eb_bh);
2667 if (ret) {
2668 mlog_errno(ret);
2669 goto out;
2670 }
2671
2672 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2673 el = &eb->h_list;
2674
2675 if (el->l_tree_depth) {
2676 ocfs2_error(inode->i_sb,
2677 "Inode %lu has non zero tree depth in "
2678 "leaf block %llu\n", inode->i_ino,
2679 (unsigned long long)eb_bh->b_blocknr);
2680 ret = -EROFS;
2681 goto out;
2682 }
2683 }
2684
2685 *cow_len = 0;
2686 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
2687 rec = &el->l_recs[i];
2688
2689 if (ocfs2_is_empty_extent(rec)) {
2690 mlog_bug_on_msg(i != 0, "Inode %lu has empty record in "
2691 "index %d\n", inode->i_ino, i);
2692 continue;
2693 }
2694
2695 if (le32_to_cpu(rec->e_cpos) +
2696 le16_to_cpu(rec->e_leaf_clusters) <= cpos)
2697 continue;
2698
2699 if (*cow_len == 0) {
2700 /*
2701 * We should find a refcounted record in the
2702 * first pass.
2703 */
2704 BUG_ON(!(rec->e_flags & OCFS2_EXT_REFCOUNTED));
2705 *cow_start = le32_to_cpu(rec->e_cpos);
2706 }
2707
2708 /*
2709 * If we encounter a hole, a non-refcounted record or
2710 * pass the max_cpos, stop the search.
2711 */
2712 if ((!(rec->e_flags & OCFS2_EXT_REFCOUNTED)) ||
2713 (*cow_len && rec_end != le32_to_cpu(rec->e_cpos)) ||
2714 (max_cpos <= le32_to_cpu(rec->e_cpos)))
2715 break;
2716
2717 leaf_clusters = le16_to_cpu(rec->e_leaf_clusters);
2718 rec_end = le32_to_cpu(rec->e_cpos) + leaf_clusters;
2719 if (rec_end > max_cpos) {
2720 rec_end = max_cpos;
2721 leaf_clusters = rec_end - le32_to_cpu(rec->e_cpos);
2722 }
2723
2724 /*
2725 * How many clusters do we actually need from
2726 * this extent? First we see how many we actually
2727 * need to complete the write. If that's smaller
2728 * than contig_clusters, we try for contig_clusters.
2729 */
2730 if (!*cow_len)
2731 want_clusters = write_len;
2732 else
2733 want_clusters = (cpos + write_len) -
2734 (*cow_start + *cow_len);
2735 if (want_clusters < contig_clusters)
2736 want_clusters = contig_clusters;
2737
2738 /*
2739 * If the write does not cover the whole extent, we
2740 * need to calculate how we're going to split the extent.
2741 * We try to do it on contig_clusters boundaries.
2742 *
2743 * Any extent smaller than contig_clusters will be
2744 * CoWed in its entirety.
2745 */
2746 if (leaf_clusters <= contig_clusters)
2747 *cow_len += leaf_clusters;
2748 else if (*cow_len || (*cow_start == cpos)) {
2749 /*
2750 * This extent needs to be CoW'd from its
2751 * beginning, so all we have to do is compute
2752 * how many clusters to grab. We align
2753 * want_clusters to the edge of contig_clusters
2754 * to get better I/O.
2755 */
2756 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2757 want_clusters);
2758
2759 if (leaf_clusters < want_clusters)
2760 *cow_len += leaf_clusters;
2761 else
2762 *cow_len += want_clusters;
2763 } else if ((*cow_start + contig_clusters) >=
2764 (cpos + write_len)) {
2765 /*
2766 * Breaking off contig_clusters at the front
2767 * of the extent will cover our write. That's
2768 * easy.
2769 */
2770 *cow_len = contig_clusters;
2771 } else if ((rec_end - cpos) <= contig_clusters) {
2772 /*
2773 * Breaking off contig_clusters at the tail of
2774 * this extent will cover cpos.
2775 */
2776 *cow_start = rec_end - contig_clusters;
2777 *cow_len = contig_clusters;
2778 } else if ((rec_end - cpos) <= want_clusters) {
2779 /*
2780 * While we can't fit the entire write in this
2781 * extent, we know that the write goes from cpos
2782 * to the end of the extent. Break that off.
2783 * We try to break it at some multiple of
2784 * contig_clusters from the front of the extent.
2785 * Failing that (ie, cpos is within
2786 * contig_clusters of the front), we'll CoW the
2787 * entire extent.
2788 */
2789 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2790 *cow_start, cpos);
2791 *cow_len = rec_end - *cow_start;
2792 } else {
2793 /*
2794 * Ok, the entire write lives in the middle of
2795 * this extent. Let's try to slice the extent up
2796 * nicely. Optimally, our CoW region starts at
2797 * m*contig_clusters from the beginning of the
2798 * extent and goes for n*contig_clusters,
2799 * covering the entire write.
2800 */
2801 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2802 *cow_start, cpos);
2803
2804 want_clusters = (cpos + write_len) - *cow_start;
2805 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2806 want_clusters);
2807 if (*cow_start + want_clusters <= rec_end)
2808 *cow_len = want_clusters;
2809 else
2810 *cow_len = rec_end - *cow_start;
2811 }
2812
2813 /* Have we covered our entire write yet? */
2814 if ((*cow_start + *cow_len) >= (cpos + write_len))
2815 break;
2816
2817 /*
2818 * If we reach the end of the extent block and don't get enough
2819 * clusters, continue with the next extent block if possible.
2820 */
2821 if (i + 1 == le16_to_cpu(el->l_next_free_rec) &&
2822 eb && eb->h_next_leaf_blk) {
2823 brelse(eb_bh);
2824 eb_bh = NULL;
2825
2826 ret = ocfs2_read_extent_block(INODE_CACHE(inode),
2827 le64_to_cpu(eb->h_next_leaf_blk),
2828 &eb_bh);
2829 if (ret) {
2830 mlog_errno(ret);
2831 goto out;
2832 }
2833
2834 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2835 el = &eb->h_list;
2836 i = -1;
2837 }
2838 }
2839
2840out:
2841 brelse(eb_bh);
2842 return ret;
2843}
2844
2845/*
2846 * Prepare meta_ac, data_ac and calculate credits when we want to add some
2847 * num_clusters in data_tree "et" and change the refcount for the old
2848 * clusters(starting form p_cluster) in the refcount tree.
2849 *
2850 * Note:
2851 * 1. since we may split the old tree, so we at most will need num_clusters + 2
2852 * more new leaf records.
2853 * 2. In some case, we may not need to reserve new clusters(e.g, reflink), so
2854 * just give data_ac = NULL.
2855 */
2856static int ocfs2_lock_refcount_allocators(struct super_block *sb,
2857 u32 p_cluster, u32 num_clusters,
2858 struct ocfs2_extent_tree *et,
2859 struct ocfs2_caching_info *ref_ci,
2860 struct buffer_head *ref_root_bh,
2861 struct ocfs2_alloc_context **meta_ac,
2862 struct ocfs2_alloc_context **data_ac,
2863 int *credits)
2864{
2865 int ret = 0, meta_add = 0;
2866 int num_free_extents = ocfs2_num_free_extents(OCFS2_SB(sb), et);
2867
2868 if (num_free_extents < 0) {
2869 ret = num_free_extents;
2870 mlog_errno(ret);
2871 goto out;
2872 }
2873
2874 if (num_free_extents < num_clusters + 2)
2875 meta_add =
2876 ocfs2_extend_meta_needed(et->et_root_el);
2877
2878 *credits += ocfs2_calc_extend_credits(sb, et->et_root_el,
2879 num_clusters + 2);
2880
2881 ret = ocfs2_calc_refcount_meta_credits(sb, ref_ci, ref_root_bh,
2882 p_cluster, num_clusters,
2883 &meta_add, credits);
2884 if (ret) {
2885 mlog_errno(ret);
2886 goto out;
2887 }
2888
2889 trace_ocfs2_lock_refcount_allocators(meta_add, *credits);
2890 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(sb), meta_add,
2891 meta_ac);
2892 if (ret) {
2893 mlog_errno(ret);
2894 goto out;
2895 }
2896
2897 if (data_ac) {
2898 ret = ocfs2_reserve_clusters(OCFS2_SB(sb), num_clusters,
2899 data_ac);
2900 if (ret)
2901 mlog_errno(ret);
2902 }
2903
2904out:
2905 if (ret) {
2906 if (*meta_ac) {
2907 ocfs2_free_alloc_context(*meta_ac);
2908 *meta_ac = NULL;
2909 }
2910 }
2911
2912 return ret;
2913}
2914
2915static int ocfs2_clear_cow_buffer(handle_t *handle, struct buffer_head *bh)
2916{
2917 BUG_ON(buffer_dirty(bh));
2918
2919 clear_buffer_mapped(bh);
2920
2921 return 0;
2922}
2923
2924int ocfs2_duplicate_clusters_by_page(handle_t *handle,
2925 struct file *file,
2926 u32 cpos, u32 old_cluster,
2927 u32 new_cluster, u32 new_len)
2928{
2929 int ret = 0, partial;
2930 struct inode *inode = file->f_path.dentry->d_inode;
2931 struct ocfs2_caching_info *ci = INODE_CACHE(inode);
2932 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2933 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
2934 struct page *page;
2935 pgoff_t page_index;
2936 unsigned int from, to, readahead_pages;
2937 loff_t offset, end, map_end;
2938 struct address_space *mapping = inode->i_mapping;
2939
2940 trace_ocfs2_duplicate_clusters_by_page(cpos, old_cluster,
2941 new_cluster, new_len);
2942
2943 readahead_pages =
2944 (ocfs2_cow_contig_clusters(sb) <<
2945 OCFS2_SB(sb)->s_clustersize_bits) >> PAGE_CACHE_SHIFT;
2946 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
2947 end = offset + (new_len << OCFS2_SB(sb)->s_clustersize_bits);
2948 /*
2949 * We only duplicate pages until we reach the page contains i_size - 1.
2950 * So trim 'end' to i_size.
2951 */
2952 if (end > i_size_read(inode))
2953 end = i_size_read(inode);
2954
2955 while (offset < end) {
2956 page_index = offset >> PAGE_CACHE_SHIFT;
2957 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
2958 if (map_end > end)
2959 map_end = end;
2960
2961 /* from, to is the offset within the page. */
2962 from = offset & (PAGE_CACHE_SIZE - 1);
2963 to = PAGE_CACHE_SIZE;
2964 if (map_end & (PAGE_CACHE_SIZE - 1))
2965 to = map_end & (PAGE_CACHE_SIZE - 1);
2966
2967 page = find_or_create_page(mapping, page_index, GFP_NOFS);
2968
2969 /*
2970 * In case PAGE_CACHE_SIZE <= CLUSTER_SIZE, This page
2971 * can't be dirtied before we CoW it out.
2972 */
2973 if (PAGE_CACHE_SIZE <= OCFS2_SB(sb)->s_clustersize)
2974 BUG_ON(PageDirty(page));
2975
2976 if (PageReadahead(page)) {
2977 page_cache_async_readahead(mapping,
2978 &file->f_ra, file,
2979 page, page_index,
2980 readahead_pages);
2981 }
2982
2983 if (!PageUptodate(page)) {
2984 ret = block_read_full_page(page, ocfs2_get_block);
2985 if (ret) {
2986 mlog_errno(ret);
2987 goto unlock;
2988 }
2989 lock_page(page);
2990 }
2991
2992 if (page_has_buffers(page)) {
2993 ret = walk_page_buffers(handle, page_buffers(page),
2994 from, to, &partial,
2995 ocfs2_clear_cow_buffer);
2996 if (ret) {
2997 mlog_errno(ret);
2998 goto unlock;
2999 }
3000 }
3001
3002 ocfs2_map_and_dirty_page(inode, handle, from, to,
3003 page, 0, &new_block);
3004 mark_page_accessed(page);
3005unlock:
3006 unlock_page(page);
3007 page_cache_release(page);
3008 page = NULL;
3009 offset = map_end;
3010 if (ret)
3011 break;
3012 }
3013
3014 return ret;
3015}
3016
3017int ocfs2_duplicate_clusters_by_jbd(handle_t *handle,
3018 struct file *file,
3019 u32 cpos, u32 old_cluster,
3020 u32 new_cluster, u32 new_len)
3021{
3022 int ret = 0;
3023 struct inode *inode = file->f_path.dentry->d_inode;
3024 struct super_block *sb = inode->i_sb;
3025 struct ocfs2_caching_info *ci = INODE_CACHE(inode);
3026 int i, blocks = ocfs2_clusters_to_blocks(sb, new_len);
3027 u64 old_block = ocfs2_clusters_to_blocks(sb, old_cluster);
3028 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
3029 struct ocfs2_super *osb = OCFS2_SB(sb);
3030 struct buffer_head *old_bh = NULL;
3031 struct buffer_head *new_bh = NULL;
3032
3033 trace_ocfs2_duplicate_clusters_by_page(cpos, old_cluster,
3034 new_cluster, new_len);
3035
3036 for (i = 0; i < blocks; i++, old_block++, new_block++) {
3037 new_bh = sb_getblk(osb->sb, new_block);
3038 if (new_bh == NULL) {
3039 ret = -EIO;
3040 mlog_errno(ret);
3041 break;
3042 }
3043
3044 ocfs2_set_new_buffer_uptodate(ci, new_bh);
3045
3046 ret = ocfs2_read_block(ci, old_block, &old_bh, NULL);
3047 if (ret) {
3048 mlog_errno(ret);
3049 break;
3050 }
3051
3052 ret = ocfs2_journal_access(handle, ci, new_bh,
3053 OCFS2_JOURNAL_ACCESS_CREATE);
3054 if (ret) {
3055 mlog_errno(ret);
3056 break;
3057 }
3058
3059 memcpy(new_bh->b_data, old_bh->b_data, sb->s_blocksize);
3060 ocfs2_journal_dirty(handle, new_bh);
3061
3062 brelse(new_bh);
3063 brelse(old_bh);
3064 new_bh = NULL;
3065 old_bh = NULL;
3066 }
3067
3068 brelse(new_bh);
3069 brelse(old_bh);
3070 return ret;
3071}
3072
3073static int ocfs2_clear_ext_refcount(handle_t *handle,
3074 struct ocfs2_extent_tree *et,
3075 u32 cpos, u32 p_cluster, u32 len,
3076 unsigned int ext_flags,
3077 struct ocfs2_alloc_context *meta_ac,
3078 struct ocfs2_cached_dealloc_ctxt *dealloc)
3079{
3080 int ret, index;
3081 struct ocfs2_extent_rec replace_rec;
3082 struct ocfs2_path *path = NULL;
3083 struct ocfs2_extent_list *el;
3084 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
3085 u64 ino = ocfs2_metadata_cache_owner(et->et_ci);
3086
3087 trace_ocfs2_clear_ext_refcount((unsigned long long)ino,
3088 cpos, len, p_cluster, ext_flags);
3089
3090 memset(&replace_rec, 0, sizeof(replace_rec));
3091 replace_rec.e_cpos = cpu_to_le32(cpos);
3092 replace_rec.e_leaf_clusters = cpu_to_le16(len);
3093 replace_rec.e_blkno = cpu_to_le64(ocfs2_clusters_to_blocks(sb,
3094 p_cluster));
3095 replace_rec.e_flags = ext_flags;
3096 replace_rec.e_flags &= ~OCFS2_EXT_REFCOUNTED;
3097
3098 path = ocfs2_new_path_from_et(et);
3099 if (!path) {
3100 ret = -ENOMEM;
3101 mlog_errno(ret);
3102 goto out;
3103 }
3104
3105 ret = ocfs2_find_path(et->et_ci, path, cpos);
3106 if (ret) {
3107 mlog_errno(ret);
3108 goto out;
3109 }
3110
3111 el = path_leaf_el(path);
3112
3113 index = ocfs2_search_extent_list(el, cpos);
3114 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
3115 ocfs2_error(sb,
3116 "Inode %llu has an extent at cpos %u which can no "
3117 "longer be found.\n",
3118 (unsigned long long)ino, cpos);
3119 ret = -EROFS;
3120 goto out;
3121 }
3122
3123 ret = ocfs2_split_extent(handle, et, path, index,
3124 &replace_rec, meta_ac, dealloc);
3125 if (ret)
3126 mlog_errno(ret);
3127
3128out:
3129 ocfs2_free_path(path);
3130 return ret;
3131}
3132
3133static int ocfs2_replace_clusters(handle_t *handle,
3134 struct ocfs2_cow_context *context,
3135 u32 cpos, u32 old,
3136 u32 new, u32 len,
3137 unsigned int ext_flags)
3138{
3139 int ret;
3140 struct ocfs2_caching_info *ci = context->data_et.et_ci;
3141 u64 ino = ocfs2_metadata_cache_owner(ci);
3142
3143 trace_ocfs2_replace_clusters((unsigned long long)ino,
3144 cpos, old, new, len, ext_flags);
3145
3146 /*If the old clusters is unwritten, no need to duplicate. */
3147 if (!(ext_flags & OCFS2_EXT_UNWRITTEN)) {
3148 ret = context->cow_duplicate_clusters(handle, context->file,
3149 cpos, old, new, len);
3150 if (ret) {
3151 mlog_errno(ret);
3152 goto out;
3153 }
3154 }
3155
3156 ret = ocfs2_clear_ext_refcount(handle, &context->data_et,
3157 cpos, new, len, ext_flags,
3158 context->meta_ac, &context->dealloc);
3159 if (ret)
3160 mlog_errno(ret);
3161out:
3162 return ret;
3163}
3164
3165int ocfs2_cow_sync_writeback(struct super_block *sb,
3166 struct inode *inode,
3167 u32 cpos, u32 num_clusters)
3168{
3169 int ret = 0;
3170 loff_t offset, end, map_end;
3171 pgoff_t page_index;
3172 struct page *page;
3173
3174 if (ocfs2_should_order_data(inode))
3175 return 0;
3176
3177 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
3178 end = offset + (num_clusters << OCFS2_SB(sb)->s_clustersize_bits);
3179
3180 ret = filemap_fdatawrite_range(inode->i_mapping,
3181 offset, end - 1);
3182 if (ret < 0) {
3183 mlog_errno(ret);
3184 return ret;
3185 }
3186
3187 while (offset < end) {
3188 page_index = offset >> PAGE_CACHE_SHIFT;
3189 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
3190 if (map_end > end)
3191 map_end = end;
3192
3193 page = find_or_create_page(inode->i_mapping,
3194 page_index, GFP_NOFS);
3195 BUG_ON(!page);
3196
3197 wait_on_page_writeback(page);
3198 if (PageError(page)) {
3199 ret = -EIO;
3200 mlog_errno(ret);
3201 } else
3202 mark_page_accessed(page);
3203
3204 unlock_page(page);
3205 page_cache_release(page);
3206 page = NULL;
3207 offset = map_end;
3208 if (ret)
3209 break;
3210 }
3211
3212 return ret;
3213}
3214
3215static int ocfs2_di_get_clusters(struct ocfs2_cow_context *context,
3216 u32 v_cluster, u32 *p_cluster,
3217 u32 *num_clusters,
3218 unsigned int *extent_flags)
3219{
3220 return ocfs2_get_clusters(context->inode, v_cluster, p_cluster,
3221 num_clusters, extent_flags);
3222}
3223
3224static int ocfs2_make_clusters_writable(struct super_block *sb,
3225 struct ocfs2_cow_context *context,
3226 u32 cpos, u32 p_cluster,
3227 u32 num_clusters, unsigned int e_flags)
3228{
3229 int ret, delete, index, credits = 0;
3230 u32 new_bit, new_len, orig_num_clusters;
3231 unsigned int set_len;
3232 struct ocfs2_super *osb = OCFS2_SB(sb);
3233 handle_t *handle;
3234 struct buffer_head *ref_leaf_bh = NULL;
3235 struct ocfs2_caching_info *ref_ci = &context->ref_tree->rf_ci;
3236 struct ocfs2_refcount_rec rec;
3237
3238 trace_ocfs2_make_clusters_writable(cpos, p_cluster,
3239 num_clusters, e_flags);
3240
3241 ret = ocfs2_lock_refcount_allocators(sb, p_cluster, num_clusters,
3242 &context->data_et,
3243 ref_ci,
3244 context->ref_root_bh,
3245 &context->meta_ac,
3246 &context->data_ac, &credits);
3247 if (ret) {
3248 mlog_errno(ret);
3249 return ret;
3250 }
3251
3252 if (context->post_refcount)
3253 credits += context->post_refcount->credits;
3254
3255 credits += context->extra_credits;
3256 handle = ocfs2_start_trans(osb, credits);
3257 if (IS_ERR(handle)) {
3258 ret = PTR_ERR(handle);
3259 mlog_errno(ret);
3260 goto out;
3261 }
3262
3263 orig_num_clusters = num_clusters;
3264
3265 while (num_clusters) {
3266 ret = ocfs2_get_refcount_rec(ref_ci, context->ref_root_bh,
3267 p_cluster, num_clusters,
3268 &rec, &index, &ref_leaf_bh);
3269 if (ret) {
3270 mlog_errno(ret);
3271 goto out_commit;
3272 }
3273
3274 BUG_ON(!rec.r_refcount);
3275 set_len = min((u64)p_cluster + num_clusters,
3276 le64_to_cpu(rec.r_cpos) +
3277 le32_to_cpu(rec.r_clusters)) - p_cluster;
3278
3279 /*
3280 * There are many different situation here.
3281 * 1. If refcount == 1, remove the flag and don't COW.
3282 * 2. If refcount > 1, allocate clusters.
3283 * Here we may not allocate r_len once at a time, so continue
3284 * until we reach num_clusters.
3285 */
3286 if (le32_to_cpu(rec.r_refcount) == 1) {
3287 delete = 0;
3288 ret = ocfs2_clear_ext_refcount(handle,
3289 &context->data_et,
3290 cpos, p_cluster,
3291 set_len, e_flags,
3292 context->meta_ac,
3293 &context->dealloc);
3294 if (ret) {
3295 mlog_errno(ret);
3296 goto out_commit;
3297 }
3298 } else {
3299 delete = 1;
3300
3301 ret = __ocfs2_claim_clusters(handle,
3302 context->data_ac,
3303 1, set_len,
3304 &new_bit, &new_len);
3305 if (ret) {
3306 mlog_errno(ret);
3307 goto out_commit;
3308 }
3309
3310 ret = ocfs2_replace_clusters(handle, context,
3311 cpos, p_cluster, new_bit,
3312 new_len, e_flags);
3313 if (ret) {
3314 mlog_errno(ret);
3315 goto out_commit;
3316 }
3317 set_len = new_len;
3318 }
3319
3320 ret = __ocfs2_decrease_refcount(handle, ref_ci,
3321 context->ref_root_bh,
3322 p_cluster, set_len,
3323 context->meta_ac,
3324 &context->dealloc, delete);
3325 if (ret) {
3326 mlog_errno(ret);
3327 goto out_commit;
3328 }
3329
3330 cpos += set_len;
3331 p_cluster += set_len;
3332 num_clusters -= set_len;
3333 brelse(ref_leaf_bh);
3334 ref_leaf_bh = NULL;
3335 }
3336
3337 /* handle any post_cow action. */
3338 if (context->post_refcount && context->post_refcount->func) {
3339 ret = context->post_refcount->func(context->inode, handle,
3340 context->post_refcount->para);
3341 if (ret) {
3342 mlog_errno(ret);
3343 goto out_commit;
3344 }
3345 }
3346
3347 /*
3348 * Here we should write the new page out first if we are
3349 * in write-back mode.
3350 */
3351 if (context->get_clusters == ocfs2_di_get_clusters) {
3352 ret = ocfs2_cow_sync_writeback(sb, context->inode, cpos,
3353 orig_num_clusters);
3354 if (ret)
3355 mlog_errno(ret);
3356 }
3357
3358out_commit:
3359 ocfs2_commit_trans(osb, handle);
3360
3361out:
3362 if (context->data_ac) {
3363 ocfs2_free_alloc_context(context->data_ac);
3364 context->data_ac = NULL;
3365 }
3366 if (context->meta_ac) {
3367 ocfs2_free_alloc_context(context->meta_ac);
3368 context->meta_ac = NULL;
3369 }
3370 brelse(ref_leaf_bh);
3371
3372 return ret;
3373}
3374
3375static int ocfs2_replace_cow(struct ocfs2_cow_context *context)
3376{
3377 int ret = 0;
3378 struct inode *inode = context->inode;
3379 u32 cow_start = context->cow_start, cow_len = context->cow_len;
3380 u32 p_cluster, num_clusters;
3381 unsigned int ext_flags;
3382 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3383
3384 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
3385 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
3386 "tree, but the feature bit is not set in the "
3387 "super block.", inode->i_ino);
3388 return -EROFS;
3389 }
3390
3391 ocfs2_init_dealloc_ctxt(&context->dealloc);
3392
3393 while (cow_len) {
3394 ret = context->get_clusters(context, cow_start, &p_cluster,
3395 &num_clusters, &ext_flags);
3396 if (ret) {
3397 mlog_errno(ret);
3398 break;
3399 }
3400
3401 BUG_ON(!(ext_flags & OCFS2_EXT_REFCOUNTED));
3402
3403 if (cow_len < num_clusters)
3404 num_clusters = cow_len;
3405
3406 ret = ocfs2_make_clusters_writable(inode->i_sb, context,
3407 cow_start, p_cluster,
3408 num_clusters, ext_flags);
3409 if (ret) {
3410 mlog_errno(ret);
3411 break;
3412 }
3413
3414 cow_len -= num_clusters;
3415 cow_start += num_clusters;
3416 }
3417
3418 if (ocfs2_dealloc_has_cluster(&context->dealloc)) {
3419 ocfs2_schedule_truncate_log_flush(osb, 1);
3420 ocfs2_run_deallocs(osb, &context->dealloc);
3421 }
3422
3423 return ret;
3424}
3425
3426static void ocfs2_readahead_for_cow(struct inode *inode,
3427 struct file *file,
3428 u32 start, u32 len)
3429{
3430 struct address_space *mapping;
3431 pgoff_t index;
3432 unsigned long num_pages;
3433 int cs_bits = OCFS2_SB(inode->i_sb)->s_clustersize_bits;
3434
3435 if (!file)
3436 return;
3437
3438 mapping = file->f_mapping;
3439 num_pages = (len << cs_bits) >> PAGE_CACHE_SHIFT;
3440 if (!num_pages)
3441 num_pages = 1;
3442
3443 index = ((loff_t)start << cs_bits) >> PAGE_CACHE_SHIFT;
3444 page_cache_sync_readahead(mapping, &file->f_ra, file,
3445 index, num_pages);
3446}
3447
3448/*
3449 * Starting at cpos, try to CoW write_len clusters. Don't CoW
3450 * past max_cpos. This will stop when it runs into a hole or an
3451 * unrefcounted extent.
3452 */
3453static int ocfs2_refcount_cow_hunk(struct inode *inode,
3454 struct file *file,
3455 struct buffer_head *di_bh,
3456 u32 cpos, u32 write_len, u32 max_cpos)
3457{
3458 int ret;
3459 u32 cow_start = 0, cow_len = 0;
3460 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3461 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3462 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3463 struct buffer_head *ref_root_bh = NULL;
3464 struct ocfs2_refcount_tree *ref_tree;
3465 struct ocfs2_cow_context *context = NULL;
3466
3467 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3468
3469 ret = ocfs2_refcount_cal_cow_clusters(inode, &di->id2.i_list,
3470 cpos, write_len, max_cpos,
3471 &cow_start, &cow_len);
3472 if (ret) {
3473 mlog_errno(ret);
3474 goto out;
3475 }
3476
3477 trace_ocfs2_refcount_cow_hunk(OCFS2_I(inode)->ip_blkno,
3478 cpos, write_len, max_cpos,
3479 cow_start, cow_len);
3480
3481 BUG_ON(cow_len == 0);
3482
3483 ocfs2_readahead_for_cow(inode, file, cow_start, cow_len);
3484
3485 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3486 if (!context) {
3487 ret = -ENOMEM;
3488 mlog_errno(ret);
3489 goto out;
3490 }
3491
3492 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
3493 1, &ref_tree, &ref_root_bh);
3494 if (ret) {
3495 mlog_errno(ret);
3496 goto out;
3497 }
3498
3499 context->inode = inode;
3500 context->cow_start = cow_start;
3501 context->cow_len = cow_len;
3502 context->ref_tree = ref_tree;
3503 context->ref_root_bh = ref_root_bh;
3504 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_page;
3505 context->get_clusters = ocfs2_di_get_clusters;
3506 context->file = file;
3507
3508 ocfs2_init_dinode_extent_tree(&context->data_et,
3509 INODE_CACHE(inode), di_bh);
3510
3511 ret = ocfs2_replace_cow(context);
3512 if (ret)
3513 mlog_errno(ret);
3514
3515 /*
3516 * truncate the extent map here since no matter whether we meet with
3517 * any error during the action, we shouldn't trust cached extent map
3518 * any more.
3519 */
3520 ocfs2_extent_map_trunc(inode, cow_start);
3521
3522 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3523 brelse(ref_root_bh);
3524out:
3525 kfree(context);
3526 return ret;
3527}
3528
3529/*
3530 * CoW any and all clusters between cpos and cpos+write_len.
3531 * Don't CoW past max_cpos. If this returns successfully, all
3532 * clusters between cpos and cpos+write_len are safe to modify.
3533 */
3534int ocfs2_refcount_cow(struct inode *inode,
3535 struct file *file,
3536 struct buffer_head *di_bh,
3537 u32 cpos, u32 write_len, u32 max_cpos)
3538{
3539 int ret = 0;
3540 u32 p_cluster, num_clusters;
3541 unsigned int ext_flags;
3542
3543 while (write_len) {
3544 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3545 &num_clusters, &ext_flags);
3546 if (ret) {
3547 mlog_errno(ret);
3548 break;
3549 }
3550
3551 if (write_len < num_clusters)
3552 num_clusters = write_len;
3553
3554 if (ext_flags & OCFS2_EXT_REFCOUNTED) {
3555 ret = ocfs2_refcount_cow_hunk(inode, file, di_bh, cpos,
3556 num_clusters, max_cpos);
3557 if (ret) {
3558 mlog_errno(ret);
3559 break;
3560 }
3561 }
3562
3563 write_len -= num_clusters;
3564 cpos += num_clusters;
3565 }
3566
3567 return ret;
3568}
3569
3570static int ocfs2_xattr_value_get_clusters(struct ocfs2_cow_context *context,
3571 u32 v_cluster, u32 *p_cluster,
3572 u32 *num_clusters,
3573 unsigned int *extent_flags)
3574{
3575 struct inode *inode = context->inode;
3576 struct ocfs2_xattr_value_root *xv = context->cow_object;
3577
3578 return ocfs2_xattr_get_clusters(inode, v_cluster, p_cluster,
3579 num_clusters, &xv->xr_list,
3580 extent_flags);
3581}
3582
3583/*
3584 * Given a xattr value root, calculate the most meta/credits we need for
3585 * refcount tree change if we truncate it to 0.
3586 */
3587int ocfs2_refcounted_xattr_delete_need(struct inode *inode,
3588 struct ocfs2_caching_info *ref_ci,
3589 struct buffer_head *ref_root_bh,
3590 struct ocfs2_xattr_value_root *xv,
3591 int *meta_add, int *credits)
3592{
3593 int ret = 0, index, ref_blocks = 0;
3594 u32 p_cluster, num_clusters;
3595 u32 cpos = 0, clusters = le32_to_cpu(xv->xr_clusters);
3596 struct ocfs2_refcount_block *rb;
3597 struct ocfs2_refcount_rec rec;
3598 struct buffer_head *ref_leaf_bh = NULL;
3599
3600 while (cpos < clusters) {
3601 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
3602 &num_clusters, &xv->xr_list,
3603 NULL);
3604 if (ret) {
3605 mlog_errno(ret);
3606 goto out;
3607 }
3608
3609 cpos += num_clusters;
3610
3611 while (num_clusters) {
3612 ret = ocfs2_get_refcount_rec(ref_ci, ref_root_bh,
3613 p_cluster, num_clusters,
3614 &rec, &index,
3615 &ref_leaf_bh);
3616 if (ret) {
3617 mlog_errno(ret);
3618 goto out;
3619 }
3620
3621 BUG_ON(!rec.r_refcount);
3622
3623 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
3624
3625 /*
3626 * We really don't know whether the other clusters is in
3627 * this refcount block or not, so just take the worst
3628 * case that all the clusters are in this block and each
3629 * one will split a refcount rec, so totally we need
3630 * clusters * 2 new refcount rec.
3631 */
3632 if (le64_to_cpu(rb->rf_records.rl_used) + clusters * 2 >
3633 le16_to_cpu(rb->rf_records.rl_count))
3634 ref_blocks++;
3635
3636 *credits += 1;
3637 brelse(ref_leaf_bh);
3638 ref_leaf_bh = NULL;
3639
3640 if (num_clusters <= le32_to_cpu(rec.r_clusters))
3641 break;
3642 else
3643 num_clusters -= le32_to_cpu(rec.r_clusters);
3644 p_cluster += num_clusters;
3645 }
3646 }
3647
3648 *meta_add += ref_blocks;
3649 if (!ref_blocks)
3650 goto out;
3651
3652 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
3653 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
3654 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
3655 else {
3656 struct ocfs2_extent_tree et;
3657
3658 ocfs2_init_refcount_extent_tree(&et, ref_ci, ref_root_bh);
3659 *credits += ocfs2_calc_extend_credits(inode->i_sb,
3660 et.et_root_el,
3661 ref_blocks);
3662 }
3663
3664out:
3665 brelse(ref_leaf_bh);
3666 return ret;
3667}
3668
3669/*
3670 * Do CoW for xattr.
3671 */
3672int ocfs2_refcount_cow_xattr(struct inode *inode,
3673 struct ocfs2_dinode *di,
3674 struct ocfs2_xattr_value_buf *vb,
3675 struct ocfs2_refcount_tree *ref_tree,
3676 struct buffer_head *ref_root_bh,
3677 u32 cpos, u32 write_len,
3678 struct ocfs2_post_refcount *post)
3679{
3680 int ret;
3681 struct ocfs2_xattr_value_root *xv = vb->vb_xv;
3682 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3683 struct ocfs2_cow_context *context = NULL;
3684 u32 cow_start, cow_len;
3685
3686 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3687
3688 ret = ocfs2_refcount_cal_cow_clusters(inode, &xv->xr_list,
3689 cpos, write_len, UINT_MAX,
3690 &cow_start, &cow_len);
3691 if (ret) {
3692 mlog_errno(ret);
3693 goto out;
3694 }
3695
3696 BUG_ON(cow_len == 0);
3697
3698 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3699 if (!context) {
3700 ret = -ENOMEM;
3701 mlog_errno(ret);
3702 goto out;
3703 }
3704
3705 context->inode = inode;
3706 context->cow_start = cow_start;
3707 context->cow_len = cow_len;
3708 context->ref_tree = ref_tree;
3709 context->ref_root_bh = ref_root_bh;
3710 context->cow_object = xv;
3711
3712 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_jbd;
3713 /* We need the extra credits for duplicate_clusters by jbd. */
3714 context->extra_credits =
3715 ocfs2_clusters_to_blocks(inode->i_sb, 1) * cow_len;
3716 context->get_clusters = ocfs2_xattr_value_get_clusters;
3717 context->post_refcount = post;
3718
3719 ocfs2_init_xattr_value_extent_tree(&context->data_et,
3720 INODE_CACHE(inode), vb);
3721
3722 ret = ocfs2_replace_cow(context);
3723 if (ret)
3724 mlog_errno(ret);
3725
3726out:
3727 kfree(context);
3728 return ret;
3729}
3730
3731/*
3732 * Insert a new extent into refcount tree and mark a extent rec
3733 * as refcounted in the dinode tree.
3734 */
3735int ocfs2_add_refcount_flag(struct inode *inode,
3736 struct ocfs2_extent_tree *data_et,
3737 struct ocfs2_caching_info *ref_ci,
3738 struct buffer_head *ref_root_bh,
3739 u32 cpos, u32 p_cluster, u32 num_clusters,
3740 struct ocfs2_cached_dealloc_ctxt *dealloc,
3741 struct ocfs2_post_refcount *post)
3742{
3743 int ret;
3744 handle_t *handle;
3745 int credits = 1, ref_blocks = 0;
3746 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3747 struct ocfs2_alloc_context *meta_ac = NULL;
3748
3749 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
3750 ref_ci, ref_root_bh,
3751 p_cluster, num_clusters,
3752 &ref_blocks, &credits);
3753 if (ret) {
3754 mlog_errno(ret);
3755 goto out;
3756 }
3757
3758 trace_ocfs2_add_refcount_flag(ref_blocks, credits);
3759
3760 if (ref_blocks) {
3761 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(inode->i_sb),
3762 ref_blocks, &meta_ac);
3763 if (ret) {
3764 mlog_errno(ret);
3765 goto out;
3766 }
3767 }
3768
3769 if (post)
3770 credits += post->credits;
3771
3772 handle = ocfs2_start_trans(osb, credits);
3773 if (IS_ERR(handle)) {
3774 ret = PTR_ERR(handle);
3775 mlog_errno(ret);
3776 goto out;
3777 }
3778
3779 ret = ocfs2_mark_extent_refcounted(inode, data_et, handle,
3780 cpos, num_clusters, p_cluster,
3781 meta_ac, dealloc);
3782 if (ret) {
3783 mlog_errno(ret);
3784 goto out_commit;
3785 }
3786
3787 ret = __ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3788 p_cluster, num_clusters, 0,
3789 meta_ac, dealloc);
3790 if (ret) {
3791 mlog_errno(ret);
3792 goto out_commit;
3793 }
3794
3795 if (post && post->func) {
3796 ret = post->func(inode, handle, post->para);
3797 if (ret)
3798 mlog_errno(ret);
3799 }
3800
3801out_commit:
3802 ocfs2_commit_trans(osb, handle);
3803out:
3804 if (meta_ac)
3805 ocfs2_free_alloc_context(meta_ac);
3806 return ret;
3807}
3808
3809static int ocfs2_change_ctime(struct inode *inode,
3810 struct buffer_head *di_bh)
3811{
3812 int ret;
3813 handle_t *handle;
3814 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3815
3816 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
3817 OCFS2_INODE_UPDATE_CREDITS);
3818 if (IS_ERR(handle)) {
3819 ret = PTR_ERR(handle);
3820 mlog_errno(ret);
3821 goto out;
3822 }
3823
3824 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
3825 OCFS2_JOURNAL_ACCESS_WRITE);
3826 if (ret) {
3827 mlog_errno(ret);
3828 goto out_commit;
3829 }
3830
3831 inode->i_ctime = CURRENT_TIME;
3832 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
3833 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
3834
3835 ocfs2_journal_dirty(handle, di_bh);
3836
3837out_commit:
3838 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
3839out:
3840 return ret;
3841}
3842
3843static int ocfs2_attach_refcount_tree(struct inode *inode,
3844 struct buffer_head *di_bh)
3845{
3846 int ret, data_changed = 0;
3847 struct buffer_head *ref_root_bh = NULL;
3848 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3849 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3850 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3851 struct ocfs2_refcount_tree *ref_tree;
3852 unsigned int ext_flags;
3853 loff_t size;
3854 u32 cpos, num_clusters, clusters, p_cluster;
3855 struct ocfs2_cached_dealloc_ctxt dealloc;
3856 struct ocfs2_extent_tree di_et;
3857
3858 ocfs2_init_dealloc_ctxt(&dealloc);
3859
3860 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL)) {
3861 ret = ocfs2_create_refcount_tree(inode, di_bh);
3862 if (ret) {
3863 mlog_errno(ret);
3864 goto out;
3865 }
3866 }
3867
3868 BUG_ON(!di->i_refcount_loc);
3869 ret = ocfs2_lock_refcount_tree(osb,
3870 le64_to_cpu(di->i_refcount_loc), 1,
3871 &ref_tree, &ref_root_bh);
3872 if (ret) {
3873 mlog_errno(ret);
3874 goto out;
3875 }
3876
3877 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
3878 goto attach_xattr;
3879
3880 ocfs2_init_dinode_extent_tree(&di_et, INODE_CACHE(inode), di_bh);
3881
3882 size = i_size_read(inode);
3883 clusters = ocfs2_clusters_for_bytes(inode->i_sb, size);
3884
3885 cpos = 0;
3886 while (cpos < clusters) {
3887 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3888 &num_clusters, &ext_flags);
3889
3890 if (p_cluster && !(ext_flags & OCFS2_EXT_REFCOUNTED)) {
3891 ret = ocfs2_add_refcount_flag(inode, &di_et,
3892 &ref_tree->rf_ci,
3893 ref_root_bh, cpos,
3894 p_cluster, num_clusters,
3895 &dealloc, NULL);
3896 if (ret) {
3897 mlog_errno(ret);
3898 goto unlock;
3899 }
3900
3901 data_changed = 1;
3902 }
3903 cpos += num_clusters;
3904 }
3905
3906attach_xattr:
3907 if (oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
3908 ret = ocfs2_xattr_attach_refcount_tree(inode, di_bh,
3909 &ref_tree->rf_ci,
3910 ref_root_bh,
3911 &dealloc);
3912 if (ret) {
3913 mlog_errno(ret);
3914 goto unlock;
3915 }
3916 }
3917
3918 if (data_changed) {
3919 ret = ocfs2_change_ctime(inode, di_bh);
3920 if (ret)
3921 mlog_errno(ret);
3922 }
3923
3924unlock:
3925 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3926 brelse(ref_root_bh);
3927
3928 if (!ret && ocfs2_dealloc_has_cluster(&dealloc)) {
3929 ocfs2_schedule_truncate_log_flush(osb, 1);
3930 ocfs2_run_deallocs(osb, &dealloc);
3931 }
3932out:
3933 /*
3934 * Empty the extent map so that we may get the right extent
3935 * record from the disk.
3936 */
3937 ocfs2_extent_map_trunc(inode, 0);
3938
3939 return ret;
3940}
3941
3942static int ocfs2_add_refcounted_extent(struct inode *inode,
3943 struct ocfs2_extent_tree *et,
3944 struct ocfs2_caching_info *ref_ci,
3945 struct buffer_head *ref_root_bh,
3946 u32 cpos, u32 p_cluster, u32 num_clusters,
3947 unsigned int ext_flags,
3948 struct ocfs2_cached_dealloc_ctxt *dealloc)
3949{
3950 int ret;
3951 handle_t *handle;
3952 int credits = 0;
3953 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3954 struct ocfs2_alloc_context *meta_ac = NULL;
3955
3956 ret = ocfs2_lock_refcount_allocators(inode->i_sb,
3957 p_cluster, num_clusters,
3958 et, ref_ci,
3959 ref_root_bh, &meta_ac,
3960 NULL, &credits);
3961 if (ret) {
3962 mlog_errno(ret);
3963 goto out;
3964 }
3965
3966 handle = ocfs2_start_trans(osb, credits);
3967 if (IS_ERR(handle)) {
3968 ret = PTR_ERR(handle);
3969 mlog_errno(ret);
3970 goto out;
3971 }
3972
3973 ret = ocfs2_insert_extent(handle, et, cpos,
3974 ocfs2_clusters_to_blocks(inode->i_sb, p_cluster),
3975 num_clusters, ext_flags, meta_ac);
3976 if (ret) {
3977 mlog_errno(ret);
3978 goto out_commit;
3979 }
3980
3981 ret = ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3982 p_cluster, num_clusters,
3983 meta_ac, dealloc);
3984 if (ret)
3985 mlog_errno(ret);
3986
3987out_commit:
3988 ocfs2_commit_trans(osb, handle);
3989out:
3990 if (meta_ac)
3991 ocfs2_free_alloc_context(meta_ac);
3992 return ret;
3993}
3994
3995static int ocfs2_duplicate_inline_data(struct inode *s_inode,
3996 struct buffer_head *s_bh,
3997 struct inode *t_inode,
3998 struct buffer_head *t_bh)
3999{
4000 int ret;
4001 handle_t *handle;
4002 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
4003 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
4004 struct ocfs2_dinode *t_di = (struct ocfs2_dinode *)t_bh->b_data;
4005
4006 BUG_ON(!(OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
4007
4008 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
4009 if (IS_ERR(handle)) {
4010 ret = PTR_ERR(handle);
4011 mlog_errno(ret);
4012 goto out;
4013 }
4014
4015 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4016 OCFS2_JOURNAL_ACCESS_WRITE);
4017 if (ret) {
4018 mlog_errno(ret);
4019 goto out_commit;
4020 }
4021
4022 t_di->id2.i_data.id_count = s_di->id2.i_data.id_count;
4023 memcpy(t_di->id2.i_data.id_data, s_di->id2.i_data.id_data,
4024 le16_to_cpu(s_di->id2.i_data.id_count));
4025 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4026 OCFS2_I(t_inode)->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
4027 t_di->i_dyn_features = cpu_to_le16(OCFS2_I(t_inode)->ip_dyn_features);
4028 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4029
4030 ocfs2_journal_dirty(handle, t_bh);
4031
4032out_commit:
4033 ocfs2_commit_trans(osb, handle);
4034out:
4035 return ret;
4036}
4037
4038static int ocfs2_duplicate_extent_list(struct inode *s_inode,
4039 struct inode *t_inode,
4040 struct buffer_head *t_bh,
4041 struct ocfs2_caching_info *ref_ci,
4042 struct buffer_head *ref_root_bh,
4043 struct ocfs2_cached_dealloc_ctxt *dealloc)
4044{
4045 int ret = 0;
4046 u32 p_cluster, num_clusters, clusters, cpos;
4047 loff_t size;
4048 unsigned int ext_flags;
4049 struct ocfs2_extent_tree et;
4050
4051 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(t_inode), t_bh);
4052
4053 size = i_size_read(s_inode);
4054 clusters = ocfs2_clusters_for_bytes(s_inode->i_sb, size);
4055
4056 cpos = 0;
4057 while (cpos < clusters) {
4058 ret = ocfs2_get_clusters(s_inode, cpos, &p_cluster,
4059 &num_clusters, &ext_flags);
4060
4061 if (p_cluster) {
4062 ret = ocfs2_add_refcounted_extent(t_inode, &et,
4063 ref_ci, ref_root_bh,
4064 cpos, p_cluster,
4065 num_clusters,
4066 ext_flags,
4067 dealloc);
4068 if (ret) {
4069 mlog_errno(ret);
4070 goto out;
4071 }
4072 }
4073
4074 cpos += num_clusters;
4075 }
4076
4077out:
4078 return ret;
4079}
4080
4081/*
4082 * change the new file's attributes to the src.
4083 *
4084 * reflink creates a snapshot of a file, that means the attributes
4085 * must be identical except for three exceptions - nlink, ino, and ctime.
4086 */
4087static int ocfs2_complete_reflink(struct inode *s_inode,
4088 struct buffer_head *s_bh,
4089 struct inode *t_inode,
4090 struct buffer_head *t_bh,
4091 bool preserve)
4092{
4093 int ret;
4094 handle_t *handle;
4095 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
4096 struct ocfs2_dinode *di = (struct ocfs2_dinode *)t_bh->b_data;
4097 loff_t size = i_size_read(s_inode);
4098
4099 handle = ocfs2_start_trans(OCFS2_SB(t_inode->i_sb),
4100 OCFS2_INODE_UPDATE_CREDITS);
4101 if (IS_ERR(handle)) {
4102 ret = PTR_ERR(handle);
4103 mlog_errno(ret);
4104 return ret;
4105 }
4106
4107 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4108 OCFS2_JOURNAL_ACCESS_WRITE);
4109 if (ret) {
4110 mlog_errno(ret);
4111 goto out_commit;
4112 }
4113
4114 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4115 OCFS2_I(t_inode)->ip_clusters = OCFS2_I(s_inode)->ip_clusters;
4116 OCFS2_I(t_inode)->ip_attr = OCFS2_I(s_inode)->ip_attr;
4117 OCFS2_I(t_inode)->ip_dyn_features = OCFS2_I(s_inode)->ip_dyn_features;
4118 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4119 i_size_write(t_inode, size);
4120 t_inode->i_blocks = s_inode->i_blocks;
4121
4122 di->i_xattr_inline_size = s_di->i_xattr_inline_size;
4123 di->i_clusters = s_di->i_clusters;
4124 di->i_size = s_di->i_size;
4125 di->i_dyn_features = s_di->i_dyn_features;
4126 di->i_attr = s_di->i_attr;
4127
4128 if (preserve) {
4129 t_inode->i_uid = s_inode->i_uid;
4130 t_inode->i_gid = s_inode->i_gid;
4131 t_inode->i_mode = s_inode->i_mode;
4132 di->i_uid = s_di->i_uid;
4133 di->i_gid = s_di->i_gid;
4134 di->i_mode = s_di->i_mode;
4135
4136 /*
4137 * update time.
4138 * we want mtime to appear identical to the source and
4139 * update ctime.
4140 */
4141 t_inode->i_ctime = CURRENT_TIME;
4142
4143 di->i_ctime = cpu_to_le64(t_inode->i_ctime.tv_sec);
4144 di->i_ctime_nsec = cpu_to_le32(t_inode->i_ctime.tv_nsec);
4145
4146 t_inode->i_mtime = s_inode->i_mtime;
4147 di->i_mtime = s_di->i_mtime;
4148 di->i_mtime_nsec = s_di->i_mtime_nsec;
4149 }
4150
4151 ocfs2_journal_dirty(handle, t_bh);
4152
4153out_commit:
4154 ocfs2_commit_trans(OCFS2_SB(t_inode->i_sb), handle);
4155 return ret;
4156}
4157
4158static int ocfs2_create_reflink_node(struct inode *s_inode,
4159 struct buffer_head *s_bh,
4160 struct inode *t_inode,
4161 struct buffer_head *t_bh,
4162 bool preserve)
4163{
4164 int ret;
4165 struct buffer_head *ref_root_bh = NULL;
4166 struct ocfs2_cached_dealloc_ctxt dealloc;
4167 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
4168 struct ocfs2_refcount_block *rb;
4169 struct ocfs2_dinode *di = (struct ocfs2_dinode *)s_bh->b_data;
4170 struct ocfs2_refcount_tree *ref_tree;
4171
4172 ocfs2_init_dealloc_ctxt(&dealloc);
4173
4174 ret = ocfs2_set_refcount_tree(t_inode, t_bh,
4175 le64_to_cpu(di->i_refcount_loc));
4176 if (ret) {
4177 mlog_errno(ret);
4178 goto out;
4179 }
4180
4181 if (OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4182 ret = ocfs2_duplicate_inline_data(s_inode, s_bh,
4183 t_inode, t_bh);
4184 if (ret)
4185 mlog_errno(ret);
4186 goto out;
4187 }
4188
4189 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
4190 1, &ref_tree, &ref_root_bh);
4191 if (ret) {
4192 mlog_errno(ret);
4193 goto out;
4194 }
4195 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
4196
4197 ret = ocfs2_duplicate_extent_list(s_inode, t_inode, t_bh,
4198 &ref_tree->rf_ci, ref_root_bh,
4199 &dealloc);
4200 if (ret) {
4201 mlog_errno(ret);
4202 goto out_unlock_refcount;
4203 }
4204
4205out_unlock_refcount:
4206 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4207 brelse(ref_root_bh);
4208out:
4209 if (ocfs2_dealloc_has_cluster(&dealloc)) {
4210 ocfs2_schedule_truncate_log_flush(osb, 1);
4211 ocfs2_run_deallocs(osb, &dealloc);
4212 }
4213
4214 return ret;
4215}
4216
4217static int __ocfs2_reflink(struct dentry *old_dentry,
4218 struct buffer_head *old_bh,
4219 struct inode *new_inode,
4220 bool preserve)
4221{
4222 int ret;
4223 struct inode *inode = old_dentry->d_inode;
4224 struct buffer_head *new_bh = NULL;
4225
4226 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
4227 ret = -EINVAL;
4228 mlog_errno(ret);
4229 goto out;
4230 }
4231
4232 ret = filemap_fdatawrite(inode->i_mapping);
4233 if (ret) {
4234 mlog_errno(ret);
4235 goto out;
4236 }
4237
4238 ret = ocfs2_attach_refcount_tree(inode, old_bh);
4239 if (ret) {
4240 mlog_errno(ret);
4241 goto out;
4242 }
4243
4244 mutex_lock_nested(&new_inode->i_mutex, I_MUTEX_CHILD);
4245 ret = ocfs2_inode_lock_nested(new_inode, &new_bh, 1,
4246 OI_LS_REFLINK_TARGET);
4247 if (ret) {
4248 mlog_errno(ret);
4249 goto out_unlock;
4250 }
4251
4252 ret = ocfs2_create_reflink_node(inode, old_bh,
4253 new_inode, new_bh, preserve);
4254 if (ret) {
4255 mlog_errno(ret);
4256 goto inode_unlock;
4257 }
4258
4259 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
4260 ret = ocfs2_reflink_xattrs(inode, old_bh,
4261 new_inode, new_bh,
4262 preserve);
4263 if (ret) {
4264 mlog_errno(ret);
4265 goto inode_unlock;
4266 }
4267 }
4268
4269 ret = ocfs2_complete_reflink(inode, old_bh,
4270 new_inode, new_bh, preserve);
4271 if (ret)
4272 mlog_errno(ret);
4273
4274inode_unlock:
4275 ocfs2_inode_unlock(new_inode, 1);
4276 brelse(new_bh);
4277out_unlock:
4278 mutex_unlock(&new_inode->i_mutex);
4279out:
4280 if (!ret) {
4281 ret = filemap_fdatawait(inode->i_mapping);
4282 if (ret)
4283 mlog_errno(ret);
4284 }
4285 return ret;
4286}
4287
4288static int ocfs2_reflink(struct dentry *old_dentry, struct inode *dir,
4289 struct dentry *new_dentry, bool preserve)
4290{
4291 int error;
4292 struct inode *inode = old_dentry->d_inode;
4293 struct buffer_head *old_bh = NULL;
4294 struct inode *new_orphan_inode = NULL;
4295
4296 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4297 return -EOPNOTSUPP;
4298
4299 error = ocfs2_create_inode_in_orphan(dir, inode->i_mode,
4300 &new_orphan_inode);
4301 if (error) {
4302 mlog_errno(error);
4303 goto out;
4304 }
4305
4306 error = ocfs2_inode_lock(inode, &old_bh, 1);
4307 if (error) {
4308 mlog_errno(error);
4309 goto out;
4310 }
4311
4312 down_write(&OCFS2_I(inode)->ip_xattr_sem);
4313 down_write(&OCFS2_I(inode)->ip_alloc_sem);
4314 error = __ocfs2_reflink(old_dentry, old_bh,
4315 new_orphan_inode, preserve);
4316 up_write(&OCFS2_I(inode)->ip_alloc_sem);
4317 up_write(&OCFS2_I(inode)->ip_xattr_sem);
4318
4319 ocfs2_inode_unlock(inode, 1);
4320 brelse(old_bh);
4321
4322 if (error) {
4323 mlog_errno(error);
4324 goto out;
4325 }
4326
4327 /* If the security isn't preserved, we need to re-initialize them. */
4328 if (!preserve) {
4329 error = ocfs2_init_security_and_acl(dir, new_orphan_inode,
4330 &new_dentry->d_name);
4331 if (error)
4332 mlog_errno(error);
4333 }
4334out:
4335 if (!error) {
4336 error = ocfs2_mv_orphaned_inode_to_new(dir, new_orphan_inode,
4337 new_dentry);
4338 if (error)
4339 mlog_errno(error);
4340 }
4341
4342 if (new_orphan_inode) {
4343 /*
4344 * We need to open_unlock the inode no matter whether we
4345 * succeed or not, so that other nodes can delete it later.
4346 */
4347 ocfs2_open_unlock(new_orphan_inode);
4348 if (error)
4349 iput(new_orphan_inode);
4350 }
4351
4352 return error;
4353}
4354
4355/*
4356 * Below here are the bits used by OCFS2_IOC_REFLINK() to fake
4357 * sys_reflink(). This will go away when vfs_reflink() exists in
4358 * fs/namei.c.
4359 */
4360
4361/* copied from may_create in VFS. */
4362static inline int ocfs2_may_create(struct inode *dir, struct dentry *child)
4363{
4364 if (child->d_inode)
4365 return -EEXIST;
4366 if (IS_DEADDIR(dir))
4367 return -ENOENT;
4368 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
4369}
4370
4371/**
4372 * ocfs2_vfs_reflink - Create a reference-counted link
4373 *
4374 * @old_dentry: source dentry + inode
4375 * @dir: directory to create the target
4376 * @new_dentry: target dentry
4377 * @preserve: if true, preserve all file attributes
4378 */
4379static int ocfs2_vfs_reflink(struct dentry *old_dentry, struct inode *dir,
4380 struct dentry *new_dentry, bool preserve)
4381{
4382 struct inode *inode = old_dentry->d_inode;
4383 int error;
4384
4385 if (!inode)
4386 return -ENOENT;
4387
4388 error = ocfs2_may_create(dir, new_dentry);
4389 if (error)
4390 return error;
4391
4392 if (dir->i_sb != inode->i_sb)
4393 return -EXDEV;
4394
4395 /*
4396 * A reflink to an append-only or immutable file cannot be created.
4397 */
4398 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4399 return -EPERM;
4400
4401 /* Only regular files can be reflinked. */
4402 if (!S_ISREG(inode->i_mode))
4403 return -EPERM;
4404
4405 /*
4406 * If the caller wants to preserve ownership, they require the
4407 * rights to do so.
4408 */
4409 if (preserve) {
4410 if ((current_fsuid() != inode->i_uid) && !capable(CAP_CHOWN))
4411 return -EPERM;
4412 if (!in_group_p(inode->i_gid) && !capable(CAP_CHOWN))
4413 return -EPERM;
4414 }
4415
4416 /*
4417 * If the caller is modifying any aspect of the attributes, they
4418 * are not creating a snapshot. They need read permission on the
4419 * file.
4420 */
4421 if (!preserve) {
4422 error = inode_permission(inode, MAY_READ);
4423 if (error)
4424 return error;
4425 }
4426
4427 mutex_lock(&inode->i_mutex);
4428 dquot_initialize(dir);
4429 error = ocfs2_reflink(old_dentry, dir, new_dentry, preserve);
4430 mutex_unlock(&inode->i_mutex);
4431 if (!error)
4432 fsnotify_create(dir, new_dentry);
4433 return error;
4434}
4435/*
4436 * Most codes are copied from sys_linkat.
4437 */
4438int ocfs2_reflink_ioctl(struct inode *inode,
4439 const char __user *oldname,
4440 const char __user *newname,
4441 bool preserve)
4442{
4443 struct dentry *new_dentry;
4444 struct path old_path, new_path;
4445 int error;
4446
4447 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4448 return -EOPNOTSUPP;
4449
4450 error = user_path_at(AT_FDCWD, oldname, 0, &old_path);
4451 if (error) {
4452 mlog_errno(error);
4453 return error;
4454 }
4455
4456 new_dentry = user_path_create(AT_FDCWD, newname, &new_path, 0);
4457 error = PTR_ERR(new_dentry);
4458 if (IS_ERR(new_dentry)) {
4459 mlog_errno(error);
4460 goto out;
4461 }
4462
4463 error = -EXDEV;
4464 if (old_path.mnt != new_path.mnt) {
4465 mlog_errno(error);
4466 goto out_dput;
4467 }
4468
4469 error = mnt_want_write(new_path.mnt);
4470 if (error) {
4471 mlog_errno(error);
4472 goto out_dput;
4473 }
4474
4475 error = ocfs2_vfs_reflink(old_path.dentry,
4476 new_path.dentry->d_inode,
4477 new_dentry, preserve);
4478 mnt_drop_write(new_path.mnt);
4479out_dput:
4480 dput(new_dentry);
4481 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
4482 path_put(&new_path);
4483out:
4484 path_put(&old_path);
4485
4486 return error;
4487}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * refcounttree.c
4 *
5 * Copyright (C) 2009 Oracle. All rights reserved.
6 */
7
8#include <linux/sort.h>
9#include <cluster/masklog.h>
10#include "ocfs2.h"
11#include "inode.h"
12#include "alloc.h"
13#include "suballoc.h"
14#include "journal.h"
15#include "uptodate.h"
16#include "super.h"
17#include "buffer_head_io.h"
18#include "blockcheck.h"
19#include "refcounttree.h"
20#include "sysfile.h"
21#include "dlmglue.h"
22#include "extent_map.h"
23#include "aops.h"
24#include "xattr.h"
25#include "namei.h"
26#include "ocfs2_trace.h"
27#include "file.h"
28
29#include <linux/bio.h>
30#include <linux/blkdev.h>
31#include <linux/slab.h>
32#include <linux/writeback.h>
33#include <linux/pagevec.h>
34#include <linux/swap.h>
35#include <linux/security.h>
36#include <linux/fsnotify.h>
37#include <linux/quotaops.h>
38#include <linux/namei.h>
39#include <linux/mount.h>
40#include <linux/posix_acl.h>
41
42struct ocfs2_cow_context {
43 struct inode *inode;
44 u32 cow_start;
45 u32 cow_len;
46 struct ocfs2_extent_tree data_et;
47 struct ocfs2_refcount_tree *ref_tree;
48 struct buffer_head *ref_root_bh;
49 struct ocfs2_alloc_context *meta_ac;
50 struct ocfs2_alloc_context *data_ac;
51 struct ocfs2_cached_dealloc_ctxt dealloc;
52 void *cow_object;
53 struct ocfs2_post_refcount *post_refcount;
54 int extra_credits;
55 int (*get_clusters)(struct ocfs2_cow_context *context,
56 u32 v_cluster, u32 *p_cluster,
57 u32 *num_clusters,
58 unsigned int *extent_flags);
59 int (*cow_duplicate_clusters)(handle_t *handle,
60 struct inode *inode,
61 u32 cpos, u32 old_cluster,
62 u32 new_cluster, u32 new_len);
63};
64
65static inline struct ocfs2_refcount_tree *
66cache_info_to_refcount(struct ocfs2_caching_info *ci)
67{
68 return container_of(ci, struct ocfs2_refcount_tree, rf_ci);
69}
70
71static int ocfs2_validate_refcount_block(struct super_block *sb,
72 struct buffer_head *bh)
73{
74 int rc;
75 struct ocfs2_refcount_block *rb =
76 (struct ocfs2_refcount_block *)bh->b_data;
77
78 trace_ocfs2_validate_refcount_block((unsigned long long)bh->b_blocknr);
79
80 BUG_ON(!buffer_uptodate(bh));
81
82 /*
83 * If the ecc fails, we return the error but otherwise
84 * leave the filesystem running. We know any error is
85 * local to this block.
86 */
87 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &rb->rf_check);
88 if (rc) {
89 mlog(ML_ERROR, "Checksum failed for refcount block %llu\n",
90 (unsigned long long)bh->b_blocknr);
91 return rc;
92 }
93
94
95 if (!OCFS2_IS_VALID_REFCOUNT_BLOCK(rb)) {
96 rc = ocfs2_error(sb,
97 "Refcount block #%llu has bad signature %.*s\n",
98 (unsigned long long)bh->b_blocknr, 7,
99 rb->rf_signature);
100 goto out;
101 }
102
103 if (le64_to_cpu(rb->rf_blkno) != bh->b_blocknr) {
104 rc = ocfs2_error(sb,
105 "Refcount block #%llu has an invalid rf_blkno of %llu\n",
106 (unsigned long long)bh->b_blocknr,
107 (unsigned long long)le64_to_cpu(rb->rf_blkno));
108 goto out;
109 }
110
111 if (le32_to_cpu(rb->rf_fs_generation) != OCFS2_SB(sb)->fs_generation) {
112 rc = ocfs2_error(sb,
113 "Refcount block #%llu has an invalid rf_fs_generation of #%u\n",
114 (unsigned long long)bh->b_blocknr,
115 le32_to_cpu(rb->rf_fs_generation));
116 goto out;
117 }
118out:
119 return rc;
120}
121
122static int ocfs2_read_refcount_block(struct ocfs2_caching_info *ci,
123 u64 rb_blkno,
124 struct buffer_head **bh)
125{
126 int rc;
127 struct buffer_head *tmp = *bh;
128
129 rc = ocfs2_read_block(ci, rb_blkno, &tmp,
130 ocfs2_validate_refcount_block);
131
132 /* If ocfs2_read_block() got us a new bh, pass it up. */
133 if (!rc && !*bh)
134 *bh = tmp;
135
136 return rc;
137}
138
139static u64 ocfs2_refcount_cache_owner(struct ocfs2_caching_info *ci)
140{
141 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
142
143 return rf->rf_blkno;
144}
145
146static struct super_block *
147ocfs2_refcount_cache_get_super(struct ocfs2_caching_info *ci)
148{
149 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
150
151 return rf->rf_sb;
152}
153
154static void ocfs2_refcount_cache_lock(struct ocfs2_caching_info *ci)
155__acquires(&rf->rf_lock)
156{
157 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
158
159 spin_lock(&rf->rf_lock);
160}
161
162static void ocfs2_refcount_cache_unlock(struct ocfs2_caching_info *ci)
163__releases(&rf->rf_lock)
164{
165 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
166
167 spin_unlock(&rf->rf_lock);
168}
169
170static void ocfs2_refcount_cache_io_lock(struct ocfs2_caching_info *ci)
171{
172 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
173
174 mutex_lock(&rf->rf_io_mutex);
175}
176
177static void ocfs2_refcount_cache_io_unlock(struct ocfs2_caching_info *ci)
178{
179 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
180
181 mutex_unlock(&rf->rf_io_mutex);
182}
183
184static const struct ocfs2_caching_operations ocfs2_refcount_caching_ops = {
185 .co_owner = ocfs2_refcount_cache_owner,
186 .co_get_super = ocfs2_refcount_cache_get_super,
187 .co_cache_lock = ocfs2_refcount_cache_lock,
188 .co_cache_unlock = ocfs2_refcount_cache_unlock,
189 .co_io_lock = ocfs2_refcount_cache_io_lock,
190 .co_io_unlock = ocfs2_refcount_cache_io_unlock,
191};
192
193static struct ocfs2_refcount_tree *
194ocfs2_find_refcount_tree(struct ocfs2_super *osb, u64 blkno)
195{
196 struct rb_node *n = osb->osb_rf_lock_tree.rb_node;
197 struct ocfs2_refcount_tree *tree = NULL;
198
199 while (n) {
200 tree = rb_entry(n, struct ocfs2_refcount_tree, rf_node);
201
202 if (blkno < tree->rf_blkno)
203 n = n->rb_left;
204 else if (blkno > tree->rf_blkno)
205 n = n->rb_right;
206 else
207 return tree;
208 }
209
210 return NULL;
211}
212
213/* osb_lock is already locked. */
214static void ocfs2_insert_refcount_tree(struct ocfs2_super *osb,
215 struct ocfs2_refcount_tree *new)
216{
217 u64 rf_blkno = new->rf_blkno;
218 struct rb_node *parent = NULL;
219 struct rb_node **p = &osb->osb_rf_lock_tree.rb_node;
220 struct ocfs2_refcount_tree *tmp;
221
222 while (*p) {
223 parent = *p;
224
225 tmp = rb_entry(parent, struct ocfs2_refcount_tree,
226 rf_node);
227
228 if (rf_blkno < tmp->rf_blkno)
229 p = &(*p)->rb_left;
230 else if (rf_blkno > tmp->rf_blkno)
231 p = &(*p)->rb_right;
232 else {
233 /* This should never happen! */
234 mlog(ML_ERROR, "Duplicate refcount block %llu found!\n",
235 (unsigned long long)rf_blkno);
236 BUG();
237 }
238 }
239
240 rb_link_node(&new->rf_node, parent, p);
241 rb_insert_color(&new->rf_node, &osb->osb_rf_lock_tree);
242}
243
244static void ocfs2_free_refcount_tree(struct ocfs2_refcount_tree *tree)
245{
246 ocfs2_metadata_cache_exit(&tree->rf_ci);
247 ocfs2_simple_drop_lockres(OCFS2_SB(tree->rf_sb), &tree->rf_lockres);
248 ocfs2_lock_res_free(&tree->rf_lockres);
249 kfree(tree);
250}
251
252static inline void
253ocfs2_erase_refcount_tree_from_list_no_lock(struct ocfs2_super *osb,
254 struct ocfs2_refcount_tree *tree)
255{
256 rb_erase(&tree->rf_node, &osb->osb_rf_lock_tree);
257 if (osb->osb_ref_tree_lru && osb->osb_ref_tree_lru == tree)
258 osb->osb_ref_tree_lru = NULL;
259}
260
261static void ocfs2_erase_refcount_tree_from_list(struct ocfs2_super *osb,
262 struct ocfs2_refcount_tree *tree)
263{
264 spin_lock(&osb->osb_lock);
265 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
266 spin_unlock(&osb->osb_lock);
267}
268
269static void ocfs2_kref_remove_refcount_tree(struct kref *kref)
270{
271 struct ocfs2_refcount_tree *tree =
272 container_of(kref, struct ocfs2_refcount_tree, rf_getcnt);
273
274 ocfs2_free_refcount_tree(tree);
275}
276
277static inline void
278ocfs2_refcount_tree_get(struct ocfs2_refcount_tree *tree)
279{
280 kref_get(&tree->rf_getcnt);
281}
282
283static inline void
284ocfs2_refcount_tree_put(struct ocfs2_refcount_tree *tree)
285{
286 kref_put(&tree->rf_getcnt, ocfs2_kref_remove_refcount_tree);
287}
288
289static inline void ocfs2_init_refcount_tree_ci(struct ocfs2_refcount_tree *new,
290 struct super_block *sb)
291{
292 ocfs2_metadata_cache_init(&new->rf_ci, &ocfs2_refcount_caching_ops);
293 mutex_init(&new->rf_io_mutex);
294 new->rf_sb = sb;
295 spin_lock_init(&new->rf_lock);
296}
297
298static inline void ocfs2_init_refcount_tree_lock(struct ocfs2_super *osb,
299 struct ocfs2_refcount_tree *new,
300 u64 rf_blkno, u32 generation)
301{
302 init_rwsem(&new->rf_sem);
303 ocfs2_refcount_lock_res_init(&new->rf_lockres, osb,
304 rf_blkno, generation);
305}
306
307static struct ocfs2_refcount_tree*
308ocfs2_allocate_refcount_tree(struct ocfs2_super *osb, u64 rf_blkno)
309{
310 struct ocfs2_refcount_tree *new;
311
312 new = kzalloc(sizeof(struct ocfs2_refcount_tree), GFP_NOFS);
313 if (!new)
314 return NULL;
315
316 new->rf_blkno = rf_blkno;
317 kref_init(&new->rf_getcnt);
318 ocfs2_init_refcount_tree_ci(new, osb->sb);
319
320 return new;
321}
322
323static int ocfs2_get_refcount_tree(struct ocfs2_super *osb, u64 rf_blkno,
324 struct ocfs2_refcount_tree **ret_tree)
325{
326 int ret = 0;
327 struct ocfs2_refcount_tree *tree, *new = NULL;
328 struct buffer_head *ref_root_bh = NULL;
329 struct ocfs2_refcount_block *ref_rb;
330
331 spin_lock(&osb->osb_lock);
332 if (osb->osb_ref_tree_lru &&
333 osb->osb_ref_tree_lru->rf_blkno == rf_blkno)
334 tree = osb->osb_ref_tree_lru;
335 else
336 tree = ocfs2_find_refcount_tree(osb, rf_blkno);
337 if (tree)
338 goto out;
339
340 spin_unlock(&osb->osb_lock);
341
342 new = ocfs2_allocate_refcount_tree(osb, rf_blkno);
343 if (!new) {
344 ret = -ENOMEM;
345 mlog_errno(ret);
346 return ret;
347 }
348 /*
349 * We need the generation to create the refcount tree lock and since
350 * it isn't changed during the tree modification, we are safe here to
351 * read without protection.
352 * We also have to purge the cache after we create the lock since the
353 * refcount block may have the stale data. It can only be trusted when
354 * we hold the refcount lock.
355 */
356 ret = ocfs2_read_refcount_block(&new->rf_ci, rf_blkno, &ref_root_bh);
357 if (ret) {
358 mlog_errno(ret);
359 ocfs2_metadata_cache_exit(&new->rf_ci);
360 kfree(new);
361 return ret;
362 }
363
364 ref_rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
365 new->rf_generation = le32_to_cpu(ref_rb->rf_generation);
366 ocfs2_init_refcount_tree_lock(osb, new, rf_blkno,
367 new->rf_generation);
368 ocfs2_metadata_cache_purge(&new->rf_ci);
369
370 spin_lock(&osb->osb_lock);
371 tree = ocfs2_find_refcount_tree(osb, rf_blkno);
372 if (tree)
373 goto out;
374
375 ocfs2_insert_refcount_tree(osb, new);
376
377 tree = new;
378 new = NULL;
379
380out:
381 *ret_tree = tree;
382
383 osb->osb_ref_tree_lru = tree;
384
385 spin_unlock(&osb->osb_lock);
386
387 if (new)
388 ocfs2_free_refcount_tree(new);
389
390 brelse(ref_root_bh);
391 return ret;
392}
393
394static int ocfs2_get_refcount_block(struct inode *inode, u64 *ref_blkno)
395{
396 int ret;
397 struct buffer_head *di_bh = NULL;
398 struct ocfs2_dinode *di;
399
400 ret = ocfs2_read_inode_block(inode, &di_bh);
401 if (ret) {
402 mlog_errno(ret);
403 goto out;
404 }
405
406 BUG_ON(!ocfs2_is_refcount_inode(inode));
407
408 di = (struct ocfs2_dinode *)di_bh->b_data;
409 *ref_blkno = le64_to_cpu(di->i_refcount_loc);
410 brelse(di_bh);
411out:
412 return ret;
413}
414
415static int __ocfs2_lock_refcount_tree(struct ocfs2_super *osb,
416 struct ocfs2_refcount_tree *tree, int rw)
417{
418 int ret;
419
420 ret = ocfs2_refcount_lock(tree, rw);
421 if (ret) {
422 mlog_errno(ret);
423 goto out;
424 }
425
426 if (rw)
427 down_write(&tree->rf_sem);
428 else
429 down_read(&tree->rf_sem);
430
431out:
432 return ret;
433}
434
435/*
436 * Lock the refcount tree pointed by ref_blkno and return the tree.
437 * In most case, we lock the tree and read the refcount block.
438 * So read it here if the caller really needs it.
439 *
440 * If the tree has been re-created by other node, it will free the
441 * old one and re-create it.
442 */
443int ocfs2_lock_refcount_tree(struct ocfs2_super *osb,
444 u64 ref_blkno, int rw,
445 struct ocfs2_refcount_tree **ret_tree,
446 struct buffer_head **ref_bh)
447{
448 int ret, delete_tree = 0;
449 struct ocfs2_refcount_tree *tree = NULL;
450 struct buffer_head *ref_root_bh = NULL;
451 struct ocfs2_refcount_block *rb;
452
453again:
454 ret = ocfs2_get_refcount_tree(osb, ref_blkno, &tree);
455 if (ret) {
456 mlog_errno(ret);
457 return ret;
458 }
459
460 ocfs2_refcount_tree_get(tree);
461
462 ret = __ocfs2_lock_refcount_tree(osb, tree, rw);
463 if (ret) {
464 mlog_errno(ret);
465 ocfs2_refcount_tree_put(tree);
466 goto out;
467 }
468
469 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
470 &ref_root_bh);
471 if (ret) {
472 mlog_errno(ret);
473 ocfs2_unlock_refcount_tree(osb, tree, rw);
474 goto out;
475 }
476
477 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
478 /*
479 * If the refcount block has been freed and re-created, we may need
480 * to recreate the refcount tree also.
481 *
482 * Here we just remove the tree from the rb-tree, and the last
483 * kref holder will unlock and delete this refcount_tree.
484 * Then we goto "again" and ocfs2_get_refcount_tree will create
485 * the new refcount tree for us.
486 */
487 if (tree->rf_generation != le32_to_cpu(rb->rf_generation)) {
488 if (!tree->rf_removed) {
489 ocfs2_erase_refcount_tree_from_list(osb, tree);
490 tree->rf_removed = 1;
491 delete_tree = 1;
492 }
493
494 ocfs2_unlock_refcount_tree(osb, tree, rw);
495 /*
496 * We get an extra reference when we create the refcount
497 * tree, so another put will destroy it.
498 */
499 if (delete_tree)
500 ocfs2_refcount_tree_put(tree);
501 brelse(ref_root_bh);
502 ref_root_bh = NULL;
503 goto again;
504 }
505
506 *ret_tree = tree;
507 if (ref_bh) {
508 *ref_bh = ref_root_bh;
509 ref_root_bh = NULL;
510 }
511out:
512 brelse(ref_root_bh);
513 return ret;
514}
515
516void ocfs2_unlock_refcount_tree(struct ocfs2_super *osb,
517 struct ocfs2_refcount_tree *tree, int rw)
518{
519 if (rw)
520 up_write(&tree->rf_sem);
521 else
522 up_read(&tree->rf_sem);
523
524 ocfs2_refcount_unlock(tree, rw);
525 ocfs2_refcount_tree_put(tree);
526}
527
528void ocfs2_purge_refcount_trees(struct ocfs2_super *osb)
529{
530 struct rb_node *node;
531 struct ocfs2_refcount_tree *tree;
532 struct rb_root *root = &osb->osb_rf_lock_tree;
533
534 while ((node = rb_last(root)) != NULL) {
535 tree = rb_entry(node, struct ocfs2_refcount_tree, rf_node);
536
537 trace_ocfs2_purge_refcount_trees(
538 (unsigned long long) tree->rf_blkno);
539
540 rb_erase(&tree->rf_node, root);
541 ocfs2_free_refcount_tree(tree);
542 }
543}
544
545/*
546 * Create a refcount tree for an inode.
547 * We take for granted that the inode is already locked.
548 */
549static int ocfs2_create_refcount_tree(struct inode *inode,
550 struct buffer_head *di_bh)
551{
552 int ret;
553 handle_t *handle = NULL;
554 struct ocfs2_alloc_context *meta_ac = NULL;
555 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
556 struct ocfs2_inode_info *oi = OCFS2_I(inode);
557 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
558 struct buffer_head *new_bh = NULL;
559 struct ocfs2_refcount_block *rb;
560 struct ocfs2_refcount_tree *new_tree = NULL, *tree = NULL;
561 u16 suballoc_bit_start;
562 u32 num_got;
563 u64 suballoc_loc, first_blkno;
564
565 BUG_ON(ocfs2_is_refcount_inode(inode));
566
567 trace_ocfs2_create_refcount_tree(
568 (unsigned long long)oi->ip_blkno);
569
570 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac);
571 if (ret) {
572 mlog_errno(ret);
573 goto out;
574 }
575
576 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_CREATE_CREDITS);
577 if (IS_ERR(handle)) {
578 ret = PTR_ERR(handle);
579 mlog_errno(ret);
580 goto out;
581 }
582
583 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
584 OCFS2_JOURNAL_ACCESS_WRITE);
585 if (ret) {
586 mlog_errno(ret);
587 goto out_commit;
588 }
589
590 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
591 &suballoc_bit_start, &num_got,
592 &first_blkno);
593 if (ret) {
594 mlog_errno(ret);
595 goto out_commit;
596 }
597
598 new_tree = ocfs2_allocate_refcount_tree(osb, first_blkno);
599 if (!new_tree) {
600 ret = -ENOMEM;
601 mlog_errno(ret);
602 goto out_commit;
603 }
604
605 new_bh = sb_getblk(inode->i_sb, first_blkno);
606 if (!new_bh) {
607 ret = -ENOMEM;
608 mlog_errno(ret);
609 goto out_commit;
610 }
611 ocfs2_set_new_buffer_uptodate(&new_tree->rf_ci, new_bh);
612
613 ret = ocfs2_journal_access_rb(handle, &new_tree->rf_ci, new_bh,
614 OCFS2_JOURNAL_ACCESS_CREATE);
615 if (ret) {
616 mlog_errno(ret);
617 goto out_commit;
618 }
619
620 /* Initialize ocfs2_refcount_block. */
621 rb = (struct ocfs2_refcount_block *)new_bh->b_data;
622 memset(rb, 0, inode->i_sb->s_blocksize);
623 strcpy((void *)rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
624 rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
625 rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
626 rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
627 rb->rf_fs_generation = cpu_to_le32(osb->fs_generation);
628 rb->rf_blkno = cpu_to_le64(first_blkno);
629 rb->rf_count = cpu_to_le32(1);
630 rb->rf_records.rl_count =
631 cpu_to_le16(ocfs2_refcount_recs_per_rb(osb->sb));
632 spin_lock(&osb->osb_lock);
633 rb->rf_generation = osb->s_next_generation++;
634 spin_unlock(&osb->osb_lock);
635
636 ocfs2_journal_dirty(handle, new_bh);
637
638 spin_lock(&oi->ip_lock);
639 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
640 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
641 di->i_refcount_loc = cpu_to_le64(first_blkno);
642 spin_unlock(&oi->ip_lock);
643
644 trace_ocfs2_create_refcount_tree_blkno((unsigned long long)first_blkno);
645
646 ocfs2_journal_dirty(handle, di_bh);
647
648 /*
649 * We have to init the tree lock here since it will use
650 * the generation number to create it.
651 */
652 new_tree->rf_generation = le32_to_cpu(rb->rf_generation);
653 ocfs2_init_refcount_tree_lock(osb, new_tree, first_blkno,
654 new_tree->rf_generation);
655
656 spin_lock(&osb->osb_lock);
657 tree = ocfs2_find_refcount_tree(osb, first_blkno);
658
659 /*
660 * We've just created a new refcount tree in this block. If
661 * we found a refcount tree on the ocfs2_super, it must be
662 * one we just deleted. We free the old tree before
663 * inserting the new tree.
664 */
665 BUG_ON(tree && tree->rf_generation == new_tree->rf_generation);
666 if (tree)
667 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
668 ocfs2_insert_refcount_tree(osb, new_tree);
669 spin_unlock(&osb->osb_lock);
670 new_tree = NULL;
671 if (tree)
672 ocfs2_refcount_tree_put(tree);
673
674out_commit:
675 ocfs2_commit_trans(osb, handle);
676
677out:
678 if (new_tree) {
679 ocfs2_metadata_cache_exit(&new_tree->rf_ci);
680 kfree(new_tree);
681 }
682
683 brelse(new_bh);
684 if (meta_ac)
685 ocfs2_free_alloc_context(meta_ac);
686
687 return ret;
688}
689
690static int ocfs2_set_refcount_tree(struct inode *inode,
691 struct buffer_head *di_bh,
692 u64 refcount_loc)
693{
694 int ret;
695 handle_t *handle = NULL;
696 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
697 struct ocfs2_inode_info *oi = OCFS2_I(inode);
698 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
699 struct buffer_head *ref_root_bh = NULL;
700 struct ocfs2_refcount_block *rb;
701 struct ocfs2_refcount_tree *ref_tree;
702
703 BUG_ON(ocfs2_is_refcount_inode(inode));
704
705 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
706 &ref_tree, &ref_root_bh);
707 if (ret) {
708 mlog_errno(ret);
709 return ret;
710 }
711
712 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_SET_CREDITS);
713 if (IS_ERR(handle)) {
714 ret = PTR_ERR(handle);
715 mlog_errno(ret);
716 goto out;
717 }
718
719 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
720 OCFS2_JOURNAL_ACCESS_WRITE);
721 if (ret) {
722 mlog_errno(ret);
723 goto out_commit;
724 }
725
726 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, ref_root_bh,
727 OCFS2_JOURNAL_ACCESS_WRITE);
728 if (ret) {
729 mlog_errno(ret);
730 goto out_commit;
731 }
732
733 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
734 le32_add_cpu(&rb->rf_count, 1);
735
736 ocfs2_journal_dirty(handle, ref_root_bh);
737
738 spin_lock(&oi->ip_lock);
739 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
740 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
741 di->i_refcount_loc = cpu_to_le64(refcount_loc);
742 spin_unlock(&oi->ip_lock);
743 ocfs2_journal_dirty(handle, di_bh);
744
745out_commit:
746 ocfs2_commit_trans(osb, handle);
747out:
748 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
749 brelse(ref_root_bh);
750
751 return ret;
752}
753
754int ocfs2_remove_refcount_tree(struct inode *inode, struct buffer_head *di_bh)
755{
756 int ret, delete_tree = 0;
757 handle_t *handle = NULL;
758 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
759 struct ocfs2_inode_info *oi = OCFS2_I(inode);
760 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
761 struct ocfs2_refcount_block *rb;
762 struct inode *alloc_inode = NULL;
763 struct buffer_head *alloc_bh = NULL;
764 struct buffer_head *blk_bh = NULL;
765 struct ocfs2_refcount_tree *ref_tree;
766 int credits = OCFS2_REFCOUNT_TREE_REMOVE_CREDITS;
767 u64 blk = 0, bg_blkno = 0, ref_blkno = le64_to_cpu(di->i_refcount_loc);
768 u16 bit = 0;
769
770 if (!ocfs2_is_refcount_inode(inode))
771 return 0;
772
773 BUG_ON(!ref_blkno);
774 ret = ocfs2_lock_refcount_tree(osb, ref_blkno, 1, &ref_tree, &blk_bh);
775 if (ret) {
776 mlog_errno(ret);
777 return ret;
778 }
779
780 rb = (struct ocfs2_refcount_block *)blk_bh->b_data;
781
782 /*
783 * If we are the last user, we need to free the block.
784 * So lock the allocator ahead.
785 */
786 if (le32_to_cpu(rb->rf_count) == 1) {
787 blk = le64_to_cpu(rb->rf_blkno);
788 bit = le16_to_cpu(rb->rf_suballoc_bit);
789 if (rb->rf_suballoc_loc)
790 bg_blkno = le64_to_cpu(rb->rf_suballoc_loc);
791 else
792 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
793
794 alloc_inode = ocfs2_get_system_file_inode(osb,
795 EXTENT_ALLOC_SYSTEM_INODE,
796 le16_to_cpu(rb->rf_suballoc_slot));
797 if (!alloc_inode) {
798 ret = -ENOMEM;
799 mlog_errno(ret);
800 goto out;
801 }
802 inode_lock(alloc_inode);
803
804 ret = ocfs2_inode_lock(alloc_inode, &alloc_bh, 1);
805 if (ret) {
806 mlog_errno(ret);
807 goto out_mutex;
808 }
809
810 credits += OCFS2_SUBALLOC_FREE;
811 }
812
813 handle = ocfs2_start_trans(osb, credits);
814 if (IS_ERR(handle)) {
815 ret = PTR_ERR(handle);
816 mlog_errno(ret);
817 goto out_unlock;
818 }
819
820 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
821 OCFS2_JOURNAL_ACCESS_WRITE);
822 if (ret) {
823 mlog_errno(ret);
824 goto out_commit;
825 }
826
827 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, blk_bh,
828 OCFS2_JOURNAL_ACCESS_WRITE);
829 if (ret) {
830 mlog_errno(ret);
831 goto out_commit;
832 }
833
834 spin_lock(&oi->ip_lock);
835 oi->ip_dyn_features &= ~OCFS2_HAS_REFCOUNT_FL;
836 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
837 di->i_refcount_loc = 0;
838 spin_unlock(&oi->ip_lock);
839 ocfs2_journal_dirty(handle, di_bh);
840
841 le32_add_cpu(&rb->rf_count , -1);
842 ocfs2_journal_dirty(handle, blk_bh);
843
844 if (!rb->rf_count) {
845 delete_tree = 1;
846 ocfs2_erase_refcount_tree_from_list(osb, ref_tree);
847 ret = ocfs2_free_suballoc_bits(handle, alloc_inode,
848 alloc_bh, bit, bg_blkno, 1);
849 if (ret)
850 mlog_errno(ret);
851 }
852
853out_commit:
854 ocfs2_commit_trans(osb, handle);
855out_unlock:
856 if (alloc_inode) {
857 ocfs2_inode_unlock(alloc_inode, 1);
858 brelse(alloc_bh);
859 }
860out_mutex:
861 if (alloc_inode) {
862 inode_unlock(alloc_inode);
863 iput(alloc_inode);
864 }
865out:
866 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
867 if (delete_tree)
868 ocfs2_refcount_tree_put(ref_tree);
869 brelse(blk_bh);
870
871 return ret;
872}
873
874static void ocfs2_find_refcount_rec_in_rl(struct ocfs2_caching_info *ci,
875 struct buffer_head *ref_leaf_bh,
876 u64 cpos, unsigned int len,
877 struct ocfs2_refcount_rec *ret_rec,
878 int *index)
879{
880 int i = 0;
881 struct ocfs2_refcount_block *rb =
882 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
883 struct ocfs2_refcount_rec *rec = NULL;
884
885 for (; i < le16_to_cpu(rb->rf_records.rl_used); i++) {
886 rec = &rb->rf_records.rl_recs[i];
887
888 if (le64_to_cpu(rec->r_cpos) +
889 le32_to_cpu(rec->r_clusters) <= cpos)
890 continue;
891 else if (le64_to_cpu(rec->r_cpos) > cpos)
892 break;
893
894 /* ok, cpos fail in this rec. Just return. */
895 if (ret_rec)
896 *ret_rec = *rec;
897 goto out;
898 }
899
900 if (ret_rec) {
901 /* We meet with a hole here, so fake the rec. */
902 ret_rec->r_cpos = cpu_to_le64(cpos);
903 ret_rec->r_refcount = 0;
904 if (i < le16_to_cpu(rb->rf_records.rl_used) &&
905 le64_to_cpu(rec->r_cpos) < cpos + len)
906 ret_rec->r_clusters =
907 cpu_to_le32(le64_to_cpu(rec->r_cpos) - cpos);
908 else
909 ret_rec->r_clusters = cpu_to_le32(len);
910 }
911
912out:
913 *index = i;
914}
915
916/*
917 * Try to remove refcount tree. The mechanism is:
918 * 1) Check whether i_clusters == 0, if no, exit.
919 * 2) check whether we have i_xattr_loc in dinode. if yes, exit.
920 * 3) Check whether we have inline xattr stored outside, if yes, exit.
921 * 4) Remove the tree.
922 */
923int ocfs2_try_remove_refcount_tree(struct inode *inode,
924 struct buffer_head *di_bh)
925{
926 int ret;
927 struct ocfs2_inode_info *oi = OCFS2_I(inode);
928 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
929
930 down_write(&oi->ip_xattr_sem);
931 down_write(&oi->ip_alloc_sem);
932
933 if (oi->ip_clusters)
934 goto out;
935
936 if ((oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) && di->i_xattr_loc)
937 goto out;
938
939 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL &&
940 ocfs2_has_inline_xattr_value_outside(inode, di))
941 goto out;
942
943 ret = ocfs2_remove_refcount_tree(inode, di_bh);
944 if (ret)
945 mlog_errno(ret);
946out:
947 up_write(&oi->ip_alloc_sem);
948 up_write(&oi->ip_xattr_sem);
949 return 0;
950}
951
952/*
953 * Find the end range for a leaf refcount block indicated by
954 * el->l_recs[index].e_blkno.
955 */
956static int ocfs2_get_refcount_cpos_end(struct ocfs2_caching_info *ci,
957 struct buffer_head *ref_root_bh,
958 struct ocfs2_extent_block *eb,
959 struct ocfs2_extent_list *el,
960 int index, u32 *cpos_end)
961{
962 int ret, i, subtree_root;
963 u32 cpos;
964 u64 blkno;
965 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
966 struct ocfs2_path *left_path = NULL, *right_path = NULL;
967 struct ocfs2_extent_tree et;
968 struct ocfs2_extent_list *tmp_el;
969
970 if (index < le16_to_cpu(el->l_next_free_rec) - 1) {
971 /*
972 * We have a extent rec after index, so just use the e_cpos
973 * of the next extent rec.
974 */
975 *cpos_end = le32_to_cpu(el->l_recs[index+1].e_cpos);
976 return 0;
977 }
978
979 if (!eb || !eb->h_next_leaf_blk) {
980 /*
981 * We are the last extent rec, so any high cpos should
982 * be stored in this leaf refcount block.
983 */
984 *cpos_end = UINT_MAX;
985 return 0;
986 }
987
988 /*
989 * If the extent block isn't the last one, we have to find
990 * the subtree root between this extent block and the next
991 * leaf extent block and get the corresponding e_cpos from
992 * the subroot. Otherwise we may corrupt the b-tree.
993 */
994 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
995
996 left_path = ocfs2_new_path_from_et(&et);
997 if (!left_path) {
998 ret = -ENOMEM;
999 mlog_errno(ret);
1000 goto out;
1001 }
1002
1003 cpos = le32_to_cpu(eb->h_list.l_recs[index].e_cpos);
1004 ret = ocfs2_find_path(ci, left_path, cpos);
1005 if (ret) {
1006 mlog_errno(ret);
1007 goto out;
1008 }
1009
1010 right_path = ocfs2_new_path_from_path(left_path);
1011 if (!right_path) {
1012 ret = -ENOMEM;
1013 mlog_errno(ret);
1014 goto out;
1015 }
1016
1017 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path, &cpos);
1018 if (ret) {
1019 mlog_errno(ret);
1020 goto out;
1021 }
1022
1023 ret = ocfs2_find_path(ci, right_path, cpos);
1024 if (ret) {
1025 mlog_errno(ret);
1026 goto out;
1027 }
1028
1029 subtree_root = ocfs2_find_subtree_root(&et, left_path,
1030 right_path);
1031
1032 tmp_el = left_path->p_node[subtree_root].el;
1033 blkno = left_path->p_node[subtree_root+1].bh->b_blocknr;
1034 for (i = 0; i < le16_to_cpu(tmp_el->l_next_free_rec); i++) {
1035 if (le64_to_cpu(tmp_el->l_recs[i].e_blkno) == blkno) {
1036 *cpos_end = le32_to_cpu(tmp_el->l_recs[i+1].e_cpos);
1037 break;
1038 }
1039 }
1040
1041 BUG_ON(i == le16_to_cpu(tmp_el->l_next_free_rec));
1042
1043out:
1044 ocfs2_free_path(left_path);
1045 ocfs2_free_path(right_path);
1046 return ret;
1047}
1048
1049/*
1050 * Given a cpos and len, try to find the refcount record which contains cpos.
1051 * 1. If cpos can be found in one refcount record, return the record.
1052 * 2. If cpos can't be found, return a fake record which start from cpos
1053 * and end at a small value between cpos+len and start of the next record.
1054 * This fake record has r_refcount = 0.
1055 */
1056static int ocfs2_get_refcount_rec(struct ocfs2_caching_info *ci,
1057 struct buffer_head *ref_root_bh,
1058 u64 cpos, unsigned int len,
1059 struct ocfs2_refcount_rec *ret_rec,
1060 int *index,
1061 struct buffer_head **ret_bh)
1062{
1063 int ret = 0, i, found;
1064 u32 low_cpos, cpos_end;
1065 struct ocfs2_extent_list *el;
1066 struct ocfs2_extent_rec *rec = NULL;
1067 struct ocfs2_extent_block *eb = NULL;
1068 struct buffer_head *eb_bh = NULL, *ref_leaf_bh = NULL;
1069 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1070 struct ocfs2_refcount_block *rb =
1071 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1072
1073 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)) {
1074 ocfs2_find_refcount_rec_in_rl(ci, ref_root_bh, cpos, len,
1075 ret_rec, index);
1076 *ret_bh = ref_root_bh;
1077 get_bh(ref_root_bh);
1078 return 0;
1079 }
1080
1081 el = &rb->rf_list;
1082 low_cpos = cpos & OCFS2_32BIT_POS_MASK;
1083
1084 if (el->l_tree_depth) {
1085 ret = ocfs2_find_leaf(ci, el, low_cpos, &eb_bh);
1086 if (ret) {
1087 mlog_errno(ret);
1088 goto out;
1089 }
1090
1091 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1092 el = &eb->h_list;
1093
1094 if (el->l_tree_depth) {
1095 ret = ocfs2_error(sb,
1096 "refcount tree %llu has non zero tree depth in leaf btree tree block %llu\n",
1097 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1098 (unsigned long long)eb_bh->b_blocknr);
1099 goto out;
1100 }
1101 }
1102
1103 found = 0;
1104 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1105 rec = &el->l_recs[i];
1106
1107 if (le32_to_cpu(rec->e_cpos) <= low_cpos) {
1108 found = 1;
1109 break;
1110 }
1111 }
1112
1113 if (found) {
1114 ret = ocfs2_get_refcount_cpos_end(ci, ref_root_bh,
1115 eb, el, i, &cpos_end);
1116 if (ret) {
1117 mlog_errno(ret);
1118 goto out;
1119 }
1120
1121 if (cpos_end < low_cpos + len)
1122 len = cpos_end - low_cpos;
1123 }
1124
1125 ret = ocfs2_read_refcount_block(ci, le64_to_cpu(rec->e_blkno),
1126 &ref_leaf_bh);
1127 if (ret) {
1128 mlog_errno(ret);
1129 goto out;
1130 }
1131
1132 ocfs2_find_refcount_rec_in_rl(ci, ref_leaf_bh, cpos, len,
1133 ret_rec, index);
1134 *ret_bh = ref_leaf_bh;
1135out:
1136 brelse(eb_bh);
1137 return ret;
1138}
1139
1140enum ocfs2_ref_rec_contig {
1141 REF_CONTIG_NONE = 0,
1142 REF_CONTIG_LEFT,
1143 REF_CONTIG_RIGHT,
1144 REF_CONTIG_LEFTRIGHT,
1145};
1146
1147static enum ocfs2_ref_rec_contig
1148 ocfs2_refcount_rec_adjacent(struct ocfs2_refcount_block *rb,
1149 int index)
1150{
1151 if ((rb->rf_records.rl_recs[index].r_refcount ==
1152 rb->rf_records.rl_recs[index + 1].r_refcount) &&
1153 (le64_to_cpu(rb->rf_records.rl_recs[index].r_cpos) +
1154 le32_to_cpu(rb->rf_records.rl_recs[index].r_clusters) ==
1155 le64_to_cpu(rb->rf_records.rl_recs[index + 1].r_cpos)))
1156 return REF_CONTIG_RIGHT;
1157
1158 return REF_CONTIG_NONE;
1159}
1160
1161static enum ocfs2_ref_rec_contig
1162 ocfs2_refcount_rec_contig(struct ocfs2_refcount_block *rb,
1163 int index)
1164{
1165 enum ocfs2_ref_rec_contig ret = REF_CONTIG_NONE;
1166
1167 if (index < le16_to_cpu(rb->rf_records.rl_used) - 1)
1168 ret = ocfs2_refcount_rec_adjacent(rb, index);
1169
1170 if (index > 0) {
1171 enum ocfs2_ref_rec_contig tmp;
1172
1173 tmp = ocfs2_refcount_rec_adjacent(rb, index - 1);
1174
1175 if (tmp == REF_CONTIG_RIGHT) {
1176 if (ret == REF_CONTIG_RIGHT)
1177 ret = REF_CONTIG_LEFTRIGHT;
1178 else
1179 ret = REF_CONTIG_LEFT;
1180 }
1181 }
1182
1183 return ret;
1184}
1185
1186static void ocfs2_rotate_refcount_rec_left(struct ocfs2_refcount_block *rb,
1187 int index)
1188{
1189 BUG_ON(rb->rf_records.rl_recs[index].r_refcount !=
1190 rb->rf_records.rl_recs[index+1].r_refcount);
1191
1192 le32_add_cpu(&rb->rf_records.rl_recs[index].r_clusters,
1193 le32_to_cpu(rb->rf_records.rl_recs[index+1].r_clusters));
1194
1195 if (index < le16_to_cpu(rb->rf_records.rl_used) - 2)
1196 memmove(&rb->rf_records.rl_recs[index + 1],
1197 &rb->rf_records.rl_recs[index + 2],
1198 sizeof(struct ocfs2_refcount_rec) *
1199 (le16_to_cpu(rb->rf_records.rl_used) - index - 2));
1200
1201 memset(&rb->rf_records.rl_recs[le16_to_cpu(rb->rf_records.rl_used) - 1],
1202 0, sizeof(struct ocfs2_refcount_rec));
1203 le16_add_cpu(&rb->rf_records.rl_used, -1);
1204}
1205
1206/*
1207 * Merge the refcount rec if we are contiguous with the adjacent recs.
1208 */
1209static void ocfs2_refcount_rec_merge(struct ocfs2_refcount_block *rb,
1210 int index)
1211{
1212 enum ocfs2_ref_rec_contig contig =
1213 ocfs2_refcount_rec_contig(rb, index);
1214
1215 if (contig == REF_CONTIG_NONE)
1216 return;
1217
1218 if (contig == REF_CONTIG_LEFT || contig == REF_CONTIG_LEFTRIGHT) {
1219 BUG_ON(index == 0);
1220 index--;
1221 }
1222
1223 ocfs2_rotate_refcount_rec_left(rb, index);
1224
1225 if (contig == REF_CONTIG_LEFTRIGHT)
1226 ocfs2_rotate_refcount_rec_left(rb, index);
1227}
1228
1229/*
1230 * Change the refcount indexed by "index" in ref_bh.
1231 * If refcount reaches 0, remove it.
1232 */
1233static int ocfs2_change_refcount_rec(handle_t *handle,
1234 struct ocfs2_caching_info *ci,
1235 struct buffer_head *ref_leaf_bh,
1236 int index, int merge, int change)
1237{
1238 int ret;
1239 struct ocfs2_refcount_block *rb =
1240 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1241 struct ocfs2_refcount_list *rl = &rb->rf_records;
1242 struct ocfs2_refcount_rec *rec = &rl->rl_recs[index];
1243
1244 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1245 OCFS2_JOURNAL_ACCESS_WRITE);
1246 if (ret) {
1247 mlog_errno(ret);
1248 goto out;
1249 }
1250
1251 trace_ocfs2_change_refcount_rec(
1252 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1253 index, le32_to_cpu(rec->r_refcount), change);
1254 le32_add_cpu(&rec->r_refcount, change);
1255
1256 if (!rec->r_refcount) {
1257 if (index != le16_to_cpu(rl->rl_used) - 1) {
1258 memmove(rec, rec + 1,
1259 (le16_to_cpu(rl->rl_used) - index - 1) *
1260 sizeof(struct ocfs2_refcount_rec));
1261 memset(&rl->rl_recs[le16_to_cpu(rl->rl_used) - 1],
1262 0, sizeof(struct ocfs2_refcount_rec));
1263 }
1264
1265 le16_add_cpu(&rl->rl_used, -1);
1266 } else if (merge)
1267 ocfs2_refcount_rec_merge(rb, index);
1268
1269 ocfs2_journal_dirty(handle, ref_leaf_bh);
1270out:
1271 return ret;
1272}
1273
1274static int ocfs2_expand_inline_ref_root(handle_t *handle,
1275 struct ocfs2_caching_info *ci,
1276 struct buffer_head *ref_root_bh,
1277 struct buffer_head **ref_leaf_bh,
1278 struct ocfs2_alloc_context *meta_ac)
1279{
1280 int ret;
1281 u16 suballoc_bit_start;
1282 u32 num_got;
1283 u64 suballoc_loc, blkno;
1284 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1285 struct buffer_head *new_bh = NULL;
1286 struct ocfs2_refcount_block *new_rb;
1287 struct ocfs2_refcount_block *root_rb =
1288 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1289
1290 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1291 OCFS2_JOURNAL_ACCESS_WRITE);
1292 if (ret) {
1293 mlog_errno(ret);
1294 goto out;
1295 }
1296
1297 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
1298 &suballoc_bit_start, &num_got,
1299 &blkno);
1300 if (ret) {
1301 mlog_errno(ret);
1302 goto out;
1303 }
1304
1305 new_bh = sb_getblk(sb, blkno);
1306 if (new_bh == NULL) {
1307 ret = -ENOMEM;
1308 mlog_errno(ret);
1309 goto out;
1310 }
1311 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1312
1313 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1314 OCFS2_JOURNAL_ACCESS_CREATE);
1315 if (ret) {
1316 mlog_errno(ret);
1317 goto out;
1318 }
1319
1320 /*
1321 * Initialize ocfs2_refcount_block.
1322 * It should contain the same information as the old root.
1323 * so just memcpy it and change the corresponding field.
1324 */
1325 memcpy(new_bh->b_data, ref_root_bh->b_data, sb->s_blocksize);
1326
1327 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1328 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
1329 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
1330 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1331 new_rb->rf_blkno = cpu_to_le64(blkno);
1332 new_rb->rf_cpos = cpu_to_le32(0);
1333 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1334 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1335 ocfs2_journal_dirty(handle, new_bh);
1336
1337 /* Now change the root. */
1338 memset(&root_rb->rf_list, 0, sb->s_blocksize -
1339 offsetof(struct ocfs2_refcount_block, rf_list));
1340 root_rb->rf_list.l_count = cpu_to_le16(ocfs2_extent_recs_per_rb(sb));
1341 root_rb->rf_clusters = cpu_to_le32(1);
1342 root_rb->rf_list.l_next_free_rec = cpu_to_le16(1);
1343 root_rb->rf_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
1344 root_rb->rf_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
1345 root_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_TREE_FL);
1346
1347 ocfs2_journal_dirty(handle, ref_root_bh);
1348
1349 trace_ocfs2_expand_inline_ref_root((unsigned long long)blkno,
1350 le16_to_cpu(new_rb->rf_records.rl_used));
1351
1352 *ref_leaf_bh = new_bh;
1353 new_bh = NULL;
1354out:
1355 brelse(new_bh);
1356 return ret;
1357}
1358
1359static int ocfs2_refcount_rec_no_intersect(struct ocfs2_refcount_rec *prev,
1360 struct ocfs2_refcount_rec *next)
1361{
1362 if (ocfs2_get_ref_rec_low_cpos(prev) + le32_to_cpu(prev->r_clusters) <=
1363 ocfs2_get_ref_rec_low_cpos(next))
1364 return 1;
1365
1366 return 0;
1367}
1368
1369static int cmp_refcount_rec_by_low_cpos(const void *a, const void *b)
1370{
1371 const struct ocfs2_refcount_rec *l = a, *r = b;
1372 u32 l_cpos = ocfs2_get_ref_rec_low_cpos(l);
1373 u32 r_cpos = ocfs2_get_ref_rec_low_cpos(r);
1374
1375 if (l_cpos > r_cpos)
1376 return 1;
1377 if (l_cpos < r_cpos)
1378 return -1;
1379 return 0;
1380}
1381
1382static int cmp_refcount_rec_by_cpos(const void *a, const void *b)
1383{
1384 const struct ocfs2_refcount_rec *l = a, *r = b;
1385 u64 l_cpos = le64_to_cpu(l->r_cpos);
1386 u64 r_cpos = le64_to_cpu(r->r_cpos);
1387
1388 if (l_cpos > r_cpos)
1389 return 1;
1390 if (l_cpos < r_cpos)
1391 return -1;
1392 return 0;
1393}
1394
1395static void swap_refcount_rec(void *a, void *b, int size)
1396{
1397 struct ocfs2_refcount_rec *l = a, *r = b;
1398
1399 swap(*l, *r);
1400}
1401
1402/*
1403 * The refcount cpos are ordered by their 64bit cpos,
1404 * But we will use the low 32 bit to be the e_cpos in the b-tree.
1405 * So we need to make sure that this pos isn't intersected with others.
1406 *
1407 * Note: The refcount block is already sorted by their low 32 bit cpos,
1408 * So just try the middle pos first, and we will exit when we find
1409 * the good position.
1410 */
1411static int ocfs2_find_refcount_split_pos(struct ocfs2_refcount_list *rl,
1412 u32 *split_pos, int *split_index)
1413{
1414 int num_used = le16_to_cpu(rl->rl_used);
1415 int delta, middle = num_used / 2;
1416
1417 for (delta = 0; delta < middle; delta++) {
1418 /* Let's check delta earlier than middle */
1419 if (ocfs2_refcount_rec_no_intersect(
1420 &rl->rl_recs[middle - delta - 1],
1421 &rl->rl_recs[middle - delta])) {
1422 *split_index = middle - delta;
1423 break;
1424 }
1425
1426 /* For even counts, don't walk off the end */
1427 if ((middle + delta + 1) == num_used)
1428 continue;
1429
1430 /* Now try delta past middle */
1431 if (ocfs2_refcount_rec_no_intersect(
1432 &rl->rl_recs[middle + delta],
1433 &rl->rl_recs[middle + delta + 1])) {
1434 *split_index = middle + delta + 1;
1435 break;
1436 }
1437 }
1438
1439 if (delta >= middle)
1440 return -ENOSPC;
1441
1442 *split_pos = ocfs2_get_ref_rec_low_cpos(&rl->rl_recs[*split_index]);
1443 return 0;
1444}
1445
1446static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh,
1447 struct buffer_head *new_bh,
1448 u32 *split_cpos)
1449{
1450 int split_index = 0, num_moved, ret;
1451 u32 cpos = 0;
1452 struct ocfs2_refcount_block *rb =
1453 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1454 struct ocfs2_refcount_list *rl = &rb->rf_records;
1455 struct ocfs2_refcount_block *new_rb =
1456 (struct ocfs2_refcount_block *)new_bh->b_data;
1457 struct ocfs2_refcount_list *new_rl = &new_rb->rf_records;
1458
1459 trace_ocfs2_divide_leaf_refcount_block(
1460 (unsigned long long)ref_leaf_bh->b_blocknr,
1461 le16_to_cpu(rl->rl_count), le16_to_cpu(rl->rl_used));
1462
1463 /*
1464 * XXX: Improvement later.
1465 * If we know all the high 32 bit cpos is the same, no need to sort.
1466 *
1467 * In order to make the whole process safe, we do:
1468 * 1. sort the entries by their low 32 bit cpos first so that we can
1469 * find the split cpos easily.
1470 * 2. call ocfs2_insert_extent to insert the new refcount block.
1471 * 3. move the refcount rec to the new block.
1472 * 4. sort the entries by their 64 bit cpos.
1473 * 5. dirty the new_rb and rb.
1474 */
1475 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1476 sizeof(struct ocfs2_refcount_rec),
1477 cmp_refcount_rec_by_low_cpos, swap_refcount_rec);
1478
1479 ret = ocfs2_find_refcount_split_pos(rl, &cpos, &split_index);
1480 if (ret) {
1481 mlog_errno(ret);
1482 return ret;
1483 }
1484
1485 new_rb->rf_cpos = cpu_to_le32(cpos);
1486
1487 /* move refcount records starting from split_index to the new block. */
1488 num_moved = le16_to_cpu(rl->rl_used) - split_index;
1489 memcpy(new_rl->rl_recs, &rl->rl_recs[split_index],
1490 num_moved * sizeof(struct ocfs2_refcount_rec));
1491
1492 /*ok, remove the entries we just moved over to the other block. */
1493 memset(&rl->rl_recs[split_index], 0,
1494 num_moved * sizeof(struct ocfs2_refcount_rec));
1495
1496 /* change old and new rl_used accordingly. */
1497 le16_add_cpu(&rl->rl_used, -num_moved);
1498 new_rl->rl_used = cpu_to_le16(num_moved);
1499
1500 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1501 sizeof(struct ocfs2_refcount_rec),
1502 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1503
1504 sort(&new_rl->rl_recs, le16_to_cpu(new_rl->rl_used),
1505 sizeof(struct ocfs2_refcount_rec),
1506 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1507
1508 *split_cpos = cpos;
1509 return 0;
1510}
1511
1512static int ocfs2_new_leaf_refcount_block(handle_t *handle,
1513 struct ocfs2_caching_info *ci,
1514 struct buffer_head *ref_root_bh,
1515 struct buffer_head *ref_leaf_bh,
1516 struct ocfs2_alloc_context *meta_ac)
1517{
1518 int ret;
1519 u16 suballoc_bit_start;
1520 u32 num_got, new_cpos;
1521 u64 suballoc_loc, blkno;
1522 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1523 struct ocfs2_refcount_block *root_rb =
1524 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1525 struct buffer_head *new_bh = NULL;
1526 struct ocfs2_refcount_block *new_rb;
1527 struct ocfs2_extent_tree ref_et;
1528
1529 BUG_ON(!(le32_to_cpu(root_rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL));
1530
1531 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1532 OCFS2_JOURNAL_ACCESS_WRITE);
1533 if (ret) {
1534 mlog_errno(ret);
1535 goto out;
1536 }
1537
1538 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1539 OCFS2_JOURNAL_ACCESS_WRITE);
1540 if (ret) {
1541 mlog_errno(ret);
1542 goto out;
1543 }
1544
1545 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
1546 &suballoc_bit_start, &num_got,
1547 &blkno);
1548 if (ret) {
1549 mlog_errno(ret);
1550 goto out;
1551 }
1552
1553 new_bh = sb_getblk(sb, blkno);
1554 if (new_bh == NULL) {
1555 ret = -ENOMEM;
1556 mlog_errno(ret);
1557 goto out;
1558 }
1559 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1560
1561 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1562 OCFS2_JOURNAL_ACCESS_CREATE);
1563 if (ret) {
1564 mlog_errno(ret);
1565 goto out;
1566 }
1567
1568 /* Initialize ocfs2_refcount_block. */
1569 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1570 memset(new_rb, 0, sb->s_blocksize);
1571 strcpy((void *)new_rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
1572 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
1573 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
1574 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1575 new_rb->rf_fs_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
1576 new_rb->rf_blkno = cpu_to_le64(blkno);
1577 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1578 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1579 new_rb->rf_records.rl_count =
1580 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
1581 new_rb->rf_generation = root_rb->rf_generation;
1582
1583 ret = ocfs2_divide_leaf_refcount_block(ref_leaf_bh, new_bh, &new_cpos);
1584 if (ret) {
1585 mlog_errno(ret);
1586 goto out;
1587 }
1588
1589 ocfs2_journal_dirty(handle, ref_leaf_bh);
1590 ocfs2_journal_dirty(handle, new_bh);
1591
1592 ocfs2_init_refcount_extent_tree(&ref_et, ci, ref_root_bh);
1593
1594 trace_ocfs2_new_leaf_refcount_block(
1595 (unsigned long long)new_bh->b_blocknr, new_cpos);
1596
1597 /* Insert the new leaf block with the specific offset cpos. */
1598 ret = ocfs2_insert_extent(handle, &ref_et, new_cpos, new_bh->b_blocknr,
1599 1, 0, meta_ac);
1600 if (ret)
1601 mlog_errno(ret);
1602
1603out:
1604 brelse(new_bh);
1605 return ret;
1606}
1607
1608static int ocfs2_expand_refcount_tree(handle_t *handle,
1609 struct ocfs2_caching_info *ci,
1610 struct buffer_head *ref_root_bh,
1611 struct buffer_head *ref_leaf_bh,
1612 struct ocfs2_alloc_context *meta_ac)
1613{
1614 int ret;
1615 struct buffer_head *expand_bh = NULL;
1616
1617 if (ref_root_bh == ref_leaf_bh) {
1618 /*
1619 * the old root bh hasn't been expanded to a b-tree,
1620 * so expand it first.
1621 */
1622 ret = ocfs2_expand_inline_ref_root(handle, ci, ref_root_bh,
1623 &expand_bh, meta_ac);
1624 if (ret) {
1625 mlog_errno(ret);
1626 goto out;
1627 }
1628 } else {
1629 expand_bh = ref_leaf_bh;
1630 get_bh(expand_bh);
1631 }
1632
1633
1634 /* Now add a new refcount block into the tree.*/
1635 ret = ocfs2_new_leaf_refcount_block(handle, ci, ref_root_bh,
1636 expand_bh, meta_ac);
1637 if (ret)
1638 mlog_errno(ret);
1639out:
1640 brelse(expand_bh);
1641 return ret;
1642}
1643
1644/*
1645 * Adjust the extent rec in b-tree representing ref_leaf_bh.
1646 *
1647 * Only called when we have inserted a new refcount rec at index 0
1648 * which means ocfs2_extent_rec.e_cpos may need some change.
1649 */
1650static int ocfs2_adjust_refcount_rec(handle_t *handle,
1651 struct ocfs2_caching_info *ci,
1652 struct buffer_head *ref_root_bh,
1653 struct buffer_head *ref_leaf_bh,
1654 struct ocfs2_refcount_rec *rec)
1655{
1656 int ret = 0, i;
1657 u32 new_cpos, old_cpos;
1658 struct ocfs2_path *path = NULL;
1659 struct ocfs2_extent_tree et;
1660 struct ocfs2_refcount_block *rb =
1661 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1662 struct ocfs2_extent_list *el;
1663
1664 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL))
1665 goto out;
1666
1667 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1668 old_cpos = le32_to_cpu(rb->rf_cpos);
1669 new_cpos = le64_to_cpu(rec->r_cpos) & OCFS2_32BIT_POS_MASK;
1670 if (old_cpos <= new_cpos)
1671 goto out;
1672
1673 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1674
1675 path = ocfs2_new_path_from_et(&et);
1676 if (!path) {
1677 ret = -ENOMEM;
1678 mlog_errno(ret);
1679 goto out;
1680 }
1681
1682 ret = ocfs2_find_path(ci, path, old_cpos);
1683 if (ret) {
1684 mlog_errno(ret);
1685 goto out;
1686 }
1687
1688 /*
1689 * 2 more credits, one for the leaf refcount block, one for
1690 * the extent block contains the extent rec.
1691 */
1692 ret = ocfs2_extend_trans(handle, 2);
1693 if (ret < 0) {
1694 mlog_errno(ret);
1695 goto out;
1696 }
1697
1698 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1699 OCFS2_JOURNAL_ACCESS_WRITE);
1700 if (ret < 0) {
1701 mlog_errno(ret);
1702 goto out;
1703 }
1704
1705 ret = ocfs2_journal_access_eb(handle, ci, path_leaf_bh(path),
1706 OCFS2_JOURNAL_ACCESS_WRITE);
1707 if (ret < 0) {
1708 mlog_errno(ret);
1709 goto out;
1710 }
1711
1712 /* change the leaf extent block first. */
1713 el = path_leaf_el(path);
1714
1715 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++)
1716 if (le32_to_cpu(el->l_recs[i].e_cpos) == old_cpos)
1717 break;
1718
1719 BUG_ON(i == le16_to_cpu(el->l_next_free_rec));
1720
1721 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
1722
1723 /* change the r_cpos in the leaf block. */
1724 rb->rf_cpos = cpu_to_le32(new_cpos);
1725
1726 ocfs2_journal_dirty(handle, path_leaf_bh(path));
1727 ocfs2_journal_dirty(handle, ref_leaf_bh);
1728
1729out:
1730 ocfs2_free_path(path);
1731 return ret;
1732}
1733
1734static int ocfs2_insert_refcount_rec(handle_t *handle,
1735 struct ocfs2_caching_info *ci,
1736 struct buffer_head *ref_root_bh,
1737 struct buffer_head *ref_leaf_bh,
1738 struct ocfs2_refcount_rec *rec,
1739 int index, int merge,
1740 struct ocfs2_alloc_context *meta_ac)
1741{
1742 int ret;
1743 struct ocfs2_refcount_block *rb =
1744 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1745 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1746 struct buffer_head *new_bh = NULL;
1747
1748 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1749
1750 if (rf_list->rl_used == rf_list->rl_count) {
1751 u64 cpos = le64_to_cpu(rec->r_cpos);
1752 u32 len = le32_to_cpu(rec->r_clusters);
1753
1754 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1755 ref_leaf_bh, meta_ac);
1756 if (ret) {
1757 mlog_errno(ret);
1758 goto out;
1759 }
1760
1761 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1762 cpos, len, NULL, &index,
1763 &new_bh);
1764 if (ret) {
1765 mlog_errno(ret);
1766 goto out;
1767 }
1768
1769 ref_leaf_bh = new_bh;
1770 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1771 rf_list = &rb->rf_records;
1772 }
1773
1774 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1775 OCFS2_JOURNAL_ACCESS_WRITE);
1776 if (ret) {
1777 mlog_errno(ret);
1778 goto out;
1779 }
1780
1781 if (index < le16_to_cpu(rf_list->rl_used))
1782 memmove(&rf_list->rl_recs[index + 1],
1783 &rf_list->rl_recs[index],
1784 (le16_to_cpu(rf_list->rl_used) - index) *
1785 sizeof(struct ocfs2_refcount_rec));
1786
1787 trace_ocfs2_insert_refcount_rec(
1788 (unsigned long long)ref_leaf_bh->b_blocknr, index,
1789 (unsigned long long)le64_to_cpu(rec->r_cpos),
1790 le32_to_cpu(rec->r_clusters), le32_to_cpu(rec->r_refcount));
1791
1792 rf_list->rl_recs[index] = *rec;
1793
1794 le16_add_cpu(&rf_list->rl_used, 1);
1795
1796 if (merge)
1797 ocfs2_refcount_rec_merge(rb, index);
1798
1799 ocfs2_journal_dirty(handle, ref_leaf_bh);
1800
1801 if (index == 0) {
1802 ret = ocfs2_adjust_refcount_rec(handle, ci,
1803 ref_root_bh,
1804 ref_leaf_bh, rec);
1805 if (ret)
1806 mlog_errno(ret);
1807 }
1808out:
1809 brelse(new_bh);
1810 return ret;
1811}
1812
1813/*
1814 * Split the refcount_rec indexed by "index" in ref_leaf_bh.
1815 * This is much simple than our b-tree code.
1816 * split_rec is the new refcount rec we want to insert.
1817 * If split_rec->r_refcount > 0, we are changing the refcount(in case we
1818 * increase refcount or decrease a refcount to non-zero).
1819 * If split_rec->r_refcount == 0, we are punching a hole in current refcount
1820 * rec( in case we decrease a refcount to zero).
1821 */
1822static int ocfs2_split_refcount_rec(handle_t *handle,
1823 struct ocfs2_caching_info *ci,
1824 struct buffer_head *ref_root_bh,
1825 struct buffer_head *ref_leaf_bh,
1826 struct ocfs2_refcount_rec *split_rec,
1827 int index, int merge,
1828 struct ocfs2_alloc_context *meta_ac,
1829 struct ocfs2_cached_dealloc_ctxt *dealloc)
1830{
1831 int ret, recs_need;
1832 u32 len;
1833 struct ocfs2_refcount_block *rb =
1834 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1835 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1836 struct ocfs2_refcount_rec *orig_rec = &rf_list->rl_recs[index];
1837 struct ocfs2_refcount_rec *tail_rec = NULL;
1838 struct buffer_head *new_bh = NULL;
1839
1840 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1841
1842 trace_ocfs2_split_refcount_rec(le64_to_cpu(orig_rec->r_cpos),
1843 le32_to_cpu(orig_rec->r_clusters),
1844 le32_to_cpu(orig_rec->r_refcount),
1845 le64_to_cpu(split_rec->r_cpos),
1846 le32_to_cpu(split_rec->r_clusters),
1847 le32_to_cpu(split_rec->r_refcount));
1848
1849 /*
1850 * If we just need to split the header or tail clusters,
1851 * no more recs are needed, just split is OK.
1852 * Otherwise we at least need one new recs.
1853 */
1854 if (!split_rec->r_refcount &&
1855 (split_rec->r_cpos == orig_rec->r_cpos ||
1856 le64_to_cpu(split_rec->r_cpos) +
1857 le32_to_cpu(split_rec->r_clusters) ==
1858 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1859 recs_need = 0;
1860 else
1861 recs_need = 1;
1862
1863 /*
1864 * We need one more rec if we split in the middle and the new rec have
1865 * some refcount in it.
1866 */
1867 if (split_rec->r_refcount &&
1868 (split_rec->r_cpos != orig_rec->r_cpos &&
1869 le64_to_cpu(split_rec->r_cpos) +
1870 le32_to_cpu(split_rec->r_clusters) !=
1871 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1872 recs_need++;
1873
1874 /* If the leaf block don't have enough record, expand it. */
1875 if (le16_to_cpu(rf_list->rl_used) + recs_need >
1876 le16_to_cpu(rf_list->rl_count)) {
1877 struct ocfs2_refcount_rec tmp_rec;
1878 u64 cpos = le64_to_cpu(orig_rec->r_cpos);
1879 len = le32_to_cpu(orig_rec->r_clusters);
1880 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1881 ref_leaf_bh, meta_ac);
1882 if (ret) {
1883 mlog_errno(ret);
1884 goto out;
1885 }
1886
1887 /*
1888 * We have to re-get it since now cpos may be moved to
1889 * another leaf block.
1890 */
1891 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1892 cpos, len, &tmp_rec, &index,
1893 &new_bh);
1894 if (ret) {
1895 mlog_errno(ret);
1896 goto out;
1897 }
1898
1899 ref_leaf_bh = new_bh;
1900 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1901 rf_list = &rb->rf_records;
1902 orig_rec = &rf_list->rl_recs[index];
1903 }
1904
1905 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1906 OCFS2_JOURNAL_ACCESS_WRITE);
1907 if (ret) {
1908 mlog_errno(ret);
1909 goto out;
1910 }
1911
1912 /*
1913 * We have calculated out how many new records we need and store
1914 * in recs_need, so spare enough space first by moving the records
1915 * after "index" to the end.
1916 */
1917 if (index != le16_to_cpu(rf_list->rl_used) - 1)
1918 memmove(&rf_list->rl_recs[index + 1 + recs_need],
1919 &rf_list->rl_recs[index + 1],
1920 (le16_to_cpu(rf_list->rl_used) - index - 1) *
1921 sizeof(struct ocfs2_refcount_rec));
1922
1923 len = (le64_to_cpu(orig_rec->r_cpos) +
1924 le32_to_cpu(orig_rec->r_clusters)) -
1925 (le64_to_cpu(split_rec->r_cpos) +
1926 le32_to_cpu(split_rec->r_clusters));
1927
1928 /*
1929 * If we have "len", the we will split in the tail and move it
1930 * to the end of the space we have just spared.
1931 */
1932 if (len) {
1933 tail_rec = &rf_list->rl_recs[index + recs_need];
1934
1935 memcpy(tail_rec, orig_rec, sizeof(struct ocfs2_refcount_rec));
1936 le64_add_cpu(&tail_rec->r_cpos,
1937 le32_to_cpu(tail_rec->r_clusters) - len);
1938 tail_rec->r_clusters = cpu_to_le32(len);
1939 }
1940
1941 /*
1942 * If the split pos isn't the same as the original one, we need to
1943 * split in the head.
1944 *
1945 * Note: We have the chance that split_rec.r_refcount = 0,
1946 * recs_need = 0 and len > 0, which means we just cut the head from
1947 * the orig_rec and in that case we have done some modification in
1948 * orig_rec above, so the check for r_cpos is faked.
1949 */
1950 if (split_rec->r_cpos != orig_rec->r_cpos && tail_rec != orig_rec) {
1951 len = le64_to_cpu(split_rec->r_cpos) -
1952 le64_to_cpu(orig_rec->r_cpos);
1953 orig_rec->r_clusters = cpu_to_le32(len);
1954 index++;
1955 }
1956
1957 le16_add_cpu(&rf_list->rl_used, recs_need);
1958
1959 if (split_rec->r_refcount) {
1960 rf_list->rl_recs[index] = *split_rec;
1961 trace_ocfs2_split_refcount_rec_insert(
1962 (unsigned long long)ref_leaf_bh->b_blocknr, index,
1963 (unsigned long long)le64_to_cpu(split_rec->r_cpos),
1964 le32_to_cpu(split_rec->r_clusters),
1965 le32_to_cpu(split_rec->r_refcount));
1966
1967 if (merge)
1968 ocfs2_refcount_rec_merge(rb, index);
1969 }
1970
1971 ocfs2_journal_dirty(handle, ref_leaf_bh);
1972
1973out:
1974 brelse(new_bh);
1975 return ret;
1976}
1977
1978static int __ocfs2_increase_refcount(handle_t *handle,
1979 struct ocfs2_caching_info *ci,
1980 struct buffer_head *ref_root_bh,
1981 u64 cpos, u32 len, int merge,
1982 struct ocfs2_alloc_context *meta_ac,
1983 struct ocfs2_cached_dealloc_ctxt *dealloc)
1984{
1985 int ret = 0, index;
1986 struct buffer_head *ref_leaf_bh = NULL;
1987 struct ocfs2_refcount_rec rec;
1988 unsigned int set_len = 0;
1989
1990 trace_ocfs2_increase_refcount_begin(
1991 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1992 (unsigned long long)cpos, len);
1993
1994 while (len) {
1995 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1996 cpos, len, &rec, &index,
1997 &ref_leaf_bh);
1998 if (ret) {
1999 mlog_errno(ret);
2000 goto out;
2001 }
2002
2003 set_len = le32_to_cpu(rec.r_clusters);
2004
2005 /*
2006 * Here we may meet with 3 situations:
2007 *
2008 * 1. If we find an already existing record, and the length
2009 * is the same, cool, we just need to increase the r_refcount
2010 * and it is OK.
2011 * 2. If we find a hole, just insert it with r_refcount = 1.
2012 * 3. If we are in the middle of one extent record, split
2013 * it.
2014 */
2015 if (rec.r_refcount && le64_to_cpu(rec.r_cpos) == cpos &&
2016 set_len <= len) {
2017 trace_ocfs2_increase_refcount_change(
2018 (unsigned long long)cpos, set_len,
2019 le32_to_cpu(rec.r_refcount));
2020 ret = ocfs2_change_refcount_rec(handle, ci,
2021 ref_leaf_bh, index,
2022 merge, 1);
2023 if (ret) {
2024 mlog_errno(ret);
2025 goto out;
2026 }
2027 } else if (!rec.r_refcount) {
2028 rec.r_refcount = cpu_to_le32(1);
2029
2030 trace_ocfs2_increase_refcount_insert(
2031 (unsigned long long)le64_to_cpu(rec.r_cpos),
2032 set_len);
2033 ret = ocfs2_insert_refcount_rec(handle, ci, ref_root_bh,
2034 ref_leaf_bh,
2035 &rec, index,
2036 merge, meta_ac);
2037 if (ret) {
2038 mlog_errno(ret);
2039 goto out;
2040 }
2041 } else {
2042 set_len = min((u64)(cpos + len),
2043 le64_to_cpu(rec.r_cpos) + set_len) - cpos;
2044 rec.r_cpos = cpu_to_le64(cpos);
2045 rec.r_clusters = cpu_to_le32(set_len);
2046 le32_add_cpu(&rec.r_refcount, 1);
2047
2048 trace_ocfs2_increase_refcount_split(
2049 (unsigned long long)le64_to_cpu(rec.r_cpos),
2050 set_len, le32_to_cpu(rec.r_refcount));
2051 ret = ocfs2_split_refcount_rec(handle, ci,
2052 ref_root_bh, ref_leaf_bh,
2053 &rec, index, merge,
2054 meta_ac, dealloc);
2055 if (ret) {
2056 mlog_errno(ret);
2057 goto out;
2058 }
2059 }
2060
2061 cpos += set_len;
2062 len -= set_len;
2063 brelse(ref_leaf_bh);
2064 ref_leaf_bh = NULL;
2065 }
2066
2067out:
2068 brelse(ref_leaf_bh);
2069 return ret;
2070}
2071
2072static int ocfs2_remove_refcount_extent(handle_t *handle,
2073 struct ocfs2_caching_info *ci,
2074 struct buffer_head *ref_root_bh,
2075 struct buffer_head *ref_leaf_bh,
2076 struct ocfs2_alloc_context *meta_ac,
2077 struct ocfs2_cached_dealloc_ctxt *dealloc)
2078{
2079 int ret;
2080 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2081 struct ocfs2_refcount_block *rb =
2082 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2083 struct ocfs2_extent_tree et;
2084
2085 BUG_ON(rb->rf_records.rl_used);
2086
2087 trace_ocfs2_remove_refcount_extent(
2088 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2089 (unsigned long long)ref_leaf_bh->b_blocknr,
2090 le32_to_cpu(rb->rf_cpos));
2091
2092 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2093 ret = ocfs2_remove_extent(handle, &et, le32_to_cpu(rb->rf_cpos),
2094 1, meta_ac, dealloc);
2095 if (ret) {
2096 mlog_errno(ret);
2097 goto out;
2098 }
2099
2100 ocfs2_remove_from_cache(ci, ref_leaf_bh);
2101
2102 /*
2103 * add the freed block to the dealloc so that it will be freed
2104 * when we run dealloc.
2105 */
2106 ret = ocfs2_cache_block_dealloc(dealloc, EXTENT_ALLOC_SYSTEM_INODE,
2107 le16_to_cpu(rb->rf_suballoc_slot),
2108 le64_to_cpu(rb->rf_suballoc_loc),
2109 le64_to_cpu(rb->rf_blkno),
2110 le16_to_cpu(rb->rf_suballoc_bit));
2111 if (ret) {
2112 mlog_errno(ret);
2113 goto out;
2114 }
2115
2116 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
2117 OCFS2_JOURNAL_ACCESS_WRITE);
2118 if (ret) {
2119 mlog_errno(ret);
2120 goto out;
2121 }
2122
2123 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2124
2125 le32_add_cpu(&rb->rf_clusters, -1);
2126
2127 /*
2128 * check whether we need to restore the root refcount block if
2129 * there is no leaf extent block at atll.
2130 */
2131 if (!rb->rf_list.l_next_free_rec) {
2132 BUG_ON(rb->rf_clusters);
2133
2134 trace_ocfs2_restore_refcount_block(
2135 (unsigned long long)ref_root_bh->b_blocknr);
2136
2137 rb->rf_flags = 0;
2138 rb->rf_parent = 0;
2139 rb->rf_cpos = 0;
2140 memset(&rb->rf_records, 0, sb->s_blocksize -
2141 offsetof(struct ocfs2_refcount_block, rf_records));
2142 rb->rf_records.rl_count =
2143 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
2144 }
2145
2146 ocfs2_journal_dirty(handle, ref_root_bh);
2147
2148out:
2149 return ret;
2150}
2151
2152int ocfs2_increase_refcount(handle_t *handle,
2153 struct ocfs2_caching_info *ci,
2154 struct buffer_head *ref_root_bh,
2155 u64 cpos, u32 len,
2156 struct ocfs2_alloc_context *meta_ac,
2157 struct ocfs2_cached_dealloc_ctxt *dealloc)
2158{
2159 return __ocfs2_increase_refcount(handle, ci, ref_root_bh,
2160 cpos, len, 1,
2161 meta_ac, dealloc);
2162}
2163
2164static int ocfs2_decrease_refcount_rec(handle_t *handle,
2165 struct ocfs2_caching_info *ci,
2166 struct buffer_head *ref_root_bh,
2167 struct buffer_head *ref_leaf_bh,
2168 int index, u64 cpos, unsigned int len,
2169 struct ocfs2_alloc_context *meta_ac,
2170 struct ocfs2_cached_dealloc_ctxt *dealloc)
2171{
2172 int ret;
2173 struct ocfs2_refcount_block *rb =
2174 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2175 struct ocfs2_refcount_rec *rec = &rb->rf_records.rl_recs[index];
2176
2177 BUG_ON(cpos < le64_to_cpu(rec->r_cpos));
2178 BUG_ON(cpos + len >
2179 le64_to_cpu(rec->r_cpos) + le32_to_cpu(rec->r_clusters));
2180
2181 trace_ocfs2_decrease_refcount_rec(
2182 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2183 (unsigned long long)cpos, len);
2184
2185 if (cpos == le64_to_cpu(rec->r_cpos) &&
2186 len == le32_to_cpu(rec->r_clusters))
2187 ret = ocfs2_change_refcount_rec(handle, ci,
2188 ref_leaf_bh, index, 1, -1);
2189 else {
2190 struct ocfs2_refcount_rec split = *rec;
2191 split.r_cpos = cpu_to_le64(cpos);
2192 split.r_clusters = cpu_to_le32(len);
2193
2194 le32_add_cpu(&split.r_refcount, -1);
2195
2196 ret = ocfs2_split_refcount_rec(handle, ci,
2197 ref_root_bh, ref_leaf_bh,
2198 &split, index, 1,
2199 meta_ac, dealloc);
2200 }
2201
2202 if (ret) {
2203 mlog_errno(ret);
2204 goto out;
2205 }
2206
2207 /* Remove the leaf refcount block if it contains no refcount record. */
2208 if (!rb->rf_records.rl_used && ref_leaf_bh != ref_root_bh) {
2209 ret = ocfs2_remove_refcount_extent(handle, ci, ref_root_bh,
2210 ref_leaf_bh, meta_ac,
2211 dealloc);
2212 if (ret)
2213 mlog_errno(ret);
2214 }
2215
2216out:
2217 return ret;
2218}
2219
2220static int __ocfs2_decrease_refcount(handle_t *handle,
2221 struct ocfs2_caching_info *ci,
2222 struct buffer_head *ref_root_bh,
2223 u64 cpos, u32 len,
2224 struct ocfs2_alloc_context *meta_ac,
2225 struct ocfs2_cached_dealloc_ctxt *dealloc,
2226 int delete)
2227{
2228 int ret = 0, index = 0;
2229 struct ocfs2_refcount_rec rec;
2230 unsigned int r_count = 0, r_len;
2231 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2232 struct buffer_head *ref_leaf_bh = NULL;
2233
2234 trace_ocfs2_decrease_refcount(
2235 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2236 (unsigned long long)cpos, len, delete);
2237
2238 while (len) {
2239 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2240 cpos, len, &rec, &index,
2241 &ref_leaf_bh);
2242 if (ret) {
2243 mlog_errno(ret);
2244 goto out;
2245 }
2246
2247 r_count = le32_to_cpu(rec.r_refcount);
2248 BUG_ON(r_count == 0);
2249 if (!delete)
2250 BUG_ON(r_count > 1);
2251
2252 r_len = min((u64)(cpos + len), le64_to_cpu(rec.r_cpos) +
2253 le32_to_cpu(rec.r_clusters)) - cpos;
2254
2255 ret = ocfs2_decrease_refcount_rec(handle, ci, ref_root_bh,
2256 ref_leaf_bh, index,
2257 cpos, r_len,
2258 meta_ac, dealloc);
2259 if (ret) {
2260 mlog_errno(ret);
2261 goto out;
2262 }
2263
2264 if (le32_to_cpu(rec.r_refcount) == 1 && delete) {
2265 ret = ocfs2_cache_cluster_dealloc(dealloc,
2266 ocfs2_clusters_to_blocks(sb, cpos),
2267 r_len);
2268 if (ret) {
2269 mlog_errno(ret);
2270 goto out;
2271 }
2272 }
2273
2274 cpos += r_len;
2275 len -= r_len;
2276 brelse(ref_leaf_bh);
2277 ref_leaf_bh = NULL;
2278 }
2279
2280out:
2281 brelse(ref_leaf_bh);
2282 return ret;
2283}
2284
2285/* Caller must hold refcount tree lock. */
2286int ocfs2_decrease_refcount(struct inode *inode,
2287 handle_t *handle, u32 cpos, u32 len,
2288 struct ocfs2_alloc_context *meta_ac,
2289 struct ocfs2_cached_dealloc_ctxt *dealloc,
2290 int delete)
2291{
2292 int ret;
2293 u64 ref_blkno;
2294 struct buffer_head *ref_root_bh = NULL;
2295 struct ocfs2_refcount_tree *tree;
2296
2297 BUG_ON(!ocfs2_is_refcount_inode(inode));
2298
2299 ret = ocfs2_get_refcount_block(inode, &ref_blkno);
2300 if (ret) {
2301 mlog_errno(ret);
2302 goto out;
2303 }
2304
2305 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb), ref_blkno, &tree);
2306 if (ret) {
2307 mlog_errno(ret);
2308 goto out;
2309 }
2310
2311 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
2312 &ref_root_bh);
2313 if (ret) {
2314 mlog_errno(ret);
2315 goto out;
2316 }
2317
2318 ret = __ocfs2_decrease_refcount(handle, &tree->rf_ci, ref_root_bh,
2319 cpos, len, meta_ac, dealloc, delete);
2320 if (ret)
2321 mlog_errno(ret);
2322out:
2323 brelse(ref_root_bh);
2324 return ret;
2325}
2326
2327/*
2328 * Mark the already-existing extent at cpos as refcounted for len clusters.
2329 * This adds the refcount extent flag.
2330 *
2331 * If the existing extent is larger than the request, initiate a
2332 * split. An attempt will be made at merging with adjacent extents.
2333 *
2334 * The caller is responsible for passing down meta_ac if we'll need it.
2335 */
2336static int ocfs2_mark_extent_refcounted(struct inode *inode,
2337 struct ocfs2_extent_tree *et,
2338 handle_t *handle, u32 cpos,
2339 u32 len, u32 phys,
2340 struct ocfs2_alloc_context *meta_ac,
2341 struct ocfs2_cached_dealloc_ctxt *dealloc)
2342{
2343 int ret;
2344
2345 trace_ocfs2_mark_extent_refcounted(OCFS2_I(inode)->ip_blkno,
2346 cpos, len, phys);
2347
2348 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2349 ret = ocfs2_error(inode->i_sb, "Inode %lu want to use refcount tree, but the feature bit is not set in the super block\n",
2350 inode->i_ino);
2351 goto out;
2352 }
2353
2354 ret = ocfs2_change_extent_flag(handle, et, cpos,
2355 len, phys, meta_ac, dealloc,
2356 OCFS2_EXT_REFCOUNTED, 0);
2357 if (ret)
2358 mlog_errno(ret);
2359
2360out:
2361 return ret;
2362}
2363
2364/*
2365 * Given some contiguous physical clusters, calculate what we need
2366 * for modifying their refcount.
2367 */
2368static int ocfs2_calc_refcount_meta_credits(struct super_block *sb,
2369 struct ocfs2_caching_info *ci,
2370 struct buffer_head *ref_root_bh,
2371 u64 start_cpos,
2372 u32 clusters,
2373 int *meta_add,
2374 int *credits)
2375{
2376 int ret = 0, index, ref_blocks = 0, recs_add = 0;
2377 u64 cpos = start_cpos;
2378 struct ocfs2_refcount_block *rb;
2379 struct ocfs2_refcount_rec rec;
2380 struct buffer_head *ref_leaf_bh = NULL, *prev_bh = NULL;
2381 u32 len;
2382
2383 while (clusters) {
2384 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2385 cpos, clusters, &rec,
2386 &index, &ref_leaf_bh);
2387 if (ret) {
2388 mlog_errno(ret);
2389 goto out;
2390 }
2391
2392 if (ref_leaf_bh != prev_bh) {
2393 /*
2394 * Now we encounter a new leaf block, so calculate
2395 * whether we need to extend the old leaf.
2396 */
2397 if (prev_bh) {
2398 rb = (struct ocfs2_refcount_block *)
2399 prev_bh->b_data;
2400
2401 if (le16_to_cpu(rb->rf_records.rl_used) +
2402 recs_add >
2403 le16_to_cpu(rb->rf_records.rl_count))
2404 ref_blocks++;
2405 }
2406
2407 recs_add = 0;
2408 *credits += 1;
2409 brelse(prev_bh);
2410 prev_bh = ref_leaf_bh;
2411 get_bh(prev_bh);
2412 }
2413
2414 trace_ocfs2_calc_refcount_meta_credits_iterate(
2415 recs_add, (unsigned long long)cpos, clusters,
2416 (unsigned long long)le64_to_cpu(rec.r_cpos),
2417 le32_to_cpu(rec.r_clusters),
2418 le32_to_cpu(rec.r_refcount), index);
2419
2420 len = min((u64)cpos + clusters, le64_to_cpu(rec.r_cpos) +
2421 le32_to_cpu(rec.r_clusters)) - cpos;
2422 /*
2423 * We record all the records which will be inserted to the
2424 * same refcount block, so that we can tell exactly whether
2425 * we need a new refcount block or not.
2426 *
2427 * If we will insert a new one, this is easy and only happens
2428 * during adding refcounted flag to the extent, so we don't
2429 * have a chance of spliting. We just need one record.
2430 *
2431 * If the refcount rec already exists, that would be a little
2432 * complicated. we may have to:
2433 * 1) split at the beginning if the start pos isn't aligned.
2434 * we need 1 more record in this case.
2435 * 2) split int the end if the end pos isn't aligned.
2436 * we need 1 more record in this case.
2437 * 3) split in the middle because of file system fragmentation.
2438 * we need 2 more records in this case(we can't detect this
2439 * beforehand, so always think of the worst case).
2440 */
2441 if (rec.r_refcount) {
2442 recs_add += 2;
2443 /* Check whether we need a split at the beginning. */
2444 if (cpos == start_cpos &&
2445 cpos != le64_to_cpu(rec.r_cpos))
2446 recs_add++;
2447
2448 /* Check whether we need a split in the end. */
2449 if (cpos + clusters < le64_to_cpu(rec.r_cpos) +
2450 le32_to_cpu(rec.r_clusters))
2451 recs_add++;
2452 } else
2453 recs_add++;
2454
2455 brelse(ref_leaf_bh);
2456 ref_leaf_bh = NULL;
2457 clusters -= len;
2458 cpos += len;
2459 }
2460
2461 if (prev_bh) {
2462 rb = (struct ocfs2_refcount_block *)prev_bh->b_data;
2463
2464 if (le16_to_cpu(rb->rf_records.rl_used) + recs_add >
2465 le16_to_cpu(rb->rf_records.rl_count))
2466 ref_blocks++;
2467
2468 *credits += 1;
2469 }
2470
2471 if (!ref_blocks)
2472 goto out;
2473
2474 *meta_add += ref_blocks;
2475 *credits += ref_blocks;
2476
2477 /*
2478 * So we may need ref_blocks to insert into the tree.
2479 * That also means we need to change the b-tree and add that number
2480 * of records since we never merge them.
2481 * We need one more block for expansion since the new created leaf
2482 * block is also full and needs split.
2483 */
2484 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2485 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL) {
2486 struct ocfs2_extent_tree et;
2487
2488 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2489 *meta_add += ocfs2_extend_meta_needed(et.et_root_el);
2490 *credits += ocfs2_calc_extend_credits(sb,
2491 et.et_root_el);
2492 } else {
2493 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
2494 *meta_add += 1;
2495 }
2496
2497out:
2498
2499 trace_ocfs2_calc_refcount_meta_credits(
2500 (unsigned long long)start_cpos, clusters,
2501 *meta_add, *credits);
2502 brelse(ref_leaf_bh);
2503 brelse(prev_bh);
2504 return ret;
2505}
2506
2507/*
2508 * For refcount tree, we will decrease some contiguous clusters
2509 * refcount count, so just go through it to see how many blocks
2510 * we gonna touch and whether we need to create new blocks.
2511 *
2512 * Normally the refcount blocks store these refcount should be
2513 * contiguous also, so that we can get the number easily.
2514 * We will at most add split 2 refcount records and 2 more
2515 * refcount blocks, so just check it in a rough way.
2516 *
2517 * Caller must hold refcount tree lock.
2518 */
2519int ocfs2_prepare_refcount_change_for_del(struct inode *inode,
2520 u64 refcount_loc,
2521 u64 phys_blkno,
2522 u32 clusters,
2523 int *credits,
2524 int *ref_blocks)
2525{
2526 int ret;
2527 struct buffer_head *ref_root_bh = NULL;
2528 struct ocfs2_refcount_tree *tree;
2529 u64 start_cpos = ocfs2_blocks_to_clusters(inode->i_sb, phys_blkno);
2530
2531 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2532 ret = ocfs2_error(inode->i_sb, "Inode %lu want to use refcount tree, but the feature bit is not set in the super block\n",
2533 inode->i_ino);
2534 goto out;
2535 }
2536
2537 BUG_ON(!ocfs2_is_refcount_inode(inode));
2538
2539 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb),
2540 refcount_loc, &tree);
2541 if (ret) {
2542 mlog_errno(ret);
2543 goto out;
2544 }
2545
2546 ret = ocfs2_read_refcount_block(&tree->rf_ci, refcount_loc,
2547 &ref_root_bh);
2548 if (ret) {
2549 mlog_errno(ret);
2550 goto out;
2551 }
2552
2553 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
2554 &tree->rf_ci,
2555 ref_root_bh,
2556 start_cpos, clusters,
2557 ref_blocks, credits);
2558 if (ret) {
2559 mlog_errno(ret);
2560 goto out;
2561 }
2562
2563 trace_ocfs2_prepare_refcount_change_for_del(*ref_blocks, *credits);
2564
2565out:
2566 brelse(ref_root_bh);
2567 return ret;
2568}
2569
2570#define MAX_CONTIG_BYTES 1048576
2571
2572static inline unsigned int ocfs2_cow_contig_clusters(struct super_block *sb)
2573{
2574 return ocfs2_clusters_for_bytes(sb, MAX_CONTIG_BYTES);
2575}
2576
2577static inline unsigned int ocfs2_cow_contig_mask(struct super_block *sb)
2578{
2579 return ~(ocfs2_cow_contig_clusters(sb) - 1);
2580}
2581
2582/*
2583 * Given an extent that starts at 'start' and an I/O that starts at 'cpos',
2584 * find an offset (start + (n * contig_clusters)) that is closest to cpos
2585 * while still being less than or equal to it.
2586 *
2587 * The goal is to break the extent at a multiple of contig_clusters.
2588 */
2589static inline unsigned int ocfs2_cow_align_start(struct super_block *sb,
2590 unsigned int start,
2591 unsigned int cpos)
2592{
2593 BUG_ON(start > cpos);
2594
2595 return start + ((cpos - start) & ocfs2_cow_contig_mask(sb));
2596}
2597
2598/*
2599 * Given a cluster count of len, pad it out so that it is a multiple
2600 * of contig_clusters.
2601 */
2602static inline unsigned int ocfs2_cow_align_length(struct super_block *sb,
2603 unsigned int len)
2604{
2605 unsigned int padded =
2606 (len + (ocfs2_cow_contig_clusters(sb) - 1)) &
2607 ocfs2_cow_contig_mask(sb);
2608
2609 /* Did we wrap? */
2610 if (padded < len)
2611 padded = UINT_MAX;
2612
2613 return padded;
2614}
2615
2616/*
2617 * Calculate out the start and number of virtual clusters we need to CoW.
2618 *
2619 * cpos is vitual start cluster position we want to do CoW in a
2620 * file and write_len is the cluster length.
2621 * max_cpos is the place where we want to stop CoW intentionally.
2622 *
2623 * Normal we will start CoW from the beginning of extent record cotaining cpos.
2624 * We try to break up extents on boundaries of MAX_CONTIG_BYTES so that we
2625 * get good I/O from the resulting extent tree.
2626 */
2627static int ocfs2_refcount_cal_cow_clusters(struct inode *inode,
2628 struct ocfs2_extent_list *el,
2629 u32 cpos,
2630 u32 write_len,
2631 u32 max_cpos,
2632 u32 *cow_start,
2633 u32 *cow_len)
2634{
2635 int ret = 0;
2636 int tree_height = le16_to_cpu(el->l_tree_depth), i;
2637 struct buffer_head *eb_bh = NULL;
2638 struct ocfs2_extent_block *eb = NULL;
2639 struct ocfs2_extent_rec *rec;
2640 unsigned int want_clusters, rec_end = 0;
2641 int contig_clusters = ocfs2_cow_contig_clusters(inode->i_sb);
2642 int leaf_clusters;
2643
2644 BUG_ON(cpos + write_len > max_cpos);
2645
2646 if (tree_height > 0) {
2647 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, cpos, &eb_bh);
2648 if (ret) {
2649 mlog_errno(ret);
2650 goto out;
2651 }
2652
2653 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2654 el = &eb->h_list;
2655
2656 if (el->l_tree_depth) {
2657 ret = ocfs2_error(inode->i_sb,
2658 "Inode %lu has non zero tree depth in leaf block %llu\n",
2659 inode->i_ino,
2660 (unsigned long long)eb_bh->b_blocknr);
2661 goto out;
2662 }
2663 }
2664
2665 *cow_len = 0;
2666 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
2667 rec = &el->l_recs[i];
2668
2669 if (ocfs2_is_empty_extent(rec)) {
2670 mlog_bug_on_msg(i != 0, "Inode %lu has empty record in "
2671 "index %d\n", inode->i_ino, i);
2672 continue;
2673 }
2674
2675 if (le32_to_cpu(rec->e_cpos) +
2676 le16_to_cpu(rec->e_leaf_clusters) <= cpos)
2677 continue;
2678
2679 if (*cow_len == 0) {
2680 /*
2681 * We should find a refcounted record in the
2682 * first pass.
2683 */
2684 BUG_ON(!(rec->e_flags & OCFS2_EXT_REFCOUNTED));
2685 *cow_start = le32_to_cpu(rec->e_cpos);
2686 }
2687
2688 /*
2689 * If we encounter a hole, a non-refcounted record or
2690 * pass the max_cpos, stop the search.
2691 */
2692 if ((!(rec->e_flags & OCFS2_EXT_REFCOUNTED)) ||
2693 (*cow_len && rec_end != le32_to_cpu(rec->e_cpos)) ||
2694 (max_cpos <= le32_to_cpu(rec->e_cpos)))
2695 break;
2696
2697 leaf_clusters = le16_to_cpu(rec->e_leaf_clusters);
2698 rec_end = le32_to_cpu(rec->e_cpos) + leaf_clusters;
2699 if (rec_end > max_cpos) {
2700 rec_end = max_cpos;
2701 leaf_clusters = rec_end - le32_to_cpu(rec->e_cpos);
2702 }
2703
2704 /*
2705 * How many clusters do we actually need from
2706 * this extent? First we see how many we actually
2707 * need to complete the write. If that's smaller
2708 * than contig_clusters, we try for contig_clusters.
2709 */
2710 if (!*cow_len)
2711 want_clusters = write_len;
2712 else
2713 want_clusters = (cpos + write_len) -
2714 (*cow_start + *cow_len);
2715 if (want_clusters < contig_clusters)
2716 want_clusters = contig_clusters;
2717
2718 /*
2719 * If the write does not cover the whole extent, we
2720 * need to calculate how we're going to split the extent.
2721 * We try to do it on contig_clusters boundaries.
2722 *
2723 * Any extent smaller than contig_clusters will be
2724 * CoWed in its entirety.
2725 */
2726 if (leaf_clusters <= contig_clusters)
2727 *cow_len += leaf_clusters;
2728 else if (*cow_len || (*cow_start == cpos)) {
2729 /*
2730 * This extent needs to be CoW'd from its
2731 * beginning, so all we have to do is compute
2732 * how many clusters to grab. We align
2733 * want_clusters to the edge of contig_clusters
2734 * to get better I/O.
2735 */
2736 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2737 want_clusters);
2738
2739 if (leaf_clusters < want_clusters)
2740 *cow_len += leaf_clusters;
2741 else
2742 *cow_len += want_clusters;
2743 } else if ((*cow_start + contig_clusters) >=
2744 (cpos + write_len)) {
2745 /*
2746 * Breaking off contig_clusters at the front
2747 * of the extent will cover our write. That's
2748 * easy.
2749 */
2750 *cow_len = contig_clusters;
2751 } else if ((rec_end - cpos) <= contig_clusters) {
2752 /*
2753 * Breaking off contig_clusters at the tail of
2754 * this extent will cover cpos.
2755 */
2756 *cow_start = rec_end - contig_clusters;
2757 *cow_len = contig_clusters;
2758 } else if ((rec_end - cpos) <= want_clusters) {
2759 /*
2760 * While we can't fit the entire write in this
2761 * extent, we know that the write goes from cpos
2762 * to the end of the extent. Break that off.
2763 * We try to break it at some multiple of
2764 * contig_clusters from the front of the extent.
2765 * Failing that (ie, cpos is within
2766 * contig_clusters of the front), we'll CoW the
2767 * entire extent.
2768 */
2769 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2770 *cow_start, cpos);
2771 *cow_len = rec_end - *cow_start;
2772 } else {
2773 /*
2774 * Ok, the entire write lives in the middle of
2775 * this extent. Let's try to slice the extent up
2776 * nicely. Optimally, our CoW region starts at
2777 * m*contig_clusters from the beginning of the
2778 * extent and goes for n*contig_clusters,
2779 * covering the entire write.
2780 */
2781 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2782 *cow_start, cpos);
2783
2784 want_clusters = (cpos + write_len) - *cow_start;
2785 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2786 want_clusters);
2787 if (*cow_start + want_clusters <= rec_end)
2788 *cow_len = want_clusters;
2789 else
2790 *cow_len = rec_end - *cow_start;
2791 }
2792
2793 /* Have we covered our entire write yet? */
2794 if ((*cow_start + *cow_len) >= (cpos + write_len))
2795 break;
2796
2797 /*
2798 * If we reach the end of the extent block and don't get enough
2799 * clusters, continue with the next extent block if possible.
2800 */
2801 if (i + 1 == le16_to_cpu(el->l_next_free_rec) &&
2802 eb && eb->h_next_leaf_blk) {
2803 brelse(eb_bh);
2804 eb_bh = NULL;
2805
2806 ret = ocfs2_read_extent_block(INODE_CACHE(inode),
2807 le64_to_cpu(eb->h_next_leaf_blk),
2808 &eb_bh);
2809 if (ret) {
2810 mlog_errno(ret);
2811 goto out;
2812 }
2813
2814 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2815 el = &eb->h_list;
2816 i = -1;
2817 }
2818 }
2819
2820out:
2821 brelse(eb_bh);
2822 return ret;
2823}
2824
2825/*
2826 * Prepare meta_ac, data_ac and calculate credits when we want to add some
2827 * num_clusters in data_tree "et" and change the refcount for the old
2828 * clusters(starting form p_cluster) in the refcount tree.
2829 *
2830 * Note:
2831 * 1. since we may split the old tree, so we at most will need num_clusters + 2
2832 * more new leaf records.
2833 * 2. In some case, we may not need to reserve new clusters(e.g, reflink), so
2834 * just give data_ac = NULL.
2835 */
2836static int ocfs2_lock_refcount_allocators(struct super_block *sb,
2837 u32 p_cluster, u32 num_clusters,
2838 struct ocfs2_extent_tree *et,
2839 struct ocfs2_caching_info *ref_ci,
2840 struct buffer_head *ref_root_bh,
2841 struct ocfs2_alloc_context **meta_ac,
2842 struct ocfs2_alloc_context **data_ac,
2843 int *credits)
2844{
2845 int ret = 0, meta_add = 0;
2846 int num_free_extents = ocfs2_num_free_extents(et);
2847
2848 if (num_free_extents < 0) {
2849 ret = num_free_extents;
2850 mlog_errno(ret);
2851 goto out;
2852 }
2853
2854 if (num_free_extents < num_clusters + 2)
2855 meta_add =
2856 ocfs2_extend_meta_needed(et->et_root_el);
2857
2858 *credits += ocfs2_calc_extend_credits(sb, et->et_root_el);
2859
2860 ret = ocfs2_calc_refcount_meta_credits(sb, ref_ci, ref_root_bh,
2861 p_cluster, num_clusters,
2862 &meta_add, credits);
2863 if (ret) {
2864 mlog_errno(ret);
2865 goto out;
2866 }
2867
2868 trace_ocfs2_lock_refcount_allocators(meta_add, *credits);
2869 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(sb), meta_add,
2870 meta_ac);
2871 if (ret) {
2872 mlog_errno(ret);
2873 goto out;
2874 }
2875
2876 if (data_ac) {
2877 ret = ocfs2_reserve_clusters(OCFS2_SB(sb), num_clusters,
2878 data_ac);
2879 if (ret)
2880 mlog_errno(ret);
2881 }
2882
2883out:
2884 if (ret) {
2885 if (*meta_ac) {
2886 ocfs2_free_alloc_context(*meta_ac);
2887 *meta_ac = NULL;
2888 }
2889 }
2890
2891 return ret;
2892}
2893
2894static int ocfs2_clear_cow_buffer(handle_t *handle, struct buffer_head *bh)
2895{
2896 BUG_ON(buffer_dirty(bh));
2897
2898 clear_buffer_mapped(bh);
2899
2900 return 0;
2901}
2902
2903int ocfs2_duplicate_clusters_by_page(handle_t *handle,
2904 struct inode *inode,
2905 u32 cpos, u32 old_cluster,
2906 u32 new_cluster, u32 new_len)
2907{
2908 int ret = 0, partial;
2909 struct super_block *sb = inode->i_sb;
2910 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
2911 struct page *page;
2912 pgoff_t page_index;
2913 unsigned int from, to;
2914 loff_t offset, end, map_end;
2915 struct address_space *mapping = inode->i_mapping;
2916
2917 trace_ocfs2_duplicate_clusters_by_page(cpos, old_cluster,
2918 new_cluster, new_len);
2919
2920 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
2921 end = offset + (new_len << OCFS2_SB(sb)->s_clustersize_bits);
2922 /*
2923 * We only duplicate pages until we reach the page contains i_size - 1.
2924 * So trim 'end' to i_size.
2925 */
2926 if (end > i_size_read(inode))
2927 end = i_size_read(inode);
2928
2929 while (offset < end) {
2930 page_index = offset >> PAGE_SHIFT;
2931 map_end = ((loff_t)page_index + 1) << PAGE_SHIFT;
2932 if (map_end > end)
2933 map_end = end;
2934
2935 /* from, to is the offset within the page. */
2936 from = offset & (PAGE_SIZE - 1);
2937 to = PAGE_SIZE;
2938 if (map_end & (PAGE_SIZE - 1))
2939 to = map_end & (PAGE_SIZE - 1);
2940
2941retry:
2942 page = find_or_create_page(mapping, page_index, GFP_NOFS);
2943 if (!page) {
2944 ret = -ENOMEM;
2945 mlog_errno(ret);
2946 break;
2947 }
2948
2949 /*
2950 * In case PAGE_SIZE <= CLUSTER_SIZE, we do not expect a dirty
2951 * page, so write it back.
2952 */
2953 if (PAGE_SIZE <= OCFS2_SB(sb)->s_clustersize) {
2954 if (PageDirty(page)) {
2955 unlock_page(page);
2956 put_page(page);
2957
2958 ret = filemap_write_and_wait_range(mapping,
2959 offset, map_end - 1);
2960 goto retry;
2961 }
2962 }
2963
2964 if (!PageUptodate(page)) {
2965 struct folio *folio = page_folio(page);
2966
2967 ret = block_read_full_folio(folio, ocfs2_get_block);
2968 if (ret) {
2969 mlog_errno(ret);
2970 goto unlock;
2971 }
2972 folio_lock(folio);
2973 }
2974
2975 if (page_has_buffers(page)) {
2976 ret = walk_page_buffers(handle, page_buffers(page),
2977 from, to, &partial,
2978 ocfs2_clear_cow_buffer);
2979 if (ret) {
2980 mlog_errno(ret);
2981 goto unlock;
2982 }
2983 }
2984
2985 ocfs2_map_and_dirty_page(inode,
2986 handle, from, to,
2987 page, 0, &new_block);
2988 mark_page_accessed(page);
2989unlock:
2990 unlock_page(page);
2991 put_page(page);
2992 page = NULL;
2993 offset = map_end;
2994 if (ret)
2995 break;
2996 }
2997
2998 return ret;
2999}
3000
3001int ocfs2_duplicate_clusters_by_jbd(handle_t *handle,
3002 struct inode *inode,
3003 u32 cpos, u32 old_cluster,
3004 u32 new_cluster, u32 new_len)
3005{
3006 int ret = 0;
3007 struct super_block *sb = inode->i_sb;
3008 struct ocfs2_caching_info *ci = INODE_CACHE(inode);
3009 int i, blocks = ocfs2_clusters_to_blocks(sb, new_len);
3010 u64 old_block = ocfs2_clusters_to_blocks(sb, old_cluster);
3011 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
3012 struct ocfs2_super *osb = OCFS2_SB(sb);
3013 struct buffer_head *old_bh = NULL;
3014 struct buffer_head *new_bh = NULL;
3015
3016 trace_ocfs2_duplicate_clusters_by_page(cpos, old_cluster,
3017 new_cluster, new_len);
3018
3019 for (i = 0; i < blocks; i++, old_block++, new_block++) {
3020 new_bh = sb_getblk(osb->sb, new_block);
3021 if (new_bh == NULL) {
3022 ret = -ENOMEM;
3023 mlog_errno(ret);
3024 break;
3025 }
3026
3027 ocfs2_set_new_buffer_uptodate(ci, new_bh);
3028
3029 ret = ocfs2_read_block(ci, old_block, &old_bh, NULL);
3030 if (ret) {
3031 mlog_errno(ret);
3032 break;
3033 }
3034
3035 ret = ocfs2_journal_access(handle, ci, new_bh,
3036 OCFS2_JOURNAL_ACCESS_CREATE);
3037 if (ret) {
3038 mlog_errno(ret);
3039 break;
3040 }
3041
3042 memcpy(new_bh->b_data, old_bh->b_data, sb->s_blocksize);
3043 ocfs2_journal_dirty(handle, new_bh);
3044
3045 brelse(new_bh);
3046 brelse(old_bh);
3047 new_bh = NULL;
3048 old_bh = NULL;
3049 }
3050
3051 brelse(new_bh);
3052 brelse(old_bh);
3053 return ret;
3054}
3055
3056static int ocfs2_clear_ext_refcount(handle_t *handle,
3057 struct ocfs2_extent_tree *et,
3058 u32 cpos, u32 p_cluster, u32 len,
3059 unsigned int ext_flags,
3060 struct ocfs2_alloc_context *meta_ac,
3061 struct ocfs2_cached_dealloc_ctxt *dealloc)
3062{
3063 int ret, index;
3064 struct ocfs2_extent_rec replace_rec;
3065 struct ocfs2_path *path = NULL;
3066 struct ocfs2_extent_list *el;
3067 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
3068 u64 ino = ocfs2_metadata_cache_owner(et->et_ci);
3069
3070 trace_ocfs2_clear_ext_refcount((unsigned long long)ino,
3071 cpos, len, p_cluster, ext_flags);
3072
3073 memset(&replace_rec, 0, sizeof(replace_rec));
3074 replace_rec.e_cpos = cpu_to_le32(cpos);
3075 replace_rec.e_leaf_clusters = cpu_to_le16(len);
3076 replace_rec.e_blkno = cpu_to_le64(ocfs2_clusters_to_blocks(sb,
3077 p_cluster));
3078 replace_rec.e_flags = ext_flags;
3079 replace_rec.e_flags &= ~OCFS2_EXT_REFCOUNTED;
3080
3081 path = ocfs2_new_path_from_et(et);
3082 if (!path) {
3083 ret = -ENOMEM;
3084 mlog_errno(ret);
3085 goto out;
3086 }
3087
3088 ret = ocfs2_find_path(et->et_ci, path, cpos);
3089 if (ret) {
3090 mlog_errno(ret);
3091 goto out;
3092 }
3093
3094 el = path_leaf_el(path);
3095
3096 index = ocfs2_search_extent_list(el, cpos);
3097 if (index == -1) {
3098 ret = ocfs2_error(sb,
3099 "Inode %llu has an extent at cpos %u which can no longer be found\n",
3100 (unsigned long long)ino, cpos);
3101 goto out;
3102 }
3103
3104 ret = ocfs2_split_extent(handle, et, path, index,
3105 &replace_rec, meta_ac, dealloc);
3106 if (ret)
3107 mlog_errno(ret);
3108
3109out:
3110 ocfs2_free_path(path);
3111 return ret;
3112}
3113
3114static int ocfs2_replace_clusters(handle_t *handle,
3115 struct ocfs2_cow_context *context,
3116 u32 cpos, u32 old,
3117 u32 new, u32 len,
3118 unsigned int ext_flags)
3119{
3120 int ret;
3121 struct ocfs2_caching_info *ci = context->data_et.et_ci;
3122 u64 ino = ocfs2_metadata_cache_owner(ci);
3123
3124 trace_ocfs2_replace_clusters((unsigned long long)ino,
3125 cpos, old, new, len, ext_flags);
3126
3127 /*If the old clusters is unwritten, no need to duplicate. */
3128 if (!(ext_flags & OCFS2_EXT_UNWRITTEN)) {
3129 ret = context->cow_duplicate_clusters(handle, context->inode,
3130 cpos, old, new, len);
3131 if (ret) {
3132 mlog_errno(ret);
3133 goto out;
3134 }
3135 }
3136
3137 ret = ocfs2_clear_ext_refcount(handle, &context->data_et,
3138 cpos, new, len, ext_flags,
3139 context->meta_ac, &context->dealloc);
3140 if (ret)
3141 mlog_errno(ret);
3142out:
3143 return ret;
3144}
3145
3146int ocfs2_cow_sync_writeback(struct super_block *sb,
3147 struct inode *inode,
3148 u32 cpos, u32 num_clusters)
3149{
3150 int ret;
3151 loff_t start, end;
3152
3153 if (ocfs2_should_order_data(inode))
3154 return 0;
3155
3156 start = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
3157 end = start + (num_clusters << OCFS2_SB(sb)->s_clustersize_bits) - 1;
3158
3159 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
3160 if (ret < 0)
3161 mlog_errno(ret);
3162
3163 return ret;
3164}
3165
3166static int ocfs2_di_get_clusters(struct ocfs2_cow_context *context,
3167 u32 v_cluster, u32 *p_cluster,
3168 u32 *num_clusters,
3169 unsigned int *extent_flags)
3170{
3171 return ocfs2_get_clusters(context->inode, v_cluster, p_cluster,
3172 num_clusters, extent_flags);
3173}
3174
3175static int ocfs2_make_clusters_writable(struct super_block *sb,
3176 struct ocfs2_cow_context *context,
3177 u32 cpos, u32 p_cluster,
3178 u32 num_clusters, unsigned int e_flags)
3179{
3180 int ret, delete, index, credits = 0;
3181 u32 new_bit, new_len, orig_num_clusters;
3182 unsigned int set_len;
3183 struct ocfs2_super *osb = OCFS2_SB(sb);
3184 handle_t *handle;
3185 struct buffer_head *ref_leaf_bh = NULL;
3186 struct ocfs2_caching_info *ref_ci = &context->ref_tree->rf_ci;
3187 struct ocfs2_refcount_rec rec;
3188
3189 trace_ocfs2_make_clusters_writable(cpos, p_cluster,
3190 num_clusters, e_flags);
3191
3192 ret = ocfs2_lock_refcount_allocators(sb, p_cluster, num_clusters,
3193 &context->data_et,
3194 ref_ci,
3195 context->ref_root_bh,
3196 &context->meta_ac,
3197 &context->data_ac, &credits);
3198 if (ret) {
3199 mlog_errno(ret);
3200 return ret;
3201 }
3202
3203 if (context->post_refcount)
3204 credits += context->post_refcount->credits;
3205
3206 credits += context->extra_credits;
3207 handle = ocfs2_start_trans(osb, credits);
3208 if (IS_ERR(handle)) {
3209 ret = PTR_ERR(handle);
3210 mlog_errno(ret);
3211 goto out;
3212 }
3213
3214 orig_num_clusters = num_clusters;
3215
3216 while (num_clusters) {
3217 ret = ocfs2_get_refcount_rec(ref_ci, context->ref_root_bh,
3218 p_cluster, num_clusters,
3219 &rec, &index, &ref_leaf_bh);
3220 if (ret) {
3221 mlog_errno(ret);
3222 goto out_commit;
3223 }
3224
3225 BUG_ON(!rec.r_refcount);
3226 set_len = min((u64)p_cluster + num_clusters,
3227 le64_to_cpu(rec.r_cpos) +
3228 le32_to_cpu(rec.r_clusters)) - p_cluster;
3229
3230 /*
3231 * There are many different situation here.
3232 * 1. If refcount == 1, remove the flag and don't COW.
3233 * 2. If refcount > 1, allocate clusters.
3234 * Here we may not allocate r_len once at a time, so continue
3235 * until we reach num_clusters.
3236 */
3237 if (le32_to_cpu(rec.r_refcount) == 1) {
3238 delete = 0;
3239 ret = ocfs2_clear_ext_refcount(handle,
3240 &context->data_et,
3241 cpos, p_cluster,
3242 set_len, e_flags,
3243 context->meta_ac,
3244 &context->dealloc);
3245 if (ret) {
3246 mlog_errno(ret);
3247 goto out_commit;
3248 }
3249 } else {
3250 delete = 1;
3251
3252 ret = __ocfs2_claim_clusters(handle,
3253 context->data_ac,
3254 1, set_len,
3255 &new_bit, &new_len);
3256 if (ret) {
3257 mlog_errno(ret);
3258 goto out_commit;
3259 }
3260
3261 ret = ocfs2_replace_clusters(handle, context,
3262 cpos, p_cluster, new_bit,
3263 new_len, e_flags);
3264 if (ret) {
3265 mlog_errno(ret);
3266 goto out_commit;
3267 }
3268 set_len = new_len;
3269 }
3270
3271 ret = __ocfs2_decrease_refcount(handle, ref_ci,
3272 context->ref_root_bh,
3273 p_cluster, set_len,
3274 context->meta_ac,
3275 &context->dealloc, delete);
3276 if (ret) {
3277 mlog_errno(ret);
3278 goto out_commit;
3279 }
3280
3281 cpos += set_len;
3282 p_cluster += set_len;
3283 num_clusters -= set_len;
3284 brelse(ref_leaf_bh);
3285 ref_leaf_bh = NULL;
3286 }
3287
3288 /* handle any post_cow action. */
3289 if (context->post_refcount && context->post_refcount->func) {
3290 ret = context->post_refcount->func(context->inode, handle,
3291 context->post_refcount->para);
3292 if (ret) {
3293 mlog_errno(ret);
3294 goto out_commit;
3295 }
3296 }
3297
3298 /*
3299 * Here we should write the new page out first if we are
3300 * in write-back mode.
3301 */
3302 if (context->get_clusters == ocfs2_di_get_clusters) {
3303 ret = ocfs2_cow_sync_writeback(sb, context->inode, cpos,
3304 orig_num_clusters);
3305 if (ret)
3306 mlog_errno(ret);
3307 }
3308
3309out_commit:
3310 ocfs2_commit_trans(osb, handle);
3311
3312out:
3313 if (context->data_ac) {
3314 ocfs2_free_alloc_context(context->data_ac);
3315 context->data_ac = NULL;
3316 }
3317 if (context->meta_ac) {
3318 ocfs2_free_alloc_context(context->meta_ac);
3319 context->meta_ac = NULL;
3320 }
3321 brelse(ref_leaf_bh);
3322
3323 return ret;
3324}
3325
3326static int ocfs2_replace_cow(struct ocfs2_cow_context *context)
3327{
3328 int ret = 0;
3329 struct inode *inode = context->inode;
3330 u32 cow_start = context->cow_start, cow_len = context->cow_len;
3331 u32 p_cluster, num_clusters;
3332 unsigned int ext_flags;
3333 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3334
3335 if (!ocfs2_refcount_tree(osb)) {
3336 return ocfs2_error(inode->i_sb, "Inode %lu want to use refcount tree, but the feature bit is not set in the super block\n",
3337 inode->i_ino);
3338 }
3339
3340 ocfs2_init_dealloc_ctxt(&context->dealloc);
3341
3342 while (cow_len) {
3343 ret = context->get_clusters(context, cow_start, &p_cluster,
3344 &num_clusters, &ext_flags);
3345 if (ret) {
3346 mlog_errno(ret);
3347 break;
3348 }
3349
3350 BUG_ON(!(ext_flags & OCFS2_EXT_REFCOUNTED));
3351
3352 if (cow_len < num_clusters)
3353 num_clusters = cow_len;
3354
3355 ret = ocfs2_make_clusters_writable(inode->i_sb, context,
3356 cow_start, p_cluster,
3357 num_clusters, ext_flags);
3358 if (ret) {
3359 mlog_errno(ret);
3360 break;
3361 }
3362
3363 cow_len -= num_clusters;
3364 cow_start += num_clusters;
3365 }
3366
3367 if (ocfs2_dealloc_has_cluster(&context->dealloc)) {
3368 ocfs2_schedule_truncate_log_flush(osb, 1);
3369 ocfs2_run_deallocs(osb, &context->dealloc);
3370 }
3371
3372 return ret;
3373}
3374
3375/*
3376 * Starting at cpos, try to CoW write_len clusters. Don't CoW
3377 * past max_cpos. This will stop when it runs into a hole or an
3378 * unrefcounted extent.
3379 */
3380static int ocfs2_refcount_cow_hunk(struct inode *inode,
3381 struct buffer_head *di_bh,
3382 u32 cpos, u32 write_len, u32 max_cpos)
3383{
3384 int ret;
3385 u32 cow_start = 0, cow_len = 0;
3386 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3387 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3388 struct buffer_head *ref_root_bh = NULL;
3389 struct ocfs2_refcount_tree *ref_tree;
3390 struct ocfs2_cow_context *context = NULL;
3391
3392 BUG_ON(!ocfs2_is_refcount_inode(inode));
3393
3394 ret = ocfs2_refcount_cal_cow_clusters(inode, &di->id2.i_list,
3395 cpos, write_len, max_cpos,
3396 &cow_start, &cow_len);
3397 if (ret) {
3398 mlog_errno(ret);
3399 goto out;
3400 }
3401
3402 trace_ocfs2_refcount_cow_hunk(OCFS2_I(inode)->ip_blkno,
3403 cpos, write_len, max_cpos,
3404 cow_start, cow_len);
3405
3406 BUG_ON(cow_len == 0);
3407
3408 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3409 if (!context) {
3410 ret = -ENOMEM;
3411 mlog_errno(ret);
3412 goto out;
3413 }
3414
3415 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
3416 1, &ref_tree, &ref_root_bh);
3417 if (ret) {
3418 mlog_errno(ret);
3419 goto out;
3420 }
3421
3422 context->inode = inode;
3423 context->cow_start = cow_start;
3424 context->cow_len = cow_len;
3425 context->ref_tree = ref_tree;
3426 context->ref_root_bh = ref_root_bh;
3427 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_page;
3428 context->get_clusters = ocfs2_di_get_clusters;
3429
3430 ocfs2_init_dinode_extent_tree(&context->data_et,
3431 INODE_CACHE(inode), di_bh);
3432
3433 ret = ocfs2_replace_cow(context);
3434 if (ret)
3435 mlog_errno(ret);
3436
3437 /*
3438 * truncate the extent map here since no matter whether we meet with
3439 * any error during the action, we shouldn't trust cached extent map
3440 * any more.
3441 */
3442 ocfs2_extent_map_trunc(inode, cow_start);
3443
3444 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3445 brelse(ref_root_bh);
3446out:
3447 kfree(context);
3448 return ret;
3449}
3450
3451/*
3452 * CoW any and all clusters between cpos and cpos+write_len.
3453 * Don't CoW past max_cpos. If this returns successfully, all
3454 * clusters between cpos and cpos+write_len are safe to modify.
3455 */
3456int ocfs2_refcount_cow(struct inode *inode,
3457 struct buffer_head *di_bh,
3458 u32 cpos, u32 write_len, u32 max_cpos)
3459{
3460 int ret = 0;
3461 u32 p_cluster, num_clusters;
3462 unsigned int ext_flags;
3463
3464 while (write_len) {
3465 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3466 &num_clusters, &ext_flags);
3467 if (ret) {
3468 mlog_errno(ret);
3469 break;
3470 }
3471
3472 if (write_len < num_clusters)
3473 num_clusters = write_len;
3474
3475 if (ext_flags & OCFS2_EXT_REFCOUNTED) {
3476 ret = ocfs2_refcount_cow_hunk(inode, di_bh, cpos,
3477 num_clusters, max_cpos);
3478 if (ret) {
3479 mlog_errno(ret);
3480 break;
3481 }
3482 }
3483
3484 write_len -= num_clusters;
3485 cpos += num_clusters;
3486 }
3487
3488 return ret;
3489}
3490
3491static int ocfs2_xattr_value_get_clusters(struct ocfs2_cow_context *context,
3492 u32 v_cluster, u32 *p_cluster,
3493 u32 *num_clusters,
3494 unsigned int *extent_flags)
3495{
3496 struct inode *inode = context->inode;
3497 struct ocfs2_xattr_value_root *xv = context->cow_object;
3498
3499 return ocfs2_xattr_get_clusters(inode, v_cluster, p_cluster,
3500 num_clusters, &xv->xr_list,
3501 extent_flags);
3502}
3503
3504/*
3505 * Given a xattr value root, calculate the most meta/credits we need for
3506 * refcount tree change if we truncate it to 0.
3507 */
3508int ocfs2_refcounted_xattr_delete_need(struct inode *inode,
3509 struct ocfs2_caching_info *ref_ci,
3510 struct buffer_head *ref_root_bh,
3511 struct ocfs2_xattr_value_root *xv,
3512 int *meta_add, int *credits)
3513{
3514 int ret = 0, index, ref_blocks = 0;
3515 u32 p_cluster, num_clusters;
3516 u32 cpos = 0, clusters = le32_to_cpu(xv->xr_clusters);
3517 struct ocfs2_refcount_block *rb;
3518 struct ocfs2_refcount_rec rec;
3519 struct buffer_head *ref_leaf_bh = NULL;
3520
3521 while (cpos < clusters) {
3522 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
3523 &num_clusters, &xv->xr_list,
3524 NULL);
3525 if (ret) {
3526 mlog_errno(ret);
3527 goto out;
3528 }
3529
3530 cpos += num_clusters;
3531
3532 while (num_clusters) {
3533 ret = ocfs2_get_refcount_rec(ref_ci, ref_root_bh,
3534 p_cluster, num_clusters,
3535 &rec, &index,
3536 &ref_leaf_bh);
3537 if (ret) {
3538 mlog_errno(ret);
3539 goto out;
3540 }
3541
3542 BUG_ON(!rec.r_refcount);
3543
3544 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
3545
3546 /*
3547 * We really don't know whether the other clusters is in
3548 * this refcount block or not, so just take the worst
3549 * case that all the clusters are in this block and each
3550 * one will split a refcount rec, so totally we need
3551 * clusters * 2 new refcount rec.
3552 */
3553 if (le16_to_cpu(rb->rf_records.rl_used) + clusters * 2 >
3554 le16_to_cpu(rb->rf_records.rl_count))
3555 ref_blocks++;
3556
3557 *credits += 1;
3558 brelse(ref_leaf_bh);
3559 ref_leaf_bh = NULL;
3560
3561 if (num_clusters <= le32_to_cpu(rec.r_clusters))
3562 break;
3563 else
3564 num_clusters -= le32_to_cpu(rec.r_clusters);
3565 p_cluster += num_clusters;
3566 }
3567 }
3568
3569 *meta_add += ref_blocks;
3570 if (!ref_blocks)
3571 goto out;
3572
3573 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
3574 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
3575 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
3576 else {
3577 struct ocfs2_extent_tree et;
3578
3579 ocfs2_init_refcount_extent_tree(&et, ref_ci, ref_root_bh);
3580 *credits += ocfs2_calc_extend_credits(inode->i_sb,
3581 et.et_root_el);
3582 }
3583
3584out:
3585 brelse(ref_leaf_bh);
3586 return ret;
3587}
3588
3589/*
3590 * Do CoW for xattr.
3591 */
3592int ocfs2_refcount_cow_xattr(struct inode *inode,
3593 struct ocfs2_dinode *di,
3594 struct ocfs2_xattr_value_buf *vb,
3595 struct ocfs2_refcount_tree *ref_tree,
3596 struct buffer_head *ref_root_bh,
3597 u32 cpos, u32 write_len,
3598 struct ocfs2_post_refcount *post)
3599{
3600 int ret;
3601 struct ocfs2_xattr_value_root *xv = vb->vb_xv;
3602 struct ocfs2_cow_context *context = NULL;
3603 u32 cow_start, cow_len;
3604
3605 BUG_ON(!ocfs2_is_refcount_inode(inode));
3606
3607 ret = ocfs2_refcount_cal_cow_clusters(inode, &xv->xr_list,
3608 cpos, write_len, UINT_MAX,
3609 &cow_start, &cow_len);
3610 if (ret) {
3611 mlog_errno(ret);
3612 goto out;
3613 }
3614
3615 BUG_ON(cow_len == 0);
3616
3617 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3618 if (!context) {
3619 ret = -ENOMEM;
3620 mlog_errno(ret);
3621 goto out;
3622 }
3623
3624 context->inode = inode;
3625 context->cow_start = cow_start;
3626 context->cow_len = cow_len;
3627 context->ref_tree = ref_tree;
3628 context->ref_root_bh = ref_root_bh;
3629 context->cow_object = xv;
3630
3631 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_jbd;
3632 /* We need the extra credits for duplicate_clusters by jbd. */
3633 context->extra_credits =
3634 ocfs2_clusters_to_blocks(inode->i_sb, 1) * cow_len;
3635 context->get_clusters = ocfs2_xattr_value_get_clusters;
3636 context->post_refcount = post;
3637
3638 ocfs2_init_xattr_value_extent_tree(&context->data_et,
3639 INODE_CACHE(inode), vb);
3640
3641 ret = ocfs2_replace_cow(context);
3642 if (ret)
3643 mlog_errno(ret);
3644
3645out:
3646 kfree(context);
3647 return ret;
3648}
3649
3650/*
3651 * Insert a new extent into refcount tree and mark a extent rec
3652 * as refcounted in the dinode tree.
3653 */
3654int ocfs2_add_refcount_flag(struct inode *inode,
3655 struct ocfs2_extent_tree *data_et,
3656 struct ocfs2_caching_info *ref_ci,
3657 struct buffer_head *ref_root_bh,
3658 u32 cpos, u32 p_cluster, u32 num_clusters,
3659 struct ocfs2_cached_dealloc_ctxt *dealloc,
3660 struct ocfs2_post_refcount *post)
3661{
3662 int ret;
3663 handle_t *handle;
3664 int credits = 1, ref_blocks = 0;
3665 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3666 struct ocfs2_alloc_context *meta_ac = NULL;
3667
3668 /* We need to be able to handle at least an extent tree split. */
3669 ref_blocks = ocfs2_extend_meta_needed(data_et->et_root_el);
3670
3671 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
3672 ref_ci, ref_root_bh,
3673 p_cluster, num_clusters,
3674 &ref_blocks, &credits);
3675 if (ret) {
3676 mlog_errno(ret);
3677 goto out;
3678 }
3679
3680 trace_ocfs2_add_refcount_flag(ref_blocks, credits);
3681
3682 if (ref_blocks) {
3683 ret = ocfs2_reserve_new_metadata_blocks(osb,
3684 ref_blocks, &meta_ac);
3685 if (ret) {
3686 mlog_errno(ret);
3687 goto out;
3688 }
3689 }
3690
3691 if (post)
3692 credits += post->credits;
3693
3694 handle = ocfs2_start_trans(osb, credits);
3695 if (IS_ERR(handle)) {
3696 ret = PTR_ERR(handle);
3697 mlog_errno(ret);
3698 goto out;
3699 }
3700
3701 ret = ocfs2_mark_extent_refcounted(inode, data_et, handle,
3702 cpos, num_clusters, p_cluster,
3703 meta_ac, dealloc);
3704 if (ret) {
3705 mlog_errno(ret);
3706 goto out_commit;
3707 }
3708
3709 ret = __ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3710 p_cluster, num_clusters, 0,
3711 meta_ac, dealloc);
3712 if (ret) {
3713 mlog_errno(ret);
3714 goto out_commit;
3715 }
3716
3717 if (post && post->func) {
3718 ret = post->func(inode, handle, post->para);
3719 if (ret)
3720 mlog_errno(ret);
3721 }
3722
3723out_commit:
3724 ocfs2_commit_trans(osb, handle);
3725out:
3726 if (meta_ac)
3727 ocfs2_free_alloc_context(meta_ac);
3728 return ret;
3729}
3730
3731static int ocfs2_change_ctime(struct inode *inode,
3732 struct buffer_head *di_bh)
3733{
3734 int ret;
3735 handle_t *handle;
3736 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3737
3738 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
3739 OCFS2_INODE_UPDATE_CREDITS);
3740 if (IS_ERR(handle)) {
3741 ret = PTR_ERR(handle);
3742 mlog_errno(ret);
3743 goto out;
3744 }
3745
3746 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
3747 OCFS2_JOURNAL_ACCESS_WRITE);
3748 if (ret) {
3749 mlog_errno(ret);
3750 goto out_commit;
3751 }
3752
3753 inode_set_ctime_current(inode);
3754 di->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
3755 di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
3756
3757 ocfs2_journal_dirty(handle, di_bh);
3758
3759out_commit:
3760 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
3761out:
3762 return ret;
3763}
3764
3765static int ocfs2_attach_refcount_tree(struct inode *inode,
3766 struct buffer_head *di_bh)
3767{
3768 int ret, data_changed = 0;
3769 struct buffer_head *ref_root_bh = NULL;
3770 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3771 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3772 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3773 struct ocfs2_refcount_tree *ref_tree;
3774 unsigned int ext_flags;
3775 loff_t size;
3776 u32 cpos, num_clusters, clusters, p_cluster;
3777 struct ocfs2_cached_dealloc_ctxt dealloc;
3778 struct ocfs2_extent_tree di_et;
3779
3780 ocfs2_init_dealloc_ctxt(&dealloc);
3781
3782 if (!ocfs2_is_refcount_inode(inode)) {
3783 ret = ocfs2_create_refcount_tree(inode, di_bh);
3784 if (ret) {
3785 mlog_errno(ret);
3786 goto out;
3787 }
3788 }
3789
3790 BUG_ON(!di->i_refcount_loc);
3791 ret = ocfs2_lock_refcount_tree(osb,
3792 le64_to_cpu(di->i_refcount_loc), 1,
3793 &ref_tree, &ref_root_bh);
3794 if (ret) {
3795 mlog_errno(ret);
3796 goto out;
3797 }
3798
3799 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
3800 goto attach_xattr;
3801
3802 ocfs2_init_dinode_extent_tree(&di_et, INODE_CACHE(inode), di_bh);
3803
3804 size = i_size_read(inode);
3805 clusters = ocfs2_clusters_for_bytes(inode->i_sb, size);
3806
3807 cpos = 0;
3808 while (cpos < clusters) {
3809 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3810 &num_clusters, &ext_flags);
3811 if (ret) {
3812 mlog_errno(ret);
3813 goto unlock;
3814 }
3815 if (p_cluster && !(ext_flags & OCFS2_EXT_REFCOUNTED)) {
3816 ret = ocfs2_add_refcount_flag(inode, &di_et,
3817 &ref_tree->rf_ci,
3818 ref_root_bh, cpos,
3819 p_cluster, num_clusters,
3820 &dealloc, NULL);
3821 if (ret) {
3822 mlog_errno(ret);
3823 goto unlock;
3824 }
3825
3826 data_changed = 1;
3827 }
3828 cpos += num_clusters;
3829 }
3830
3831attach_xattr:
3832 if (oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
3833 ret = ocfs2_xattr_attach_refcount_tree(inode, di_bh,
3834 &ref_tree->rf_ci,
3835 ref_root_bh,
3836 &dealloc);
3837 if (ret) {
3838 mlog_errno(ret);
3839 goto unlock;
3840 }
3841 }
3842
3843 if (data_changed) {
3844 ret = ocfs2_change_ctime(inode, di_bh);
3845 if (ret)
3846 mlog_errno(ret);
3847 }
3848
3849unlock:
3850 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3851 brelse(ref_root_bh);
3852
3853 if (!ret && ocfs2_dealloc_has_cluster(&dealloc)) {
3854 ocfs2_schedule_truncate_log_flush(osb, 1);
3855 ocfs2_run_deallocs(osb, &dealloc);
3856 }
3857out:
3858 /*
3859 * Empty the extent map so that we may get the right extent
3860 * record from the disk.
3861 */
3862 ocfs2_extent_map_trunc(inode, 0);
3863
3864 return ret;
3865}
3866
3867static int ocfs2_add_refcounted_extent(struct inode *inode,
3868 struct ocfs2_extent_tree *et,
3869 struct ocfs2_caching_info *ref_ci,
3870 struct buffer_head *ref_root_bh,
3871 u32 cpos, u32 p_cluster, u32 num_clusters,
3872 unsigned int ext_flags,
3873 struct ocfs2_cached_dealloc_ctxt *dealloc)
3874{
3875 int ret;
3876 handle_t *handle;
3877 int credits = 0;
3878 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3879 struct ocfs2_alloc_context *meta_ac = NULL;
3880
3881 ret = ocfs2_lock_refcount_allocators(inode->i_sb,
3882 p_cluster, num_clusters,
3883 et, ref_ci,
3884 ref_root_bh, &meta_ac,
3885 NULL, &credits);
3886 if (ret) {
3887 mlog_errno(ret);
3888 goto out;
3889 }
3890
3891 handle = ocfs2_start_trans(osb, credits);
3892 if (IS_ERR(handle)) {
3893 ret = PTR_ERR(handle);
3894 mlog_errno(ret);
3895 goto out;
3896 }
3897
3898 ret = ocfs2_insert_extent(handle, et, cpos,
3899 ocfs2_clusters_to_blocks(inode->i_sb, p_cluster),
3900 num_clusters, ext_flags, meta_ac);
3901 if (ret) {
3902 mlog_errno(ret);
3903 goto out_commit;
3904 }
3905
3906 ret = ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3907 p_cluster, num_clusters,
3908 meta_ac, dealloc);
3909 if (ret) {
3910 mlog_errno(ret);
3911 goto out_commit;
3912 }
3913
3914 ret = dquot_alloc_space_nodirty(inode,
3915 ocfs2_clusters_to_bytes(osb->sb, num_clusters));
3916 if (ret)
3917 mlog_errno(ret);
3918
3919out_commit:
3920 ocfs2_commit_trans(osb, handle);
3921out:
3922 if (meta_ac)
3923 ocfs2_free_alloc_context(meta_ac);
3924 return ret;
3925}
3926
3927static int ocfs2_duplicate_inline_data(struct inode *s_inode,
3928 struct buffer_head *s_bh,
3929 struct inode *t_inode,
3930 struct buffer_head *t_bh)
3931{
3932 int ret;
3933 handle_t *handle;
3934 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
3935 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
3936 struct ocfs2_dinode *t_di = (struct ocfs2_dinode *)t_bh->b_data;
3937
3938 BUG_ON(!(OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
3939
3940 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
3941 if (IS_ERR(handle)) {
3942 ret = PTR_ERR(handle);
3943 mlog_errno(ret);
3944 goto out;
3945 }
3946
3947 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
3948 OCFS2_JOURNAL_ACCESS_WRITE);
3949 if (ret) {
3950 mlog_errno(ret);
3951 goto out_commit;
3952 }
3953
3954 t_di->id2.i_data.id_count = s_di->id2.i_data.id_count;
3955 memcpy(t_di->id2.i_data.id_data, s_di->id2.i_data.id_data,
3956 le16_to_cpu(s_di->id2.i_data.id_count));
3957 spin_lock(&OCFS2_I(t_inode)->ip_lock);
3958 OCFS2_I(t_inode)->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
3959 t_di->i_dyn_features = cpu_to_le16(OCFS2_I(t_inode)->ip_dyn_features);
3960 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
3961
3962 ocfs2_journal_dirty(handle, t_bh);
3963
3964out_commit:
3965 ocfs2_commit_trans(osb, handle);
3966out:
3967 return ret;
3968}
3969
3970static int ocfs2_duplicate_extent_list(struct inode *s_inode,
3971 struct inode *t_inode,
3972 struct buffer_head *t_bh,
3973 struct ocfs2_caching_info *ref_ci,
3974 struct buffer_head *ref_root_bh,
3975 struct ocfs2_cached_dealloc_ctxt *dealloc)
3976{
3977 int ret = 0;
3978 u32 p_cluster, num_clusters, clusters, cpos;
3979 loff_t size;
3980 unsigned int ext_flags;
3981 struct ocfs2_extent_tree et;
3982
3983 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(t_inode), t_bh);
3984
3985 size = i_size_read(s_inode);
3986 clusters = ocfs2_clusters_for_bytes(s_inode->i_sb, size);
3987
3988 cpos = 0;
3989 while (cpos < clusters) {
3990 ret = ocfs2_get_clusters(s_inode, cpos, &p_cluster,
3991 &num_clusters, &ext_flags);
3992 if (ret) {
3993 mlog_errno(ret);
3994 goto out;
3995 }
3996 if (p_cluster) {
3997 ret = ocfs2_add_refcounted_extent(t_inode, &et,
3998 ref_ci, ref_root_bh,
3999 cpos, p_cluster,
4000 num_clusters,
4001 ext_flags,
4002 dealloc);
4003 if (ret) {
4004 mlog_errno(ret);
4005 goto out;
4006 }
4007 }
4008
4009 cpos += num_clusters;
4010 }
4011
4012out:
4013 return ret;
4014}
4015
4016/*
4017 * change the new file's attributes to the src.
4018 *
4019 * reflink creates a snapshot of a file, that means the attributes
4020 * must be identical except for three exceptions - nlink, ino, and ctime.
4021 */
4022static int ocfs2_complete_reflink(struct inode *s_inode,
4023 struct buffer_head *s_bh,
4024 struct inode *t_inode,
4025 struct buffer_head *t_bh,
4026 bool preserve)
4027{
4028 int ret;
4029 handle_t *handle;
4030 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
4031 struct ocfs2_dinode *di = (struct ocfs2_dinode *)t_bh->b_data;
4032 loff_t size = i_size_read(s_inode);
4033
4034 handle = ocfs2_start_trans(OCFS2_SB(t_inode->i_sb),
4035 OCFS2_INODE_UPDATE_CREDITS);
4036 if (IS_ERR(handle)) {
4037 ret = PTR_ERR(handle);
4038 mlog_errno(ret);
4039 return ret;
4040 }
4041
4042 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4043 OCFS2_JOURNAL_ACCESS_WRITE);
4044 if (ret) {
4045 mlog_errno(ret);
4046 goto out_commit;
4047 }
4048
4049 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4050 OCFS2_I(t_inode)->ip_clusters = OCFS2_I(s_inode)->ip_clusters;
4051 OCFS2_I(t_inode)->ip_attr = OCFS2_I(s_inode)->ip_attr;
4052 OCFS2_I(t_inode)->ip_dyn_features = OCFS2_I(s_inode)->ip_dyn_features;
4053 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4054 i_size_write(t_inode, size);
4055 t_inode->i_blocks = s_inode->i_blocks;
4056
4057 di->i_xattr_inline_size = s_di->i_xattr_inline_size;
4058 di->i_clusters = s_di->i_clusters;
4059 di->i_size = s_di->i_size;
4060 di->i_dyn_features = s_di->i_dyn_features;
4061 di->i_attr = s_di->i_attr;
4062
4063 if (preserve) {
4064 t_inode->i_uid = s_inode->i_uid;
4065 t_inode->i_gid = s_inode->i_gid;
4066 t_inode->i_mode = s_inode->i_mode;
4067 di->i_uid = s_di->i_uid;
4068 di->i_gid = s_di->i_gid;
4069 di->i_mode = s_di->i_mode;
4070
4071 /*
4072 * update time.
4073 * we want mtime to appear identical to the source and
4074 * update ctime.
4075 */
4076 inode_set_ctime_current(t_inode);
4077
4078 di->i_ctime = cpu_to_le64(inode_get_ctime_sec(t_inode));
4079 di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(t_inode));
4080
4081 inode_set_mtime_to_ts(t_inode, inode_get_mtime(s_inode));
4082 di->i_mtime = s_di->i_mtime;
4083 di->i_mtime_nsec = s_di->i_mtime_nsec;
4084 }
4085
4086 ocfs2_journal_dirty(handle, t_bh);
4087
4088out_commit:
4089 ocfs2_commit_trans(OCFS2_SB(t_inode->i_sb), handle);
4090 return ret;
4091}
4092
4093static int ocfs2_create_reflink_node(struct inode *s_inode,
4094 struct buffer_head *s_bh,
4095 struct inode *t_inode,
4096 struct buffer_head *t_bh,
4097 bool preserve)
4098{
4099 int ret;
4100 struct buffer_head *ref_root_bh = NULL;
4101 struct ocfs2_cached_dealloc_ctxt dealloc;
4102 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
4103 struct ocfs2_dinode *di = (struct ocfs2_dinode *)s_bh->b_data;
4104 struct ocfs2_refcount_tree *ref_tree;
4105
4106 ocfs2_init_dealloc_ctxt(&dealloc);
4107
4108 ret = ocfs2_set_refcount_tree(t_inode, t_bh,
4109 le64_to_cpu(di->i_refcount_loc));
4110 if (ret) {
4111 mlog_errno(ret);
4112 goto out;
4113 }
4114
4115 if (OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4116 ret = ocfs2_duplicate_inline_data(s_inode, s_bh,
4117 t_inode, t_bh);
4118 if (ret)
4119 mlog_errno(ret);
4120 goto out;
4121 }
4122
4123 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
4124 1, &ref_tree, &ref_root_bh);
4125 if (ret) {
4126 mlog_errno(ret);
4127 goto out;
4128 }
4129
4130 ret = ocfs2_duplicate_extent_list(s_inode, t_inode, t_bh,
4131 &ref_tree->rf_ci, ref_root_bh,
4132 &dealloc);
4133 if (ret) {
4134 mlog_errno(ret);
4135 goto out_unlock_refcount;
4136 }
4137
4138out_unlock_refcount:
4139 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4140 brelse(ref_root_bh);
4141out:
4142 if (ocfs2_dealloc_has_cluster(&dealloc)) {
4143 ocfs2_schedule_truncate_log_flush(osb, 1);
4144 ocfs2_run_deallocs(osb, &dealloc);
4145 }
4146
4147 return ret;
4148}
4149
4150static int __ocfs2_reflink(struct dentry *old_dentry,
4151 struct buffer_head *old_bh,
4152 struct inode *new_inode,
4153 bool preserve)
4154{
4155 int ret;
4156 struct inode *inode = d_inode(old_dentry);
4157 struct buffer_head *new_bh = NULL;
4158
4159 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
4160 ret = -EINVAL;
4161 mlog_errno(ret);
4162 goto out;
4163 }
4164
4165 ret = filemap_fdatawrite(inode->i_mapping);
4166 if (ret) {
4167 mlog_errno(ret);
4168 goto out;
4169 }
4170
4171 ret = ocfs2_attach_refcount_tree(inode, old_bh);
4172 if (ret) {
4173 mlog_errno(ret);
4174 goto out;
4175 }
4176
4177 inode_lock_nested(new_inode, I_MUTEX_CHILD);
4178 ret = ocfs2_inode_lock_nested(new_inode, &new_bh, 1,
4179 OI_LS_REFLINK_TARGET);
4180 if (ret) {
4181 mlog_errno(ret);
4182 goto out_unlock;
4183 }
4184
4185 ret = ocfs2_create_reflink_node(inode, old_bh,
4186 new_inode, new_bh, preserve);
4187 if (ret) {
4188 mlog_errno(ret);
4189 goto inode_unlock;
4190 }
4191
4192 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
4193 ret = ocfs2_reflink_xattrs(inode, old_bh,
4194 new_inode, new_bh,
4195 preserve);
4196 if (ret) {
4197 mlog_errno(ret);
4198 goto inode_unlock;
4199 }
4200 }
4201
4202 ret = ocfs2_complete_reflink(inode, old_bh,
4203 new_inode, new_bh, preserve);
4204 if (ret)
4205 mlog_errno(ret);
4206
4207inode_unlock:
4208 ocfs2_inode_unlock(new_inode, 1);
4209 brelse(new_bh);
4210out_unlock:
4211 inode_unlock(new_inode);
4212out:
4213 if (!ret) {
4214 ret = filemap_fdatawait(inode->i_mapping);
4215 if (ret)
4216 mlog_errno(ret);
4217 }
4218 return ret;
4219}
4220
4221static int ocfs2_reflink(struct dentry *old_dentry, struct inode *dir,
4222 struct dentry *new_dentry, bool preserve)
4223{
4224 int error, had_lock;
4225 struct inode *inode = d_inode(old_dentry);
4226 struct buffer_head *old_bh = NULL;
4227 struct inode *new_orphan_inode = NULL;
4228 struct ocfs2_lock_holder oh;
4229
4230 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4231 return -EOPNOTSUPP;
4232
4233
4234 error = ocfs2_create_inode_in_orphan(dir, inode->i_mode,
4235 &new_orphan_inode);
4236 if (error) {
4237 mlog_errno(error);
4238 goto out;
4239 }
4240
4241 error = ocfs2_rw_lock(inode, 1);
4242 if (error) {
4243 mlog_errno(error);
4244 goto out;
4245 }
4246
4247 error = ocfs2_inode_lock(inode, &old_bh, 1);
4248 if (error) {
4249 mlog_errno(error);
4250 ocfs2_rw_unlock(inode, 1);
4251 goto out;
4252 }
4253
4254 down_write(&OCFS2_I(inode)->ip_xattr_sem);
4255 down_write(&OCFS2_I(inode)->ip_alloc_sem);
4256 error = __ocfs2_reflink(old_dentry, old_bh,
4257 new_orphan_inode, preserve);
4258 up_write(&OCFS2_I(inode)->ip_alloc_sem);
4259 up_write(&OCFS2_I(inode)->ip_xattr_sem);
4260
4261 ocfs2_inode_unlock(inode, 1);
4262 ocfs2_rw_unlock(inode, 1);
4263 brelse(old_bh);
4264
4265 if (error) {
4266 mlog_errno(error);
4267 goto out;
4268 }
4269
4270 had_lock = ocfs2_inode_lock_tracker(new_orphan_inode, NULL, 1,
4271 &oh);
4272 if (had_lock < 0) {
4273 error = had_lock;
4274 mlog_errno(error);
4275 goto out;
4276 }
4277
4278 /* If the security isn't preserved, we need to re-initialize them. */
4279 if (!preserve) {
4280 error = ocfs2_init_security_and_acl(dir, new_orphan_inode,
4281 &new_dentry->d_name);
4282 if (error)
4283 mlog_errno(error);
4284 }
4285 if (!error) {
4286 error = ocfs2_mv_orphaned_inode_to_new(dir, new_orphan_inode,
4287 new_dentry);
4288 if (error)
4289 mlog_errno(error);
4290 }
4291 ocfs2_inode_unlock_tracker(new_orphan_inode, 1, &oh, had_lock);
4292
4293out:
4294 if (new_orphan_inode) {
4295 /*
4296 * We need to open_unlock the inode no matter whether we
4297 * succeed or not, so that other nodes can delete it later.
4298 */
4299 ocfs2_open_unlock(new_orphan_inode);
4300 if (error)
4301 iput(new_orphan_inode);
4302 }
4303
4304 return error;
4305}
4306
4307/*
4308 * Below here are the bits used by OCFS2_IOC_REFLINK() to fake
4309 * sys_reflink(). This will go away when vfs_reflink() exists in
4310 * fs/namei.c.
4311 */
4312
4313/* copied from may_create in VFS. */
4314static inline int ocfs2_may_create(struct inode *dir, struct dentry *child)
4315{
4316 if (d_really_is_positive(child))
4317 return -EEXIST;
4318 if (IS_DEADDIR(dir))
4319 return -ENOENT;
4320 return inode_permission(&nop_mnt_idmap, dir, MAY_WRITE | MAY_EXEC);
4321}
4322
4323/**
4324 * ocfs2_vfs_reflink - Create a reference-counted link
4325 *
4326 * @old_dentry: source dentry + inode
4327 * @dir: directory to create the target
4328 * @new_dentry: target dentry
4329 * @preserve: if true, preserve all file attributes
4330 */
4331static int ocfs2_vfs_reflink(struct dentry *old_dentry, struct inode *dir,
4332 struct dentry *new_dentry, bool preserve)
4333{
4334 struct inode *inode = d_inode(old_dentry);
4335 int error;
4336
4337 if (!inode)
4338 return -ENOENT;
4339
4340 error = ocfs2_may_create(dir, new_dentry);
4341 if (error)
4342 return error;
4343
4344 if (dir->i_sb != inode->i_sb)
4345 return -EXDEV;
4346
4347 /*
4348 * A reflink to an append-only or immutable file cannot be created.
4349 */
4350 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4351 return -EPERM;
4352
4353 /* Only regular files can be reflinked. */
4354 if (!S_ISREG(inode->i_mode))
4355 return -EPERM;
4356
4357 /*
4358 * If the caller wants to preserve ownership, they require the
4359 * rights to do so.
4360 */
4361 if (preserve) {
4362 if (!uid_eq(current_fsuid(), inode->i_uid) && !capable(CAP_CHOWN))
4363 return -EPERM;
4364 if (!in_group_p(inode->i_gid) && !capable(CAP_CHOWN))
4365 return -EPERM;
4366 }
4367
4368 /*
4369 * If the caller is modifying any aspect of the attributes, they
4370 * are not creating a snapshot. They need read permission on the
4371 * file.
4372 */
4373 if (!preserve) {
4374 error = inode_permission(&nop_mnt_idmap, inode, MAY_READ);
4375 if (error)
4376 return error;
4377 }
4378
4379 inode_lock(inode);
4380 error = dquot_initialize(dir);
4381 if (!error)
4382 error = ocfs2_reflink(old_dentry, dir, new_dentry, preserve);
4383 inode_unlock(inode);
4384 if (!error)
4385 fsnotify_create(dir, new_dentry);
4386 return error;
4387}
4388/*
4389 * Most codes are copied from sys_linkat.
4390 */
4391int ocfs2_reflink_ioctl(struct inode *inode,
4392 const char __user *oldname,
4393 const char __user *newname,
4394 bool preserve)
4395{
4396 struct dentry *new_dentry;
4397 struct path old_path, new_path;
4398 int error;
4399
4400 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4401 return -EOPNOTSUPP;
4402
4403 error = user_path_at(AT_FDCWD, oldname, 0, &old_path);
4404 if (error) {
4405 mlog_errno(error);
4406 return error;
4407 }
4408
4409 new_dentry = user_path_create(AT_FDCWD, newname, &new_path, 0);
4410 error = PTR_ERR(new_dentry);
4411 if (IS_ERR(new_dentry)) {
4412 mlog_errno(error);
4413 goto out;
4414 }
4415
4416 error = -EXDEV;
4417 if (old_path.mnt != new_path.mnt) {
4418 mlog_errno(error);
4419 goto out_dput;
4420 }
4421
4422 error = ocfs2_vfs_reflink(old_path.dentry,
4423 d_inode(new_path.dentry),
4424 new_dentry, preserve);
4425out_dput:
4426 done_path_create(&new_path, new_dentry);
4427out:
4428 path_put(&old_path);
4429
4430 return error;
4431}
4432
4433/* Update destination inode size, if necessary. */
4434int ocfs2_reflink_update_dest(struct inode *dest,
4435 struct buffer_head *d_bh,
4436 loff_t newlen)
4437{
4438 handle_t *handle;
4439 int ret;
4440
4441 dest->i_blocks = ocfs2_inode_sector_count(dest);
4442
4443 if (newlen <= i_size_read(dest))
4444 return 0;
4445
4446 handle = ocfs2_start_trans(OCFS2_SB(dest->i_sb),
4447 OCFS2_INODE_UPDATE_CREDITS);
4448 if (IS_ERR(handle)) {
4449 ret = PTR_ERR(handle);
4450 mlog_errno(ret);
4451 return ret;
4452 }
4453
4454 /* Extend i_size if needed. */
4455 spin_lock(&OCFS2_I(dest)->ip_lock);
4456 if (newlen > i_size_read(dest))
4457 i_size_write(dest, newlen);
4458 spin_unlock(&OCFS2_I(dest)->ip_lock);
4459 inode_set_mtime_to_ts(dest, inode_set_ctime_current(dest));
4460
4461 ret = ocfs2_mark_inode_dirty(handle, dest, d_bh);
4462 if (ret) {
4463 mlog_errno(ret);
4464 goto out_commit;
4465 }
4466
4467out_commit:
4468 ocfs2_commit_trans(OCFS2_SB(dest->i_sb), handle);
4469 return ret;
4470}
4471
4472/* Remap the range pos_in:len in s_inode to pos_out:len in t_inode. */
4473static loff_t ocfs2_reflink_remap_extent(struct inode *s_inode,
4474 struct buffer_head *s_bh,
4475 loff_t pos_in,
4476 struct inode *t_inode,
4477 struct buffer_head *t_bh,
4478 loff_t pos_out,
4479 loff_t len,
4480 struct ocfs2_cached_dealloc_ctxt *dealloc)
4481{
4482 struct ocfs2_extent_tree s_et;
4483 struct ocfs2_extent_tree t_et;
4484 struct ocfs2_dinode *dis;
4485 struct buffer_head *ref_root_bh = NULL;
4486 struct ocfs2_refcount_tree *ref_tree;
4487 struct ocfs2_super *osb;
4488 loff_t remapped_bytes = 0;
4489 loff_t pstart, plen;
4490 u32 p_cluster, num_clusters, slast, spos, tpos, remapped_clus = 0;
4491 unsigned int ext_flags;
4492 int ret = 0;
4493
4494 osb = OCFS2_SB(s_inode->i_sb);
4495 dis = (struct ocfs2_dinode *)s_bh->b_data;
4496 ocfs2_init_dinode_extent_tree(&s_et, INODE_CACHE(s_inode), s_bh);
4497 ocfs2_init_dinode_extent_tree(&t_et, INODE_CACHE(t_inode), t_bh);
4498
4499 spos = ocfs2_bytes_to_clusters(s_inode->i_sb, pos_in);
4500 tpos = ocfs2_bytes_to_clusters(t_inode->i_sb, pos_out);
4501 slast = ocfs2_clusters_for_bytes(s_inode->i_sb, pos_in + len);
4502
4503 while (spos < slast) {
4504 if (fatal_signal_pending(current)) {
4505 ret = -EINTR;
4506 goto out;
4507 }
4508
4509 /* Look up the extent. */
4510 ret = ocfs2_get_clusters(s_inode, spos, &p_cluster,
4511 &num_clusters, &ext_flags);
4512 if (ret) {
4513 mlog_errno(ret);
4514 goto out;
4515 }
4516
4517 num_clusters = min_t(u32, num_clusters, slast - spos);
4518
4519 /* Punch out the dest range. */
4520 pstart = ocfs2_clusters_to_bytes(t_inode->i_sb, tpos);
4521 plen = ocfs2_clusters_to_bytes(t_inode->i_sb, num_clusters);
4522 ret = ocfs2_remove_inode_range(t_inode, t_bh, pstart, plen);
4523 if (ret) {
4524 mlog_errno(ret);
4525 goto out;
4526 }
4527
4528 if (p_cluster == 0)
4529 goto next_loop;
4530
4531 /* Lock the refcount btree... */
4532 ret = ocfs2_lock_refcount_tree(osb,
4533 le64_to_cpu(dis->i_refcount_loc),
4534 1, &ref_tree, &ref_root_bh);
4535 if (ret) {
4536 mlog_errno(ret);
4537 goto out;
4538 }
4539
4540 /* Mark s_inode's extent as refcounted. */
4541 if (!(ext_flags & OCFS2_EXT_REFCOUNTED)) {
4542 ret = ocfs2_add_refcount_flag(s_inode, &s_et,
4543 &ref_tree->rf_ci,
4544 ref_root_bh, spos,
4545 p_cluster, num_clusters,
4546 dealloc, NULL);
4547 if (ret) {
4548 mlog_errno(ret);
4549 goto out_unlock_refcount;
4550 }
4551 }
4552
4553 /* Map in the new extent. */
4554 ext_flags |= OCFS2_EXT_REFCOUNTED;
4555 ret = ocfs2_add_refcounted_extent(t_inode, &t_et,
4556 &ref_tree->rf_ci,
4557 ref_root_bh,
4558 tpos, p_cluster,
4559 num_clusters,
4560 ext_flags,
4561 dealloc);
4562 if (ret) {
4563 mlog_errno(ret);
4564 goto out_unlock_refcount;
4565 }
4566
4567 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4568 brelse(ref_root_bh);
4569next_loop:
4570 spos += num_clusters;
4571 tpos += num_clusters;
4572 remapped_clus += num_clusters;
4573 }
4574
4575 goto out;
4576out_unlock_refcount:
4577 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4578 brelse(ref_root_bh);
4579out:
4580 remapped_bytes = ocfs2_clusters_to_bytes(t_inode->i_sb, remapped_clus);
4581 remapped_bytes = min_t(loff_t, len, remapped_bytes);
4582
4583 return remapped_bytes > 0 ? remapped_bytes : ret;
4584}
4585
4586/* Set up refcount tree and remap s_inode to t_inode. */
4587loff_t ocfs2_reflink_remap_blocks(struct inode *s_inode,
4588 struct buffer_head *s_bh,
4589 loff_t pos_in,
4590 struct inode *t_inode,
4591 struct buffer_head *t_bh,
4592 loff_t pos_out,
4593 loff_t len)
4594{
4595 struct ocfs2_cached_dealloc_ctxt dealloc;
4596 struct ocfs2_super *osb;
4597 struct ocfs2_dinode *dis;
4598 struct ocfs2_dinode *dit;
4599 loff_t ret;
4600
4601 osb = OCFS2_SB(s_inode->i_sb);
4602 dis = (struct ocfs2_dinode *)s_bh->b_data;
4603 dit = (struct ocfs2_dinode *)t_bh->b_data;
4604 ocfs2_init_dealloc_ctxt(&dealloc);
4605
4606 /*
4607 * If we're reflinking the entire file and the source is inline
4608 * data, just copy the contents.
4609 */
4610 if (pos_in == pos_out && pos_in == 0 && len == i_size_read(s_inode) &&
4611 i_size_read(t_inode) <= len &&
4612 (OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)) {
4613 ret = ocfs2_duplicate_inline_data(s_inode, s_bh, t_inode, t_bh);
4614 if (ret)
4615 mlog_errno(ret);
4616 goto out;
4617 }
4618
4619 /*
4620 * If both inodes belong to two different refcount groups then
4621 * forget it because we don't know how (or want) to go merging
4622 * refcount trees.
4623 */
4624 ret = -EOPNOTSUPP;
4625 if (ocfs2_is_refcount_inode(s_inode) &&
4626 ocfs2_is_refcount_inode(t_inode) &&
4627 le64_to_cpu(dis->i_refcount_loc) !=
4628 le64_to_cpu(dit->i_refcount_loc))
4629 goto out;
4630
4631 /* Neither inode has a refcount tree. Add one to s_inode. */
4632 if (!ocfs2_is_refcount_inode(s_inode) &&
4633 !ocfs2_is_refcount_inode(t_inode)) {
4634 ret = ocfs2_create_refcount_tree(s_inode, s_bh);
4635 if (ret) {
4636 mlog_errno(ret);
4637 goto out;
4638 }
4639 }
4640
4641 /* Ensure that both inodes end up with the same refcount tree. */
4642 if (!ocfs2_is_refcount_inode(s_inode)) {
4643 ret = ocfs2_set_refcount_tree(s_inode, s_bh,
4644 le64_to_cpu(dit->i_refcount_loc));
4645 if (ret) {
4646 mlog_errno(ret);
4647 goto out;
4648 }
4649 }
4650 if (!ocfs2_is_refcount_inode(t_inode)) {
4651 ret = ocfs2_set_refcount_tree(t_inode, t_bh,
4652 le64_to_cpu(dis->i_refcount_loc));
4653 if (ret) {
4654 mlog_errno(ret);
4655 goto out;
4656 }
4657 }
4658
4659 /* Turn off inline data in the dest file. */
4660 if (OCFS2_I(t_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4661 ret = ocfs2_convert_inline_data_to_extents(t_inode, t_bh);
4662 if (ret) {
4663 mlog_errno(ret);
4664 goto out;
4665 }
4666 }
4667
4668 /* Actually remap extents now. */
4669 ret = ocfs2_reflink_remap_extent(s_inode, s_bh, pos_in, t_inode, t_bh,
4670 pos_out, len, &dealloc);
4671 if (ret < 0) {
4672 mlog_errno(ret);
4673 goto out;
4674 }
4675
4676out:
4677 if (ocfs2_dealloc_has_cluster(&dealloc)) {
4678 ocfs2_schedule_truncate_log_flush(osb, 1);
4679 ocfs2_run_deallocs(osb, &dealloc);
4680 }
4681
4682 return ret;
4683}
4684
4685/* Lock an inode and grab a bh pointing to the inode. */
4686int ocfs2_reflink_inodes_lock(struct inode *s_inode,
4687 struct buffer_head **bh_s,
4688 struct inode *t_inode,
4689 struct buffer_head **bh_t)
4690{
4691 struct inode *inode1 = s_inode;
4692 struct inode *inode2 = t_inode;
4693 struct ocfs2_inode_info *oi1;
4694 struct ocfs2_inode_info *oi2;
4695 struct buffer_head *bh1 = NULL;
4696 struct buffer_head *bh2 = NULL;
4697 bool same_inode = (s_inode == t_inode);
4698 bool need_swap = (inode1->i_ino > inode2->i_ino);
4699 int status;
4700
4701 /* First grab the VFS and rw locks. */
4702 lock_two_nondirectories(s_inode, t_inode);
4703 if (need_swap)
4704 swap(inode1, inode2);
4705
4706 status = ocfs2_rw_lock(inode1, 1);
4707 if (status) {
4708 mlog_errno(status);
4709 goto out_i1;
4710 }
4711 if (!same_inode) {
4712 status = ocfs2_rw_lock(inode2, 1);
4713 if (status) {
4714 mlog_errno(status);
4715 goto out_i2;
4716 }
4717 }
4718
4719 /* Now go for the cluster locks */
4720 oi1 = OCFS2_I(inode1);
4721 oi2 = OCFS2_I(inode2);
4722
4723 trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno,
4724 (unsigned long long)oi2->ip_blkno);
4725
4726 /* We always want to lock the one with the lower lockid first. */
4727 if (oi1->ip_blkno > oi2->ip_blkno)
4728 mlog_errno(-ENOLCK);
4729
4730 /* lock id1 */
4731 status = ocfs2_inode_lock_nested(inode1, &bh1, 1,
4732 OI_LS_REFLINK_TARGET);
4733 if (status < 0) {
4734 if (status != -ENOENT)
4735 mlog_errno(status);
4736 goto out_rw2;
4737 }
4738
4739 /* lock id2 */
4740 if (!same_inode) {
4741 status = ocfs2_inode_lock_nested(inode2, &bh2, 1,
4742 OI_LS_REFLINK_TARGET);
4743 if (status < 0) {
4744 if (status != -ENOENT)
4745 mlog_errno(status);
4746 goto out_cl1;
4747 }
4748 } else {
4749 bh2 = bh1;
4750 }
4751
4752 /*
4753 * If we swapped inode order above, we have to swap the buffer heads
4754 * before passing them back to the caller.
4755 */
4756 if (need_swap)
4757 swap(bh1, bh2);
4758 *bh_s = bh1;
4759 *bh_t = bh2;
4760
4761 trace_ocfs2_double_lock_end(
4762 (unsigned long long)oi1->ip_blkno,
4763 (unsigned long long)oi2->ip_blkno);
4764
4765 return 0;
4766
4767out_cl1:
4768 ocfs2_inode_unlock(inode1, 1);
4769 brelse(bh1);
4770out_rw2:
4771 ocfs2_rw_unlock(inode2, 1);
4772out_i2:
4773 ocfs2_rw_unlock(inode1, 1);
4774out_i1:
4775 unlock_two_nondirectories(s_inode, t_inode);
4776 return status;
4777}
4778
4779/* Unlock both inodes and release buffers. */
4780void ocfs2_reflink_inodes_unlock(struct inode *s_inode,
4781 struct buffer_head *s_bh,
4782 struct inode *t_inode,
4783 struct buffer_head *t_bh)
4784{
4785 ocfs2_inode_unlock(s_inode, 1);
4786 ocfs2_rw_unlock(s_inode, 1);
4787 brelse(s_bh);
4788 if (s_inode != t_inode) {
4789 ocfs2_inode_unlock(t_inode, 1);
4790 ocfs2_rw_unlock(t_inode, 1);
4791 brelse(t_bh);
4792 }
4793 unlock_two_nondirectories(s_inode, t_inode);
4794}