blob: 6fab28921f3d98fe7adbd9b3b1a3bc000d41f0fb [file] [log] [blame]
Tao Maf2c870e2009-08-18 11:19:26 +08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * refcounttree.c
5 *
6 * Copyright (C) 2009 Oracle. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
Tao Mae73a8192009-08-11 14:33:14 +080018#include <linux/sort.h>
Tao Maf2c870e2009-08-18 11:19:26 +080019#define MLOG_MASK_PREFIX ML_REFCOUNT
20#include <cluster/masklog.h>
21#include "ocfs2.h"
22#include "inode.h"
23#include "alloc.h"
24#include "suballoc.h"
25#include "journal.h"
26#include "uptodate.h"
27#include "super.h"
28#include "buffer_head_io.h"
29#include "blockcheck.h"
Tao Mac732eb12009-08-18 11:21:00 +080030#include "refcounttree.h"
Tao Ma8bf396d2009-08-24 11:12:02 +080031#include "sysfile.h"
Tao Ma374a2632009-08-24 11:13:37 +080032#include "dlmglue.h"
Tao Mae73a8192009-08-11 14:33:14 +080033#include "extent_map.h"
Tao Ma6f70fa52009-08-25 08:05:12 +080034#include "aops.h"
Tao Ma492a8a32009-08-18 11:43:17 +080035#include "xattr.h"
Tao Ma09bf27a2009-09-21 10:38:17 +080036#include "namei.h"
Tao Ma6f70fa52009-08-25 08:05:12 +080037
38#include <linux/bio.h>
39#include <linux/blkdev.h>
40#include <linux/gfp.h>
41#include <linux/slab.h>
42#include <linux/writeback.h>
43#include <linux/pagevec.h>
44#include <linux/swap.h>
Tao Mabd508732009-09-21 11:25:14 +080045#include <linux/security.h>
46#include <linux/fsnotify.h>
47#include <linux/quotaops.h>
48#include <linux/namei.h>
49#include <linux/mount.h>
Tao Ma6f70fa52009-08-25 08:05:12 +080050
51struct ocfs2_cow_context {
52 struct inode *inode;
53 u32 cow_start;
54 u32 cow_len;
Tao Ma913580b2009-08-24 14:31:03 +080055 struct ocfs2_extent_tree data_et;
56 struct ocfs2_refcount_tree *ref_tree;
Tao Ma6f70fa52009-08-25 08:05:12 +080057 struct buffer_head *ref_root_bh;
58 struct ocfs2_alloc_context *meta_ac;
59 struct ocfs2_alloc_context *data_ac;
60 struct ocfs2_cached_dealloc_ctxt dealloc;
Tao Ma492a8a32009-08-18 11:43:17 +080061 void *cow_object;
62 struct ocfs2_post_refcount *post_refcount;
63 int extra_credits;
Tao Ma913580b2009-08-24 14:31:03 +080064 int (*get_clusters)(struct ocfs2_cow_context *context,
65 u32 v_cluster, u32 *p_cluster,
66 u32 *num_clusters,
67 unsigned int *extent_flags);
68 int (*cow_duplicate_clusters)(handle_t *handle,
69 struct ocfs2_cow_context *context,
70 u32 cpos, u32 old_cluster,
71 u32 new_cluster, u32 new_len);
Tao Ma6f70fa52009-08-25 08:05:12 +080072};
Tao Mac732eb12009-08-18 11:21:00 +080073
74static inline struct ocfs2_refcount_tree *
75cache_info_to_refcount(struct ocfs2_caching_info *ci)
76{
77 return container_of(ci, struct ocfs2_refcount_tree, rf_ci);
78}
Tao Maf2c870e2009-08-18 11:19:26 +080079
80static int ocfs2_validate_refcount_block(struct super_block *sb,
81 struct buffer_head *bh)
82{
83 int rc;
84 struct ocfs2_refcount_block *rb =
85 (struct ocfs2_refcount_block *)bh->b_data;
86
87 mlog(0, "Validating refcount block %llu\n",
88 (unsigned long long)bh->b_blocknr);
89
90 BUG_ON(!buffer_uptodate(bh));
91
92 /*
93 * If the ecc fails, we return the error but otherwise
94 * leave the filesystem running. We know any error is
95 * local to this block.
96 */
97 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &rb->rf_check);
98 if (rc) {
99 mlog(ML_ERROR, "Checksum failed for refcount block %llu\n",
100 (unsigned long long)bh->b_blocknr);
101 return rc;
102 }
103
104
105 if (!OCFS2_IS_VALID_REFCOUNT_BLOCK(rb)) {
106 ocfs2_error(sb,
107 "Refcount block #%llu has bad signature %.*s",
108 (unsigned long long)bh->b_blocknr, 7,
109 rb->rf_signature);
110 return -EINVAL;
111 }
112
113 if (le64_to_cpu(rb->rf_blkno) != bh->b_blocknr) {
114 ocfs2_error(sb,
115 "Refcount block #%llu has an invalid rf_blkno "
116 "of %llu",
117 (unsigned long long)bh->b_blocknr,
118 (unsigned long long)le64_to_cpu(rb->rf_blkno));
119 return -EINVAL;
120 }
121
122 if (le32_to_cpu(rb->rf_fs_generation) != OCFS2_SB(sb)->fs_generation) {
123 ocfs2_error(sb,
124 "Refcount block #%llu has an invalid "
125 "rf_fs_generation of #%u",
126 (unsigned long long)bh->b_blocknr,
127 le32_to_cpu(rb->rf_fs_generation));
128 return -EINVAL;
129 }
130
131 return 0;
132}
133
134static int ocfs2_read_refcount_block(struct ocfs2_caching_info *ci,
135 u64 rb_blkno,
136 struct buffer_head **bh)
137{
138 int rc;
139 struct buffer_head *tmp = *bh;
140
141 rc = ocfs2_read_block(ci, rb_blkno, &tmp,
142 ocfs2_validate_refcount_block);
143
144 /* If ocfs2_read_block() got us a new bh, pass it up. */
145 if (!rc && !*bh)
146 *bh = tmp;
147
148 return rc;
149}
Tao Mac732eb12009-08-18 11:21:00 +0800150
151static u64 ocfs2_refcount_cache_owner(struct ocfs2_caching_info *ci)
152{
153 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
154
155 return rf->rf_blkno;
156}
157
158static struct super_block *
159ocfs2_refcount_cache_get_super(struct ocfs2_caching_info *ci)
160{
161 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
162
163 return rf->rf_sb;
164}
165
166static void ocfs2_refcount_cache_lock(struct ocfs2_caching_info *ci)
167{
168 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
169
170 spin_lock(&rf->rf_lock);
171}
172
173static void ocfs2_refcount_cache_unlock(struct ocfs2_caching_info *ci)
174{
175 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
176
177 spin_unlock(&rf->rf_lock);
178}
179
180static void ocfs2_refcount_cache_io_lock(struct ocfs2_caching_info *ci)
181{
182 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
183
184 mutex_lock(&rf->rf_io_mutex);
185}
186
187static void ocfs2_refcount_cache_io_unlock(struct ocfs2_caching_info *ci)
188{
189 struct ocfs2_refcount_tree *rf = cache_info_to_refcount(ci);
190
191 mutex_unlock(&rf->rf_io_mutex);
192}
193
194static const struct ocfs2_caching_operations ocfs2_refcount_caching_ops = {
195 .co_owner = ocfs2_refcount_cache_owner,
196 .co_get_super = ocfs2_refcount_cache_get_super,
197 .co_cache_lock = ocfs2_refcount_cache_lock,
198 .co_cache_unlock = ocfs2_refcount_cache_unlock,
199 .co_io_lock = ocfs2_refcount_cache_io_lock,
200 .co_io_unlock = ocfs2_refcount_cache_io_unlock,
201};
Tao Ma374a2632009-08-24 11:13:37 +0800202
203static struct ocfs2_refcount_tree *
204ocfs2_find_refcount_tree(struct ocfs2_super *osb, u64 blkno)
205{
206 struct rb_node *n = osb->osb_rf_lock_tree.rb_node;
207 struct ocfs2_refcount_tree *tree = NULL;
208
209 while (n) {
210 tree = rb_entry(n, struct ocfs2_refcount_tree, rf_node);
211
212 if (blkno < tree->rf_blkno)
213 n = n->rb_left;
214 else if (blkno > tree->rf_blkno)
215 n = n->rb_right;
216 else
217 return tree;
218 }
219
220 return NULL;
221}
222
223/* osb_lock is already locked. */
224static void ocfs2_insert_refcount_tree(struct ocfs2_super *osb,
225 struct ocfs2_refcount_tree *new)
226{
227 u64 rf_blkno = new->rf_blkno;
228 struct rb_node *parent = NULL;
229 struct rb_node **p = &osb->osb_rf_lock_tree.rb_node;
230 struct ocfs2_refcount_tree *tmp;
231
232 while (*p) {
233 parent = *p;
234
235 tmp = rb_entry(parent, struct ocfs2_refcount_tree,
236 rf_node);
237
238 if (rf_blkno < tmp->rf_blkno)
239 p = &(*p)->rb_left;
240 else if (rf_blkno > tmp->rf_blkno)
241 p = &(*p)->rb_right;
242 else {
243 /* This should never happen! */
244 mlog(ML_ERROR, "Duplicate refcount block %llu found!\n",
245 (unsigned long long)rf_blkno);
246 BUG();
247 }
248 }
249
250 rb_link_node(&new->rf_node, parent, p);
251 rb_insert_color(&new->rf_node, &osb->osb_rf_lock_tree);
252}
253
254static void ocfs2_free_refcount_tree(struct ocfs2_refcount_tree *tree)
255{
256 ocfs2_metadata_cache_exit(&tree->rf_ci);
257 ocfs2_simple_drop_lockres(OCFS2_SB(tree->rf_sb), &tree->rf_lockres);
258 ocfs2_lock_res_free(&tree->rf_lockres);
259 kfree(tree);
260}
261
262static inline void
263ocfs2_erase_refcount_tree_from_list_no_lock(struct ocfs2_super *osb,
264 struct ocfs2_refcount_tree *tree)
265{
266 rb_erase(&tree->rf_node, &osb->osb_rf_lock_tree);
267 if (osb->osb_ref_tree_lru && osb->osb_ref_tree_lru == tree)
268 osb->osb_ref_tree_lru = NULL;
269}
270
271static void ocfs2_erase_refcount_tree_from_list(struct ocfs2_super *osb,
272 struct ocfs2_refcount_tree *tree)
273{
274 spin_lock(&osb->osb_lock);
275 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
276 spin_unlock(&osb->osb_lock);
277}
278
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;
574 u64 first_blkno;
575
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
600 ret = ocfs2_claim_metadata(osb, handle, meta_ac, 1,
601 &suballoc_bit_start, &num_got,
602 &first_blkno);
603 if (ret) {
604 mlog_errno(ret);
605 goto out_commit;
606 }
607
608 new_tree = ocfs2_allocate_refcount_tree(osb, first_blkno);
609 if (!new_tree) {
610 ret = -ENOMEM;
611 mlog_errno(ret);
612 goto out_commit;
613 }
614
615 new_bh = sb_getblk(inode->i_sb, first_blkno);
616 ocfs2_set_new_buffer_uptodate(&new_tree->rf_ci, new_bh);
617
618 ret = ocfs2_journal_access_rb(handle, &new_tree->rf_ci, new_bh,
619 OCFS2_JOURNAL_ACCESS_CREATE);
620 if (ret) {
621 mlog_errno(ret);
622 goto out_commit;
623 }
624
625 /* Initialize ocfs2_refcount_block. */
626 rb = (struct ocfs2_refcount_block *)new_bh->b_data;
627 memset(rb, 0, inode->i_sb->s_blocksize);
628 strcpy((void *)rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
Tiger Yangb89c5422010-01-25 14:11:06 +0800629 rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Tao Ma8bf396d2009-08-24 11:12:02 +0800630 rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
631 rb->rf_fs_generation = cpu_to_le32(osb->fs_generation);
632 rb->rf_blkno = cpu_to_le64(first_blkno);
633 rb->rf_count = cpu_to_le32(1);
634 rb->rf_records.rl_count =
635 cpu_to_le16(ocfs2_refcount_recs_per_rb(osb->sb));
636 spin_lock(&osb->osb_lock);
637 rb->rf_generation = osb->s_next_generation++;
638 spin_unlock(&osb->osb_lock);
639
640 ocfs2_journal_dirty(handle, new_bh);
641
642 spin_lock(&oi->ip_lock);
643 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
644 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
645 di->i_refcount_loc = cpu_to_le64(first_blkno);
646 spin_unlock(&oi->ip_lock);
647
648 mlog(0, "created tree for inode %lu, refblock %llu\n",
649 inode->i_ino, (unsigned long long)first_blkno);
650
651 ocfs2_journal_dirty(handle, di_bh);
652
653 /*
654 * We have to init the tree lock here since it will use
655 * the generation number to create it.
656 */
657 new_tree->rf_generation = le32_to_cpu(rb->rf_generation);
658 ocfs2_init_refcount_tree_lock(osb, new_tree, first_blkno,
659 new_tree->rf_generation);
660
661 spin_lock(&osb->osb_lock);
662 tree = ocfs2_find_refcount_tree(osb, first_blkno);
663
664 /*
665 * We've just created a new refcount tree in this block. If
666 * we found a refcount tree on the ocfs2_super, it must be
667 * one we just deleted. We free the old tree before
668 * inserting the new tree.
669 */
670 BUG_ON(tree && tree->rf_generation == new_tree->rf_generation);
671 if (tree)
672 ocfs2_erase_refcount_tree_from_list_no_lock(osb, tree);
673 ocfs2_insert_refcount_tree(osb, new_tree);
674 spin_unlock(&osb->osb_lock);
675 new_tree = NULL;
676 if (tree)
677 ocfs2_refcount_tree_put(tree);
678
679out_commit:
680 ocfs2_commit_trans(osb, handle);
681
682out:
683 if (new_tree) {
684 ocfs2_metadata_cache_exit(&new_tree->rf_ci);
685 kfree(new_tree);
686 }
687
688 brelse(new_bh);
689 if (meta_ac)
690 ocfs2_free_alloc_context(meta_ac);
691
692 return ret;
693}
694
695static int ocfs2_set_refcount_tree(struct inode *inode,
696 struct buffer_head *di_bh,
697 u64 refcount_loc)
698{
699 int ret;
700 handle_t *handle = NULL;
701 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
702 struct ocfs2_inode_info *oi = OCFS2_I(inode);
703 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
704 struct buffer_head *ref_root_bh = NULL;
705 struct ocfs2_refcount_block *rb;
706 struct ocfs2_refcount_tree *ref_tree;
707
708 BUG_ON(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL);
709
710 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
711 &ref_tree, &ref_root_bh);
712 if (ret) {
713 mlog_errno(ret);
714 return ret;
715 }
716
717 handle = ocfs2_start_trans(osb, OCFS2_REFCOUNT_TREE_SET_CREDITS);
718 if (IS_ERR(handle)) {
719 ret = PTR_ERR(handle);
720 mlog_errno(ret);
721 goto out;
722 }
723
724 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
725 OCFS2_JOURNAL_ACCESS_WRITE);
726 if (ret) {
727 mlog_errno(ret);
728 goto out_commit;
729 }
730
731 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, ref_root_bh,
732 OCFS2_JOURNAL_ACCESS_WRITE);
733 if (ret) {
734 mlog_errno(ret);
735 goto out_commit;
736 }
737
738 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
739 le32_add_cpu(&rb->rf_count, 1);
740
741 ocfs2_journal_dirty(handle, ref_root_bh);
742
743 spin_lock(&oi->ip_lock);
744 oi->ip_dyn_features |= OCFS2_HAS_REFCOUNT_FL;
745 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
746 di->i_refcount_loc = cpu_to_le64(refcount_loc);
747 spin_unlock(&oi->ip_lock);
748 ocfs2_journal_dirty(handle, di_bh);
749
750out_commit:
751 ocfs2_commit_trans(osb, handle);
752out:
753 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
754 brelse(ref_root_bh);
755
756 return ret;
757}
758
759int ocfs2_remove_refcount_tree(struct inode *inode, struct buffer_head *di_bh)
760{
761 int ret, delete_tree = 0;
762 handle_t *handle = NULL;
763 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
764 struct ocfs2_inode_info *oi = OCFS2_I(inode);
765 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
766 struct ocfs2_refcount_block *rb;
767 struct inode *alloc_inode = NULL;
768 struct buffer_head *alloc_bh = NULL;
769 struct buffer_head *blk_bh = NULL;
770 struct ocfs2_refcount_tree *ref_tree;
771 int credits = OCFS2_REFCOUNT_TREE_REMOVE_CREDITS;
772 u64 blk = 0, bg_blkno = 0, ref_blkno = le64_to_cpu(di->i_refcount_loc);
773 u16 bit = 0;
774
775 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL))
776 return 0;
777
778 BUG_ON(!ref_blkno);
779 ret = ocfs2_lock_refcount_tree(osb, ref_blkno, 1, &ref_tree, &blk_bh);
780 if (ret) {
781 mlog_errno(ret);
782 return ret;
783 }
784
785 rb = (struct ocfs2_refcount_block *)blk_bh->b_data;
786
787 /*
788 * If we are the last user, we need to free the block.
789 * So lock the allocator ahead.
790 */
791 if (le32_to_cpu(rb->rf_count) == 1) {
792 blk = le64_to_cpu(rb->rf_blkno);
793 bit = le16_to_cpu(rb->rf_suballoc_bit);
794 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
795
796 alloc_inode = ocfs2_get_system_file_inode(osb,
797 EXTENT_ALLOC_SYSTEM_INODE,
798 le16_to_cpu(rb->rf_suballoc_slot));
799 if (!alloc_inode) {
800 ret = -ENOMEM;
801 mlog_errno(ret);
802 goto out;
803 }
804 mutex_lock(&alloc_inode->i_mutex);
805
806 ret = ocfs2_inode_lock(alloc_inode, &alloc_bh, 1);
807 if (ret) {
808 mlog_errno(ret);
809 goto out_mutex;
810 }
811
812 credits += OCFS2_SUBALLOC_FREE;
813 }
814
815 handle = ocfs2_start_trans(osb, credits);
816 if (IS_ERR(handle)) {
817 ret = PTR_ERR(handle);
818 mlog_errno(ret);
819 goto out_unlock;
820 }
821
822 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
823 OCFS2_JOURNAL_ACCESS_WRITE);
824 if (ret) {
825 mlog_errno(ret);
826 goto out_commit;
827 }
828
829 ret = ocfs2_journal_access_rb(handle, &ref_tree->rf_ci, blk_bh,
830 OCFS2_JOURNAL_ACCESS_WRITE);
831 if (ret) {
832 mlog_errno(ret);
833 goto out_commit;
834 }
835
836 spin_lock(&oi->ip_lock);
837 oi->ip_dyn_features &= ~OCFS2_HAS_REFCOUNT_FL;
838 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
839 di->i_refcount_loc = 0;
840 spin_unlock(&oi->ip_lock);
841 ocfs2_journal_dirty(handle, di_bh);
842
843 le32_add_cpu(&rb->rf_count , -1);
844 ocfs2_journal_dirty(handle, blk_bh);
845
846 if (!rb->rf_count) {
847 delete_tree = 1;
848 ocfs2_erase_refcount_tree_from_list(osb, ref_tree);
849 ret = ocfs2_free_suballoc_bits(handle, alloc_inode,
850 alloc_bh, bit, bg_blkno, 1);
851 if (ret)
852 mlog_errno(ret);
853 }
854
855out_commit:
856 ocfs2_commit_trans(osb, handle);
857out_unlock:
858 if (alloc_inode) {
859 ocfs2_inode_unlock(alloc_inode, 1);
860 brelse(alloc_bh);
861 }
862out_mutex:
863 if (alloc_inode) {
864 mutex_unlock(&alloc_inode->i_mutex);
865 iput(alloc_inode);
866 }
867out:
868 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
869 if (delete_tree)
870 ocfs2_refcount_tree_put(ref_tree);
871 brelse(blk_bh);
872
873 return ret;
874}
Tao Mae73a8192009-08-11 14:33:14 +0800875
876static void ocfs2_find_refcount_rec_in_rl(struct ocfs2_caching_info *ci,
877 struct buffer_head *ref_leaf_bh,
878 u64 cpos, unsigned int len,
879 struct ocfs2_refcount_rec *ret_rec,
880 int *index)
881{
882 int i = 0;
883 struct ocfs2_refcount_block *rb =
884 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
885 struct ocfs2_refcount_rec *rec = NULL;
886
887 for (; i < le16_to_cpu(rb->rf_records.rl_used); i++) {
888 rec = &rb->rf_records.rl_recs[i];
889
890 if (le64_to_cpu(rec->r_cpos) +
891 le32_to_cpu(rec->r_clusters) <= cpos)
892 continue;
893 else if (le64_to_cpu(rec->r_cpos) > cpos)
894 break;
895
896 /* ok, cpos fail in this rec. Just return. */
897 if (ret_rec)
898 *ret_rec = *rec;
899 goto out;
900 }
901
902 if (ret_rec) {
903 /* We meet with a hole here, so fake the rec. */
904 ret_rec->r_cpos = cpu_to_le64(cpos);
905 ret_rec->r_refcount = 0;
906 if (i < le16_to_cpu(rb->rf_records.rl_used) &&
907 le64_to_cpu(rec->r_cpos) < cpos + len)
908 ret_rec->r_clusters =
909 cpu_to_le32(le64_to_cpu(rec->r_cpos) - cpos);
910 else
911 ret_rec->r_clusters = cpu_to_le32(len);
912 }
913
914out:
915 *index = i;
916}
917
918/*
Tao Ma8b2c0db2009-08-18 11:43:49 +0800919 * Try to remove refcount tree. The mechanism is:
920 * 1) Check whether i_clusters == 0, if no, exit.
921 * 2) check whether we have i_xattr_loc in dinode. if yes, exit.
922 * 3) Check whether we have inline xattr stored outside, if yes, exit.
923 * 4) Remove the tree.
924 */
925int ocfs2_try_remove_refcount_tree(struct inode *inode,
926 struct buffer_head *di_bh)
927{
928 int ret;
929 struct ocfs2_inode_info *oi = OCFS2_I(inode);
930 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
931
932 down_write(&oi->ip_xattr_sem);
933 down_write(&oi->ip_alloc_sem);
934
935 if (oi->ip_clusters)
936 goto out;
937
938 if ((oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) && di->i_xattr_loc)
939 goto out;
940
941 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL &&
942 ocfs2_has_inline_xattr_value_outside(inode, di))
943 goto out;
944
945 ret = ocfs2_remove_refcount_tree(inode, di_bh);
946 if (ret)
947 mlog_errno(ret);
948out:
949 up_write(&oi->ip_alloc_sem);
950 up_write(&oi->ip_xattr_sem);
951 return 0;
952}
953
954/*
Tao Ma38a04e42009-11-30 14:32:19 +0800955 * Find the end range for a leaf refcount block indicated by
956 * el->l_recs[index].e_blkno.
957 */
958static int ocfs2_get_refcount_cpos_end(struct ocfs2_caching_info *ci,
959 struct buffer_head *ref_root_bh,
960 struct ocfs2_extent_block *eb,
961 struct ocfs2_extent_list *el,
962 int index, u32 *cpos_end)
963{
964 int ret, i, subtree_root;
965 u32 cpos;
966 u64 blkno;
967 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
968 struct ocfs2_path *left_path = NULL, *right_path = NULL;
969 struct ocfs2_extent_tree et;
970 struct ocfs2_extent_list *tmp_el;
971
972 if (index < le16_to_cpu(el->l_next_free_rec) - 1) {
973 /*
974 * We have a extent rec after index, so just use the e_cpos
975 * of the next extent rec.
976 */
977 *cpos_end = le32_to_cpu(el->l_recs[index+1].e_cpos);
978 return 0;
979 }
980
981 if (!eb || (eb && !eb->h_next_leaf_blk)) {
982 /*
983 * We are the last extent rec, so any high cpos should
984 * be stored in this leaf refcount block.
985 */
986 *cpos_end = UINT_MAX;
987 return 0;
988 }
989
990 /*
991 * If the extent block isn't the last one, we have to find
992 * the subtree root between this extent block and the next
993 * leaf extent block and get the corresponding e_cpos from
994 * the subroot. Otherwise we may corrupt the b-tree.
995 */
996 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
997
998 left_path = ocfs2_new_path_from_et(&et);
999 if (!left_path) {
1000 ret = -ENOMEM;
1001 mlog_errno(ret);
1002 goto out;
1003 }
1004
1005 cpos = le32_to_cpu(eb->h_list.l_recs[index].e_cpos);
1006 ret = ocfs2_find_path(ci, left_path, cpos);
1007 if (ret) {
1008 mlog_errno(ret);
1009 goto out;
1010 }
1011
1012 right_path = ocfs2_new_path_from_path(left_path);
1013 if (!right_path) {
1014 ret = -ENOMEM;
1015 mlog_errno(ret);
1016 goto out;
1017 }
1018
1019 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path, &cpos);
1020 if (ret) {
1021 mlog_errno(ret);
1022 goto out;
1023 }
1024
1025 ret = ocfs2_find_path(ci, right_path, cpos);
1026 if (ret) {
1027 mlog_errno(ret);
1028 goto out;
1029 }
1030
1031 subtree_root = ocfs2_find_subtree_root(&et, left_path,
1032 right_path);
1033
1034 tmp_el = left_path->p_node[subtree_root].el;
1035 blkno = left_path->p_node[subtree_root+1].bh->b_blocknr;
1036 for (i = 0; i < le32_to_cpu(tmp_el->l_next_free_rec); i++) {
1037 if (le64_to_cpu(tmp_el->l_recs[i].e_blkno) == blkno) {
1038 *cpos_end = le32_to_cpu(tmp_el->l_recs[i+1].e_cpos);
1039 break;
1040 }
1041 }
1042
1043 BUG_ON(i == le32_to_cpu(tmp_el->l_next_free_rec));
1044
1045out:
1046 ocfs2_free_path(left_path);
1047 ocfs2_free_path(right_path);
1048 return ret;
1049}
1050
1051/*
Tao Mae73a8192009-08-11 14:33:14 +08001052 * Given a cpos and len, try to find the refcount record which contains cpos.
1053 * 1. If cpos can be found in one refcount record, return the record.
1054 * 2. If cpos can't be found, return a fake record which start from cpos
1055 * and end at a small value between cpos+len and start of the next record.
1056 * This fake record has r_refcount = 0.
1057 */
1058static int ocfs2_get_refcount_rec(struct ocfs2_caching_info *ci,
1059 struct buffer_head *ref_root_bh,
1060 u64 cpos, unsigned int len,
1061 struct ocfs2_refcount_rec *ret_rec,
1062 int *index,
1063 struct buffer_head **ret_bh)
1064{
1065 int ret = 0, i, found;
Tao Ma38a04e42009-11-30 14:32:19 +08001066 u32 low_cpos, uninitialized_var(cpos_end);
Tao Mae73a8192009-08-11 14:33:14 +08001067 struct ocfs2_extent_list *el;
Tao Ma38a04e42009-11-30 14:32:19 +08001068 struct ocfs2_extent_rec *rec = NULL;
1069 struct ocfs2_extent_block *eb = NULL;
Tao Mae73a8192009-08-11 14:33:14 +08001070 struct buffer_head *eb_bh = NULL, *ref_leaf_bh = NULL;
1071 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1072 struct ocfs2_refcount_block *rb =
1073 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1074
1075 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)) {
1076 ocfs2_find_refcount_rec_in_rl(ci, ref_root_bh, cpos, len,
1077 ret_rec, index);
1078 *ret_bh = ref_root_bh;
1079 get_bh(ref_root_bh);
1080 return 0;
1081 }
1082
1083 el = &rb->rf_list;
1084 low_cpos = cpos & OCFS2_32BIT_POS_MASK;
1085
1086 if (el->l_tree_depth) {
1087 ret = ocfs2_find_leaf(ci, el, low_cpos, &eb_bh);
1088 if (ret) {
1089 mlog_errno(ret);
1090 goto out;
1091 }
1092
1093 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1094 el = &eb->h_list;
1095
1096 if (el->l_tree_depth) {
1097 ocfs2_error(sb,
1098 "refcount tree %llu has non zero tree "
1099 "depth in leaf btree tree block %llu\n",
1100 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1101 (unsigned long long)eb_bh->b_blocknr);
1102 ret = -EROFS;
1103 goto out;
1104 }
1105 }
1106
1107 found = 0;
1108 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1109 rec = &el->l_recs[i];
1110
1111 if (le32_to_cpu(rec->e_cpos) <= low_cpos) {
1112 found = 1;
1113 break;
1114 }
1115 }
1116
Tao Ma38a04e42009-11-30 14:32:19 +08001117 if (found) {
1118 ret = ocfs2_get_refcount_cpos_end(ci, ref_root_bh,
1119 eb, el, i, &cpos_end);
1120 if (ret) {
1121 mlog_errno(ret);
1122 goto out;
1123 }
Tao Mae73a8192009-08-11 14:33:14 +08001124
Tao Ma38a04e42009-11-30 14:32:19 +08001125 if (cpos_end < low_cpos + len)
1126 len = cpos_end - low_cpos;
Tao Mae73a8192009-08-11 14:33:14 +08001127 }
1128
1129 ret = ocfs2_read_refcount_block(ci, le64_to_cpu(rec->e_blkno),
1130 &ref_leaf_bh);
1131 if (ret) {
1132 mlog_errno(ret);
1133 goto out;
1134 }
1135
1136 ocfs2_find_refcount_rec_in_rl(ci, ref_leaf_bh, cpos, len,
1137 ret_rec, index);
1138 *ret_bh = ref_leaf_bh;
1139out:
1140 brelse(eb_bh);
1141 return ret;
1142}
1143
1144enum ocfs2_ref_rec_contig {
1145 REF_CONTIG_NONE = 0,
1146 REF_CONTIG_LEFT,
1147 REF_CONTIG_RIGHT,
1148 REF_CONTIG_LEFTRIGHT,
1149};
1150
1151static enum ocfs2_ref_rec_contig
1152 ocfs2_refcount_rec_adjacent(struct ocfs2_refcount_block *rb,
1153 int index)
1154{
1155 if ((rb->rf_records.rl_recs[index].r_refcount ==
1156 rb->rf_records.rl_recs[index + 1].r_refcount) &&
1157 (le64_to_cpu(rb->rf_records.rl_recs[index].r_cpos) +
1158 le32_to_cpu(rb->rf_records.rl_recs[index].r_clusters) ==
1159 le64_to_cpu(rb->rf_records.rl_recs[index + 1].r_cpos)))
1160 return REF_CONTIG_RIGHT;
1161
1162 return REF_CONTIG_NONE;
1163}
1164
1165static enum ocfs2_ref_rec_contig
1166 ocfs2_refcount_rec_contig(struct ocfs2_refcount_block *rb,
1167 int index)
1168{
1169 enum ocfs2_ref_rec_contig ret = REF_CONTIG_NONE;
1170
1171 if (index < le16_to_cpu(rb->rf_records.rl_used) - 1)
1172 ret = ocfs2_refcount_rec_adjacent(rb, index);
1173
1174 if (index > 0) {
1175 enum ocfs2_ref_rec_contig tmp;
1176
1177 tmp = ocfs2_refcount_rec_adjacent(rb, index - 1);
1178
1179 if (tmp == REF_CONTIG_RIGHT) {
1180 if (ret == REF_CONTIG_RIGHT)
1181 ret = REF_CONTIG_LEFTRIGHT;
1182 else
1183 ret = REF_CONTIG_LEFT;
1184 }
1185 }
1186
1187 return ret;
1188}
1189
1190static void ocfs2_rotate_refcount_rec_left(struct ocfs2_refcount_block *rb,
1191 int index)
1192{
1193 BUG_ON(rb->rf_records.rl_recs[index].r_refcount !=
1194 rb->rf_records.rl_recs[index+1].r_refcount);
1195
1196 le32_add_cpu(&rb->rf_records.rl_recs[index].r_clusters,
1197 le32_to_cpu(rb->rf_records.rl_recs[index+1].r_clusters));
1198
1199 if (index < le16_to_cpu(rb->rf_records.rl_used) - 2)
1200 memmove(&rb->rf_records.rl_recs[index + 1],
1201 &rb->rf_records.rl_recs[index + 2],
1202 sizeof(struct ocfs2_refcount_rec) *
1203 (le16_to_cpu(rb->rf_records.rl_used) - index - 2));
1204
1205 memset(&rb->rf_records.rl_recs[le16_to_cpu(rb->rf_records.rl_used) - 1],
1206 0, sizeof(struct ocfs2_refcount_rec));
1207 le16_add_cpu(&rb->rf_records.rl_used, -1);
1208}
1209
1210/*
1211 * Merge the refcount rec if we are contiguous with the adjacent recs.
1212 */
1213static void ocfs2_refcount_rec_merge(struct ocfs2_refcount_block *rb,
1214 int index)
1215{
1216 enum ocfs2_ref_rec_contig contig =
1217 ocfs2_refcount_rec_contig(rb, index);
1218
1219 if (contig == REF_CONTIG_NONE)
1220 return;
1221
1222 if (contig == REF_CONTIG_LEFT || contig == REF_CONTIG_LEFTRIGHT) {
1223 BUG_ON(index == 0);
1224 index--;
1225 }
1226
1227 ocfs2_rotate_refcount_rec_left(rb, index);
1228
1229 if (contig == REF_CONTIG_LEFTRIGHT)
1230 ocfs2_rotate_refcount_rec_left(rb, index);
1231}
1232
Tao Ma1823cb02009-08-18 11:24:49 +08001233/*
1234 * Change the refcount indexed by "index" in ref_bh.
1235 * If refcount reaches 0, remove it.
1236 */
Tao Mae73a8192009-08-11 14:33:14 +08001237static int ocfs2_change_refcount_rec(handle_t *handle,
1238 struct ocfs2_caching_info *ci,
1239 struct buffer_head *ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08001240 int index, int merge, int change)
Tao Mae73a8192009-08-11 14:33:14 +08001241{
1242 int ret;
1243 struct ocfs2_refcount_block *rb =
1244 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
Tao Ma1823cb02009-08-18 11:24:49 +08001245 struct ocfs2_refcount_list *rl = &rb->rf_records;
1246 struct ocfs2_refcount_rec *rec = &rl->rl_recs[index];
Tao Mae73a8192009-08-11 14:33:14 +08001247
1248 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1249 OCFS2_JOURNAL_ACCESS_WRITE);
1250 if (ret) {
1251 mlog_errno(ret);
1252 goto out;
1253 }
1254
1255 mlog(0, "change index %d, old count %u, change %d\n", index,
1256 le32_to_cpu(rec->r_refcount), change);
1257 le32_add_cpu(&rec->r_refcount, change);
1258
Tao Ma1823cb02009-08-18 11:24:49 +08001259 if (!rec->r_refcount) {
1260 if (index != le16_to_cpu(rl->rl_used) - 1) {
1261 memmove(rec, rec + 1,
1262 (le16_to_cpu(rl->rl_used) - index - 1) *
1263 sizeof(struct ocfs2_refcount_rec));
1264 memset(&rl->rl_recs[le16_to_cpu(rl->rl_used) - 1],
1265 0, sizeof(struct ocfs2_refcount_rec));
1266 }
1267
1268 le16_add_cpu(&rl->rl_used, -1);
Tao Ma7540c1a2009-08-18 11:44:03 +08001269 } else if (merge)
Tao Ma1823cb02009-08-18 11:24:49 +08001270 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001271
Joel Beckerec20cec2010-03-19 14:13:52 -07001272 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001273out:
1274 return ret;
1275}
1276
1277static int ocfs2_expand_inline_ref_root(handle_t *handle,
1278 struct ocfs2_caching_info *ci,
1279 struct buffer_head *ref_root_bh,
1280 struct buffer_head **ref_leaf_bh,
1281 struct ocfs2_alloc_context *meta_ac)
1282{
1283 int ret;
1284 u16 suballoc_bit_start;
1285 u32 num_got;
1286 u64 blkno;
1287 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1288 struct buffer_head *new_bh = NULL;
1289 struct ocfs2_refcount_block *new_rb;
1290 struct ocfs2_refcount_block *root_rb =
1291 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1292
1293 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1294 OCFS2_JOURNAL_ACCESS_WRITE);
1295 if (ret) {
1296 mlog_errno(ret);
1297 goto out;
1298 }
1299
1300 ret = ocfs2_claim_metadata(OCFS2_SB(sb), handle, meta_ac, 1,
1301 &suballoc_bit_start, &num_got,
1302 &blkno);
1303 if (ret) {
1304 mlog_errno(ret);
1305 goto out;
1306 }
1307
1308 new_bh = sb_getblk(sb, blkno);
1309 if (new_bh == NULL) {
1310 ret = -EIO;
1311 mlog_errno(ret);
1312 goto out;
1313 }
1314 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1315
1316 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1317 OCFS2_JOURNAL_ACCESS_CREATE);
1318 if (ret) {
1319 mlog_errno(ret);
1320 goto out;
1321 }
1322
1323 /*
1324 * Initialize ocfs2_refcount_block.
1325 * It should contain the same information as the old root.
1326 * so just memcpy it and change the corresponding field.
1327 */
1328 memcpy(new_bh->b_data, ref_root_bh->b_data, sb->s_blocksize);
1329
1330 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
Tiger Yangb89c5422010-01-25 14:11:06 +08001331 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Tao Mae73a8192009-08-11 14:33:14 +08001332 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1333 new_rb->rf_blkno = cpu_to_le64(blkno);
1334 new_rb->rf_cpos = cpu_to_le32(0);
1335 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1336 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1337 ocfs2_journal_dirty(handle, new_bh);
1338
1339 /* Now change the root. */
1340 memset(&root_rb->rf_list, 0, sb->s_blocksize -
1341 offsetof(struct ocfs2_refcount_block, rf_list));
1342 root_rb->rf_list.l_count = cpu_to_le16(ocfs2_extent_recs_per_rb(sb));
1343 root_rb->rf_clusters = cpu_to_le32(1);
1344 root_rb->rf_list.l_next_free_rec = cpu_to_le16(1);
1345 root_rb->rf_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
1346 root_rb->rf_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
1347 root_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_TREE_FL);
1348
1349 ocfs2_journal_dirty(handle, ref_root_bh);
1350
1351 mlog(0, "new leaf block %llu, used %u\n", (unsigned long long)blkno,
1352 le16_to_cpu(new_rb->rf_records.rl_used));
1353
1354 *ref_leaf_bh = new_bh;
1355 new_bh = NULL;
1356out:
1357 brelse(new_bh);
1358 return ret;
1359}
1360
1361static int ocfs2_refcount_rec_no_intersect(struct ocfs2_refcount_rec *prev,
1362 struct ocfs2_refcount_rec *next)
1363{
1364 if (ocfs2_get_ref_rec_low_cpos(prev) + le32_to_cpu(prev->r_clusters) <=
1365 ocfs2_get_ref_rec_low_cpos(next))
1366 return 1;
1367
1368 return 0;
1369}
1370
1371static int cmp_refcount_rec_by_low_cpos(const void *a, const void *b)
1372{
1373 const struct ocfs2_refcount_rec *l = a, *r = b;
1374 u32 l_cpos = ocfs2_get_ref_rec_low_cpos(l);
1375 u32 r_cpos = ocfs2_get_ref_rec_low_cpos(r);
1376
1377 if (l_cpos > r_cpos)
1378 return 1;
1379 if (l_cpos < r_cpos)
1380 return -1;
1381 return 0;
1382}
1383
1384static int cmp_refcount_rec_by_cpos(const void *a, const void *b)
1385{
1386 const struct ocfs2_refcount_rec *l = a, *r = b;
1387 u64 l_cpos = le64_to_cpu(l->r_cpos);
1388 u64 r_cpos = le64_to_cpu(r->r_cpos);
1389
1390 if (l_cpos > r_cpos)
1391 return 1;
1392 if (l_cpos < r_cpos)
1393 return -1;
1394 return 0;
1395}
1396
1397static void swap_refcount_rec(void *a, void *b, int size)
1398{
1399 struct ocfs2_refcount_rec *l = a, *r = b, tmp;
1400
1401 tmp = *(struct ocfs2_refcount_rec *)l;
1402 *(struct ocfs2_refcount_rec *)l =
1403 *(struct ocfs2_refcount_rec *)r;
1404 *(struct ocfs2_refcount_rec *)r = tmp;
1405}
1406
1407/*
1408 * The refcount cpos are ordered by their 64bit cpos,
1409 * But we will use the low 32 bit to be the e_cpos in the b-tree.
1410 * So we need to make sure that this pos isn't intersected with others.
1411 *
1412 * Note: The refcount block is already sorted by their low 32 bit cpos,
1413 * So just try the middle pos first, and we will exit when we find
1414 * the good position.
1415 */
1416static int ocfs2_find_refcount_split_pos(struct ocfs2_refcount_list *rl,
1417 u32 *split_pos, int *split_index)
1418{
1419 int num_used = le16_to_cpu(rl->rl_used);
1420 int delta, middle = num_used / 2;
1421
1422 for (delta = 0; delta < middle; delta++) {
1423 /* Let's check delta earlier than middle */
1424 if (ocfs2_refcount_rec_no_intersect(
1425 &rl->rl_recs[middle - delta - 1],
1426 &rl->rl_recs[middle - delta])) {
1427 *split_index = middle - delta;
1428 break;
1429 }
1430
1431 /* For even counts, don't walk off the end */
1432 if ((middle + delta + 1) == num_used)
1433 continue;
1434
1435 /* Now try delta past middle */
1436 if (ocfs2_refcount_rec_no_intersect(
1437 &rl->rl_recs[middle + delta],
1438 &rl->rl_recs[middle + delta + 1])) {
1439 *split_index = middle + delta + 1;
1440 break;
1441 }
1442 }
1443
1444 if (delta >= middle)
1445 return -ENOSPC;
1446
1447 *split_pos = ocfs2_get_ref_rec_low_cpos(&rl->rl_recs[*split_index]);
1448 return 0;
1449}
1450
1451static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh,
1452 struct buffer_head *new_bh,
1453 u32 *split_cpos)
1454{
1455 int split_index = 0, num_moved, ret;
1456 u32 cpos = 0;
1457 struct ocfs2_refcount_block *rb =
1458 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1459 struct ocfs2_refcount_list *rl = &rb->rf_records;
1460 struct ocfs2_refcount_block *new_rb =
1461 (struct ocfs2_refcount_block *)new_bh->b_data;
1462 struct ocfs2_refcount_list *new_rl = &new_rb->rf_records;
1463
1464 mlog(0, "split old leaf refcount block %llu, count = %u, used = %u\n",
1465 (unsigned long long)ref_leaf_bh->b_blocknr,
1466 le32_to_cpu(rl->rl_count), le32_to_cpu(rl->rl_used));
1467
1468 /*
1469 * XXX: Improvement later.
1470 * If we know all the high 32 bit cpos is the same, no need to sort.
1471 *
1472 * In order to make the whole process safe, we do:
1473 * 1. sort the entries by their low 32 bit cpos first so that we can
1474 * find the split cpos easily.
1475 * 2. call ocfs2_insert_extent to insert the new refcount block.
1476 * 3. move the refcount rec to the new block.
1477 * 4. sort the entries by their 64 bit cpos.
1478 * 5. dirty the new_rb and rb.
1479 */
1480 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1481 sizeof(struct ocfs2_refcount_rec),
1482 cmp_refcount_rec_by_low_cpos, swap_refcount_rec);
1483
1484 ret = ocfs2_find_refcount_split_pos(rl, &cpos, &split_index);
1485 if (ret) {
1486 mlog_errno(ret);
1487 return ret;
1488 }
1489
1490 new_rb->rf_cpos = cpu_to_le32(cpos);
1491
1492 /* move refcount records starting from split_index to the new block. */
1493 num_moved = le16_to_cpu(rl->rl_used) - split_index;
1494 memcpy(new_rl->rl_recs, &rl->rl_recs[split_index],
1495 num_moved * sizeof(struct ocfs2_refcount_rec));
1496
1497 /*ok, remove the entries we just moved over to the other block. */
1498 memset(&rl->rl_recs[split_index], 0,
1499 num_moved * sizeof(struct ocfs2_refcount_rec));
1500
1501 /* change old and new rl_used accordingly. */
1502 le16_add_cpu(&rl->rl_used, -num_moved);
Tao Ma12d4cec2009-11-30 15:08:40 +08001503 new_rl->rl_used = cpu_to_le16(num_moved);
Tao Mae73a8192009-08-11 14:33:14 +08001504
1505 sort(&rl->rl_recs, le16_to_cpu(rl->rl_used),
1506 sizeof(struct ocfs2_refcount_rec),
1507 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1508
1509 sort(&new_rl->rl_recs, le16_to_cpu(new_rl->rl_used),
1510 sizeof(struct ocfs2_refcount_rec),
1511 cmp_refcount_rec_by_cpos, swap_refcount_rec);
1512
1513 *split_cpos = cpos;
1514 return 0;
1515}
1516
1517static int ocfs2_new_leaf_refcount_block(handle_t *handle,
1518 struct ocfs2_caching_info *ci,
1519 struct buffer_head *ref_root_bh,
1520 struct buffer_head *ref_leaf_bh,
1521 struct ocfs2_alloc_context *meta_ac)
1522{
1523 int ret;
1524 u16 suballoc_bit_start;
1525 u32 num_got, new_cpos;
1526 u64 blkno;
1527 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
1528 struct ocfs2_refcount_block *root_rb =
1529 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1530 struct buffer_head *new_bh = NULL;
1531 struct ocfs2_refcount_block *new_rb;
1532 struct ocfs2_extent_tree ref_et;
1533
1534 BUG_ON(!(le32_to_cpu(root_rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL));
1535
1536 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
1537 OCFS2_JOURNAL_ACCESS_WRITE);
1538 if (ret) {
1539 mlog_errno(ret);
1540 goto out;
1541 }
1542
1543 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1544 OCFS2_JOURNAL_ACCESS_WRITE);
1545 if (ret) {
1546 mlog_errno(ret);
1547 goto out;
1548 }
1549
1550 ret = ocfs2_claim_metadata(OCFS2_SB(sb), handle, meta_ac, 1,
1551 &suballoc_bit_start, &num_got,
1552 &blkno);
1553 if (ret) {
1554 mlog_errno(ret);
1555 goto out;
1556 }
1557
1558 new_bh = sb_getblk(sb, blkno);
1559 if (new_bh == NULL) {
1560 ret = -EIO;
1561 mlog_errno(ret);
1562 goto out;
1563 }
1564 ocfs2_set_new_buffer_uptodate(ci, new_bh);
1565
1566 ret = ocfs2_journal_access_rb(handle, ci, new_bh,
1567 OCFS2_JOURNAL_ACCESS_CREATE);
1568 if (ret) {
1569 mlog_errno(ret);
1570 goto out;
1571 }
1572
1573 /* Initialize ocfs2_refcount_block. */
1574 new_rb = (struct ocfs2_refcount_block *)new_bh->b_data;
1575 memset(new_rb, 0, sb->s_blocksize);
1576 strcpy((void *)new_rb, OCFS2_REFCOUNT_BLOCK_SIGNATURE);
Tiger Yangb89c5422010-01-25 14:11:06 +08001577 new_rb->rf_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
Tao Mae73a8192009-08-11 14:33:14 +08001578 new_rb->rf_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1579 new_rb->rf_fs_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
1580 new_rb->rf_blkno = cpu_to_le64(blkno);
1581 new_rb->rf_parent = cpu_to_le64(ref_root_bh->b_blocknr);
1582 new_rb->rf_flags = cpu_to_le32(OCFS2_REFCOUNT_LEAF_FL);
1583 new_rb->rf_records.rl_count =
1584 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
1585 new_rb->rf_generation = root_rb->rf_generation;
1586
1587 ret = ocfs2_divide_leaf_refcount_block(ref_leaf_bh, new_bh, &new_cpos);
1588 if (ret) {
1589 mlog_errno(ret);
1590 goto out;
1591 }
1592
1593 ocfs2_journal_dirty(handle, ref_leaf_bh);
1594 ocfs2_journal_dirty(handle, new_bh);
1595
1596 ocfs2_init_refcount_extent_tree(&ref_et, ci, ref_root_bh);
1597
1598 mlog(0, "insert new leaf block %llu at %u\n",
1599 (unsigned long long)new_bh->b_blocknr, new_cpos);
1600
1601 /* Insert the new leaf block with the specific offset cpos. */
1602 ret = ocfs2_insert_extent(handle, &ref_et, new_cpos, new_bh->b_blocknr,
1603 1, 0, meta_ac);
1604 if (ret)
1605 mlog_errno(ret);
1606
1607out:
1608 brelse(new_bh);
1609 return ret;
1610}
1611
1612static int ocfs2_expand_refcount_tree(handle_t *handle,
1613 struct ocfs2_caching_info *ci,
1614 struct buffer_head *ref_root_bh,
1615 struct buffer_head *ref_leaf_bh,
1616 struct ocfs2_alloc_context *meta_ac)
1617{
1618 int ret;
1619 struct buffer_head *expand_bh = NULL;
1620
1621 if (ref_root_bh == ref_leaf_bh) {
1622 /*
1623 * the old root bh hasn't been expanded to a b-tree,
1624 * so expand it first.
1625 */
1626 ret = ocfs2_expand_inline_ref_root(handle, ci, ref_root_bh,
1627 &expand_bh, meta_ac);
1628 if (ret) {
1629 mlog_errno(ret);
1630 goto out;
1631 }
1632 } else {
1633 expand_bh = ref_leaf_bh;
1634 get_bh(expand_bh);
1635 }
1636
1637
1638 /* Now add a new refcount block into the tree.*/
1639 ret = ocfs2_new_leaf_refcount_block(handle, ci, ref_root_bh,
1640 expand_bh, meta_ac);
1641 if (ret)
1642 mlog_errno(ret);
1643out:
1644 brelse(expand_bh);
1645 return ret;
1646}
1647
1648/*
1649 * Adjust the extent rec in b-tree representing ref_leaf_bh.
1650 *
1651 * Only called when we have inserted a new refcount rec at index 0
1652 * which means ocfs2_extent_rec.e_cpos may need some change.
1653 */
1654static int ocfs2_adjust_refcount_rec(handle_t *handle,
1655 struct ocfs2_caching_info *ci,
1656 struct buffer_head *ref_root_bh,
1657 struct buffer_head *ref_leaf_bh,
1658 struct ocfs2_refcount_rec *rec)
1659{
1660 int ret = 0, i;
1661 u32 new_cpos, old_cpos;
1662 struct ocfs2_path *path = NULL;
1663 struct ocfs2_extent_tree et;
1664 struct ocfs2_refcount_block *rb =
1665 (struct ocfs2_refcount_block *)ref_root_bh->b_data;
1666 struct ocfs2_extent_list *el;
1667
1668 if (!(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL))
1669 goto out;
1670
1671 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1672 old_cpos = le32_to_cpu(rb->rf_cpos);
1673 new_cpos = le64_to_cpu(rec->r_cpos) & OCFS2_32BIT_POS_MASK;
1674 if (old_cpos <= new_cpos)
1675 goto out;
1676
1677 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
1678
1679 path = ocfs2_new_path_from_et(&et);
1680 if (!path) {
1681 ret = -ENOMEM;
1682 mlog_errno(ret);
1683 goto out;
1684 }
1685
1686 ret = ocfs2_find_path(ci, path, old_cpos);
1687 if (ret) {
1688 mlog_errno(ret);
1689 goto out;
1690 }
1691
1692 /*
1693 * 2 more credits, one for the leaf refcount block, one for
1694 * the extent block contains the extent rec.
1695 */
Tao Mac901fb02010-04-26 14:34:57 +08001696 ret = ocfs2_extend_trans(handle, 2);
Tao Mae73a8192009-08-11 14:33:14 +08001697 if (ret < 0) {
1698 mlog_errno(ret);
1699 goto out;
1700 }
1701
1702 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1703 OCFS2_JOURNAL_ACCESS_WRITE);
1704 if (ret < 0) {
1705 mlog_errno(ret);
1706 goto out;
1707 }
1708
1709 ret = ocfs2_journal_access_eb(handle, ci, path_leaf_bh(path),
1710 OCFS2_JOURNAL_ACCESS_WRITE);
1711 if (ret < 0) {
1712 mlog_errno(ret);
1713 goto out;
1714 }
1715
1716 /* change the leaf extent block first. */
1717 el = path_leaf_el(path);
1718
1719 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++)
1720 if (le32_to_cpu(el->l_recs[i].e_cpos) == old_cpos)
1721 break;
1722
1723 BUG_ON(i == le16_to_cpu(el->l_next_free_rec));
1724
1725 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
1726
1727 /* change the r_cpos in the leaf block. */
1728 rb->rf_cpos = cpu_to_le32(new_cpos);
1729
1730 ocfs2_journal_dirty(handle, path_leaf_bh(path));
1731 ocfs2_journal_dirty(handle, ref_leaf_bh);
1732
1733out:
1734 ocfs2_free_path(path);
1735 return ret;
1736}
1737
1738static int ocfs2_insert_refcount_rec(handle_t *handle,
1739 struct ocfs2_caching_info *ci,
1740 struct buffer_head *ref_root_bh,
1741 struct buffer_head *ref_leaf_bh,
1742 struct ocfs2_refcount_rec *rec,
Tao Ma7540c1a2009-08-18 11:44:03 +08001743 int index, int merge,
Tao Mae73a8192009-08-11 14:33:14 +08001744 struct ocfs2_alloc_context *meta_ac)
1745{
1746 int ret;
1747 struct ocfs2_refcount_block *rb =
1748 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1749 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1750 struct buffer_head *new_bh = NULL;
1751
1752 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1753
1754 if (rf_list->rl_used == rf_list->rl_count) {
1755 u64 cpos = le64_to_cpu(rec->r_cpos);
1756 u32 len = le32_to_cpu(rec->r_clusters);
1757
1758 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1759 ref_leaf_bh, meta_ac);
1760 if (ret) {
1761 mlog_errno(ret);
1762 goto out;
1763 }
1764
1765 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1766 cpos, len, NULL, &index,
1767 &new_bh);
1768 if (ret) {
1769 mlog_errno(ret);
1770 goto out;
1771 }
1772
1773 ref_leaf_bh = new_bh;
1774 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1775 rf_list = &rb->rf_records;
1776 }
1777
1778 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1779 OCFS2_JOURNAL_ACCESS_WRITE);
1780 if (ret) {
1781 mlog_errno(ret);
1782 goto out;
1783 }
1784
1785 if (index < le16_to_cpu(rf_list->rl_used))
1786 memmove(&rf_list->rl_recs[index + 1],
1787 &rf_list->rl_recs[index],
1788 (le16_to_cpu(rf_list->rl_used) - index) *
1789 sizeof(struct ocfs2_refcount_rec));
1790
1791 mlog(0, "insert refcount record start %llu, len %u, count %u "
1792 "to leaf block %llu at index %d\n",
1793 (unsigned long long)le64_to_cpu(rec->r_cpos),
1794 le32_to_cpu(rec->r_clusters), le32_to_cpu(rec->r_refcount),
1795 (unsigned long long)ref_leaf_bh->b_blocknr, index);
1796
1797 rf_list->rl_recs[index] = *rec;
1798
1799 le16_add_cpu(&rf_list->rl_used, 1);
1800
Tao Ma7540c1a2009-08-18 11:44:03 +08001801 if (merge)
1802 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001803
Joel Beckerec20cec2010-03-19 14:13:52 -07001804 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001805
1806 if (index == 0) {
1807 ret = ocfs2_adjust_refcount_rec(handle, ci,
1808 ref_root_bh,
1809 ref_leaf_bh, rec);
1810 if (ret)
1811 mlog_errno(ret);
1812 }
1813out:
1814 brelse(new_bh);
1815 return ret;
1816}
1817
1818/*
1819 * Split the refcount_rec indexed by "index" in ref_leaf_bh.
1820 * This is much simple than our b-tree code.
1821 * split_rec is the new refcount rec we want to insert.
1822 * If split_rec->r_refcount > 0, we are changing the refcount(in case we
1823 * increase refcount or decrease a refcount to non-zero).
1824 * If split_rec->r_refcount == 0, we are punching a hole in current refcount
1825 * rec( in case we decrease a refcount to zero).
1826 */
1827static int ocfs2_split_refcount_rec(handle_t *handle,
1828 struct ocfs2_caching_info *ci,
1829 struct buffer_head *ref_root_bh,
1830 struct buffer_head *ref_leaf_bh,
1831 struct ocfs2_refcount_rec *split_rec,
Tao Ma7540c1a2009-08-18 11:44:03 +08001832 int index, int merge,
Tao Mae73a8192009-08-11 14:33:14 +08001833 struct ocfs2_alloc_context *meta_ac,
1834 struct ocfs2_cached_dealloc_ctxt *dealloc)
1835{
1836 int ret, recs_need;
1837 u32 len;
1838 struct ocfs2_refcount_block *rb =
1839 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1840 struct ocfs2_refcount_list *rf_list = &rb->rf_records;
1841 struct ocfs2_refcount_rec *orig_rec = &rf_list->rl_recs[index];
1842 struct ocfs2_refcount_rec *tail_rec = NULL;
1843 struct buffer_head *new_bh = NULL;
1844
1845 BUG_ON(le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL);
1846
1847 mlog(0, "original r_pos %llu, cluster %u, split %llu, cluster %u\n",
1848 le64_to_cpu(orig_rec->r_cpos), le32_to_cpu(orig_rec->r_clusters),
1849 le64_to_cpu(split_rec->r_cpos),
1850 le32_to_cpu(split_rec->r_clusters));
1851
1852 /*
1853 * If we just need to split the header or tail clusters,
1854 * no more recs are needed, just split is OK.
1855 * Otherwise we at least need one new recs.
1856 */
1857 if (!split_rec->r_refcount &&
1858 (split_rec->r_cpos == orig_rec->r_cpos ||
1859 le64_to_cpu(split_rec->r_cpos) +
1860 le32_to_cpu(split_rec->r_clusters) ==
1861 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1862 recs_need = 0;
1863 else
1864 recs_need = 1;
1865
1866 /*
1867 * We need one more rec if we split in the middle and the new rec have
1868 * some refcount in it.
1869 */
1870 if (split_rec->r_refcount &&
1871 (split_rec->r_cpos != orig_rec->r_cpos &&
1872 le64_to_cpu(split_rec->r_cpos) +
1873 le32_to_cpu(split_rec->r_clusters) !=
1874 le64_to_cpu(orig_rec->r_cpos) + le32_to_cpu(orig_rec->r_clusters)))
1875 recs_need++;
1876
1877 /* If the leaf block don't have enough record, expand it. */
Tao Ma12d4cec2009-11-30 15:08:40 +08001878 if (le16_to_cpu(rf_list->rl_used) + recs_need >
1879 le16_to_cpu(rf_list->rl_count)) {
Tao Mae73a8192009-08-11 14:33:14 +08001880 struct ocfs2_refcount_rec tmp_rec;
1881 u64 cpos = le64_to_cpu(orig_rec->r_cpos);
1882 len = le32_to_cpu(orig_rec->r_clusters);
1883 ret = ocfs2_expand_refcount_tree(handle, ci, ref_root_bh,
1884 ref_leaf_bh, meta_ac);
1885 if (ret) {
1886 mlog_errno(ret);
1887 goto out;
1888 }
1889
1890 /*
1891 * We have to re-get it since now cpos may be moved to
1892 * another leaf block.
1893 */
1894 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
1895 cpos, len, &tmp_rec, &index,
1896 &new_bh);
1897 if (ret) {
1898 mlog_errno(ret);
1899 goto out;
1900 }
1901
1902 ref_leaf_bh = new_bh;
1903 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
1904 rf_list = &rb->rf_records;
1905 orig_rec = &rf_list->rl_recs[index];
1906 }
1907
1908 ret = ocfs2_journal_access_rb(handle, ci, ref_leaf_bh,
1909 OCFS2_JOURNAL_ACCESS_WRITE);
1910 if (ret) {
1911 mlog_errno(ret);
1912 goto out;
1913 }
1914
1915 /*
1916 * We have calculated out how many new records we need and store
1917 * in recs_need, so spare enough space first by moving the records
1918 * after "index" to the end.
1919 */
1920 if (index != le16_to_cpu(rf_list->rl_used) - 1)
1921 memmove(&rf_list->rl_recs[index + 1 + recs_need],
1922 &rf_list->rl_recs[index + 1],
1923 (le16_to_cpu(rf_list->rl_used) - index - 1) *
1924 sizeof(struct ocfs2_refcount_rec));
1925
1926 len = (le64_to_cpu(orig_rec->r_cpos) +
1927 le32_to_cpu(orig_rec->r_clusters)) -
1928 (le64_to_cpu(split_rec->r_cpos) +
1929 le32_to_cpu(split_rec->r_clusters));
1930
1931 /*
1932 * If we have "len", the we will split in the tail and move it
1933 * to the end of the space we have just spared.
1934 */
1935 if (len) {
1936 tail_rec = &rf_list->rl_recs[index + recs_need];
1937
1938 memcpy(tail_rec, orig_rec, sizeof(struct ocfs2_refcount_rec));
1939 le64_add_cpu(&tail_rec->r_cpos,
1940 le32_to_cpu(tail_rec->r_clusters) - len);
Tao Ma12d4cec2009-11-30 15:08:40 +08001941 tail_rec->r_clusters = cpu_to_le32(len);
Tao Mae73a8192009-08-11 14:33:14 +08001942 }
1943
1944 /*
1945 * If the split pos isn't the same as the original one, we need to
1946 * split in the head.
1947 *
1948 * Note: We have the chance that split_rec.r_refcount = 0,
1949 * recs_need = 0 and len > 0, which means we just cut the head from
1950 * the orig_rec and in that case we have done some modification in
1951 * orig_rec above, so the check for r_cpos is faked.
1952 */
1953 if (split_rec->r_cpos != orig_rec->r_cpos && tail_rec != orig_rec) {
1954 len = le64_to_cpu(split_rec->r_cpos) -
1955 le64_to_cpu(orig_rec->r_cpos);
1956 orig_rec->r_clusters = cpu_to_le32(len);
1957 index++;
1958 }
1959
1960 le16_add_cpu(&rf_list->rl_used, recs_need);
1961
1962 if (split_rec->r_refcount) {
1963 rf_list->rl_recs[index] = *split_rec;
1964 mlog(0, "insert refcount record start %llu, len %u, count %u "
1965 "to leaf block %llu at index %d\n",
1966 (unsigned long long)le64_to_cpu(split_rec->r_cpos),
1967 le32_to_cpu(split_rec->r_clusters),
1968 le32_to_cpu(split_rec->r_refcount),
1969 (unsigned long long)ref_leaf_bh->b_blocknr, index);
1970
Tao Ma7540c1a2009-08-18 11:44:03 +08001971 if (merge)
1972 ocfs2_refcount_rec_merge(rb, index);
Tao Mae73a8192009-08-11 14:33:14 +08001973 }
1974
Joel Beckerec20cec2010-03-19 14:13:52 -07001975 ocfs2_journal_dirty(handle, ref_leaf_bh);
Tao Mae73a8192009-08-11 14:33:14 +08001976
1977out:
1978 brelse(new_bh);
1979 return ret;
1980}
1981
Tao Ma7540c1a2009-08-18 11:44:03 +08001982static int __ocfs2_increase_refcount(handle_t *handle,
1983 struct ocfs2_caching_info *ci,
1984 struct buffer_head *ref_root_bh,
1985 u64 cpos, u32 len, int merge,
1986 struct ocfs2_alloc_context *meta_ac,
1987 struct ocfs2_cached_dealloc_ctxt *dealloc)
Tao Mae73a8192009-08-11 14:33:14 +08001988{
1989 int ret = 0, index;
1990 struct buffer_head *ref_leaf_bh = NULL;
1991 struct ocfs2_refcount_rec rec;
1992 unsigned int set_len = 0;
1993
1994 mlog(0, "Tree owner %llu, add refcount start %llu, len %u\n",
1995 (unsigned long long)ocfs2_metadata_cache_owner(ci),
1996 (unsigned long long)cpos, len);
1997
1998 while (len) {
1999 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2000 cpos, len, &rec, &index,
2001 &ref_leaf_bh);
2002 if (ret) {
2003 mlog_errno(ret);
2004 goto out;
2005 }
2006
2007 set_len = le32_to_cpu(rec.r_clusters);
2008
2009 /*
2010 * Here we may meet with 3 situations:
2011 *
2012 * 1. If we find an already existing record, and the length
2013 * is the same, cool, we just need to increase the r_refcount
2014 * and it is OK.
2015 * 2. If we find a hole, just insert it with r_refcount = 1.
2016 * 3. If we are in the middle of one extent record, split
2017 * it.
2018 */
2019 if (rec.r_refcount && le64_to_cpu(rec.r_cpos) == cpos &&
2020 set_len <= len) {
2021 mlog(0, "increase refcount rec, start %llu, len %u, "
2022 "count %u\n", (unsigned long long)cpos, set_len,
2023 le32_to_cpu(rec.r_refcount));
2024 ret = ocfs2_change_refcount_rec(handle, ci,
Tao Ma7540c1a2009-08-18 11:44:03 +08002025 ref_leaf_bh, index,
2026 merge, 1);
Tao Mae73a8192009-08-11 14:33:14 +08002027 if (ret) {
2028 mlog_errno(ret);
2029 goto out;
2030 }
2031 } else if (!rec.r_refcount) {
2032 rec.r_refcount = cpu_to_le32(1);
2033
2034 mlog(0, "insert refcount rec, start %llu, len %u\n",
2035 (unsigned long long)le64_to_cpu(rec.r_cpos),
2036 set_len);
2037 ret = ocfs2_insert_refcount_rec(handle, ci, ref_root_bh,
2038 ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002039 &rec, index,
2040 merge, meta_ac);
Tao Mae73a8192009-08-11 14:33:14 +08002041 if (ret) {
2042 mlog_errno(ret);
2043 goto out;
2044 }
2045 } else {
2046 set_len = min((u64)(cpos + len),
2047 le64_to_cpu(rec.r_cpos) + set_len) - cpos;
2048 rec.r_cpos = cpu_to_le64(cpos);
2049 rec.r_clusters = cpu_to_le32(set_len);
2050 le32_add_cpu(&rec.r_refcount, 1);
2051
2052 mlog(0, "split refcount rec, start %llu, "
2053 "len %u, count %u\n",
2054 (unsigned long long)le64_to_cpu(rec.r_cpos),
2055 set_len, le32_to_cpu(rec.r_refcount));
2056 ret = ocfs2_split_refcount_rec(handle, ci,
2057 ref_root_bh, ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002058 &rec, index, merge,
Tao Mae73a8192009-08-11 14:33:14 +08002059 meta_ac, dealloc);
2060 if (ret) {
2061 mlog_errno(ret);
2062 goto out;
2063 }
2064 }
2065
2066 cpos += set_len;
2067 len -= set_len;
2068 brelse(ref_leaf_bh);
2069 ref_leaf_bh = NULL;
2070 }
2071
2072out:
2073 brelse(ref_leaf_bh);
2074 return ret;
2075}
Tao Ma1823cb02009-08-18 11:24:49 +08002076
2077static int ocfs2_remove_refcount_extent(handle_t *handle,
2078 struct ocfs2_caching_info *ci,
2079 struct buffer_head *ref_root_bh,
2080 struct buffer_head *ref_leaf_bh,
2081 struct ocfs2_alloc_context *meta_ac,
2082 struct ocfs2_cached_dealloc_ctxt *dealloc)
2083{
2084 int ret;
2085 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2086 struct ocfs2_refcount_block *rb =
2087 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2088 struct ocfs2_extent_tree et;
2089
2090 BUG_ON(rb->rf_records.rl_used);
2091
2092 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2093 ret = ocfs2_remove_extent(handle, &et, le32_to_cpu(rb->rf_cpos),
2094 1, meta_ac, dealloc);
2095 if (ret) {
2096 mlog_errno(ret);
2097 goto out;
2098 }
2099
2100 ocfs2_remove_from_cache(ci, ref_leaf_bh);
2101
2102 /*
2103 * add the freed block to the dealloc so that it will be freed
2104 * when we run dealloc.
2105 */
2106 ret = ocfs2_cache_block_dealloc(dealloc, EXTENT_ALLOC_SYSTEM_INODE,
2107 le16_to_cpu(rb->rf_suballoc_slot),
2108 le64_to_cpu(rb->rf_blkno),
2109 le16_to_cpu(rb->rf_suballoc_bit));
2110 if (ret) {
2111 mlog_errno(ret);
2112 goto out;
2113 }
2114
2115 ret = ocfs2_journal_access_rb(handle, ci, ref_root_bh,
2116 OCFS2_JOURNAL_ACCESS_WRITE);
2117 if (ret) {
2118 mlog_errno(ret);
2119 goto out;
2120 }
2121
2122 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2123
2124 le32_add_cpu(&rb->rf_clusters, -1);
2125
2126 /*
2127 * check whether we need to restore the root refcount block if
2128 * there is no leaf extent block at atll.
2129 */
2130 if (!rb->rf_list.l_next_free_rec) {
2131 BUG_ON(rb->rf_clusters);
2132
2133 mlog(0, "reset refcount tree root %llu to be a record block.\n",
2134 (unsigned long long)ref_root_bh->b_blocknr);
2135
2136 rb->rf_flags = 0;
2137 rb->rf_parent = 0;
2138 rb->rf_cpos = 0;
2139 memset(&rb->rf_records, 0, sb->s_blocksize -
2140 offsetof(struct ocfs2_refcount_block, rf_records));
2141 rb->rf_records.rl_count =
2142 cpu_to_le16(ocfs2_refcount_recs_per_rb(sb));
2143 }
2144
2145 ocfs2_journal_dirty(handle, ref_root_bh);
2146
2147out:
2148 return ret;
2149}
2150
Tao Ma7540c1a2009-08-18 11:44:03 +08002151int ocfs2_increase_refcount(handle_t *handle,
2152 struct ocfs2_caching_info *ci,
2153 struct buffer_head *ref_root_bh,
2154 u64 cpos, u32 len,
2155 struct ocfs2_alloc_context *meta_ac,
2156 struct ocfs2_cached_dealloc_ctxt *dealloc)
2157{
2158 return __ocfs2_increase_refcount(handle, ci, ref_root_bh,
2159 cpos, len, 1,
2160 meta_ac, dealloc);
2161}
2162
Tao Ma1823cb02009-08-18 11:24:49 +08002163static int ocfs2_decrease_refcount_rec(handle_t *handle,
2164 struct ocfs2_caching_info *ci,
2165 struct buffer_head *ref_root_bh,
2166 struct buffer_head *ref_leaf_bh,
2167 int index, u64 cpos, unsigned int len,
2168 struct ocfs2_alloc_context *meta_ac,
2169 struct ocfs2_cached_dealloc_ctxt *dealloc)
2170{
2171 int ret;
2172 struct ocfs2_refcount_block *rb =
2173 (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2174 struct ocfs2_refcount_rec *rec = &rb->rf_records.rl_recs[index];
2175
2176 BUG_ON(cpos < le64_to_cpu(rec->r_cpos));
2177 BUG_ON(cpos + len >
2178 le64_to_cpu(rec->r_cpos) + le32_to_cpu(rec->r_clusters));
2179
2180 if (cpos == le64_to_cpu(rec->r_cpos) &&
2181 len == le32_to_cpu(rec->r_clusters))
2182 ret = ocfs2_change_refcount_rec(handle, ci,
Tao Ma7540c1a2009-08-18 11:44:03 +08002183 ref_leaf_bh, index, 1, -1);
Tao Ma1823cb02009-08-18 11:24:49 +08002184 else {
2185 struct ocfs2_refcount_rec split = *rec;
2186 split.r_cpos = cpu_to_le64(cpos);
2187 split.r_clusters = cpu_to_le32(len);
2188
2189 le32_add_cpu(&split.r_refcount, -1);
2190
2191 mlog(0, "split refcount rec, start %llu, "
2192 "len %u, count %u, original start %llu, len %u\n",
2193 (unsigned long long)le64_to_cpu(split.r_cpos),
2194 len, le32_to_cpu(split.r_refcount),
2195 (unsigned long long)le64_to_cpu(rec->r_cpos),
2196 le32_to_cpu(rec->r_clusters));
2197 ret = ocfs2_split_refcount_rec(handle, ci,
2198 ref_root_bh, ref_leaf_bh,
Tao Ma7540c1a2009-08-18 11:44:03 +08002199 &split, index, 1,
Tao Ma1823cb02009-08-18 11:24:49 +08002200 meta_ac, dealloc);
2201 }
2202
2203 if (ret) {
2204 mlog_errno(ret);
2205 goto out;
2206 }
2207
2208 /* Remove the leaf refcount block if it contains no refcount record. */
2209 if (!rb->rf_records.rl_used && ref_leaf_bh != ref_root_bh) {
2210 ret = ocfs2_remove_refcount_extent(handle, ci, ref_root_bh,
2211 ref_leaf_bh, meta_ac,
2212 dealloc);
2213 if (ret)
2214 mlog_errno(ret);
2215 }
2216
2217out:
2218 return ret;
2219}
2220
2221static int __ocfs2_decrease_refcount(handle_t *handle,
2222 struct ocfs2_caching_info *ci,
2223 struct buffer_head *ref_root_bh,
2224 u64 cpos, u32 len,
2225 struct ocfs2_alloc_context *meta_ac,
Tao Ma6ae23c52009-08-18 11:30:55 +08002226 struct ocfs2_cached_dealloc_ctxt *dealloc,
2227 int delete)
Tao Ma1823cb02009-08-18 11:24:49 +08002228{
2229 int ret = 0, index = 0;
2230 struct ocfs2_refcount_rec rec;
2231 unsigned int r_count = 0, r_len;
2232 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2233 struct buffer_head *ref_leaf_bh = NULL;
2234
Tao Ma6ae23c52009-08-18 11:30:55 +08002235 mlog(0, "Tree owner %llu, decrease refcount start %llu, "
2236 "len %u, delete %u\n",
Tao Ma1823cb02009-08-18 11:24:49 +08002237 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Tao Ma6ae23c52009-08-18 11:30:55 +08002238 (unsigned long long)cpos, len, delete);
Tao Ma1823cb02009-08-18 11:24:49 +08002239
2240 while (len) {
2241 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2242 cpos, len, &rec, &index,
2243 &ref_leaf_bh);
2244 if (ret) {
2245 mlog_errno(ret);
2246 goto out;
2247 }
2248
2249 r_count = le32_to_cpu(rec.r_refcount);
2250 BUG_ON(r_count == 0);
Tao Ma6ae23c52009-08-18 11:30:55 +08002251 if (!delete)
2252 BUG_ON(r_count > 1);
Tao Ma1823cb02009-08-18 11:24:49 +08002253
2254 r_len = min((u64)(cpos + len), le64_to_cpu(rec.r_cpos) +
2255 le32_to_cpu(rec.r_clusters)) - cpos;
2256
2257 ret = ocfs2_decrease_refcount_rec(handle, ci, ref_root_bh,
2258 ref_leaf_bh, index,
2259 cpos, r_len,
2260 meta_ac, dealloc);
2261 if (ret) {
2262 mlog_errno(ret);
2263 goto out;
2264 }
2265
Tao Ma6ae23c52009-08-18 11:30:55 +08002266 if (le32_to_cpu(rec.r_refcount) == 1 && delete) {
Tao Ma1823cb02009-08-18 11:24:49 +08002267 ret = ocfs2_cache_cluster_dealloc(dealloc,
2268 ocfs2_clusters_to_blocks(sb, cpos),
2269 r_len);
2270 if (ret) {
2271 mlog_errno(ret);
2272 goto out;
2273 }
2274 }
2275
2276 cpos += r_len;
2277 len -= r_len;
2278 brelse(ref_leaf_bh);
2279 ref_leaf_bh = NULL;
2280 }
2281
2282out:
2283 brelse(ref_leaf_bh);
2284 return ret;
2285}
2286
2287/* Caller must hold refcount tree lock. */
2288int ocfs2_decrease_refcount(struct inode *inode,
2289 handle_t *handle, u32 cpos, u32 len,
2290 struct ocfs2_alloc_context *meta_ac,
Tao Ma6ae23c52009-08-18 11:30:55 +08002291 struct ocfs2_cached_dealloc_ctxt *dealloc,
2292 int delete)
Tao Ma1823cb02009-08-18 11:24:49 +08002293{
2294 int ret;
2295 u64 ref_blkno;
2296 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2297 struct buffer_head *ref_root_bh = NULL;
2298 struct ocfs2_refcount_tree *tree;
2299
2300 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2301
2302 ret = ocfs2_get_refcount_block(inode, &ref_blkno);
2303 if (ret) {
2304 mlog_errno(ret);
2305 goto out;
2306 }
2307
2308 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb), ref_blkno, &tree);
2309 if (ret) {
2310 mlog_errno(ret);
2311 goto out;
2312 }
2313
2314 ret = ocfs2_read_refcount_block(&tree->rf_ci, tree->rf_blkno,
2315 &ref_root_bh);
2316 if (ret) {
2317 mlog_errno(ret);
2318 goto out;
2319 }
2320
2321 ret = __ocfs2_decrease_refcount(handle, &tree->rf_ci, ref_root_bh,
Tao Ma6ae23c52009-08-18 11:30:55 +08002322 cpos, len, meta_ac, dealloc, delete);
Tao Ma1823cb02009-08-18 11:24:49 +08002323 if (ret)
2324 mlog_errno(ret);
2325out:
2326 brelse(ref_root_bh);
2327 return ret;
2328}
Tao Ma1aa75fe2009-08-18 11:28:39 +08002329
2330/*
2331 * Mark the already-existing extent at cpos as refcounted for len clusters.
2332 * This adds the refcount extent flag.
2333 *
2334 * If the existing extent is larger than the request, initiate a
2335 * split. An attempt will be made at merging with adjacent extents.
2336 *
2337 * The caller is responsible for passing down meta_ac if we'll need it.
2338 */
2339static int ocfs2_mark_extent_refcounted(struct inode *inode,
2340 struct ocfs2_extent_tree *et,
2341 handle_t *handle, u32 cpos,
2342 u32 len, u32 phys,
2343 struct ocfs2_alloc_context *meta_ac,
2344 struct ocfs2_cached_dealloc_ctxt *dealloc)
2345{
2346 int ret;
2347
2348 mlog(0, "Inode %lu refcount tree cpos %u, len %u, phys cluster %u\n",
2349 inode->i_ino, cpos, len, phys);
2350
2351 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2352 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2353 "tree, but the feature bit is not set in the "
2354 "super block.", inode->i_ino);
2355 ret = -EROFS;
2356 goto out;
2357 }
2358
2359 ret = ocfs2_change_extent_flag(handle, et, cpos,
2360 len, phys, meta_ac, dealloc,
2361 OCFS2_EXT_REFCOUNTED, 0);
2362 if (ret)
2363 mlog_errno(ret);
2364
2365out:
2366 return ret;
2367}
Tao Mabcbbb242009-08-18 11:29:12 +08002368
2369/*
2370 * Given some contiguous physical clusters, calculate what we need
2371 * for modifying their refcount.
2372 */
2373static int ocfs2_calc_refcount_meta_credits(struct super_block *sb,
2374 struct ocfs2_caching_info *ci,
2375 struct buffer_head *ref_root_bh,
2376 u64 start_cpos,
2377 u32 clusters,
2378 int *meta_add,
2379 int *credits)
2380{
2381 int ret = 0, index, ref_blocks = 0, recs_add = 0;
2382 u64 cpos = start_cpos;
2383 struct ocfs2_refcount_block *rb;
2384 struct ocfs2_refcount_rec rec;
2385 struct buffer_head *ref_leaf_bh = NULL, *prev_bh = NULL;
2386 u32 len;
2387
2388 mlog(0, "start_cpos %llu, clusters %u\n",
2389 (unsigned long long)start_cpos, clusters);
2390 while (clusters) {
2391 ret = ocfs2_get_refcount_rec(ci, ref_root_bh,
2392 cpos, clusters, &rec,
2393 &index, &ref_leaf_bh);
2394 if (ret) {
2395 mlog_errno(ret);
2396 goto out;
2397 }
2398
2399 if (ref_leaf_bh != prev_bh) {
2400 /*
2401 * Now we encounter a new leaf block, so calculate
2402 * whether we need to extend the old leaf.
2403 */
2404 if (prev_bh) {
2405 rb = (struct ocfs2_refcount_block *)
2406 prev_bh->b_data;
2407
2408 if (le64_to_cpu(rb->rf_records.rl_used) +
2409 recs_add >
2410 le16_to_cpu(rb->rf_records.rl_count))
2411 ref_blocks++;
2412 }
2413
2414 recs_add = 0;
2415 *credits += 1;
2416 brelse(prev_bh);
2417 prev_bh = ref_leaf_bh;
2418 get_bh(prev_bh);
2419 }
2420
2421 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
2422
2423 mlog(0, "recs_add %d,cpos %llu, clusters %u, rec->r_cpos %llu,"
2424 "rec->r_clusters %u, rec->r_refcount %u, index %d\n",
2425 recs_add, (unsigned long long)cpos, clusters,
2426 (unsigned long long)le64_to_cpu(rec.r_cpos),
2427 le32_to_cpu(rec.r_clusters),
2428 le32_to_cpu(rec.r_refcount), index);
2429
2430 len = min((u64)cpos + clusters, le64_to_cpu(rec.r_cpos) +
2431 le32_to_cpu(rec.r_clusters)) - cpos;
2432 /*
2433 * If the refcount rec already exist, cool. We just need
2434 * to check whether there is a split. Otherwise we just need
2435 * to increase the refcount.
2436 * If we will insert one, increases recs_add.
2437 *
2438 * We record all the records which will be inserted to the
2439 * same refcount block, so that we can tell exactly whether
2440 * we need a new refcount block or not.
2441 */
2442 if (rec.r_refcount) {
2443 /* Check whether we need a split at the beginning. */
2444 if (cpos == start_cpos &&
2445 cpos != le64_to_cpu(rec.r_cpos))
2446 recs_add++;
2447
2448 /* Check whether we need a split in the end. */
2449 if (cpos + clusters < le64_to_cpu(rec.r_cpos) +
2450 le32_to_cpu(rec.r_clusters))
2451 recs_add++;
2452 } else
2453 recs_add++;
2454
2455 brelse(ref_leaf_bh);
2456 ref_leaf_bh = NULL;
2457 clusters -= len;
2458 cpos += len;
2459 }
2460
2461 if (prev_bh) {
2462 rb = (struct ocfs2_refcount_block *)prev_bh->b_data;
2463
2464 if (le64_to_cpu(rb->rf_records.rl_used) + recs_add >
2465 le16_to_cpu(rb->rf_records.rl_count))
2466 ref_blocks++;
2467
2468 *credits += 1;
2469 }
2470
2471 if (!ref_blocks)
2472 goto out;
2473
2474 mlog(0, "we need ref_blocks %d\n", ref_blocks);
2475 *meta_add += ref_blocks;
2476 *credits += ref_blocks;
2477
2478 /*
2479 * So we may need ref_blocks to insert into the tree.
2480 * That also means we need to change the b-tree and add that number
2481 * of records since we never merge them.
2482 * We need one more block for expansion since the new created leaf
2483 * block is also full and needs split.
2484 */
2485 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
2486 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL) {
2487 struct ocfs2_extent_tree et;
2488
2489 ocfs2_init_refcount_extent_tree(&et, ci, ref_root_bh);
2490 *meta_add += ocfs2_extend_meta_needed(et.et_root_el);
2491 *credits += ocfs2_calc_extend_credits(sb,
2492 et.et_root_el,
2493 ref_blocks);
2494 } else {
2495 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
2496 *meta_add += 1;
2497 }
2498
2499out:
2500 brelse(ref_leaf_bh);
2501 brelse(prev_bh);
2502 return ret;
2503}
2504
2505/*
2506 * For refcount tree, we will decrease some contiguous clusters
2507 * refcount count, so just go through it to see how many blocks
2508 * we gonna touch and whether we need to create new blocks.
2509 *
2510 * Normally the refcount blocks store these refcount should be
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002511 * contiguous also, so that we can get the number easily.
Tristan Ye78f94672010-05-11 17:54:42 +08002512 * We will at most add split 2 refcount records and 2 more
2513 * refcount blocks, so just check it in a rough way.
Tao Mabcbbb242009-08-18 11:29:12 +08002514 *
2515 * Caller must hold refcount tree lock.
2516 */
2517int ocfs2_prepare_refcount_change_for_del(struct inode *inode,
Tristan Ye78f94672010-05-11 17:54:42 +08002518 u64 refcount_loc,
Tao Mabcbbb242009-08-18 11:29:12 +08002519 u64 phys_blkno,
2520 u32 clusters,
2521 int *credits,
Tristan Ye78f94672010-05-11 17:54:42 +08002522 int *ref_blocks)
Tao Mabcbbb242009-08-18 11:29:12 +08002523{
Tristan Ye78f94672010-05-11 17:54:42 +08002524 int ret;
Tao Mabcbbb242009-08-18 11:29:12 +08002525 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2526 struct buffer_head *ref_root_bh = NULL;
2527 struct ocfs2_refcount_tree *tree;
2528 u64 start_cpos = ocfs2_blocks_to_clusters(inode->i_sb, phys_blkno);
2529
2530 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
2531 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
2532 "tree, but the feature bit is not set in the "
2533 "super block.", inode->i_ino);
2534 ret = -EROFS;
2535 goto out;
2536 }
2537
2538 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
2539
2540 ret = ocfs2_get_refcount_tree(OCFS2_SB(inode->i_sb),
Tristan Ye78f94672010-05-11 17:54:42 +08002541 refcount_loc, &tree);
Tao Mabcbbb242009-08-18 11:29:12 +08002542 if (ret) {
2543 mlog_errno(ret);
2544 goto out;
2545 }
2546
Tristan Ye78f94672010-05-11 17:54:42 +08002547 ret = ocfs2_read_refcount_block(&tree->rf_ci, refcount_loc,
Tao Mabcbbb242009-08-18 11:29:12 +08002548 &ref_root_bh);
2549 if (ret) {
2550 mlog_errno(ret);
2551 goto out;
2552 }
2553
2554 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
2555 &tree->rf_ci,
2556 ref_root_bh,
2557 start_cpos, clusters,
Tristan Ye78f94672010-05-11 17:54:42 +08002558 ref_blocks, credits);
Tao Mabcbbb242009-08-18 11:29:12 +08002559 if (ret) {
2560 mlog_errno(ret);
2561 goto out;
2562 }
2563
Tristan Ye78f94672010-05-11 17:54:42 +08002564 mlog(0, "reserve new metadata %d blocks, credits = %d\n",
2565 *ref_blocks, *credits);
Tao Mabcbbb242009-08-18 11:29:12 +08002566
2567out:
2568 brelse(ref_root_bh);
2569 return ret;
2570}
Tao Ma6f70fa52009-08-25 08:05:12 +08002571
2572#define MAX_CONTIG_BYTES 1048576
2573
2574static inline unsigned int ocfs2_cow_contig_clusters(struct super_block *sb)
2575{
2576 return ocfs2_clusters_for_bytes(sb, MAX_CONTIG_BYTES);
2577}
2578
2579static inline unsigned int ocfs2_cow_contig_mask(struct super_block *sb)
2580{
2581 return ~(ocfs2_cow_contig_clusters(sb) - 1);
2582}
2583
2584/*
2585 * Given an extent that starts at 'start' and an I/O that starts at 'cpos',
2586 * find an offset (start + (n * contig_clusters)) that is closest to cpos
2587 * while still being less than or equal to it.
2588 *
2589 * The goal is to break the extent at a multiple of contig_clusters.
2590 */
2591static inline unsigned int ocfs2_cow_align_start(struct super_block *sb,
2592 unsigned int start,
2593 unsigned int cpos)
2594{
2595 BUG_ON(start > cpos);
2596
2597 return start + ((cpos - start) & ocfs2_cow_contig_mask(sb));
2598}
2599
2600/*
2601 * Given a cluster count of len, pad it out so that it is a multiple
2602 * of contig_clusters.
2603 */
2604static inline unsigned int ocfs2_cow_align_length(struct super_block *sb,
2605 unsigned int len)
2606{
2607 unsigned int padded =
2608 (len + (ocfs2_cow_contig_clusters(sb) - 1)) &
2609 ocfs2_cow_contig_mask(sb);
2610
2611 /* Did we wrap? */
2612 if (padded < len)
2613 padded = UINT_MAX;
2614
2615 return padded;
2616}
2617
2618/*
2619 * Calculate out the start and number of virtual clusters we need to to CoW.
2620 *
2621 * cpos is vitual start cluster position we want to do CoW in a
2622 * file and write_len is the cluster length.
Tao Ma37f8a2b2009-08-26 09:47:28 +08002623 * max_cpos is the place where we want to stop CoW intentionally.
Tao Ma6f70fa52009-08-25 08:05:12 +08002624 *
2625 * Normal we will start CoW from the beginning of extent record cotaining cpos.
2626 * We try to break up extents on boundaries of MAX_CONTIG_BYTES so that we
2627 * get good I/O from the resulting extent tree.
2628 */
2629static int ocfs2_refcount_cal_cow_clusters(struct inode *inode,
Tao Ma913580b2009-08-24 14:31:03 +08002630 struct ocfs2_extent_list *el,
Tao Ma6f70fa52009-08-25 08:05:12 +08002631 u32 cpos,
2632 u32 write_len,
Tao Ma37f8a2b2009-08-26 09:47:28 +08002633 u32 max_cpos,
Tao Ma6f70fa52009-08-25 08:05:12 +08002634 u32 *cow_start,
2635 u32 *cow_len)
2636{
2637 int ret = 0;
Tao Ma6f70fa52009-08-25 08:05:12 +08002638 int tree_height = le16_to_cpu(el->l_tree_depth), i;
2639 struct buffer_head *eb_bh = NULL;
2640 struct ocfs2_extent_block *eb = NULL;
2641 struct ocfs2_extent_rec *rec;
2642 unsigned int want_clusters, rec_end = 0;
2643 int contig_clusters = ocfs2_cow_contig_clusters(inode->i_sb);
2644 int leaf_clusters;
2645
Tao Ma37f8a2b2009-08-26 09:47:28 +08002646 BUG_ON(cpos + write_len > max_cpos);
2647
Tao Ma6f70fa52009-08-25 08:05:12 +08002648 if (tree_height > 0) {
2649 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, cpos, &eb_bh);
2650 if (ret) {
2651 mlog_errno(ret);
2652 goto out;
2653 }
2654
2655 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2656 el = &eb->h_list;
2657
2658 if (el->l_tree_depth) {
2659 ocfs2_error(inode->i_sb,
2660 "Inode %lu has non zero tree depth in "
2661 "leaf block %llu\n", inode->i_ino,
2662 (unsigned long long)eb_bh->b_blocknr);
2663 ret = -EROFS;
2664 goto out;
2665 }
2666 }
2667
2668 *cow_len = 0;
2669 for (i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
2670 rec = &el->l_recs[i];
2671
2672 if (ocfs2_is_empty_extent(rec)) {
2673 mlog_bug_on_msg(i != 0, "Inode %lu has empty record in "
2674 "index %d\n", inode->i_ino, i);
2675 continue;
2676 }
2677
2678 if (le32_to_cpu(rec->e_cpos) +
2679 le16_to_cpu(rec->e_leaf_clusters) <= cpos)
2680 continue;
2681
2682 if (*cow_len == 0) {
2683 /*
2684 * We should find a refcounted record in the
2685 * first pass.
2686 */
2687 BUG_ON(!(rec->e_flags & OCFS2_EXT_REFCOUNTED));
2688 *cow_start = le32_to_cpu(rec->e_cpos);
2689 }
2690
2691 /*
Tao Ma37f8a2b2009-08-26 09:47:28 +08002692 * If we encounter a hole, a non-refcounted record or
2693 * pass the max_cpos, stop the search.
Tao Ma6f70fa52009-08-25 08:05:12 +08002694 */
2695 if ((!(rec->e_flags & OCFS2_EXT_REFCOUNTED)) ||
Tao Ma37f8a2b2009-08-26 09:47:28 +08002696 (*cow_len && rec_end != le32_to_cpu(rec->e_cpos)) ||
2697 (max_cpos <= le32_to_cpu(rec->e_cpos)))
Tao Ma6f70fa52009-08-25 08:05:12 +08002698 break;
2699
2700 leaf_clusters = le16_to_cpu(rec->e_leaf_clusters);
2701 rec_end = le32_to_cpu(rec->e_cpos) + leaf_clusters;
Tao Ma37f8a2b2009-08-26 09:47:28 +08002702 if (rec_end > max_cpos) {
2703 rec_end = max_cpos;
2704 leaf_clusters = rec_end - le32_to_cpu(rec->e_cpos);
2705 }
Tao Ma6f70fa52009-08-25 08:05:12 +08002706
2707 /*
2708 * How many clusters do we actually need from
2709 * this extent? First we see how many we actually
2710 * need to complete the write. If that's smaller
2711 * than contig_clusters, we try for contig_clusters.
2712 */
2713 if (!*cow_len)
2714 want_clusters = write_len;
2715 else
2716 want_clusters = (cpos + write_len) -
2717 (*cow_start + *cow_len);
2718 if (want_clusters < contig_clusters)
2719 want_clusters = contig_clusters;
2720
2721 /*
2722 * If the write does not cover the whole extent, we
2723 * need to calculate how we're going to split the extent.
2724 * We try to do it on contig_clusters boundaries.
2725 *
2726 * Any extent smaller than contig_clusters will be
2727 * CoWed in its entirety.
2728 */
2729 if (leaf_clusters <= contig_clusters)
2730 *cow_len += leaf_clusters;
2731 else if (*cow_len || (*cow_start == cpos)) {
2732 /*
2733 * This extent needs to be CoW'd from its
2734 * beginning, so all we have to do is compute
2735 * how many clusters to grab. We align
2736 * want_clusters to the edge of contig_clusters
2737 * to get better I/O.
2738 */
2739 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2740 want_clusters);
2741
2742 if (leaf_clusters < want_clusters)
2743 *cow_len += leaf_clusters;
2744 else
2745 *cow_len += want_clusters;
2746 } else if ((*cow_start + contig_clusters) >=
2747 (cpos + write_len)) {
2748 /*
2749 * Breaking off contig_clusters at the front
2750 * of the extent will cover our write. That's
2751 * easy.
2752 */
2753 *cow_len = contig_clusters;
2754 } else if ((rec_end - cpos) <= contig_clusters) {
2755 /*
2756 * Breaking off contig_clusters at the tail of
2757 * this extent will cover cpos.
2758 */
2759 *cow_start = rec_end - contig_clusters;
2760 *cow_len = contig_clusters;
2761 } else if ((rec_end - cpos) <= want_clusters) {
2762 /*
2763 * While we can't fit the entire write in this
2764 * extent, we know that the write goes from cpos
2765 * to the end of the extent. Break that off.
2766 * We try to break it at some multiple of
2767 * contig_clusters from the front of the extent.
2768 * Failing that (ie, cpos is within
2769 * contig_clusters of the front), we'll CoW the
2770 * entire extent.
2771 */
2772 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2773 *cow_start, cpos);
2774 *cow_len = rec_end - *cow_start;
2775 } else {
2776 /*
2777 * Ok, the entire write lives in the middle of
2778 * this extent. Let's try to slice the extent up
2779 * nicely. Optimally, our CoW region starts at
2780 * m*contig_clusters from the beginning of the
2781 * extent and goes for n*contig_clusters,
2782 * covering the entire write.
2783 */
2784 *cow_start = ocfs2_cow_align_start(inode->i_sb,
2785 *cow_start, cpos);
2786
2787 want_clusters = (cpos + write_len) - *cow_start;
2788 want_clusters = ocfs2_cow_align_length(inode->i_sb,
2789 want_clusters);
2790 if (*cow_start + want_clusters <= rec_end)
2791 *cow_len = want_clusters;
2792 else
2793 *cow_len = rec_end - *cow_start;
2794 }
2795
2796 /* Have we covered our entire write yet? */
2797 if ((*cow_start + *cow_len) >= (cpos + write_len))
2798 break;
2799
2800 /*
2801 * If we reach the end of the extent block and don't get enough
2802 * clusters, continue with the next extent block if possible.
2803 */
2804 if (i + 1 == le16_to_cpu(el->l_next_free_rec) &&
2805 eb && eb->h_next_leaf_blk) {
2806 brelse(eb_bh);
2807 eb_bh = NULL;
2808
2809 ret = ocfs2_read_extent_block(INODE_CACHE(inode),
2810 le64_to_cpu(eb->h_next_leaf_blk),
2811 &eb_bh);
2812 if (ret) {
2813 mlog_errno(ret);
2814 goto out;
2815 }
2816
2817 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2818 el = &eb->h_list;
2819 i = -1;
2820 }
2821 }
2822
2823out:
2824 brelse(eb_bh);
2825 return ret;
2826}
2827
2828/*
2829 * Prepare meta_ac, data_ac and calculate credits when we want to add some
2830 * num_clusters in data_tree "et" and change the refcount for the old
2831 * clusters(starting form p_cluster) in the refcount tree.
2832 *
2833 * Note:
2834 * 1. since we may split the old tree, so we at most will need num_clusters + 2
2835 * more new leaf records.
2836 * 2. In some case, we may not need to reserve new clusters(e.g, reflink), so
2837 * just give data_ac = NULL.
2838 */
2839static int ocfs2_lock_refcount_allocators(struct super_block *sb,
2840 u32 p_cluster, u32 num_clusters,
2841 struct ocfs2_extent_tree *et,
2842 struct ocfs2_caching_info *ref_ci,
2843 struct buffer_head *ref_root_bh,
2844 struct ocfs2_alloc_context **meta_ac,
2845 struct ocfs2_alloc_context **data_ac,
2846 int *credits)
2847{
2848 int ret = 0, meta_add = 0;
2849 int num_free_extents = ocfs2_num_free_extents(OCFS2_SB(sb), et);
2850
2851 if (num_free_extents < 0) {
2852 ret = num_free_extents;
2853 mlog_errno(ret);
2854 goto out;
2855 }
2856
2857 if (num_free_extents < num_clusters + 2)
2858 meta_add =
2859 ocfs2_extend_meta_needed(et->et_root_el);
2860
2861 *credits += ocfs2_calc_extend_credits(sb, et->et_root_el,
2862 num_clusters + 2);
2863
2864 ret = ocfs2_calc_refcount_meta_credits(sb, ref_ci, ref_root_bh,
2865 p_cluster, num_clusters,
2866 &meta_add, credits);
2867 if (ret) {
2868 mlog_errno(ret);
2869 goto out;
2870 }
2871
2872 mlog(0, "reserve new metadata %d, clusters %u, credits = %d\n",
2873 meta_add, num_clusters, *credits);
2874 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(sb), meta_add,
2875 meta_ac);
2876 if (ret) {
2877 mlog_errno(ret);
2878 goto out;
2879 }
2880
2881 if (data_ac) {
2882 ret = ocfs2_reserve_clusters(OCFS2_SB(sb), num_clusters,
2883 data_ac);
2884 if (ret)
2885 mlog_errno(ret);
2886 }
2887
2888out:
2889 if (ret) {
2890 if (*meta_ac) {
2891 ocfs2_free_alloc_context(*meta_ac);
2892 *meta_ac = NULL;
2893 }
2894 }
2895
2896 return ret;
2897}
2898
2899static int ocfs2_clear_cow_buffer(handle_t *handle, struct buffer_head *bh)
2900{
2901 BUG_ON(buffer_dirty(bh));
2902
2903 clear_buffer_mapped(bh);
2904
2905 return 0;
2906}
2907
Tao Ma913580b2009-08-24 14:31:03 +08002908static int ocfs2_duplicate_clusters_by_page(handle_t *handle,
2909 struct ocfs2_cow_context *context,
2910 u32 cpos, u32 old_cluster,
2911 u32 new_cluster, u32 new_len)
Tao Ma6f70fa52009-08-25 08:05:12 +08002912{
2913 int ret = 0, partial;
Tao Ma913580b2009-08-24 14:31:03 +08002914 struct ocfs2_caching_info *ci = context->data_et.et_ci;
Tao Ma6f70fa52009-08-25 08:05:12 +08002915 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
2916 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
2917 struct page *page;
2918 pgoff_t page_index;
2919 unsigned int from, to;
2920 loff_t offset, end, map_end;
2921 struct address_space *mapping = context->inode->i_mapping;
2922
2923 mlog(0, "old_cluster %u, new %u, len %u at offset %u\n", old_cluster,
2924 new_cluster, new_len, cpos);
2925
2926 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
2927 end = offset + (new_len << OCFS2_SB(sb)->s_clustersize_bits);
2928
2929 while (offset < end) {
2930 page_index = offset >> PAGE_CACHE_SHIFT;
Tao Mad622b892010-01-30 23:32:19 +08002931 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
Tao Ma6f70fa52009-08-25 08:05:12 +08002932 if (map_end > end)
2933 map_end = end;
2934
2935 /* from, to is the offset within the page. */
2936 from = offset & (PAGE_CACHE_SIZE - 1);
2937 to = PAGE_CACHE_SIZE;
2938 if (map_end & (PAGE_CACHE_SIZE - 1))
2939 to = map_end & (PAGE_CACHE_SIZE - 1);
2940
2941 page = grab_cache_page(mapping, page_index);
2942
Tao Ma0a1ea432010-02-01 17:05:33 +08002943 /*
2944 * In case PAGE_CACHE_SIZE <= CLUSTER_SIZE, This page
2945 * can't be dirtied before we CoW it out.
2946 */
2947 if (PAGE_CACHE_SIZE <= OCFS2_SB(sb)->s_clustersize)
2948 BUG_ON(PageDirty(page));
Tao Ma6f70fa52009-08-25 08:05:12 +08002949
2950 if (!PageUptodate(page)) {
2951 ret = block_read_full_page(page, ocfs2_get_block);
2952 if (ret) {
2953 mlog_errno(ret);
2954 goto unlock;
2955 }
2956 lock_page(page);
2957 }
2958
2959 if (page_has_buffers(page)) {
2960 ret = walk_page_buffers(handle, page_buffers(page),
2961 from, to, &partial,
2962 ocfs2_clear_cow_buffer);
2963 if (ret) {
2964 mlog_errno(ret);
2965 goto unlock;
2966 }
2967 }
2968
2969 ocfs2_map_and_dirty_page(context->inode,
2970 handle, from, to,
2971 page, 0, &new_block);
2972 mark_page_accessed(page);
2973unlock:
2974 unlock_page(page);
2975 page_cache_release(page);
2976 page = NULL;
2977 offset = map_end;
2978 if (ret)
2979 break;
2980 }
2981
2982 return ret;
2983}
2984
Tao Ma492a8a32009-08-18 11:43:17 +08002985static int ocfs2_duplicate_clusters_by_jbd(handle_t *handle,
2986 struct ocfs2_cow_context *context,
2987 u32 cpos, u32 old_cluster,
2988 u32 new_cluster, u32 new_len)
2989{
2990 int ret = 0;
2991 struct super_block *sb = context->inode->i_sb;
2992 struct ocfs2_caching_info *ci = context->data_et.et_ci;
2993 int i, blocks = ocfs2_clusters_to_blocks(sb, new_len);
2994 u64 old_block = ocfs2_clusters_to_blocks(sb, old_cluster);
2995 u64 new_block = ocfs2_clusters_to_blocks(sb, new_cluster);
2996 struct ocfs2_super *osb = OCFS2_SB(sb);
2997 struct buffer_head *old_bh = NULL;
2998 struct buffer_head *new_bh = NULL;
2999
3000 mlog(0, "old_cluster %u, new %u, len %u\n", old_cluster,
3001 new_cluster, new_len);
3002
3003 for (i = 0; i < blocks; i++, old_block++, new_block++) {
3004 new_bh = sb_getblk(osb->sb, new_block);
3005 if (new_bh == NULL) {
3006 ret = -EIO;
3007 mlog_errno(ret);
3008 break;
3009 }
3010
3011 ocfs2_set_new_buffer_uptodate(ci, new_bh);
3012
3013 ret = ocfs2_read_block(ci, old_block, &old_bh, NULL);
3014 if (ret) {
3015 mlog_errno(ret);
3016 break;
3017 }
3018
3019 ret = ocfs2_journal_access(handle, ci, new_bh,
3020 OCFS2_JOURNAL_ACCESS_CREATE);
3021 if (ret) {
3022 mlog_errno(ret);
3023 break;
3024 }
3025
3026 memcpy(new_bh->b_data, old_bh->b_data, sb->s_blocksize);
Joel Beckerec20cec2010-03-19 14:13:52 -07003027 ocfs2_journal_dirty(handle, new_bh);
Tao Ma492a8a32009-08-18 11:43:17 +08003028
3029 brelse(new_bh);
3030 brelse(old_bh);
3031 new_bh = NULL;
3032 old_bh = NULL;
3033 }
3034
3035 brelse(new_bh);
3036 brelse(old_bh);
3037 return ret;
3038}
3039
Tao Ma6f70fa52009-08-25 08:05:12 +08003040static int ocfs2_clear_ext_refcount(handle_t *handle,
3041 struct ocfs2_extent_tree *et,
3042 u32 cpos, u32 p_cluster, u32 len,
3043 unsigned int ext_flags,
3044 struct ocfs2_alloc_context *meta_ac,
3045 struct ocfs2_cached_dealloc_ctxt *dealloc)
3046{
3047 int ret, index;
3048 struct ocfs2_extent_rec replace_rec;
3049 struct ocfs2_path *path = NULL;
3050 struct ocfs2_extent_list *el;
3051 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
3052 u64 ino = ocfs2_metadata_cache_owner(et->et_ci);
3053
3054 mlog(0, "inode %llu cpos %u, len %u, p_cluster %u, ext_flags %u\n",
3055 (unsigned long long)ino, cpos, len, p_cluster, ext_flags);
3056
3057 memset(&replace_rec, 0, sizeof(replace_rec));
3058 replace_rec.e_cpos = cpu_to_le32(cpos);
3059 replace_rec.e_leaf_clusters = cpu_to_le16(len);
3060 replace_rec.e_blkno = cpu_to_le64(ocfs2_clusters_to_blocks(sb,
3061 p_cluster));
3062 replace_rec.e_flags = ext_flags;
3063 replace_rec.e_flags &= ~OCFS2_EXT_REFCOUNTED;
3064
3065 path = ocfs2_new_path_from_et(et);
3066 if (!path) {
3067 ret = -ENOMEM;
3068 mlog_errno(ret);
3069 goto out;
3070 }
3071
3072 ret = ocfs2_find_path(et->et_ci, path, cpos);
3073 if (ret) {
3074 mlog_errno(ret);
3075 goto out;
3076 }
3077
3078 el = path_leaf_el(path);
3079
3080 index = ocfs2_search_extent_list(el, cpos);
3081 if (index == -1 || index >= le16_to_cpu(el->l_next_free_rec)) {
3082 ocfs2_error(sb,
3083 "Inode %llu has an extent at cpos %u which can no "
3084 "longer be found.\n",
3085 (unsigned long long)ino, cpos);
3086 ret = -EROFS;
3087 goto out;
3088 }
3089
3090 ret = ocfs2_split_extent(handle, et, path, index,
3091 &replace_rec, meta_ac, dealloc);
3092 if (ret)
3093 mlog_errno(ret);
3094
3095out:
3096 ocfs2_free_path(path);
3097 return ret;
3098}
3099
3100static int ocfs2_replace_clusters(handle_t *handle,
3101 struct ocfs2_cow_context *context,
3102 u32 cpos, u32 old,
3103 u32 new, u32 len,
3104 unsigned int ext_flags)
3105{
3106 int ret;
Tao Ma913580b2009-08-24 14:31:03 +08003107 struct ocfs2_caching_info *ci = context->data_et.et_ci;
Tao Ma6f70fa52009-08-25 08:05:12 +08003108 u64 ino = ocfs2_metadata_cache_owner(ci);
3109
3110 mlog(0, "inode %llu, cpos %u, old %u, new %u, len %u, ext_flags %u\n",
3111 (unsigned long long)ino, cpos, old, new, len, ext_flags);
3112
3113 /*If the old clusters is unwritten, no need to duplicate. */
3114 if (!(ext_flags & OCFS2_EXT_UNWRITTEN)) {
Tao Ma913580b2009-08-24 14:31:03 +08003115 ret = context->cow_duplicate_clusters(handle, context, cpos,
3116 old, new, len);
Tao Ma6f70fa52009-08-25 08:05:12 +08003117 if (ret) {
3118 mlog_errno(ret);
3119 goto out;
3120 }
3121 }
3122
Tao Ma913580b2009-08-24 14:31:03 +08003123 ret = ocfs2_clear_ext_refcount(handle, &context->data_et,
Tao Ma6f70fa52009-08-25 08:05:12 +08003124 cpos, new, len, ext_flags,
3125 context->meta_ac, &context->dealloc);
3126 if (ret)
3127 mlog_errno(ret);
3128out:
3129 return ret;
3130}
3131
3132static int ocfs2_cow_sync_writeback(struct super_block *sb,
3133 struct ocfs2_cow_context *context,
3134 u32 cpos, u32 num_clusters)
3135{
3136 int ret = 0;
3137 loff_t offset, end, map_end;
3138 pgoff_t page_index;
3139 struct page *page;
3140
3141 if (ocfs2_should_order_data(context->inode))
3142 return 0;
3143
3144 offset = ((loff_t)cpos) << OCFS2_SB(sb)->s_clustersize_bits;
3145 end = offset + (num_clusters << OCFS2_SB(sb)->s_clustersize_bits);
3146
3147 ret = filemap_fdatawrite_range(context->inode->i_mapping,
3148 offset, end - 1);
3149 if (ret < 0) {
3150 mlog_errno(ret);
3151 return ret;
3152 }
3153
3154 while (offset < end) {
3155 page_index = offset >> PAGE_CACHE_SHIFT;
Tao Mad622b892010-01-30 23:32:19 +08003156 map_end = ((loff_t)page_index + 1) << PAGE_CACHE_SHIFT;
Tao Ma6f70fa52009-08-25 08:05:12 +08003157 if (map_end > end)
3158 map_end = end;
3159
3160 page = grab_cache_page(context->inode->i_mapping, page_index);
3161 BUG_ON(!page);
3162
3163 wait_on_page_writeback(page);
3164 if (PageError(page)) {
3165 ret = -EIO;
3166 mlog_errno(ret);
3167 } else
3168 mark_page_accessed(page);
3169
3170 unlock_page(page);
3171 page_cache_release(page);
3172 page = NULL;
3173 offset = map_end;
3174 if (ret)
3175 break;
3176 }
3177
3178 return ret;
3179}
3180
Tao Ma913580b2009-08-24 14:31:03 +08003181static int ocfs2_di_get_clusters(struct ocfs2_cow_context *context,
3182 u32 v_cluster, u32 *p_cluster,
3183 u32 *num_clusters,
3184 unsigned int *extent_flags)
3185{
3186 return ocfs2_get_clusters(context->inode, v_cluster, p_cluster,
3187 num_clusters, extent_flags);
3188}
3189
Tao Ma6f70fa52009-08-25 08:05:12 +08003190static int ocfs2_make_clusters_writable(struct super_block *sb,
3191 struct ocfs2_cow_context *context,
3192 u32 cpos, u32 p_cluster,
3193 u32 num_clusters, unsigned int e_flags)
3194{
Tao Ma6ae23c52009-08-18 11:30:55 +08003195 int ret, delete, index, credits = 0;
Tao Ma6f70fa52009-08-25 08:05:12 +08003196 u32 new_bit, new_len;
Tao Ma6ae23c52009-08-18 11:30:55 +08003197 unsigned int set_len;
Tao Ma6f70fa52009-08-25 08:05:12 +08003198 struct ocfs2_super *osb = OCFS2_SB(sb);
3199 handle_t *handle;
Tao Ma6ae23c52009-08-18 11:30:55 +08003200 struct buffer_head *ref_leaf_bh = NULL;
Tao Ma913580b2009-08-24 14:31:03 +08003201 struct ocfs2_caching_info *ref_ci = &context->ref_tree->rf_ci;
Tao Ma6ae23c52009-08-18 11:30:55 +08003202 struct ocfs2_refcount_rec rec;
3203
3204 mlog(0, "cpos %u, p_cluster %u, num_clusters %u, e_flags %u\n",
3205 cpos, p_cluster, num_clusters, e_flags);
Tao Ma6f70fa52009-08-25 08:05:12 +08003206
3207 ret = ocfs2_lock_refcount_allocators(sb, p_cluster, num_clusters,
Tao Ma913580b2009-08-24 14:31:03 +08003208 &context->data_et,
3209 ref_ci,
Tao Ma6f70fa52009-08-25 08:05:12 +08003210 context->ref_root_bh,
3211 &context->meta_ac,
3212 &context->data_ac, &credits);
3213 if (ret) {
3214 mlog_errno(ret);
3215 return ret;
3216 }
3217
Tao Ma492a8a32009-08-18 11:43:17 +08003218 if (context->post_refcount)
3219 credits += context->post_refcount->credits;
3220
3221 credits += context->extra_credits;
Tao Ma6f70fa52009-08-25 08:05:12 +08003222 handle = ocfs2_start_trans(osb, credits);
3223 if (IS_ERR(handle)) {
3224 ret = PTR_ERR(handle);
3225 mlog_errno(ret);
3226 goto out;
3227 }
3228
3229 while (num_clusters) {
Tao Ma913580b2009-08-24 14:31:03 +08003230 ret = ocfs2_get_refcount_rec(ref_ci, context->ref_root_bh,
Tao Ma6ae23c52009-08-18 11:30:55 +08003231 p_cluster, num_clusters,
3232 &rec, &index, &ref_leaf_bh);
Tao Ma6f70fa52009-08-25 08:05:12 +08003233 if (ret) {
3234 mlog_errno(ret);
3235 goto out_commit;
3236 }
3237
Tao Ma6ae23c52009-08-18 11:30:55 +08003238 BUG_ON(!rec.r_refcount);
3239 set_len = min((u64)p_cluster + num_clusters,
3240 le64_to_cpu(rec.r_cpos) +
3241 le32_to_cpu(rec.r_clusters)) - p_cluster;
3242
3243 /*
3244 * There are many different situation here.
3245 * 1. If refcount == 1, remove the flag and don't COW.
3246 * 2. If refcount > 1, allocate clusters.
3247 * Here we may not allocate r_len once at a time, so continue
3248 * until we reach num_clusters.
3249 */
3250 if (le32_to_cpu(rec.r_refcount) == 1) {
3251 delete = 0;
Tao Ma913580b2009-08-24 14:31:03 +08003252 ret = ocfs2_clear_ext_refcount(handle,
3253 &context->data_et,
Tao Ma6ae23c52009-08-18 11:30:55 +08003254 cpos, p_cluster,
3255 set_len, e_flags,
3256 context->meta_ac,
3257 &context->dealloc);
3258 if (ret) {
3259 mlog_errno(ret);
3260 goto out_commit;
3261 }
3262 } else {
3263 delete = 1;
3264
3265 ret = __ocfs2_claim_clusters(osb, handle,
3266 context->data_ac,
3267 1, set_len,
3268 &new_bit, &new_len);
3269 if (ret) {
3270 mlog_errno(ret);
3271 goto out_commit;
3272 }
3273
3274 ret = ocfs2_replace_clusters(handle, context,
3275 cpos, p_cluster, new_bit,
3276 new_len, e_flags);
3277 if (ret) {
3278 mlog_errno(ret);
3279 goto out_commit;
3280 }
3281 set_len = new_len;
3282 }
3283
Tao Ma913580b2009-08-24 14:31:03 +08003284 ret = __ocfs2_decrease_refcount(handle, ref_ci,
Tao Ma6ae23c52009-08-18 11:30:55 +08003285 context->ref_root_bh,
3286 p_cluster, set_len,
3287 context->meta_ac,
3288 &context->dealloc, delete);
Tao Ma6f70fa52009-08-25 08:05:12 +08003289 if (ret) {
3290 mlog_errno(ret);
3291 goto out_commit;
3292 }
3293
Tao Ma6ae23c52009-08-18 11:30:55 +08003294 cpos += set_len;
3295 p_cluster += set_len;
3296 num_clusters -= set_len;
3297 brelse(ref_leaf_bh);
3298 ref_leaf_bh = NULL;
Tao Ma6f70fa52009-08-25 08:05:12 +08003299 }
3300
Tao Ma492a8a32009-08-18 11:43:17 +08003301 /* handle any post_cow action. */
3302 if (context->post_refcount && context->post_refcount->func) {
3303 ret = context->post_refcount->func(context->inode, handle,
3304 context->post_refcount->para);
3305 if (ret) {
3306 mlog_errno(ret);
3307 goto out_commit;
3308 }
3309 }
3310
Tao Ma6f70fa52009-08-25 08:05:12 +08003311 /*
3312 * Here we should write the new page out first if we are
3313 * in write-back mode.
3314 */
Tao Ma492a8a32009-08-18 11:43:17 +08003315 if (context->get_clusters == ocfs2_di_get_clusters) {
3316 ret = ocfs2_cow_sync_writeback(sb, context, cpos, num_clusters);
3317 if (ret)
3318 mlog_errno(ret);
3319 }
Tao Ma6f70fa52009-08-25 08:05:12 +08003320
3321out_commit:
3322 ocfs2_commit_trans(osb, handle);
3323
3324out:
3325 if (context->data_ac) {
3326 ocfs2_free_alloc_context(context->data_ac);
3327 context->data_ac = NULL;
3328 }
3329 if (context->meta_ac) {
3330 ocfs2_free_alloc_context(context->meta_ac);
3331 context->meta_ac = NULL;
3332 }
Tao Ma6ae23c52009-08-18 11:30:55 +08003333 brelse(ref_leaf_bh);
Tao Ma6f70fa52009-08-25 08:05:12 +08003334
3335 return ret;
3336}
3337
Tao Ma913580b2009-08-24 14:31:03 +08003338static int ocfs2_replace_cow(struct ocfs2_cow_context *context)
Tao Ma6f70fa52009-08-25 08:05:12 +08003339{
3340 int ret = 0;
Tao Ma913580b2009-08-24 14:31:03 +08003341 struct inode *inode = context->inode;
3342 u32 cow_start = context->cow_start, cow_len = context->cow_len;
3343 u32 p_cluster, num_clusters;
Tao Ma6f70fa52009-08-25 08:05:12 +08003344 unsigned int ext_flags;
3345 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma6f70fa52009-08-25 08:05:12 +08003346
3347 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb))) {
3348 ocfs2_error(inode->i_sb, "Inode %lu want to use refcount "
3349 "tree, but the feature bit is not set in the "
3350 "super block.", inode->i_ino);
3351 return -EROFS;
3352 }
3353
Tao Ma6f70fa52009-08-25 08:05:12 +08003354 ocfs2_init_dealloc_ctxt(&context->dealloc);
Tao Ma6f70fa52009-08-25 08:05:12 +08003355
3356 while (cow_len) {
Tao Ma913580b2009-08-24 14:31:03 +08003357 ret = context->get_clusters(context, cow_start, &p_cluster,
3358 &num_clusters, &ext_flags);
Tao Ma6f70fa52009-08-25 08:05:12 +08003359 if (ret) {
3360 mlog_errno(ret);
3361 break;
3362 }
3363
3364 BUG_ON(!(ext_flags & OCFS2_EXT_REFCOUNTED));
3365
3366 if (cow_len < num_clusters)
3367 num_clusters = cow_len;
3368
3369 ret = ocfs2_make_clusters_writable(inode->i_sb, context,
3370 cow_start, p_cluster,
3371 num_clusters, ext_flags);
3372 if (ret) {
3373 mlog_errno(ret);
3374 break;
3375 }
3376
3377 cow_len -= num_clusters;
3378 cow_start += num_clusters;
3379 }
3380
Tao Ma6f70fa52009-08-25 08:05:12 +08003381 if (ocfs2_dealloc_has_cluster(&context->dealloc)) {
3382 ocfs2_schedule_truncate_log_flush(osb, 1);
3383 ocfs2_run_deallocs(osb, &context->dealloc);
3384 }
3385
Tao Ma6f70fa52009-08-25 08:05:12 +08003386 return ret;
3387}
3388
3389/*
Tao Ma37f8a2b2009-08-26 09:47:28 +08003390 * Starting at cpos, try to CoW write_len clusters. Don't CoW
3391 * past max_cpos. This will stop when it runs into a hole or an
3392 * unrefcounted extent.
Tao Ma6f70fa52009-08-25 08:05:12 +08003393 */
3394static int ocfs2_refcount_cow_hunk(struct inode *inode,
3395 struct buffer_head *di_bh,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003396 u32 cpos, u32 write_len, u32 max_cpos)
Tao Ma6f70fa52009-08-25 08:05:12 +08003397{
3398 int ret;
3399 u32 cow_start = 0, cow_len = 0;
3400 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3401 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3402 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3403 struct buffer_head *ref_root_bh = NULL;
3404 struct ocfs2_refcount_tree *ref_tree;
Tao Ma913580b2009-08-24 14:31:03 +08003405 struct ocfs2_cow_context *context = NULL;
Tao Ma6f70fa52009-08-25 08:05:12 +08003406
3407 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3408
Tao Ma913580b2009-08-24 14:31:03 +08003409 ret = ocfs2_refcount_cal_cow_clusters(inode, &di->id2.i_list,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003410 cpos, write_len, max_cpos,
Tao Ma6f70fa52009-08-25 08:05:12 +08003411 &cow_start, &cow_len);
3412 if (ret) {
3413 mlog_errno(ret);
3414 goto out;
3415 }
Tao Ma37f8a2b2009-08-26 09:47:28 +08003416
Tao Ma6f70fa52009-08-25 08:05:12 +08003417 mlog(0, "CoW inode %lu, cpos %u, write_len %u, cow_start %u, "
3418 "cow_len %u\n", inode->i_ino,
3419 cpos, write_len, cow_start, cow_len);
3420
3421 BUG_ON(cow_len == 0);
3422
Tao Ma913580b2009-08-24 14:31:03 +08003423 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3424 if (!context) {
3425 ret = -ENOMEM;
3426 mlog_errno(ret);
3427 goto out;
3428 }
3429
Tao Ma6f70fa52009-08-25 08:05:12 +08003430 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
3431 1, &ref_tree, &ref_root_bh);
3432 if (ret) {
3433 mlog_errno(ret);
3434 goto out;
3435 }
3436
Tao Ma913580b2009-08-24 14:31:03 +08003437 context->inode = inode;
3438 context->cow_start = cow_start;
3439 context->cow_len = cow_len;
3440 context->ref_tree = ref_tree;
3441 context->ref_root_bh = ref_root_bh;
3442 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_page;
3443 context->get_clusters = ocfs2_di_get_clusters;
3444
3445 ocfs2_init_dinode_extent_tree(&context->data_et,
3446 INODE_CACHE(inode), di_bh);
3447
3448 ret = ocfs2_replace_cow(context);
Tao Ma6f70fa52009-08-25 08:05:12 +08003449 if (ret)
3450 mlog_errno(ret);
3451
Tao Ma913580b2009-08-24 14:31:03 +08003452 /*
3453 * truncate the extent map here since no matter whether we meet with
3454 * any error during the action, we shouldn't trust cached extent map
3455 * any more.
3456 */
3457 ocfs2_extent_map_trunc(inode, cow_start);
3458
Tao Ma6f70fa52009-08-25 08:05:12 +08003459 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3460 brelse(ref_root_bh);
3461out:
Tao Ma913580b2009-08-24 14:31:03 +08003462 kfree(context);
Tao Ma6f70fa52009-08-25 08:05:12 +08003463 return ret;
3464}
3465
3466/*
3467 * CoW any and all clusters between cpos and cpos+write_len.
Tao Ma37f8a2b2009-08-26 09:47:28 +08003468 * Don't CoW past max_cpos. If this returns successfully, all
3469 * clusters between cpos and cpos+write_len are safe to modify.
Tao Ma6f70fa52009-08-25 08:05:12 +08003470 */
3471int ocfs2_refcount_cow(struct inode *inode,
3472 struct buffer_head *di_bh,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003473 u32 cpos, u32 write_len, u32 max_cpos)
Tao Ma6f70fa52009-08-25 08:05:12 +08003474{
3475 int ret = 0;
3476 u32 p_cluster, num_clusters;
3477 unsigned int ext_flags;
3478
3479 while (write_len) {
3480 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3481 &num_clusters, &ext_flags);
3482 if (ret) {
3483 mlog_errno(ret);
3484 break;
3485 }
3486
3487 if (write_len < num_clusters)
3488 num_clusters = write_len;
3489
3490 if (ext_flags & OCFS2_EXT_REFCOUNTED) {
3491 ret = ocfs2_refcount_cow_hunk(inode, di_bh, cpos,
Tao Ma37f8a2b2009-08-26 09:47:28 +08003492 num_clusters, max_cpos);
Tao Ma6f70fa52009-08-25 08:05:12 +08003493 if (ret) {
3494 mlog_errno(ret);
3495 break;
3496 }
3497 }
3498
3499 write_len -= num_clusters;
3500 cpos += num_clusters;
3501 }
3502
3503 return ret;
3504}
Tao Ma110a0452009-08-22 23:54:27 +08003505
Tao Ma492a8a32009-08-18 11:43:17 +08003506static int ocfs2_xattr_value_get_clusters(struct ocfs2_cow_context *context,
3507 u32 v_cluster, u32 *p_cluster,
3508 u32 *num_clusters,
3509 unsigned int *extent_flags)
3510{
3511 struct inode *inode = context->inode;
3512 struct ocfs2_xattr_value_root *xv = context->cow_object;
3513
3514 return ocfs2_xattr_get_clusters(inode, v_cluster, p_cluster,
3515 num_clusters, &xv->xr_list,
3516 extent_flags);
3517}
3518
3519/*
3520 * Given a xattr value root, calculate the most meta/credits we need for
3521 * refcount tree change if we truncate it to 0.
3522 */
3523int ocfs2_refcounted_xattr_delete_need(struct inode *inode,
3524 struct ocfs2_caching_info *ref_ci,
3525 struct buffer_head *ref_root_bh,
3526 struct ocfs2_xattr_value_root *xv,
3527 int *meta_add, int *credits)
3528{
3529 int ret = 0, index, ref_blocks = 0;
3530 u32 p_cluster, num_clusters;
3531 u32 cpos = 0, clusters = le32_to_cpu(xv->xr_clusters);
3532 struct ocfs2_refcount_block *rb;
3533 struct ocfs2_refcount_rec rec;
3534 struct buffer_head *ref_leaf_bh = NULL;
3535
3536 while (cpos < clusters) {
3537 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
3538 &num_clusters, &xv->xr_list,
3539 NULL);
3540 if (ret) {
3541 mlog_errno(ret);
3542 goto out;
3543 }
3544
3545 cpos += num_clusters;
3546
3547 while (num_clusters) {
3548 ret = ocfs2_get_refcount_rec(ref_ci, ref_root_bh,
3549 p_cluster, num_clusters,
3550 &rec, &index,
3551 &ref_leaf_bh);
3552 if (ret) {
3553 mlog_errno(ret);
3554 goto out;
3555 }
3556
3557 BUG_ON(!rec.r_refcount);
3558
3559 rb = (struct ocfs2_refcount_block *)ref_leaf_bh->b_data;
3560
3561 /*
3562 * We really don't know whether the other clusters is in
3563 * this refcount block or not, so just take the worst
3564 * case that all the clusters are in this block and each
3565 * one will split a refcount rec, so totally we need
3566 * clusters * 2 new refcount rec.
3567 */
3568 if (le64_to_cpu(rb->rf_records.rl_used) + clusters * 2 >
3569 le16_to_cpu(rb->rf_records.rl_count))
3570 ref_blocks++;
3571
3572 *credits += 1;
3573 brelse(ref_leaf_bh);
3574 ref_leaf_bh = NULL;
3575
3576 if (num_clusters <= le32_to_cpu(rec.r_clusters))
3577 break;
3578 else
3579 num_clusters -= le32_to_cpu(rec.r_clusters);
3580 p_cluster += num_clusters;
3581 }
3582 }
3583
3584 *meta_add += ref_blocks;
3585 if (!ref_blocks)
3586 goto out;
3587
3588 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
3589 if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
3590 *credits += OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
3591 else {
3592 struct ocfs2_extent_tree et;
3593
3594 ocfs2_init_refcount_extent_tree(&et, ref_ci, ref_root_bh);
3595 *credits += ocfs2_calc_extend_credits(inode->i_sb,
3596 et.et_root_el,
3597 ref_blocks);
3598 }
3599
3600out:
3601 brelse(ref_leaf_bh);
3602 return ret;
3603}
3604
3605/*
3606 * Do CoW for xattr.
3607 */
3608int ocfs2_refcount_cow_xattr(struct inode *inode,
3609 struct ocfs2_dinode *di,
3610 struct ocfs2_xattr_value_buf *vb,
3611 struct ocfs2_refcount_tree *ref_tree,
3612 struct buffer_head *ref_root_bh,
3613 u32 cpos, u32 write_len,
3614 struct ocfs2_post_refcount *post)
3615{
3616 int ret;
3617 struct ocfs2_xattr_value_root *xv = vb->vb_xv;
3618 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3619 struct ocfs2_cow_context *context = NULL;
3620 u32 cow_start, cow_len;
3621
3622 BUG_ON(!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL));
3623
3624 ret = ocfs2_refcount_cal_cow_clusters(inode, &xv->xr_list,
3625 cpos, write_len, UINT_MAX,
3626 &cow_start, &cow_len);
3627 if (ret) {
3628 mlog_errno(ret);
3629 goto out;
3630 }
3631
3632 BUG_ON(cow_len == 0);
3633
3634 context = kzalloc(sizeof(struct ocfs2_cow_context), GFP_NOFS);
3635 if (!context) {
3636 ret = -ENOMEM;
3637 mlog_errno(ret);
3638 goto out;
3639 }
3640
3641 context->inode = inode;
3642 context->cow_start = cow_start;
3643 context->cow_len = cow_len;
3644 context->ref_tree = ref_tree;
3645 context->ref_root_bh = ref_root_bh;;
3646 context->cow_object = xv;
3647
3648 context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_jbd;
3649 /* We need the extra credits for duplicate_clusters by jbd. */
3650 context->extra_credits =
3651 ocfs2_clusters_to_blocks(inode->i_sb, 1) * cow_len;
3652 context->get_clusters = ocfs2_xattr_value_get_clusters;
3653 context->post_refcount = post;
3654
3655 ocfs2_init_xattr_value_extent_tree(&context->data_et,
3656 INODE_CACHE(inode), vb);
3657
3658 ret = ocfs2_replace_cow(context);
3659 if (ret)
3660 mlog_errno(ret);
3661
3662out:
3663 kfree(context);
3664 return ret;
3665}
3666
Tao Ma110a0452009-08-22 23:54:27 +08003667/*
3668 * Insert a new extent into refcount tree and mark a extent rec
3669 * as refcounted in the dinode tree.
3670 */
3671int ocfs2_add_refcount_flag(struct inode *inode,
3672 struct ocfs2_extent_tree *data_et,
3673 struct ocfs2_caching_info *ref_ci,
3674 struct buffer_head *ref_root_bh,
3675 u32 cpos, u32 p_cluster, u32 num_clusters,
Tao Ma01292412009-09-21 13:04:19 +08003676 struct ocfs2_cached_dealloc_ctxt *dealloc,
3677 struct ocfs2_post_refcount *post)
Tao Ma110a0452009-08-22 23:54:27 +08003678{
3679 int ret;
3680 handle_t *handle;
3681 int credits = 1, ref_blocks = 0;
3682 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3683 struct ocfs2_alloc_context *meta_ac = NULL;
3684
3685 ret = ocfs2_calc_refcount_meta_credits(inode->i_sb,
3686 ref_ci, ref_root_bh,
3687 p_cluster, num_clusters,
3688 &ref_blocks, &credits);
3689 if (ret) {
3690 mlog_errno(ret);
3691 goto out;
3692 }
3693
3694 mlog(0, "reserve new metadata %d, credits = %d\n",
3695 ref_blocks, credits);
3696
3697 if (ref_blocks) {
3698 ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(inode->i_sb),
3699 ref_blocks, &meta_ac);
3700 if (ret) {
3701 mlog_errno(ret);
3702 goto out;
3703 }
3704 }
3705
Tao Ma01292412009-09-21 13:04:19 +08003706 if (post)
3707 credits += post->credits;
3708
Tao Ma110a0452009-08-22 23:54:27 +08003709 handle = ocfs2_start_trans(osb, credits);
3710 if (IS_ERR(handle)) {
3711 ret = PTR_ERR(handle);
3712 mlog_errno(ret);
3713 goto out;
3714 }
3715
3716 ret = ocfs2_mark_extent_refcounted(inode, data_et, handle,
3717 cpos, num_clusters, p_cluster,
3718 meta_ac, dealloc);
3719 if (ret) {
3720 mlog_errno(ret);
3721 goto out_commit;
3722 }
3723
Tao Ma7540c1a2009-08-18 11:44:03 +08003724 ret = __ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3725 p_cluster, num_clusters, 0,
3726 meta_ac, dealloc);
Tao Ma01292412009-09-21 13:04:19 +08003727 if (ret) {
Tao Ma110a0452009-08-22 23:54:27 +08003728 mlog_errno(ret);
Tao Ma01292412009-09-21 13:04:19 +08003729 goto out_commit;
3730 }
3731
3732 if (post && post->func) {
3733 ret = post->func(inode, handle, post->para);
3734 if (ret)
3735 mlog_errno(ret);
3736 }
Tao Ma110a0452009-08-22 23:54:27 +08003737
3738out_commit:
3739 ocfs2_commit_trans(osb, handle);
3740out:
3741 if (meta_ac)
3742 ocfs2_free_alloc_context(meta_ac);
3743 return ret;
3744}
3745
Tao Maa9063ab2009-08-18 11:40:59 +08003746static int ocfs2_change_ctime(struct inode *inode,
3747 struct buffer_head *di_bh)
3748{
3749 int ret;
3750 handle_t *handle;
3751 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3752
3753 handle = ocfs2_start_trans(OCFS2_SB(inode->i_sb),
3754 OCFS2_INODE_UPDATE_CREDITS);
3755 if (IS_ERR(handle)) {
3756 ret = PTR_ERR(handle);
3757 mlog_errno(ret);
3758 goto out;
3759 }
3760
3761 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
3762 OCFS2_JOURNAL_ACCESS_WRITE);
3763 if (ret) {
3764 mlog_errno(ret);
3765 goto out_commit;
3766 }
3767
3768 inode->i_ctime = CURRENT_TIME;
3769 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
3770 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
3771
3772 ocfs2_journal_dirty(handle, di_bh);
3773
3774out_commit:
3775 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
3776out:
3777 return ret;
3778}
3779
Tao Ma110a0452009-08-22 23:54:27 +08003780static int ocfs2_attach_refcount_tree(struct inode *inode,
3781 struct buffer_head *di_bh)
3782{
Tao Maa9063ab2009-08-18 11:40:59 +08003783 int ret, data_changed = 0;
Tao Ma110a0452009-08-22 23:54:27 +08003784 struct buffer_head *ref_root_bh = NULL;
3785 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3786 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3787 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3788 struct ocfs2_refcount_tree *ref_tree;
3789 unsigned int ext_flags;
3790 loff_t size;
3791 u32 cpos, num_clusters, clusters, p_cluster;
3792 struct ocfs2_cached_dealloc_ctxt dealloc;
3793 struct ocfs2_extent_tree di_et;
3794
3795 ocfs2_init_dealloc_ctxt(&dealloc);
3796
3797 if (!(oi->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL)) {
3798 ret = ocfs2_create_refcount_tree(inode, di_bh);
3799 if (ret) {
3800 mlog_errno(ret);
3801 goto out;
3802 }
3803 }
3804
3805 BUG_ON(!di->i_refcount_loc);
3806 ret = ocfs2_lock_refcount_tree(osb,
3807 le64_to_cpu(di->i_refcount_loc), 1,
3808 &ref_tree, &ref_root_bh);
3809 if (ret) {
3810 mlog_errno(ret);
3811 goto out;
3812 }
3813
Tao Ma2f48d592009-10-15 11:10:49 +08003814 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
3815 goto attach_xattr;
3816
Tao Ma110a0452009-08-22 23:54:27 +08003817 ocfs2_init_dinode_extent_tree(&di_et, INODE_CACHE(inode), di_bh);
3818
3819 size = i_size_read(inode);
3820 clusters = ocfs2_clusters_for_bytes(inode->i_sb, size);
3821
3822 cpos = 0;
3823 while (cpos < clusters) {
3824 ret = ocfs2_get_clusters(inode, cpos, &p_cluster,
3825 &num_clusters, &ext_flags);
3826
3827 if (p_cluster && !(ext_flags & OCFS2_EXT_REFCOUNTED)) {
3828 ret = ocfs2_add_refcount_flag(inode, &di_et,
3829 &ref_tree->rf_ci,
3830 ref_root_bh, cpos,
3831 p_cluster, num_clusters,
Tao Ma01292412009-09-21 13:04:19 +08003832 &dealloc, NULL);
Tao Ma110a0452009-08-22 23:54:27 +08003833 if (ret) {
3834 mlog_errno(ret);
Tao Maa9063ab2009-08-18 11:40:59 +08003835 goto unlock;
Tao Ma110a0452009-08-22 23:54:27 +08003836 }
Tao Maa9063ab2009-08-18 11:40:59 +08003837
3838 data_changed = 1;
Tao Ma110a0452009-08-22 23:54:27 +08003839 }
3840 cpos += num_clusters;
3841 }
3842
Tao Ma2f48d592009-10-15 11:10:49 +08003843attach_xattr:
Tao Ma01292412009-09-21 13:04:19 +08003844 if (oi->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
3845 ret = ocfs2_xattr_attach_refcount_tree(inode, di_bh,
3846 &ref_tree->rf_ci,
3847 ref_root_bh,
3848 &dealloc);
3849 if (ret) {
3850 mlog_errno(ret);
3851 goto unlock;
3852 }
3853 }
3854
Tao Maa9063ab2009-08-18 11:40:59 +08003855 if (data_changed) {
3856 ret = ocfs2_change_ctime(inode, di_bh);
3857 if (ret)
3858 mlog_errno(ret);
3859 }
3860
3861unlock:
Tao Ma110a0452009-08-22 23:54:27 +08003862 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3863 brelse(ref_root_bh);
3864
3865 if (!ret && ocfs2_dealloc_has_cluster(&dealloc)) {
3866 ocfs2_schedule_truncate_log_flush(osb, 1);
3867 ocfs2_run_deallocs(osb, &dealloc);
3868 }
3869out:
3870 /*
3871 * Empty the extent map so that we may get the right extent
3872 * record from the disk.
3873 */
3874 ocfs2_extent_map_trunc(inode, 0);
3875
3876 return ret;
3877}
3878
3879static int ocfs2_add_refcounted_extent(struct inode *inode,
3880 struct ocfs2_extent_tree *et,
3881 struct ocfs2_caching_info *ref_ci,
3882 struct buffer_head *ref_root_bh,
3883 u32 cpos, u32 p_cluster, u32 num_clusters,
3884 unsigned int ext_flags,
3885 struct ocfs2_cached_dealloc_ctxt *dealloc)
3886{
3887 int ret;
3888 handle_t *handle;
3889 int credits = 0;
3890 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3891 struct ocfs2_alloc_context *meta_ac = NULL;
3892
3893 ret = ocfs2_lock_refcount_allocators(inode->i_sb,
3894 p_cluster, num_clusters,
3895 et, ref_ci,
3896 ref_root_bh, &meta_ac,
3897 NULL, &credits);
3898 if (ret) {
3899 mlog_errno(ret);
3900 goto out;
3901 }
3902
3903 handle = ocfs2_start_trans(osb, credits);
3904 if (IS_ERR(handle)) {
3905 ret = PTR_ERR(handle);
3906 mlog_errno(ret);
3907 goto out;
3908 }
3909
3910 ret = ocfs2_insert_extent(handle, et, cpos,
Tao Ma12d4cec2009-11-30 15:08:40 +08003911 ocfs2_clusters_to_blocks(inode->i_sb, p_cluster),
Tao Ma110a0452009-08-22 23:54:27 +08003912 num_clusters, ext_flags, meta_ac);
3913 if (ret) {
3914 mlog_errno(ret);
3915 goto out_commit;
3916 }
3917
Tao Ma2999d122009-08-18 11:43:55 +08003918 ret = ocfs2_increase_refcount(handle, ref_ci, ref_root_bh,
3919 p_cluster, num_clusters,
3920 meta_ac, dealloc);
Tao Ma110a0452009-08-22 23:54:27 +08003921 if (ret)
3922 mlog_errno(ret);
3923
3924out_commit:
3925 ocfs2_commit_trans(osb, handle);
3926out:
3927 if (meta_ac)
3928 ocfs2_free_alloc_context(meta_ac);
3929 return ret;
3930}
3931
Tao Ma2f48d592009-10-15 11:10:49 +08003932static int ocfs2_duplicate_inline_data(struct inode *s_inode,
3933 struct buffer_head *s_bh,
3934 struct inode *t_inode,
3935 struct buffer_head *t_bh)
3936{
3937 int ret;
3938 handle_t *handle;
3939 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
3940 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
3941 struct ocfs2_dinode *t_di = (struct ocfs2_dinode *)t_bh->b_data;
3942
3943 BUG_ON(!(OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
3944
3945 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
3946 if (IS_ERR(handle)) {
3947 ret = PTR_ERR(handle);
3948 mlog_errno(ret);
3949 goto out;
3950 }
3951
3952 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
3953 OCFS2_JOURNAL_ACCESS_WRITE);
3954 if (ret) {
3955 mlog_errno(ret);
3956 goto out_commit;
3957 }
3958
3959 t_di->id2.i_data.id_count = s_di->id2.i_data.id_count;
3960 memcpy(t_di->id2.i_data.id_data, s_di->id2.i_data.id_data,
3961 le16_to_cpu(s_di->id2.i_data.id_count));
3962 spin_lock(&OCFS2_I(t_inode)->ip_lock);
3963 OCFS2_I(t_inode)->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
3964 t_di->i_dyn_features = cpu_to_le16(OCFS2_I(t_inode)->ip_dyn_features);
3965 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
3966
3967 ocfs2_journal_dirty(handle, t_bh);
3968
3969out_commit:
3970 ocfs2_commit_trans(osb, handle);
3971out:
3972 return ret;
3973}
3974
Tao Ma110a0452009-08-22 23:54:27 +08003975static int ocfs2_duplicate_extent_list(struct inode *s_inode,
3976 struct inode *t_inode,
3977 struct buffer_head *t_bh,
3978 struct ocfs2_caching_info *ref_ci,
3979 struct buffer_head *ref_root_bh,
3980 struct ocfs2_cached_dealloc_ctxt *dealloc)
3981{
3982 int ret = 0;
3983 u32 p_cluster, num_clusters, clusters, cpos;
3984 loff_t size;
3985 unsigned int ext_flags;
3986 struct ocfs2_extent_tree et;
3987
3988 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(t_inode), t_bh);
3989
3990 size = i_size_read(s_inode);
3991 clusters = ocfs2_clusters_for_bytes(s_inode->i_sb, size);
3992
3993 cpos = 0;
3994 while (cpos < clusters) {
3995 ret = ocfs2_get_clusters(s_inode, cpos, &p_cluster,
3996 &num_clusters, &ext_flags);
3997
3998 if (p_cluster) {
3999 ret = ocfs2_add_refcounted_extent(t_inode, &et,
4000 ref_ci, ref_root_bh,
4001 cpos, p_cluster,
4002 num_clusters,
4003 ext_flags,
4004 dealloc);
4005 if (ret) {
4006 mlog_errno(ret);
4007 goto out;
4008 }
4009 }
4010
4011 cpos += num_clusters;
4012 }
4013
4014out:
4015 return ret;
4016}
4017
Tao Maa9063ab2009-08-18 11:40:59 +08004018/*
4019 * change the new file's attributes to the src.
4020 *
4021 * reflink creates a snapshot of a file, that means the attributes
4022 * must be identical except for three exceptions - nlink, ino, and ctime.
4023 */
4024static int ocfs2_complete_reflink(struct inode *s_inode,
4025 struct buffer_head *s_bh,
4026 struct inode *t_inode,
Tao Ma0fe9b662009-08-18 11:47:56 +08004027 struct buffer_head *t_bh,
4028 bool preserve)
Tao Maa9063ab2009-08-18 11:40:59 +08004029{
4030 int ret;
4031 handle_t *handle;
4032 struct ocfs2_dinode *s_di = (struct ocfs2_dinode *)s_bh->b_data;
4033 struct ocfs2_dinode *di = (struct ocfs2_dinode *)t_bh->b_data;
4034 loff_t size = i_size_read(s_inode);
4035
4036 handle = ocfs2_start_trans(OCFS2_SB(t_inode->i_sb),
4037 OCFS2_INODE_UPDATE_CREDITS);
4038 if (IS_ERR(handle)) {
4039 ret = PTR_ERR(handle);
4040 mlog_errno(ret);
4041 return ret;
4042 }
4043
4044 ret = ocfs2_journal_access_di(handle, INODE_CACHE(t_inode), t_bh,
4045 OCFS2_JOURNAL_ACCESS_WRITE);
4046 if (ret) {
4047 mlog_errno(ret);
4048 goto out_commit;
4049 }
4050
4051 spin_lock(&OCFS2_I(t_inode)->ip_lock);
4052 OCFS2_I(t_inode)->ip_clusters = OCFS2_I(s_inode)->ip_clusters;
4053 OCFS2_I(t_inode)->ip_attr = OCFS2_I(s_inode)->ip_attr;
4054 OCFS2_I(t_inode)->ip_dyn_features = OCFS2_I(s_inode)->ip_dyn_features;
4055 spin_unlock(&OCFS2_I(t_inode)->ip_lock);
4056 i_size_write(t_inode, size);
Tao Ma6527f8f2010-03-10 09:56:52 +08004057 t_inode->i_blocks = s_inode->i_blocks;
Tao Maa9063ab2009-08-18 11:40:59 +08004058
4059 di->i_xattr_inline_size = s_di->i_xattr_inline_size;
4060 di->i_clusters = s_di->i_clusters;
4061 di->i_size = s_di->i_size;
4062 di->i_dyn_features = s_di->i_dyn_features;
4063 di->i_attr = s_di->i_attr;
Tao Maa9063ab2009-08-18 11:40:59 +08004064
Tao Ma0fe9b662009-08-18 11:47:56 +08004065 if (preserve) {
4066 di->i_uid = s_di->i_uid;
4067 di->i_gid = s_di->i_gid;
4068 di->i_mode = s_di->i_mode;
Tao Maa9063ab2009-08-18 11:40:59 +08004069
Tao Ma0fe9b662009-08-18 11:47:56 +08004070 /*
4071 * update time.
4072 * we want mtime to appear identical to the source and
4073 * update ctime.
4074 */
4075 t_inode->i_ctime = CURRENT_TIME;
Tao Maa9063ab2009-08-18 11:40:59 +08004076
Tao Ma0fe9b662009-08-18 11:47:56 +08004077 di->i_ctime = cpu_to_le64(t_inode->i_ctime.tv_sec);
4078 di->i_ctime_nsec = cpu_to_le32(t_inode->i_ctime.tv_nsec);
4079
4080 t_inode->i_mtime = s_inode->i_mtime;
4081 di->i_mtime = s_di->i_mtime;
4082 di->i_mtime_nsec = s_di->i_mtime_nsec;
4083 }
Tao Maa9063ab2009-08-18 11:40:59 +08004084
4085 ocfs2_journal_dirty(handle, t_bh);
4086
4087out_commit:
4088 ocfs2_commit_trans(OCFS2_SB(t_inode->i_sb), handle);
4089 return ret;
4090}
4091
Tao Ma110a0452009-08-22 23:54:27 +08004092static int ocfs2_create_reflink_node(struct inode *s_inode,
4093 struct buffer_head *s_bh,
4094 struct inode *t_inode,
Tao Ma0fe9b662009-08-18 11:47:56 +08004095 struct buffer_head *t_bh,
4096 bool preserve)
Tao Ma110a0452009-08-22 23:54:27 +08004097{
4098 int ret;
4099 struct buffer_head *ref_root_bh = NULL;
4100 struct ocfs2_cached_dealloc_ctxt dealloc;
4101 struct ocfs2_super *osb = OCFS2_SB(s_inode->i_sb);
4102 struct ocfs2_refcount_block *rb;
4103 struct ocfs2_dinode *di = (struct ocfs2_dinode *)s_bh->b_data;
4104 struct ocfs2_refcount_tree *ref_tree;
4105
4106 ocfs2_init_dealloc_ctxt(&dealloc);
4107
4108 ret = ocfs2_set_refcount_tree(t_inode, t_bh,
4109 le64_to_cpu(di->i_refcount_loc));
4110 if (ret) {
4111 mlog_errno(ret);
4112 goto out;
4113 }
4114
Tao Ma2f48d592009-10-15 11:10:49 +08004115 if (OCFS2_I(s_inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4116 ret = ocfs2_duplicate_inline_data(s_inode, s_bh,
4117 t_inode, t_bh);
4118 if (ret)
4119 mlog_errno(ret);
4120 goto out;
4121 }
4122
Tao Ma110a0452009-08-22 23:54:27 +08004123 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
4124 1, &ref_tree, &ref_root_bh);
4125 if (ret) {
4126 mlog_errno(ret);
4127 goto out;
4128 }
4129 rb = (struct ocfs2_refcount_block *)ref_root_bh->b_data;
4130
4131 ret = ocfs2_duplicate_extent_list(s_inode, t_inode, t_bh,
4132 &ref_tree->rf_ci, ref_root_bh,
4133 &dealloc);
Tao Maa9063ab2009-08-18 11:40:59 +08004134 if (ret) {
4135 mlog_errno(ret);
4136 goto out_unlock_refcount;
4137 }
4138
Tao Maa9063ab2009-08-18 11:40:59 +08004139out_unlock_refcount:
Tao Ma110a0452009-08-22 23:54:27 +08004140 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
4141 brelse(ref_root_bh);
4142out:
4143 if (ocfs2_dealloc_has_cluster(&dealloc)) {
4144 ocfs2_schedule_truncate_log_flush(osb, 1);
4145 ocfs2_run_deallocs(osb, &dealloc);
4146 }
4147
4148 return ret;
4149}
Tao Ma09bf27a2009-09-21 10:38:17 +08004150
4151static int __ocfs2_reflink(struct dentry *old_dentry,
4152 struct buffer_head *old_bh,
4153 struct inode *new_inode,
4154 bool preserve)
4155{
4156 int ret;
4157 struct inode *inode = old_dentry->d_inode;
4158 struct buffer_head *new_bh = NULL;
4159
4160 ret = filemap_fdatawrite(inode->i_mapping);
4161 if (ret) {
4162 mlog_errno(ret);
4163 goto out;
4164 }
4165
4166 ret = ocfs2_attach_refcount_tree(inode, old_bh);
4167 if (ret) {
4168 mlog_errno(ret);
4169 goto out;
4170 }
4171
4172 mutex_lock(&new_inode->i_mutex);
4173 ret = ocfs2_inode_lock(new_inode, &new_bh, 1);
4174 if (ret) {
4175 mlog_errno(ret);
4176 goto out_unlock;
4177 }
4178
4179 ret = ocfs2_create_reflink_node(inode, old_bh,
4180 new_inode, new_bh, preserve);
4181 if (ret) {
4182 mlog_errno(ret);
4183 goto inode_unlock;
4184 }
4185
4186 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_XATTR_FL) {
4187 ret = ocfs2_reflink_xattrs(inode, old_bh,
4188 new_inode, new_bh,
4189 preserve);
Tao Ma87f4b1b2009-10-15 11:10:48 +08004190 if (ret) {
Tao Ma09bf27a2009-09-21 10:38:17 +08004191 mlog_errno(ret);
Tao Ma87f4b1b2009-10-15 11:10:48 +08004192 goto inode_unlock;
4193 }
Tao Ma09bf27a2009-09-21 10:38:17 +08004194 }
Tao Ma87f4b1b2009-10-15 11:10:48 +08004195
4196 ret = ocfs2_complete_reflink(inode, old_bh,
4197 new_inode, new_bh, preserve);
4198 if (ret)
4199 mlog_errno(ret);
4200
Tao Ma09bf27a2009-09-21 10:38:17 +08004201inode_unlock:
4202 ocfs2_inode_unlock(new_inode, 1);
4203 brelse(new_bh);
4204out_unlock:
4205 mutex_unlock(&new_inode->i_mutex);
4206out:
4207 if (!ret) {
4208 ret = filemap_fdatawait(inode->i_mapping);
4209 if (ret)
4210 mlog_errno(ret);
4211 }
4212 return ret;
4213}
4214
4215static int ocfs2_reflink(struct dentry *old_dentry, struct inode *dir,
4216 struct dentry *new_dentry, bool preserve)
4217{
4218 int error;
4219 struct inode *inode = old_dentry->d_inode;
4220 struct buffer_head *old_bh = NULL;
4221 struct inode *new_orphan_inode = NULL;
4222
4223 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4224 return -EOPNOTSUPP;
4225
4226 error = ocfs2_create_inode_in_orphan(dir, inode->i_mode,
4227 &new_orphan_inode);
4228 if (error) {
4229 mlog_errno(error);
4230 goto out;
4231 }
4232
4233 error = ocfs2_inode_lock(inode, &old_bh, 1);
4234 if (error) {
4235 mlog_errno(error);
4236 goto out;
4237 }
4238
4239 down_write(&OCFS2_I(inode)->ip_xattr_sem);
4240 down_write(&OCFS2_I(inode)->ip_alloc_sem);
4241 error = __ocfs2_reflink(old_dentry, old_bh,
4242 new_orphan_inode, preserve);
4243 up_write(&OCFS2_I(inode)->ip_alloc_sem);
4244 up_write(&OCFS2_I(inode)->ip_xattr_sem);
4245
4246 ocfs2_inode_unlock(inode, 1);
4247 brelse(old_bh);
4248
4249 if (error) {
4250 mlog_errno(error);
4251 goto out;
4252 }
4253
4254 /* If the security isn't preserved, we need to re-initialize them. */
4255 if (!preserve) {
4256 error = ocfs2_init_security_and_acl(dir, new_orphan_inode);
4257 if (error)
4258 mlog_errno(error);
4259 }
4260out:
4261 if (!error) {
4262 error = ocfs2_mv_orphaned_inode_to_new(dir, new_orphan_inode,
4263 new_dentry);
4264 if (error)
4265 mlog_errno(error);
4266 }
4267
4268 if (new_orphan_inode) {
4269 /*
4270 * We need to open_unlock the inode no matter whether we
4271 * succeed or not, so that other nodes can delete it later.
4272 */
4273 ocfs2_open_unlock(new_orphan_inode);
4274 if (error)
4275 iput(new_orphan_inode);
4276 }
4277
4278 return error;
4279}
Tao Mabd508732009-09-21 11:25:14 +08004280
4281/*
4282 * Below here are the bits used by OCFS2_IOC_REFLINK() to fake
4283 * sys_reflink(). This will go away when vfs_reflink() exists in
4284 * fs/namei.c.
4285 */
4286
4287/* copied from may_create in VFS. */
4288static inline int ocfs2_may_create(struct inode *dir, struct dentry *child)
4289{
4290 if (child->d_inode)
4291 return -EEXIST;
4292 if (IS_DEADDIR(dir))
4293 return -ENOENT;
4294 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
4295}
4296
4297/* copied from user_path_parent. */
4298static int ocfs2_user_path_parent(const char __user *path,
4299 struct nameidata *nd, char **name)
4300{
4301 char *s = getname(path);
4302 int error;
4303
4304 if (IS_ERR(s))
4305 return PTR_ERR(s);
4306
4307 error = path_lookup(s, LOOKUP_PARENT, nd);
4308 if (error)
4309 putname(s);
4310 else
4311 *name = s;
4312
4313 return error;
4314}
4315
4316/**
4317 * ocfs2_vfs_reflink - Create a reference-counted link
4318 *
4319 * @old_dentry: source dentry + inode
4320 * @dir: directory to create the target
4321 * @new_dentry: target dentry
4322 * @preserve: if true, preserve all file attributes
4323 */
Tao Ma12d4cec2009-11-30 15:08:40 +08004324static int ocfs2_vfs_reflink(struct dentry *old_dentry, struct inode *dir,
4325 struct dentry *new_dentry, bool preserve)
Tao Mabd508732009-09-21 11:25:14 +08004326{
4327 struct inode *inode = old_dentry->d_inode;
4328 int error;
4329
4330 if (!inode)
4331 return -ENOENT;
4332
4333 error = ocfs2_may_create(dir, new_dentry);
4334 if (error)
4335 return error;
4336
4337 if (dir->i_sb != inode->i_sb)
4338 return -EXDEV;
4339
4340 /*
4341 * A reflink to an append-only or immutable file cannot be created.
4342 */
4343 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4344 return -EPERM;
4345
4346 /* Only regular files can be reflinked. */
4347 if (!S_ISREG(inode->i_mode))
4348 return -EPERM;
4349
4350 /*
4351 * If the caller wants to preserve ownership, they require the
4352 * rights to do so.
4353 */
4354 if (preserve) {
4355 if ((current_fsuid() != inode->i_uid) && !capable(CAP_CHOWN))
4356 return -EPERM;
4357 if (!in_group_p(inode->i_gid) && !capable(CAP_CHOWN))
4358 return -EPERM;
4359 }
4360
4361 /*
4362 * If the caller is modifying any aspect of the attributes, they
4363 * are not creating a snapshot. They need read permission on the
4364 * file.
4365 */
4366 if (!preserve) {
4367 error = inode_permission(inode, MAY_READ);
4368 if (error)
4369 return error;
4370 }
4371
4372 mutex_lock(&inode->i_mutex);
Christoph Hellwig871a2932010-03-03 09:05:07 -05004373 dquot_initialize(dir);
Tao Mabd508732009-09-21 11:25:14 +08004374 error = ocfs2_reflink(old_dentry, dir, new_dentry, preserve);
4375 mutex_unlock(&inode->i_mutex);
4376 if (!error)
4377 fsnotify_create(dir, new_dentry);
4378 return error;
4379}
4380/*
4381 * Most codes are copied from sys_linkat.
4382 */
4383int ocfs2_reflink_ioctl(struct inode *inode,
4384 const char __user *oldname,
4385 const char __user *newname,
4386 bool preserve)
4387{
4388 struct dentry *new_dentry;
4389 struct nameidata nd;
4390 struct path old_path;
4391 int error;
4392 char *to = NULL;
4393
4394 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)))
4395 return -EOPNOTSUPP;
4396
4397 error = user_path_at(AT_FDCWD, oldname, 0, &old_path);
4398 if (error) {
4399 mlog_errno(error);
4400 return error;
4401 }
4402
4403 error = ocfs2_user_path_parent(newname, &nd, &to);
4404 if (error) {
4405 mlog_errno(error);
4406 goto out;
4407 }
4408
4409 error = -EXDEV;
4410 if (old_path.mnt != nd.path.mnt)
4411 goto out_release;
4412 new_dentry = lookup_create(&nd, 0);
4413 error = PTR_ERR(new_dentry);
4414 if (IS_ERR(new_dentry)) {
4415 mlog_errno(error);
4416 goto out_unlock;
4417 }
4418
4419 error = mnt_want_write(nd.path.mnt);
4420 if (error) {
4421 mlog_errno(error);
4422 goto out_dput;
4423 }
4424
4425 error = ocfs2_vfs_reflink(old_path.dentry,
4426 nd.path.dentry->d_inode,
4427 new_dentry, preserve);
4428 mnt_drop_write(nd.path.mnt);
4429out_dput:
4430 dput(new_dentry);
4431out_unlock:
4432 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
4433out_release:
4434 path_put(&nd.path);
4435 putname(to);
4436out:
4437 path_put(&old_path);
4438
4439 return error;
4440}