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