blob: 880e9df0dac1d74d5905de08c13bfe5e7339351f [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 Wenruo370a11b2019-01-23 15:15:16 +08009#include <linux/spinlock.h>
10#include <linux/rbtree.h>
Qu Wenruo49e5fb42020-06-28 13:07:15 +080011#include <linux/kobject.h>
Qu Wenruo3368d002015-04-16 14:34:17 +080012#include "ulist.h"
13#include "delayed-ref.h"
14
Josef Bacikfcebe452014-05-13 17:30:47 -070015/*
Qu Wenruo1d2beaa2016-10-18 09:31:26 +080016 * 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
43/*
Qu Wenruo370a11b2019-01-23 15:15:16 +080044 * 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
103/*
Qu Wenruo3368d002015-04-16 14:34:17 +0800104 * Record a dirty extent, and info qgroup to update quota on it
105 * TODO: Use kmem cache to alloc it.
106 */
107struct btrfs_qgroup_extent_record {
108 struct rb_node node;
109 u64 bytenr;
110 u64 num_bytes;
Qu Wenruo1418bae2019-01-23 15:15:12 +0800111
112 /*
113 * For qgroup reserved data space freeing.
114 *
115 * @data_rsv_refroot and @data_rsv will be recorded after
116 * BTRFS_ADD_DELAYED_EXTENT is called.
117 * And will be used to free reserved qgroup space at
118 * transaction commit time.
119 */
120 u32 data_rsv; /* reserved data space needs to be freed */
121 u64 data_rsv_refroot; /* which root the reserved data belongs to */
Qu Wenruo3368d002015-04-16 14:34:17 +0800122 struct ulist *old_roots;
123};
124
Qu Wenruo370a11b2019-01-23 15:15:16 +0800125struct btrfs_qgroup_swapped_block {
126 struct rb_node node;
127
128 int level;
129 bool trace_leaf;
130
131 /* bytenr/generation of the tree block in subvolume tree after swap */
132 u64 subvol_bytenr;
133 u64 subvol_generation;
134
135 /* bytenr/generation of the tree block in reloc tree after swap */
136 u64 reloc_bytenr;
137 u64 reloc_generation;
138
139 u64 last_snapshot;
140 struct btrfs_key first_key;
141};
142
Qu Wenruo733e03a2017-12-12 15:34:29 +0800143/*
144 * Qgroup reservation types:
145 *
146 * DATA:
147 * space reserved for data
148 *
149 * META_PERTRANS:
150 * Space reserved for metadata (per-transaction)
151 * Due to the fact that qgroup data is only updated at transaction commit
152 * time, reserved space for metadata must be kept until transaction
153 * commits.
154 * Any metadata reserved that are used in btrfs_start_transaction() should
155 * be of this type.
156 *
157 * META_PREALLOC:
158 * There are cases where metadata space is reserved before starting
159 * transaction, and then btrfs_join_transaction() to get a trans handle.
160 * Any metadata reserved for such usage should be of this type.
161 * And after join_transaction() part (or all) of such reservation should
162 * be converted into META_PERTRANS.
163 */
Qu Wenruod4e5c922017-12-12 15:34:23 +0800164enum btrfs_qgroup_rsv_type {
David Sterbabbe339c2018-11-27 15:25:13 +0100165 BTRFS_QGROUP_RSV_DATA,
Qu Wenruo733e03a2017-12-12 15:34:29 +0800166 BTRFS_QGROUP_RSV_META_PERTRANS,
167 BTRFS_QGROUP_RSV_META_PREALLOC,
Qu Wenruod4e5c922017-12-12 15:34:23 +0800168 BTRFS_QGROUP_RSV_LAST,
169};
170
171/*
172 * Represents how many bytes we have reserved for this qgroup.
173 *
174 * Each type should have different reservation behavior.
175 * E.g, data follows its io_tree flag modification, while
Andrea Gelmini52042d82018-11-28 12:05:13 +0100176 * *currently* meta is just reserve-and-clear during transaction.
Qu Wenruod4e5c922017-12-12 15:34:23 +0800177 *
178 * TODO: Add new type for reservation which can survive transaction commit.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100179 * Current metadata reservation behavior is not suitable for such case.
Qu Wenruod4e5c922017-12-12 15:34:23 +0800180 */
181struct btrfs_qgroup_rsv {
182 u64 values[BTRFS_QGROUP_RSV_LAST];
183};
184
Qu Wenruo81fb6f72015-09-28 16:57:53 +0800185/*
Qu Wenruo3159fe72017-03-13 15:52:08 +0800186 * one struct for each qgroup, organized in fs_info->qgroup_tree.
187 */
188struct btrfs_qgroup {
189 u64 qgroupid;
190
191 /*
192 * state
193 */
194 u64 rfer; /* referenced */
195 u64 rfer_cmpr; /* referenced compressed */
196 u64 excl; /* exclusive */
197 u64 excl_cmpr; /* exclusive compressed */
198
199 /*
200 * limits
201 */
202 u64 lim_flags; /* which limits are set */
203 u64 max_rfer;
204 u64 max_excl;
205 u64 rsv_rfer;
206 u64 rsv_excl;
207
208 /*
209 * reservation tracking
210 */
Qu Wenruod4e5c922017-12-12 15:34:23 +0800211 struct btrfs_qgroup_rsv rsv;
Qu Wenruo3159fe72017-03-13 15:52:08 +0800212
213 /*
214 * lists
215 */
216 struct list_head groups; /* groups this group is member of */
217 struct list_head members; /* groups that are members of this group */
218 struct list_head dirty; /* dirty groups */
219 struct rb_node node; /* tree of qgroups */
220
221 /*
222 * temp variables for accounting operations
223 * Refer to qgroup_shared_accounting() for details.
224 */
225 u64 old_refcnt;
226 u64 new_refcnt;
Qu Wenruo49e5fb42020-06-28 13:07:15 +0800227
228 /*
229 * Sysfs kobjectid
230 */
231 struct kobject kobj;
Qu Wenruo3159fe72017-03-13 15:52:08 +0800232};
233
Qu Wenruo49e5fb42020-06-28 13:07:15 +0800234static inline u64 btrfs_qgroup_subvolid(u64 qgroupid)
235{
236 return (qgroupid & ((1ULL << BTRFS_QGROUP_LEVEL_SHIFT) - 1));
237}
238
Qu Wenruo3159fe72017-03-13 15:52:08 +0800239/*
Qu Wenruo81fb6f72015-09-28 16:57:53 +0800240 * For qgroup event trace points only
241 */
242#define QGROUP_RESERVE (1<<0)
243#define QGROUP_RELEASE (1<<1)
244#define QGROUP_FREE (1<<2)
245
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300246int btrfs_quota_enable(struct btrfs_fs_info *fs_info);
247int btrfs_quota_disable(struct btrfs_fs_info *fs_info);
Josef Bacikfcebe452014-05-13 17:30:47 -0700248int btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info);
249void btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -0400250int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
251 bool interruptible);
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +0800252int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
253 u64 dst);
Lu Fengqi39616c22018-07-18 14:45:32 +0800254int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
255 u64 dst);
Lu Fengqi49a05ec2018-07-18 14:45:33 +0800256int btrfs_create_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
Lu Fengqi3efbee12018-07-18 14:45:34 +0800257int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid);
Lu Fengqif0042d52018-07-18 14:45:35 +0800258int btrfs_limit_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid,
Josef Bacikfcebe452014-05-13 17:30:47 -0700259 struct btrfs_qgroup_limit *limit);
260int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info);
261void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info);
262struct btrfs_delayed_extent_op;
Qu Wenruod1b8b942017-02-27 15:10:35 +0800263
Qu Wenruocb93b522016-08-15 10:36:50 +0800264/*
Qu Wenruo50b3e042016-10-18 09:31:27 +0800265 * Inform qgroup to trace one dirty extent, its info is recorded in @record.
Qu Wenruofb235dc2017-02-15 10:43:03 +0800266 * So qgroup can account it at transaction committing time.
Qu Wenruocb93b522016-08-15 10:36:50 +0800267 *
Qu Wenruofb235dc2017-02-15 10:43:03 +0800268 * No lock version, caller must acquire delayed ref lock and allocated memory,
269 * then call btrfs_qgroup_trace_extent_post() after exiting lock context.
Qu Wenruocb93b522016-08-15 10:36:50 +0800270 *
271 * Return 0 for success insert
272 * Return >0 for existing record, caller can free @record safely.
273 * Error is not possible
274 */
Qu Wenruo50b3e042016-10-18 09:31:27 +0800275int btrfs_qgroup_trace_extent_nolock(
Qu Wenruocb93b522016-08-15 10:36:50 +0800276 struct btrfs_fs_info *fs_info,
277 struct btrfs_delayed_ref_root *delayed_refs,
278 struct btrfs_qgroup_extent_record *record);
279
280/*
Qu Wenruofb235dc2017-02-15 10:43:03 +0800281 * Post handler after qgroup_trace_extent_nolock().
282 *
283 * NOTE: Current qgroup does the expensive backref walk at transaction
284 * committing time with TRANS_STATE_COMMIT_DOING, this blocks incoming
285 * new transaction.
286 * This is designed to allow btrfs_find_all_roots() to get correct new_roots
287 * result.
288 *
289 * However for old_roots there is no need to do backref walk at that time,
290 * since we search commit roots to walk backref and result will always be
291 * correct.
292 *
293 * Due to the nature of no lock version, we can't do backref there.
294 * So we must call btrfs_qgroup_trace_extent_post() after exiting
295 * spinlock context.
296 *
297 * TODO: If we can fix and prove btrfs_find_all_roots() can get correct result
298 * using current root, then we can move all expensive backref walk out of
299 * transaction committing, but not now as qgroup accounting will be wrong again.
300 */
Filipe Manana8949b9a2021-07-21 17:31:48 +0100301int btrfs_qgroup_trace_extent_post(struct btrfs_trans_handle *trans,
Qu Wenruofb235dc2017-02-15 10:43:03 +0800302 struct btrfs_qgroup_extent_record *qrecord);
303
304/*
Qu Wenruo50b3e042016-10-18 09:31:27 +0800305 * Inform qgroup to trace one dirty extent, specified by @bytenr and
306 * @num_bytes.
307 * So qgroup can account it at commit trans time.
Qu Wenruocb93b522016-08-15 10:36:50 +0800308 *
Qu Wenruofb235dc2017-02-15 10:43:03 +0800309 * Better encapsulated version, with memory allocation and backref walk for
310 * commit roots.
311 * So this can sleep.
Qu Wenruocb93b522016-08-15 10:36:50 +0800312 *
313 * Return 0 if the operation is done.
314 * Return <0 for error, like memory allocation failure or invalid parameter
315 * (NULL trans)
316 */
Lu Fengqia95f3aa2018-07-18 16:28:03 +0800317int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans, u64 bytenr,
318 u64 num_bytes, gfp_t gfp_flag);
Qu Wenruocb93b522016-08-15 10:36:50 +0800319
Qu Wenruo33d1f052016-10-18 09:31:28 +0800320/*
321 * Inform qgroup to trace all leaf items of data
322 *
323 * Return 0 for success
324 * Return <0 for error(ENOMEM)
325 */
326int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
Qu Wenruo33d1f052016-10-18 09:31:28 +0800327 struct extent_buffer *eb);
328/*
329 * Inform qgroup to trace a whole subtree, including all its child tree
330 * blocks and data.
331 * The root tree block is specified by @root_eb.
332 *
333 * Normally used by relocation(tree block swap) and subvolume deletion.
334 *
335 * Return 0 for success
336 * Return <0 for error(ENOMEM or tree search error)
337 */
338int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
Qu Wenruo33d1f052016-10-18 09:31:28 +0800339 struct extent_buffer *root_eb,
340 u64 root_gen, int root_level);
Lu Fengqi8696d762018-07-18 14:45:39 +0800341int btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans, u64 bytenr,
342 u64 num_bytes, struct ulist *old_roots,
343 struct ulist *new_roots);
Nikolay Borisov460fb202018-03-15 16:00:25 +0200344int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans);
Lu Fengqi280f8bd2018-07-18 14:45:40 +0800345int btrfs_run_qgroups(struct btrfs_trans_handle *trans);
Lu Fengqia93774222018-07-18 14:45:41 +0800346int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans, u64 srcid,
347 u64 objectid, struct btrfs_qgroup_inherit *inherit);
Qu Wenruo297d7502015-09-08 17:08:37 +0800348void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
Qu Wenruod4e5c922017-12-12 15:34:23 +0800349 u64 ref_root, u64 num_bytes,
350 enum btrfs_qgroup_rsv_type type);
Josef Bacikfcebe452014-05-13 17:30:47 -0700351
352#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
353int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
354 u64 rfer, u64 excl);
355#endif
356
Qu Wenruo52472552015-10-12 16:05:40 +0800357/* New io_tree based accurate qgroup reserve API */
Nikolay Borisov7661a3e2020-06-03 08:55:37 +0300358int btrfs_qgroup_reserve_data(struct btrfs_inode *inode,
Qu Wenruo364ecf32017-02-27 15:10:38 +0800359 struct extent_changeset **reserved, u64 start, u64 len);
Nikolay Borisov72b7d152020-06-03 08:55:18 +0300360int btrfs_qgroup_release_data(struct btrfs_inode *inode, u64 start, u64 len);
Nikolay Borisov8b8a9792020-06-03 08:55:11 +0300361int btrfs_qgroup_free_data(struct btrfs_inode *inode,
362 struct extent_changeset *reserved, u64 start,
363 u64 len);
Nikolay Borisov80e9bae2021-02-22 18:40:43 +0200364int btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
365 enum btrfs_qgroup_rsv_type type, bool enforce);
Qu Wenruo733e03a2017-12-12 15:34:29 +0800366int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
367 enum btrfs_qgroup_rsv_type type, bool enforce);
368/* Reserve metadata space for pertrans and prealloc type */
369static inline int btrfs_qgroup_reserve_meta_pertrans(struct btrfs_root *root,
370 int num_bytes, bool enforce)
371{
372 return __btrfs_qgroup_reserve_meta(root, num_bytes,
373 BTRFS_QGROUP_RSV_META_PERTRANS, enforce);
374}
375static inline int btrfs_qgroup_reserve_meta_prealloc(struct btrfs_root *root,
376 int num_bytes, bool enforce)
377{
378 return __btrfs_qgroup_reserve_meta(root, num_bytes,
379 BTRFS_QGROUP_RSV_META_PREALLOC, enforce);
380}
381
382void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
383 enum btrfs_qgroup_rsv_type type);
384
385/* Free per-transaction meta reservation for error handling */
386static inline void btrfs_qgroup_free_meta_pertrans(struct btrfs_root *root,
387 int num_bytes)
388{
389 __btrfs_qgroup_free_meta(root, num_bytes,
390 BTRFS_QGROUP_RSV_META_PERTRANS);
391}
392
393/* Pre-allocated meta reservation can be freed at need */
394static inline void btrfs_qgroup_free_meta_prealloc(struct btrfs_root *root,
395 int num_bytes)
396{
397 __btrfs_qgroup_free_meta(root, num_bytes,
398 BTRFS_QGROUP_RSV_META_PREALLOC);
399}
400
401/*
402 * Per-transaction meta reservation should be all freed at transaction commit
403 * time
404 */
405void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root);
406
Qu Wenruo64cfaef2017-12-12 15:34:31 +0800407/*
408 * Convert @num_bytes of META_PREALLOCATED reservation to META_PERTRANS.
409 *
410 * This is called when preallocated meta reservation needs to be used.
411 * Normally after btrfs_join_transaction() call.
412 */
413void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes);
414
Nikolay Borisovcfdd4592020-06-03 08:55:46 +0300415void btrfs_qgroup_check_reserved_leak(struct btrfs_inode *inode);
David Sterba9888c342018-04-03 19:16:55 +0200416
Qu Wenruo370a11b2019-01-23 15:15:16 +0800417/* btrfs_qgroup_swapped_blocks related functions */
418void btrfs_qgroup_init_swapped_blocks(
419 struct btrfs_qgroup_swapped_blocks *swapped_blocks);
420
421void btrfs_qgroup_clean_swapped_blocks(struct btrfs_root *root);
422int btrfs_qgroup_add_swapped_blocks(struct btrfs_trans_handle *trans,
423 struct btrfs_root *subvol_root,
David Sterba32da53862019-10-29 19:20:18 +0100424 struct btrfs_block_group *bg,
Qu Wenruo370a11b2019-01-23 15:15:16 +0800425 struct extent_buffer *subvol_parent, int subvol_slot,
426 struct extent_buffer *reloc_parent, int reloc_slot,
427 u64 last_snapshot);
Qu Wenruof616f5c2019-01-23 15:15:17 +0800428int btrfs_qgroup_trace_subtree_after_cow(struct btrfs_trans_handle *trans,
429 struct btrfs_root *root, struct extent_buffer *eb);
Jeff Mahoney81f7eb02020-02-11 15:25:37 +0800430void btrfs_qgroup_destroy_extent_records(struct btrfs_transaction *trans);
Qu Wenruo59582532020-06-10 09:04:44 +0800431bool btrfs_check_quota_leak(struct btrfs_fs_info *fs_info);
Qu Wenruo370a11b2019-01-23 15:15:16 +0800432
David Sterba9888c342018-04-03 19:16:55 +0200433#endif