blob: 0215dc0b1710a832d4fa6818ed208fe6100df20b [file] [log] [blame]
David Sterba9888c342018-04-03 19:16:55 +02001/* SPDX-License-Identifier: GPL-2.0 */
Josef Bacikfcebe452014-05-13 17:30:47 -07002/*
3 * Copyright (C) 2014 Facebook. All rights reserved.
Josef Bacikfcebe452014-05-13 17:30:47 -07004 */
5
David Sterba9888c342018-04-03 19:16:55 +02006#ifndef BTRFS_QGROUP_H
7#define BTRFS_QGROUP_H
Josef Bacikfcebe452014-05-13 17:30:47 -07008
Qu Wenruo3368d002015-04-16 14:34:17 +08009#include "ulist.h"
10#include "delayed-ref.h"
11
Josef Bacikfcebe452014-05-13 17:30:47 -070012/*
Qu Wenruo1d2beaa2016-10-18 09:31:26 +080013 * Btrfs qgroup overview
14 *
15 * Btrfs qgroup splits into 3 main part:
16 * 1) Reserve
17 * Reserve metadata/data space for incoming operations
18 * Affect how qgroup limit works
19 *
20 * 2) Trace
21 * Tell btrfs qgroup to trace dirty extents.
22 *
23 * Dirty extents including:
24 * - Newly allocated extents
25 * - Extents going to be deleted (in this trans)
26 * - Extents whose owner is going to be modified
27 *
28 * This is the main part affects whether qgroup numbers will stay
29 * consistent.
30 * Btrfs qgroup can trace clean extents and won't cause any problem,
31 * but it will consume extra CPU time, it should be avoided if possible.
32 *
33 * 3) Account
34 * Btrfs qgroup will updates its numbers, based on dirty extents traced
35 * in previous step.
36 *
37 * Normally at qgroup rescan and transaction commit time.
38 */
39
40/*
Qu Wenruo3368d002015-04-16 14:34:17 +080041 * Record a dirty extent, and info qgroup to update quota on it
42 * TODO: Use kmem cache to alloc it.
43 */
44struct btrfs_qgroup_extent_record {
45 struct rb_node node;
46 u64 bytenr;
47 u64 num_bytes;
48 struct ulist *old_roots;
49};
50
Qu Wenruo733e03a2017-12-12 15:34:29 +080051/*
52 * Qgroup reservation types:
53 *
54 * DATA:
55 * space reserved for data
56 *
57 * META_PERTRANS:
58 * Space reserved for metadata (per-transaction)
59 * Due to the fact that qgroup data is only updated at transaction commit
60 * time, reserved space for metadata must be kept until transaction
61 * commits.
62 * Any metadata reserved that are used in btrfs_start_transaction() should
63 * be of this type.
64 *
65 * META_PREALLOC:
66 * There are cases where metadata space is reserved before starting
67 * transaction, and then btrfs_join_transaction() to get a trans handle.
68 * Any metadata reserved for such usage should be of this type.
69 * And after join_transaction() part (or all) of such reservation should
70 * be converted into META_PERTRANS.
71 */
Qu Wenruod4e5c922017-12-12 15:34:23 +080072enum btrfs_qgroup_rsv_type {
73 BTRFS_QGROUP_RSV_DATA = 0,
Qu Wenruo733e03a2017-12-12 15:34:29 +080074 BTRFS_QGROUP_RSV_META_PERTRANS,
75 BTRFS_QGROUP_RSV_META_PREALLOC,
Qu Wenruod4e5c922017-12-12 15:34:23 +080076 BTRFS_QGROUP_RSV_LAST,
77};
78
79/*
80 * Represents how many bytes we have reserved for this qgroup.
81 *
82 * Each type should have different reservation behavior.
83 * E.g, data follows its io_tree flag modification, while
84 * *currently* meta is just reserve-and-clear during transcation.
85 *
86 * TODO: Add new type for reservation which can survive transaction commit.
87 * Currect metadata reservation behavior is not suitable for such case.
88 */
89struct btrfs_qgroup_rsv {
90 u64 values[BTRFS_QGROUP_RSV_LAST];
91};
92
Qu Wenruo81fb6f72015-09-28 16:57:53 +080093/*
Qu Wenruo3159fe72017-03-13 15:52:08 +080094 * one struct for each qgroup, organized in fs_info->qgroup_tree.
95 */
96struct btrfs_qgroup {
97 u64 qgroupid;
98
99 /*
100 * state
101 */
102 u64 rfer; /* referenced */
103 u64 rfer_cmpr; /* referenced compressed */
104 u64 excl; /* exclusive */
105 u64 excl_cmpr; /* exclusive compressed */
106
107 /*
108 * limits
109 */
110 u64 lim_flags; /* which limits are set */
111 u64 max_rfer;
112 u64 max_excl;
113 u64 rsv_rfer;
114 u64 rsv_excl;
115
116 /*
117 * reservation tracking
118 */
Qu Wenruod4e5c922017-12-12 15:34:23 +0800119 struct btrfs_qgroup_rsv rsv;
Qu Wenruo3159fe72017-03-13 15:52:08 +0800120
121 /*
122 * lists
123 */
124 struct list_head groups; /* groups this group is member of */
125 struct list_head members; /* groups that are members of this group */
126 struct list_head dirty; /* dirty groups */
127 struct rb_node node; /* tree of qgroups */
128
129 /*
130 * temp variables for accounting operations
131 * Refer to qgroup_shared_accounting() for details.
132 */
133 u64 old_refcnt;
134 u64 new_refcnt;
135};
136
137/*
Qu Wenruo81fb6f72015-09-28 16:57:53 +0800138 * For qgroup event trace points only
139 */
140#define QGROUP_RESERVE (1<<0)
141#define QGROUP_RELEASE (1<<1)
142#define QGROUP_FREE (1<<2)
143
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300144int btrfs_quota_enable(struct btrfs_fs_info *fs_info);
145int btrfs_quota_disable(struct btrfs_fs_info *fs_info);
Josef Bacikfcebe452014-05-13 17:30:47 -0700146int btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info);
147void btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -0400148int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
149 bool interruptible);
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +0800150int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
151 u64 dst);
Lu Fengqi39616c22018-07-18 14:45:32 +0800152int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
153 u64 dst);
Lu Fengqi49a05ec2018-07-18 14:45:33 +0800154int btrfs_create_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
Lu Fengqi3efbee12018-07-18 14:45:34 +0800155int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
Lu Fengqif0042d52018-07-18 14:45:35 +0800156int btrfs_limit_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid,
Josef Bacikfcebe452014-05-13 17:30:47 -0700157 struct btrfs_qgroup_limit *limit);
158int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info);
159void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info);
160struct btrfs_delayed_extent_op;
Qu Wenruod1b8b942017-02-27 15:10:35 +0800161
Qu Wenruocb93b522016-08-15 10:36:50 +0800162/*
Qu Wenruo50b3e042016-10-18 09:31:27 +0800163 * Inform qgroup to trace one dirty extent, its info is recorded in @record.
Qu Wenruofb235dc2017-02-15 10:43:03 +0800164 * So qgroup can account it at transaction committing time.
Qu Wenruocb93b522016-08-15 10:36:50 +0800165 *
Qu Wenruofb235dc2017-02-15 10:43:03 +0800166 * No lock version, caller must acquire delayed ref lock and allocated memory,
167 * then call btrfs_qgroup_trace_extent_post() after exiting lock context.
Qu Wenruocb93b522016-08-15 10:36:50 +0800168 *
169 * Return 0 for success insert
170 * Return >0 for existing record, caller can free @record safely.
171 * Error is not possible
172 */
Qu Wenruo50b3e042016-10-18 09:31:27 +0800173int btrfs_qgroup_trace_extent_nolock(
Qu Wenruocb93b522016-08-15 10:36:50 +0800174 struct btrfs_fs_info *fs_info,
175 struct btrfs_delayed_ref_root *delayed_refs,
176 struct btrfs_qgroup_extent_record *record);
177
178/*
Qu Wenruofb235dc2017-02-15 10:43:03 +0800179 * Post handler after qgroup_trace_extent_nolock().
180 *
181 * NOTE: Current qgroup does the expensive backref walk at transaction
182 * committing time with TRANS_STATE_COMMIT_DOING, this blocks incoming
183 * new transaction.
184 * This is designed to allow btrfs_find_all_roots() to get correct new_roots
185 * result.
186 *
187 * However for old_roots there is no need to do backref walk at that time,
188 * since we search commit roots to walk backref and result will always be
189 * correct.
190 *
191 * Due to the nature of no lock version, we can't do backref there.
192 * So we must call btrfs_qgroup_trace_extent_post() after exiting
193 * spinlock context.
194 *
195 * TODO: If we can fix and prove btrfs_find_all_roots() can get correct result
196 * using current root, then we can move all expensive backref walk out of
197 * transaction committing, but not now as qgroup accounting will be wrong again.
198 */
199int btrfs_qgroup_trace_extent_post(struct btrfs_fs_info *fs_info,
200 struct btrfs_qgroup_extent_record *qrecord);
201
202/*
Qu Wenruo50b3e042016-10-18 09:31:27 +0800203 * Inform qgroup to trace one dirty extent, specified by @bytenr and
204 * @num_bytes.
205 * So qgroup can account it at commit trans time.
Qu Wenruocb93b522016-08-15 10:36:50 +0800206 *
Qu Wenruofb235dc2017-02-15 10:43:03 +0800207 * Better encapsulated version, with memory allocation and backref walk for
208 * commit roots.
209 * So this can sleep.
Qu Wenruocb93b522016-08-15 10:36:50 +0800210 *
211 * Return 0 if the operation is done.
212 * Return <0 for error, like memory allocation failure or invalid parameter
213 * (NULL trans)
214 */
Lu Fengqia95f3aa2018-07-18 16:28:03 +0800215int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans, u64 bytenr,
216 u64 num_bytes, gfp_t gfp_flag);
Qu Wenruocb93b522016-08-15 10:36:50 +0800217
Qu Wenruo33d1f052016-10-18 09:31:28 +0800218/*
219 * Inform qgroup to trace all leaf items of data
220 *
221 * Return 0 for success
222 * Return <0 for error(ENOMEM)
223 */
224int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400225 struct btrfs_fs_info *fs_info,
Qu Wenruo33d1f052016-10-18 09:31:28 +0800226 struct extent_buffer *eb);
227/*
228 * Inform qgroup to trace a whole subtree, including all its child tree
229 * blocks and data.
230 * The root tree block is specified by @root_eb.
231 *
232 * Normally used by relocation(tree block swap) and subvolume deletion.
233 *
234 * Return 0 for success
235 * Return <0 for error(ENOMEM or tree search error)
236 */
237int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
238 struct btrfs_root *root,
239 struct extent_buffer *root_eb,
240 u64 root_gen, int root_level);
Qu Wenruo442244c2015-04-16 17:18:36 +0800241int
242btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans,
243 struct btrfs_fs_info *fs_info,
244 u64 bytenr, u64 num_bytes,
245 struct ulist *old_roots, struct ulist *new_roots);
Nikolay Borisov460fb202018-03-15 16:00:25 +0200246int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans);
Josef Bacikfcebe452014-05-13 17:30:47 -0700247int btrfs_run_qgroups(struct btrfs_trans_handle *trans,
248 struct btrfs_fs_info *fs_info);
249int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans,
250 struct btrfs_fs_info *fs_info, u64 srcid, u64 objectid,
251 struct btrfs_qgroup_inherit *inherit);
Qu Wenruo297d7502015-09-08 17:08:37 +0800252void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
Qu Wenruod4e5c922017-12-12 15:34:23 +0800253 u64 ref_root, u64 num_bytes,
254 enum btrfs_qgroup_rsv_type type);
Qu Wenruo297d7502015-09-08 17:08:37 +0800255static inline void btrfs_qgroup_free_delayed_ref(struct btrfs_fs_info *fs_info,
256 u64 ref_root, u64 num_bytes)
257{
Jeff Mahoneybc074522016-06-09 17:27:55 -0400258 trace_btrfs_qgroup_free_delayed_ref(fs_info, ref_root, num_bytes);
Qu Wenruod4e5c922017-12-12 15:34:23 +0800259 btrfs_qgroup_free_refroot(fs_info, ref_root, num_bytes,
260 BTRFS_QGROUP_RSV_DATA);
Qu Wenruo297d7502015-09-08 17:08:37 +0800261}
Josef Bacikfcebe452014-05-13 17:30:47 -0700262
263#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
264int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
265 u64 rfer, u64 excl);
266#endif
267
Qu Wenruo52472552015-10-12 16:05:40 +0800268/* New io_tree based accurate qgroup reserve API */
Qu Wenruo364ecf32017-02-27 15:10:38 +0800269int btrfs_qgroup_reserve_data(struct inode *inode,
270 struct extent_changeset **reserved, u64 start, u64 len);
Qu Wenruof695fdc2015-10-12 16:28:06 +0800271int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len);
Qu Wenruobc42bda2017-02-27 15:10:39 +0800272int btrfs_qgroup_free_data(struct inode *inode,
273 struct extent_changeset *reserved, u64 start, u64 len);
Qu Wenruo55eeaf02015-09-08 17:08:38 +0800274
Qu Wenruo733e03a2017-12-12 15:34:29 +0800275int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
276 enum btrfs_qgroup_rsv_type type, bool enforce);
277/* Reserve metadata space for pertrans and prealloc type */
278static inline int btrfs_qgroup_reserve_meta_pertrans(struct btrfs_root *root,
279 int num_bytes, bool enforce)
280{
281 return __btrfs_qgroup_reserve_meta(root, num_bytes,
282 BTRFS_QGROUP_RSV_META_PERTRANS, enforce);
283}
284static inline int btrfs_qgroup_reserve_meta_prealloc(struct btrfs_root *root,
285 int num_bytes, bool enforce)
286{
287 return __btrfs_qgroup_reserve_meta(root, num_bytes,
288 BTRFS_QGROUP_RSV_META_PREALLOC, enforce);
289}
290
291void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
292 enum btrfs_qgroup_rsv_type type);
293
294/* Free per-transaction meta reservation for error handling */
295static inline void btrfs_qgroup_free_meta_pertrans(struct btrfs_root *root,
296 int num_bytes)
297{
298 __btrfs_qgroup_free_meta(root, num_bytes,
299 BTRFS_QGROUP_RSV_META_PERTRANS);
300}
301
302/* Pre-allocated meta reservation can be freed at need */
303static inline void btrfs_qgroup_free_meta_prealloc(struct btrfs_root *root,
304 int num_bytes)
305{
306 __btrfs_qgroup_free_meta(root, num_bytes,
307 BTRFS_QGROUP_RSV_META_PREALLOC);
308}
309
310/*
311 * Per-transaction meta reservation should be all freed at transaction commit
312 * time
313 */
314void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root);
315
Qu Wenruo64cfaef2017-12-12 15:34:31 +0800316/*
317 * Convert @num_bytes of META_PREALLOCATED reservation to META_PERTRANS.
318 *
319 * This is called when preallocated meta reservation needs to be used.
320 * Normally after btrfs_join_transaction() call.
321 */
322void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes);
323
Qu Wenruo56fa9d02015-10-13 09:53:10 +0800324void btrfs_qgroup_check_reserved_leak(struct inode *inode);
David Sterba9888c342018-04-03 19:16:55 +0200325
326#endif