btrfs: introduce BTRFS_QGROUP_RUNTIME_FLAG_CANCEL_RESCAN
[linux-2.6-block.git] / fs / btrfs / qgroup.h
CommitLineData
9888c340 1/* SPDX-License-Identifier: GPL-2.0 */
fcebe456
JB
2/*
3 * Copyright (C) 2014 Facebook. All rights reserved.
fcebe456
JB
4 */
5
9888c340
DS
6#ifndef BTRFS_QGROUP_H
7#define BTRFS_QGROUP_H
fcebe456 8
370a11b8
QW
9#include <linux/spinlock.h>
10#include <linux/rbtree.h>
49e5fb46 11#include <linux/kobject.h>
3368d001
QW
12#include "ulist.h"
13#include "delayed-ref.h"
14
1d2beaa9
QW
15/*
16 * Btrfs qgroup overview
17 *
18 * Btrfs qgroup splits into 3 main part:
19 * 1) Reserve
20 * Reserve metadata/data space for incoming operations
21 * Affect how qgroup limit works
22 *
23 * 2) Trace
24 * Tell btrfs qgroup to trace dirty extents.
25 *
26 * Dirty extents including:
27 * - Newly allocated extents
28 * - Extents going to be deleted (in this trans)
29 * - Extents whose owner is going to be modified
30 *
31 * This is the main part affects whether qgroup numbers will stay
32 * consistent.
33 * Btrfs qgroup can trace clean extents and won't cause any problem,
34 * but it will consume extra CPU time, it should be avoided if possible.
35 *
36 * 3) Account
37 * Btrfs qgroup will updates its numbers, based on dirty extents traced
38 * in previous step.
39 *
40 * Normally at qgroup rescan and transaction commit time.
41 */
42
370a11b8
QW
43/*
44 * Special performance optimization for balance.
45 *
46 * For balance, we need to swap subtree of subvolume and reloc trees.
47 * In theory, we need to trace all subtree blocks of both subvolume and reloc
48 * trees, since their owner has changed during such swap.
49 *
50 * However since balance has ensured that both subtrees are containing the
51 * same contents and have the same tree structures, such swap won't cause
52 * qgroup number change.
53 *
54 * But there is a race window between subtree swap and transaction commit,
55 * during that window, if we increase/decrease tree level or merge/split tree
56 * blocks, we still need to trace the original subtrees.
57 *
58 * So for balance, we use a delayed subtree tracing, whose workflow is:
59 *
60 * 1) Record the subtree root block get swapped.
61 *
62 * During subtree swap:
63 * O = Old tree blocks
64 * N = New tree blocks
65 * reloc tree subvolume tree X
66 * Root Root
67 * / \ / \
68 * NA OB OA OB
69 * / | | \ / | | \
70 * NC ND OE OF OC OD OE OF
71 *
72 * In this case, NA and OA are going to be swapped, record (NA, OA) into
73 * subvolume tree X.
74 *
75 * 2) After subtree swap.
76 * reloc tree subvolume tree X
77 * Root Root
78 * / \ / \
79 * OA OB NA OB
80 * / | | \ / | | \
81 * OC OD OE OF NC ND OE OF
82 *
83 * 3a) COW happens for OB
84 * If we are going to COW tree block OB, we check OB's bytenr against
85 * tree X's swapped_blocks structure.
86 * If it doesn't fit any, nothing will happen.
87 *
88 * 3b) COW happens for NA
89 * Check NA's bytenr against tree X's swapped_blocks, and get a hit.
90 * Then we do subtree scan on both subtrees OA and NA.
91 * Resulting 6 tree blocks to be scanned (OA, OC, OD, NA, NC, ND).
92 *
93 * Then no matter what we do to subvolume tree X, qgroup numbers will
94 * still be correct.
95 * Then NA's record gets removed from X's swapped_blocks.
96 *
97 * 4) Transaction commit
98 * Any record in X's swapped_blocks gets removed, since there is no
99 * modification to the swapped subtrees, no need to trigger heavy qgroup
100 * subtree rescan for them.
101 */
102
e562a8bd
QW
103#define BTRFS_QGROUP_RUNTIME_FLAG_CANCEL_RESCAN (1UL << 3)
104
3368d001
QW
105/*
106 * Record a dirty extent, and info qgroup to update quota on it
107 * TODO: Use kmem cache to alloc it.
108 */
109struct btrfs_qgroup_extent_record {
110 struct rb_node node;
111 u64 bytenr;
112 u64 num_bytes;
1418bae1
QW
113
114 /*
115 * For qgroup reserved data space freeing.
116 *
117 * @data_rsv_refroot and @data_rsv will be recorded after
118 * BTRFS_ADD_DELAYED_EXTENT is called.
119 * And will be used to free reserved qgroup space at
120 * transaction commit time.
121 */
122 u32 data_rsv; /* reserved data space needs to be freed */
123 u64 data_rsv_refroot; /* which root the reserved data belongs to */
3368d001
QW
124 struct ulist *old_roots;
125};
126
370a11b8
QW
127struct btrfs_qgroup_swapped_block {
128 struct rb_node node;
129
130 int level;
131 bool trace_leaf;
132
133 /* bytenr/generation of the tree block in subvolume tree after swap */
134 u64 subvol_bytenr;
135 u64 subvol_generation;
136
137 /* bytenr/generation of the tree block in reloc tree after swap */
138 u64 reloc_bytenr;
139 u64 reloc_generation;
140
141 u64 last_snapshot;
142 struct btrfs_key first_key;
143};
144
733e03a0
QW
145/*
146 * Qgroup reservation types:
147 *
148 * DATA:
149 * space reserved for data
150 *
151 * META_PERTRANS:
152 * Space reserved for metadata (per-transaction)
153 * Due to the fact that qgroup data is only updated at transaction commit
154 * time, reserved space for metadata must be kept until transaction
155 * commits.
156 * Any metadata reserved that are used in btrfs_start_transaction() should
157 * be of this type.
158 *
159 * META_PREALLOC:
160 * There are cases where metadata space is reserved before starting
161 * transaction, and then btrfs_join_transaction() to get a trans handle.
162 * Any metadata reserved for such usage should be of this type.
163 * And after join_transaction() part (or all) of such reservation should
164 * be converted into META_PERTRANS.
165 */
d4e5c920 166enum btrfs_qgroup_rsv_type {
bbe339cc 167 BTRFS_QGROUP_RSV_DATA,
733e03a0
QW
168 BTRFS_QGROUP_RSV_META_PERTRANS,
169 BTRFS_QGROUP_RSV_META_PREALLOC,
d4e5c920
QW
170 BTRFS_QGROUP_RSV_LAST,
171};
172
173/*
174 * Represents how many bytes we have reserved for this qgroup.
175 *
176 * Each type should have different reservation behavior.
177 * E.g, data follows its io_tree flag modification, while
52042d8e 178 * *currently* meta is just reserve-and-clear during transaction.
d4e5c920
QW
179 *
180 * TODO: Add new type for reservation which can survive transaction commit.
52042d8e 181 * Current metadata reservation behavior is not suitable for such case.
d4e5c920
QW
182 */
183struct btrfs_qgroup_rsv {
184 u64 values[BTRFS_QGROUP_RSV_LAST];
185};
186
3159fe7b
QW
187/*
188 * one struct for each qgroup, organized in fs_info->qgroup_tree.
189 */
190struct btrfs_qgroup {
191 u64 qgroupid;
192
193 /*
194 * state
195 */
196 u64 rfer; /* referenced */
197 u64 rfer_cmpr; /* referenced compressed */
198 u64 excl; /* exclusive */
199 u64 excl_cmpr; /* exclusive compressed */
200
201 /*
202 * limits
203 */
204 u64 lim_flags; /* which limits are set */
205 u64 max_rfer;
206 u64 max_excl;
207 u64 rsv_rfer;
208 u64 rsv_excl;
209
210 /*
211 * reservation tracking
212 */
d4e5c920 213 struct btrfs_qgroup_rsv rsv;
3159fe7b
QW
214
215 /*
216 * lists
217 */
218 struct list_head groups; /* groups this group is member of */
219 struct list_head members; /* groups that are members of this group */
220 struct list_head dirty; /* dirty groups */
221 struct rb_node node; /* tree of qgroups */
222
223 /*
224 * temp variables for accounting operations
225 * Refer to qgroup_shared_accounting() for details.
226 */
227 u64 old_refcnt;
228 u64 new_refcnt;
49e5fb46
QW
229
230 /*
231 * Sysfs kobjectid
232 */
233 struct kobject kobj;
3159fe7b
QW
234};
235
49e5fb46
QW
236static inline u64 btrfs_qgroup_subvolid(u64 qgroupid)
237{
238 return (qgroupid & ((1ULL << BTRFS_QGROUP_LEVEL_SHIFT) - 1));
239}
240
81fb6f77
QW
241/*
242 * For qgroup event trace points only
243 */
244#define QGROUP_RESERVE (1<<0)
245#define QGROUP_RELEASE (1<<1)
246#define QGROUP_FREE (1<<2)
247
340f1aa2
NB
248int btrfs_quota_enable(struct btrfs_fs_info *fs_info);
249int btrfs_quota_disable(struct btrfs_fs_info *fs_info);
fcebe456
JB
250int btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info);
251void btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info);
d06f23d6
JM
252int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
253 bool interruptible);
9f8a6ce6
LF
254int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
255 u64 dst);
39616c27
LF
256int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
257 u64 dst);
49a05ecd 258int btrfs_create_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
3efbee1d 259int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
f0042d5e 260int btrfs_limit_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid,
fcebe456
JB
261 struct btrfs_qgroup_limit *limit);
262int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info);
263void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info);
264struct btrfs_delayed_extent_op;
d1b8b94a 265
cb93b52c 266/*
50b3e040 267 * Inform qgroup to trace one dirty extent, its info is recorded in @record.
fb235dc0 268 * So qgroup can account it at transaction committing time.
cb93b52c 269 *
fb235dc0
QW
270 * No lock version, caller must acquire delayed ref lock and allocated memory,
271 * then call btrfs_qgroup_trace_extent_post() after exiting lock context.
cb93b52c
QW
272 *
273 * Return 0 for success insert
274 * Return >0 for existing record, caller can free @record safely.
275 * Error is not possible
276 */
50b3e040 277int btrfs_qgroup_trace_extent_nolock(
cb93b52c
QW
278 struct btrfs_fs_info *fs_info,
279 struct btrfs_delayed_ref_root *delayed_refs,
280 struct btrfs_qgroup_extent_record *record);
281
fb235dc0
QW
282/*
283 * Post handler after qgroup_trace_extent_nolock().
284 *
285 * NOTE: Current qgroup does the expensive backref walk at transaction
286 * committing time with TRANS_STATE_COMMIT_DOING, this blocks incoming
287 * new transaction.
288 * This is designed to allow btrfs_find_all_roots() to get correct new_roots
289 * result.
290 *
291 * However for old_roots there is no need to do backref walk at that time,
292 * since we search commit roots to walk backref and result will always be
293 * correct.
294 *
295 * Due to the nature of no lock version, we can't do backref there.
296 * So we must call btrfs_qgroup_trace_extent_post() after exiting
297 * spinlock context.
298 *
299 * TODO: If we can fix and prove btrfs_find_all_roots() can get correct result
300 * using current root, then we can move all expensive backref walk out of
301 * transaction committing, but not now as qgroup accounting will be wrong again.
302 */
8949b9a1 303int btrfs_qgroup_trace_extent_post(struct btrfs_trans_handle *trans,
fb235dc0
QW
304 struct btrfs_qgroup_extent_record *qrecord);
305
cb93b52c 306/*
50b3e040
QW
307 * Inform qgroup to trace one dirty extent, specified by @bytenr and
308 * @num_bytes.
309 * So qgroup can account it at commit trans time.
cb93b52c 310 *
fb235dc0
QW
311 * Better encapsulated version, with memory allocation and backref walk for
312 * commit roots.
313 * So this can sleep.
cb93b52c
QW
314 *
315 * Return 0 if the operation is done.
316 * Return <0 for error, like memory allocation failure or invalid parameter
317 * (NULL trans)
318 */
a95f3aaf
LF
319int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans, u64 bytenr,
320 u64 num_bytes, gfp_t gfp_flag);
cb93b52c 321
33d1f05c
QW
322/*
323 * Inform qgroup to trace all leaf items of data
324 *
325 * Return 0 for success
326 * Return <0 for error(ENOMEM)
327 */
328int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
33d1f05c
QW
329 struct extent_buffer *eb);
330/*
331 * Inform qgroup to trace a whole subtree, including all its child tree
332 * blocks and data.
333 * The root tree block is specified by @root_eb.
334 *
335 * Normally used by relocation(tree block swap) and subvolume deletion.
336 *
337 * Return 0 for success
338 * Return <0 for error(ENOMEM or tree search error)
339 */
340int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
33d1f05c
QW
341 struct extent_buffer *root_eb,
342 u64 root_gen, int root_level);
8696d760
LF
343int btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans, u64 bytenr,
344 u64 num_bytes, struct ulist *old_roots,
345 struct ulist *new_roots);
460fb20a 346int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans);
280f8bd2 347int btrfs_run_qgroups(struct btrfs_trans_handle *trans);
a9377422
LF
348int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans, u64 srcid,
349 u64 objectid, struct btrfs_qgroup_inherit *inherit);
297d750b 350void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
d4e5c920
QW
351 u64 ref_root, u64 num_bytes,
352 enum btrfs_qgroup_rsv_type type);
fcebe456
JB
353
354#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
355int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
356 u64 rfer, u64 excl);
357#endif
358
52472553 359/* New io_tree based accurate qgroup reserve API */
7661a3e0 360int btrfs_qgroup_reserve_data(struct btrfs_inode *inode,
364ecf36 361 struct extent_changeset **reserved, u64 start, u64 len);
72b7d15b 362int btrfs_qgroup_release_data(struct btrfs_inode *inode, u64 start, u64 len);
8b8a979f
NB
363int btrfs_qgroup_free_data(struct btrfs_inode *inode,
364 struct extent_changeset *reserved, u64 start,
365 u64 len);
80e9baed
NB
366int btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
367 enum btrfs_qgroup_rsv_type type, bool enforce);
733e03a0 368int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
d4135134
FM
369 enum btrfs_qgroup_rsv_type type, bool enforce,
370 bool noflush);
733e03a0
QW
371/* Reserve metadata space for pertrans and prealloc type */
372static inline int btrfs_qgroup_reserve_meta_pertrans(struct btrfs_root *root,
373 int num_bytes, bool enforce)
374{
375 return __btrfs_qgroup_reserve_meta(root, num_bytes,
d4135134
FM
376 BTRFS_QGROUP_RSV_META_PERTRANS,
377 enforce, false);
733e03a0
QW
378}
379static inline int btrfs_qgroup_reserve_meta_prealloc(struct btrfs_root *root,
d4135134
FM
380 int num_bytes, bool enforce,
381 bool noflush)
733e03a0
QW
382{
383 return __btrfs_qgroup_reserve_meta(root, num_bytes,
d4135134
FM
384 BTRFS_QGROUP_RSV_META_PREALLOC,
385 enforce, noflush);
733e03a0
QW
386}
387
388void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
389 enum btrfs_qgroup_rsv_type type);
390
391/* Free per-transaction meta reservation for error handling */
392static inline void btrfs_qgroup_free_meta_pertrans(struct btrfs_root *root,
393 int num_bytes)
394{
395 __btrfs_qgroup_free_meta(root, num_bytes,
396 BTRFS_QGROUP_RSV_META_PERTRANS);
397}
398
399/* Pre-allocated meta reservation can be freed at need */
400static inline void btrfs_qgroup_free_meta_prealloc(struct btrfs_root *root,
401 int num_bytes)
402{
403 __btrfs_qgroup_free_meta(root, num_bytes,
404 BTRFS_QGROUP_RSV_META_PREALLOC);
405}
406
407/*
408 * Per-transaction meta reservation should be all freed at transaction commit
409 * time
410 */
411void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root);
412
64cfaef6
QW
413/*
414 * Convert @num_bytes of META_PREALLOCATED reservation to META_PERTRANS.
415 *
416 * This is called when preallocated meta reservation needs to be used.
417 * Normally after btrfs_join_transaction() call.
418 */
419void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes);
420
cfdd4592 421void btrfs_qgroup_check_reserved_leak(struct btrfs_inode *inode);
9888c340 422
370a11b8
QW
423/* btrfs_qgroup_swapped_blocks related functions */
424void btrfs_qgroup_init_swapped_blocks(
425 struct btrfs_qgroup_swapped_blocks *swapped_blocks);
426
427void btrfs_qgroup_clean_swapped_blocks(struct btrfs_root *root);
428int btrfs_qgroup_add_swapped_blocks(struct btrfs_trans_handle *trans,
429 struct btrfs_root *subvol_root,
32da5386 430 struct btrfs_block_group *bg,
370a11b8
QW
431 struct extent_buffer *subvol_parent, int subvol_slot,
432 struct extent_buffer *reloc_parent, int reloc_slot,
433 u64 last_snapshot);
f616f5cd
QW
434int btrfs_qgroup_trace_subtree_after_cow(struct btrfs_trans_handle *trans,
435 struct btrfs_root *root, struct extent_buffer *eb);
81f7eb00 436void btrfs_qgroup_destroy_extent_records(struct btrfs_transaction *trans);
5958253c 437bool btrfs_check_quota_leak(struct btrfs_fs_info *fs_info);
370a11b8 438
9888c340 439#endif