blob: 47549f64224cee4836db2f4f9be81e13fedee5fa [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>
Tao Ma6f70fa52009-08-25 08:05:12 +080040#include <linux/slab.h>
41#include <linux/writeback.h>
42#include <linux/pagevec.h>
43#include <linux/swap.h>
Tao Mabd508732009-09-21 11:25:14 +080044#include <linux/security.h>
45#include <linux/fsnotify.h>
46#include <linux/quotaops.h>
47#include <linux/namei.h>
48#include <linux/mount.h>
Tao Ma6f70fa52009-08-25 08:05:12 +080049
50struct ocfs2_cow_context {
51 struct inode *inode;
Tao Ma6ea48432010-08-12 10:31:34 +080052 struct file *file;
Tao Ma6f70fa52009-08-25 08:05:12 +080053 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
Tao Ma12d4cec2009-11-30 15:08:40 +0800279static void ocfs2_kref_remove_refcount_tree(struct kref *kref)
Tao Ma374a2632009-08-24 11:13:37 +0800280{
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
Tao Ma374a2632009-08-24 11:13:37 +0800527void ocfs2_unlock_refcount_tree(struct ocfs2_super *osb,
528 struct ocfs2_refcount_tree *tree, int rw)
529{
530 if (rw)
531 up_write(&tree->rf_sem);
532 else
533 up_read(&tree->rf_sem);
534
535 ocfs2_refcount_unlock(tree, rw);
536 ocfs2_refcount_tree_put(tree);
537}
538
539void ocfs2_purge_refcount_trees(struct ocfs2_super *osb)
540{
541 struct rb_node *node;
542 struct ocfs2_refcount_tree *tree;
543 struct rb_root *root = &osb->osb_rf_lock_tree;
544
545 while ((node = rb_last(root)) != NULL) {
546 tree = rb_entry(node, struct ocfs2_refcount_tree, rf_node);
547
548 mlog(0, "Purge tree %llu\n",
549 (unsigned long long) tree->rf_blkno);
550
551 rb_erase(&tree->rf_node, root);
552 ocfs2_free_refcount_tree(tree);
553 }
554}
Tao Ma8bf396d2009-08-24 11:12:02 +0800555
556/*
557 * Create a refcount tree for an inode.
558 * We take for granted that the inode is already locked.
559 */
560static int ocfs2_create_refcount_tree(struct inode *inode,
561 struct buffer_head *di_bh)
562{
563 int ret;
564 handle_t *handle = NULL;
565 struct ocfs2_alloc_context *meta_ac = NULL;
566 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
567 struct ocfs2_inode_info *oi = OCFS2_I(inode);
568 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
569 struct buffer_head *new_bh = NULL;
570 struct ocfs2_refcount_block *rb;
571 struct ocfs2_refcount_tree *new_tree = NULL, *tree = NULL;
572 u16 suballoc_bit_start;
573 u32 num_got;
Joel Becker2b6cb572010-03-26 10:09:15 +0800574 u64 suballoc_loc, first_blkno;
Tao Ma8bf396d2009-08-24 11:12:02 +0800575
576 BUG_ON(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL);
577
578 mlog(0, "create tree for inode %lu\n", inode->i_ino);
579
580 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac);
581 if (ret) {
582 mlog_errno(ret);
583 goto out;
584 }
585
586 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_CREATE_CREDITS);
587 if (IS_ERR(handle)) {
588 ret = PTR_ERR(handle);
589 mlog_errno(ret);
590 goto out;
591 }
592
593 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
594 OCFS2_JOURNAL_ACCESS_WRITE);
595 if (ret) {
596 mlog_errno(ret);
597 goto out_commit;
598 }
599
Joel Becker2b6cb572010-03-26 10:09:15 +0800600 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
Tao Ma8bf396d2009-08-24 11:12:02 +0800601 &suballoc_bit_start, &num_got,
602 &first_blkno);
603 if (ret) {
604 mlog_errno(ret);
605 goto out_commit;
606 }
607
608 new_tree = ocfs2_allocate_refcount_tree(osb, first_blkno);
609 if (!new_tree) {
610 ret = -ENOMEM;
611 mlog_errno(ret);
612 goto out_commit;
613 }
614
615 new_bh = sb_getblk(inode->i_sb, first_blkno);
616 ocfs2_set_new_buffer_uptodate(&new_tree->rf_ci, new_bh);
617
618 ret = ocfs2_journal_access_rb(handle, &new_tree->rf_ci, new_bh,
619 OCFS2_JOURNAL_ACCESS_CREATE);
620 if (ret) {
621 mlog_errno(ret);
622 goto out_commit;
623 }
624
625 /* Initialize ocfs2_refcount_block. */
626 rb = (struct ocfs2_refcount_block *)new_bh->b_data;
627 memset(rb, 0, inode->i_sb->s_blocksize);
628 strcpy((void *)rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
Tiger Yangb89c5422010-01-25 14:11:06 +0800629 rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Joel Becker2b6cb572010-03-26 10:09:15 +0800630 rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
Tao Ma8bf396d2009-08-24 11:12:02 +0800631 rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
632 rb->rf_fs_generation = cpu_to_le32(osb->fs_generation);
633 rb->rf_blkno = cpu_to_le64(first_blkno);
634 rb->rf_count = cpu_to_le32(1);
635 rb->rf_records.rl_count =
636 cpu_to_le16(ocfs2_refcount_recs_per_rb(osb->sb));
637 spin_lock(&osb->osb_lock);
638 rb->rf_generation = osb->s_next_generation++;
639 spin_unlock(&osb->osb_lock);
640
641 ocfs2_journal_dirty(handle, new_bh);
642
643 spin_lock(&oi->ip_lock);
644 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
645 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
646 di->i_refcount_loc = cpu_to_le64(first_blkno);
647 spin_unlock(&oi->ip_lock);
648
649 mlog(0, "created tree for inode %lu, refblock %llu\n",
650 inode->i_ino, (unsigned long long)first_blkno);
651
652 ocfs2_journal_dirty(handle, di_bh);
653
654 /*
655 * We have to init the tree lock here since it will use
656 * the generation number to create it.
657 */
658 new_tree->rf_generation = le32_to_cpu(rb->rf_generation);
659 ocfs2_init_refcount_tree_lock(osb, new_tree, first_blkno,
660 new_tree->rf_generation);
661
662 spin_lock(&osb->osb_lock);
663 tree = ocfs2_find_refcount_tree(osb, first_blkno);
664
665 /*
666 * We've just created a new refcount tree in this block. If
667 * we found a refcount tree on the ocfs2_super, it must be
668 * one we just deleted. We free the old tree before
669 * inserting the new tree.
670 */
671 BUG_ON(tree && tree->rf_generation == new_tree->rf_generation);
672 if (tree)
673 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
674 ocfs2_insert_refcount_tree(osb, new_tree);
675 spin_unlock(&osb->osb_lock);
676 new_tree = NULL;
677 if (tree)
678 ocfs2_refcount_tree_put(tree);
679
680out_commit:
681 ocfs2_commit_trans(osb, handle);
682
683out:
684 if (new_tree) {
685 ocfs2_metadata_cache_exit(&new_tree->rf_ci);
686 kfree(new_tree);
687 }
688
689 brelse(new_bh);
690 if (meta_ac)
691 ocfs2_free_alloc_context(meta_ac);
692
693 return ret;
694}
695
696static int ocfs2_set_refcount_tree(struct inode *inode,
697 struct buffer_head *di_bh,
698 u64 refcount_loc)
699{
700 int ret;
701 handle_t *handle = NULL;
702 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
703 struct ocfs2_inode_info *oi = OCFS2_I(inode);
704 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
705 struct buffer_head *ref_root_bh = NULL;
706 struct ocfs2_refcount_block *rb;
707 struct ocfs2_refcount_tree *ref_tree;
708
709 BUG_ON(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL);
710
711 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
712 &ref_tree, &ref_root_bh);
713 if (ret) {
714 mlog_errno(ret);
715 return ret;
716 }
717
718 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_SET_CREDITS);
719 if (IS_ERR(handle)) {
720 ret = PTR_ERR(handle);
721 mlog_errno(ret);
722 goto out;
723 }
724
725 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
726 OCFS2_JOURNAL_ACCESS_WRITE);
727 if (ret) {
728 mlog_errno(ret);
729 goto out_commit;
730 }
731
732 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, ref_root_bh,
733 OCFS2_JOURNAL_ACCESS_WRITE);
734 if (ret) {
735 mlog_errno(ret);
736 goto out_commit;
737 }
738
739 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
740 le32_add_cpu(&rb->rf_count, 1);
741
742 ocfs2_journal_dirty(handle, ref_root_bh);
743
744 spin_lock(&oi->ip_lock);
745 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
746 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
747 di->i_refcount_loc = cpu_to_le64(refcount_loc);
748 spin_unlock(&oi->ip_lock);
749 ocfs2_journal_dirty(handle, di_bh);
750
751out_commit:
752 ocfs2_commit_trans(osb, handle);
753out:
754 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
755 brelse(ref_root_bh);
756
757 return ret;
758}
759
760int ocfs2_remove_refcount_tree(struct inode *inode, struct buffer_head *di_bh)
761{
762 int ret, delete_tree = 0;
763 handle_t *handle = NULL;
764 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
765 struct ocfs2_inode_info *oi = OCFS2_I(inode);
766 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
767 struct ocfs2_refcount_block *rb;
768 struct inode *alloc_inode = NULL;
769 struct buffer_head *alloc_bh = NULL;
770 struct buffer_head *blk_bh = NULL;
771 struct ocfs2_refcount_tree *ref_tree;
772 int credits = OCFS2_REFCOUNT_TREE_REMOVE_CREDITS;
773 u64 blk = 0, bg_blkno = 0, ref_blkno = le64_to_cpu(di->i_refcount_loc);
774 u16 bit = 0;
775
776 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL))
777 return 0;
778
779 BUG_ON(!ref_blkno);
780 ret = ocfs2_lock_refcount_tree(osb, ref_blkno, 1, &ref_tree, &blk_bh);
781 if (ret) {
782 mlog_errno(ret);
783 return ret;
784 }
785
786 rb = (struct ocfs2_refcount_block *)blk_bh->b_data;
787
788 /*
789 * If we are the last user, we need to free the block.
790 * So lock the allocator ahead.
791 */
792 if (le32_to_cpu(rb->rf_count) == 1) {
793 blk = le64_to_cpu(rb->rf_blkno);
794 bit = le16_to_cpu(rb->rf_suballoc_bit);
Tao Ma74380c42010-03-22 14:20:18 +0800795 if (rb->rf_suballoc_loc)
796 bg_blkno = le64_to_cpu(rb->rf_suballoc_loc);
797 else
798 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
Tao Ma8bf396d2009-08-24 11:12:02 +0800799
800 alloc_inode = ocfs2_get_system_file_inode(osb,
801 EXTENT_ALLOC_SYSTEM_INODE,
802 le16_to_cpu(rb->rf_suballoc_slot));
803 if (!alloc_inode) {
804 ret = -ENOMEM;
805 mlog_errno(ret);
806 goto out;
807 }
808 mutex_lock(&alloc_inode->i_mutex);
809
810 ret = ocfs2_inode_lock(alloc_inode, &alloc_bh, 1);
811 if (ret) {
812 mlog_errno(ret);
813 goto out_mutex;
814 }
815
816 credits += OCFS2_SUBALLOC_FREE;
817 }
818
819 handle = ocfs2_start_trans(osb, credits);
820 if (IS_ERR(handle)) {
821 ret = PTR_ERR(handle);
822 mlog_errno(ret);
823 goto out_unlock;
824 }
825
826 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
827 OCFS2_JOURNAL_ACCESS_WRITE);
828 if (ret) {
829 mlog_errno(ret);
830 goto out_commit;
831 }
832
833 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, blk_bh,
834 OCFS2_JOURNAL_ACCESS_WRITE);
835 if (ret) {
836 mlog_errno(ret);
837 goto out_commit;
838 }
839
840 spin_lock(&oi->ip_lock);
841 oi->ip_dyn_features &= ~OCFS2_HAS_REFCOUNT_FL;
842 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
843 di->i_refcount_loc = 0;
844 spin_unlock(&oi->ip_lock);
845 ocfs2_journal_dirty(handle, di_bh);
846
847 le32_add_cpu(&rb->rf_count , -1);
848 ocfs2_journal_dirty(handle, blk_bh);
849
850 if (!rb->rf_count) {
851 delete_tree = 1;
852 ocfs2_erase_refcount_tree_from_list(osb, ref_tree);
853 ret = ocfs2_free_suballoc_bits(handle, alloc_inode,
854 alloc_bh, bit, bg_blkno, 1);
855 if (ret)
856 mlog_errno(ret);
857 }
858
859out_commit:
860 ocfs2_commit_trans(osb, handle);
861out_unlock:
862 if (alloc_inode) {
863 ocfs2_inode_unlock(alloc_inode, 1);
864 brelse(alloc_bh);
865 }
866out_mutex:
867 if (alloc_inode) {
868 mutex_unlock(&alloc_inode->i_mutex);
869 iput(alloc_inode);
870 }
871out:
872 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
873 if (delete_tree)
874 ocfs2_refcount_tree_put(ref_tree);
875 brelse(blk_bh);
876
877 return ret;
878}
Tao Mae73a8192009-08-11 14:33:14 +0800879
880static void ocfs2_find_refcount_rec_in_rl(struct ocfs2_caching_info *ci,
881 struct buffer_head *ref_leaf_bh,
882 u64 cpos, unsigned int len,
883 struct ocfs2_refcount_rec *ret_rec,
884 int *index)
885{
886 int i = 0;
887 struct ocfs2_refcount_block *rb =
888 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
889 struct ocfs2_refcount_rec *rec = NULL;
890
891 for (; i < le16_to_cpu(rb->rf_records.rl_used); i++) {
892 rec = &rb->rf_records.rl_recs[i];
893
894 if (le64_to_cpu(rec->r_cpos) +
895 le32_to_cpu(rec->r_clusters) <= cpos)
896 continue;
897 else if (le64_to_cpu(rec->r_cpos) > cpos)
898 break;
899
900 /* ok, cpos fail in this rec. Just return. */
901 if (ret_rec)
902 *ret_rec = *rec;
903 goto out;
904 }
905
906 if (ret_rec) {
907 /* We meet with a hole here, so fake the rec. */
908 ret_rec->r_cpos = cpu_to_le64(cpos);
909 ret_rec->r_refcount = 0;
910 if (i < le16_to_cpu(rb->rf_records.rl_used) &&
911 le64_to_cpu(rec->r_cpos) < cpos + len)
912 ret_rec->r_clusters =
913 cpu_to_le32(le64_to_cpu(rec->r_cpos) - cpos);
914 else
915 ret_rec->r_clusters = cpu_to_le32(len);
916 }
917
918out:
919 *index = i;
920}
921
922/*
Tao Ma8b2c0db2009-08-18 11:43:49 +0800923 * Try to remove refcount tree. The mechanism is:
924 * 1) Check whether i_clusters == 0, if no, exit.
925 * 2) check whether we have i_xattr_loc in dinode. if yes, exit.
926 * 3) Check whether we have inline xattr stored outside, if yes, exit.
927 * 4) Remove the tree.
928 */
929int ocfs2_try_remove_refcount_tree(struct inode *inode,
930 struct buffer_head *di_bh)
931{
932 int ret;
933 struct ocfs2_inode_info *oi = OCFS2_I(inode);
934 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
935
936 down_write(&oi->ip_xattr_sem);
937 down_write(&oi->ip_alloc_sem);
938
939 if (oi->ip_clusters)
940 goto out;
941
942 if ((oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) && di->i_xattr_loc)
943 goto out;
944
945 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL &&
946 ocfs2_has_inline_xattr_value_outside(inode, di))
947 goto out;
948
949 ret = ocfs2_remove_refcount_tree(inode, di_bh);
950 if (ret)
951 mlog_errno(ret);
952out:
953 up_write(&oi->ip_alloc_sem);
954 up_write(&oi->ip_xattr_sem);
955 return 0;
956}
957
958/*
Tao Ma38a04e42009-11-30 14:32:19 +0800959 * Find the end range for a leaf refcount block indicated by
960 * el->l_recs[index].e_blkno.
961 */
962static int ocfs2_get_refcount_cpos_end(struct ocfs2_caching_info *ci,
963 struct buffer_head *ref_root_bh,
964 struct ocfs2_extent_block *eb,
965 struct ocfs2_extent_list *el,
966 int index, u32 *cpos_end)
967{
968 int ret, i, subtree_root;
969 u32 cpos;
970 u64 blkno;
971 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
972 struct ocfs2_path *left_path = NULL, *right_path = NULL;
973 struct ocfs2_extent_tree et;
974 struct ocfs2_extent_list *tmp_el;
975
976 if (index < le16_to_cpu(el->l_next_free_rec) - 1) {
977 /*
978 * We have a extent rec after index, so just use the e_cpos
979 * of the next extent rec.
980 */
981 *cpos_end = le32_to_cpu(el->l_recs[index+1].e_cpos);
982 return 0;
983 }
984
985 if (!eb || (eb && !eb->h_next_leaf_blk)) {
986 /*
987 * We are the last extent rec, so any high cpos should
988 * be stored in this leaf refcount block.
989 */
990 *cpos_end = UINT_MAX;
991 return 0;
992 }
993
994 /*
995 * If the extent block isn't the last one, we have to find
996 * the subtree root between this extent block and the next
997 * leaf extent block and get the corresponding e_cpos from
998 * the subroot. Otherwise we may corrupt the b-tree.
999 */
1000 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1001
1002 left_path = ocfs2_new_path_from_et(&et);
1003 if (!left_path) {
1004 ret = -ENOMEM;
1005 mlog_errno(ret);
1006 goto out;
1007 }
1008
1009 cpos = le32_to_cpu(eb->h_list.l_recs[index].e_cpos);
1010 ret = ocfs2_find_path(ci, left_path, cpos);
1011 if (ret) {
1012 mlog_errno(ret);
1013 goto out;
1014 }
1015
1016 right_path = ocfs2_new_path_from_path(left_path);
1017 if (!right_path) {
1018 ret = -ENOMEM;
1019 mlog_errno(ret);
1020 goto out;
1021 }
1022
1023 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path, &cpos);
1024 if (ret) {
1025 mlog_errno(ret);
1026 goto out;
1027 }
1028
1029 ret = ocfs2_find_path(ci, right_path, cpos);
1030 if (ret) {
1031 mlog_errno(ret);
1032 goto out;
1033 }
1034
1035 subtree_root = ocfs2_find_subtree_root(&et, left_path,
1036 right_path);
1037
1038 tmp_el = left_path->p_node[subtree_root].el;
1039 blkno = left_path->p_node[subtree_root+1].bh->b_blocknr;
1040 for (i = 0; i < le32_to_cpu(tmp_el->l_next_free_rec); i++) {
1041 if (le64_to_cpu(tmp_el->l_recs[i].e_blkno) == blkno) {
1042 *cpos_end = le32_to_cpu(tmp_el->l_recs[i+1].e_cpos);
1043 break;
1044 }
1045 }
1046
1047 BUG_ON(i == le32_to_cpu(tmp_el->l_next_free_rec));
1048
1049out:
1050 ocfs2_free_path(left_path);
1051 ocfs2_free_path(right_path);
1052 return ret;
1053}
1054
1055/*
Tao Mae73a8192009-08-11 14:33:14 +08001056 * Given a cpos and len, try to find the refcount record which contains cpos.
1057 * 1. If cpos can be found in one refcount record, return the record.
1058 * 2. If cpos can't be found, return a fake record which start from cpos
1059 * and end at a small value between cpos+len and start of the next record.
1060 * This fake record has r_refcount = 0.
1061 */
1062static int ocfs2_get_refcount_rec(struct ocfs2_caching_info *ci,
1063 struct buffer_head *ref_root_bh,
1064 u64 cpos, unsigned int len,
1065 struct ocfs2_refcount_rec *ret_rec,
1066 int *index,
1067 struct buffer_head **ret_bh)
1068{
1069 int ret = 0, i, found;
Tao Ma38a04e42009-11-30 14:32:19 +08001070 u32 low_cpos, uninitialized_var(cpos_end);
Tao Mae73a8192009-08-11 14:33:14 +08001071 struct ocfs2_extent_list *el;
Tao Ma38a04e42009-11-30 14:32:19 +08001072 struct ocfs2_extent_rec *rec = NULL;
1073 struct ocfs2_extent_block *eb = NULL;
Tao Mae73a8192009-08-11 14:33:14 +08001074 struct buffer_head *eb_bh = NULL, *ref_leaf_bh = NULL;
1075 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1076 struct ocfs2_refcount_block *rb =
1077 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1078
1079 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)) {
1080 ocfs2_find_refcount_rec_in_rl(ci, ref_root_bh, cpos, len,
1081 ret_rec, index);
1082 *ret_bh = ref_root_bh;
1083 get_bh(ref_root_bh);
1084 return 0;
1085 }
1086
1087 el = &rb->rf_list;
1088 low_cpos = cpos & OCFS2_32BIT_POS_MASK;
1089
1090 if (el->l_tree_depth) {
1091 ret = ocfs2_find_leaf(ci, el, low_cpos, &eb_bh);
1092 if (ret) {
1093 mlog_errno(ret);
1094 goto out;
1095 }
1096
1097 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1098 el = &eb->h_list;
1099
1100 if (el->l_tree_depth) {
1101 ocfs2_error(sb,
1102 "refcount tree %llu has non zero tree "
1103 "depth in leaf btree tree block %llu\n",
1104 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1105 (unsigned long long)eb_bh->b_blocknr);
1106 ret = -EROFS;
1107 goto out;
1108 }
1109 }
1110
1111 found = 0;
1112 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1113 rec = &el->l_recs[i];
1114
1115 if (le32_to_cpu(rec->e_cpos) <= low_cpos) {
1116 found = 1;
1117 break;
1118 }
1119 }
1120
Tao Ma38a04e42009-11-30 14:32:19 +08001121 if (found) {
1122 ret = ocfs2_get_refcount_cpos_end(ci, ref_root_bh,
1123 eb, el, i, &cpos_end);
1124 if (ret) {
1125 mlog_errno(ret);
1126 goto out;
1127 }
Tao Mae73a8192009-08-11 14:33:14 +08001128
Tao Ma38a04e42009-11-30 14:32:19 +08001129 if (cpos_end < low_cpos + len)
1130 len = cpos_end - low_cpos;
Tao Mae73a8192009-08-11 14:33:14 +08001131 }
1132
1133 ret = ocfs2_read_refcount_block(ci, le64_to_cpu(rec->e_blkno),
1134 &ref_leaf_bh);
1135 if (ret) {
1136 mlog_errno(ret);
1137 goto out;
1138 }
1139
1140 ocfs2_find_refcount_rec_in_rl(ci, ref_leaf_bh, cpos, len,
1141 ret_rec, index);
1142 *ret_bh = ref_leaf_bh;
1143out:
1144 brelse(eb_bh);
1145 return ret;
1146}
1147
1148enum ocfs2_ref_rec_contig {
1149 REF_CONTIG_NONE = 0,
1150 REF_CONTIG_LEFT,
1151 REF_CONTIG_RIGHT,
1152 REF_CONTIG_LEFTRIGHT,
1153};
1154
1155static enum ocfs2_ref_rec_contig
1156 ocfs2_refcount_rec_adjacent(struct ocfs2_refcount_block *rb,
1157 int index)
1158{
1159 if ((rb->rf_records.rl_recs[index].r_refcount ==
1160 rb->rf_records.rl_recs[index + 1].r_refcount) &&
1161 (le64_to_cpu(rb->rf_records.rl_recs[index].r_cpos) +
1162 le32_to_cpu(rb->rf_records.rl_recs[index].r_clusters) ==
1163 le64_to_cpu(rb->rf_records.rl_recs[index + 1].r_cpos)))
1164 return REF_CONTIG_RIGHT;
1165
1166 return REF_CONTIG_NONE;
1167}
1168
1169static enum ocfs2_ref_rec_contig
1170 ocfs2_refcount_rec_contig(struct ocfs2_refcount_block *rb,
1171 int index)
1172{
1173 enum ocfs2_ref_rec_contig ret = REF_CONTIG_NONE;
1174
1175 if (index < le16_to_cpu(rb->rf_records.rl_used) - 1)
1176 ret = ocfs2_refcount_rec_adjacent(rb, index);
1177
1178 if (index > 0) {
1179 enum ocfs2_ref_rec_contig tmp;
1180
1181 tmp = ocfs2_refcount_rec_adjacent(rb, index - 1);
1182
1183 if (tmp == REF_CONTIG_RIGHT) {
1184 if (ret == REF_CONTIG_RIGHT)
1185 ret = REF_CONTIG_LEFTRIGHT;
1186 else
1187 ret = REF_CONTIG_LEFT;
1188 }
1189 }
1190
1191 return ret;
1192}
1193
1194static void ocfs2_rotate_refcount_rec_left(struct ocfs2_refcount_block *rb,
1195 int index)
1196{
1197 BUG_ON(rb->rf_records.rl_recs[index].r_refcount !=
1198 rb->rf_records.rl_recs[index+1].r_refcount);
1199
1200 le32_add_cpu(&rb->rf_records.rl_recs[index].r_clusters,
1201 le32_to_cpu(rb->rf_records.rl_recs[index+1].r_clusters));
1202
1203 if (index < le16_to_cpu(rb->rf_records.rl_used) - 2)
1204 memmove(&rb->rf_records.rl_recs[index + 1],
1205 &rb->rf_records.rl_recs[index + 2],
1206 sizeof(struct ocfs2_refcount_rec) *
1207 (le16_to_cpu(rb->rf_records.rl_used) - index - 2));
1208
1209 memset(&rb->rf_records.rl_recs[le16_to_cpu(rb->rf_records.rl_used) - 1],
1210 0, sizeof(struct ocfs2_refcount_rec));
1211 le16_add_cpu(&rb->rf_records.rl_used, -1);
1212}
1213
1214/*
1215 * Merge the refcount rec if we are contiguous with the adjacent recs.
1216 */
1217static void ocfs2_refcount_rec_merge(struct ocfs2_refcount_block *rb,
1218 int index)
1219{
1220 enum ocfs2_ref_rec_contig contig =
1221 ocfs2_refcount_rec_contig(rb, index);
1222
1223 if (contig == REF_CONTIG_NONE)
1224 return;
1225
1226 if (contig == REF_CONTIG_LEFT || contig == REF_CONTIG_LEFTRIGHT) {
1227 BUG_ON(index == 0);
1228 index--;
1229 }
1230
1231 ocfs2_rotate_refcount_rec_left(rb, index);
1232
1233 if (contig == REF_CONTIG_LEFTRIGHT)
1234 ocfs2_rotate_refcount_rec_left(rb, index);
1235}
1236
Tao Ma1823cb02009-08-18 11:24:49 +08001237/*
1238 * Change the refcount indexed by "index" in ref_bh.
1239 * If refcount reaches 0, remove it.
1240 */
Tao Mae73a8192009-08-11 14:33:14 +08001241static int ocfs2_change_refcount_rec(handle_t *handle,
1242 struct ocfs2_caching_info *ci,
1243 struct buffer_head *ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08001244 int index, int merge, int change)
Tao Mae73a8192009-08-11 14:33:14 +08001245{
1246 int ret;
1247 struct ocfs2_refcount_block *rb =
1248 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
Tao Ma1823cb02009-08-18 11:24:49 +08001249 struct ocfs2_refcount_list *rl = &rb->rf_records;
1250 struct ocfs2_refcount_rec *rec = &rl->rl_recs[index];
Tao Mae73a8192009-08-11 14:33:14 +08001251
1252 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1253 OCFS2_JOURNAL_ACCESS_WRITE);
1254 if (ret) {
1255 mlog_errno(ret);
1256 goto out;
1257 }
1258
1259 mlog(0, "change index %d, old count %u, change %d\n", index,
1260 le32_to_cpu(rec->r_refcount), change);
1261 le32_add_cpu(&rec->r_refcount, change);
1262
Tao Ma1823cb02009-08-18 11:24:49 +08001263 if (!rec->r_refcount) {
1264 if (index != le16_to_cpu(rl->rl_used) - 1) {
1265 memmove(rec, rec + 1,
1266 (le16_to_cpu(rl->rl_used) - index - 1) *
1267 sizeof(struct ocfs2_refcount_rec));
1268 memset(&rl->rl_recs[le16_to_cpu(rl->rl_used) - 1],
1269 0, sizeof(struct ocfs2_refcount_rec));
1270 }
1271
1272 le16_add_cpu(&rl->rl_used, -1);
Tao Ma7540c1a2009-08-18 11:44:03 +08001273 } else if (merge)
Tao Ma1823cb02009-08-18 11:24:49 +08001274 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001275
Joel Beckerec20cec2010-03-19 14:13:52 -07001276 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001277out:
1278 return ret;
1279}
1280
1281static int ocfs2_expand_inline_ref_root(handle_t *handle,
1282 struct ocfs2_caching_info *ci,
1283 struct buffer_head *ref_root_bh,
1284 struct buffer_head **ref_leaf_bh,
1285 struct ocfs2_alloc_context *meta_ac)
1286{
1287 int ret;
1288 u16 suballoc_bit_start;
1289 u32 num_got;
Joel Becker2b6cb572010-03-26 10:09:15 +08001290 u64 suballoc_loc, blkno;
Tao Mae73a8192009-08-11 14:33:14 +08001291 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1292 struct buffer_head *new_bh = NULL;
1293 struct ocfs2_refcount_block *new_rb;
1294 struct ocfs2_refcount_block *root_rb =
1295 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1296
1297 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1298 OCFS2_JOURNAL_ACCESS_WRITE);
1299 if (ret) {
1300 mlog_errno(ret);
1301 goto out;
1302 }
1303
Joel Becker2b6cb572010-03-26 10:09:15 +08001304 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
Tao Mae73a8192009-08-11 14:33:14 +08001305 &suballoc_bit_start, &num_got,
1306 &blkno);
1307 if (ret) {
1308 mlog_errno(ret);
1309 goto out;
1310 }
1311
1312 new_bh = sb_getblk(sb, blkno);
1313 if (new_bh == NULL) {
1314 ret = -EIO;
1315 mlog_errno(ret);
1316 goto out;
1317 }
1318 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1319
1320 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1321 OCFS2_JOURNAL_ACCESS_CREATE);
1322 if (ret) {
1323 mlog_errno(ret);
1324 goto out;
1325 }
1326
1327 /*
1328 * Initialize ocfs2_refcount_block.
1329 * It should contain the same information as the old root.
1330 * so just memcpy it and change the corresponding field.
1331 */
1332 memcpy(new_bh->b_data, ref_root_bh->b_data, sb->s_blocksize);
1333
1334 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
Tiger Yangb89c5422010-01-25 14:11:06 +08001335 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Joel Becker2b6cb572010-03-26 10:09:15 +08001336 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
Tao Mae73a8192009-08-11 14:33:14 +08001337 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1338 new_rb->rf_blkno = cpu_to_le64(blkno);
1339 new_rb->rf_cpos = cpu_to_le32(0);
1340 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1341 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1342 ocfs2_journal_dirty(handle, new_bh);
1343
1344 /* Now change the root. */
1345 memset(&root_rb->rf_list, 0, sb->s_blocksize -
1346 offsetof(struct ocfs2_refcount_block, rf_list));
1347 root_rb->rf_list.l_count = cpu_to_le16(ocfs2_extent_recs_per_rb(sb));
1348 root_rb->rf_clusters = cpu_to_le32(1);
1349 root_rb->rf_list.l_next_free_rec = cpu_to_le16(1);
1350 root_rb->rf_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
1351 root_rb->rf_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
1352 root_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_TREE_FL);
1353
1354 ocfs2_journal_dirty(handle, ref_root_bh);
1355
1356 mlog(0, "new leaf block %llu, used %u\n", (unsigned long long)blkno,
1357 le16_to_cpu(new_rb->rf_records.rl_used));
1358
1359 *ref_leaf_bh = new_bh;
1360 new_bh = NULL;
1361out:
1362 brelse(new_bh);
1363 return ret;
1364}
1365
1366static int ocfs2_refcount_rec_no_intersect(struct ocfs2_refcount_rec *prev,
1367 struct ocfs2_refcount_rec *next)
1368{
1369 if (ocfs2_get_ref_rec_low_cpos(prev) + le32_to_cpu(prev->r_clusters) <=
1370 ocfs2_get_ref_rec_low_cpos(next))
1371 return 1;
1372
1373 return 0;
1374}
1375
1376static int cmp_refcount_rec_by_low_cpos(const void *a, const void *b)
1377{
1378 const struct ocfs2_refcount_rec *l = a, *r = b;
1379 u32 l_cpos = ocfs2_get_ref_rec_low_cpos(l);
1380 u32 r_cpos = ocfs2_get_ref_rec_low_cpos(r);
1381
1382 if (l_cpos > r_cpos)
1383 return 1;
1384 if (l_cpos < r_cpos)
1385 return -1;
1386 return 0;
1387}
1388
1389static int cmp_refcount_rec_by_cpos(const void *a, const void *b)
1390{
1391 const struct ocfs2_refcount_rec *l = a, *r = b;
1392 u64 l_cpos = le64_to_cpu(l->r_cpos);
1393 u64 r_cpos = le64_to_cpu(r->r_cpos);
1394
1395 if (l_cpos > r_cpos)
1396 return 1;
1397 if (l_cpos < r_cpos)
1398 return -1;
1399 return 0;
1400}
1401
1402static void swap_refcount_rec(void *a, void *b, int size)
1403{
1404 struct ocfs2_refcount_rec *l = a, *r = b, tmp;
1405
1406 tmp = *(struct ocfs2_refcount_rec *)l;
1407 *(struct ocfs2_refcount_rec *)l =
1408 *(struct ocfs2_refcount_rec *)r;
1409 *(struct ocfs2_refcount_rec *)r = tmp;
1410}
1411
1412/*
1413 * The refcount cpos are ordered by their 64bit cpos,
1414 * But we will use the low 32 bit to be the e_cpos in the b-tree.
1415 * So we need to make sure that this pos isn't intersected with others.
1416 *
1417 * Note: The refcount block is already sorted by their low 32 bit cpos,
1418 * So just try the middle pos first, and we will exit when we find
1419 * the good position.
1420 */
1421static int ocfs2_find_refcount_split_pos(struct ocfs2_refcount_list *rl,
1422 u32 *split_pos, int *split_index)
1423{
1424 int num_used = le16_to_cpu(rl->rl_used);
1425 int delta, middle = num_used / 2;
1426
1427 for (delta = 0; delta < middle; delta++) {
1428 /* Let's check delta earlier than middle */
1429 if (ocfs2_refcount_rec_no_intersect(
1430 &rl->rl_recs[middle - delta - 1],
1431 &rl->rl_recs[middle - delta])) {
1432 *split_index = middle - delta;
1433 break;
1434 }
1435
1436 /* For even counts, don't walk off the end */
1437 if ((middle + delta + 1) == num_used)
1438 continue;
1439
1440 /* Now try delta past middle */
1441 if (ocfs2_refcount_rec_no_intersect(
1442 &rl->rl_recs[middle + delta],
1443 &rl->rl_recs[middle + delta + 1])) {
1444 *split_index = middle + delta + 1;
1445 break;
1446 }
1447 }
1448
1449 if (delta >= middle)
1450 return -ENOSPC;
1451
1452 *split_pos = ocfs2_get_ref_rec_low_cpos(&rl->rl_recs[*split_index]);
1453 return 0;
1454}
1455
1456static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh,
1457 struct buffer_head *new_bh,
1458 u32 *split_cpos)
1459{
1460 int split_index = 0, num_moved, ret;
1461 u32 cpos = 0;
1462 struct ocfs2_refcount_block *rb =
1463 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1464 struct ocfs2_refcount_list *rl = &rb->rf_records;
1465 struct ocfs2_refcount_block *new_rb =
1466 (struct ocfs2_refcount_block *)new_bh->b_data;
1467 struct ocfs2_refcount_list *new_rl = &new_rb->rf_records;
1468
1469 mlog(0, "split old leaf refcount block %llu, count = %u, used = %u\n",
1470 (unsigned long long)ref_leaf_bh->b_blocknr,
1471 le32_to_cpu(rl->rl_count), le32_to_cpu(rl->rl_used));
1472
1473 /*
1474 * XXX: Improvement later.
1475 * If we know all the high 32 bit cpos is the same, no need to sort.
1476 *
1477 * In order to make the whole process safe, we do:
1478 * 1. sort the entries by their low 32 bit cpos first so that we can
1479 * find the split cpos easily.
1480 * 2. call ocfs2_insert_extent to insert the new refcount block.
1481 * 3. move the refcount rec to the new block.
1482 * 4. sort the entries by their 64 bit cpos.
1483 * 5. dirty the new_rb and rb.
1484 */
1485 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1486 sizeof(struct ocfs2_refcount_rec),
1487 cmp_refcount_rec_by_low_cpos, swap_refcount_rec);
1488
1489 ret = ocfs2_find_refcount_split_pos(rl, &cpos, &split_index);
1490 if (ret) {
1491 mlog_errno(ret);
1492 return ret;
1493 }
1494
1495 new_rb->rf_cpos = cpu_to_le32(cpos);
1496
1497 /* move refcount records starting from split_index to the new block. */
1498 num_moved = le16_to_cpu(rl->rl_used) - split_index;
1499 memcpy(new_rl->rl_recs, &rl->rl_recs[split_index],
1500 num_moved * sizeof(struct ocfs2_refcount_rec));
1501
1502 /*ok, remove the entries we just moved over to the other block. */
1503 memset(&rl->rl_recs[split_index], 0,
1504 num_moved * sizeof(struct ocfs2_refcount_rec));
1505
1506 /* change old and new rl_used accordingly. */
1507 le16_add_cpu(&rl->rl_used, -num_moved);
Tao Ma12d4cec2009-11-30 15:08:40 +08001508 new_rl->rl_used = cpu_to_le16(num_moved);
Tao Mae73a8192009-08-11 14:33:14 +08001509
1510 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1511 sizeof(struct ocfs2_refcount_rec),
1512 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1513
1514 sort(&new_rl->rl_recs, le16_to_cpu(new_rl->rl_used),
1515 sizeof(struct ocfs2_refcount_rec),
1516 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1517
1518 *split_cpos = cpos;
1519 return 0;
1520}
1521
1522static int ocfs2_new_leaf_refcount_block(handle_t *handle,
1523 struct ocfs2_caching_info *ci,
1524 struct buffer_head *ref_root_bh,
1525 struct buffer_head *ref_leaf_bh,
1526 struct ocfs2_alloc_context *meta_ac)
1527{
1528 int ret;
1529 u16 suballoc_bit_start;
1530 u32 num_got, new_cpos;
Joel Becker2b6cb572010-03-26 10:09:15 +08001531 u64 suballoc_loc, blkno;
Tao Mae73a8192009-08-11 14:33:14 +08001532 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1533 struct ocfs2_refcount_block *root_rb =
1534 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1535 struct buffer_head *new_bh = NULL;
1536 struct ocfs2_refcount_block *new_rb;
1537 struct ocfs2_extent_tree ref_et;
1538
1539 BUG_ON(!(le32_to_cpu(root_rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL));
1540
1541 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1542 OCFS2_JOURNAL_ACCESS_WRITE);
1543 if (ret) {
1544 mlog_errno(ret);
1545 goto out;
1546 }
1547
1548 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1549 OCFS2_JOURNAL_ACCESS_WRITE);
1550 if (ret) {
1551 mlog_errno(ret);
1552 goto out;
1553 }
1554
Joel Becker2b6cb572010-03-26 10:09:15 +08001555 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
Tao Mae73a8192009-08-11 14:33:14 +08001556 &suballoc_bit_start, &num_got,
1557 &blkno);
1558 if (ret) {
1559 mlog_errno(ret);
1560 goto out;
1561 }
1562
1563 new_bh = sb_getblk(sb, blkno);
1564 if (new_bh == NULL) {
1565 ret = -EIO;
1566 mlog_errno(ret);
1567 goto out;
1568 }
1569 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1570
1571 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1572 OCFS2_JOURNAL_ACCESS_CREATE);
1573 if (ret) {
1574 mlog_errno(ret);
1575 goto out;
1576 }
1577
1578 /* Initialize ocfs2_refcount_block. */
1579 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1580 memset(new_rb, 0, sb->s_blocksize);
1581 strcpy((void *)new_rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
Tiger Yangb89c5422010-01-25 14:11:06 +08001582 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Joel Becker2b6cb572010-03-26 10:09:15 +08001583 new_rb->rf_suballoc_loc = cpu_to_le64(suballoc_loc);
Tao Mae73a8192009-08-11 14:33:14 +08001584 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1585 new_rb->rf_fs_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
1586 new_rb->rf_blkno = cpu_to_le64(blkno);
1587 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1588 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1589 new_rb->rf_records.rl_count =
1590 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
1591 new_rb->rf_generation = root_rb->rf_generation;
1592
1593 ret = ocfs2_divide_leaf_refcount_block(ref_leaf_bh, new_bh, &new_cpos);
1594 if (ret) {
1595 mlog_errno(ret);
1596 goto out;
1597 }
1598
1599 ocfs2_journal_dirty(handle, ref_leaf_bh);
1600 ocfs2_journal_dirty(handle, new_bh);
1601
1602 ocfs2_init_refcount_extent_tree(&ref_et, ci, ref_root_bh);
1603
1604 mlog(0, "insert new leaf block %llu at %u\n",
1605 (unsigned long long)new_bh->b_blocknr, new_cpos);
1606
1607 /* Insert the new leaf block with the specific offset cpos. */
1608 ret = ocfs2_insert_extent(handle, &ref_et, new_cpos, new_bh->b_blocknr,
1609 1, 0, meta_ac);
1610 if (ret)
1611 mlog_errno(ret);
1612
1613out:
1614 brelse(new_bh);
1615 return ret;
1616}
1617
1618static int ocfs2_expand_refcount_tree(handle_t *handle,
1619 struct ocfs2_caching_info *ci,
1620 struct buffer_head *ref_root_bh,
1621 struct buffer_head *ref_leaf_bh,
1622 struct ocfs2_alloc_context *meta_ac)
1623{
1624 int ret;
1625 struct buffer_head *expand_bh = NULL;
1626
1627 if (ref_root_bh == ref_leaf_bh) {
1628 /*
1629 * the old root bh hasn't been expanded to a b-tree,
1630 * so expand it first.
1631 */
1632 ret = ocfs2_expand_inline_ref_root(handle, ci, ref_root_bh,
1633 &expand_bh, meta_ac);
1634 if (ret) {
1635 mlog_errno(ret);
1636 goto out;
1637 }
1638 } else {
1639 expand_bh = ref_leaf_bh;
1640 get_bh(expand_bh);
1641 }
1642
1643
1644 /* Now add a new refcount block into the tree.*/
1645 ret = ocfs2_new_leaf_refcount_block(handle, ci, ref_root_bh,
1646 expand_bh, meta_ac);
1647 if (ret)
1648 mlog_errno(ret);
1649out:
1650 brelse(expand_bh);
1651 return ret;
1652}
1653
1654/*
1655 * Adjust the extent rec in b-tree representing ref_leaf_bh.
1656 *
1657 * Only called when we have inserted a new refcount rec at index 0
1658 * which means ocfs2_extent_rec.e_cpos may need some change.
1659 */
1660static int ocfs2_adjust_refcount_rec(handle_t *handle,
1661 struct ocfs2_caching_info *ci,
1662 struct buffer_head *ref_root_bh,
1663 struct buffer_head *ref_leaf_bh,
1664 struct ocfs2_refcount_rec *rec)
1665{
1666 int ret = 0, i;
1667 u32 new_cpos, old_cpos;
1668 struct ocfs2_path *path = NULL;
1669 struct ocfs2_extent_tree et;
1670 struct ocfs2_refcount_block *rb =
1671 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1672 struct ocfs2_extent_list *el;
1673
1674 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL))
1675 goto out;
1676
1677 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1678 old_cpos = le32_to_cpu(rb->rf_cpos);
1679 new_cpos = le64_to_cpu(rec->r_cpos) & OCFS2_32BIT_POS_MASK;
1680 if (old_cpos <= new_cpos)
1681 goto out;
1682
1683 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1684
1685 path = ocfs2_new_path_from_et(&et);
1686 if (!path) {
1687 ret = -ENOMEM;
1688 mlog_errno(ret);
1689 goto out;
1690 }
1691
1692 ret = ocfs2_find_path(ci, path, old_cpos);
1693 if (ret) {
1694 mlog_errno(ret);
1695 goto out;
1696 }
1697
1698 /*
1699 * 2 more credits, one for the leaf refcount block, one for
1700 * the extent block contains the extent rec.
1701 */
Tao Mac901fb02010-04-26 14:34:57 +08001702 ret = ocfs2_extend_trans(handle, 2);
Tao Mae73a8192009-08-11 14:33:14 +08001703 if (ret < 0) {
1704 mlog_errno(ret);
1705 goto out;
1706 }
1707
1708 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1709 OCFS2_JOURNAL_ACCESS_WRITE);
1710 if (ret < 0) {
1711 mlog_errno(ret);
1712 goto out;
1713 }
1714
1715 ret = ocfs2_journal_access_eb(handle, ci, path_leaf_bh(path),
1716 OCFS2_JOURNAL_ACCESS_WRITE);
1717 if (ret < 0) {
1718 mlog_errno(ret);
1719 goto out;
1720 }
1721
1722 /* change the leaf extent block first. */
1723 el = path_leaf_el(path);
1724
1725 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++)
1726 if (le32_to_cpu(el->l_recs[i].e_cpos) == old_cpos)
1727 break;
1728
1729 BUG_ON(i == le16_to_cpu(el->l_next_free_rec));
1730
1731 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
1732
1733 /* change the r_cpos in the leaf block. */
1734 rb->rf_cpos = cpu_to_le32(new_cpos);
1735
1736 ocfs2_journal_dirty(handle, path_leaf_bh(path));
1737 ocfs2_journal_dirty(handle, ref_leaf_bh);
1738
1739out:
1740 ocfs2_free_path(path);
1741 return ret;
1742}
1743
1744static int ocfs2_insert_refcount_rec(handle_t *handle,
1745 struct ocfs2_caching_info *ci,
1746 struct buffer_head *ref_root_bh,
1747 struct buffer_head *ref_leaf_bh,
1748 struct ocfs2_refcount_rec *rec,
Tao Ma7540c1a2009-08-18 11:44:03 +08001749 int index, int merge,
Tao Mae73a8192009-08-11 14:33:14 +08001750 struct ocfs2_alloc_context *meta_ac)
1751{
1752 int ret;
1753 struct ocfs2_refcount_block *rb =
1754 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1755 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1756 struct buffer_head *new_bh = NULL;
1757
1758 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1759
1760 if (rf_list->rl_used == rf_list->rl_count) {
1761 u64 cpos = le64_to_cpu(rec->r_cpos);
1762 u32 len = le32_to_cpu(rec->r_clusters);
1763
1764 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1765 ref_leaf_bh, meta_ac);
1766 if (ret) {
1767 mlog_errno(ret);
1768 goto out;
1769 }
1770
1771 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1772 cpos, len, NULL, &index,
1773 &new_bh);
1774 if (ret) {
1775 mlog_errno(ret);
1776 goto out;
1777 }
1778
1779 ref_leaf_bh = new_bh;
1780 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1781 rf_list = &rb->rf_records;
1782 }
1783
1784 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1785 OCFS2_JOURNAL_ACCESS_WRITE);
1786 if (ret) {
1787 mlog_errno(ret);
1788 goto out;
1789 }
1790
1791 if (index < le16_to_cpu(rf_list->rl_used))
1792 memmove(&rf_list->rl_recs[index + 1],
1793 &rf_list->rl_recs[index],
1794 (le16_to_cpu(rf_list->rl_used) - index) *
1795 sizeof(struct ocfs2_refcount_rec));
1796
1797 mlog(0, "insert refcount record start %llu, len %u, count %u "
1798 "to leaf block %llu at index %d\n",
1799 (unsigned long long)le64_to_cpu(rec->r_cpos),
1800 le32_to_cpu(rec->r_clusters), le32_to_cpu(rec->r_refcount),
1801 (unsigned long long)ref_leaf_bh->b_blocknr, index);
1802
1803 rf_list->rl_recs[index] = *rec;
1804
1805 le16_add_cpu(&rf_list->rl_used, 1);
1806
Tao Ma7540c1a2009-08-18 11:44:03 +08001807 if (merge)
1808 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001809
Joel Beckerec20cec2010-03-19 14:13:52 -07001810 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001811
1812 if (index == 0) {
1813 ret = ocfs2_adjust_refcount_rec(handle, ci,
1814 ref_root_bh,
1815 ref_leaf_bh, rec);
1816 if (ret)
1817 mlog_errno(ret);
1818 }
1819out:
1820 brelse(new_bh);
1821 return ret;
1822}
1823
1824/*
1825 * Split the refcount_rec indexed by "index" in ref_leaf_bh.
1826 * This is much simple than our b-tree code.
1827 * split_rec is the new refcount rec we want to insert.
1828 * If split_rec->r_refcount > 0, we are changing the refcount(in case we
1829 * increase refcount or decrease a refcount to non-zero).
1830 * If split_rec->r_refcount == 0, we are punching a hole in current refcount
1831 * rec( in case we decrease a refcount to zero).
1832 */
1833static int ocfs2_split_refcount_rec(handle_t *handle,
1834 struct ocfs2_caching_info *ci,
1835 struct buffer_head *ref_root_bh,
1836 struct buffer_head *ref_leaf_bh,
1837 struct ocfs2_refcount_rec *split_rec,
Tao Ma7540c1a2009-08-18 11:44:03 +08001838 int index, int merge,
Tao Mae73a8192009-08-11 14:33:14 +08001839 struct ocfs2_alloc_context *meta_ac,
1840 struct ocfs2_cached_dealloc_ctxt *dealloc)
1841{
1842 int ret, recs_need;
1843 u32 len;
1844 struct ocfs2_refcount_block *rb =
1845 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1846 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1847 struct ocfs2_refcount_rec *orig_rec = &rf_list->rl_recs[index];
1848 struct ocfs2_refcount_rec *tail_rec = NULL;
1849 struct buffer_head *new_bh = NULL;
1850
1851 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1852
1853 mlog(0, "original r_pos %llu, cluster %u, split %llu, cluster %u\n",
1854 le64_to_cpu(orig_rec->r_cpos), le32_to_cpu(orig_rec->r_clusters),
1855 le64_to_cpu(split_rec->r_cpos),
1856 le32_to_cpu(split_rec->r_clusters));
1857
1858 /*
1859 * If we just need to split the header or tail clusters,
1860 * no more recs are needed, just split is OK.
1861 * Otherwise we at least need one new recs.
1862 */
1863 if (!split_rec->r_refcount &&
1864 (split_rec->r_cpos == orig_rec->r_cpos ||
1865 le64_to_cpu(split_rec->r_cpos) +
1866 le32_to_cpu(split_rec->r_clusters) ==
1867 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1868 recs_need = 0;
1869 else
1870 recs_need = 1;
1871
1872 /*
1873 * We need one more rec if we split in the middle and the new rec have
1874 * some refcount in it.
1875 */
1876 if (split_rec->r_refcount &&
1877 (split_rec->r_cpos != orig_rec->r_cpos &&
1878 le64_to_cpu(split_rec->r_cpos) +
1879 le32_to_cpu(split_rec->r_clusters) !=
1880 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1881 recs_need++;
1882
1883 /* If the leaf block don't have enough record, expand it. */
Tao Ma12d4cec2009-11-30 15:08:40 +08001884 if (le16_to_cpu(rf_list->rl_used) + recs_need >
1885 le16_to_cpu(rf_list->rl_count)) {
Tao Mae73a8192009-08-11 14:33:14 +08001886 struct ocfs2_refcount_rec tmp_rec;
1887 u64 cpos = le64_to_cpu(orig_rec->r_cpos);
1888 len = le32_to_cpu(orig_rec->r_clusters);
1889 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1890 ref_leaf_bh, meta_ac);
1891 if (ret) {
1892 mlog_errno(ret);
1893 goto out;
1894 }
1895
1896 /*
1897 * We have to re-get it since now cpos may be moved to
1898 * another leaf block.
1899 */
1900 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1901 cpos, len, &tmp_rec, &index,
1902 &new_bh);
1903 if (ret) {
1904 mlog_errno(ret);
1905 goto out;
1906 }
1907
1908 ref_leaf_bh = new_bh;
1909 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1910 rf_list = &rb->rf_records;
1911 orig_rec = &rf_list->rl_recs[index];
1912 }
1913
1914 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1915 OCFS2_JOURNAL_ACCESS_WRITE);
1916 if (ret) {
1917 mlog_errno(ret);
1918 goto out;
1919 }
1920
1921 /*
1922 * We have calculated out how many new records we need and store
1923 * in recs_need, so spare enough space first by moving the records
1924 * after "index" to the end.
1925 */
1926 if (index != le16_to_cpu(rf_list->rl_used) - 1)
1927 memmove(&rf_list->rl_recs[index + 1 + recs_need],
1928 &rf_list->rl_recs[index + 1],
1929 (le16_to_cpu(rf_list->rl_used) - index - 1) *
1930 sizeof(struct ocfs2_refcount_rec));
1931
1932 len = (le64_to_cpu(orig_rec->r_cpos) +
1933 le32_to_cpu(orig_rec->r_clusters)) -
1934 (le64_to_cpu(split_rec->r_cpos) +
1935 le32_to_cpu(split_rec->r_clusters));
1936
1937 /*
1938 * If we have "len", the we will split in the tail and move it
1939 * to the end of the space we have just spared.
1940 */
1941 if (len) {
1942 tail_rec = &rf_list->rl_recs[index + recs_need];
1943
1944 memcpy(tail_rec, orig_rec, sizeof(struct ocfs2_refcount_rec));
1945 le64_add_cpu(&tail_rec->r_cpos,
1946 le32_to_cpu(tail_rec->r_clusters) - len);
Tao Ma12d4cec2009-11-30 15:08:40 +08001947 tail_rec->r_clusters = cpu_to_le32(len);
Tao Mae73a8192009-08-11 14:33:14 +08001948 }
1949
1950 /*
1951 * If the split pos isn't the same as the original one, we need to
1952 * split in the head.
1953 *
1954 * Note: We have the chance that split_rec.r_refcount = 0,
1955 * recs_need = 0 and len > 0, which means we just cut the head from
1956 * the orig_rec and in that case we have done some modification in
1957 * orig_rec above, so the check for r_cpos is faked.
1958 */
1959 if (split_rec->r_cpos != orig_rec->r_cpos && tail_rec != orig_rec) {
1960 len = le64_to_cpu(split_rec->r_cpos) -
1961 le64_to_cpu(orig_rec->r_cpos);
1962 orig_rec->r_clusters = cpu_to_le32(len);
1963 index++;
1964 }
1965
1966 le16_add_cpu(&rf_list->rl_used, recs_need);
1967
1968 if (split_rec->r_refcount) {
1969 rf_list->rl_recs[index] = *split_rec;
1970 mlog(0, "insert refcount record start %llu, len %u, count %u "
1971 "to leaf block %llu at index %d\n",
1972 (unsigned long long)le64_to_cpu(split_rec->r_cpos),
1973 le32_to_cpu(split_rec->r_clusters),
1974 le32_to_cpu(split_rec->r_refcount),
1975 (unsigned long long)ref_leaf_bh->b_blocknr, index);
1976
Tao Ma7540c1a2009-08-18 11:44:03 +08001977 if (merge)
1978 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001979 }
1980
Joel Beckerec20cec2010-03-19 14:13:52 -07001981 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001982
1983out:
1984 brelse(new_bh);
1985 return ret;
1986}
1987
Tao Ma7540c1a2009-08-18 11:44:03 +08001988static int __ocfs2_increase_refcount(handle_t *handle,
1989 struct ocfs2_caching_info *ci,
1990 struct buffer_head *ref_root_bh,
1991 u64 cpos, u32 len, int merge,
1992 struct ocfs2_alloc_context *meta_ac,
1993 struct ocfs2_cached_dealloc_ctxt *dealloc)
Tao Mae73a8192009-08-11 14:33:14 +08001994{
1995 int ret = 0, index;
1996 struct buffer_head *ref_leaf_bh = NULL;
1997 struct ocfs2_refcount_rec rec;
1998 unsigned int set_len = 0;
1999
2000 mlog(0, "Tree owner %llu, add refcount start %llu, len %u\n",
2001 (unsigned long long)ocfs2_metadata_cache_owner(ci),
2002 (unsigned long long)cpos, len);
2003
2004 while (len) {
2005 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2006 cpos, len, &rec, &index,
2007 &ref_leaf_bh);
2008 if (ret) {
2009 mlog_errno(ret);
2010 goto out;
2011 }
2012
2013 set_len = le32_to_cpu(rec.r_clusters);
2014
2015 /*
2016 * Here we may meet with 3 situations:
2017 *
2018 * 1. If we find an already existing record, and the length
2019 * is the same, cool, we just need to increase the r_refcount
2020 * and it is OK.
2021 * 2. If we find a hole, just insert it with r_refcount = 1.
2022 * 3. If we are in the middle of one extent record, split
2023 * it.
2024 */
2025 if (rec.r_refcount && le64_to_cpu(rec.r_cpos) == cpos &&
2026 set_len <= len) {
2027 mlog(0, "increase refcount rec, start %llu, len %u, "
2028 "count %u\n", (unsigned long long)cpos, set_len,
2029 le32_to_cpu(rec.r_refcount));
2030 ret = ocfs2_change_refcount_rec(handle, ci,
Tao Ma7540c1a2009-08-18 11:44:03 +08002031 ref_leaf_bh, index,
2032 merge, 1);
Tao Mae73a8192009-08-11 14:33:14 +08002033 if (ret) {
2034 mlog_errno(ret);
2035 goto out;
2036 }
2037 } else if (!rec.r_refcount) {
2038 rec.r_refcount = cpu_to_le32(1);
2039
2040 mlog(0, "insert refcount rec, start %llu, len %u\n",
2041 (unsigned long long)le64_to_cpu(rec.r_cpos),
2042 set_len);
2043 ret = ocfs2_insert_refcount_rec(handle, ci, ref_root_bh,
2044 ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002045 &rec, index,
2046 merge, meta_ac);
Tao Mae73a8192009-08-11 14:33:14 +08002047 if (ret) {
2048 mlog_errno(ret);
2049 goto out;
2050 }
2051 } else {
2052 set_len = min((u64)(cpos + len),
2053 le64_to_cpu(rec.r_cpos) + set_len) - cpos;
2054 rec.r_cpos = cpu_to_le64(cpos);
2055 rec.r_clusters = cpu_to_le32(set_len);
2056 le32_add_cpu(&rec.r_refcount, 1);
2057
2058 mlog(0, "split refcount rec, start %llu, "
2059 "len %u, count %u\n",
2060 (unsigned long long)le64_to_cpu(rec.r_cpos),
2061 set_len, le32_to_cpu(rec.r_refcount));
2062 ret = ocfs2_split_refcount_rec(handle, ci,
2063 ref_root_bh, ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002064 &rec, index, merge,
Tao Mae73a8192009-08-11 14:33:14 +08002065 meta_ac, dealloc);
2066 if (ret) {
2067 mlog_errno(ret);
2068 goto out;
2069 }
2070 }
2071
2072 cpos += set_len;
2073 len -= set_len;
2074 brelse(ref_leaf_bh);
2075 ref_leaf_bh = NULL;
2076 }
2077
2078out:
2079 brelse(ref_leaf_bh);
2080 return ret;
2081}
Tao Ma1823cb02009-08-18 11:24:49 +08002082
2083static int ocfs2_remove_refcount_extent(handle_t *handle,
2084 struct ocfs2_caching_info *ci,
2085 struct buffer_head *ref_root_bh,
2086 struct buffer_head *ref_leaf_bh,
2087 struct ocfs2_alloc_context *meta_ac,
2088 struct ocfs2_cached_dealloc_ctxt *dealloc)
2089{
2090 int ret;
2091 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2092 struct ocfs2_refcount_block *rb =
2093 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2094 struct ocfs2_extent_tree et;
2095
2096 BUG_ON(rb->rf_records.rl_used);
2097
2098 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2099 ret = ocfs2_remove_extent(handle, &et, le32_to_cpu(rb->rf_cpos),
2100 1, meta_ac, dealloc);
2101 if (ret) {
2102 mlog_errno(ret);
2103 goto out;
2104 }
2105
2106 ocfs2_remove_from_cache(ci, ref_leaf_bh);
2107
2108 /*
2109 * add the freed block to the dealloc so that it will be freed
2110 * when we run dealloc.
2111 */
2112 ret = ocfs2_cache_block_dealloc(dealloc, EXTENT_ALLOC_SYSTEM_INODE,
2113 le16_to_cpu(rb->rf_suballoc_slot),
Tao Ma74380c42010-03-22 14:20:18 +08002114 le64_to_cpu(rb->rf_suballoc_loc),
Tao Ma1823cb02009-08-18 11:24:49 +08002115 le64_to_cpu(rb->rf_blkno),
2116 le16_to_cpu(rb->rf_suballoc_bit));
2117 if (ret) {
2118 mlog_errno(ret);
2119 goto out;
2120 }
2121
2122 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
2123 OCFS2_JOURNAL_ACCESS_WRITE);
2124 if (ret) {
2125 mlog_errno(ret);
2126 goto out;
2127 }
2128
2129 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2130
2131 le32_add_cpu(&rb->rf_clusters, -1);
2132
2133 /*
2134 * check whether we need to restore the root refcount block if
2135 * there is no leaf extent block at atll.
2136 */
2137 if (!rb->rf_list.l_next_free_rec) {
2138 BUG_ON(rb->rf_clusters);
2139
2140 mlog(0, "reset refcount tree root %llu to be a record block.\n",
2141 (unsigned long long)ref_root_bh->b_blocknr);
2142
2143 rb->rf_flags = 0;
2144 rb->rf_parent = 0;
2145 rb->rf_cpos = 0;
2146 memset(&rb->rf_records, 0, sb->s_blocksize -
2147 offsetof(struct ocfs2_refcount_block, rf_records));
2148 rb->rf_records.rl_count =
2149 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
2150 }
2151
2152 ocfs2_journal_dirty(handle, ref_root_bh);
2153
2154out:
2155 return ret;
2156}
2157
Tao Ma7540c1a2009-08-18 11:44:03 +08002158int ocfs2_increase_refcount(handle_t *handle,
2159 struct ocfs2_caching_info *ci,
2160 struct buffer_head *ref_root_bh,
2161 u64 cpos, u32 len,
2162 struct ocfs2_alloc_context *meta_ac,
2163 struct ocfs2_cached_dealloc_ctxt *dealloc)
2164{
2165 return __ocfs2_increase_refcount(handle, ci, ref_root_bh,
2166 cpos, len, 1,
2167 meta_ac, dealloc);
2168}
2169
Tao Ma1823cb02009-08-18 11:24:49 +08002170static int ocfs2_decrease_refcount_rec(handle_t *handle,
2171 struct ocfs2_caching_info *ci,
2172 struct buffer_head *ref_root_bh,
2173 struct buffer_head *ref_leaf_bh,
2174 int index, u64 cpos, unsigned int len,
2175 struct ocfs2_alloc_context *meta_ac,
2176 struct ocfs2_cached_dealloc_ctxt *dealloc)
2177{
2178 int ret;
2179 struct ocfs2_refcount_block *rb =
2180 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2181 struct ocfs2_refcount_rec *rec = &rb->rf_records.rl_recs[index];
2182
2183 BUG_ON(cpos < le64_to_cpu(rec->r_cpos));
2184 BUG_ON(cpos + len >
2185 le64_to_cpu(rec->r_cpos) + le32_to_cpu(rec->r_clusters));
2186
2187 if (cpos == le64_to_cpu(rec->r_cpos) &&
2188 len == le32_to_cpu(rec->r_clusters))
2189 ret = ocfs2_change_refcount_rec(handle, ci,
Tao Ma7540c1a2009-08-18 11:44:03 +08002190 ref_leaf_bh, index, 1, -1);
Tao Ma1823cb02009-08-18 11:24:49 +08002191 else {
2192 struct ocfs2_refcount_rec split = *rec;
2193 split.r_cpos = cpu_to_le64(cpos);
2194 split.r_clusters = cpu_to_le32(len);
2195
2196 le32_add_cpu(&split.r_refcount, -1);
2197
2198 mlog(0, "split refcount rec, start %llu, "
2199 "len %u, count %u, original start %llu, len %u\n",
2200 (unsigned long long)le64_to_cpu(split.r_cpos),
2201 len, le32_to_cpu(split.r_refcount),
2202 (unsigned long long)le64_to_cpu(rec->r_cpos),
2203 le32_to_cpu(rec->r_clusters));
2204 ret = ocfs2_split_refcount_rec(handle, ci,
2205 ref_root_bh, ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002206 &split, index, 1,
Tao Ma1823cb02009-08-18 11:24:49 +08002207 meta_ac, dealloc);
2208 }
2209
2210 if (ret) {
2211 mlog_errno(ret);
2212 goto out;
2213 }
2214
2215 /* Remove the leaf refcount block if it contains no refcount record. */
2216 if (!rb->rf_records.rl_used && ref_leaf_bh != ref_root_bh) {
2217 ret = ocfs2_remove_refcount_extent(handle, ci, ref_root_bh,
2218 ref_leaf_bh, meta_ac,
2219 dealloc);
2220 if (ret)
2221 mlog_errno(ret);
2222 }
2223
2224out:
2225 return ret;
2226}
2227
2228static int __ocfs2_decrease_refcount(handle_t *handle,
2229 struct ocfs2_caching_info *ci,
2230 struct buffer_head *ref_root_bh,
2231 u64 cpos, u32 len,
2232 struct ocfs2_alloc_context *meta_ac,
Tao Ma6ae23c52009-08-18 11:30:55 +08002233 struct ocfs2_cached_dealloc_ctxt *dealloc,
2234 int delete)
Tao Ma1823cb02009-08-18 11:24:49 +08002235{
2236 int ret = 0, index = 0;
2237 struct ocfs2_refcount_rec rec;
2238 unsigned int r_count = 0, r_len;
2239 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2240 struct buffer_head *ref_leaf_bh = NULL;
2241
Tao Ma6ae23c52009-08-18 11:30:55 +08002242 mlog(0, "Tree owner %llu, decrease refcount start %llu, "
2243 "len %u, delete %u\n",
Tao Ma1823cb02009-08-18 11:24:49 +08002244 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Tao Ma6ae23c52009-08-18 11:30:55 +08002245 (unsigned long long)cpos, len, delete);
Tao Ma1823cb02009-08-18 11:24:49 +08002246
2247 while (len) {
2248 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2249 cpos, len, &rec, &index,
2250 &ref_leaf_bh);
2251 if (ret) {
2252 mlog_errno(ret);
2253 goto out;
2254 }
2255
2256 r_count = le32_to_cpu(rec.r_refcount);
2257 BUG_ON(r_count == 0);
Tao Ma6ae23c52009-08-18 11:30:55 +08002258 if (!delete)
2259 BUG_ON(r_count > 1);
Tao Ma1823cb02009-08-18 11:24:49 +08002260
2261 r_len = min((u64)(cpos + len), le64_to_cpu(rec.r_cpos) +
2262 le32_to_cpu(rec.r_clusters)) - cpos;
2263
2264 ret = ocfs2_decrease_refcount_rec(handle, ci, ref_root_bh,
2265 ref_leaf_bh, index,
2266 cpos, r_len,
2267 meta_ac, dealloc);
2268 if (ret) {
2269 mlog_errno(ret);
2270 goto out;
2271 }
2272
Tao Ma6ae23c52009-08-18 11:30:55 +08002273 if (le32_to_cpu(rec.r_refcount) == 1 && delete) {
Tao Ma1823cb02009-08-18 11:24:49 +08002274 ret = ocfs2_cache_cluster_dealloc(dealloc,
2275 ocfs2_clusters_to_blocks(sb, cpos),
2276 r_len);
2277 if (ret) {
2278 mlog_errno(ret);
2279 goto out;
2280 }
2281 }
2282
2283 cpos += r_len;
2284 len -= r_len;
2285 brelse(ref_leaf_bh);
2286 ref_leaf_bh = NULL;
2287 }
2288
2289out:
2290 brelse(ref_leaf_bh);
2291 return ret;
2292}
2293
2294/* Caller must hold refcount tree lock. */
2295int ocfs2_decrease_refcount(struct inode *inode,
2296 handle_t *handle, u32 cpos, u32 len,
2297 struct ocfs2_alloc_context *meta_ac,
Tao Ma6ae23c52009-08-18 11:30:55 +08002298 struct ocfs2_cached_dealloc_ctxt *dealloc,
2299 int delete)
Tao Ma1823cb02009-08-18 11:24:49 +08002300{
2301 int ret;
2302 u64 ref_blkno;
2303 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2304 struct buffer_head *ref_root_bh = NULL;
2305 struct ocfs2_refcount_tree *tree;
2306
2307 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2308
2309 ret = ocfs2_get_refcount_block(inode, &ref_blkno);
2310 if (ret) {
2311 mlog_errno(ret);
2312 goto out;
2313 }
2314
2315 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb), ref_blkno, &tree);
2316 if (ret) {
2317 mlog_errno(ret);
2318 goto out;
2319 }
2320
2321 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
2322 &ref_root_bh);
2323 if (ret) {
2324 mlog_errno(ret);
2325 goto out;
2326 }
2327
2328 ret = __ocfs2_decrease_refcount(handle, &tree->rf_ci, ref_root_bh,
Tao Ma6ae23c52009-08-18 11:30:55 +08002329 cpos, len, meta_ac, dealloc, delete);
Tao Ma1823cb02009-08-18 11:24:49 +08002330 if (ret)
2331 mlog_errno(ret);
2332out:
2333 brelse(ref_root_bh);
2334 return ret;
2335}
Tao Ma1aa75fe2009-08-18 11:28:39 +08002336
2337/*
2338 * Mark the already-existing extent at cpos as refcounted for len clusters.
2339 * This adds the refcount extent flag.
2340 *
2341 * If the existing extent is larger than the request, initiate a
2342 * split. An attempt will be made at merging with adjacent extents.
2343 *
2344 * The caller is responsible for passing down meta_ac if we'll need it.
2345 */
2346static int ocfs2_mark_extent_refcounted(struct inode *inode,
2347 struct ocfs2_extent_tree *et,
2348 handle_t *handle, u32 cpos,
2349 u32 len, u32 phys,
2350 struct ocfs2_alloc_context *meta_ac,
2351 struct ocfs2_cached_dealloc_ctxt *dealloc)
2352{
2353 int ret;
2354
2355 mlog(0, "Inode %lu refcount tree cpos %u, len %u, phys cluster %u\n",
2356 inode->i_ino, cpos, len, phys);
2357
2358 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2359 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2360 "tree, but the feature bit is not set in the "
2361 "super block.", inode->i_ino);
2362 ret = -EROFS;
2363 goto out;
2364 }
2365
2366 ret = ocfs2_change_extent_flag(handle, et, cpos,
2367 len, phys, meta_ac, dealloc,
2368 OCFS2_EXT_REFCOUNTED, 0);
2369 if (ret)
2370 mlog_errno(ret);
2371
2372out:
2373 return ret;
2374}
Tao Mabcbbb242009-08-18 11:29:12 +08002375
2376/*
2377 * Given some contiguous physical clusters, calculate what we need
2378 * for modifying their refcount.
2379 */
2380static int ocfs2_calc_refcount_meta_credits(struct super_block *sb,
2381 struct ocfs2_caching_info *ci,
2382 struct buffer_head *ref_root_bh,
2383 u64 start_cpos,
2384 u32 clusters,
2385 int *meta_add,
2386 int *credits)
2387{
2388 int ret = 0, index, ref_blocks = 0, recs_add = 0;
2389 u64 cpos = start_cpos;
2390 struct ocfs2_refcount_block *rb;
2391 struct ocfs2_refcount_rec rec;
2392 struct buffer_head *ref_leaf_bh = NULL, *prev_bh = NULL;
2393 u32 len;
2394
2395 mlog(0, "start_cpos %llu, clusters %u\n",
2396 (unsigned long long)start_cpos, clusters);
2397 while (clusters) {
2398 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2399 cpos, clusters, &rec,
2400 &index, &ref_leaf_bh);
2401 if (ret) {
2402 mlog_errno(ret);
2403 goto out;
2404 }
2405
2406 if (ref_leaf_bh != prev_bh) {
2407 /*
2408 * Now we encounter a new leaf block, so calculate
2409 * whether we need to extend the old leaf.
2410 */
2411 if (prev_bh) {
2412 rb = (struct ocfs2_refcount_block *)
2413 prev_bh->b_data;
2414
2415 if (le64_to_cpu(rb->rf_records.rl_used) +
2416 recs_add >
2417 le16_to_cpu(rb->rf_records.rl_count))
2418 ref_blocks++;
2419 }
2420
2421 recs_add = 0;
2422 *credits += 1;
2423 brelse(prev_bh);
2424 prev_bh = ref_leaf_bh;
2425 get_bh(prev_bh);
2426 }
2427
2428 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2429
2430 mlog(0, "recs_add %d,cpos %llu, clusters %u, rec->r_cpos %llu,"
2431 "rec->r_clusters %u, rec->r_refcount %u, index %d\n",
2432 recs_add, (unsigned long long)cpos, clusters,
2433 (unsigned long long)le64_to_cpu(rec.r_cpos),
2434 le32_to_cpu(rec.r_clusters),
2435 le32_to_cpu(rec.r_refcount), index);
2436
2437 len = min((u64)cpos + clusters, le64_to_cpu(rec.r_cpos) +
2438 le32_to_cpu(rec.r_clusters)) - cpos;
2439 /*
2440 * If the refcount rec already exist, cool. We just need
2441 * to check whether there is a split. Otherwise we just need
2442 * to increase the refcount.
2443 * If we will insert one, increases recs_add.
2444 *
2445 * We record all the records which will be inserted to the
2446 * same refcount block, so that we can tell exactly whether
2447 * we need a new refcount block or not.
2448 */
2449 if (rec.r_refcount) {
2450 /* Check whether we need a split at the beginning. */
2451 if (cpos == start_cpos &&
2452 cpos != le64_to_cpu(rec.r_cpos))
2453 recs_add++;
2454
2455 /* Check whether we need a split in the end. */
2456 if (cpos + clusters < le64_to_cpu(rec.r_cpos) +
2457 le32_to_cpu(rec.r_clusters))
2458 recs_add++;
2459 } else
2460 recs_add++;
2461
2462 brelse(ref_leaf_bh);
2463 ref_leaf_bh = NULL;
2464 clusters -= len;
2465 cpos += len;
2466 }
2467
2468 if (prev_bh) {
2469 rb = (struct ocfs2_refcount_block *)prev_bh->b_data;
2470
2471 if (le64_to_cpu(rb->rf_records.rl_used) + recs_add >
2472 le16_to_cpu(rb->rf_records.rl_count))
2473 ref_blocks++;
2474
2475 *credits += 1;
2476 }
2477
2478 if (!ref_blocks)
2479 goto out;
2480
2481 mlog(0, "we need ref_blocks %d\n", ref_blocks);
2482 *meta_add += ref_blocks;
2483 *credits += ref_blocks;
2484
2485 /*
2486 * So we may need ref_blocks to insert into the tree.
2487 * That also means we need to change the b-tree and add that number
2488 * of records since we never merge them.
2489 * We need one more block for expansion since the new created leaf
2490 * block is also full and needs split.
2491 */
2492 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2493 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL) {
2494 struct ocfs2_extent_tree et;
2495
2496 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2497 *meta_add += ocfs2_extend_meta_needed(et.et_root_el);
2498 *credits += ocfs2_calc_extend_credits(sb,
2499 et.et_root_el,
2500 ref_blocks);
2501 } else {
2502 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
2503 *meta_add += 1;
2504 }
2505
2506out:
2507 brelse(ref_leaf_bh);
2508 brelse(prev_bh);
2509 return ret;
2510}
2511
2512/*
2513 * For refcount tree, we will decrease some contiguous clusters
2514 * refcount count, so just go through it to see how many blocks
2515 * we gonna touch and whether we need to create new blocks.
2516 *
2517 * Normally the refcount blocks store these refcount should be
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002518 * contiguous also, so that we can get the number easily.
Tristan Ye78f94672010-05-11 17:54:42 +08002519 * We will at most add split 2 refcount records and 2 more
2520 * refcount blocks, so just check it in a rough way.
Tao Mabcbbb242009-08-18 11:29:12 +08002521 *
2522 * Caller must hold refcount tree lock.
2523 */
2524int ocfs2_prepare_refcount_change_for_del(struct inode *inode,
Tristan Ye78f94672010-05-11 17:54:42 +08002525 u64 refcount_loc,
Tao Mabcbbb242009-08-18 11:29:12 +08002526 u64 phys_blkno,
2527 u32 clusters,
2528 int *credits,
Tristan Ye78f94672010-05-11 17:54:42 +08002529 int *ref_blocks)
Tao Mabcbbb242009-08-18 11:29:12 +08002530{
Tristan Ye78f94672010-05-11 17:54:42 +08002531 int ret;
Tao Mabcbbb242009-08-18 11:29:12 +08002532 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2533 struct buffer_head *ref_root_bh = NULL;
2534 struct ocfs2_refcount_tree *tree;
2535 u64 start_cpos = ocfs2_blocks_to_clusters(inode->i_sb, phys_blkno);
2536
2537 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2538 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2539 "tree, but the feature bit is not set in the "
2540 "super block.", inode->i_ino);
2541 ret = -EROFS;
2542 goto out;
2543 }
2544
2545 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2546
2547 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb),
Tristan Ye78f94672010-05-11 17:54:42 +08002548 refcount_loc, &tree);
Tao Mabcbbb242009-08-18 11:29:12 +08002549 if (ret) {
2550 mlog_errno(ret);
2551 goto out;
2552 }
2553
Tristan Ye78f94672010-05-11 17:54:42 +08002554 ret = ocfs2_read_refcount_block(&tree->rf_ci, refcount_loc,
Tao Mabcbbb242009-08-18 11:29:12 +08002555 &ref_root_bh);
2556 if (ret) {
2557 mlog_errno(ret);
2558 goto out;
2559 }
2560
2561 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
2562 &tree->rf_ci,
2563 ref_root_bh,
2564 start_cpos, clusters,
Tristan Ye78f94672010-05-11 17:54:42 +08002565 ref_blocks, credits);
Tao Mabcbbb242009-08-18 11:29:12 +08002566 if (ret) {
2567 mlog_errno(ret);
2568 goto out;
2569 }
2570
Tristan Ye78f94672010-05-11 17:54:42 +08002571 mlog(0, "reserve new metadata %d blocks, credits = %d\n",
2572 *ref_blocks, *credits);
Tao Mabcbbb242009-08-18 11:29:12 +08002573
2574out:
2575 brelse(ref_root_bh);
2576 return ret;
2577}
Tao Ma6f70fa52009-08-25 08:05:12 +08002578
2579#define MAX_CONTIG_BYTES 1048576
2580
2581static inline unsigned int ocfs2_cow_contig_clusters(struct super_block *sb)
2582{
2583 return ocfs2_clusters_for_bytes(sb, MAX_CONTIG_BYTES);
2584}
2585
2586static inline unsigned int ocfs2_cow_contig_mask(struct super_block *sb)
2587{
2588 return ~(ocfs2_cow_contig_clusters(sb) - 1);
2589}
2590
2591/*
2592 * Given an extent that starts at 'start' and an I/O that starts at 'cpos',
2593 * find an offset (start + (n * contig_clusters)) that is closest to cpos
2594 * while still being less than or equal to it.
2595 *
2596 * The goal is to break the extent at a multiple of contig_clusters.
2597 */
2598static inline unsigned int ocfs2_cow_align_start(struct super_block *sb,
2599 unsigned int start,
2600 unsigned int cpos)
2601{
2602 BUG_ON(start > cpos);
2603
2604 return start + ((cpos - start) & ocfs2_cow_contig_mask(sb));
2605}
2606
2607/*
2608 * Given a cluster count of len, pad it out so that it is a multiple
2609 * of contig_clusters.
2610 */
2611static inline unsigned int ocfs2_cow_align_length(struct super_block *sb,
2612 unsigned int len)
2613{
2614 unsigned int padded =
2615 (len + (ocfs2_cow_contig_clusters(sb) - 1)) &
2616 ocfs2_cow_contig_mask(sb);
2617
2618 /* Did we wrap? */
2619 if (padded < len)
2620 padded = UINT_MAX;
2621
2622 return padded;
2623}
2624
2625/*
2626 * Calculate out the start and number of virtual clusters we need to to CoW.
2627 *
2628 * cpos is vitual start cluster position we want to do CoW in a
2629 * file and write_len is the cluster length.
Tao Ma37f8a2b2009-08-26 09:47:28 +08002630 * max_cpos is the place where we want to stop CoW intentionally.
Tao Ma6f70fa52009-08-25 08:05:12 +08002631 *
2632 * Normal we will start CoW from the beginning of extent record cotaining cpos.
2633 * We try to break up extents on boundaries of MAX_CONTIG_BYTES so that we
2634 * get good I/O from the resulting extent tree.
2635 */
2636static int ocfs2_refcount_cal_cow_clusters(struct inode *inode,
Tao Ma913580b2009-08-24 14:31:03 +08002637 struct ocfs2_extent_list *el,
Tao Ma6f70fa52009-08-25 08:05:12 +08002638 u32 cpos,
2639 u32 write_len,
Tao Ma37f8a2b2009-08-26 09:47:28 +08002640 u32 max_cpos,
Tao Ma6f70fa52009-08-25 08:05:12 +08002641 u32 *cow_start,
2642 u32 *cow_len)
2643{
2644 int ret = 0;
Tao Ma6f70fa52009-08-25 08:05:12 +08002645 int tree_height = le16_to_cpu(el->l_tree_depth), i;
2646 struct buffer_head *eb_bh = NULL;
2647 struct ocfs2_extent_block *eb = NULL;
2648 struct ocfs2_extent_rec *rec;
2649 unsigned int want_clusters, rec_end = 0;
2650 int contig_clusters = ocfs2_cow_contig_clusters(inode->i_sb);
2651 int leaf_clusters;
2652
Tao Ma37f8a2b2009-08-26 09:47:28 +08002653 BUG_ON(cpos + write_len > max_cpos);
2654
Tao Ma6f70fa52009-08-25 08:05:12 +08002655 if (tree_height > 0) {
2656 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, cpos, &eb_bh);
2657 if (ret) {
2658 mlog_errno(ret);
2659 goto out;
2660 }
2661
2662 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2663 el = &eb->h_list;
2664
2665 if (el->l_tree_depth) {
2666 ocfs2_error(inode->i_sb,
2667 "Inode %lu has non zero tree depth in "
2668 "leaf block %llu\n", inode->i_ino,
2669 (unsigned long long)eb_bh->b_blocknr);
2670 ret = -EROFS;
2671 goto out;
2672 }
2673 }
2674
2675 *cow_len = 0;
2676 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
2677 rec = &el->l_recs[i];
2678
2679 if (ocfs2_is_empty_extent(rec)) {
2680 mlog_bug_on_msg(i != 0, "Inode %lu has empty record in "
2681 "index %d\n", inode->i_ino, i);
2682 continue;
2683 }
2684
2685 if (le32_to_cpu(rec->e_cpos) +
2686 le16_to_cpu(rec->e_leaf_clusters) <= cpos)
2687 continue;
2688
2689 if (*cow_len == 0) {
2690 /*
2691 * We should find a refcounted record in the
2692 * first pass.
2693 */
2694 BUG_ON(!(rec->e_flags & OCFS2_EXT_REFCOUNTED));
2695 *cow_start = le32_to_cpu(rec->e_cpos);
2696 }
2697
2698 /*
Tao Ma37f8a2b2009-08-26 09:47:28 +08002699 * If we encounter a hole, a non-refcounted record or
2700 * pass the max_cpos, stop the search.
Tao Ma6f70fa52009-08-25 08:05:12 +08002701 */
2702 if ((!(rec->e_flags & OCFS2_EXT_REFCOUNTED)) ||
Tao Ma37f8a2b2009-08-26 09:47:28 +08002703 (*cow_len && rec_end != le32_to_cpu(rec->e_cpos)) ||
2704 (max_cpos <= le32_to_cpu(rec->e_cpos)))
Tao Ma6f70fa52009-08-25 08:05:12 +08002705 break;
2706
2707 leaf_clusters = le16_to_cpu(rec->e_leaf_clusters);
2708 rec_end = le32_to_cpu(rec->e_cpos) + leaf_clusters;
Tao Ma37f8a2b2009-08-26 09:47:28 +08002709 if (rec_end > max_cpos) {
2710 rec_end = max_cpos;
2711 leaf_clusters = rec_end - le32_to_cpu(rec->e_cpos);
2712 }
Tao Ma6f70fa52009-08-25 08:05:12 +08002713
2714 /*
2715 * How many clusters do we actually need from
2716 * this extent? First we see how many we actually
2717 * need to complete the write. If that's smaller
2718 * than contig_clusters, we try for contig_clusters.
2719 */
2720 if (!*cow_len)
2721 want_clusters = write_len;
2722 else
2723 want_clusters = (cpos + write_len) -
2724 (*cow_start + *cow_len);
2725 if (want_clusters < contig_clusters)
2726 want_clusters = contig_clusters;
2727
2728 /*
2729 * If the write does not cover the whole extent, we
2730 * need to calculate how we're going to split the extent.
2731 * We try to do it on contig_clusters boundaries.
2732 *
2733 * Any extent smaller than contig_clusters will be
2734 * CoWed in its entirety.
2735 */
2736 if (leaf_clusters <= contig_clusters)
2737 *cow_len += leaf_clusters;
2738 else if (*cow_len || (*cow_start == cpos)) {
2739 /*
2740 * This extent needs to be CoW'd from its
2741 * beginning, so all we have to do is compute
2742 * how many clusters to grab. We align
2743 * want_clusters to the edge of contig_clusters
2744 * to get better I/O.
2745 */
2746 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2747 want_clusters);
2748
2749 if (leaf_clusters < want_clusters)
2750 *cow_len += leaf_clusters;
2751 else
2752 *cow_len += want_clusters;
2753 } else if ((*cow_start + contig_clusters) >=
2754 (cpos + write_len)) {
2755 /*
2756 * Breaking off contig_clusters at the front
2757 * of the extent will cover our write. That's
2758 * easy.
2759 */
2760 *cow_len = contig_clusters;
2761 } else if ((rec_end - cpos) <= contig_clusters) {
2762 /*
2763 * Breaking off contig_clusters at the tail of
2764 * this extent will cover cpos.
2765 */
2766 *cow_start = rec_end - contig_clusters;
2767 *cow_len = contig_clusters;
2768 } else if ((rec_end - cpos) <= want_clusters) {
2769 /*
2770 * While we can't fit the entire write in this
2771 * extent, we know that the write goes from cpos
2772 * to the end of the extent. Break that off.
2773 * We try to break it at some multiple of
2774 * contig_clusters from the front of the extent.
2775 * Failing that (ie, cpos is within
2776 * contig_clusters of the front), we'll CoW the
2777 * entire extent.
2778 */
2779 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2780 *cow_start, cpos);
2781 *cow_len = rec_end - *cow_start;
2782 } else {
2783 /*
2784 * Ok, the entire write lives in the middle of
2785 * this extent. Let's try to slice the extent up
2786 * nicely. Optimally, our CoW region starts at
2787 * m*contig_clusters from the beginning of the
2788 * extent and goes for n*contig_clusters,
2789 * covering the entire write.
2790 */
2791 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2792 *cow_start, cpos);
2793
2794 want_clusters = (cpos + write_len) - *cow_start;
2795 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2796 want_clusters);
2797 if (*cow_start + want_clusters <= rec_end)
2798 *cow_len = want_clusters;
2799 else
2800 *cow_len = rec_end - *cow_start;
2801 }
2802
2803 /* Have we covered our entire write yet? */
2804 if ((*cow_start + *cow_len) >= (cpos + write_len))
2805 break;
2806
2807 /*
2808 * If we reach the end of the extent block and don't get enough
2809 * clusters, continue with the next extent block if possible.
2810 */
2811 if (i + 1 == le16_to_cpu(el->l_next_free_rec) &&
2812 eb && eb->h_next_leaf_blk) {
2813 brelse(eb_bh);
2814 eb_bh = NULL;
2815
2816 ret = ocfs2_read_extent_block(INODE_CACHE(inode),
2817 le64_to_cpu(eb->h_next_leaf_blk),
2818 &eb_bh);
2819 if (ret) {
2820 mlog_errno(ret);
2821 goto out;
2822 }
2823
2824 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2825 el = &eb->h_list;
2826 i = -1;
2827 }
2828 }
2829
2830out:
2831 brelse(eb_bh);
2832 return ret;
2833}
2834
2835/*
2836 * Prepare meta_ac, data_ac and calculate credits when we want to add some
2837 * num_clusters in data_tree "et" and change the refcount for the old
2838 * clusters(starting form p_cluster) in the refcount tree.
2839 *
2840 * Note:
2841 * 1. since we may split the old tree, so we at most will need num_clusters + 2
2842 * more new leaf records.
2843 * 2. In some case, we may not need to reserve new clusters(e.g, reflink), so
2844 * just give data_ac = NULL.
2845 */
2846static int ocfs2_lock_refcount_allocators(struct super_block *sb,
2847 u32 p_cluster, u32 num_clusters,
2848 struct ocfs2_extent_tree *et,
2849 struct ocfs2_caching_info *ref_ci,
2850 struct buffer_head *ref_root_bh,
2851 struct ocfs2_alloc_context **meta_ac,
2852 struct ocfs2_alloc_context **data_ac,
2853 int *credits)
2854{
2855 int ret = 0, meta_add = 0;
2856 int num_free_extents = ocfs2_num_free_extents(OCFS2_SB(sb), et);
2857
2858 if (num_free_extents < 0) {
2859 ret = num_free_extents;
2860 mlog_errno(ret);
2861 goto out;
2862 }
2863
2864 if (num_free_extents < num_clusters + 2)
2865 meta_add =
2866 ocfs2_extend_meta_needed(et->et_root_el);
2867
2868 *credits += ocfs2_calc_extend_credits(sb, et->et_root_el,
2869 num_clusters + 2);
2870
2871 ret = ocfs2_calc_refcount_meta_credits(sb, ref_ci, ref_root_bh,
2872 p_cluster, num_clusters,
2873 &meta_add, credits);
2874 if (ret) {
2875 mlog_errno(ret);
2876 goto out;
2877 }
2878
2879 mlog(0, "reserve new metadata %d, clusters %u, credits = %d\n",
2880 meta_add, num_clusters, *credits);
2881 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(sb), meta_add,
2882 meta_ac);
2883 if (ret) {
2884 mlog_errno(ret);
2885 goto out;
2886 }
2887
2888 if (data_ac) {
2889 ret = ocfs2_reserve_clusters(OCFS2_SB(sb), num_clusters,
2890 data_ac);
2891 if (ret)
2892 mlog_errno(ret);
2893 }
2894
2895out:
2896 if (ret) {
2897 if (*meta_ac) {
2898 ocfs2_free_alloc_context(*meta_ac);
2899 *meta_ac = NULL;
2900 }
2901 }
2902
2903 return ret;
2904}
2905
2906static int ocfs2_clear_cow_buffer(handle_t *handle, struct buffer_head *bh)
2907{
2908 BUG_ON(buffer_dirty(bh));
2909
2910 clear_buffer_mapped(bh);
2911
2912 return 0;
2913}
2914
Tao Ma913580b2009-08-24 14:31:03 +08002915static int ocfs2_duplicate_clusters_by_page(handle_t *handle,
2916 struct ocfs2_cow_context *context,
2917 u32 cpos, u32 old_cluster,
2918 u32 new_cluster, u32 new_len)
Tao Ma6f70fa52009-08-25 08:05:12 +08002919{
2920 int ret = 0, partial;
Tao Ma913580b2009-08-24 14:31:03 +08002921 struct ocfs2_caching_info *ci = context->data_et.et_ci;
Tao Ma6f70fa52009-08-25 08:05:12 +08002922 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2923 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
2924 struct page *page;
2925 pgoff_t page_index;
Tao Ma6ea48432010-08-12 10:31:34 +08002926 unsigned int from, to, readahead_pages;
Tao Ma6f70fa52009-08-25 08:05:12 +08002927 loff_t offset, end, map_end;
2928 struct address_space *mapping = context->inode->i_mapping;
2929
2930 mlog(0, "old_cluster %u, new %u, len %u at offset %u\n", old_cluster,
2931 new_cluster, new_len, cpos);
2932
Tao Ma6ea48432010-08-12 10:31:34 +08002933 readahead_pages =
2934 (ocfs2_cow_contig_clusters(sb) <<
2935 OCFS2_SB(sb)->s_clustersize_bits) >> PAGE_CACHE_SHIFT;
Tao Ma6f70fa52009-08-25 08:05:12 +08002936 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
2937 end = offset + (new_len << OCFS2_SB(sb)->s_clustersize_bits);
Tao Maf5e27b62010-07-14 11:19:32 +08002938 /*
2939 * We only duplicate pages until we reach the page contains i_size - 1.
2940 * So trim 'end' to i_size.
2941 */
2942 if (end > i_size_read(context->inode))
2943 end = i_size_read(context->inode);
Tao Ma6f70fa52009-08-25 08:05:12 +08002944
2945 while (offset < end) {
2946 page_index = offset >> PAGE_CACHE_SHIFT;
Tao Mad622b892010-01-30 23:32:19 +08002947 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
Tao Ma6f70fa52009-08-25 08:05:12 +08002948 if (map_end > end)
2949 map_end = end;
2950
2951 /* from, to is the offset within the page. */
2952 from = offset & (PAGE_CACHE_SIZE - 1);
2953 to = PAGE_CACHE_SIZE;
2954 if (map_end & (PAGE_CACHE_SIZE - 1))
2955 to = map_end & (PAGE_CACHE_SIZE - 1);
2956
2957 page = grab_cache_page(mapping, page_index);
2958
Tao Ma0a1ea432010-02-01 17:05:33 +08002959 /*
2960 * In case PAGE_CACHE_SIZE <= CLUSTER_SIZE, This page
2961 * can't be dirtied before we CoW it out.
2962 */
2963 if (PAGE_CACHE_SIZE <= OCFS2_SB(sb)->s_clustersize)
2964 BUG_ON(PageDirty(page));
Tao Ma6f70fa52009-08-25 08:05:12 +08002965
Tao Ma6ea48432010-08-12 10:31:34 +08002966 if (PageReadahead(page) && context->file) {
2967 page_cache_async_readahead(mapping,
2968 &context->file->f_ra,
2969 context->file,
2970 page, page_index,
2971 readahead_pages);
2972 }
2973
Tao Ma6f70fa52009-08-25 08:05:12 +08002974 if (!PageUptodate(page)) {
2975 ret = block_read_full_page(page, ocfs2_get_block);
2976 if (ret) {
2977 mlog_errno(ret);
2978 goto unlock;
2979 }
2980 lock_page(page);
2981 }
2982
2983 if (page_has_buffers(page)) {
2984 ret = walk_page_buffers(handle, page_buffers(page),
2985 from, to, &partial,
2986 ocfs2_clear_cow_buffer);
2987 if (ret) {
2988 mlog_errno(ret);
2989 goto unlock;
2990 }
2991 }
2992
2993 ocfs2_map_and_dirty_page(context->inode,
2994 handle, from, to,
2995 page, 0, &new_block);
2996 mark_page_accessed(page);
2997unlock:
2998 unlock_page(page);
2999 page_cache_release(page);
3000 page = NULL;
3001 offset = map_end;
3002 if (ret)
3003 break;
3004 }
3005
3006 return ret;
3007}
3008
Tao Ma492a8a32009-08-18 11:43:17 +08003009static int ocfs2_duplicate_clusters_by_jbd(handle_t *handle,
3010 struct ocfs2_cow_context *context,
3011 u32 cpos, u32 old_cluster,
3012 u32 new_cluster, u32 new_len)
3013{
3014 int ret = 0;
3015 struct super_block *sb = context->inode->i_sb;
3016 struct ocfs2_caching_info *ci = context->data_et.et_ci;
3017 int i, blocks = ocfs2_clusters_to_blocks(sb, new_len);
3018 u64 old_block = ocfs2_clusters_to_blocks(sb, old_cluster);
3019 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
3020 struct ocfs2_super *osb = OCFS2_SB(sb);
3021 struct buffer_head *old_bh = NULL;
3022 struct buffer_head *new_bh = NULL;
3023
3024 mlog(0, "old_cluster %u, new %u, len %u\n", old_cluster,
3025 new_cluster, new_len);
3026
3027 for (i = 0; i < blocks; i++, old_block++, new_block++) {
3028 new_bh = sb_getblk(osb->sb, new_block);
3029 if (new_bh == NULL) {
3030 ret = -EIO;
3031 mlog_errno(ret);
3032 break;
3033 }
3034
3035 ocfs2_set_new_buffer_uptodate(ci, new_bh);
3036
3037 ret = ocfs2_read_block(ci, old_block, &old_bh, NULL);
3038 if (ret) {
3039 mlog_errno(ret);
3040 break;
3041 }
3042
3043 ret = ocfs2_journal_access(handle, ci, new_bh,
3044 OCFS2_JOURNAL_ACCESS_CREATE);
3045 if (ret) {
3046 mlog_errno(ret);
3047 break;
3048 }
3049
3050 memcpy(new_bh->b_data, old_bh->b_data, sb->s_blocksize);
Joel Beckerec20cec2010-03-19 14:13:52 -07003051 ocfs2_journal_dirty(handle, new_bh);
Tao Ma492a8a32009-08-18 11:43:17 +08003052
3053 brelse(new_bh);
3054 brelse(old_bh);
3055 new_bh = NULL;
3056 old_bh = NULL;
3057 }
3058
3059 brelse(new_bh);
3060 brelse(old_bh);
3061 return ret;
3062}
3063
Tao Ma6f70fa52009-08-25 08:05:12 +08003064static int ocfs2_clear_ext_refcount(handle_t *handle,
3065 struct ocfs2_extent_tree *et,
3066 u32 cpos, u32 p_cluster, u32 len,
3067 unsigned int ext_flags,
3068 struct ocfs2_alloc_context *meta_ac,
3069 struct ocfs2_cached_dealloc_ctxt *dealloc)
3070{
3071 int ret, index;
3072 struct ocfs2_extent_rec replace_rec;
3073 struct ocfs2_path *path = NULL;
3074 struct ocfs2_extent_list *el;
3075 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
3076 u64 ino = ocfs2_metadata_cache_owner(et->et_ci);
3077
3078 mlog(0, "inode %llu cpos %u, len %u, p_cluster %u, ext_flags %u\n",
3079 (unsigned long long)ino, cpos, len, p_cluster, ext_flags);
3080
3081 memset(&replace_rec, 0, sizeof(replace_rec));
3082 replace_rec.e_cpos = cpu_to_le32(cpos);
3083 replace_rec.e_leaf_clusters = cpu_to_le16(len);
3084 replace_rec.e_blkno = cpu_to_le64(ocfs2_clusters_to_blocks(sb,
3085 p_cluster));
3086 replace_rec.e_flags = ext_flags;
3087 replace_rec.e_flags &= ~OCFS2_EXT_REFCOUNTED;
3088
3089 path = ocfs2_new_path_from_et(et);
3090 if (!path) {
3091 ret = -ENOMEM;
3092 mlog_errno(ret);
3093 goto out;
3094 }
3095
3096 ret = ocfs2_find_path(et->et_ci, path, cpos);
3097 if (ret) {
3098 mlog_errno(ret);
3099 goto out;
3100 }
3101
3102 el = path_leaf_el(path);
3103
3104 index = ocfs2_search_extent_list(el, cpos);
3105 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
3106 ocfs2_error(sb,
3107 "Inode %llu has an extent at cpos %u which can no "
3108 "longer be found.\n",
3109 (unsigned long long)ino, cpos);
3110 ret = -EROFS;
3111 goto out;
3112 }
3113
3114 ret = ocfs2_split_extent(handle, et, path, index,
3115 &replace_rec, meta_ac, dealloc);
3116 if (ret)
3117 mlog_errno(ret);
3118
3119out:
3120 ocfs2_free_path(path);
3121 return ret;
3122}
3123
3124static int ocfs2_replace_clusters(handle_t *handle,
3125 struct ocfs2_cow_context *context,
3126 u32 cpos, u32 old,
3127 u32 new, u32 len,
3128 unsigned int ext_flags)
3129{
3130 int ret;
Tao Ma913580b2009-08-24 14:31:03 +08003131 struct ocfs2_caching_info *ci = context->data_et.et_ci;
Tao Ma6f70fa52009-08-25 08:05:12 +08003132 u64 ino = ocfs2_metadata_cache_owner(ci);
3133
3134 mlog(0, "inode %llu, cpos %u, old %u, new %u, len %u, ext_flags %u\n",
3135 (unsigned long long)ino, cpos, old, new, len, ext_flags);
3136
3137 /*If the old clusters is unwritten, no need to duplicate. */
3138 if (!(ext_flags & OCFS2_EXT_UNWRITTEN)) {
Tao Ma913580b2009-08-24 14:31:03 +08003139 ret = context->cow_duplicate_clusters(handle, context, cpos,
3140 old, new, len);
Tao Ma6f70fa52009-08-25 08:05:12 +08003141 if (ret) {
3142 mlog_errno(ret);
3143 goto out;
3144 }
3145 }
3146
Tao Ma913580b2009-08-24 14:31:03 +08003147 ret = ocfs2_clear_ext_refcount(handle, &context->data_et,
Tao Ma6f70fa52009-08-25 08:05:12 +08003148 cpos, new, len, ext_flags,
3149 context->meta_ac, &context->dealloc);
3150 if (ret)
3151 mlog_errno(ret);
3152out:
3153 return ret;
3154}
3155
3156static int ocfs2_cow_sync_writeback(struct super_block *sb,
3157 struct ocfs2_cow_context *context,
3158 u32 cpos, u32 num_clusters)
3159{
3160 int ret = 0;
3161 loff_t offset, end, map_end;
3162 pgoff_t page_index;
3163 struct page *page;
3164
3165 if (ocfs2_should_order_data(context->inode))
3166 return 0;
3167
3168 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
3169 end = offset + (num_clusters << OCFS2_SB(sb)->s_clustersize_bits);
3170
3171 ret = filemap_fdatawrite_range(context->inode->i_mapping,
3172 offset, end - 1);
3173 if (ret < 0) {
3174 mlog_errno(ret);
3175 return ret;
3176 }
3177
3178 while (offset < end) {
3179 page_index = offset >> PAGE_CACHE_SHIFT;
Tao Mad622b892010-01-30 23:32:19 +08003180 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
Tao Ma6f70fa52009-08-25 08:05:12 +08003181 if (map_end > end)
3182 map_end = end;
3183
3184 page = grab_cache_page(context->inode->i_mapping, page_index);
3185 BUG_ON(!page);
3186
3187 wait_on_page_writeback(page);
3188 if (PageError(page)) {
3189 ret = -EIO;
3190 mlog_errno(ret);
3191 } else
3192 mark_page_accessed(page);
3193
3194 unlock_page(page);
3195 page_cache_release(page);
3196 page = NULL;
3197 offset = map_end;
3198 if (ret)
3199 break;
3200 }
3201
3202 return ret;
3203}
3204
Tao Ma913580b2009-08-24 14:31:03 +08003205static int ocfs2_di_get_clusters(struct ocfs2_cow_context *context,
3206 u32 v_cluster, u32 *p_cluster,
3207 u32 *num_clusters,
3208 unsigned int *extent_flags)
3209{
3210 return ocfs2_get_clusters(context->inode, v_cluster, p_cluster,
3211 num_clusters, extent_flags);
3212}
3213
Tao Ma6f70fa52009-08-25 08:05:12 +08003214static int ocfs2_make_clusters_writable(struct super_block *sb,
3215 struct ocfs2_cow_context *context,
3216 u32 cpos, u32 p_cluster,
3217 u32 num_clusters, unsigned int e_flags)
3218{
Tao Ma6ae23c52009-08-18 11:30:55 +08003219 int ret, delete, index, credits = 0;
Tao Ma6f70fa52009-08-25 08:05:12 +08003220 u32 new_bit, new_len;
Tao Ma6ae23c52009-08-18 11:30:55 +08003221 unsigned int set_len;
Tao Ma6f70fa52009-08-25 08:05:12 +08003222 struct ocfs2_super *osb = OCFS2_SB(sb);
3223 handle_t *handle;
Tao Ma6ae23c52009-08-18 11:30:55 +08003224 struct buffer_head *ref_leaf_bh = NULL;
Tao Ma913580b2009-08-24 14:31:03 +08003225 struct ocfs2_caching_info *ref_ci = &context->ref_tree->rf_ci;
Tao Ma6ae23c52009-08-18 11:30:55 +08003226 struct ocfs2_refcount_rec rec;
3227
3228 mlog(0, "cpos %u, p_cluster %u, num_clusters %u, e_flags %u\n",
3229 cpos, p_cluster, num_clusters, e_flags);
Tao Ma6f70fa52009-08-25 08:05:12 +08003230
3231 ret = ocfs2_lock_refcount_allocators(sb, p_cluster, num_clusters,
Tao Ma913580b2009-08-24 14:31:03 +08003232 &context->data_et,
3233 ref_ci,
Tao Ma6f70fa52009-08-25 08:05:12 +08003234 context->ref_root_bh,
3235 &context->meta_ac,
3236 &context->data_ac, &credits);
3237 if (ret) {
3238 mlog_errno(ret);
3239 return ret;
3240 }
3241
Tao Ma492a8a32009-08-18 11:43:17 +08003242 if (context->post_refcount)
3243 credits += context->post_refcount->credits;
3244
3245 credits += context->extra_credits;
Tao Ma6f70fa52009-08-25 08:05:12 +08003246 handle = ocfs2_start_trans(osb, credits);
3247 if (IS_ERR(handle)) {
3248 ret = PTR_ERR(handle);
3249 mlog_errno(ret);
3250 goto out;
3251 }
3252
3253 while (num_clusters) {
Tao Ma913580b2009-08-24 14:31:03 +08003254 ret = ocfs2_get_refcount_rec(ref_ci, context->ref_root_bh,
Tao Ma6ae23c52009-08-18 11:30:55 +08003255 p_cluster, num_clusters,
3256 &rec, &index, &ref_leaf_bh);
Tao Ma6f70fa52009-08-25 08:05:12 +08003257 if (ret) {
3258 mlog_errno(ret);
3259 goto out_commit;
3260 }
3261
Tao Ma6ae23c52009-08-18 11:30:55 +08003262 BUG_ON(!rec.r_refcount);
3263 set_len = min((u64)p_cluster + num_clusters,
3264 le64_to_cpu(rec.r_cpos) +
3265 le32_to_cpu(rec.r_clusters)) - p_cluster;
3266
3267 /*
3268 * There are many different situation here.
3269 * 1. If refcount == 1, remove the flag and don't COW.
3270 * 2. If refcount > 1, allocate clusters.
3271 * Here we may not allocate r_len once at a time, so continue
3272 * until we reach num_clusters.
3273 */
3274 if (le32_to_cpu(rec.r_refcount) == 1) {
3275 delete = 0;
Tao Ma913580b2009-08-24 14:31:03 +08003276 ret = ocfs2_clear_ext_refcount(handle,
3277 &context->data_et,
Tao Ma6ae23c52009-08-18 11:30:55 +08003278 cpos, p_cluster,
3279 set_len, e_flags,
3280 context->meta_ac,
3281 &context->dealloc);
3282 if (ret) {
3283 mlog_errno(ret);
3284 goto out_commit;
3285 }
3286 } else {
3287 delete = 1;
3288
Joel Becker1ed9b772010-05-06 13:59:06 +08003289 ret = __ocfs2_claim_clusters(handle,
Tao Ma6ae23c52009-08-18 11:30:55 +08003290 context->data_ac,
3291 1, set_len,
3292 &new_bit, &new_len);
3293 if (ret) {
3294 mlog_errno(ret);
3295 goto out_commit;
3296 }
3297
3298 ret = ocfs2_replace_clusters(handle, context,
3299 cpos, p_cluster, new_bit,
3300 new_len, e_flags);
3301 if (ret) {
3302 mlog_errno(ret);
3303 goto out_commit;
3304 }
3305 set_len = new_len;
3306 }
3307
Tao Ma913580b2009-08-24 14:31:03 +08003308 ret = __ocfs2_decrease_refcount(handle, ref_ci,
Tao Ma6ae23c52009-08-18 11:30:55 +08003309 context->ref_root_bh,
3310 p_cluster, set_len,
3311 context->meta_ac,
3312 &context->dealloc, delete);
Tao Ma6f70fa52009-08-25 08:05:12 +08003313 if (ret) {
3314 mlog_errno(ret);
3315 goto out_commit;
3316 }
3317
Tao Ma6ae23c52009-08-18 11:30:55 +08003318 cpos += set_len;
3319 p_cluster += set_len;
3320 num_clusters -= set_len;
3321 brelse(ref_leaf_bh);
3322 ref_leaf_bh = NULL;
Tao Ma6f70fa52009-08-25 08:05:12 +08003323 }
3324
Tao Ma492a8a32009-08-18 11:43:17 +08003325 /* handle any post_cow action. */
3326 if (context->post_refcount && context->post_refcount->func) {
3327 ret = context->post_refcount->func(context->inode, handle,
3328 context->post_refcount->para);
3329 if (ret) {
3330 mlog_errno(ret);
3331 goto out_commit;
3332 }
3333 }
3334
Tao Ma6f70fa52009-08-25 08:05:12 +08003335 /*
3336 * Here we should write the new page out first if we are
3337 * in write-back mode.
3338 */
Tao Ma492a8a32009-08-18 11:43:17 +08003339 if (context->get_clusters == ocfs2_di_get_clusters) {
3340 ret = ocfs2_cow_sync_writeback(sb, context, cpos, num_clusters);
3341 if (ret)
3342 mlog_errno(ret);
3343 }
Tao Ma6f70fa52009-08-25 08:05:12 +08003344
3345out_commit:
3346 ocfs2_commit_trans(osb, handle);
3347
3348out:
3349 if (context->data_ac) {
3350 ocfs2_free_alloc_context(context->data_ac);
3351 context->data_ac = NULL;
3352 }
3353 if (context->meta_ac) {
3354 ocfs2_free_alloc_context(context->meta_ac);
3355 context->meta_ac = NULL;
3356 }
Tao Ma6ae23c52009-08-18 11:30:55 +08003357 brelse(ref_leaf_bh);
Tao Ma6f70fa52009-08-25 08:05:12 +08003358
3359 return ret;
3360}
3361
Tao Ma913580b2009-08-24 14:31:03 +08003362static int ocfs2_replace_cow(struct ocfs2_cow_context *context)
Tao Ma6f70fa52009-08-25 08:05:12 +08003363{
3364 int ret = 0;
Tao Ma913580b2009-08-24 14:31:03 +08003365 struct inode *inode = context->inode;
3366 u32 cow_start = context->cow_start, cow_len = context->cow_len;
3367 u32 p_cluster, num_clusters;
Tao Ma6f70fa52009-08-25 08:05:12 +08003368 unsigned int ext_flags;
3369 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma6f70fa52009-08-25 08:05:12 +08003370
3371 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
3372 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
3373 "tree, but the feature bit is not set in the "
3374 "super block.", inode->i_ino);
3375 return -EROFS;
3376 }
3377
Tao Ma6f70fa52009-08-25 08:05:12 +08003378 ocfs2_init_dealloc_ctxt(&context->dealloc);
Tao Ma6f70fa52009-08-25 08:05:12 +08003379
3380 while (cow_len) {
Tao Ma913580b2009-08-24 14:31:03 +08003381 ret = context->get_clusters(context, cow_start, &p_cluster,
3382 &num_clusters, &ext_flags);
Tao Ma6f70fa52009-08-25 08:05:12 +08003383 if (ret) {
3384 mlog_errno(ret);
3385 break;
3386 }
3387
3388 BUG_ON(!(ext_flags & OCFS2_EXT_REFCOUNTED));
3389
3390 if (cow_len < num_clusters)
3391 num_clusters = cow_len;
3392
3393 ret = ocfs2_make_clusters_writable(inode->i_sb, context,
3394 cow_start, p_cluster,
3395 num_clusters, ext_flags);
3396 if (ret) {
3397 mlog_errno(ret);
3398 break;
3399 }
3400
3401 cow_len -= num_clusters;
3402 cow_start += num_clusters;
3403 }
3404
Tao Ma6f70fa52009-08-25 08:05:12 +08003405 if (ocfs2_dealloc_has_cluster(&context->dealloc)) {
3406 ocfs2_schedule_truncate_log_flush(osb, 1);
3407 ocfs2_run_deallocs(osb, &context->dealloc);
3408 }
3409
Tao Ma6f70fa52009-08-25 08:05:12 +08003410 return ret;
3411}
3412
Tao Ma7b61cf52010-06-17 14:14:36 +08003413static void ocfs2_readahead_for_cow(struct inode *inode,
3414 struct file *file,
3415 u32 start, u32 len)
3416{
3417 struct address_space *mapping;
3418 pgoff_t index;
3419 unsigned long num_pages;
3420 int cs_bits = OCFS2_SB(inode->i_sb)->s_clustersize_bits;
3421
3422 if (!file)
3423 return;
3424
3425 mapping = file->f_mapping;
3426 num_pages = (len << cs_bits) >> PAGE_CACHE_SHIFT;
3427 if (!num_pages)
3428 num_pages = 1;
3429
3430 index = ((loff_t)start << cs_bits) >> PAGE_CACHE_SHIFT;
3431 page_cache_sync_readahead(mapping, &file->f_ra, file,
3432 index, num_pages);
3433}
3434
Tao Ma6f70fa52009-08-25 08:05:12 +08003435/*
Tao Ma37f8a2b2009-08-26 09:47:28 +08003436 * Starting at cpos, try to CoW write_len clusters. Don't CoW
3437 * past max_cpos. This will stop when it runs into a hole or an
3438 * unrefcounted extent.
Tao Ma6f70fa52009-08-25 08:05:12 +08003439 */
3440static int ocfs2_refcount_cow_hunk(struct inode *inode,
Tao Ma15502712010-08-12 10:36:38 +08003441 struct file *file,
Tao Ma6f70fa52009-08-25 08:05:12 +08003442 struct buffer_head *di_bh,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003443 u32 cpos, u32 write_len, u32 max_cpos)
Tao Ma6f70fa52009-08-25 08:05:12 +08003444{
3445 int ret;
3446 u32 cow_start = 0, cow_len = 0;
3447 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3448 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3449 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3450 struct buffer_head *ref_root_bh = NULL;
3451 struct ocfs2_refcount_tree *ref_tree;
Tao Ma913580b2009-08-24 14:31:03 +08003452 struct ocfs2_cow_context *context = NULL;
Tao Ma6f70fa52009-08-25 08:05:12 +08003453
3454 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3455
Tao Ma913580b2009-08-24 14:31:03 +08003456 ret = ocfs2_refcount_cal_cow_clusters(inode, &di->id2.i_list,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003457 cpos, write_len, max_cpos,
Tao Ma6f70fa52009-08-25 08:05:12 +08003458 &cow_start, &cow_len);
3459 if (ret) {
3460 mlog_errno(ret);
3461 goto out;
3462 }
Tao Ma37f8a2b2009-08-26 09:47:28 +08003463
Tao Ma6f70fa52009-08-25 08:05:12 +08003464 mlog(0, "CoW inode %lu, cpos %u, write_len %u, cow_start %u, "
3465 "cow_len %u\n", inode->i_ino,
3466 cpos, write_len, cow_start, cow_len);
3467
3468 BUG_ON(cow_len == 0);
3469
Tao Ma7b61cf52010-06-17 14:14:36 +08003470 ocfs2_readahead_for_cow(inode, file, cow_start, cow_len);
3471
Tao Ma913580b2009-08-24 14:31:03 +08003472 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3473 if (!context) {
3474 ret = -ENOMEM;
3475 mlog_errno(ret);
3476 goto out;
3477 }
3478
Tao Ma6f70fa52009-08-25 08:05:12 +08003479 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
3480 1, &ref_tree, &ref_root_bh);
3481 if (ret) {
3482 mlog_errno(ret);
3483 goto out;
3484 }
3485
Tao Ma913580b2009-08-24 14:31:03 +08003486 context->inode = inode;
3487 context->cow_start = cow_start;
3488 context->cow_len = cow_len;
3489 context->ref_tree = ref_tree;
3490 context->ref_root_bh = ref_root_bh;
3491 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_page;
3492 context->get_clusters = ocfs2_di_get_clusters;
Tao Ma6ea48432010-08-12 10:31:34 +08003493 context->file = file;
Tao Ma913580b2009-08-24 14:31:03 +08003494
3495 ocfs2_init_dinode_extent_tree(&context->data_et,
3496 INODE_CACHE(inode), di_bh);
3497
3498 ret = ocfs2_replace_cow(context);
Tao Ma6f70fa52009-08-25 08:05:12 +08003499 if (ret)
3500 mlog_errno(ret);
3501
Tao Ma913580b2009-08-24 14:31:03 +08003502 /*
3503 * truncate the extent map here since no matter whether we meet with
3504 * any error during the action, we shouldn't trust cached extent map
3505 * any more.
3506 */
3507 ocfs2_extent_map_trunc(inode, cow_start);
3508
Tao Ma6f70fa52009-08-25 08:05:12 +08003509 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3510 brelse(ref_root_bh);
3511out:
Tao Ma913580b2009-08-24 14:31:03 +08003512 kfree(context);
Tao Ma6f70fa52009-08-25 08:05:12 +08003513 return ret;
3514}
3515
3516/*
3517 * CoW any and all clusters between cpos and cpos+write_len.
Tao Ma37f8a2b2009-08-26 09:47:28 +08003518 * Don't CoW past max_cpos. If this returns successfully, all
3519 * clusters between cpos and cpos+write_len are safe to modify.
Tao Ma6f70fa52009-08-25 08:05:12 +08003520 */
3521int ocfs2_refcount_cow(struct inode *inode,
Tao Ma15502712010-08-12 10:36:38 +08003522 struct file *file,
Tao Ma6f70fa52009-08-25 08:05:12 +08003523 struct buffer_head *di_bh,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003524 u32 cpos, u32 write_len, u32 max_cpos)
Tao Ma6f70fa52009-08-25 08:05:12 +08003525{
3526 int ret = 0;
3527 u32 p_cluster, num_clusters;
3528 unsigned int ext_flags;
3529
3530 while (write_len) {
3531 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3532 &num_clusters, &ext_flags);
3533 if (ret) {
3534 mlog_errno(ret);
3535 break;
3536 }
3537
3538 if (write_len < num_clusters)
3539 num_clusters = write_len;
3540
3541 if (ext_flags & OCFS2_EXT_REFCOUNTED) {
Tao Ma15502712010-08-12 10:36:38 +08003542 ret = ocfs2_refcount_cow_hunk(inode, file, di_bh, cpos,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003543 num_clusters, max_cpos);
Tao Ma6f70fa52009-08-25 08:05:12 +08003544 if (ret) {
3545 mlog_errno(ret);
3546 break;
3547 }
3548 }
3549
3550 write_len -= num_clusters;
3551 cpos += num_clusters;
3552 }
3553
3554 return ret;
3555}
Tao Ma110a0452009-08-22 23:54:27 +08003556
Tao Ma492a8a32009-08-18 11:43:17 +08003557static int ocfs2_xattr_value_get_clusters(struct ocfs2_cow_context *context,
3558 u32 v_cluster, u32 *p_cluster,
3559 u32 *num_clusters,
3560 unsigned int *extent_flags)
3561{
3562 struct inode *inode = context->inode;
3563 struct ocfs2_xattr_value_root *xv = context->cow_object;
3564
3565 return ocfs2_xattr_get_clusters(inode, v_cluster, p_cluster,
3566 num_clusters, &xv->xr_list,
3567 extent_flags);
3568}
3569
3570/*
3571 * Given a xattr value root, calculate the most meta/credits we need for
3572 * refcount tree change if we truncate it to 0.
3573 */
3574int ocfs2_refcounted_xattr_delete_need(struct inode *inode,
3575 struct ocfs2_caching_info *ref_ci,
3576 struct buffer_head *ref_root_bh,
3577 struct ocfs2_xattr_value_root *xv,
3578 int *meta_add, int *credits)
3579{
3580 int ret = 0, index, ref_blocks = 0;
3581 u32 p_cluster, num_clusters;
3582 u32 cpos = 0, clusters = le32_to_cpu(xv->xr_clusters);
3583 struct ocfs2_refcount_block *rb;
3584 struct ocfs2_refcount_rec rec;
3585 struct buffer_head *ref_leaf_bh = NULL;
3586
3587 while (cpos < clusters) {
3588 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
3589 &num_clusters, &xv->xr_list,
3590 NULL);
3591 if (ret) {
3592 mlog_errno(ret);
3593 goto out;
3594 }
3595
3596 cpos += num_clusters;
3597
3598 while (num_clusters) {
3599 ret = ocfs2_get_refcount_rec(ref_ci, ref_root_bh,
3600 p_cluster, num_clusters,
3601 &rec, &index,
3602 &ref_leaf_bh);
3603 if (ret) {
3604 mlog_errno(ret);
3605 goto out;
3606 }
3607
3608 BUG_ON(!rec.r_refcount);
3609
3610 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
3611
3612 /*
3613 * We really don't know whether the other clusters is in
3614 * this refcount block or not, so just take the worst
3615 * case that all the clusters are in this block and each
3616 * one will split a refcount rec, so totally we need
3617 * clusters * 2 new refcount rec.
3618 */
3619 if (le64_to_cpu(rb->rf_records.rl_used) + clusters * 2 >
3620 le16_to_cpu(rb->rf_records.rl_count))
3621 ref_blocks++;
3622
3623 *credits += 1;
3624 brelse(ref_leaf_bh);
3625 ref_leaf_bh = NULL;
3626
3627 if (num_clusters <= le32_to_cpu(rec.r_clusters))
3628 break;
3629 else
3630 num_clusters -= le32_to_cpu(rec.r_clusters);
3631 p_cluster += num_clusters;
3632 }
3633 }
3634
3635 *meta_add += ref_blocks;
3636 if (!ref_blocks)
3637 goto out;
3638
3639 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
3640 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
3641 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
3642 else {
3643 struct ocfs2_extent_tree et;
3644
3645 ocfs2_init_refcount_extent_tree(&et, ref_ci, ref_root_bh);
3646 *credits += ocfs2_calc_extend_credits(inode->i_sb,
3647 et.et_root_el,
3648 ref_blocks);
3649 }
3650
3651out:
3652 brelse(ref_leaf_bh);
3653 return ret;
3654}
3655
3656/*
3657 * Do CoW for xattr.
3658 */
3659int ocfs2_refcount_cow_xattr(struct inode *inode,
3660 struct ocfs2_dinode *di,
3661 struct ocfs2_xattr_value_buf *vb,
3662 struct ocfs2_refcount_tree *ref_tree,
3663 struct buffer_head *ref_root_bh,
3664 u32 cpos, u32 write_len,
3665 struct ocfs2_post_refcount *post)
3666{
3667 int ret;
3668 struct ocfs2_xattr_value_root *xv = vb->vb_xv;
3669 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3670 struct ocfs2_cow_context *context = NULL;
3671 u32 cow_start, cow_len;
3672
3673 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3674
3675 ret = ocfs2_refcount_cal_cow_clusters(inode, &xv->xr_list,
3676 cpos, write_len, UINT_MAX,
3677 &cow_start, &cow_len);
3678 if (ret) {
3679 mlog_errno(ret);
3680 goto out;
3681 }
3682
3683 BUG_ON(cow_len == 0);
3684
3685 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3686 if (!context) {
3687 ret = -ENOMEM;
3688 mlog_errno(ret);
3689 goto out;
3690 }
3691
3692 context->inode = inode;
3693 context->cow_start = cow_start;
3694 context->cow_len = cow_len;
3695 context->ref_tree = ref_tree;
3696 context->ref_root_bh = ref_root_bh;;
3697 context->cow_object = xv;
3698
3699 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_jbd;
3700 /* We need the extra credits for duplicate_clusters by jbd. */
3701 context->extra_credits =
3702 ocfs2_clusters_to_blocks(inode->i_sb, 1) * cow_len;
3703 context->get_clusters = ocfs2_xattr_value_get_clusters;
3704 context->post_refcount = post;
3705
3706 ocfs2_init_xattr_value_extent_tree(&context->data_et,
3707 INODE_CACHE(inode), vb);
3708
3709 ret = ocfs2_replace_cow(context);
3710 if (ret)
3711 mlog_errno(ret);
3712
3713out:
3714 kfree(context);
3715 return ret;
3716}
3717
Tao Ma110a0452009-08-22 23:54:27 +08003718/*
3719 * Insert a new extent into refcount tree and mark a extent rec
3720 * as refcounted in the dinode tree.
3721 */
3722int ocfs2_add_refcount_flag(struct inode *inode,
3723 struct ocfs2_extent_tree *data_et,
3724 struct ocfs2_caching_info *ref_ci,
3725 struct buffer_head *ref_root_bh,
3726 u32 cpos, u32 p_cluster, u32 num_clusters,
Tao Ma01292412009-09-21 13:04:19 +08003727 struct ocfs2_cached_dealloc_ctxt *dealloc,
3728 struct ocfs2_post_refcount *post)
Tao Ma110a0452009-08-22 23:54:27 +08003729{
3730 int ret;
3731 handle_t *handle;
3732 int credits = 1, ref_blocks = 0;
3733 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3734 struct ocfs2_alloc_context *meta_ac = NULL;
3735
3736 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
3737 ref_ci, ref_root_bh,
3738 p_cluster, num_clusters,
3739 &ref_blocks, &credits);
3740 if (ret) {
3741 mlog_errno(ret);
3742 goto out;
3743 }
3744
3745 mlog(0, "reserve new metadata %d, credits = %d\n",
3746 ref_blocks, credits);
3747
3748 if (ref_blocks) {
3749 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(inode->i_sb),
3750 ref_blocks, &meta_ac);
3751 if (ret) {
3752 mlog_errno(ret);
3753 goto out;
3754 }
3755 }
3756
Tao Ma01292412009-09-21 13:04:19 +08003757 if (post)
3758 credits += post->credits;
3759
Tao Ma110a0452009-08-22 23:54:27 +08003760 handle = ocfs2_start_trans(osb, credits);
3761 if (IS_ERR(handle)) {
3762 ret = PTR_ERR(handle);
3763 mlog_errno(ret);
3764 goto out;
3765 }
3766
3767 ret = ocfs2_mark_extent_refcounted(inode, data_et, handle,
3768 cpos, num_clusters, p_cluster,
3769 meta_ac, dealloc);
3770 if (ret) {
3771 mlog_errno(ret);
3772 goto out_commit;
3773 }
3774
Tao Ma7540c1a2009-08-18 11:44:03 +08003775 ret = __ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3776 p_cluster, num_clusters, 0,
3777 meta_ac, dealloc);
Tao Ma01292412009-09-21 13:04:19 +08003778 if (ret) {
Tao Ma110a0452009-08-22 23:54:27 +08003779 mlog_errno(ret);
Tao Ma01292412009-09-21 13:04:19 +08003780 goto out_commit;
3781 }
3782
3783 if (post && post->func) {
3784 ret = post->func(inode, handle, post->para);
3785 if (ret)
3786 mlog_errno(ret);
3787 }
Tao Ma110a0452009-08-22 23:54:27 +08003788
3789out_commit:
3790 ocfs2_commit_trans(osb, handle);
3791out:
3792 if (meta_ac)
3793 ocfs2_free_alloc_context(meta_ac);
3794 return ret;
3795}
3796
Tao Maa9063ab2009-08-18 11:40:59 +08003797static int ocfs2_change_ctime(struct inode *inode,
3798 struct buffer_head *di_bh)
3799{
3800 int ret;
3801 handle_t *handle;
3802 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3803
3804 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
3805 OCFS2_INODE_UPDATE_CREDITS);
3806 if (IS_ERR(handle)) {
3807 ret = PTR_ERR(handle);
3808 mlog_errno(ret);
3809 goto out;
3810 }
3811
3812 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
3813 OCFS2_JOURNAL_ACCESS_WRITE);
3814 if (ret) {
3815 mlog_errno(ret);
3816 goto out_commit;
3817 }
3818
3819 inode->i_ctime = CURRENT_TIME;
3820 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
3821 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
3822
3823 ocfs2_journal_dirty(handle, di_bh);
3824
3825out_commit:
3826 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
3827out:
3828 return ret;
3829}
3830
Tao Ma110a0452009-08-22 23:54:27 +08003831static int ocfs2_attach_refcount_tree(struct inode *inode,
3832 struct buffer_head *di_bh)
3833{
Tao Maa9063ab2009-08-18 11:40:59 +08003834 int ret, data_changed = 0;
Tao Ma110a0452009-08-22 23:54:27 +08003835 struct buffer_head *ref_root_bh = NULL;
3836 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3837 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3838 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3839 struct ocfs2_refcount_tree *ref_tree;
3840 unsigned int ext_flags;
3841 loff_t size;
3842 u32 cpos, num_clusters, clusters, p_cluster;
3843 struct ocfs2_cached_dealloc_ctxt dealloc;
3844 struct ocfs2_extent_tree di_et;
3845
3846 ocfs2_init_dealloc_ctxt(&dealloc);
3847
3848 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL)) {
3849 ret = ocfs2_create_refcount_tree(inode, di_bh);
3850 if (ret) {
3851 mlog_errno(ret);
3852 goto out;
3853 }
3854 }
3855
3856 BUG_ON(!di->i_refcount_loc);
3857 ret = ocfs2_lock_refcount_tree(osb,
3858 le64_to_cpu(di->i_refcount_loc), 1,
3859 &ref_tree, &ref_root_bh);
3860 if (ret) {
3861 mlog_errno(ret);
3862 goto out;
3863 }
3864
Tao Ma2f48d592009-10-15 11:10:49 +08003865 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
3866 goto attach_xattr;
3867
Tao Ma110a0452009-08-22 23:54:27 +08003868 ocfs2_init_dinode_extent_tree(&di_et, INODE_CACHE(inode), di_bh);
3869
3870 size = i_size_read(inode);
3871 clusters = ocfs2_clusters_for_bytes(inode->i_sb, size);
3872
3873 cpos = 0;
3874 while (cpos < clusters) {
3875 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3876 &num_clusters, &ext_flags);
3877
3878 if (p_cluster && !(ext_flags & OCFS2_EXT_REFCOUNTED)) {
3879 ret = ocfs2_add_refcount_flag(inode, &di_et,
3880 &ref_tree->rf_ci,
3881 ref_root_bh, cpos,
3882 p_cluster, num_clusters,
Tao Ma01292412009-09-21 13:04:19 +08003883 &dealloc, NULL);
Tao Ma110a0452009-08-22 23:54:27 +08003884 if (ret) {
3885 mlog_errno(ret);
Tao Maa9063ab2009-08-18 11:40:59 +08003886 goto unlock;
Tao Ma110a0452009-08-22 23:54:27 +08003887 }
Tao Maa9063ab2009-08-18 11:40:59 +08003888
3889 data_changed = 1;
Tao Ma110a0452009-08-22 23:54:27 +08003890 }
3891 cpos += num_clusters;
3892 }
3893
Tao Ma2f48d592009-10-15 11:10:49 +08003894attach_xattr:
Tao Ma01292412009-09-21 13:04:19 +08003895 if (oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
3896 ret = ocfs2_xattr_attach_refcount_tree(inode, di_bh,
3897 &ref_tree->rf_ci,
3898 ref_root_bh,
3899 &dealloc);
3900 if (ret) {
3901 mlog_errno(ret);
3902 goto unlock;
3903 }
3904 }
3905
Tao Maa9063ab2009-08-18 11:40:59 +08003906 if (data_changed) {
3907 ret = ocfs2_change_ctime(inode, di_bh);
3908 if (ret)
3909 mlog_errno(ret);
3910 }
3911
3912unlock:
Tao Ma110a0452009-08-22 23:54:27 +08003913 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3914 brelse(ref_root_bh);
3915
3916 if (!ret && ocfs2_dealloc_has_cluster(&dealloc)) {
3917 ocfs2_schedule_truncate_log_flush(osb, 1);
3918 ocfs2_run_deallocs(osb, &dealloc);
3919 }
3920out:
3921 /*
3922 * Empty the extent map so that we may get the right extent
3923 * record from the disk.
3924 */
3925 ocfs2_extent_map_trunc(inode, 0);
3926
3927 return ret;
3928}
3929
3930static int ocfs2_add_refcounted_extent(struct inode *inode,
3931 struct ocfs2_extent_tree *et,
3932 struct ocfs2_caching_info *ref_ci,
3933 struct buffer_head *ref_root_bh,
3934 u32 cpos, u32 p_cluster, u32 num_clusters,
3935 unsigned int ext_flags,
3936 struct ocfs2_cached_dealloc_ctxt *dealloc)
3937{
3938 int ret;
3939 handle_t *handle;
3940 int credits = 0;
3941 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3942 struct ocfs2_alloc_context *meta_ac = NULL;
3943
3944 ret = ocfs2_lock_refcount_allocators(inode->i_sb,
3945 p_cluster, num_clusters,
3946 et, ref_ci,
3947 ref_root_bh, &meta_ac,
3948 NULL, &credits);
3949 if (ret) {
3950 mlog_errno(ret);
3951 goto out;
3952 }
3953
3954 handle = ocfs2_start_trans(osb, credits);
3955 if (IS_ERR(handle)) {
3956 ret = PTR_ERR(handle);
3957 mlog_errno(ret);
3958 goto out;
3959 }
3960
3961 ret = ocfs2_insert_extent(handle, et, cpos,
Tao Ma12d4cec2009-11-30 15:08:40 +08003962 ocfs2_clusters_to_blocks(inode->i_sb, p_cluster),
Tao Ma110a0452009-08-22 23:54:27 +08003963 num_clusters, ext_flags, meta_ac);
3964 if (ret) {
3965 mlog_errno(ret);
3966 goto out_commit;
3967 }
3968
Tao Ma2999d122009-08-18 11:43:55 +08003969 ret = ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3970 p_cluster, num_clusters,
3971 meta_ac, dealloc);
Tao Ma110a0452009-08-22 23:54:27 +08003972 if (ret)
3973 mlog_errno(ret);
3974
3975out_commit:
3976 ocfs2_commit_trans(osb, handle);
3977out:
3978 if (meta_ac)
3979 ocfs2_free_alloc_context(meta_ac);
3980 return ret;
3981}
3982
Tao Ma2f48d592009-10-15 11:10:49 +08003983static int ocfs2_duplicate_inline_data(struct inode *s_inode,
3984 struct buffer_head *s_bh,
3985 struct inode *t_inode,
3986 struct buffer_head *t_bh)
3987{
3988 int ret;
3989 handle_t *handle;
3990 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
3991 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
3992 struct ocfs2_dinode *t_di = (struct ocfs2_dinode *)t_bh->b_data;
3993
3994 BUG_ON(!(OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
3995
3996 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
3997 if (IS_ERR(handle)) {
3998 ret = PTR_ERR(handle);
3999 mlog_errno(ret);
4000 goto out;
4001 }
4002
4003 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4004 OCFS2_JOURNAL_ACCESS_WRITE);
4005 if (ret) {
4006 mlog_errno(ret);
4007 goto out_commit;
4008 }
4009
4010 t_di->id2.i_data.id_count = s_di->id2.i_data.id_count;
4011 memcpy(t_di->id2.i_data.id_data, s_di->id2.i_data.id_data,
4012 le16_to_cpu(s_di->id2.i_data.id_count));
4013 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4014 OCFS2_I(t_inode)->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
4015 t_di->i_dyn_features = cpu_to_le16(OCFS2_I(t_inode)->ip_dyn_features);
4016 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4017
4018 ocfs2_journal_dirty(handle, t_bh);
4019
4020out_commit:
4021 ocfs2_commit_trans(osb, handle);
4022out:
4023 return ret;
4024}
4025
Tao Ma110a0452009-08-22 23:54:27 +08004026static int ocfs2_duplicate_extent_list(struct inode *s_inode,
4027 struct inode *t_inode,
4028 struct buffer_head *t_bh,
4029 struct ocfs2_caching_info *ref_ci,
4030 struct buffer_head *ref_root_bh,
4031 struct ocfs2_cached_dealloc_ctxt *dealloc)
4032{
4033 int ret = 0;
4034 u32 p_cluster, num_clusters, clusters, cpos;
4035 loff_t size;
4036 unsigned int ext_flags;
4037 struct ocfs2_extent_tree et;
4038
4039 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(t_inode), t_bh);
4040
4041 size = i_size_read(s_inode);
4042 clusters = ocfs2_clusters_for_bytes(s_inode->i_sb, size);
4043
4044 cpos = 0;
4045 while (cpos < clusters) {
4046 ret = ocfs2_get_clusters(s_inode, cpos, &p_cluster,
4047 &num_clusters, &ext_flags);
4048
4049 if (p_cluster) {
4050 ret = ocfs2_add_refcounted_extent(t_inode, &et,
4051 ref_ci, ref_root_bh,
4052 cpos, p_cluster,
4053 num_clusters,
4054 ext_flags,
4055 dealloc);
4056 if (ret) {
4057 mlog_errno(ret);
4058 goto out;
4059 }
4060 }
4061
4062 cpos += num_clusters;
4063 }
4064
4065out:
4066 return ret;
4067}
4068
Tao Maa9063ab2009-08-18 11:40:59 +08004069/*
4070 * change the new file's attributes to the src.
4071 *
4072 * reflink creates a snapshot of a file, that means the attributes
4073 * must be identical except for three exceptions - nlink, ino, and ctime.
4074 */
4075static int ocfs2_complete_reflink(struct inode *s_inode,
4076 struct buffer_head *s_bh,
4077 struct inode *t_inode,
Tao Ma0fe9b662009-08-18 11:47:56 +08004078 struct buffer_head *t_bh,
4079 bool preserve)
Tao Maa9063ab2009-08-18 11:40:59 +08004080{
4081 int ret;
4082 handle_t *handle;
4083 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
4084 struct ocfs2_dinode *di = (struct ocfs2_dinode *)t_bh->b_data;
4085 loff_t size = i_size_read(s_inode);
4086
4087 handle = ocfs2_start_trans(OCFS2_SB(t_inode->i_sb),
4088 OCFS2_INODE_UPDATE_CREDITS);
4089 if (IS_ERR(handle)) {
4090 ret = PTR_ERR(handle);
4091 mlog_errno(ret);
4092 return ret;
4093 }
4094
4095 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4096 OCFS2_JOURNAL_ACCESS_WRITE);
4097 if (ret) {
4098 mlog_errno(ret);
4099 goto out_commit;
4100 }
4101
4102 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4103 OCFS2_I(t_inode)->ip_clusters = OCFS2_I(s_inode)->ip_clusters;
4104 OCFS2_I(t_inode)->ip_attr = OCFS2_I(s_inode)->ip_attr;
4105 OCFS2_I(t_inode)->ip_dyn_features = OCFS2_I(s_inode)->ip_dyn_features;
4106 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4107 i_size_write(t_inode, size);
Tao Ma6527f8f2010-03-10 09:56:52 +08004108 t_inode->i_blocks = s_inode->i_blocks;
Tao Maa9063ab2009-08-18 11:40:59 +08004109
4110 di->i_xattr_inline_size = s_di->i_xattr_inline_size;
4111 di->i_clusters = s_di->i_clusters;
4112 di->i_size = s_di->i_size;
4113 di->i_dyn_features = s_di->i_dyn_features;
4114 di->i_attr = s_di->i_attr;
Tao Maa9063ab2009-08-18 11:40:59 +08004115
Tao Ma0fe9b662009-08-18 11:47:56 +08004116 if (preserve) {
Tao Mac21a5342010-04-21 14:05:55 +08004117 t_inode->i_uid = s_inode->i_uid;
4118 t_inode->i_gid = s_inode->i_gid;
4119 t_inode->i_mode = s_inode->i_mode;
Tao Ma0fe9b662009-08-18 11:47:56 +08004120 di->i_uid = s_di->i_uid;
4121 di->i_gid = s_di->i_gid;
4122 di->i_mode = s_di->i_mode;
Tao Maa9063ab2009-08-18 11:40:59 +08004123
Tao Ma0fe9b662009-08-18 11:47:56 +08004124 /*
4125 * update time.
4126 * we want mtime to appear identical to the source and
4127 * update ctime.
4128 */
4129 t_inode->i_ctime = CURRENT_TIME;
Tao Maa9063ab2009-08-18 11:40:59 +08004130
Tao Ma0fe9b662009-08-18 11:47:56 +08004131 di->i_ctime = cpu_to_le64(t_inode->i_ctime.tv_sec);
4132 di->i_ctime_nsec = cpu_to_le32(t_inode->i_ctime.tv_nsec);
4133
4134 t_inode->i_mtime = s_inode->i_mtime;
4135 di->i_mtime = s_di->i_mtime;
4136 di->i_mtime_nsec = s_di->i_mtime_nsec;
4137 }
Tao Maa9063ab2009-08-18 11:40:59 +08004138
4139 ocfs2_journal_dirty(handle, t_bh);
4140
4141out_commit:
4142 ocfs2_commit_trans(OCFS2_SB(t_inode->i_sb), handle);
4143 return ret;
4144}
4145
Tao Ma110a0452009-08-22 23:54:27 +08004146static int ocfs2_create_reflink_node(struct inode *s_inode,
4147 struct buffer_head *s_bh,
4148 struct inode *t_inode,
Tao Ma0fe9b662009-08-18 11:47:56 +08004149 struct buffer_head *t_bh,
4150 bool preserve)
Tao Ma110a0452009-08-22 23:54:27 +08004151{
4152 int ret;
4153 struct buffer_head *ref_root_bh = NULL;
4154 struct ocfs2_cached_dealloc_ctxt dealloc;
4155 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
4156 struct ocfs2_refcount_block *rb;
4157 struct ocfs2_dinode *di = (struct ocfs2_dinode *)s_bh->b_data;
4158 struct ocfs2_refcount_tree *ref_tree;
4159
4160 ocfs2_init_dealloc_ctxt(&dealloc);
4161
4162 ret = ocfs2_set_refcount_tree(t_inode, t_bh,
4163 le64_to_cpu(di->i_refcount_loc));
4164 if (ret) {
4165 mlog_errno(ret);
4166 goto out;
4167 }
4168
Tao Ma2f48d592009-10-15 11:10:49 +08004169 if (OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4170 ret = ocfs2_duplicate_inline_data(s_inode, s_bh,
4171 t_inode, t_bh);
4172 if (ret)
4173 mlog_errno(ret);
4174 goto out;
4175 }
4176
Tao Ma110a0452009-08-22 23:54:27 +08004177 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
4178 1, &ref_tree, &ref_root_bh);
4179 if (ret) {
4180 mlog_errno(ret);
4181 goto out;
4182 }
4183 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
4184
4185 ret = ocfs2_duplicate_extent_list(s_inode, t_inode, t_bh,
4186 &ref_tree->rf_ci, ref_root_bh,
4187 &dealloc);
Tao Maa9063ab2009-08-18 11:40:59 +08004188 if (ret) {
4189 mlog_errno(ret);
4190 goto out_unlock_refcount;
4191 }
4192
Tao Maa9063ab2009-08-18 11:40:59 +08004193out_unlock_refcount:
Tao Ma110a0452009-08-22 23:54:27 +08004194 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4195 brelse(ref_root_bh);
4196out:
4197 if (ocfs2_dealloc_has_cluster(&dealloc)) {
4198 ocfs2_schedule_truncate_log_flush(osb, 1);
4199 ocfs2_run_deallocs(osb, &dealloc);
4200 }
4201
4202 return ret;
4203}
Tao Ma09bf27a2009-09-21 10:38:17 +08004204
4205static int __ocfs2_reflink(struct dentry *old_dentry,
4206 struct buffer_head *old_bh,
4207 struct inode *new_inode,
4208 bool preserve)
4209{
4210 int ret;
4211 struct inode *inode = old_dentry->d_inode;
4212 struct buffer_head *new_bh = NULL;
4213
Joel Becker56934862010-07-01 15:13:31 -07004214 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
4215 ret = -EINVAL;
4216 mlog_errno(ret);
4217 goto out;
4218 }
4219
Tao Ma09bf27a2009-09-21 10:38:17 +08004220 ret = filemap_fdatawrite(inode->i_mapping);
4221 if (ret) {
4222 mlog_errno(ret);
4223 goto out;
4224 }
4225
4226 ret = ocfs2_attach_refcount_tree(inode, old_bh);
4227 if (ret) {
4228 mlog_errno(ret);
4229 goto out;
4230 }
4231
4232 mutex_lock(&new_inode->i_mutex);
4233 ret = ocfs2_inode_lock(new_inode, &new_bh, 1);
4234 if (ret) {
4235 mlog_errno(ret);
4236 goto out_unlock;
4237 }
4238
4239 ret = ocfs2_create_reflink_node(inode, old_bh,
4240 new_inode, new_bh, preserve);
4241 if (ret) {
4242 mlog_errno(ret);
4243 goto inode_unlock;
4244 }
4245
4246 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
4247 ret = ocfs2_reflink_xattrs(inode, old_bh,
4248 new_inode, new_bh,
4249 preserve);
Tao Ma87f4b1b2009-10-15 11:10:48 +08004250 if (ret) {
Tao Ma09bf27a2009-09-21 10:38:17 +08004251 mlog_errno(ret);
Tao Ma87f4b1b2009-10-15 11:10:48 +08004252 goto inode_unlock;
4253 }
Tao Ma09bf27a2009-09-21 10:38:17 +08004254 }
Tao Ma87f4b1b2009-10-15 11:10:48 +08004255
4256 ret = ocfs2_complete_reflink(inode, old_bh,
4257 new_inode, new_bh, preserve);
4258 if (ret)
4259 mlog_errno(ret);
4260
Tao Ma09bf27a2009-09-21 10:38:17 +08004261inode_unlock:
4262 ocfs2_inode_unlock(new_inode, 1);
4263 brelse(new_bh);
4264out_unlock:
4265 mutex_unlock(&new_inode->i_mutex);
4266out:
4267 if (!ret) {
4268 ret = filemap_fdatawait(inode->i_mapping);
4269 if (ret)
4270 mlog_errno(ret);
4271 }
4272 return ret;
4273}
4274
4275static int ocfs2_reflink(struct dentry *old_dentry, struct inode *dir,
4276 struct dentry *new_dentry, bool preserve)
4277{
4278 int error;
4279 struct inode *inode = old_dentry->d_inode;
4280 struct buffer_head *old_bh = NULL;
4281 struct inode *new_orphan_inode = NULL;
4282
4283 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4284 return -EOPNOTSUPP;
4285
4286 error = ocfs2_create_inode_in_orphan(dir, inode->i_mode,
4287 &new_orphan_inode);
4288 if (error) {
4289 mlog_errno(error);
4290 goto out;
4291 }
4292
4293 error = ocfs2_inode_lock(inode, &old_bh, 1);
4294 if (error) {
4295 mlog_errno(error);
4296 goto out;
4297 }
4298
4299 down_write(&OCFS2_I(inode)->ip_xattr_sem);
4300 down_write(&OCFS2_I(inode)->ip_alloc_sem);
4301 error = __ocfs2_reflink(old_dentry, old_bh,
4302 new_orphan_inode, preserve);
4303 up_write(&OCFS2_I(inode)->ip_alloc_sem);
4304 up_write(&OCFS2_I(inode)->ip_xattr_sem);
4305
4306 ocfs2_inode_unlock(inode, 1);
4307 brelse(old_bh);
4308
4309 if (error) {
4310 mlog_errno(error);
4311 goto out;
4312 }
4313
4314 /* If the security isn't preserved, we need to re-initialize them. */
4315 if (!preserve) {
4316 error = ocfs2_init_security_and_acl(dir, new_orphan_inode);
4317 if (error)
4318 mlog_errno(error);
4319 }
4320out:
4321 if (!error) {
4322 error = ocfs2_mv_orphaned_inode_to_new(dir, new_orphan_inode,
4323 new_dentry);
4324 if (error)
4325 mlog_errno(error);
4326 }
4327
4328 if (new_orphan_inode) {
4329 /*
4330 * We need to open_unlock the inode no matter whether we
4331 * succeed or not, so that other nodes can delete it later.
4332 */
4333 ocfs2_open_unlock(new_orphan_inode);
4334 if (error)
4335 iput(new_orphan_inode);
4336 }
4337
4338 return error;
4339}
Tao Mabd508732009-09-21 11:25:14 +08004340
4341/*
4342 * Below here are the bits used by OCFS2_IOC_REFLINK() to fake
4343 * sys_reflink(). This will go away when vfs_reflink() exists in
4344 * fs/namei.c.
4345 */
4346
4347/* copied from may_create in VFS. */
4348static inline int ocfs2_may_create(struct inode *dir, struct dentry *child)
4349{
4350 if (child->d_inode)
4351 return -EEXIST;
4352 if (IS_DEADDIR(dir))
4353 return -ENOENT;
4354 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
4355}
4356
4357/* copied from user_path_parent. */
4358static int ocfs2_user_path_parent(const char __user *path,
4359 struct nameidata *nd, char **name)
4360{
4361 char *s = getname(path);
4362 int error;
4363
4364 if (IS_ERR(s))
4365 return PTR_ERR(s);
4366
4367 error = path_lookup(s, LOOKUP_PARENT, nd);
4368 if (error)
4369 putname(s);
4370 else
4371 *name = s;
4372
4373 return error;
4374}
4375
4376/**
4377 * ocfs2_vfs_reflink - Create a reference-counted link
4378 *
4379 * @old_dentry: source dentry + inode
4380 * @dir: directory to create the target
4381 * @new_dentry: target dentry
4382 * @preserve: if true, preserve all file attributes
4383 */
Tao Ma12d4cec2009-11-30 15:08:40 +08004384static int ocfs2_vfs_reflink(struct dentry *old_dentry, struct inode *dir,
4385 struct dentry *new_dentry, bool preserve)
Tao Mabd508732009-09-21 11:25:14 +08004386{
4387 struct inode *inode = old_dentry->d_inode;
4388 int error;
4389
4390 if (!inode)
4391 return -ENOENT;
4392
4393 error = ocfs2_may_create(dir, new_dentry);
4394 if (error)
4395 return error;
4396
4397 if (dir->i_sb != inode->i_sb)
4398 return -EXDEV;
4399
4400 /*
4401 * A reflink to an append-only or immutable file cannot be created.
4402 */
4403 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4404 return -EPERM;
4405
4406 /* Only regular files can be reflinked. */
4407 if (!S_ISREG(inode->i_mode))
4408 return -EPERM;
4409
4410 /*
4411 * If the caller wants to preserve ownership, they require the
4412 * rights to do so.
4413 */
4414 if (preserve) {
4415 if ((current_fsuid() != inode->i_uid) && !capable(CAP_CHOWN))
4416 return -EPERM;
4417 if (!in_group_p(inode->i_gid) && !capable(CAP_CHOWN))
4418 return -EPERM;
4419 }
4420
4421 /*
4422 * If the caller is modifying any aspect of the attributes, they
4423 * are not creating a snapshot. They need read permission on the
4424 * file.
4425 */
4426 if (!preserve) {
4427 error = inode_permission(inode, MAY_READ);
4428 if (error)
4429 return error;
4430 }
4431
4432 mutex_lock(&inode->i_mutex);
Christoph Hellwig871a2932010-03-03 09:05:07 -05004433 dquot_initialize(dir);
Tao Mabd508732009-09-21 11:25:14 +08004434 error = ocfs2_reflink(old_dentry, dir, new_dentry, preserve);
4435 mutex_unlock(&inode->i_mutex);
4436 if (!error)
4437 fsnotify_create(dir, new_dentry);
4438 return error;
4439}
4440/*
4441 * Most codes are copied from sys_linkat.
4442 */
4443int ocfs2_reflink_ioctl(struct inode *inode,
4444 const char __user *oldname,
4445 const char __user *newname,
4446 bool preserve)
4447{
4448 struct dentry *new_dentry;
4449 struct nameidata nd;
4450 struct path old_path;
4451 int error;
4452 char *to = NULL;
4453
4454 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4455 return -EOPNOTSUPP;
4456
4457 error = user_path_at(AT_FDCWD, oldname, 0, &old_path);
4458 if (error) {
4459 mlog_errno(error);
4460 return error;
4461 }
4462
4463 error = ocfs2_user_path_parent(newname, &nd, &to);
4464 if (error) {
4465 mlog_errno(error);
4466 goto out;
4467 }
4468
4469 error = -EXDEV;
4470 if (old_path.mnt != nd.path.mnt)
4471 goto out_release;
4472 new_dentry = lookup_create(&nd, 0);
4473 error = PTR_ERR(new_dentry);
4474 if (IS_ERR(new_dentry)) {
4475 mlog_errno(error);
4476 goto out_unlock;
4477 }
4478
4479 error = mnt_want_write(nd.path.mnt);
4480 if (error) {
4481 mlog_errno(error);
4482 goto out_dput;
4483 }
4484
4485 error = ocfs2_vfs_reflink(old_path.dentry,
4486 nd.path.dentry->d_inode,
4487 new_dentry, preserve);
4488 mnt_drop_write(nd.path.mnt);
4489out_dput:
4490 dput(new_dentry);
4491out_unlock:
4492 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
4493out_release:
4494 path_put(&nd.path);
4495 putname(to);
4496out:
4497 path_put(&old_path);
4498
4499 return error;
4500}