btrfs: remove unused BTRFS_FS_BARRIER flag
[linux-2.6-block.git] / fs / btrfs / transaction.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
6cbd5570
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
6cbd5570
CM
4 */
5
79154b1b 6#include <linux/fs.h>
5a0e3ad6 7#include <linux/slab.h>
34088780 8#include <linux/sched.h>
d3c2fdcf 9#include <linux/writeback.h>
5f39d397 10#include <linux/pagemap.h>
5f2cc086 11#include <linux/blkdev.h>
8ea05e3a 12#include <linux/uuid.h>
602cbe91 13#include "misc.h"
79154b1b
CM
14#include "ctree.h"
15#include "disk-io.h"
16#include "transaction.h"
925baedd 17#include "locking.h"
e02119d5 18#include "tree-log.h"
733f4fbb 19#include "volumes.h"
8dabb742 20#include "dev-replace.h"
fcebe456 21#include "qgroup.h"
aac0023c 22#include "block-group.h"
9c343784 23#include "space-info.h"
d3575156 24#include "zoned.h"
79154b1b 25
0f7d52f4
CM
26#define BTRFS_ROOT_TRANS_TAG 0
27
61c047b5
QW
28/*
29 * Transaction states and transitions
30 *
31 * No running transaction (fs tree blocks are not modified)
32 * |
33 * | To next stage:
34 * | Call start_transaction() variants. Except btrfs_join_transaction_nostart().
35 * V
36 * Transaction N [[TRANS_STATE_RUNNING]]
37 * |
38 * | New trans handles can be attached to transaction N by calling all
39 * | start_transaction() variants.
40 * |
41 * | To next stage:
42 * | Call btrfs_commit_transaction() on any trans handle attached to
43 * | transaction N
44 * V
45 * Transaction N [[TRANS_STATE_COMMIT_START]]
46 * |
47 * | Will wait for previous running transaction to completely finish if there
48 * | is one
49 * |
50 * | Then one of the following happes:
51 * | - Wait for all other trans handle holders to release.
52 * | The btrfs_commit_transaction() caller will do the commit work.
53 * | - Wait for current transaction to be committed by others.
54 * | Other btrfs_commit_transaction() caller will do the commit work.
55 * |
56 * | At this stage, only btrfs_join_transaction*() variants can attach
57 * | to this running transaction.
58 * | All other variants will wait for current one to finish and attach to
59 * | transaction N+1.
60 * |
61 * | To next stage:
62 * | Caller is chosen to commit transaction N, and all other trans handle
63 * | haven been released.
64 * V
65 * Transaction N [[TRANS_STATE_COMMIT_DOING]]
66 * |
67 * | The heavy lifting transaction work is started.
68 * | From running delayed refs (modifying extent tree) to creating pending
69 * | snapshots, running qgroups.
70 * | In short, modify supporting trees to reflect modifications of subvolume
71 * | trees.
72 * |
73 * | At this stage, all start_transaction() calls will wait for this
74 * | transaction to finish and attach to transaction N+1.
75 * |
76 * | To next stage:
77 * | Until all supporting trees are updated.
78 * V
79 * Transaction N [[TRANS_STATE_UNBLOCKED]]
80 * | Transaction N+1
81 * | All needed trees are modified, thus we only [[TRANS_STATE_RUNNING]]
82 * | need to write them back to disk and update |
83 * | super blocks. |
84 * | |
85 * | At this stage, new transaction is allowed to |
86 * | start. |
87 * | All new start_transaction() calls will be |
88 * | attached to transid N+1. |
89 * | |
90 * | To next stage: |
91 * | Until all tree blocks are super blocks are |
92 * | written to block devices |
93 * V |
94 * Transaction N [[TRANS_STATE_COMPLETED]] V
95 * All tree blocks and super blocks are written. Transaction N+1
96 * This transaction is finished and all its [[TRANS_STATE_COMMIT_START]]
97 * data structures will be cleaned up. | Life goes on
98 */
e8c9f186 99static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
4a9d8bde 100 [TRANS_STATE_RUNNING] = 0U,
bcf3a3e7
NB
101 [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH),
102 [TRANS_STATE_COMMIT_DOING] = (__TRANS_START |
4a9d8bde 103 __TRANS_ATTACH |
a6d155d2
FM
104 __TRANS_JOIN |
105 __TRANS_JOIN_NOSTART),
bcf3a3e7 106 [TRANS_STATE_UNBLOCKED] = (__TRANS_START |
4a9d8bde
MX
107 __TRANS_ATTACH |
108 __TRANS_JOIN |
a6d155d2
FM
109 __TRANS_JOIN_NOLOCK |
110 __TRANS_JOIN_NOSTART),
d0c2f4fa
FM
111 [TRANS_STATE_SUPER_COMMITTED] = (__TRANS_START |
112 __TRANS_ATTACH |
113 __TRANS_JOIN |
114 __TRANS_JOIN_NOLOCK |
115 __TRANS_JOIN_NOSTART),
bcf3a3e7 116 [TRANS_STATE_COMPLETED] = (__TRANS_START |
4a9d8bde
MX
117 __TRANS_ATTACH |
118 __TRANS_JOIN |
a6d155d2
FM
119 __TRANS_JOIN_NOLOCK |
120 __TRANS_JOIN_NOSTART),
4a9d8bde
MX
121};
122
724e2315 123void btrfs_put_transaction(struct btrfs_transaction *transaction)
79154b1b 124{
9b64f57d
ER
125 WARN_ON(refcount_read(&transaction->use_count) == 0);
126 if (refcount_dec_and_test(&transaction->use_count)) {
a4abeea4 127 BUG_ON(!list_empty(&transaction->list));
5c9d028b
LB
128 WARN_ON(!RB_EMPTY_ROOT(
129 &transaction->delayed_refs.href_root.rb_root));
81f7eb00
JM
130 WARN_ON(!RB_EMPTY_ROOT(
131 &transaction->delayed_refs.dirty_extent_root));
1262133b 132 if (transaction->delayed_refs.pending_csums)
ab8d0fc4
JM
133 btrfs_err(transaction->fs_info,
134 "pending csums is %llu",
135 transaction->delayed_refs.pending_csums);
7785a663
FM
136 /*
137 * If any block groups are found in ->deleted_bgs then it's
138 * because the transaction was aborted and a commit did not
139 * happen (things failed before writing the new superblock
140 * and calling btrfs_finish_extent_commit()), so we can not
141 * discard the physical locations of the block groups.
142 */
143 while (!list_empty(&transaction->deleted_bgs)) {
32da5386 144 struct btrfs_block_group *cache;
7785a663
FM
145
146 cache = list_first_entry(&transaction->deleted_bgs,
32da5386 147 struct btrfs_block_group,
7785a663
FM
148 bg_list);
149 list_del_init(&cache->bg_list);
6b7304af 150 btrfs_unfreeze_block_group(cache);
7785a663
FM
151 btrfs_put_block_group(cache);
152 }
bbbf7243 153 WARN_ON(!list_empty(&transaction->dev_update_list));
4b5faeac 154 kfree(transaction);
78fae27e 155 }
79154b1b
CM
156}
157
889bfa39 158static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
817d52f8 159{
889bfa39 160 struct btrfs_transaction *cur_trans = trans->transaction;
16916a88 161 struct btrfs_fs_info *fs_info = trans->fs_info;
9e351cc8 162 struct btrfs_root *root, *tmp;
27d56e62 163 struct btrfs_caching_control *caching_ctl, *next;
9e351cc8 164
dfba78dc
FM
165 /*
166 * At this point no one can be using this transaction to modify any tree
167 * and no one can start another transaction to modify any tree either.
168 */
169 ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING);
170
9e351cc8 171 down_write(&fs_info->commit_root_sem);
889bfa39 172 list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
9e351cc8
JB
173 dirty_list) {
174 list_del_init(&root->dirty_list);
175 free_extent_buffer(root->commit_root);
176 root->commit_root = btrfs_root_node(root);
41e7acd3 177 extent_io_tree_release(&root->dirty_log_pages);
370a11b8 178 btrfs_qgroup_clean_swapped_blocks(root);
9e351cc8 179 }
2b9dbef2
JB
180
181 /* We can free old roots now. */
889bfa39
JB
182 spin_lock(&cur_trans->dropped_roots_lock);
183 while (!list_empty(&cur_trans->dropped_roots)) {
184 root = list_first_entry(&cur_trans->dropped_roots,
2b9dbef2
JB
185 struct btrfs_root, root_list);
186 list_del_init(&root->root_list);
889bfa39
JB
187 spin_unlock(&cur_trans->dropped_roots_lock);
188 btrfs_free_log(trans, root);
2b9dbef2 189 btrfs_drop_and_free_fs_root(fs_info, root);
889bfa39 190 spin_lock(&cur_trans->dropped_roots_lock);
2b9dbef2 191 }
889bfa39 192 spin_unlock(&cur_trans->dropped_roots_lock);
27d56e62
JB
193
194 /*
195 * We have to update the last_byte_to_unpin under the commit_root_sem,
196 * at the same time we swap out the commit roots.
197 *
198 * This is because we must have a real view of the last spot the caching
199 * kthreads were while caching. Consider the following views of the
200 * extent tree for a block group
201 *
202 * commit root
203 * +----+----+----+----+----+----+----+
204 * |\\\\| |\\\\|\\\\| |\\\\|\\\\|
205 * +----+----+----+----+----+----+----+
206 * 0 1 2 3 4 5 6 7
207 *
208 * new commit root
209 * +----+----+----+----+----+----+----+
210 * | | | |\\\\| | |\\\\|
211 * +----+----+----+----+----+----+----+
212 * 0 1 2 3 4 5 6 7
213 *
214 * If the cache_ctl->progress was at 3, then we are only allowed to
215 * unpin [0,1) and [2,3], because the caching thread has already
216 * processed those extents. We are not allowed to unpin [5,6), because
217 * the caching thread will re-start it's search from 3, and thus find
218 * the hole from [4,6) to add to the free space cache.
219 */
bbb86a37 220 spin_lock(&fs_info->block_group_cache_lock);
27d56e62
JB
221 list_for_each_entry_safe(caching_ctl, next,
222 &fs_info->caching_block_groups, list) {
223 struct btrfs_block_group *cache = caching_ctl->block_group;
224
225 if (btrfs_block_group_done(cache)) {
226 cache->last_byte_to_unpin = (u64)-1;
227 list_del_init(&caching_ctl->list);
228 btrfs_put_caching_control(caching_ctl);
229 } else {
230 cache->last_byte_to_unpin = caching_ctl->progress;
231 }
232 }
bbb86a37 233 spin_unlock(&fs_info->block_group_cache_lock);
9e351cc8 234 up_write(&fs_info->commit_root_sem);
817d52f8
JB
235}
236
0860adfd
MX
237static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
238 unsigned int type)
239{
240 if (type & TRANS_EXTWRITERS)
241 atomic_inc(&trans->num_extwriters);
242}
243
244static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
245 unsigned int type)
246{
247 if (type & TRANS_EXTWRITERS)
248 atomic_dec(&trans->num_extwriters);
249}
250
251static inline void extwriter_counter_init(struct btrfs_transaction *trans,
252 unsigned int type)
253{
254 atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
255}
256
257static inline int extwriter_counter_read(struct btrfs_transaction *trans)
258{
259 return atomic_read(&trans->num_extwriters);
178260b2
MX
260}
261
fb6dea26 262/*
79bd3712
FM
263 * To be called after doing the chunk btree updates right after allocating a new
264 * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a
265 * chunk after all chunk btree updates and after finishing the second phase of
266 * chunk allocation (btrfs_create_pending_block_groups()) in case some block
267 * group had its chunk item insertion delayed to the second phase.
fb6dea26
JB
268 */
269void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
270{
271 struct btrfs_fs_info *fs_info = trans->fs_info;
272
273 if (!trans->chunk_bytes_reserved)
274 return;
275
fb6dea26 276 btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
63f018be 277 trans->chunk_bytes_reserved, NULL);
fb6dea26
JB
278 trans->chunk_bytes_reserved = 0;
279}
280
d352ac68
CM
281/*
282 * either allocate a new transaction or hop into the existing one
283 */
2ff7e61e
JM
284static noinline int join_transaction(struct btrfs_fs_info *fs_info,
285 unsigned int type)
79154b1b
CM
286{
287 struct btrfs_transaction *cur_trans;
a4abeea4 288
19ae4e81 289 spin_lock(&fs_info->trans_lock);
d43317dc 290loop:
49b25e05 291 /* The file system has been taken offline. No new transactions. */
84961539 292 if (BTRFS_FS_ERROR(fs_info)) {
19ae4e81 293 spin_unlock(&fs_info->trans_lock);
49b25e05
JM
294 return -EROFS;
295 }
296
19ae4e81 297 cur_trans = fs_info->running_transaction;
a4abeea4 298 if (cur_trans) {
bf31f87f 299 if (TRANS_ABORTED(cur_trans)) {
19ae4e81 300 spin_unlock(&fs_info->trans_lock);
49b25e05 301 return cur_trans->aborted;
871383be 302 }
4a9d8bde 303 if (btrfs_blocked_trans_types[cur_trans->state] & type) {
178260b2
MX
304 spin_unlock(&fs_info->trans_lock);
305 return -EBUSY;
306 }
9b64f57d 307 refcount_inc(&cur_trans->use_count);
13c5a93e 308 atomic_inc(&cur_trans->num_writers);
0860adfd 309 extwriter_counter_inc(cur_trans, type);
19ae4e81 310 spin_unlock(&fs_info->trans_lock);
a4abeea4 311 return 0;
79154b1b 312 }
19ae4e81 313 spin_unlock(&fs_info->trans_lock);
a4abeea4 314
354aa0fb
MX
315 /*
316 * If we are ATTACH, we just want to catch the current transaction,
317 * and commit it. If there is no transaction, just return ENOENT.
318 */
319 if (type == TRANS_ATTACH)
320 return -ENOENT;
321
4a9d8bde
MX
322 /*
323 * JOIN_NOLOCK only happens during the transaction commit, so
324 * it is impossible that ->running_transaction is NULL
325 */
326 BUG_ON(type == TRANS_JOIN_NOLOCK);
327
4b5faeac 328 cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
a4abeea4
JB
329 if (!cur_trans)
330 return -ENOMEM;
d43317dc 331
19ae4e81
JS
332 spin_lock(&fs_info->trans_lock);
333 if (fs_info->running_transaction) {
d43317dc
CM
334 /*
335 * someone started a transaction after we unlocked. Make sure
4a9d8bde 336 * to redo the checks above
d43317dc 337 */
4b5faeac 338 kfree(cur_trans);
d43317dc 339 goto loop;
84961539 340 } else if (BTRFS_FS_ERROR(fs_info)) {
e4b50e14 341 spin_unlock(&fs_info->trans_lock);
4b5faeac 342 kfree(cur_trans);
7b8b92af 343 return -EROFS;
79154b1b 344 }
d43317dc 345
ab8d0fc4 346 cur_trans->fs_info = fs_info;
48778179
FM
347 atomic_set(&cur_trans->pending_ordered, 0);
348 init_waitqueue_head(&cur_trans->pending_wait);
a4abeea4 349 atomic_set(&cur_trans->num_writers, 1);
0860adfd 350 extwriter_counter_init(cur_trans, type);
a4abeea4
JB
351 init_waitqueue_head(&cur_trans->writer_wait);
352 init_waitqueue_head(&cur_trans->commit_wait);
4a9d8bde 353 cur_trans->state = TRANS_STATE_RUNNING;
a4abeea4
JB
354 /*
355 * One for this trans handle, one so it will live on until we
356 * commit the transaction.
357 */
9b64f57d 358 refcount_set(&cur_trans->use_count, 2);
3204d33c 359 cur_trans->flags = 0;
afd48513 360 cur_trans->start_time = ktime_get_seconds();
a4abeea4 361
a099d0fd
AM
362 memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
363
5c9d028b 364 cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3368d001 365 cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
d7df2c79 366 atomic_set(&cur_trans->delayed_refs.num_entries, 0);
20b297d6
JS
367
368 /*
369 * although the tree mod log is per file system and not per transaction,
370 * the log must never go across transaction boundaries.
371 */
372 smp_mb();
31b1a2bd 373 if (!list_empty(&fs_info->tree_mod_seq_list))
5d163e0e 374 WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
31b1a2bd 375 if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
5d163e0e 376 WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
fc36ed7e 377 atomic64_set(&fs_info->tree_mod_seq, 0);
20b297d6 378
a4abeea4
JB
379 spin_lock_init(&cur_trans->delayed_refs.lock);
380
381 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
bbbf7243 382 INIT_LIST_HEAD(&cur_trans->dev_update_list);
9e351cc8 383 INIT_LIST_HEAD(&cur_trans->switch_commits);
ce93ec54 384 INIT_LIST_HEAD(&cur_trans->dirty_bgs);
1bbc621e 385 INIT_LIST_HEAD(&cur_trans->io_bgs);
2b9dbef2 386 INIT_LIST_HEAD(&cur_trans->dropped_roots);
1bbc621e 387 mutex_init(&cur_trans->cache_write_mutex);
ce93ec54 388 spin_lock_init(&cur_trans->dirty_bgs_lock);
e33e17ee 389 INIT_LIST_HEAD(&cur_trans->deleted_bgs);
2b9dbef2 390 spin_lock_init(&cur_trans->dropped_roots_lock);
d3575156
NA
391 INIT_LIST_HEAD(&cur_trans->releasing_ebs);
392 spin_lock_init(&cur_trans->releasing_ebs_lock);
19ae4e81 393 list_add_tail(&cur_trans->list, &fs_info->trans_list);
c258d6e3 394 extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
43eb5f29 395 IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode);
fe119a6e
NB
396 extent_io_tree_init(fs_info, &cur_trans->pinned_extents,
397 IO_TREE_FS_PINNED_EXTENTS, NULL);
19ae4e81
JS
398 fs_info->generation++;
399 cur_trans->transid = fs_info->generation;
400 fs_info->running_transaction = cur_trans;
49b25e05 401 cur_trans->aborted = 0;
19ae4e81 402 spin_unlock(&fs_info->trans_lock);
15ee9bc7 403
79154b1b
CM
404 return 0;
405}
406
d352ac68 407/*
92a7cc42
QW
408 * This does all the record keeping required to make sure that a shareable root
409 * is properly recorded in a given transaction. This is required to make sure
410 * the old root from before we joined the transaction is deleted when the
411 * transaction commits.
d352ac68 412 */
7585717f 413static int record_root_in_trans(struct btrfs_trans_handle *trans,
6426c7ad
QW
414 struct btrfs_root *root,
415 int force)
6702ed49 416{
0b246afa 417 struct btrfs_fs_info *fs_info = root->fs_info;
03a7e111 418 int ret = 0;
0b246afa 419
92a7cc42 420 if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
6426c7ad 421 root->last_trans < trans->transid) || force) {
0b246afa 422 WARN_ON(root == fs_info->extent_root);
4d31778a 423 WARN_ON(!force && root->commit_root != root->node);
5d4f98a2 424
7585717f 425 /*
27cdeb70 426 * see below for IN_TRANS_SETUP usage rules
7585717f
CM
427 * we have the reloc mutex held now, so there
428 * is only one writer in this function
429 */
27cdeb70 430 set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
7585717f 431
27cdeb70 432 /* make sure readers find IN_TRANS_SETUP before
7585717f
CM
433 * they find our root->last_trans update
434 */
435 smp_wmb();
436
0b246afa 437 spin_lock(&fs_info->fs_roots_radix_lock);
6426c7ad 438 if (root->last_trans == trans->transid && !force) {
0b246afa 439 spin_unlock(&fs_info->fs_roots_radix_lock);
a4abeea4
JB
440 return 0;
441 }
0b246afa
JM
442 radix_tree_tag_set(&fs_info->fs_roots_radix,
443 (unsigned long)root->root_key.objectid,
444 BTRFS_ROOT_TRANS_TAG);
445 spin_unlock(&fs_info->fs_roots_radix_lock);
7585717f
CM
446 root->last_trans = trans->transid;
447
448 /* this is pretty tricky. We don't want to
449 * take the relocation lock in btrfs_record_root_in_trans
450 * unless we're really doing the first setup for this root in
451 * this transaction.
452 *
453 * Normally we'd use root->last_trans as a flag to decide
454 * if we want to take the expensive mutex.
455 *
456 * But, we have to set root->last_trans before we
457 * init the relocation root, otherwise, we trip over warnings
458 * in ctree.c. The solution used here is to flag ourselves
27cdeb70 459 * with root IN_TRANS_SETUP. When this is 1, we're still
7585717f
CM
460 * fixing up the reloc trees and everyone must wait.
461 *
462 * When this is zero, they can trust root->last_trans and fly
463 * through btrfs_record_root_in_trans without having to take the
464 * lock. smp_wmb() makes sure that all the writes above are
465 * done before we pop in the zero below
466 */
03a7e111 467 ret = btrfs_init_reloc_root(trans, root);
c7548af6 468 smp_mb__before_atomic();
27cdeb70 469 clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
5d4f98a2 470 }
03a7e111 471 return ret;
5d4f98a2 472}
bcc63abb 473
7585717f 474
2b9dbef2
JB
475void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
476 struct btrfs_root *root)
477{
0b246afa 478 struct btrfs_fs_info *fs_info = root->fs_info;
2b9dbef2
JB
479 struct btrfs_transaction *cur_trans = trans->transaction;
480
481 /* Add ourselves to the transaction dropped list */
482 spin_lock(&cur_trans->dropped_roots_lock);
483 list_add_tail(&root->root_list, &cur_trans->dropped_roots);
484 spin_unlock(&cur_trans->dropped_roots_lock);
485
486 /* Make sure we don't try to update the root at commit time */
0b246afa
JM
487 spin_lock(&fs_info->fs_roots_radix_lock);
488 radix_tree_tag_clear(&fs_info->fs_roots_radix,
2b9dbef2
JB
489 (unsigned long)root->root_key.objectid,
490 BTRFS_ROOT_TRANS_TAG);
0b246afa 491 spin_unlock(&fs_info->fs_roots_radix_lock);
2b9dbef2
JB
492}
493
7585717f
CM
494int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
495 struct btrfs_root *root)
496{
0b246afa 497 struct btrfs_fs_info *fs_info = root->fs_info;
1409e6cc 498 int ret;
0b246afa 499
92a7cc42 500 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
7585717f
CM
501 return 0;
502
503 /*
27cdeb70 504 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
7585717f
CM
505 * and barriers
506 */
507 smp_rmb();
508 if (root->last_trans == trans->transid &&
27cdeb70 509 !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
7585717f
CM
510 return 0;
511
0b246afa 512 mutex_lock(&fs_info->reloc_mutex);
1409e6cc 513 ret = record_root_in_trans(trans, root, 0);
0b246afa 514 mutex_unlock(&fs_info->reloc_mutex);
7585717f 515
1409e6cc 516 return ret;
7585717f
CM
517}
518
4a9d8bde
MX
519static inline int is_transaction_blocked(struct btrfs_transaction *trans)
520{
3296bf56 521 return (trans->state >= TRANS_STATE_COMMIT_START &&
501407aa 522 trans->state < TRANS_STATE_UNBLOCKED &&
bf31f87f 523 !TRANS_ABORTED(trans));
4a9d8bde
MX
524}
525
d352ac68
CM
526/* wait for commit against the current transaction to become unblocked
527 * when this is done, it is safe to start a new transaction, but the current
528 * transaction might not be fully on disk.
529 */
2ff7e61e 530static void wait_current_trans(struct btrfs_fs_info *fs_info)
79154b1b 531{
f9295749 532 struct btrfs_transaction *cur_trans;
79154b1b 533
0b246afa
JM
534 spin_lock(&fs_info->trans_lock);
535 cur_trans = fs_info->running_transaction;
4a9d8bde 536 if (cur_trans && is_transaction_blocked(cur_trans)) {
9b64f57d 537 refcount_inc(&cur_trans->use_count);
0b246afa 538 spin_unlock(&fs_info->trans_lock);
72d63ed6 539
0b246afa 540 wait_event(fs_info->transaction_wait,
501407aa 541 cur_trans->state >= TRANS_STATE_UNBLOCKED ||
bf31f87f 542 TRANS_ABORTED(cur_trans));
724e2315 543 btrfs_put_transaction(cur_trans);
a4abeea4 544 } else {
0b246afa 545 spin_unlock(&fs_info->trans_lock);
f9295749 546 }
37d1aeee
CM
547}
548
2ff7e61e 549static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
a22285a6 550{
0b246afa 551 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
a4abeea4
JB
552 return 0;
553
92e2f7e3 554 if (type == TRANS_START)
a22285a6 555 return 1;
a4abeea4 556
a22285a6
YZ
557 return 0;
558}
559
20dd2cbf
MX
560static inline bool need_reserve_reloc_root(struct btrfs_root *root)
561{
0b246afa
JM
562 struct btrfs_fs_info *fs_info = root->fs_info;
563
564 if (!fs_info->reloc_ctl ||
92a7cc42 565 !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
20dd2cbf
MX
566 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
567 root->reloc_root)
568 return false;
569
570 return true;
571}
572
08e007d2 573static struct btrfs_trans_handle *
5aed1dd8 574start_transaction(struct btrfs_root *root, unsigned int num_items,
003d7c59
JM
575 unsigned int type, enum btrfs_reserve_flush_enum flush,
576 bool enforce_qgroups)
37d1aeee 577{
0b246afa 578 struct btrfs_fs_info *fs_info = root->fs_info;
ba2c4d4e 579 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
a22285a6
YZ
580 struct btrfs_trans_handle *h;
581 struct btrfs_transaction *cur_trans;
b5009945 582 u64 num_bytes = 0;
c5567237 583 u64 qgroup_reserved = 0;
20dd2cbf 584 bool reloc_reserved = false;
9c343784 585 bool do_chunk_alloc = false;
20dd2cbf 586 int ret;
acce952b 587
84961539 588 if (BTRFS_FS_ERROR(fs_info))
acce952b 589 return ERR_PTR(-EROFS);
2a1eb461 590
46c4e71e 591 if (current->journal_info) {
0860adfd 592 WARN_ON(type & TRANS_EXTWRITERS);
2a1eb461 593 h = current->journal_info;
b50fff81
DS
594 refcount_inc(&h->use_count);
595 WARN_ON(refcount_read(&h->use_count) > 2);
2a1eb461
JB
596 h->orig_rsv = h->block_rsv;
597 h->block_rsv = NULL;
598 goto got_it;
599 }
b5009945
JB
600
601 /*
602 * Do the reservation before we join the transaction so we can do all
603 * the appropriate flushing if need be.
604 */
003d7c59 605 if (num_items && root != fs_info->chunk_root) {
ba2c4d4e
JB
606 struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
607 u64 delayed_refs_bytes = 0;
608
0b246afa 609 qgroup_reserved = num_items * fs_info->nodesize;
733e03a0
QW
610 ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
611 enforce_qgroups);
7174109c
QW
612 if (ret)
613 return ERR_PTR(ret);
c5567237 614
ba2c4d4e
JB
615 /*
616 * We want to reserve all the bytes we may need all at once, so
617 * we only do 1 enospc flushing cycle per transaction start. We
618 * accomplish this by simply assuming we'll do 2 x num_items
619 * worth of delayed refs updates in this trans handle, and
620 * refill that amount for whatever is missing in the reserve.
621 */
2bd36e7b 622 num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
7f9fe614
JB
623 if (flush == BTRFS_RESERVE_FLUSH_ALL &&
624 delayed_refs_rsv->full == 0) {
ba2c4d4e
JB
625 delayed_refs_bytes = num_bytes;
626 num_bytes <<= 1;
627 }
628
20dd2cbf
MX
629 /*
630 * Do the reservation for the relocation root creation
631 */
ee39b432 632 if (need_reserve_reloc_root(root)) {
0b246afa 633 num_bytes += fs_info->nodesize;
20dd2cbf
MX
634 reloc_reserved = true;
635 }
636
9270501c 637 ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush);
ba2c4d4e
JB
638 if (ret)
639 goto reserve_fail;
640 if (delayed_refs_bytes) {
641 btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
642 delayed_refs_bytes);
643 num_bytes -= delayed_refs_bytes;
644 }
9c343784
JB
645
646 if (rsv->space_info->force_alloc)
647 do_chunk_alloc = true;
ba2c4d4e
JB
648 } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
649 !delayed_refs_rsv->full) {
650 /*
651 * Some people call with btrfs_start_transaction(root, 0)
652 * because they can be throttled, but have some other mechanism
653 * for reserving space. We still want these guys to refill the
654 * delayed block_rsv so just add 1 items worth of reservation
655 * here.
656 */
657 ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
b5009945 658 if (ret)
843fcf35 659 goto reserve_fail;
b5009945 660 }
a22285a6 661again:
f2f767e7 662 h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
843fcf35
MX
663 if (!h) {
664 ret = -ENOMEM;
665 goto alloc_fail;
666 }
37d1aeee 667
98114659
JB
668 /*
669 * If we are JOIN_NOLOCK we're already committing a transaction and
670 * waiting on this guy, so we don't need to do the sb_start_intwrite
671 * because we're already holding a ref. We need this because we could
672 * have raced in and did an fsync() on a file which can kick a commit
673 * and then we deadlock with somebody doing a freeze.
354aa0fb
MX
674 *
675 * If we are ATTACH, it means we just want to catch the current
676 * transaction and commit it, so we needn't do sb_start_intwrite().
98114659 677 */
0860adfd 678 if (type & __TRANS_FREEZABLE)
0b246afa 679 sb_start_intwrite(fs_info->sb);
b2b5ef5c 680
2ff7e61e
JM
681 if (may_wait_transaction(fs_info, type))
682 wait_current_trans(fs_info);
a22285a6 683
a4abeea4 684 do {
2ff7e61e 685 ret = join_transaction(fs_info, type);
178260b2 686 if (ret == -EBUSY) {
2ff7e61e 687 wait_current_trans(fs_info);
a6d155d2
FM
688 if (unlikely(type == TRANS_ATTACH ||
689 type == TRANS_JOIN_NOSTART))
178260b2
MX
690 ret = -ENOENT;
691 }
a4abeea4
JB
692 } while (ret == -EBUSY);
693
a43f7f82 694 if (ret < 0)
843fcf35 695 goto join_fail;
0f7d52f4 696
0b246afa 697 cur_trans = fs_info->running_transaction;
a22285a6
YZ
698
699 h->transid = cur_trans->transid;
700 h->transaction = cur_trans;
d13603ef 701 h->root = root;
b50fff81 702 refcount_set(&h->use_count, 1);
64b63580 703 h->fs_info = root->fs_info;
7174109c 704
a698d075 705 h->type = type;
ea658bad 706 INIT_LIST_HEAD(&h->new_bgs);
b7ec40d7 707
a22285a6 708 smp_mb();
3296bf56 709 if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
2ff7e61e 710 may_wait_transaction(fs_info, type)) {
abdd2e80 711 current->journal_info = h;
3a45bb20 712 btrfs_commit_transaction(h);
a22285a6
YZ
713 goto again;
714 }
715
b5009945 716 if (num_bytes) {
0b246afa 717 trace_btrfs_space_reservation(fs_info, "transaction",
2bcc0328 718 h->transid, num_bytes, 1);
0b246afa 719 h->block_rsv = &fs_info->trans_block_rsv;
b5009945 720 h->bytes_reserved = num_bytes;
20dd2cbf 721 h->reloc_reserved = reloc_reserved;
a22285a6 722 }
9ed74f2d 723
2a1eb461 724got_it:
bcf3a3e7 725 if (!current->journal_info)
a22285a6 726 current->journal_info = h;
fcc99734 727
9c343784
JB
728 /*
729 * If the space_info is marked ALLOC_FORCE then we'll get upgraded to
730 * ALLOC_FORCE the first run through, and then we won't allocate for
731 * anybody else who races in later. We don't care about the return
732 * value here.
733 */
734 if (do_chunk_alloc && num_bytes) {
735 u64 flags = h->block_rsv->space_info->flags;
736
737 btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags),
738 CHUNK_ALLOC_NO_FORCE);
739 }
740
fcc99734
QW
741 /*
742 * btrfs_record_root_in_trans() needs to alloc new extents, and may
743 * call btrfs_join_transaction() while we're also starting a
744 * transaction.
745 *
746 * Thus it need to be called after current->journal_info initialized,
747 * or we can deadlock.
748 */
68075ea8
JB
749 ret = btrfs_record_root_in_trans(h, root);
750 if (ret) {
751 /*
752 * The transaction handle is fully initialized and linked with
753 * other structures so it needs to be ended in case of errors,
754 * not just freed.
755 */
756 btrfs_end_transaction(h);
757 return ERR_PTR(ret);
758 }
fcc99734 759
79154b1b 760 return h;
843fcf35
MX
761
762join_fail:
0860adfd 763 if (type & __TRANS_FREEZABLE)
0b246afa 764 sb_end_intwrite(fs_info->sb);
843fcf35
MX
765 kmem_cache_free(btrfs_trans_handle_cachep, h);
766alloc_fail:
767 if (num_bytes)
2ff7e61e 768 btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
63f018be 769 num_bytes, NULL);
843fcf35 770reserve_fail:
733e03a0 771 btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
843fcf35 772 return ERR_PTR(ret);
79154b1b
CM
773}
774
f9295749 775struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
5aed1dd8 776 unsigned int num_items)
f9295749 777{
08e007d2 778 return start_transaction(root, num_items, TRANS_START,
003d7c59 779 BTRFS_RESERVE_FLUSH_ALL, true);
f9295749 780}
003d7c59 781
8eab77ff
FM
782struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
783 struct btrfs_root *root,
7f9fe614 784 unsigned int num_items)
8eab77ff 785{
7f9fe614
JB
786 return start_transaction(root, num_items, TRANS_START,
787 BTRFS_RESERVE_FLUSH_ALL_STEAL, false);
8eab77ff 788}
8407aa46 789
7a7eaa40 790struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
f9295749 791{
003d7c59
JM
792 return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
793 true);
f9295749
CM
794}
795
8d510121 796struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
0af3d00b 797{
575a75d6 798 return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
003d7c59 799 BTRFS_RESERVE_NO_FLUSH, true);
0af3d00b
JB
800}
801
a6d155d2
FM
802/*
803 * Similar to regular join but it never starts a transaction when none is
804 * running or after waiting for the current one to finish.
805 */
806struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
807{
808 return start_transaction(root, 0, TRANS_JOIN_NOSTART,
809 BTRFS_RESERVE_NO_FLUSH, true);
810}
811
d4edf39b
MX
812/*
813 * btrfs_attach_transaction() - catch the running transaction
814 *
815 * It is used when we want to commit the current the transaction, but
816 * don't want to start a new one.
817 *
818 * Note: If this function return -ENOENT, it just means there is no
819 * running transaction. But it is possible that the inactive transaction
820 * is still in the memory, not fully on disk. If you hope there is no
821 * inactive transaction in the fs when -ENOENT is returned, you should
822 * invoke
823 * btrfs_attach_transaction_barrier()
824 */
354aa0fb 825struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
60376ce4 826{
575a75d6 827 return start_transaction(root, 0, TRANS_ATTACH,
003d7c59 828 BTRFS_RESERVE_NO_FLUSH, true);
60376ce4
JB
829}
830
d4edf39b 831/*
90b6d283 832 * btrfs_attach_transaction_barrier() - catch the running transaction
d4edf39b 833 *
52042d8e 834 * It is similar to the above function, the difference is this one
d4edf39b
MX
835 * will wait for all the inactive transactions until they fully
836 * complete.
837 */
838struct btrfs_trans_handle *
839btrfs_attach_transaction_barrier(struct btrfs_root *root)
840{
841 struct btrfs_trans_handle *trans;
842
575a75d6 843 trans = start_transaction(root, 0, TRANS_ATTACH,
003d7c59 844 BTRFS_RESERVE_NO_FLUSH, true);
8d9e220c 845 if (trans == ERR_PTR(-ENOENT))
2ff7e61e 846 btrfs_wait_for_commit(root->fs_info, 0);
d4edf39b
MX
847
848 return trans;
849}
850
d0c2f4fa
FM
851/* Wait for a transaction commit to reach at least the given state. */
852static noinline void wait_for_commit(struct btrfs_transaction *commit,
853 const enum btrfs_trans_state min_state)
89ce8a63 854{
d0c2f4fa 855 wait_event(commit->commit_wait, commit->state >= min_state);
89ce8a63
CM
856}
857
2ff7e61e 858int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
46204592
SW
859{
860 struct btrfs_transaction *cur_trans = NULL, *t;
8cd2807f 861 int ret = 0;
46204592 862
46204592 863 if (transid) {
0b246afa 864 if (transid <= fs_info->last_trans_committed)
a4abeea4 865 goto out;
46204592
SW
866
867 /* find specified transaction */
0b246afa
JM
868 spin_lock(&fs_info->trans_lock);
869 list_for_each_entry(t, &fs_info->trans_list, list) {
46204592
SW
870 if (t->transid == transid) {
871 cur_trans = t;
9b64f57d 872 refcount_inc(&cur_trans->use_count);
8cd2807f 873 ret = 0;
46204592
SW
874 break;
875 }
8cd2807f
MX
876 if (t->transid > transid) {
877 ret = 0;
46204592 878 break;
8cd2807f 879 }
46204592 880 }
0b246afa 881 spin_unlock(&fs_info->trans_lock);
42383020
SW
882
883 /*
884 * The specified transaction doesn't exist, or we
885 * raced with btrfs_commit_transaction
886 */
887 if (!cur_trans) {
0b246afa 888 if (transid > fs_info->last_trans_committed)
42383020 889 ret = -EINVAL;
8cd2807f 890 goto out;
42383020 891 }
46204592
SW
892 } else {
893 /* find newest transaction that is committing | committed */
0b246afa
JM
894 spin_lock(&fs_info->trans_lock);
895 list_for_each_entry_reverse(t, &fs_info->trans_list,
46204592 896 list) {
4a9d8bde
MX
897 if (t->state >= TRANS_STATE_COMMIT_START) {
898 if (t->state == TRANS_STATE_COMPLETED)
3473f3c0 899 break;
46204592 900 cur_trans = t;
9b64f57d 901 refcount_inc(&cur_trans->use_count);
46204592
SW
902 break;
903 }
904 }
0b246afa 905 spin_unlock(&fs_info->trans_lock);
46204592 906 if (!cur_trans)
a4abeea4 907 goto out; /* nothing committing|committed */
46204592
SW
908 }
909
d0c2f4fa 910 wait_for_commit(cur_trans, TRANS_STATE_COMPLETED);
724e2315 911 btrfs_put_transaction(cur_trans);
a4abeea4 912out:
46204592
SW
913 return ret;
914}
915
2ff7e61e 916void btrfs_throttle(struct btrfs_fs_info *fs_info)
37d1aeee 917{
92e2f7e3 918 wait_current_trans(fs_info);
37d1aeee
CM
919}
920
8a8f4dea 921static bool should_end_transaction(struct btrfs_trans_handle *trans)
8929ecfa 922{
2ff7e61e 923 struct btrfs_fs_info *fs_info = trans->fs_info;
0b246afa 924
64403612 925 if (btrfs_check_space_for_delayed_refs(fs_info))
8a8f4dea 926 return true;
36ba022a 927
2ff7e61e 928 return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
8929ecfa
YZ
929}
930
a2633b6a 931bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
8929ecfa
YZ
932{
933 struct btrfs_transaction *cur_trans = trans->transaction;
8929ecfa 934
3296bf56 935 if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
e19eb11f 936 test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags))
a2633b6a 937 return true;
8929ecfa 938
2ff7e61e 939 return should_end_transaction(trans);
8929ecfa
YZ
940}
941
dc60c525
NB
942static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
943
0e34693f 944{
dc60c525
NB
945 struct btrfs_fs_info *fs_info = trans->fs_info;
946
0e34693f
NB
947 if (!trans->block_rsv) {
948 ASSERT(!trans->bytes_reserved);
949 return;
950 }
951
952 if (!trans->bytes_reserved)
953 return;
954
955 ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
956 trace_btrfs_space_reservation(fs_info, "transaction",
957 trans->transid, trans->bytes_reserved, 0);
958 btrfs_block_rsv_release(fs_info, trans->block_rsv,
63f018be 959 trans->bytes_reserved, NULL);
0e34693f
NB
960 trans->bytes_reserved = 0;
961}
962
89ce8a63 963static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
3a45bb20 964 int throttle)
79154b1b 965{
3a45bb20 966 struct btrfs_fs_info *info = trans->fs_info;
8929ecfa 967 struct btrfs_transaction *cur_trans = trans->transaction;
4edc2ca3 968 int err = 0;
c3e69d58 969
b50fff81
DS
970 if (refcount_read(&trans->use_count) > 1) {
971 refcount_dec(&trans->use_count);
2a1eb461
JB
972 trans->block_rsv = trans->orig_rsv;
973 return 0;
974 }
975
dc60c525 976 btrfs_trans_release_metadata(trans);
4c13d758 977 trans->block_rsv = NULL;
c5567237 978
119e80df 979 btrfs_create_pending_block_groups(trans);
ea658bad 980
4fbcdf66
FM
981 btrfs_trans_release_chunk_metadata(trans);
982
0860adfd 983 if (trans->type & __TRANS_FREEZABLE)
0b246afa 984 sb_end_intwrite(info->sb);
6df7881a 985
8929ecfa 986 WARN_ON(cur_trans != info->running_transaction);
13c5a93e
JB
987 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
988 atomic_dec(&cur_trans->num_writers);
0860adfd 989 extwriter_counter_dec(cur_trans, trans->type);
89ce8a63 990
093258e6 991 cond_wake_up(&cur_trans->writer_wait);
724e2315 992 btrfs_put_transaction(cur_trans);
9ed74f2d
JB
993
994 if (current->journal_info == trans)
995 current->journal_info = NULL;
ab78c84d 996
24bbcf04 997 if (throttle)
2ff7e61e 998 btrfs_run_delayed_iputs(info);
24bbcf04 999
84961539 1000 if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) {
4e121c06 1001 wake_up_process(info->transaction_kthread);
fbabd4a3
JB
1002 if (TRANS_ABORTED(trans))
1003 err = trans->aborted;
1004 else
1005 err = -EROFS;
4e121c06 1006 }
49b25e05 1007
4edc2ca3
DJ
1008 kmem_cache_free(btrfs_trans_handle_cachep, trans);
1009 return err;
79154b1b
CM
1010}
1011
3a45bb20 1012int btrfs_end_transaction(struct btrfs_trans_handle *trans)
89ce8a63 1013{
3a45bb20 1014 return __btrfs_end_transaction(trans, 0);
89ce8a63
CM
1015}
1016
3a45bb20 1017int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
89ce8a63 1018{
3a45bb20 1019 return __btrfs_end_transaction(trans, 1);
16cdcec7
MX
1020}
1021
d352ac68
CM
1022/*
1023 * when btree blocks are allocated, they have some corresponding bits set for
1024 * them in one of two extent_io trees. This is used to make sure all of
690587d1 1025 * those extents are sent to disk but does not wait on them
d352ac68 1026 */
2ff7e61e 1027int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
8cef4e16 1028 struct extent_io_tree *dirty_pages, int mark)
79154b1b 1029{
777e6bd7 1030 int err = 0;
7c4452b9 1031 int werr = 0;
0b246afa 1032 struct address_space *mapping = fs_info->btree_inode->i_mapping;
e6138876 1033 struct extent_state *cached_state = NULL;
777e6bd7 1034 u64 start = 0;
5f39d397 1035 u64 end;
7c4452b9 1036
6300463b 1037 atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1728366e 1038 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 1039 mark, &cached_state)) {
663dfbb0
FM
1040 bool wait_writeback = false;
1041
1042 err = convert_extent_bit(dirty_pages, start, end,
1043 EXTENT_NEED_WAIT,
210aa277 1044 mark, &cached_state);
663dfbb0
FM
1045 /*
1046 * convert_extent_bit can return -ENOMEM, which is most of the
1047 * time a temporary error. So when it happens, ignore the error
1048 * and wait for writeback of this range to finish - because we
1049 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
bf89d38f
JM
1050 * to __btrfs_wait_marked_extents() would not know that
1051 * writeback for this range started and therefore wouldn't
1052 * wait for it to finish - we don't want to commit a
1053 * superblock that points to btree nodes/leafs for which
1054 * writeback hasn't finished yet (and without errors).
663dfbb0 1055 * We cleanup any entries left in the io tree when committing
41e7acd3 1056 * the transaction (through extent_io_tree_release()).
663dfbb0
FM
1057 */
1058 if (err == -ENOMEM) {
1059 err = 0;
1060 wait_writeback = true;
1061 }
1062 if (!err)
1063 err = filemap_fdatawrite_range(mapping, start, end);
1728366e
JB
1064 if (err)
1065 werr = err;
663dfbb0
FM
1066 else if (wait_writeback)
1067 werr = filemap_fdatawait_range(mapping, start, end);
e38e2ed7 1068 free_extent_state(cached_state);
663dfbb0 1069 cached_state = NULL;
1728366e
JB
1070 cond_resched();
1071 start = end + 1;
7c4452b9 1072 }
6300463b 1073 atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
690587d1
CM
1074 return werr;
1075}
1076
1077/*
1078 * when btree blocks are allocated, they have some corresponding bits set for
1079 * them in one of two extent_io trees. This is used to make sure all of
1080 * those extents are on disk for transaction or log commit. We wait
1081 * on all the pages and clear them from the dirty pages state tree
1082 */
bf89d38f
JM
1083static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1084 struct extent_io_tree *dirty_pages)
690587d1 1085{
690587d1
CM
1086 int err = 0;
1087 int werr = 0;
0b246afa 1088 struct address_space *mapping = fs_info->btree_inode->i_mapping;
e6138876 1089 struct extent_state *cached_state = NULL;
690587d1
CM
1090 u64 start = 0;
1091 u64 end;
777e6bd7 1092
1728366e 1093 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 1094 EXTENT_NEED_WAIT, &cached_state)) {
663dfbb0
FM
1095 /*
1096 * Ignore -ENOMEM errors returned by clear_extent_bit().
1097 * When committing the transaction, we'll remove any entries
1098 * left in the io tree. For a log commit, we don't remove them
1099 * after committing the log because the tree can be accessed
1100 * concurrently - we do it only at transaction commit time when
41e7acd3 1101 * it's safe to do it (through extent_io_tree_release()).
663dfbb0
FM
1102 */
1103 err = clear_extent_bit(dirty_pages, start, end,
ae0f1625 1104 EXTENT_NEED_WAIT, 0, 0, &cached_state);
663dfbb0
FM
1105 if (err == -ENOMEM)
1106 err = 0;
1107 if (!err)
1108 err = filemap_fdatawait_range(mapping, start, end);
1728366e
JB
1109 if (err)
1110 werr = err;
e38e2ed7
FM
1111 free_extent_state(cached_state);
1112 cached_state = NULL;
1728366e
JB
1113 cond_resched();
1114 start = end + 1;
777e6bd7 1115 }
7c4452b9
CM
1116 if (err)
1117 werr = err;
bf89d38f
JM
1118 return werr;
1119}
656f30db 1120
b9fae2eb 1121static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
bf89d38f
JM
1122 struct extent_io_tree *dirty_pages)
1123{
1124 bool errors = false;
1125 int err;
656f30db 1126
bf89d38f
JM
1127 err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1128 if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1129 errors = true;
1130
1131 if (errors && !err)
1132 err = -EIO;
1133 return err;
1134}
656f30db 1135
bf89d38f
JM
1136int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1137{
1138 struct btrfs_fs_info *fs_info = log_root->fs_info;
1139 struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1140 bool errors = false;
1141 int err;
656f30db 1142
bf89d38f
JM
1143 ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1144
1145 err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1146 if ((mark & EXTENT_DIRTY) &&
1147 test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1148 errors = true;
1149
1150 if ((mark & EXTENT_NEW) &&
1151 test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1152 errors = true;
1153
1154 if (errors && !err)
1155 err = -EIO;
1156 return err;
79154b1b
CM
1157}
1158
690587d1 1159/*
c9b577c0
NB
1160 * When btree blocks are allocated the corresponding extents are marked dirty.
1161 * This function ensures such extents are persisted on disk for transaction or
1162 * log commit.
1163 *
1164 * @trans: transaction whose dirty pages we'd like to write
690587d1 1165 */
70458a58 1166static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
690587d1
CM
1167{
1168 int ret;
1169 int ret2;
c9b577c0 1170 struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
70458a58 1171 struct btrfs_fs_info *fs_info = trans->fs_info;
c6adc9cc 1172 struct blk_plug plug;
690587d1 1173
c6adc9cc 1174 blk_start_plug(&plug);
c9b577c0 1175 ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
c6adc9cc 1176 blk_finish_plug(&plug);
bf89d38f 1177 ret2 = btrfs_wait_extents(fs_info, dirty_pages);
bf0da8c1 1178
41e7acd3 1179 extent_io_tree_release(&trans->transaction->dirty_pages);
c9b577c0 1180
bf0da8c1
CM
1181 if (ret)
1182 return ret;
c9b577c0 1183 else if (ret2)
bf0da8c1 1184 return ret2;
c9b577c0
NB
1185 else
1186 return 0;
d0c803c4
CM
1187}
1188
d352ac68
CM
1189/*
1190 * this is used to update the root pointer in the tree of tree roots.
1191 *
1192 * But, in the case of the extent allocation tree, updating the root
1193 * pointer may allocate blocks which may change the root of the extent
1194 * allocation tree.
1195 *
1196 * So, this loops and repeats and makes sure the cowonly root didn't
1197 * change while the root pointer was being updated in the metadata.
1198 */
0b86a832
CM
1199static int update_cowonly_root(struct btrfs_trans_handle *trans,
1200 struct btrfs_root *root)
79154b1b
CM
1201{
1202 int ret;
0b86a832 1203 u64 old_root_bytenr;
86b9f2ec 1204 u64 old_root_used;
0b246afa
JM
1205 struct btrfs_fs_info *fs_info = root->fs_info;
1206 struct btrfs_root *tree_root = fs_info->tree_root;
79154b1b 1207
86b9f2ec 1208 old_root_used = btrfs_root_used(&root->root_item);
56bec294 1209
d397712b 1210 while (1) {
0b86a832 1211 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec 1212 if (old_root_bytenr == root->node->start &&
ea526d18 1213 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 1214 break;
87ef2bb4 1215
5d4f98a2 1216 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 1217 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
1218 &root->root_key,
1219 &root->root_item);
49b25e05
JM
1220 if (ret)
1221 return ret;
56bec294 1222
86b9f2ec 1223 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 1224 }
276e680d 1225
0b86a832
CM
1226 return 0;
1227}
1228
d352ac68
CM
1229/*
1230 * update all the cowonly tree roots on disk
49b25e05
JM
1231 *
1232 * The error handling in this function may not be obvious. Any of the
1233 * failures will cause the file system to go offline. We still need
1234 * to clean up the delayed refs.
d352ac68 1235 */
9386d8bc 1236static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
0b86a832 1237{
9386d8bc 1238 struct btrfs_fs_info *fs_info = trans->fs_info;
ea526d18 1239 struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
1bbc621e 1240 struct list_head *io_bgs = &trans->transaction->io_bgs;
0b86a832 1241 struct list_head *next;
84234f3a 1242 struct extent_buffer *eb;
56bec294 1243 int ret;
84234f3a 1244
dfba78dc
FM
1245 /*
1246 * At this point no one can be using this transaction to modify any tree
1247 * and no one can start another transaction to modify any tree either.
1248 */
1249 ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1250
84234f3a 1251 eb = btrfs_lock_root_node(fs_info->tree_root);
49b25e05 1252 ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
9631e4cc 1253 0, &eb, BTRFS_NESTING_COW);
84234f3a
YZ
1254 btrfs_tree_unlock(eb);
1255 free_extent_buffer(eb);
0b86a832 1256
49b25e05
JM
1257 if (ret)
1258 return ret;
87ef2bb4 1259
196c9d8d 1260 ret = btrfs_run_dev_stats(trans);
c16ce190
JB
1261 if (ret)
1262 return ret;
2b584c68 1263 ret = btrfs_run_dev_replace(trans);
c16ce190
JB
1264 if (ret)
1265 return ret;
280f8bd2 1266 ret = btrfs_run_qgroups(trans);
c16ce190
JB
1267 if (ret)
1268 return ret;
546adb0d 1269
bbebb3e0 1270 ret = btrfs_setup_space_cache(trans);
dcdf7f6d
JB
1271 if (ret)
1272 return ret;
1273
ea526d18 1274again:
d397712b 1275 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
2ff7e61e 1276 struct btrfs_root *root;
0b86a832
CM
1277 next = fs_info->dirty_cowonly_roots.next;
1278 list_del_init(next);
1279 root = list_entry(next, struct btrfs_root, dirty_list);
e7070be1 1280 clear_bit(BTRFS_ROOT_DIRTY, &root->state);
87ef2bb4 1281
9e351cc8
JB
1282 if (root != fs_info->extent_root)
1283 list_add_tail(&root->dirty_list,
1284 &trans->transaction->switch_commits);
49b25e05
JM
1285 ret = update_cowonly_root(trans, root);
1286 if (ret)
1287 return ret;
79154b1b 1288 }
276e680d 1289
488bc2a2
JB
1290 /* Now flush any delayed refs generated by updating all of the roots */
1291 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1292 if (ret)
1293 return ret;
1294
1bbc621e 1295 while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
5742d15f 1296 ret = btrfs_write_dirty_block_groups(trans);
ea526d18
JB
1297 if (ret)
1298 return ret;
488bc2a2
JB
1299
1300 /*
1301 * We're writing the dirty block groups, which could generate
1302 * delayed refs, which could generate more dirty block groups,
1303 * so we want to keep this flushing in this loop to make sure
1304 * everything gets run.
1305 */
c79a70b1 1306 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
ea526d18
JB
1307 if (ret)
1308 return ret;
1309 }
1310
1311 if (!list_empty(&fs_info->dirty_cowonly_roots))
1312 goto again;
1313
9e351cc8
JB
1314 list_add_tail(&fs_info->extent_root->dirty_list,
1315 &trans->transaction->switch_commits);
9f6cbcbb
DS
1316
1317 /* Update dev-replace pointer once everything is committed */
1318 fs_info->dev_replace.committed_cursor_left =
1319 fs_info->dev_replace.cursor_left_last_write_of_item;
8dabb742 1320
79154b1b
CM
1321 return 0;
1322}
1323
d352ac68
CM
1324/*
1325 * dead roots are old snapshots that need to be deleted. This allocates
1326 * a dirty root struct and adds it into the list of dead roots that need to
1327 * be deleted
1328 */
cfad392b 1329void btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 1330{
0b246afa
JM
1331 struct btrfs_fs_info *fs_info = root->fs_info;
1332
1333 spin_lock(&fs_info->trans_lock);
dc9492c1
JB
1334 if (list_empty(&root->root_list)) {
1335 btrfs_grab_root(root);
0b246afa 1336 list_add_tail(&root->root_list, &fs_info->dead_roots);
dc9492c1 1337 }
0b246afa 1338 spin_unlock(&fs_info->trans_lock);
5eda7b5e
CM
1339}
1340
d352ac68 1341/*
dfba78dc
FM
1342 * Update each subvolume root and its relocation root, if it exists, in the tree
1343 * of tree roots. Also free log roots if they exist.
d352ac68 1344 */
7e4443d9 1345static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
0f7d52f4 1346{
7e4443d9 1347 struct btrfs_fs_info *fs_info = trans->fs_info;
0f7d52f4 1348 struct btrfs_root *gang[8];
0f7d52f4
CM
1349 int i;
1350 int ret;
54aa1f4d 1351
dfba78dc
FM
1352 /*
1353 * At this point no one can be using this transaction to modify any tree
1354 * and no one can start another transaction to modify any tree either.
1355 */
1356 ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1357
a4abeea4 1358 spin_lock(&fs_info->fs_roots_radix_lock);
d397712b 1359 while (1) {
5d4f98a2
YZ
1360 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
1361 (void **)gang, 0,
0f7d52f4
CM
1362 ARRAY_SIZE(gang),
1363 BTRFS_ROOT_TRANS_TAG);
1364 if (ret == 0)
1365 break;
1366 for (i = 0; i < ret; i++) {
5b4aacef 1367 struct btrfs_root *root = gang[i];
4f4317c1
JB
1368 int ret2;
1369
dfba78dc
FM
1370 /*
1371 * At this point we can neither have tasks logging inodes
1372 * from a root nor trying to commit a log tree.
1373 */
1374 ASSERT(atomic_read(&root->log_writers) == 0);
1375 ASSERT(atomic_read(&root->log_commit[0]) == 0);
1376 ASSERT(atomic_read(&root->log_commit[1]) == 0);
1377
5d4f98a2
YZ
1378 radix_tree_tag_clear(&fs_info->fs_roots_radix,
1379 (unsigned long)root->root_key.objectid,
1380 BTRFS_ROOT_TRANS_TAG);
a4abeea4 1381 spin_unlock(&fs_info->fs_roots_radix_lock);
31153d81 1382
e02119d5 1383 btrfs_free_log(trans, root);
2dd8298e
JB
1384 ret2 = btrfs_update_reloc_root(trans, root);
1385 if (ret2)
1386 return ret2;
bcc63abb 1387
f1ebcc74 1388 /* see comments in should_cow_block() */
27cdeb70 1389 clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
c7548af6 1390 smp_mb__after_atomic();
f1ebcc74 1391
978d910d 1392 if (root->commit_root != root->node) {
9e351cc8
JB
1393 list_add_tail(&root->dirty_list,
1394 &trans->transaction->switch_commits);
978d910d
YZ
1395 btrfs_set_root_node(&root->root_item,
1396 root->node);
1397 }
5d4f98a2 1398
4f4317c1 1399 ret2 = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
1400 &root->root_key,
1401 &root->root_item);
4f4317c1
JB
1402 if (ret2)
1403 return ret2;
a4abeea4 1404 spin_lock(&fs_info->fs_roots_radix_lock);
733e03a0 1405 btrfs_qgroup_free_meta_all_pertrans(root);
0f7d52f4
CM
1406 }
1407 }
a4abeea4 1408 spin_unlock(&fs_info->fs_roots_radix_lock);
4f4317c1 1409 return 0;
0f7d52f4
CM
1410}
1411
d352ac68 1412/*
de78b51a
ES
1413 * defrag a given btree.
1414 * Every leaf in the btree is read and defragged.
d352ac68 1415 */
de78b51a 1416int btrfs_defrag_root(struct btrfs_root *root)
e9d0b13b
CM
1417{
1418 struct btrfs_fs_info *info = root->fs_info;
e9d0b13b 1419 struct btrfs_trans_handle *trans;
8929ecfa 1420 int ret;
e9d0b13b 1421
27cdeb70 1422 if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
e9d0b13b 1423 return 0;
8929ecfa 1424
6b80053d 1425 while (1) {
8929ecfa 1426 trans = btrfs_start_transaction(root, 0);
6819703f
DS
1427 if (IS_ERR(trans)) {
1428 ret = PTR_ERR(trans);
1429 break;
1430 }
8929ecfa 1431
de78b51a 1432 ret = btrfs_defrag_leaves(trans, root);
8929ecfa 1433
3a45bb20 1434 btrfs_end_transaction(trans);
2ff7e61e 1435 btrfs_btree_balance_dirty(info);
e9d0b13b
CM
1436 cond_resched();
1437
ab8d0fc4 1438 if (btrfs_fs_closing(info) || ret != -EAGAIN)
e9d0b13b 1439 break;
210549eb 1440
ab8d0fc4
JM
1441 if (btrfs_defrag_cancelled(info)) {
1442 btrfs_debug(info, "defrag_root cancelled");
210549eb
DS
1443 ret = -EAGAIN;
1444 break;
1445 }
e9d0b13b 1446 }
27cdeb70 1447 clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
8929ecfa 1448 return ret;
e9d0b13b
CM
1449}
1450
6426c7ad
QW
1451/*
1452 * Do all special snapshot related qgroup dirty hack.
1453 *
1454 * Will do all needed qgroup inherit and dirty hack like switch commit
1455 * roots inside one transaction and write all btree into disk, to make
1456 * qgroup works.
1457 */
1458static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
1459 struct btrfs_root *src,
1460 struct btrfs_root *parent,
1461 struct btrfs_qgroup_inherit *inherit,
1462 u64 dst_objectid)
1463{
1464 struct btrfs_fs_info *fs_info = src->fs_info;
1465 int ret;
1466
1467 /*
1468 * Save some performance in the case that qgroups are not
1469 * enabled. If this check races with the ioctl, rescan will
1470 * kick in anyway.
1471 */
9ea6e2b5 1472 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
6426c7ad 1473 return 0;
6426c7ad 1474
4d31778a 1475 /*
52042d8e 1476 * Ensure dirty @src will be committed. Or, after coming
4d31778a
QW
1477 * commit_fs_roots() and switch_commit_roots(), any dirty but not
1478 * recorded root will never be updated again, causing an outdated root
1479 * item.
1480 */
1c442d22
JB
1481 ret = record_root_in_trans(trans, src, 1);
1482 if (ret)
1483 return ret;
4d31778a 1484
2a4d84c1
JB
1485 /*
1486 * btrfs_qgroup_inherit relies on a consistent view of the usage for the
1487 * src root, so we must run the delayed refs here.
1488 *
1489 * However this isn't particularly fool proof, because there's no
1490 * synchronization keeping us from changing the tree after this point
1491 * before we do the qgroup_inherit, or even from making changes while
1492 * we're doing the qgroup_inherit. But that's a problem for the future,
1493 * for now flush the delayed refs to narrow the race window where the
1494 * qgroup counters could end up wrong.
1495 */
1496 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1497 if (ret) {
1498 btrfs_abort_transaction(trans, ret);
44365827 1499 return ret;
2a4d84c1
JB
1500 }
1501
7e4443d9 1502 ret = commit_fs_roots(trans);
6426c7ad
QW
1503 if (ret)
1504 goto out;
460fb20a 1505 ret = btrfs_qgroup_account_extents(trans);
6426c7ad
QW
1506 if (ret < 0)
1507 goto out;
1508
1509 /* Now qgroup are all updated, we can inherit it to new qgroups */
a9377422 1510 ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
6426c7ad
QW
1511 inherit);
1512 if (ret < 0)
1513 goto out;
1514
1515 /*
1516 * Now we do a simplified commit transaction, which will:
1517 * 1) commit all subvolume and extent tree
1518 * To ensure all subvolume and extent tree have a valid
1519 * commit_root to accounting later insert_dir_item()
1520 * 2) write all btree blocks onto disk
1521 * This is to make sure later btree modification will be cowed
1522 * Or commit_root can be populated and cause wrong qgroup numbers
1523 * In this simplified commit, we don't really care about other trees
1524 * like chunk and root tree, as they won't affect qgroup.
1525 * And we don't write super to avoid half committed status.
1526 */
9386d8bc 1527 ret = commit_cowonly_roots(trans);
6426c7ad
QW
1528 if (ret)
1529 goto out;
889bfa39 1530 switch_commit_roots(trans);
70458a58 1531 ret = btrfs_write_and_wait_transaction(trans);
6426c7ad 1532 if (ret)
f7af3934 1533 btrfs_handle_fs_error(fs_info, ret,
6426c7ad
QW
1534 "Error while writing out transaction for qgroup");
1535
1536out:
6426c7ad
QW
1537 /*
1538 * Force parent root to be updated, as we recorded it before so its
1539 * last_trans == cur_transid.
1540 * Or it won't be committed again onto disk after later
1541 * insert_dir_item()
1542 */
1543 if (!ret)
1c442d22 1544 ret = record_root_in_trans(trans, parent, 1);
6426c7ad
QW
1545 return ret;
1546}
1547
d352ac68
CM
1548/*
1549 * new snapshots need to be created at a very specific time in the
aec8030a
MX
1550 * transaction commit. This does the actual creation.
1551 *
1552 * Note:
1553 * If the error which may affect the commitment of the current transaction
1554 * happens, we should return the error number. If the error which just affect
1555 * the creation of the pending snapshots, just return 0.
d352ac68 1556 */
80b6794d 1557static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
1558 struct btrfs_pending_snapshot *pending)
1559{
08d50ca3
NB
1560
1561 struct btrfs_fs_info *fs_info = trans->fs_info;
3063d29f 1562 struct btrfs_key key;
80b6794d 1563 struct btrfs_root_item *new_root_item;
3063d29f
CM
1564 struct btrfs_root *tree_root = fs_info->tree_root;
1565 struct btrfs_root *root = pending->root;
6bdb72de 1566 struct btrfs_root *parent_root;
98c9942a 1567 struct btrfs_block_rsv *rsv;
6bdb72de 1568 struct inode *parent_inode;
42874b3d
MX
1569 struct btrfs_path *path;
1570 struct btrfs_dir_item *dir_item;
a22285a6 1571 struct dentry *dentry;
3063d29f 1572 struct extent_buffer *tmp;
925baedd 1573 struct extent_buffer *old;
95582b00 1574 struct timespec64 cur_time;
aec8030a 1575 int ret = 0;
d68fc57b 1576 u64 to_reserve = 0;
6bdb72de 1577 u64 index = 0;
a22285a6 1578 u64 objectid;
b83cc969 1579 u64 root_flags;
3063d29f 1580
8546b570
DS
1581 ASSERT(pending->path);
1582 path = pending->path;
42874b3d 1583
b0c0ea63
DS
1584 ASSERT(pending->root_item);
1585 new_root_item = pending->root_item;
a22285a6 1586
543068a2 1587 pending->error = btrfs_get_free_objectid(tree_root, &objectid);
aec8030a 1588 if (pending->error)
6fa9700e 1589 goto no_free_objectid;
3063d29f 1590
d6726335
QW
1591 /*
1592 * Make qgroup to skip current new snapshot's qgroupid, as it is
1593 * accounted by later btrfs_qgroup_inherit().
1594 */
1595 btrfs_set_skip_qgroup(trans, objectid);
1596
147d256e 1597 btrfs_reloc_pre_snapshot(pending, &to_reserve);
d68fc57b
YZ
1598
1599 if (to_reserve > 0) {
9270501c 1600 pending->error = btrfs_block_rsv_add(fs_info,
aec8030a
MX
1601 &pending->block_rsv,
1602 to_reserve,
1603 BTRFS_RESERVE_NO_FLUSH);
1604 if (pending->error)
d6726335 1605 goto clear_skip_qgroup;
d68fc57b
YZ
1606 }
1607
3063d29f 1608 key.objectid = objectid;
a22285a6
YZ
1609 key.offset = (u64)-1;
1610 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 1611
6fa9700e 1612 rsv = trans->block_rsv;
a22285a6 1613 trans->block_rsv = &pending->block_rsv;
2382c5cc 1614 trans->bytes_reserved = trans->block_rsv->reserved;
0b246afa 1615 trace_btrfs_space_reservation(fs_info, "transaction",
88d3a5aa
JB
1616 trans->transid,
1617 trans->bytes_reserved, 1);
a22285a6 1618 dentry = pending->dentry;
e9662f70 1619 parent_inode = pending->dir;
a22285a6 1620 parent_root = BTRFS_I(parent_inode)->root;
f0118cb6
JB
1621 ret = record_root_in_trans(trans, parent_root, 0);
1622 if (ret)
1623 goto fail;
c2050a45 1624 cur_time = current_time(parent_inode);
04b285f3 1625
3063d29f
CM
1626 /*
1627 * insert the directory item
1628 */
877574e2 1629 ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
49b25e05 1630 BUG_ON(ret); /* -ENOMEM */
42874b3d
MX
1631
1632 /* check if there is a file/dir which has the same name. */
1633 dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
4a0cc7ca 1634 btrfs_ino(BTRFS_I(parent_inode)),
42874b3d
MX
1635 dentry->d_name.name,
1636 dentry->d_name.len, 0);
1637 if (dir_item != NULL && !IS_ERR(dir_item)) {
fe66a05a 1638 pending->error = -EEXIST;
aec8030a 1639 goto dir_item_existed;
42874b3d
MX
1640 } else if (IS_ERR(dir_item)) {
1641 ret = PTR_ERR(dir_item);
66642832 1642 btrfs_abort_transaction(trans, ret);
8732d44f 1643 goto fail;
79787eaa 1644 }
42874b3d 1645 btrfs_release_path(path);
52c26179 1646
e999376f
CM
1647 /*
1648 * pull in the delayed directory update
1649 * and the delayed inode item
1650 * otherwise we corrupt the FS during
1651 * snapshot
1652 */
e5c304e6 1653 ret = btrfs_run_delayed_items(trans);
8732d44f 1654 if (ret) { /* Transaction aborted */
66642832 1655 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1656 goto fail;
1657 }
e999376f 1658
f0118cb6
JB
1659 ret = record_root_in_trans(trans, root, 0);
1660 if (ret) {
1661 btrfs_abort_transaction(trans, ret);
1662 goto fail;
1663 }
6bdb72de
SW
1664 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
1665 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
08fe4db1 1666 btrfs_check_and_init_root_item(new_root_item);
6bdb72de 1667
b83cc969
LZ
1668 root_flags = btrfs_root_flags(new_root_item);
1669 if (pending->readonly)
1670 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1671 else
1672 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1673 btrfs_set_root_flags(new_root_item, root_flags);
1674
8ea05e3a
AB
1675 btrfs_set_root_generation_v2(new_root_item,
1676 trans->transid);
807fc790 1677 generate_random_guid(new_root_item->uuid);
8ea05e3a
AB
1678 memcpy(new_root_item->parent_uuid, root->root_item.uuid,
1679 BTRFS_UUID_SIZE);
70023da2
SB
1680 if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
1681 memset(new_root_item->received_uuid, 0,
1682 sizeof(new_root_item->received_uuid));
1683 memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
1684 memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
1685 btrfs_set_root_stransid(new_root_item, 0);
1686 btrfs_set_root_rtransid(new_root_item, 0);
1687 }
3cae210f
QW
1688 btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
1689 btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
8ea05e3a 1690 btrfs_set_root_otransid(new_root_item, trans->transid);
8ea05e3a 1691
6bdb72de 1692 old = btrfs_lock_root_node(root);
9631e4cc
JB
1693 ret = btrfs_cow_block(trans, root, old, NULL, 0, &old,
1694 BTRFS_NESTING_COW);
79787eaa
JM
1695 if (ret) {
1696 btrfs_tree_unlock(old);
1697 free_extent_buffer(old);
66642832 1698 btrfs_abort_transaction(trans, ret);
8732d44f 1699 goto fail;
79787eaa 1700 }
49b25e05 1701
49b25e05 1702 ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
79787eaa 1703 /* clean up in any case */
6bdb72de
SW
1704 btrfs_tree_unlock(old);
1705 free_extent_buffer(old);
8732d44f 1706 if (ret) {
66642832 1707 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1708 goto fail;
1709 }
f1ebcc74 1710 /* see comments in should_cow_block() */
27cdeb70 1711 set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
f1ebcc74
LB
1712 smp_wmb();
1713
6bdb72de 1714 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
1715 /* record when the snapshot was created in key.offset */
1716 key.offset = trans->transid;
1717 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
1718 btrfs_tree_unlock(tmp);
1719 free_extent_buffer(tmp);
8732d44f 1720 if (ret) {
66642832 1721 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1722 goto fail;
1723 }
6bdb72de 1724
a22285a6
YZ
1725 /*
1726 * insert root back/forward references
1727 */
6025c19f 1728 ret = btrfs_add_root_ref(trans, objectid,
0660b5af 1729 parent_root->root_key.objectid,
4a0cc7ca 1730 btrfs_ino(BTRFS_I(parent_inode)), index,
a22285a6 1731 dentry->d_name.name, dentry->d_name.len);
8732d44f 1732 if (ret) {
66642832 1733 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1734 goto fail;
1735 }
0660b5af 1736
a22285a6 1737 key.offset = (u64)-1;
2dfb1e43 1738 pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev);
79787eaa
JM
1739 if (IS_ERR(pending->snap)) {
1740 ret = PTR_ERR(pending->snap);
2d892ccd 1741 pending->snap = NULL;
66642832 1742 btrfs_abort_transaction(trans, ret);
8732d44f 1743 goto fail;
79787eaa 1744 }
d68fc57b 1745
49b25e05 1746 ret = btrfs_reloc_post_snapshot(trans, pending);
8732d44f 1747 if (ret) {
66642832 1748 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1749 goto fail;
1750 }
361048f5 1751
6426c7ad
QW
1752 /*
1753 * Do special qgroup accounting for snapshot, as we do some qgroup
1754 * snapshot hack to do fast snapshot.
1755 * To co-operate with that hack, we do hack again.
1756 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
1757 */
1758 ret = qgroup_account_snapshot(trans, root, parent_root,
1759 pending->inherit, objectid);
1760 if (ret < 0)
1761 goto fail;
1762
684572df
LF
1763 ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1764 dentry->d_name.len, BTRFS_I(parent_inode),
1765 &key, BTRFS_FT_DIR, index);
42874b3d 1766 /* We have check then name at the beginning, so it is impossible. */
9c52057c 1767 BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
8732d44f 1768 if (ret) {
66642832 1769 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1770 goto fail;
1771 }
42874b3d 1772
6ef06d27 1773 btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
42874b3d 1774 dentry->d_name.len * 2);
04b285f3 1775 parent_inode->i_mtime = parent_inode->i_ctime =
c2050a45 1776 current_time(parent_inode);
729f7961 1777 ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode));
dd5f9615 1778 if (ret) {
66642832 1779 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1780 goto fail;
1781 }
807fc790
AS
1782 ret = btrfs_uuid_tree_add(trans, new_root_item->uuid,
1783 BTRFS_UUID_KEY_SUBVOL,
cdb345a8 1784 objectid);
dd5f9615 1785 if (ret) {
66642832 1786 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1787 goto fail;
1788 }
1789 if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
cdb345a8 1790 ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
dd5f9615
SB
1791 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1792 objectid);
1793 if (ret && ret != -EEXIST) {
66642832 1794 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1795 goto fail;
1796 }
1797 }
d6726335 1798
3063d29f 1799fail:
aec8030a
MX
1800 pending->error = ret;
1801dir_item_existed:
98c9942a 1802 trans->block_rsv = rsv;
2382c5cc 1803 trans->bytes_reserved = 0;
d6726335
QW
1804clear_skip_qgroup:
1805 btrfs_clear_skip_qgroup(trans);
6fa9700e
MX
1806no_free_objectid:
1807 kfree(new_root_item);
b0c0ea63 1808 pending->root_item = NULL;
42874b3d 1809 btrfs_free_path(path);
8546b570
DS
1810 pending->path = NULL;
1811
49b25e05 1812 return ret;
3063d29f
CM
1813}
1814
d352ac68
CM
1815/*
1816 * create all the snapshots we've scheduled for creation
1817 */
08d50ca3 1818static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
3de4586c 1819{
aec8030a 1820 struct btrfs_pending_snapshot *pending, *next;
3de4586c 1821 struct list_head *head = &trans->transaction->pending_snapshots;
aec8030a 1822 int ret = 0;
3de4586c 1823
aec8030a
MX
1824 list_for_each_entry_safe(pending, next, head, list) {
1825 list_del(&pending->list);
08d50ca3 1826 ret = create_pending_snapshot(trans, pending);
aec8030a
MX
1827 if (ret)
1828 break;
1829 }
1830 return ret;
3de4586c
CM
1831}
1832
2ff7e61e 1833static void update_super_roots(struct btrfs_fs_info *fs_info)
5d4f98a2
YZ
1834{
1835 struct btrfs_root_item *root_item;
1836 struct btrfs_super_block *super;
1837
0b246afa 1838 super = fs_info->super_copy;
5d4f98a2 1839
0b246afa 1840 root_item = &fs_info->chunk_root->root_item;
093e037c
DS
1841 super->chunk_root = root_item->bytenr;
1842 super->chunk_root_generation = root_item->generation;
1843 super->chunk_root_level = root_item->level;
5d4f98a2 1844
0b246afa 1845 root_item = &fs_info->tree_root->root_item;
093e037c
DS
1846 super->root = root_item->bytenr;
1847 super->generation = root_item->generation;
1848 super->root_level = root_item->level;
0b246afa 1849 if (btrfs_test_opt(fs_info, SPACE_CACHE))
093e037c 1850 super->cache_generation = root_item->generation;
94846229
BB
1851 else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags))
1852 super->cache_generation = 0;
0b246afa 1853 if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
093e037c 1854 super->uuid_tree_generation = root_item->generation;
5d4f98a2
YZ
1855}
1856
f36f3042
CM
1857int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1858{
4a9d8bde 1859 struct btrfs_transaction *trans;
f36f3042 1860 int ret = 0;
4a9d8bde 1861
a4abeea4 1862 spin_lock(&info->trans_lock);
4a9d8bde
MX
1863 trans = info->running_transaction;
1864 if (trans)
1865 ret = (trans->state >= TRANS_STATE_COMMIT_START);
a4abeea4 1866 spin_unlock(&info->trans_lock);
f36f3042
CM
1867 return ret;
1868}
1869
8929ecfa
YZ
1870int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1871{
4a9d8bde 1872 struct btrfs_transaction *trans;
8929ecfa 1873 int ret = 0;
4a9d8bde 1874
a4abeea4 1875 spin_lock(&info->trans_lock);
4a9d8bde
MX
1876 trans = info->running_transaction;
1877 if (trans)
1878 ret = is_transaction_blocked(trans);
a4abeea4 1879 spin_unlock(&info->trans_lock);
8929ecfa
YZ
1880 return ret;
1881}
1882
bb9c12c9
SW
1883/*
1884 * commit transactions asynchronously. once btrfs_commit_transaction_async
1885 * returns, any subsequent transaction will not be allowed to join.
1886 */
1887struct btrfs_async_commit {
1888 struct btrfs_trans_handle *newtrans;
7892b5af 1889 struct work_struct work;
bb9c12c9
SW
1890};
1891
1892static void do_async_commit(struct work_struct *work)
1893{
1894 struct btrfs_async_commit *ac =
7892b5af 1895 container_of(work, struct btrfs_async_commit, work);
bb9c12c9 1896
6fc4e354
SW
1897 /*
1898 * We've got freeze protection passed with the transaction.
1899 * Tell lockdep about it.
1900 */
b1a06a4b 1901 if (ac->newtrans->type & __TRANS_FREEZABLE)
3a45bb20 1902 __sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS);
6fc4e354 1903
e209db7a
SW
1904 current->journal_info = ac->newtrans;
1905
3a45bb20 1906 btrfs_commit_transaction(ac->newtrans);
bb9c12c9
SW
1907 kfree(ac);
1908}
1909
32cc4f87 1910int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans)
bb9c12c9 1911{
3a45bb20 1912 struct btrfs_fs_info *fs_info = trans->fs_info;
bb9c12c9
SW
1913 struct btrfs_async_commit *ac;
1914 struct btrfs_transaction *cur_trans;
1915
1916 ac = kmalloc(sizeof(*ac), GFP_NOFS);
db5b493a
TI
1917 if (!ac)
1918 return -ENOMEM;
bb9c12c9 1919
7892b5af 1920 INIT_WORK(&ac->work, do_async_commit);
3a45bb20 1921 ac->newtrans = btrfs_join_transaction(trans->root);
3612b495
TI
1922 if (IS_ERR(ac->newtrans)) {
1923 int err = PTR_ERR(ac->newtrans);
1924 kfree(ac);
1925 return err;
1926 }
bb9c12c9
SW
1927
1928 /* take transaction reference */
bb9c12c9 1929 cur_trans = trans->transaction;
9b64f57d 1930 refcount_inc(&cur_trans->use_count);
bb9c12c9 1931
3a45bb20 1932 btrfs_end_transaction(trans);
6fc4e354
SW
1933
1934 /*
1935 * Tell lockdep we've released the freeze rwsem, since the
1936 * async commit thread will be the one to unlock it.
1937 */
b1a06a4b 1938 if (ac->newtrans->type & __TRANS_FREEZABLE)
0b246afa 1939 __sb_writers_release(fs_info->sb, SB_FREEZE_FS);
6fc4e354 1940
7892b5af 1941 schedule_work(&ac->work);
ae5d29d4
DS
1942 /*
1943 * Wait for the current transaction commit to start and block
1944 * subsequent transaction joins
1945 */
1946 wait_event(fs_info->transaction_blocked_wait,
1947 cur_trans->state >= TRANS_STATE_COMMIT_START ||
1948 TRANS_ABORTED(cur_trans));
38e88054
SW
1949 if (current->journal_info == trans)
1950 current->journal_info = NULL;
1951
724e2315 1952 btrfs_put_transaction(cur_trans);
bb9c12c9
SW
1953 return 0;
1954}
1955
49b25e05 1956
97cb39bb 1957static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
49b25e05 1958{
97cb39bb 1959 struct btrfs_fs_info *fs_info = trans->fs_info;
49b25e05
JM
1960 struct btrfs_transaction *cur_trans = trans->transaction;
1961
b50fff81 1962 WARN_ON(refcount_read(&trans->use_count) > 1);
49b25e05 1963
66642832 1964 btrfs_abort_transaction(trans, err);
7b8b92af 1965
0b246afa 1966 spin_lock(&fs_info->trans_lock);
66b6135b 1967
25d8c284
MX
1968 /*
1969 * If the transaction is removed from the list, it means this
1970 * transaction has been committed successfully, so it is impossible
1971 * to call the cleanup function.
1972 */
1973 BUG_ON(list_empty(&cur_trans->list));
66b6135b 1974
0b246afa 1975 if (cur_trans == fs_info->running_transaction) {
4a9d8bde 1976 cur_trans->state = TRANS_STATE_COMMIT_DOING;
0b246afa 1977 spin_unlock(&fs_info->trans_lock);
f094ac32
LB
1978 wait_event(cur_trans->writer_wait,
1979 atomic_read(&cur_trans->num_writers) == 1);
1980
0b246afa 1981 spin_lock(&fs_info->trans_lock);
d7096fc3 1982 }
061dde82
FM
1983
1984 /*
1985 * Now that we know no one else is still using the transaction we can
1986 * remove the transaction from the list of transactions. This avoids
1987 * the transaction kthread from cleaning up the transaction while some
1988 * other task is still using it, which could result in a use-after-free
1989 * on things like log trees, as it forces the transaction kthread to
1990 * wait for this transaction to be cleaned up by us.
1991 */
1992 list_del_init(&cur_trans->list);
1993
0b246afa 1994 spin_unlock(&fs_info->trans_lock);
49b25e05 1995
2ff7e61e 1996 btrfs_cleanup_one_transaction(trans->transaction, fs_info);
49b25e05 1997
0b246afa
JM
1998 spin_lock(&fs_info->trans_lock);
1999 if (cur_trans == fs_info->running_transaction)
2000 fs_info->running_transaction = NULL;
2001 spin_unlock(&fs_info->trans_lock);
4a9d8bde 2002
e0228285 2003 if (trans->type & __TRANS_FREEZABLE)
0b246afa 2004 sb_end_intwrite(fs_info->sb);
724e2315
JB
2005 btrfs_put_transaction(cur_trans);
2006 btrfs_put_transaction(cur_trans);
49b25e05 2007
97cb39bb 2008 trace_btrfs_transaction_commit(trans->root);
49b25e05 2009
49b25e05
JM
2010 if (current->journal_info == trans)
2011 current->journal_info = NULL;
0b246afa 2012 btrfs_scrub_cancel(fs_info);
49b25e05
JM
2013
2014 kmem_cache_free(btrfs_trans_handle_cachep, trans);
2015}
2016
c7cc64a9
DS
2017/*
2018 * Release reserved delayed ref space of all pending block groups of the
2019 * transaction and remove them from the list
2020 */
2021static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
2022{
2023 struct btrfs_fs_info *fs_info = trans->fs_info;
32da5386 2024 struct btrfs_block_group *block_group, *tmp;
c7cc64a9
DS
2025
2026 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
2027 btrfs_delayed_refs_rsv_release(fs_info, 1);
2028 list_del_init(&block_group->bg_list);
2029 }
2030}
2031
88090ad3 2032static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
82436617 2033{
ce8ea7cc
JB
2034 /*
2035 * We use writeback_inodes_sb here because if we used
2036 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
2037 * Currently are holding the fs freeze lock, if we do an async flush
2038 * we'll do btrfs_join_transaction() and deadlock because we need to
2039 * wait for the fs freeze lock. Using the direct flushing we benefit
2040 * from already being in a transaction and our join_transaction doesn't
2041 * have to re-take the fs freeze lock.
2042 */
88090ad3 2043 if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
ce8ea7cc 2044 writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
82436617
MX
2045 return 0;
2046}
2047
88090ad3 2048static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
82436617 2049{
88090ad3 2050 if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
6374e57a 2051 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
82436617
MX
2052}
2053
3a45bb20 2054int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
79154b1b 2055{
3a45bb20 2056 struct btrfs_fs_info *fs_info = trans->fs_info;
49b25e05 2057 struct btrfs_transaction *cur_trans = trans->transaction;
8fd17795 2058 struct btrfs_transaction *prev_trans = NULL;
25287e0a 2059 int ret;
79154b1b 2060
35b814f3
NB
2061 ASSERT(refcount_read(&trans->use_count) == 1);
2062
8d25a086 2063 /* Stop the commit early if ->aborted is set */
bf31f87f 2064 if (TRANS_ABORTED(cur_trans)) {
25287e0a 2065 ret = cur_trans->aborted;
3a45bb20 2066 btrfs_end_transaction(trans);
e4a2bcac 2067 return ret;
25287e0a 2068 }
49b25e05 2069
f45c752b
JB
2070 btrfs_trans_release_metadata(trans);
2071 trans->block_rsv = NULL;
2072
56bec294 2073 /*
e19eb11f
JB
2074 * We only want one transaction commit doing the flushing so we do not
2075 * waste a bunch of time on lock contention on the extent root node.
56bec294 2076 */
e19eb11f
JB
2077 if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING,
2078 &cur_trans->delayed_refs.flags)) {
2079 /*
2080 * Make a pass through all the delayed refs we have so far.
2081 * Any running threads may add more while we are here.
2082 */
2083 ret = btrfs_run_delayed_refs(trans, 0);
2084 if (ret) {
2085 btrfs_end_transaction(trans);
2086 return ret;
2087 }
2088 }
56bec294 2089
119e80df 2090 btrfs_create_pending_block_groups(trans);
ea658bad 2091
3204d33c 2092 if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
1bbc621e
CM
2093 int run_it = 0;
2094
2095 /* this mutex is also taken before trying to set
2096 * block groups readonly. We need to make sure
2097 * that nobody has set a block group readonly
2098 * after a extents from that block group have been
2099 * allocated for cache files. btrfs_set_block_group_ro
2100 * will wait for the transaction to commit if it
3204d33c 2101 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
1bbc621e 2102 *
3204d33c
JB
2103 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
2104 * only one process starts all the block group IO. It wouldn't
1bbc621e
CM
2105 * hurt to have more than one go through, but there's no
2106 * real advantage to it either.
2107 */
0b246afa 2108 mutex_lock(&fs_info->ro_block_group_mutex);
3204d33c
JB
2109 if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
2110 &cur_trans->flags))
1bbc621e 2111 run_it = 1;
0b246afa 2112 mutex_unlock(&fs_info->ro_block_group_mutex);
1bbc621e 2113
f9cacae3 2114 if (run_it) {
21217054 2115 ret = btrfs_start_dirty_block_groups(trans);
f9cacae3
NB
2116 if (ret) {
2117 btrfs_end_transaction(trans);
2118 return ret;
2119 }
2120 }
1bbc621e
CM
2121 }
2122
0b246afa 2123 spin_lock(&fs_info->trans_lock);
4a9d8bde 2124 if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
d0c2f4fa
FM
2125 enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2126
0b246afa 2127 spin_unlock(&fs_info->trans_lock);
9b64f57d 2128 refcount_inc(&cur_trans->use_count);
ccd467d6 2129
d0c2f4fa
FM
2130 if (trans->in_fsync)
2131 want_state = TRANS_STATE_SUPER_COMMITTED;
2132 ret = btrfs_end_transaction(trans);
2133 wait_for_commit(cur_trans, want_state);
15ee9bc7 2134
bf31f87f 2135 if (TRANS_ABORTED(cur_trans))
b4924a0f
LB
2136 ret = cur_trans->aborted;
2137
724e2315 2138 btrfs_put_transaction(cur_trans);
15ee9bc7 2139
49b25e05 2140 return ret;
79154b1b 2141 }
4313b399 2142
4a9d8bde 2143 cur_trans->state = TRANS_STATE_COMMIT_START;
0b246afa 2144 wake_up(&fs_info->transaction_blocked_wait);
bb9c12c9 2145
0b246afa 2146 if (cur_trans->list.prev != &fs_info->trans_list) {
d0c2f4fa
FM
2147 enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2148
2149 if (trans->in_fsync)
2150 want_state = TRANS_STATE_SUPER_COMMITTED;
2151
ccd467d6
CM
2152 prev_trans = list_entry(cur_trans->list.prev,
2153 struct btrfs_transaction, list);
d0c2f4fa 2154 if (prev_trans->state < want_state) {
9b64f57d 2155 refcount_inc(&prev_trans->use_count);
0b246afa 2156 spin_unlock(&fs_info->trans_lock);
ccd467d6 2157
d0c2f4fa
FM
2158 wait_for_commit(prev_trans, want_state);
2159
bf31f87f 2160 ret = READ_ONCE(prev_trans->aborted);
ccd467d6 2161
724e2315 2162 btrfs_put_transaction(prev_trans);
1f9b8c8f
FM
2163 if (ret)
2164 goto cleanup_transaction;
a4abeea4 2165 } else {
0b246afa 2166 spin_unlock(&fs_info->trans_lock);
ccd467d6 2167 }
a4abeea4 2168 } else {
0b246afa 2169 spin_unlock(&fs_info->trans_lock);
cb2d3dad
FM
2170 /*
2171 * The previous transaction was aborted and was already removed
2172 * from the list of transactions at fs_info->trans_list. So we
2173 * abort to prevent writing a new superblock that reflects a
2174 * corrupt state (pointing to trees with unwritten nodes/leafs).
2175 */
84961539 2176 if (BTRFS_FS_ERROR(fs_info)) {
cb2d3dad
FM
2177 ret = -EROFS;
2178 goto cleanup_transaction;
2179 }
ccd467d6 2180 }
15ee9bc7 2181
0860adfd
MX
2182 extwriter_counter_dec(cur_trans, trans->type);
2183
88090ad3 2184 ret = btrfs_start_delalloc_flush(fs_info);
82436617
MX
2185 if (ret)
2186 goto cleanup_transaction;
2187
e5c304e6 2188 ret = btrfs_run_delayed_items(trans);
581227d0
MX
2189 if (ret)
2190 goto cleanup_transaction;
15ee9bc7 2191
581227d0
MX
2192 wait_event(cur_trans->writer_wait,
2193 extwriter_counter_read(cur_trans) == 0);
15ee9bc7 2194
581227d0 2195 /* some pending stuffs might be added after the previous flush. */
e5c304e6 2196 ret = btrfs_run_delayed_items(trans);
ca469637
MX
2197 if (ret)
2198 goto cleanup_transaction;
2199
88090ad3 2200 btrfs_wait_delalloc_flush(fs_info);
cb7ab021 2201
48778179
FM
2202 /*
2203 * Wait for all ordered extents started by a fast fsync that joined this
2204 * transaction. Otherwise if this transaction commits before the ordered
2205 * extents complete we lose logged data after a power failure.
2206 */
2207 wait_event(cur_trans->pending_wait,
2208 atomic_read(&cur_trans->pending_ordered) == 0);
2209
2ff7e61e 2210 btrfs_scrub_pause(fs_info);
ed0ca140
JB
2211 /*
2212 * Ok now we need to make sure to block out any other joins while we
2213 * commit the transaction. We could have started a join before setting
4a9d8bde 2214 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
ed0ca140 2215 */
0b246afa 2216 spin_lock(&fs_info->trans_lock);
4a9d8bde 2217 cur_trans->state = TRANS_STATE_COMMIT_DOING;
0b246afa 2218 spin_unlock(&fs_info->trans_lock);
ed0ca140
JB
2219 wait_event(cur_trans->writer_wait,
2220 atomic_read(&cur_trans->num_writers) == 1);
2221
bf31f87f 2222 if (TRANS_ABORTED(cur_trans)) {
2cba30f1 2223 ret = cur_trans->aborted;
6cf7f77e 2224 goto scrub_continue;
2cba30f1 2225 }
7585717f
CM
2226 /*
2227 * the reloc mutex makes sure that we stop
2228 * the balancing code from coming in and moving
2229 * extents around in the middle of the commit
2230 */
0b246afa 2231 mutex_lock(&fs_info->reloc_mutex);
7585717f 2232
42874b3d
MX
2233 /*
2234 * We needn't worry about the delayed items because we will
2235 * deal with them in create_pending_snapshot(), which is the
2236 * core function of the snapshot creation.
2237 */
08d50ca3 2238 ret = create_pending_snapshots(trans);
56e9f6ea
DS
2239 if (ret)
2240 goto unlock_reloc;
3063d29f 2241
42874b3d
MX
2242 /*
2243 * We insert the dir indexes of the snapshots and update the inode
2244 * of the snapshots' parents after the snapshot creation, so there
2245 * are some delayed items which are not dealt with. Now deal with
2246 * them.
2247 *
2248 * We needn't worry that this operation will corrupt the snapshots,
2249 * because all the tree which are snapshoted will be forced to COW
2250 * the nodes and leaves.
2251 */
e5c304e6 2252 ret = btrfs_run_delayed_items(trans);
56e9f6ea
DS
2253 if (ret)
2254 goto unlock_reloc;
16cdcec7 2255
c79a70b1 2256 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
56e9f6ea
DS
2257 if (ret)
2258 goto unlock_reloc;
56bec294 2259
e999376f
CM
2260 /*
2261 * make sure none of the code above managed to slip in a
2262 * delayed item
2263 */
ccdf9b30 2264 btrfs_assert_delayed_root_empty(fs_info);
e999376f 2265
2c90e5d6 2266 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 2267
7e4443d9 2268 ret = commit_fs_roots(trans);
56e9f6ea 2269 if (ret)
dfba78dc 2270 goto unlock_reloc;
54aa1f4d 2271
3818aea2 2272 /*
7e1876ac
DS
2273 * Since the transaction is done, we can apply the pending changes
2274 * before the next transaction.
3818aea2 2275 */
0b246afa 2276 btrfs_apply_pending_changes(fs_info);
3818aea2 2277
5d4f98a2 2278 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
2279 * safe to free the root of tree log roots
2280 */
0b246afa 2281 btrfs_free_log_root_tree(trans, fs_info);
e02119d5 2282
0ed4792a
QW
2283 /*
2284 * Since fs roots are all committed, we can get a quite accurate
2285 * new_roots. So let's do quota accounting.
2286 */
460fb20a 2287 ret = btrfs_qgroup_account_extents(trans);
56e9f6ea 2288 if (ret < 0)
dfba78dc 2289 goto unlock_reloc;
0ed4792a 2290
9386d8bc 2291 ret = commit_cowonly_roots(trans);
56e9f6ea 2292 if (ret)
dfba78dc 2293 goto unlock_reloc;
54aa1f4d 2294
2cba30f1
MX
2295 /*
2296 * The tasks which save the space cache and inode cache may also
2297 * update ->aborted, check it.
2298 */
bf31f87f 2299 if (TRANS_ABORTED(cur_trans)) {
2cba30f1 2300 ret = cur_trans->aborted;
dfba78dc 2301 goto unlock_reloc;
2cba30f1
MX
2302 }
2303
0b246afa 2304 cur_trans = fs_info->running_transaction;
5d4f98a2 2305
0b246afa
JM
2306 btrfs_set_root_node(&fs_info->tree_root->root_item,
2307 fs_info->tree_root->node);
2308 list_add_tail(&fs_info->tree_root->dirty_list,
9e351cc8 2309 &cur_trans->switch_commits);
5d4f98a2 2310
0b246afa
JM
2311 btrfs_set_root_node(&fs_info->chunk_root->root_item,
2312 fs_info->chunk_root->node);
2313 list_add_tail(&fs_info->chunk_root->dirty_list,
9e351cc8
JB
2314 &cur_trans->switch_commits);
2315
889bfa39 2316 switch_commit_roots(trans);
5d4f98a2 2317
ce93ec54 2318 ASSERT(list_empty(&cur_trans->dirty_bgs));
1bbc621e 2319 ASSERT(list_empty(&cur_trans->io_bgs));
2ff7e61e 2320 update_super_roots(fs_info);
e02119d5 2321
0b246afa
JM
2322 btrfs_set_super_log_root(fs_info->super_copy, 0);
2323 btrfs_set_super_log_root_level(fs_info->super_copy, 0);
2324 memcpy(fs_info->super_for_commit, fs_info->super_copy,
2325 sizeof(*fs_info->super_copy));
ccd467d6 2326
bbbf7243 2327 btrfs_commit_device_sizes(cur_trans);
935e5cc9 2328
0b246afa
JM
2329 clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
2330 clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
656f30db 2331
4fbcdf66
FM
2332 btrfs_trans_release_chunk_metadata(trans);
2333
dfba78dc
FM
2334 /*
2335 * Before changing the transaction state to TRANS_STATE_UNBLOCKED and
2336 * setting fs_info->running_transaction to NULL, lock tree_log_mutex to
2337 * make sure that before we commit our superblock, no other task can
2338 * start a new transaction and commit a log tree before we commit our
2339 * superblock. Anyone trying to commit a log tree locks this mutex before
2340 * writing its superblock.
2341 */
2342 mutex_lock(&fs_info->tree_log_mutex);
2343
0b246afa 2344 spin_lock(&fs_info->trans_lock);
4a9d8bde 2345 cur_trans->state = TRANS_STATE_UNBLOCKED;
0b246afa
JM
2346 fs_info->running_transaction = NULL;
2347 spin_unlock(&fs_info->trans_lock);
2348 mutex_unlock(&fs_info->reloc_mutex);
b7ec40d7 2349
0b246afa 2350 wake_up(&fs_info->transaction_wait);
e6dcd2dc 2351
70458a58 2352 ret = btrfs_write_and_wait_transaction(trans);
49b25e05 2353 if (ret) {
0b246afa
JM
2354 btrfs_handle_fs_error(fs_info, ret,
2355 "Error while writing out transaction");
2356 mutex_unlock(&fs_info->tree_log_mutex);
6cf7f77e 2357 goto scrub_continue;
49b25e05
JM
2358 }
2359
d3575156
NA
2360 /*
2361 * At this point, we should have written all the tree blocks allocated
2362 * in this transaction. So it's now safe to free the redirtyied extent
2363 * buffers.
2364 */
2365 btrfs_free_redirty_list(cur_trans);
2366
eece6a9c 2367 ret = write_all_supers(fs_info, 0);
e02119d5
CM
2368 /*
2369 * the super is written, we can safely allow the tree-loggers
2370 * to go about their business
2371 */
0b246afa 2372 mutex_unlock(&fs_info->tree_log_mutex);
c1f32b7c
AJ
2373 if (ret)
2374 goto scrub_continue;
e02119d5 2375
d0c2f4fa
FM
2376 /*
2377 * We needn't acquire the lock here because there is no other task
2378 * which can change it.
2379 */
2380 cur_trans->state = TRANS_STATE_SUPER_COMMITTED;
2381 wake_up(&cur_trans->commit_wait);
2382
5ead2dd0 2383 btrfs_finish_extent_commit(trans);
4313b399 2384
3204d33c 2385 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
0b246afa 2386 btrfs_clear_space_info_full(fs_info);
13212b54 2387
0b246afa 2388 fs_info->last_trans_committed = cur_trans->transid;
4a9d8bde
MX
2389 /*
2390 * We needn't acquire the lock here because there is no other task
2391 * which can change it.
2392 */
2393 cur_trans->state = TRANS_STATE_COMPLETED;
2c90e5d6 2394 wake_up(&cur_trans->commit_wait);
3de4586c 2395
0b246afa 2396 spin_lock(&fs_info->trans_lock);
13c5a93e 2397 list_del_init(&cur_trans->list);
0b246afa 2398 spin_unlock(&fs_info->trans_lock);
a4abeea4 2399
724e2315
JB
2400 btrfs_put_transaction(cur_trans);
2401 btrfs_put_transaction(cur_trans);
58176a96 2402
0860adfd 2403 if (trans->type & __TRANS_FREEZABLE)
0b246afa 2404 sb_end_intwrite(fs_info->sb);
b2b5ef5c 2405
3a45bb20 2406 trace_btrfs_transaction_commit(trans->root);
1abe9b8a 2407
2ff7e61e 2408 btrfs_scrub_continue(fs_info);
a2de733c 2409
9ed74f2d
JB
2410 if (current->journal_info == trans)
2411 current->journal_info = NULL;
2412
2c90e5d6 2413 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04 2414
79154b1b 2415 return ret;
49b25e05 2416
56e9f6ea
DS
2417unlock_reloc:
2418 mutex_unlock(&fs_info->reloc_mutex);
6cf7f77e 2419scrub_continue:
2ff7e61e 2420 btrfs_scrub_continue(fs_info);
49b25e05 2421cleanup_transaction:
dc60c525 2422 btrfs_trans_release_metadata(trans);
c7cc64a9 2423 btrfs_cleanup_pending_block_groups(trans);
4fbcdf66 2424 btrfs_trans_release_chunk_metadata(trans);
0e721106 2425 trans->block_rsv = NULL;
0b246afa 2426 btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
49b25e05
JM
2427 if (current->journal_info == trans)
2428 current->journal_info = NULL;
97cb39bb 2429 cleanup_transaction(trans, ret);
49b25e05
JM
2430
2431 return ret;
79154b1b
CM
2432}
2433
d352ac68 2434/*
9d1a2a3a
DS
2435 * return < 0 if error
2436 * 0 if there are no more dead_roots at the time of call
2437 * 1 there are more to be processed, call me again
2438 *
2439 * The return value indicates there are certainly more snapshots to delete, but
2440 * if there comes a new one during processing, it may return 0. We don't mind,
2441 * because btrfs_commit_super will poke cleaner thread and it will process it a
2442 * few seconds later.
d352ac68 2443 */
9d1a2a3a 2444int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
e9d0b13b 2445{
9d1a2a3a 2446 int ret;
5d4f98a2
YZ
2447 struct btrfs_fs_info *fs_info = root->fs_info;
2448
a4abeea4 2449 spin_lock(&fs_info->trans_lock);
9d1a2a3a
DS
2450 if (list_empty(&fs_info->dead_roots)) {
2451 spin_unlock(&fs_info->trans_lock);
2452 return 0;
2453 }
2454 root = list_first_entry(&fs_info->dead_roots,
2455 struct btrfs_root, root_list);
cfad392b 2456 list_del_init(&root->root_list);
a4abeea4 2457 spin_unlock(&fs_info->trans_lock);
e9d0b13b 2458
4fd786e6 2459 btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
76dda93c 2460
9d1a2a3a 2461 btrfs_kill_all_delayed_nodes(root);
16cdcec7 2462
9d1a2a3a
DS
2463 if (btrfs_header_backref_rev(root->node) <
2464 BTRFS_MIXED_BACKREF_REV)
0078a9f9 2465 ret = btrfs_drop_snapshot(root, 0, 0);
9d1a2a3a 2466 else
0078a9f9 2467 ret = btrfs_drop_snapshot(root, 1, 0);
32471dc2 2468
dc9492c1 2469 btrfs_put_root(root);
6596a928 2470 return (ret < 0) ? 0 : 1;
e9d0b13b 2471}
572d9ab7
DS
2472
2473void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2474{
2475 unsigned long prev;
2476 unsigned long bit;
2477
6c9fe14f 2478 prev = xchg(&fs_info->pending_changes, 0);
572d9ab7
DS
2479 if (!prev)
2480 return;
2481
d51033d0
DS
2482 bit = 1 << BTRFS_PENDING_COMMIT;
2483 if (prev & bit)
2484 btrfs_debug(fs_info, "pending commit done");
2485 prev &= ~bit;
2486
572d9ab7
DS
2487 if (prev)
2488 btrfs_warn(fs_info,
2489 "unknown pending changes left 0x%lx, ignoring", prev);
2490}