blob: b53d2e7b938d852cea62df7707366bf23c5d4db5 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Arne Jansenbed92ea2012-06-28 18:03:02 +02002/*
3 * Copyright (C) 2011 STRATO. All rights reserved.
Arne Jansenbed92ea2012-06-28 18:03:02 +02004 */
5
6#include <linux/sched.h>
7#include <linux/pagemap.h>
8#include <linux/writeback.h>
9#include <linux/blkdev.h>
10#include <linux/rbtree.h>
11#include <linux/slab.h>
12#include <linux/workqueue.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000013#include <linux/btrfs.h>
Qu Wenruoa514d632017-12-22 16:06:39 +080014#include <linux/sizes.h>
Arne Jansenbed92ea2012-06-28 18:03:02 +020015
16#include "ctree.h"
17#include "transaction.h"
18#include "disk-io.h"
19#include "locking.h"
20#include "ulist.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020021#include "backref.h"
Jan Schmidt2f232032013-04-25 16:04:51 +000022#include "extent_io.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070023#include "qgroup.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020024
Qu Wenruoe69bcee2015-04-17 10:23:16 +080025
Arne Jansenbed92ea2012-06-28 18:03:02 +020026/* TODO XXX FIXME
27 * - subvol delete -> delete when ref goes to 0? delete limits also?
28 * - reorganize keys
29 * - compressed
30 * - sync
Arne Jansenbed92ea2012-06-28 18:03:02 +020031 * - copy also limits on subvol creation
32 * - limit
33 * - caches fuer ulists
34 * - performance benchmarks
35 * - check all ioctl parameters
36 */
37
Qu Wenruof59c0342017-12-12 15:34:24 +080038/*
39 * Helpers to access qgroup reservation
40 *
41 * Callers should ensure the lock context and type are valid
42 */
43
44static u64 qgroup_rsv_total(const struct btrfs_qgroup *qgroup)
45{
46 u64 ret = 0;
47 int i;
48
49 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
50 ret += qgroup->rsv.values[i];
51
52 return ret;
53}
54
55#ifdef CONFIG_BTRFS_DEBUG
56static const char *qgroup_rsv_type_str(enum btrfs_qgroup_rsv_type type)
57{
58 if (type == BTRFS_QGROUP_RSV_DATA)
59 return "data";
Qu Wenruo733e03a2017-12-12 15:34:29 +080060 if (type == BTRFS_QGROUP_RSV_META_PERTRANS)
61 return "meta_pertrans";
62 if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
63 return "meta_prealloc";
Qu Wenruof59c0342017-12-12 15:34:24 +080064 return NULL;
65}
66#endif
67
Qu Wenruo64ee4e72017-12-12 15:34:27 +080068static void qgroup_rsv_add(struct btrfs_fs_info *fs_info,
69 struct btrfs_qgroup *qgroup, u64 num_bytes,
Qu Wenruof59c0342017-12-12 15:34:24 +080070 enum btrfs_qgroup_rsv_type type)
71{
Qu Wenruo64ee4e72017-12-12 15:34:27 +080072 trace_qgroup_update_reserve(fs_info, qgroup, num_bytes, type);
Qu Wenruof59c0342017-12-12 15:34:24 +080073 qgroup->rsv.values[type] += num_bytes;
74}
75
Qu Wenruo64ee4e72017-12-12 15:34:27 +080076static void qgroup_rsv_release(struct btrfs_fs_info *fs_info,
77 struct btrfs_qgroup *qgroup, u64 num_bytes,
Qu Wenruof59c0342017-12-12 15:34:24 +080078 enum btrfs_qgroup_rsv_type type)
79{
Qu Wenruo64ee4e72017-12-12 15:34:27 +080080 trace_qgroup_update_reserve(fs_info, qgroup, -(s64)num_bytes, type);
Qu Wenruof59c0342017-12-12 15:34:24 +080081 if (qgroup->rsv.values[type] >= num_bytes) {
82 qgroup->rsv.values[type] -= num_bytes;
83 return;
84 }
85#ifdef CONFIG_BTRFS_DEBUG
86 WARN_RATELIMIT(1,
87 "qgroup %llu %s reserved space underflow, have %llu to free %llu",
88 qgroup->qgroupid, qgroup_rsv_type_str(type),
89 qgroup->rsv.values[type], num_bytes);
90#endif
91 qgroup->rsv.values[type] = 0;
92}
93
Qu Wenruo64ee4e72017-12-12 15:34:27 +080094static void qgroup_rsv_add_by_qgroup(struct btrfs_fs_info *fs_info,
95 struct btrfs_qgroup *dest,
96 struct btrfs_qgroup *src)
Qu Wenruof59c0342017-12-12 15:34:24 +080097{
98 int i;
99
100 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800101 qgroup_rsv_add(fs_info, dest, src->rsv.values[i], i);
Qu Wenruof59c0342017-12-12 15:34:24 +0800102}
103
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800104static void qgroup_rsv_release_by_qgroup(struct btrfs_fs_info *fs_info,
105 struct btrfs_qgroup *dest,
Qu Wenruof59c0342017-12-12 15:34:24 +0800106 struct btrfs_qgroup *src)
107{
108 int i;
109
110 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800111 qgroup_rsv_release(fs_info, dest, src->rsv.values[i], i);
Qu Wenruof59c0342017-12-12 15:34:24 +0800112}
113
Qu Wenruo9c542132015-03-12 16:10:13 +0800114static void btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup *qg, u64 seq,
115 int mod)
116{
117 if (qg->old_refcnt < seq)
118 qg->old_refcnt = seq;
119 qg->old_refcnt += mod;
120}
121
122static void btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup *qg, u64 seq,
123 int mod)
124{
125 if (qg->new_refcnt < seq)
126 qg->new_refcnt = seq;
127 qg->new_refcnt += mod;
128}
129
130static inline u64 btrfs_qgroup_get_old_refcnt(struct btrfs_qgroup *qg, u64 seq)
131{
132 if (qg->old_refcnt < seq)
133 return 0;
134 return qg->old_refcnt - seq;
135}
136
137static inline u64 btrfs_qgroup_get_new_refcnt(struct btrfs_qgroup *qg, u64 seq)
138{
139 if (qg->new_refcnt < seq)
140 return 0;
141 return qg->new_refcnt - seq;
142}
143
Arne Jansenbed92ea2012-06-28 18:03:02 +0200144/*
145 * glue structure to represent the relations between qgroups.
146 */
147struct btrfs_qgroup_list {
148 struct list_head next_group;
149 struct list_head next_member;
150 struct btrfs_qgroup *group;
151 struct btrfs_qgroup *member;
152};
153
David Sterbaef2fff62016-10-26 16:23:50 +0200154static inline u64 qgroup_to_aux(struct btrfs_qgroup *qg)
155{
156 return (u64)(uintptr_t)qg;
157}
158
159static inline struct btrfs_qgroup* unode_aux_to_qgroup(struct ulist_node *n)
160{
161 return (struct btrfs_qgroup *)(uintptr_t)n->aux;
162}
Josef Bacikfcebe452014-05-13 17:30:47 -0700163
Jan Schmidtb382a322013-05-28 15:47:24 +0000164static int
165qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
166 int init_flags);
167static void qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +0000168
Wang Shilong58400fc2013-04-07 10:50:17 +0000169/* must be called with qgroup_ioctl_lock held */
Arne Jansenbed92ea2012-06-28 18:03:02 +0200170static struct btrfs_qgroup *find_qgroup_rb(struct btrfs_fs_info *fs_info,
171 u64 qgroupid)
172{
173 struct rb_node *n = fs_info->qgroup_tree.rb_node;
174 struct btrfs_qgroup *qgroup;
175
176 while (n) {
177 qgroup = rb_entry(n, struct btrfs_qgroup, node);
178 if (qgroup->qgroupid < qgroupid)
179 n = n->rb_left;
180 else if (qgroup->qgroupid > qgroupid)
181 n = n->rb_right;
182 else
183 return qgroup;
184 }
185 return NULL;
186}
187
188/* must be called with qgroup_lock held */
189static struct btrfs_qgroup *add_qgroup_rb(struct btrfs_fs_info *fs_info,
190 u64 qgroupid)
191{
192 struct rb_node **p = &fs_info->qgroup_tree.rb_node;
193 struct rb_node *parent = NULL;
194 struct btrfs_qgroup *qgroup;
195
196 while (*p) {
197 parent = *p;
198 qgroup = rb_entry(parent, struct btrfs_qgroup, node);
199
200 if (qgroup->qgroupid < qgroupid)
201 p = &(*p)->rb_left;
202 else if (qgroup->qgroupid > qgroupid)
203 p = &(*p)->rb_right;
204 else
205 return qgroup;
206 }
207
208 qgroup = kzalloc(sizeof(*qgroup), GFP_ATOMIC);
209 if (!qgroup)
210 return ERR_PTR(-ENOMEM);
211
212 qgroup->qgroupid = qgroupid;
213 INIT_LIST_HEAD(&qgroup->groups);
214 INIT_LIST_HEAD(&qgroup->members);
215 INIT_LIST_HEAD(&qgroup->dirty);
216
217 rb_link_node(&qgroup->node, parent, p);
218 rb_insert_color(&qgroup->node, &fs_info->qgroup_tree);
219
220 return qgroup;
221}
222
Wang Shilong4082bd32013-08-14 09:13:36 +0800223static void __del_qgroup_rb(struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200224{
Arne Jansenbed92ea2012-06-28 18:03:02 +0200225 struct btrfs_qgroup_list *list;
226
Arne Jansenbed92ea2012-06-28 18:03:02 +0200227 list_del(&qgroup->dirty);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200228 while (!list_empty(&qgroup->groups)) {
229 list = list_first_entry(&qgroup->groups,
230 struct btrfs_qgroup_list, next_group);
231 list_del(&list->next_group);
232 list_del(&list->next_member);
233 kfree(list);
234 }
235
236 while (!list_empty(&qgroup->members)) {
237 list = list_first_entry(&qgroup->members,
238 struct btrfs_qgroup_list, next_member);
239 list_del(&list->next_group);
240 list_del(&list->next_member);
241 kfree(list);
242 }
243 kfree(qgroup);
Wang Shilong4082bd32013-08-14 09:13:36 +0800244}
Arne Jansenbed92ea2012-06-28 18:03:02 +0200245
Wang Shilong4082bd32013-08-14 09:13:36 +0800246/* must be called with qgroup_lock held */
247static int del_qgroup_rb(struct btrfs_fs_info *fs_info, u64 qgroupid)
248{
249 struct btrfs_qgroup *qgroup = find_qgroup_rb(fs_info, qgroupid);
250
251 if (!qgroup)
252 return -ENOENT;
253
254 rb_erase(&qgroup->node, &fs_info->qgroup_tree);
255 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200256 return 0;
257}
258
259/* must be called with qgroup_lock held */
260static int add_relation_rb(struct btrfs_fs_info *fs_info,
261 u64 memberid, u64 parentid)
262{
263 struct btrfs_qgroup *member;
264 struct btrfs_qgroup *parent;
265 struct btrfs_qgroup_list *list;
266
267 member = find_qgroup_rb(fs_info, memberid);
268 parent = find_qgroup_rb(fs_info, parentid);
269 if (!member || !parent)
270 return -ENOENT;
271
272 list = kzalloc(sizeof(*list), GFP_ATOMIC);
273 if (!list)
274 return -ENOMEM;
275
276 list->group = parent;
277 list->member = member;
278 list_add_tail(&list->next_group, &member->groups);
279 list_add_tail(&list->next_member, &parent->members);
280
281 return 0;
282}
283
284/* must be called with qgroup_lock held */
285static int del_relation_rb(struct btrfs_fs_info *fs_info,
286 u64 memberid, u64 parentid)
287{
288 struct btrfs_qgroup *member;
289 struct btrfs_qgroup *parent;
290 struct btrfs_qgroup_list *list;
291
292 member = find_qgroup_rb(fs_info, memberid);
293 parent = find_qgroup_rb(fs_info, parentid);
294 if (!member || !parent)
295 return -ENOENT;
296
297 list_for_each_entry(list, &member->groups, next_group) {
298 if (list->group == parent) {
299 list_del(&list->next_group);
300 list_del(&list->next_member);
301 kfree(list);
302 return 0;
303 }
304 }
305 return -ENOENT;
306}
307
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400308#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
309int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
310 u64 rfer, u64 excl)
311{
312 struct btrfs_qgroup *qgroup;
313
314 qgroup = find_qgroup_rb(fs_info, qgroupid);
315 if (!qgroup)
316 return -EINVAL;
317 if (qgroup->rfer != rfer || qgroup->excl != excl)
318 return -EINVAL;
319 return 0;
320}
321#endif
322
Arne Jansenbed92ea2012-06-28 18:03:02 +0200323/*
324 * The full config is read in one go, only called from open_ctree()
325 * It doesn't use any locking, as at this point we're still single-threaded
326 */
327int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info)
328{
329 struct btrfs_key key;
330 struct btrfs_key found_key;
331 struct btrfs_root *quota_root = fs_info->quota_root;
332 struct btrfs_path *path = NULL;
333 struct extent_buffer *l;
334 int slot;
335 int ret = 0;
336 u64 flags = 0;
Jan Schmidtb382a322013-05-28 15:47:24 +0000337 u64 rescan_progress = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200338
Josef Bacikafcdd122016-09-02 15:40:02 -0400339 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Arne Jansenbed92ea2012-06-28 18:03:02 +0200340 return 0;
341
David Sterba323b88f2017-02-13 12:10:20 +0100342 fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000343 if (!fs_info->qgroup_ulist) {
344 ret = -ENOMEM;
345 goto out;
346 }
347
Arne Jansenbed92ea2012-06-28 18:03:02 +0200348 path = btrfs_alloc_path();
349 if (!path) {
350 ret = -ENOMEM;
351 goto out;
352 }
353
354 /* default this to quota off, in case no status key is found */
355 fs_info->qgroup_flags = 0;
356
357 /*
358 * pass 1: read status, all qgroup infos and limits
359 */
360 key.objectid = 0;
361 key.type = 0;
362 key.offset = 0;
363 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 1);
364 if (ret)
365 goto out;
366
367 while (1) {
368 struct btrfs_qgroup *qgroup;
369
370 slot = path->slots[0];
371 l = path->nodes[0];
372 btrfs_item_key_to_cpu(l, &found_key, slot);
373
374 if (found_key.type == BTRFS_QGROUP_STATUS_KEY) {
375 struct btrfs_qgroup_status_item *ptr;
376
377 ptr = btrfs_item_ptr(l, slot,
378 struct btrfs_qgroup_status_item);
379
380 if (btrfs_qgroup_status_version(l, ptr) !=
381 BTRFS_QGROUP_STATUS_VERSION) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500382 btrfs_err(fs_info,
383 "old qgroup version, quota disabled");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200384 goto out;
385 }
386 if (btrfs_qgroup_status_generation(l, ptr) !=
387 fs_info->generation) {
388 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Frank Holtonefe120a2013-12-20 11:37:06 -0500389 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400390 "qgroup generation mismatch, marked as inconsistent");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200391 }
392 fs_info->qgroup_flags = btrfs_qgroup_status_flags(l,
393 ptr);
Jan Schmidtb382a322013-05-28 15:47:24 +0000394 rescan_progress = btrfs_qgroup_status_rescan(l, ptr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200395 goto next1;
396 }
397
398 if (found_key.type != BTRFS_QGROUP_INFO_KEY &&
399 found_key.type != BTRFS_QGROUP_LIMIT_KEY)
400 goto next1;
401
402 qgroup = find_qgroup_rb(fs_info, found_key.offset);
403 if ((qgroup && found_key.type == BTRFS_QGROUP_INFO_KEY) ||
404 (!qgroup && found_key.type == BTRFS_QGROUP_LIMIT_KEY)) {
Geert Uytterhoevend41e36a2015-07-06 15:38:11 +0200405 btrfs_err(fs_info, "inconsistent qgroup config");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200406 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
407 }
408 if (!qgroup) {
409 qgroup = add_qgroup_rb(fs_info, found_key.offset);
410 if (IS_ERR(qgroup)) {
411 ret = PTR_ERR(qgroup);
412 goto out;
413 }
414 }
415 switch (found_key.type) {
416 case BTRFS_QGROUP_INFO_KEY: {
417 struct btrfs_qgroup_info_item *ptr;
418
419 ptr = btrfs_item_ptr(l, slot,
420 struct btrfs_qgroup_info_item);
421 qgroup->rfer = btrfs_qgroup_info_rfer(l, ptr);
422 qgroup->rfer_cmpr = btrfs_qgroup_info_rfer_cmpr(l, ptr);
423 qgroup->excl = btrfs_qgroup_info_excl(l, ptr);
424 qgroup->excl_cmpr = btrfs_qgroup_info_excl_cmpr(l, ptr);
425 /* generation currently unused */
426 break;
427 }
428 case BTRFS_QGROUP_LIMIT_KEY: {
429 struct btrfs_qgroup_limit_item *ptr;
430
431 ptr = btrfs_item_ptr(l, slot,
432 struct btrfs_qgroup_limit_item);
433 qgroup->lim_flags = btrfs_qgroup_limit_flags(l, ptr);
434 qgroup->max_rfer = btrfs_qgroup_limit_max_rfer(l, ptr);
435 qgroup->max_excl = btrfs_qgroup_limit_max_excl(l, ptr);
436 qgroup->rsv_rfer = btrfs_qgroup_limit_rsv_rfer(l, ptr);
437 qgroup->rsv_excl = btrfs_qgroup_limit_rsv_excl(l, ptr);
438 break;
439 }
440 }
441next1:
442 ret = btrfs_next_item(quota_root, path);
443 if (ret < 0)
444 goto out;
445 if (ret)
446 break;
447 }
448 btrfs_release_path(path);
449
450 /*
451 * pass 2: read all qgroup relations
452 */
453 key.objectid = 0;
454 key.type = BTRFS_QGROUP_RELATION_KEY;
455 key.offset = 0;
456 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 0);
457 if (ret)
458 goto out;
459 while (1) {
460 slot = path->slots[0];
461 l = path->nodes[0];
462 btrfs_item_key_to_cpu(l, &found_key, slot);
463
464 if (found_key.type != BTRFS_QGROUP_RELATION_KEY)
465 goto next2;
466
467 if (found_key.objectid > found_key.offset) {
468 /* parent <- member, not needed to build config */
469 /* FIXME should we omit the key completely? */
470 goto next2;
471 }
472
473 ret = add_relation_rb(fs_info, found_key.objectid,
474 found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700475 if (ret == -ENOENT) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500476 btrfs_warn(fs_info,
477 "orphan qgroup relation 0x%llx->0x%llx",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200478 found_key.objectid, found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700479 ret = 0; /* ignore the error */
480 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200481 if (ret)
482 goto out;
483next2:
484 ret = btrfs_next_item(quota_root, path);
485 if (ret < 0)
486 goto out;
487 if (ret)
488 break;
489 }
490out:
491 fs_info->qgroup_flags |= flags;
Josef Bacikafcdd122016-09-02 15:40:02 -0400492 if (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON))
493 clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
494 else if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN &&
495 ret >= 0)
Jan Schmidtb382a322013-05-28 15:47:24 +0000496 ret = qgroup_rescan_init(fs_info, rescan_progress, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200497 btrfs_free_path(path);
498
Jan Schmidteb1716a2013-05-28 15:47:23 +0000499 if (ret < 0) {
Wang Shilong1e8f9152013-05-06 11:03:27 +0000500 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +0000501 fs_info->qgroup_ulist = NULL;
Jan Schmidtb382a322013-05-28 15:47:24 +0000502 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidteb1716a2013-05-28 15:47:23 +0000503 }
Wang Shilong1e8f9152013-05-06 11:03:27 +0000504
Arne Jansenbed92ea2012-06-28 18:03:02 +0200505 return ret < 0 ? ret : 0;
506}
507
508/*
Wang Shilonge685da12013-08-14 09:13:37 +0800509 * This is called from close_ctree() or open_ctree() or btrfs_quota_disable(),
510 * first two are in single-threaded paths.And for the third one, we have set
511 * quota_root to be null with qgroup_lock held before, so it is safe to clean
512 * up the in-memory structures without qgroup_lock held.
Arne Jansenbed92ea2012-06-28 18:03:02 +0200513 */
514void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info)
515{
516 struct rb_node *n;
517 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200518
519 while ((n = rb_first(&fs_info->qgroup_tree))) {
520 qgroup = rb_entry(n, struct btrfs_qgroup, node);
521 rb_erase(n, &fs_info->qgroup_tree);
Wang Shilong4082bd32013-08-14 09:13:36 +0800522 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200523 }
Wang Shilong1e7bac12013-07-13 21:02:54 +0800524 /*
525 * we call btrfs_free_qgroup_config() when umounting
Nicholas D Steeves01327612016-05-19 21:18:45 -0400526 * filesystem and disabling quota, so we set qgroup_ulist
Wang Shilong1e7bac12013-07-13 21:02:54 +0800527 * to be null here to avoid double free.
528 */
Wang Shilong1e8f9152013-05-06 11:03:27 +0000529 ulist_free(fs_info->qgroup_ulist);
Wang Shilong1e7bac12013-07-13 21:02:54 +0800530 fs_info->qgroup_ulist = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200531}
532
Lu Fengqi711169c2018-07-18 14:45:24 +0800533static int add_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
534 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200535{
536 int ret;
Lu Fengqi711169c2018-07-18 14:45:24 +0800537 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200538 struct btrfs_path *path;
539 struct btrfs_key key;
540
541 path = btrfs_alloc_path();
542 if (!path)
543 return -ENOMEM;
544
545 key.objectid = src;
546 key.type = BTRFS_QGROUP_RELATION_KEY;
547 key.offset = dst;
548
549 ret = btrfs_insert_empty_item(trans, quota_root, path, &key, 0);
550
551 btrfs_mark_buffer_dirty(path->nodes[0]);
552
553 btrfs_free_path(path);
554 return ret;
555}
556
Lu Fengqi99d7f092018-07-18 14:45:25 +0800557static int del_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
558 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200559{
560 int ret;
Lu Fengqi99d7f092018-07-18 14:45:25 +0800561 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200562 struct btrfs_path *path;
563 struct btrfs_key key;
564
565 path = btrfs_alloc_path();
566 if (!path)
567 return -ENOMEM;
568
569 key.objectid = src;
570 key.type = BTRFS_QGROUP_RELATION_KEY;
571 key.offset = dst;
572
573 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
574 if (ret < 0)
575 goto out;
576
577 if (ret > 0) {
578 ret = -ENOENT;
579 goto out;
580 }
581
582 ret = btrfs_del_item(trans, quota_root, path);
583out:
584 btrfs_free_path(path);
585 return ret;
586}
587
588static int add_qgroup_item(struct btrfs_trans_handle *trans,
589 struct btrfs_root *quota_root, u64 qgroupid)
590{
591 int ret;
592 struct btrfs_path *path;
593 struct btrfs_qgroup_info_item *qgroup_info;
594 struct btrfs_qgroup_limit_item *qgroup_limit;
595 struct extent_buffer *leaf;
596 struct btrfs_key key;
597
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -0400598 if (btrfs_is_testing(quota_root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400599 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200600
Arne Jansenbed92ea2012-06-28 18:03:02 +0200601 path = btrfs_alloc_path();
602 if (!path)
603 return -ENOMEM;
604
605 key.objectid = 0;
606 key.type = BTRFS_QGROUP_INFO_KEY;
607 key.offset = qgroupid;
608
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700609 /*
610 * Avoid a transaction abort by catching -EEXIST here. In that
611 * case, we proceed by re-initializing the existing structure
612 * on disk.
613 */
614
Arne Jansenbed92ea2012-06-28 18:03:02 +0200615 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
616 sizeof(*qgroup_info));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700617 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200618 goto out;
619
620 leaf = path->nodes[0];
621 qgroup_info = btrfs_item_ptr(leaf, path->slots[0],
622 struct btrfs_qgroup_info_item);
623 btrfs_set_qgroup_info_generation(leaf, qgroup_info, trans->transid);
624 btrfs_set_qgroup_info_rfer(leaf, qgroup_info, 0);
625 btrfs_set_qgroup_info_rfer_cmpr(leaf, qgroup_info, 0);
626 btrfs_set_qgroup_info_excl(leaf, qgroup_info, 0);
627 btrfs_set_qgroup_info_excl_cmpr(leaf, qgroup_info, 0);
628
629 btrfs_mark_buffer_dirty(leaf);
630
631 btrfs_release_path(path);
632
633 key.type = BTRFS_QGROUP_LIMIT_KEY;
634 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
635 sizeof(*qgroup_limit));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700636 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200637 goto out;
638
639 leaf = path->nodes[0];
640 qgroup_limit = btrfs_item_ptr(leaf, path->slots[0],
641 struct btrfs_qgroup_limit_item);
642 btrfs_set_qgroup_limit_flags(leaf, qgroup_limit, 0);
643 btrfs_set_qgroup_limit_max_rfer(leaf, qgroup_limit, 0);
644 btrfs_set_qgroup_limit_max_excl(leaf, qgroup_limit, 0);
645 btrfs_set_qgroup_limit_rsv_rfer(leaf, qgroup_limit, 0);
646 btrfs_set_qgroup_limit_rsv_excl(leaf, qgroup_limit, 0);
647
648 btrfs_mark_buffer_dirty(leaf);
649
650 ret = 0;
651out:
652 btrfs_free_path(path);
653 return ret;
654}
655
Lu Fengqi69104612018-07-18 14:45:26 +0800656static int del_qgroup_item(struct btrfs_trans_handle *trans, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200657{
658 int ret;
Lu Fengqi69104612018-07-18 14:45:26 +0800659 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200660 struct btrfs_path *path;
661 struct btrfs_key key;
662
663 path = btrfs_alloc_path();
664 if (!path)
665 return -ENOMEM;
666
667 key.objectid = 0;
668 key.type = BTRFS_QGROUP_INFO_KEY;
669 key.offset = qgroupid;
670 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
671 if (ret < 0)
672 goto out;
673
674 if (ret > 0) {
675 ret = -ENOENT;
676 goto out;
677 }
678
679 ret = btrfs_del_item(trans, quota_root, path);
680 if (ret)
681 goto out;
682
683 btrfs_release_path(path);
684
685 key.type = BTRFS_QGROUP_LIMIT_KEY;
686 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
687 if (ret < 0)
688 goto out;
689
690 if (ret > 0) {
691 ret = -ENOENT;
692 goto out;
693 }
694
695 ret = btrfs_del_item(trans, quota_root, path);
696
697out:
698 btrfs_free_path(path);
699 return ret;
700}
701
702static int update_qgroup_limit_item(struct btrfs_trans_handle *trans,
Dongsheng Yang1510e712014-11-20 21:01:41 -0500703 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200704{
Lu Fengqiac8a8662018-07-18 14:45:27 +0800705 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200706 struct btrfs_path *path;
707 struct btrfs_key key;
708 struct extent_buffer *l;
709 struct btrfs_qgroup_limit_item *qgroup_limit;
710 int ret;
711 int slot;
712
713 key.objectid = 0;
714 key.type = BTRFS_QGROUP_LIMIT_KEY;
Dongsheng Yang1510e712014-11-20 21:01:41 -0500715 key.offset = qgroup->qgroupid;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200716
717 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000718 if (!path)
719 return -ENOMEM;
720
Lu Fengqiac8a8662018-07-18 14:45:27 +0800721 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200722 if (ret > 0)
723 ret = -ENOENT;
724
725 if (ret)
726 goto out;
727
728 l = path->nodes[0];
729 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100730 qgroup_limit = btrfs_item_ptr(l, slot, struct btrfs_qgroup_limit_item);
Dongsheng Yang1510e712014-11-20 21:01:41 -0500731 btrfs_set_qgroup_limit_flags(l, qgroup_limit, qgroup->lim_flags);
732 btrfs_set_qgroup_limit_max_rfer(l, qgroup_limit, qgroup->max_rfer);
733 btrfs_set_qgroup_limit_max_excl(l, qgroup_limit, qgroup->max_excl);
734 btrfs_set_qgroup_limit_rsv_rfer(l, qgroup_limit, qgroup->rsv_rfer);
735 btrfs_set_qgroup_limit_rsv_excl(l, qgroup_limit, qgroup->rsv_excl);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200736
737 btrfs_mark_buffer_dirty(l);
738
739out:
740 btrfs_free_path(path);
741 return ret;
742}
743
744static int update_qgroup_info_item(struct btrfs_trans_handle *trans,
Arne Jansenbed92ea2012-06-28 18:03:02 +0200745 struct btrfs_qgroup *qgroup)
746{
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800747 struct btrfs_fs_info *fs_info = trans->fs_info;
748 struct btrfs_root *quota_root = fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200749 struct btrfs_path *path;
750 struct btrfs_key key;
751 struct extent_buffer *l;
752 struct btrfs_qgroup_info_item *qgroup_info;
753 int ret;
754 int slot;
755
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800756 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400757 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200758
Arne Jansenbed92ea2012-06-28 18:03:02 +0200759 key.objectid = 0;
760 key.type = BTRFS_QGROUP_INFO_KEY;
761 key.offset = qgroup->qgroupid;
762
763 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000764 if (!path)
765 return -ENOMEM;
766
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800767 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200768 if (ret > 0)
769 ret = -ENOENT;
770
771 if (ret)
772 goto out;
773
774 l = path->nodes[0];
775 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100776 qgroup_info = btrfs_item_ptr(l, slot, struct btrfs_qgroup_info_item);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200777 btrfs_set_qgroup_info_generation(l, qgroup_info, trans->transid);
778 btrfs_set_qgroup_info_rfer(l, qgroup_info, qgroup->rfer);
779 btrfs_set_qgroup_info_rfer_cmpr(l, qgroup_info, qgroup->rfer_cmpr);
780 btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl);
781 btrfs_set_qgroup_info_excl_cmpr(l, qgroup_info, qgroup->excl_cmpr);
782
783 btrfs_mark_buffer_dirty(l);
784
785out:
786 btrfs_free_path(path);
787 return ret;
788}
789
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800790static int update_qgroup_status_item(struct btrfs_trans_handle *trans)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200791{
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800792 struct btrfs_fs_info *fs_info = trans->fs_info;
793 struct btrfs_root *quota_root = fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200794 struct btrfs_path *path;
795 struct btrfs_key key;
796 struct extent_buffer *l;
797 struct btrfs_qgroup_status_item *ptr;
798 int ret;
799 int slot;
800
801 key.objectid = 0;
802 key.type = BTRFS_QGROUP_STATUS_KEY;
803 key.offset = 0;
804
805 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000806 if (!path)
807 return -ENOMEM;
808
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800809 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200810 if (ret > 0)
811 ret = -ENOENT;
812
813 if (ret)
814 goto out;
815
816 l = path->nodes[0];
817 slot = path->slots[0];
818 ptr = btrfs_item_ptr(l, slot, struct btrfs_qgroup_status_item);
819 btrfs_set_qgroup_status_flags(l, ptr, fs_info->qgroup_flags);
820 btrfs_set_qgroup_status_generation(l, ptr, trans->transid);
Jan Schmidt2f232032013-04-25 16:04:51 +0000821 btrfs_set_qgroup_status_rescan(l, ptr,
822 fs_info->qgroup_rescan_progress.objectid);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200823
824 btrfs_mark_buffer_dirty(l);
825
826out:
827 btrfs_free_path(path);
828 return ret;
829}
830
831/*
832 * called with qgroup_lock held
833 */
834static int btrfs_clean_quota_tree(struct btrfs_trans_handle *trans,
835 struct btrfs_root *root)
836{
837 struct btrfs_path *path;
838 struct btrfs_key key;
Wang Shilong06b3a862013-02-27 11:16:57 +0000839 struct extent_buffer *leaf = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200840 int ret;
Wang Shilong06b3a862013-02-27 11:16:57 +0000841 int nr = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200842
Arne Jansenbed92ea2012-06-28 18:03:02 +0200843 path = btrfs_alloc_path();
844 if (!path)
845 return -ENOMEM;
846
Wang Shilong06b3a862013-02-27 11:16:57 +0000847 path->leave_spinning = 1;
848
849 key.objectid = 0;
850 key.offset = 0;
851 key.type = 0;
852
Arne Jansenbed92ea2012-06-28 18:03:02 +0200853 while (1) {
Arne Jansenbed92ea2012-06-28 18:03:02 +0200854 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Wang Shilong06b3a862013-02-27 11:16:57 +0000855 if (ret < 0)
856 goto out;
857 leaf = path->nodes[0];
858 nr = btrfs_header_nritems(leaf);
859 if (!nr)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200860 break;
Wang Shilong06b3a862013-02-27 11:16:57 +0000861 /*
862 * delete the leaf one by one
863 * since the whole tree is going
864 * to be deleted.
865 */
866 path->slots[0] = 0;
867 ret = btrfs_del_items(trans, root, path, 0, nr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200868 if (ret)
869 goto out;
Wang Shilong06b3a862013-02-27 11:16:57 +0000870
Arne Jansenbed92ea2012-06-28 18:03:02 +0200871 btrfs_release_path(path);
872 }
873 ret = 0;
874out:
Arne Jansenbed92ea2012-06-28 18:03:02 +0200875 btrfs_free_path(path);
876 return ret;
877}
878
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300879int btrfs_quota_enable(struct btrfs_fs_info *fs_info)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200880{
881 struct btrfs_root *quota_root;
Wang Shilong7708f022013-04-07 10:24:57 +0000882 struct btrfs_root *tree_root = fs_info->tree_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200883 struct btrfs_path *path = NULL;
884 struct btrfs_qgroup_status_item *ptr;
885 struct extent_buffer *leaf;
886 struct btrfs_key key;
Wang Shilong7708f022013-04-07 10:24:57 +0000887 struct btrfs_key found_key;
888 struct btrfs_qgroup *qgroup = NULL;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300889 struct btrfs_trans_handle *trans = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200890 int ret = 0;
Wang Shilong7708f022013-04-07 10:24:57 +0000891 int slot;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200892
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000893 mutex_lock(&fs_info->qgroup_ioctl_lock);
Nikolay Borisov5d235152018-01-31 10:52:04 +0200894 if (fs_info->quota_root)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200895 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200896
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300897 /*
898 * 1 for quota root item
899 * 1 for BTRFS_QGROUP_STATUS item
900 *
901 * Yet we also need 2*n items for a QGROUP_INFO/QGROUP_LIMIT items
902 * per subvolume. However those are not currently reserved since it
903 * would be a lot of overkill.
904 */
905 trans = btrfs_start_transaction(tree_root, 2);
906 if (IS_ERR(trans)) {
907 ret = PTR_ERR(trans);
908 trans = NULL;
909 goto out;
910 }
911
David Sterba52bf8e72017-02-13 11:03:44 +0100912 fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000913 if (!fs_info->qgroup_ulist) {
914 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300915 btrfs_abort_transaction(trans, ret);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000916 goto out;
917 }
918
Arne Jansenbed92ea2012-06-28 18:03:02 +0200919 /*
920 * initially create the quota tree
921 */
922 quota_root = btrfs_create_tree(trans, fs_info,
923 BTRFS_QUOTA_TREE_OBJECTID);
924 if (IS_ERR(quota_root)) {
925 ret = PTR_ERR(quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300926 btrfs_abort_transaction(trans, ret);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200927 goto out;
928 }
929
930 path = btrfs_alloc_path();
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000931 if (!path) {
932 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300933 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000934 goto out_free_root;
935 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200936
937 key.objectid = 0;
938 key.type = BTRFS_QGROUP_STATUS_KEY;
939 key.offset = 0;
940
941 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
942 sizeof(*ptr));
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300943 if (ret) {
944 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000945 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300946 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200947
948 leaf = path->nodes[0];
949 ptr = btrfs_item_ptr(leaf, path->slots[0],
950 struct btrfs_qgroup_status_item);
951 btrfs_set_qgroup_status_generation(leaf, ptr, trans->transid);
952 btrfs_set_qgroup_status_version(leaf, ptr, BTRFS_QGROUP_STATUS_VERSION);
953 fs_info->qgroup_flags = BTRFS_QGROUP_STATUS_FLAG_ON |
954 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
955 btrfs_set_qgroup_status_flags(leaf, ptr, fs_info->qgroup_flags);
Jan Schmidt2f232032013-04-25 16:04:51 +0000956 btrfs_set_qgroup_status_rescan(leaf, ptr, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200957
958 btrfs_mark_buffer_dirty(leaf);
959
Wang Shilong7708f022013-04-07 10:24:57 +0000960 key.objectid = 0;
961 key.type = BTRFS_ROOT_REF_KEY;
962 key.offset = 0;
963
964 btrfs_release_path(path);
965 ret = btrfs_search_slot_for_read(tree_root, &key, path, 1, 0);
966 if (ret > 0)
967 goto out_add_root;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300968 if (ret < 0) {
969 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000970 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300971 }
Wang Shilong7708f022013-04-07 10:24:57 +0000972
973 while (1) {
974 slot = path->slots[0];
975 leaf = path->nodes[0];
976 btrfs_item_key_to_cpu(leaf, &found_key, slot);
977
978 if (found_key.type == BTRFS_ROOT_REF_KEY) {
979 ret = add_qgroup_item(trans, quota_root,
980 found_key.offset);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300981 if (ret) {
982 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000983 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300984 }
Wang Shilong7708f022013-04-07 10:24:57 +0000985
Wang Shilong7708f022013-04-07 10:24:57 +0000986 qgroup = add_qgroup_rb(fs_info, found_key.offset);
987 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +0000988 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300989 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000990 goto out_free_path;
991 }
Wang Shilong7708f022013-04-07 10:24:57 +0000992 }
993 ret = btrfs_next_item(tree_root, path);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300994 if (ret < 0) {
995 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000996 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300997 }
Wang Shilong7708f022013-04-07 10:24:57 +0000998 if (ret)
999 break;
1000 }
1001
1002out_add_root:
1003 btrfs_release_path(path);
1004 ret = add_qgroup_item(trans, quota_root, BTRFS_FS_TREE_OBJECTID);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001005 if (ret) {
1006 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001007 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001008 }
Wang Shilong7708f022013-04-07 10:24:57 +00001009
Wang Shilong7708f022013-04-07 10:24:57 +00001010 qgroup = add_qgroup_rb(fs_info, BTRFS_FS_TREE_OBJECTID);
1011 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +00001012 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001013 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001014 goto out_free_path;
1015 }
Wang Shilong58400fc2013-04-07 10:50:17 +00001016 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001017 fs_info->quota_root = quota_root;
Nikolay Borisov5d235152018-01-31 10:52:04 +02001018 set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001019 spin_unlock(&fs_info->qgroup_lock);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001020
1021 ret = btrfs_commit_transaction(trans);
Dan Carpenterb9b8a412018-08-20 11:25:33 +03001022 trans = NULL;
1023 if (ret)
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001024 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001025
Nikolay Borisov5d235152018-01-31 10:52:04 +02001026 ret = qgroup_rescan_init(fs_info, 0, 1);
1027 if (!ret) {
1028 qgroup_rescan_zero_tracking(fs_info);
1029 btrfs_queue_work(fs_info->qgroup_rescan_workers,
1030 &fs_info->qgroup_rescan_work);
1031 }
1032
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +00001033out_free_path:
Arne Jansenbed92ea2012-06-28 18:03:02 +02001034 btrfs_free_path(path);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +00001035out_free_root:
1036 if (ret) {
1037 free_extent_buffer(quota_root->node);
1038 free_extent_buffer(quota_root->commit_root);
1039 kfree(quota_root);
1040 }
1041out:
Jan Schmidteb1716a2013-05-28 15:47:23 +00001042 if (ret) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00001043 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +00001044 fs_info->qgroup_ulist = NULL;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001045 if (trans)
1046 btrfs_end_transaction(trans);
Jan Schmidteb1716a2013-05-28 15:47:23 +00001047 }
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001048 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001049 return ret;
1050}
1051
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001052int btrfs_quota_disable(struct btrfs_fs_info *fs_info)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001053{
Arne Jansenbed92ea2012-06-28 18:03:02 +02001054 struct btrfs_root *quota_root;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001055 struct btrfs_trans_handle *trans = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001056 int ret = 0;
1057
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001058 mutex_lock(&fs_info->qgroup_ioctl_lock);
Wang Shilong58400fc2013-04-07 10:50:17 +00001059 if (!fs_info->quota_root)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001060 goto out;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001061
1062 /*
1063 * 1 For the root item
1064 *
1065 * We should also reserve enough items for the quota tree deletion in
1066 * btrfs_clean_quota_tree but this is not done.
1067 */
1068 trans = btrfs_start_transaction(fs_info->tree_root, 1);
1069 if (IS_ERR(trans)) {
1070 ret = PTR_ERR(trans);
1071 goto out;
1072 }
1073
Josef Bacikafcdd122016-09-02 15:40:02 -04001074 clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04001075 btrfs_qgroup_wait_for_completion(fs_info, false);
Justin Maggard967ef512015-11-06 10:36:42 -08001076 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001077 quota_root = fs_info->quota_root;
1078 fs_info->quota_root = NULL;
Dongsheng Yang8ea0ec92015-02-27 16:24:26 +08001079 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001080 spin_unlock(&fs_info->qgroup_lock);
1081
Wang Shilonge685da12013-08-14 09:13:37 +08001082 btrfs_free_qgroup_config(fs_info);
1083
Arne Jansenbed92ea2012-06-28 18:03:02 +02001084 ret = btrfs_clean_quota_tree(trans, quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001085 if (ret) {
1086 btrfs_abort_transaction(trans, ret);
1087 goto end_trans;
1088 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001089
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08001090 ret = btrfs_del_root(trans, &quota_root->root_key);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001091 if (ret) {
1092 btrfs_abort_transaction(trans, ret);
1093 goto end_trans;
1094 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001095
1096 list_del(&quota_root->dirty_list);
1097
1098 btrfs_tree_lock(quota_root->node);
David Sterba7c302b42017-02-10 18:47:57 +01001099 clean_tree_block(fs_info, quota_root->node);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001100 btrfs_tree_unlock(quota_root->node);
1101 btrfs_free_tree_block(trans, quota_root, quota_root->node, 0, 1);
1102
1103 free_extent_buffer(quota_root->node);
1104 free_extent_buffer(quota_root->commit_root);
1105 kfree(quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001106
1107end_trans:
1108 ret = btrfs_end_transaction(trans);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001109out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001110 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001111 return ret;
1112}
1113
Jan Schmidt2f232032013-04-25 16:04:51 +00001114static void qgroup_dirty(struct btrfs_fs_info *fs_info,
1115 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001116{
Jan Schmidt2f232032013-04-25 16:04:51 +00001117 if (list_empty(&qgroup->dirty))
1118 list_add(&qgroup->dirty, &fs_info->dirty_qgroups);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001119}
1120
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001121/*
Qu Wenruo429d6272017-12-12 15:34:26 +08001122 * The easy accounting, we're updating qgroup relationship whose child qgroup
1123 * only has exclusive extents.
1124 *
1125 * In this case, all exclsuive extents will also be exlusive for parent, so
1126 * excl/rfer just get added/removed.
1127 *
1128 * So is qgroup reservation space, which should also be added/removed to
1129 * parent.
1130 * Or when child tries to release reservation space, parent will underflow its
1131 * reservation (for relationship adding case).
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001132 *
1133 * Caller should hold fs_info->qgroup_lock.
1134 */
1135static int __qgroup_excl_accounting(struct btrfs_fs_info *fs_info,
1136 struct ulist *tmp, u64 ref_root,
Qu Wenruo429d6272017-12-12 15:34:26 +08001137 struct btrfs_qgroup *src, int sign)
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001138{
1139 struct btrfs_qgroup *qgroup;
1140 struct btrfs_qgroup_list *glist;
1141 struct ulist_node *unode;
1142 struct ulist_iterator uiter;
Qu Wenruo429d6272017-12-12 15:34:26 +08001143 u64 num_bytes = src->excl;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001144 int ret = 0;
1145
1146 qgroup = find_qgroup_rb(fs_info, ref_root);
1147 if (!qgroup)
1148 goto out;
1149
1150 qgroup->rfer += sign * num_bytes;
1151 qgroup->rfer_cmpr += sign * num_bytes;
1152
1153 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1154 qgroup->excl += sign * num_bytes;
1155 qgroup->excl_cmpr += sign * num_bytes;
Qu Wenruo429d6272017-12-12 15:34:26 +08001156
1157 if (sign > 0)
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001158 qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
Qu Wenruo429d6272017-12-12 15:34:26 +08001159 else
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001160 qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001161
1162 qgroup_dirty(fs_info, qgroup);
1163
1164 /* Get all of the parent groups that contain this qgroup */
1165 list_for_each_entry(glist, &qgroup->groups, next_group) {
1166 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001167 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001168 if (ret < 0)
1169 goto out;
1170 }
1171
1172 /* Iterate all of the parents and adjust their reference counts */
1173 ULIST_ITER_INIT(&uiter);
1174 while ((unode = ulist_next(tmp, &uiter))) {
David Sterbaef2fff62016-10-26 16:23:50 +02001175 qgroup = unode_aux_to_qgroup(unode);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001176 qgroup->rfer += sign * num_bytes;
1177 qgroup->rfer_cmpr += sign * num_bytes;
1178 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1179 qgroup->excl += sign * num_bytes;
Qu Wenruo429d6272017-12-12 15:34:26 +08001180 if (sign > 0)
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001181 qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
Qu Wenruo429d6272017-12-12 15:34:26 +08001182 else
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001183 qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001184 qgroup->excl_cmpr += sign * num_bytes;
1185 qgroup_dirty(fs_info, qgroup);
1186
1187 /* Add any parents of the parents */
1188 list_for_each_entry(glist, &qgroup->groups, next_group) {
1189 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001190 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001191 if (ret < 0)
1192 goto out;
1193 }
1194 }
1195 ret = 0;
1196out:
1197 return ret;
1198}
1199
1200
1201/*
1202 * Quick path for updating qgroup with only excl refs.
1203 *
1204 * In that case, just update all parent will be enough.
1205 * Or we needs to do a full rescan.
1206 * Caller should also hold fs_info->qgroup_lock.
1207 *
1208 * Return 0 for quick update, return >0 for need to full rescan
1209 * and mark INCONSISTENT flag.
1210 * Return < 0 for other error.
1211 */
1212static int quick_update_accounting(struct btrfs_fs_info *fs_info,
1213 struct ulist *tmp, u64 src, u64 dst,
1214 int sign)
1215{
1216 struct btrfs_qgroup *qgroup;
1217 int ret = 1;
1218 int err = 0;
1219
1220 qgroup = find_qgroup_rb(fs_info, src);
1221 if (!qgroup)
1222 goto out;
1223 if (qgroup->excl == qgroup->rfer) {
1224 ret = 0;
1225 err = __qgroup_excl_accounting(fs_info, tmp, dst,
Qu Wenruo429d6272017-12-12 15:34:26 +08001226 qgroup, sign);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001227 if (err < 0) {
1228 ret = err;
1229 goto out;
1230 }
1231 }
1232out:
1233 if (ret)
1234 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1235 return ret;
1236}
1237
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08001238int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1239 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001240{
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08001241 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001242 struct btrfs_root *quota_root;
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001243 struct btrfs_qgroup *parent;
1244 struct btrfs_qgroup *member;
Wang Shilong534e6622013-04-17 14:49:51 +00001245 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001246 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001247 int ret = 0;
1248
Qu Wenruo8465ece2015-02-27 16:24:22 +08001249 /* Check the level of src and dst first */
1250 if (btrfs_qgroup_level(src) >= btrfs_qgroup_level(dst))
1251 return -EINVAL;
1252
David Sterba6602caf2017-02-13 12:41:02 +01001253 tmp = ulist_alloc(GFP_KERNEL);
Christian Engelmayerab3680d2015-05-02 17:19:55 +02001254 if (!tmp)
1255 return -ENOMEM;
1256
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001257 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001258 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001259 if (!quota_root) {
1260 ret = -EINVAL;
1261 goto out;
1262 }
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001263 member = find_qgroup_rb(fs_info, src);
1264 parent = find_qgroup_rb(fs_info, dst);
1265 if (!member || !parent) {
1266 ret = -EINVAL;
1267 goto out;
1268 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001269
Wang Shilong534e6622013-04-17 14:49:51 +00001270 /* check if such qgroup relation exist firstly */
1271 list_for_each_entry(list, &member->groups, next_group) {
1272 if (list->group == parent) {
1273 ret = -EEXIST;
1274 goto out;
1275 }
1276 }
1277
Lu Fengqi711169c2018-07-18 14:45:24 +08001278 ret = add_qgroup_relation_item(trans, src, dst);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001279 if (ret)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001280 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001281
Lu Fengqi711169c2018-07-18 14:45:24 +08001282 ret = add_qgroup_relation_item(trans, dst, src);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001283 if (ret) {
Lu Fengqi99d7f092018-07-18 14:45:25 +08001284 del_qgroup_relation_item(trans, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001285 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001286 }
1287
1288 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001289 ret = add_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001290 if (ret < 0) {
1291 spin_unlock(&fs_info->qgroup_lock);
1292 goto out;
1293 }
1294 ret = quick_update_accounting(fs_info, tmp, src, dst, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001295 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001296out:
1297 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001298 ulist_free(tmp);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001299 return ret;
1300}
1301
Lu Fengqi6b36f1a2018-07-18 14:45:31 +08001302static int __del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1303 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001304{
Lu Fengqi6b36f1a2018-07-18 14:45:31 +08001305 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001306 struct btrfs_root *quota_root;
Wang Shilong534e6622013-04-17 14:49:51 +00001307 struct btrfs_qgroup *parent;
1308 struct btrfs_qgroup *member;
1309 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001310 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001311 int ret = 0;
1312 int err;
1313
David Sterba6602caf2017-02-13 12:41:02 +01001314 tmp = ulist_alloc(GFP_KERNEL);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001315 if (!tmp)
1316 return -ENOMEM;
1317
Arne Jansenbed92ea2012-06-28 18:03:02 +02001318 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001319 if (!quota_root) {
1320 ret = -EINVAL;
1321 goto out;
1322 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001323
Wang Shilong534e6622013-04-17 14:49:51 +00001324 member = find_qgroup_rb(fs_info, src);
1325 parent = find_qgroup_rb(fs_info, dst);
1326 if (!member || !parent) {
1327 ret = -EINVAL;
1328 goto out;
1329 }
1330
1331 /* check if such qgroup relation exist firstly */
1332 list_for_each_entry(list, &member->groups, next_group) {
1333 if (list->group == parent)
1334 goto exist;
1335 }
1336 ret = -ENOENT;
1337 goto out;
1338exist:
Lu Fengqi99d7f092018-07-18 14:45:25 +08001339 ret = del_qgroup_relation_item(trans, src, dst);
1340 err = del_qgroup_relation_item(trans, dst, src);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001341 if (err && !ret)
1342 ret = err;
1343
1344 spin_lock(&fs_info->qgroup_lock);
1345 del_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001346 ret = quick_update_accounting(fs_info, tmp, src, dst, -1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001347 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001348out:
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001349 ulist_free(tmp);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001350 return ret;
1351}
1352
Lu Fengqi39616c22018-07-18 14:45:32 +08001353int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1354 u64 dst)
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001355{
Lu Fengqi39616c22018-07-18 14:45:32 +08001356 struct btrfs_fs_info *fs_info = trans->fs_info;
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001357 int ret = 0;
1358
1359 mutex_lock(&fs_info->qgroup_ioctl_lock);
Lu Fengqi6b36f1a2018-07-18 14:45:31 +08001360 ret = __del_qgroup_relation(trans, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001361 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001362
Arne Jansenbed92ea2012-06-28 18:03:02 +02001363 return ret;
1364}
1365
Lu Fengqi49a05ec2018-07-18 14:45:33 +08001366int btrfs_create_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001367{
Lu Fengqi49a05ec2018-07-18 14:45:33 +08001368 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001369 struct btrfs_root *quota_root;
1370 struct btrfs_qgroup *qgroup;
1371 int ret = 0;
1372
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001373 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001374 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001375 if (!quota_root) {
1376 ret = -EINVAL;
1377 goto out;
1378 }
Wang Shilong534e6622013-04-17 14:49:51 +00001379 qgroup = find_qgroup_rb(fs_info, qgroupid);
1380 if (qgroup) {
1381 ret = -EEXIST;
1382 goto out;
1383 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001384
1385 ret = add_qgroup_item(trans, quota_root, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001386 if (ret)
1387 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001388
1389 spin_lock(&fs_info->qgroup_lock);
1390 qgroup = add_qgroup_rb(fs_info, qgroupid);
1391 spin_unlock(&fs_info->qgroup_lock);
1392
1393 if (IS_ERR(qgroup))
1394 ret = PTR_ERR(qgroup);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001395out:
1396 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001397 return ret;
1398}
1399
Lu Fengqi3efbee12018-07-18 14:45:34 +08001400int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001401{
Lu Fengqi3efbee12018-07-18 14:45:34 +08001402 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001403 struct btrfs_root *quota_root;
Arne Jansen2cf68702013-01-17 01:22:09 -07001404 struct btrfs_qgroup *qgroup;
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001405 struct btrfs_qgroup_list *list;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001406 int ret = 0;
1407
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001408 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001409 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001410 if (!quota_root) {
1411 ret = -EINVAL;
1412 goto out;
1413 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001414
Arne Jansen2cf68702013-01-17 01:22:09 -07001415 qgroup = find_qgroup_rb(fs_info, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001416 if (!qgroup) {
1417 ret = -ENOENT;
1418 goto out;
Arne Jansen2cf68702013-01-17 01:22:09 -07001419 }
Lu Fengqib90e22b2018-10-11 13:42:56 +08001420
1421 /* Check if there are no children of this qgroup */
1422 if (!list_empty(&qgroup->members)) {
1423 ret = -EBUSY;
1424 goto out;
1425 }
1426
Lu Fengqi69104612018-07-18 14:45:26 +08001427 ret = del_qgroup_item(trans, qgroupid);
Sargun Dhillon36b96fd2017-09-17 09:02:29 +00001428 if (ret && ret != -ENOENT)
1429 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001430
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001431 while (!list_empty(&qgroup->groups)) {
1432 list = list_first_entry(&qgroup->groups,
1433 struct btrfs_qgroup_list, next_group);
Lu Fengqi6b36f1a2018-07-18 14:45:31 +08001434 ret = __del_qgroup_relation(trans, qgroupid,
1435 list->group->qgroupid);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001436 if (ret)
1437 goto out;
1438 }
1439
Arne Jansenbed92ea2012-06-28 18:03:02 +02001440 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001441 del_qgroup_rb(fs_info, qgroupid);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001442 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001443out:
1444 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001445 return ret;
1446}
1447
Lu Fengqif0042d52018-07-18 14:45:35 +08001448int btrfs_limit_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid,
Arne Jansenbed92ea2012-06-28 18:03:02 +02001449 struct btrfs_qgroup_limit *limit)
1450{
Lu Fengqif0042d52018-07-18 14:45:35 +08001451 struct btrfs_fs_info *fs_info = trans->fs_info;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001452 struct btrfs_root *quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001453 struct btrfs_qgroup *qgroup;
1454 int ret = 0;
Yang Dongshengfe759902015-06-03 14:57:32 +08001455 /* Sometimes we would want to clear the limit on this qgroup.
1456 * To meet this requirement, we treat the -1 as a special value
1457 * which tell kernel to clear the limit on this qgroup.
1458 */
1459 const u64 CLEAR_VALUE = -1;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001460
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001461 mutex_lock(&fs_info->qgroup_ioctl_lock);
1462 quota_root = fs_info->quota_root;
1463 if (!quota_root) {
1464 ret = -EINVAL;
1465 goto out;
1466 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001467
Wang Shilongddb47af2013-04-07 10:50:20 +00001468 qgroup = find_qgroup_rb(fs_info, qgroupid);
1469 if (!qgroup) {
1470 ret = -ENOENT;
1471 goto out;
1472 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001473
Wang Shilong58400fc2013-04-07 10:50:17 +00001474 spin_lock(&fs_info->qgroup_lock);
Yang Dongshengfe759902015-06-03 14:57:32 +08001475 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_RFER) {
1476 if (limit->max_rfer == CLEAR_VALUE) {
1477 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1478 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1479 qgroup->max_rfer = 0;
1480 } else {
1481 qgroup->max_rfer = limit->max_rfer;
1482 }
1483 }
1484 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) {
1485 if (limit->max_excl == CLEAR_VALUE) {
1486 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1487 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1488 qgroup->max_excl = 0;
1489 } else {
1490 qgroup->max_excl = limit->max_excl;
1491 }
1492 }
1493 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_RFER) {
1494 if (limit->rsv_rfer == CLEAR_VALUE) {
1495 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1496 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1497 qgroup->rsv_rfer = 0;
1498 } else {
1499 qgroup->rsv_rfer = limit->rsv_rfer;
1500 }
1501 }
1502 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_EXCL) {
1503 if (limit->rsv_excl == CLEAR_VALUE) {
1504 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1505 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1506 qgroup->rsv_excl = 0;
1507 } else {
1508 qgroup->rsv_excl = limit->rsv_excl;
1509 }
1510 }
Dongsheng Yang03477d92015-02-06 11:06:25 -05001511 qgroup->lim_flags |= limit->flags;
1512
Arne Jansenbed92ea2012-06-28 18:03:02 +02001513 spin_unlock(&fs_info->qgroup_lock);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001514
Lu Fengqiac8a8662018-07-18 14:45:27 +08001515 ret = update_qgroup_limit_item(trans, qgroup);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001516 if (ret) {
1517 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1518 btrfs_info(fs_info, "unable to update quota limit for %llu",
1519 qgroupid);
1520 }
1521
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001522out:
1523 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001524 return ret;
1525}
Mark Fasheh11526512014-07-17 12:39:01 -07001526
Qu Wenruo50b3e042016-10-18 09:31:27 +08001527int btrfs_qgroup_trace_extent_nolock(struct btrfs_fs_info *fs_info,
Qu Wenruocb93b522016-08-15 10:36:50 +08001528 struct btrfs_delayed_ref_root *delayed_refs,
1529 struct btrfs_qgroup_extent_record *record)
Qu Wenruo3368d002015-04-16 14:34:17 +08001530{
1531 struct rb_node **p = &delayed_refs->dirty_extent_root.rb_node;
1532 struct rb_node *parent_node = NULL;
1533 struct btrfs_qgroup_extent_record *entry;
1534 u64 bytenr = record->bytenr;
1535
David Sterbaa4666e62018-03-16 02:21:22 +01001536 lockdep_assert_held(&delayed_refs->lock);
Qu Wenruo50b3e042016-10-18 09:31:27 +08001537 trace_btrfs_qgroup_trace_extent(fs_info, record);
Mark Fasheh82bd1012015-11-05 14:38:00 -08001538
Qu Wenruo3368d002015-04-16 14:34:17 +08001539 while (*p) {
1540 parent_node = *p;
1541 entry = rb_entry(parent_node, struct btrfs_qgroup_extent_record,
1542 node);
1543 if (bytenr < entry->bytenr)
1544 p = &(*p)->rb_left;
1545 else if (bytenr > entry->bytenr)
1546 p = &(*p)->rb_right;
1547 else
Qu Wenruocb93b522016-08-15 10:36:50 +08001548 return 1;
Qu Wenruo3368d002015-04-16 14:34:17 +08001549 }
1550
1551 rb_link_node(&record->node, parent_node, p);
1552 rb_insert_color(&record->node, &delayed_refs->dirty_extent_root);
Qu Wenruocb93b522016-08-15 10:36:50 +08001553 return 0;
1554}
1555
Qu Wenruofb235dc2017-02-15 10:43:03 +08001556int btrfs_qgroup_trace_extent_post(struct btrfs_fs_info *fs_info,
1557 struct btrfs_qgroup_extent_record *qrecord)
1558{
1559 struct ulist *old_root;
1560 u64 bytenr = qrecord->bytenr;
1561 int ret;
1562
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001563 ret = btrfs_find_all_roots(NULL, fs_info, bytenr, 0, &old_root, false);
Nikolay Borisov952bd3db2018-01-29 15:53:01 +02001564 if (ret < 0) {
1565 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1566 btrfs_warn(fs_info,
1567"error accounting new delayed refs extent (err code: %d), quota inconsistent",
1568 ret);
1569 return 0;
1570 }
Qu Wenruofb235dc2017-02-15 10:43:03 +08001571
1572 /*
1573 * Here we don't need to get the lock of
1574 * trans->transaction->delayed_refs, since inserted qrecord won't
1575 * be deleted, only qrecord->node may be modified (new qrecord insert)
1576 *
1577 * So modifying qrecord->old_roots is safe here
1578 */
1579 qrecord->old_roots = old_root;
1580 return 0;
1581}
1582
Lu Fengqia95f3aa2018-07-18 16:28:03 +08001583int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans, u64 bytenr,
1584 u64 num_bytes, gfp_t gfp_flag)
Qu Wenruocb93b522016-08-15 10:36:50 +08001585{
Lu Fengqia95f3aa2018-07-18 16:28:03 +08001586 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruocb93b522016-08-15 10:36:50 +08001587 struct btrfs_qgroup_extent_record *record;
1588 struct btrfs_delayed_ref_root *delayed_refs;
1589 int ret;
1590
Josef Bacikafcdd122016-09-02 15:40:02 -04001591 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)
1592 || bytenr == 0 || num_bytes == 0)
Qu Wenruocb93b522016-08-15 10:36:50 +08001593 return 0;
Qu Wenruocb93b522016-08-15 10:36:50 +08001594 record = kmalloc(sizeof(*record), gfp_flag);
1595 if (!record)
1596 return -ENOMEM;
1597
1598 delayed_refs = &trans->transaction->delayed_refs;
1599 record->bytenr = bytenr;
1600 record->num_bytes = num_bytes;
1601 record->old_roots = NULL;
1602
1603 spin_lock(&delayed_refs->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001604 ret = btrfs_qgroup_trace_extent_nolock(fs_info, delayed_refs, record);
Qu Wenruocb93b522016-08-15 10:36:50 +08001605 spin_unlock(&delayed_refs->lock);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001606 if (ret > 0) {
Qu Wenruocb93b522016-08-15 10:36:50 +08001607 kfree(record);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001608 return 0;
1609 }
1610 return btrfs_qgroup_trace_extent_post(fs_info, record);
Qu Wenruo3368d002015-04-16 14:34:17 +08001611}
1612
Qu Wenruo33d1f052016-10-18 09:31:28 +08001613int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
Qu Wenruo33d1f052016-10-18 09:31:28 +08001614 struct extent_buffer *eb)
1615{
Lu Fengqi8d38d7e2018-07-18 14:45:37 +08001616 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo33d1f052016-10-18 09:31:28 +08001617 int nr = btrfs_header_nritems(eb);
1618 int i, extent_type, ret;
1619 struct btrfs_key key;
1620 struct btrfs_file_extent_item *fi;
1621 u64 bytenr, num_bytes;
1622
1623 /* We can be called directly from walk_up_proc() */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001624 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08001625 return 0;
1626
1627 for (i = 0; i < nr; i++) {
1628 btrfs_item_key_to_cpu(eb, &key, i);
1629
1630 if (key.type != BTRFS_EXTENT_DATA_KEY)
1631 continue;
1632
1633 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
1634 /* filter out non qgroup-accountable extents */
1635 extent_type = btrfs_file_extent_type(eb, fi);
1636
1637 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
1638 continue;
1639
1640 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1641 if (!bytenr)
1642 continue;
1643
1644 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1645
Lu Fengqia95f3aa2018-07-18 16:28:03 +08001646 ret = btrfs_qgroup_trace_extent(trans, bytenr, num_bytes,
1647 GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001648 if (ret)
1649 return ret;
1650 }
Jeff Mahoneycddf3b22017-06-20 08:15:26 -04001651 cond_resched();
Qu Wenruo33d1f052016-10-18 09:31:28 +08001652 return 0;
1653}
1654
1655/*
1656 * Walk up the tree from the bottom, freeing leaves and any interior
1657 * nodes which have had all slots visited. If a node (leaf or
1658 * interior) is freed, the node above it will have it's slot
1659 * incremented. The root node will never be freed.
1660 *
1661 * At the end of this function, we should have a path which has all
1662 * slots incremented to the next position for a search. If we need to
1663 * read a new node it will be NULL and the node above it will have the
1664 * correct slot selected for a later read.
1665 *
1666 * If we increment the root nodes slot counter past the number of
1667 * elements, 1 is returned to signal completion of the search.
1668 */
David Sterba15b34512017-02-10 20:30:23 +01001669static int adjust_slots_upwards(struct btrfs_path *path, int root_level)
Qu Wenruo33d1f052016-10-18 09:31:28 +08001670{
1671 int level = 0;
1672 int nr, slot;
1673 struct extent_buffer *eb;
1674
1675 if (root_level == 0)
1676 return 1;
1677
1678 while (level <= root_level) {
1679 eb = path->nodes[level];
1680 nr = btrfs_header_nritems(eb);
1681 path->slots[level]++;
1682 slot = path->slots[level];
1683 if (slot >= nr || level == 0) {
1684 /*
1685 * Don't free the root - we will detect this
1686 * condition after our loop and return a
1687 * positive value for caller to stop walking the tree.
1688 */
1689 if (level != root_level) {
1690 btrfs_tree_unlock_rw(eb, path->locks[level]);
1691 path->locks[level] = 0;
1692
1693 free_extent_buffer(eb);
1694 path->nodes[level] = NULL;
1695 path->slots[level] = 0;
1696 }
1697 } else {
1698 /*
1699 * We have a valid slot to walk back down
1700 * from. Stop here so caller can process these
1701 * new nodes.
1702 */
1703 break;
1704 }
1705
1706 level++;
1707 }
1708
1709 eb = path->nodes[root_level];
1710 if (path->slots[root_level] >= btrfs_header_nritems(eb))
1711 return 1;
1712
1713 return 0;
1714}
1715
Qu Wenruo25982562018-09-27 14:42:30 +08001716/*
1717 * Helper function to trace a subtree tree block swap.
1718 *
1719 * The swap will happen in highest tree block, but there may be a lot of
1720 * tree blocks involved.
1721 *
1722 * For example:
1723 * OO = Old tree blocks
1724 * NN = New tree blocks allocated during balance
1725 *
1726 * File tree (257) Reloc tree for 257
1727 * L2 OO NN
1728 * / \ / \
1729 * L1 OO OO (a) OO NN (a)
1730 * / \ / \ / \ / \
1731 * L0 OO OO OO OO OO OO NN NN
1732 * (b) (c) (b) (c)
1733 *
1734 * When calling qgroup_trace_extent_swap(), we will pass:
1735 * @src_eb = OO(a)
1736 * @dst_path = [ nodes[1] = NN(a), nodes[0] = NN(c) ]
1737 * @dst_level = 0
1738 * @root_level = 1
1739 *
1740 * In that case, qgroup_trace_extent_swap() will search from OO(a) to
1741 * reach OO(c), then mark both OO(c) and NN(c) as qgroup dirty.
1742 *
1743 * The main work of qgroup_trace_extent_swap() can be split into 3 parts:
1744 *
1745 * 1) Tree search from @src_eb
1746 * It should acts as a simplified btrfs_search_slot().
1747 * The key for search can be extracted from @dst_path->nodes[dst_level]
1748 * (first key).
1749 *
1750 * 2) Mark the final tree blocks in @src_path and @dst_path qgroup dirty
1751 * NOTE: In above case, OO(a) and NN(a) won't be marked qgroup dirty.
1752 * They should be marked during preivous (@dst_level = 1) iteration.
1753 *
1754 * 3) Mark file extents in leaves dirty
1755 * We don't have good way to pick out new file extents only.
1756 * So we still follow the old method by scanning all file extents in
1757 * the leave.
1758 *
1759 * This function can free us from keeping two pathes, thus later we only need
1760 * to care about how to iterate all new tree blocks in reloc tree.
1761 */
1762static int qgroup_trace_extent_swap(struct btrfs_trans_handle* trans,
1763 struct extent_buffer *src_eb,
1764 struct btrfs_path *dst_path,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001765 int dst_level, int root_level,
1766 bool trace_leaf)
Qu Wenruo25982562018-09-27 14:42:30 +08001767{
1768 struct btrfs_key key;
1769 struct btrfs_path *src_path;
1770 struct btrfs_fs_info *fs_info = trans->fs_info;
1771 u32 nodesize = fs_info->nodesize;
1772 int cur_level = root_level;
1773 int ret;
1774
1775 BUG_ON(dst_level > root_level);
1776 /* Level mismatch */
1777 if (btrfs_header_level(src_eb) != root_level)
1778 return -EINVAL;
1779
1780 src_path = btrfs_alloc_path();
1781 if (!src_path) {
1782 ret = -ENOMEM;
1783 goto out;
1784 }
1785
1786 if (dst_level)
1787 btrfs_node_key_to_cpu(dst_path->nodes[dst_level], &key, 0);
1788 else
1789 btrfs_item_key_to_cpu(dst_path->nodes[dst_level], &key, 0);
1790
1791 /* For src_path */
1792 extent_buffer_get(src_eb);
1793 src_path->nodes[root_level] = src_eb;
1794 src_path->slots[root_level] = dst_path->slots[root_level];
1795 src_path->locks[root_level] = 0;
1796
1797 /* A simplified version of btrfs_search_slot() */
1798 while (cur_level >= dst_level) {
1799 struct btrfs_key src_key;
1800 struct btrfs_key dst_key;
1801
1802 if (src_path->nodes[cur_level] == NULL) {
1803 struct btrfs_key first_key;
1804 struct extent_buffer *eb;
1805 int parent_slot;
1806 u64 child_gen;
1807 u64 child_bytenr;
1808
1809 eb = src_path->nodes[cur_level + 1];
1810 parent_slot = src_path->slots[cur_level + 1];
1811 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
1812 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
1813 btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
1814
1815 eb = read_tree_block(fs_info, child_bytenr, child_gen,
1816 cur_level, &first_key);
1817 if (IS_ERR(eb)) {
1818 ret = PTR_ERR(eb);
1819 goto out;
1820 } else if (!extent_buffer_uptodate(eb)) {
1821 free_extent_buffer(eb);
1822 ret = -EIO;
1823 goto out;
1824 }
1825
1826 src_path->nodes[cur_level] = eb;
1827
1828 btrfs_tree_read_lock(eb);
1829 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1830 src_path->locks[cur_level] = BTRFS_READ_LOCK_BLOCKING;
1831 }
1832
1833 src_path->slots[cur_level] = dst_path->slots[cur_level];
1834 if (cur_level) {
1835 btrfs_node_key_to_cpu(dst_path->nodes[cur_level],
1836 &dst_key, dst_path->slots[cur_level]);
1837 btrfs_node_key_to_cpu(src_path->nodes[cur_level],
1838 &src_key, src_path->slots[cur_level]);
1839 } else {
1840 btrfs_item_key_to_cpu(dst_path->nodes[cur_level],
1841 &dst_key, dst_path->slots[cur_level]);
1842 btrfs_item_key_to_cpu(src_path->nodes[cur_level],
1843 &src_key, src_path->slots[cur_level]);
1844 }
1845 /* Content mismatch, something went wrong */
1846 if (btrfs_comp_cpu_keys(&dst_key, &src_key)) {
1847 ret = -ENOENT;
1848 goto out;
1849 }
1850 cur_level--;
1851 }
1852
1853 /*
1854 * Now both @dst_path and @src_path have been populated, record the tree
1855 * blocks for qgroup accounting.
1856 */
1857 ret = btrfs_qgroup_trace_extent(trans, src_path->nodes[dst_level]->start,
1858 nodesize, GFP_NOFS);
1859 if (ret < 0)
1860 goto out;
1861 ret = btrfs_qgroup_trace_extent(trans,
1862 dst_path->nodes[dst_level]->start,
1863 nodesize, GFP_NOFS);
1864 if (ret < 0)
1865 goto out;
1866
1867 /* Record leaf file extents */
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001868 if (dst_level == 0 && trace_leaf) {
Qu Wenruo25982562018-09-27 14:42:30 +08001869 ret = btrfs_qgroup_trace_leaf_items(trans, src_path->nodes[0]);
1870 if (ret < 0)
1871 goto out;
1872 ret = btrfs_qgroup_trace_leaf_items(trans, dst_path->nodes[0]);
1873 }
1874out:
1875 btrfs_free_path(src_path);
1876 return ret;
1877}
1878
Qu Wenruoea49f3e2018-09-27 14:42:31 +08001879/*
1880 * Helper function to do recursive generation-aware depth-first search, to
1881 * locate all new tree blocks in a subtree of reloc tree.
1882 *
1883 * E.g. (OO = Old tree blocks, NN = New tree blocks, whose gen == last_snapshot)
1884 * reloc tree
1885 * L2 NN (a)
1886 * / \
1887 * L1 OO NN (b)
1888 * / \ / \
1889 * L0 OO OO OO NN
1890 * (c) (d)
1891 * If we pass:
1892 * @dst_path = [ nodes[1] = NN(b), nodes[0] = NULL ],
1893 * @cur_level = 1
1894 * @root_level = 1
1895 *
1896 * We will iterate through tree blocks NN(b), NN(d) and info qgroup to trace
1897 * above tree blocks along with their counter parts in file tree.
1898 * While during search, old tree blocsk OO(c) will be skiped as tree block swap
1899 * won't affect OO(c).
1900 */
1901static int qgroup_trace_new_subtree_blocks(struct btrfs_trans_handle* trans,
1902 struct extent_buffer *src_eb,
1903 struct btrfs_path *dst_path,
1904 int cur_level, int root_level,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001905 u64 last_snapshot, bool trace_leaf)
Qu Wenruoea49f3e2018-09-27 14:42:31 +08001906{
1907 struct btrfs_fs_info *fs_info = trans->fs_info;
1908 struct extent_buffer *eb;
1909 bool need_cleanup = false;
1910 int ret = 0;
1911 int i;
1912
1913 /* Level sanity check */
1914 if (cur_level < 0 || cur_level >= BTRFS_MAX_LEVEL ||
1915 root_level < 0 || root_level >= BTRFS_MAX_LEVEL ||
1916 root_level < cur_level) {
1917 btrfs_err_rl(fs_info,
1918 "%s: bad levels, cur_level=%d root_level=%d",
1919 __func__, cur_level, root_level);
1920 return -EUCLEAN;
1921 }
1922
1923 /* Read the tree block if needed */
1924 if (dst_path->nodes[cur_level] == NULL) {
1925 struct btrfs_key first_key;
1926 int parent_slot;
1927 u64 child_gen;
1928 u64 child_bytenr;
1929
1930 /*
1931 * dst_path->nodes[root_level] must be initialized before
1932 * calling this function.
1933 */
1934 if (cur_level == root_level) {
1935 btrfs_err_rl(fs_info,
1936 "%s: dst_path->nodes[%d] not initialized, root_level=%d cur_level=%d",
1937 __func__, root_level, root_level, cur_level);
1938 return -EUCLEAN;
1939 }
1940
1941 /*
1942 * We need to get child blockptr/gen from parent before we can
1943 * read it.
1944 */
1945 eb = dst_path->nodes[cur_level + 1];
1946 parent_slot = dst_path->slots[cur_level + 1];
1947 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
1948 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
1949 btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
1950
1951 /* This node is old, no need to trace */
1952 if (child_gen < last_snapshot)
1953 goto out;
1954
1955 eb = read_tree_block(fs_info, child_bytenr, child_gen,
1956 cur_level, &first_key);
1957 if (IS_ERR(eb)) {
1958 ret = PTR_ERR(eb);
1959 goto out;
1960 } else if (!extent_buffer_uptodate(eb)) {
1961 free_extent_buffer(eb);
1962 ret = -EIO;
1963 goto out;
1964 }
1965
1966 dst_path->nodes[cur_level] = eb;
1967 dst_path->slots[cur_level] = 0;
1968
1969 btrfs_tree_read_lock(eb);
1970 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1971 dst_path->locks[cur_level] = BTRFS_READ_LOCK_BLOCKING;
1972 need_cleanup = true;
1973 }
1974
1975 /* Now record this tree block and its counter part for qgroups */
1976 ret = qgroup_trace_extent_swap(trans, src_eb, dst_path, cur_level,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001977 root_level, trace_leaf);
Qu Wenruoea49f3e2018-09-27 14:42:31 +08001978 if (ret < 0)
1979 goto cleanup;
1980
1981 eb = dst_path->nodes[cur_level];
1982
1983 if (cur_level > 0) {
1984 /* Iterate all child tree blocks */
1985 for (i = 0; i < btrfs_header_nritems(eb); i++) {
1986 /* Skip old tree blocks as they won't be swapped */
1987 if (btrfs_node_ptr_generation(eb, i) < last_snapshot)
1988 continue;
1989 dst_path->slots[cur_level] = i;
1990
1991 /* Recursive call (at most 7 times) */
1992 ret = qgroup_trace_new_subtree_blocks(trans, src_eb,
1993 dst_path, cur_level - 1, root_level,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001994 last_snapshot, trace_leaf);
Qu Wenruoea49f3e2018-09-27 14:42:31 +08001995 if (ret < 0)
1996 goto cleanup;
1997 }
1998 }
1999
2000cleanup:
2001 if (need_cleanup) {
2002 /* Clean up */
2003 btrfs_tree_unlock_rw(dst_path->nodes[cur_level],
2004 dst_path->locks[cur_level]);
2005 free_extent_buffer(dst_path->nodes[cur_level]);
2006 dst_path->nodes[cur_level] = NULL;
2007 dst_path->slots[cur_level] = 0;
2008 dst_path->locks[cur_level] = 0;
2009 }
2010out:
2011 return ret;
2012}
2013
Qu Wenruo5f527822018-09-27 14:42:32 +08002014/*
2015 * Inform qgroup to trace subtree swap used in balance.
2016 *
2017 * Unlike btrfs_qgroup_trace_subtree(), this function will only trace
2018 * new tree blocks whose generation is equal to (or larger than) @last_snapshot.
2019 *
2020 * Will go down the tree block pointed by @dst_eb (pointed by @dst_parent and
2021 * @dst_slot), and find any tree blocks whose generation is at @last_snapshot,
2022 * and then go down @src_eb (pointed by @src_parent and @src_slot) to find
2023 * the conterpart of the tree block, then mark both tree blocks as qgroup dirty,
2024 * and skip all tree blocks whose generation is smaller than last_snapshot.
2025 *
2026 * This would skip tons of tree blocks of original btrfs_qgroup_trace_subtree(),
2027 * which could be the cause of very slow balance if the file tree is large.
2028 *
2029 * @src_parent, @src_slot: pointer to src (file tree) eb.
2030 * @dst_parent, @dst_slot: pointer to dst (reloc tree) eb.
2031 */
2032int btrfs_qgroup_trace_subtree_swap(struct btrfs_trans_handle *trans,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08002033 struct btrfs_block_group_cache *bg_cache,
Qu Wenruo5f527822018-09-27 14:42:32 +08002034 struct extent_buffer *src_parent, int src_slot,
2035 struct extent_buffer *dst_parent, int dst_slot,
2036 u64 last_snapshot)
2037{
2038 struct btrfs_fs_info *fs_info = trans->fs_info;
2039 struct btrfs_path *dst_path = NULL;
2040 struct btrfs_key first_key;
2041 struct extent_buffer *src_eb = NULL;
2042 struct extent_buffer *dst_eb = NULL;
Qu Wenruo3d0174f2018-09-27 14:42:35 +08002043 bool trace_leaf = false;
Qu Wenruo5f527822018-09-27 14:42:32 +08002044 u64 child_gen;
2045 u64 child_bytenr;
2046 int level;
2047 int ret;
2048
2049 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2050 return 0;
2051
2052 /* Check parameter order */
2053 if (btrfs_node_ptr_generation(src_parent, src_slot) >
2054 btrfs_node_ptr_generation(dst_parent, dst_slot)) {
2055 btrfs_err_rl(fs_info,
2056 "%s: bad parameter order, src_gen=%llu dst_gen=%llu", __func__,
2057 btrfs_node_ptr_generation(src_parent, src_slot),
2058 btrfs_node_ptr_generation(dst_parent, dst_slot));
2059 return -EUCLEAN;
2060 }
2061
Qu Wenruo3d0174f2018-09-27 14:42:35 +08002062 /*
2063 * Only trace leaf if we're relocating data block groups, this could
2064 * reduce tons of data extents tracing for meta/sys bg relocation.
2065 */
2066 if (bg_cache->flags & BTRFS_BLOCK_GROUP_DATA)
2067 trace_leaf = true;
Qu Wenruo5f527822018-09-27 14:42:32 +08002068 /* Read out real @src_eb, pointed by @src_parent and @src_slot */
2069 child_bytenr = btrfs_node_blockptr(src_parent, src_slot);
2070 child_gen = btrfs_node_ptr_generation(src_parent, src_slot);
2071 btrfs_node_key_to_cpu(src_parent, &first_key, src_slot);
2072
2073 src_eb = read_tree_block(fs_info, child_bytenr, child_gen,
2074 btrfs_header_level(src_parent) - 1, &first_key);
2075 if (IS_ERR(src_eb)) {
2076 ret = PTR_ERR(src_eb);
2077 goto out;
2078 }
2079
2080 /* Read out real @dst_eb, pointed by @src_parent and @src_slot */
2081 child_bytenr = btrfs_node_blockptr(dst_parent, dst_slot);
2082 child_gen = btrfs_node_ptr_generation(dst_parent, dst_slot);
2083 btrfs_node_key_to_cpu(dst_parent, &first_key, dst_slot);
2084
2085 dst_eb = read_tree_block(fs_info, child_bytenr, child_gen,
2086 btrfs_header_level(dst_parent) - 1, &first_key);
2087 if (IS_ERR(dst_eb)) {
2088 ret = PTR_ERR(dst_eb);
2089 goto out;
2090 }
2091
2092 if (!extent_buffer_uptodate(src_eb) || !extent_buffer_uptodate(dst_eb)) {
2093 ret = -EINVAL;
2094 goto out;
2095 }
2096
2097 level = btrfs_header_level(dst_eb);
2098 dst_path = btrfs_alloc_path();
2099 if (!dst_path) {
2100 ret = -ENOMEM;
2101 goto out;
2102 }
2103
2104 /* For dst_path */
2105 extent_buffer_get(dst_eb);
2106 dst_path->nodes[level] = dst_eb;
2107 dst_path->slots[level] = 0;
2108 dst_path->locks[level] = 0;
2109
2110 /* Do the generation-aware breadth-first search */
2111 ret = qgroup_trace_new_subtree_blocks(trans, src_eb, dst_path, level,
Qu Wenruo3d0174f2018-09-27 14:42:35 +08002112 level, last_snapshot, trace_leaf);
Qu Wenruo5f527822018-09-27 14:42:32 +08002113 if (ret < 0)
2114 goto out;
2115 ret = 0;
2116
2117out:
2118 free_extent_buffer(src_eb);
2119 free_extent_buffer(dst_eb);
2120 btrfs_free_path(dst_path);
2121 if (ret < 0)
2122 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2123 return ret;
2124}
2125
Qu Wenruo33d1f052016-10-18 09:31:28 +08002126int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
Qu Wenruo33d1f052016-10-18 09:31:28 +08002127 struct extent_buffer *root_eb,
2128 u64 root_gen, int root_level)
2129{
Lu Fengqideb40622018-07-18 14:45:38 +08002130 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo33d1f052016-10-18 09:31:28 +08002131 int ret = 0;
2132 int level;
2133 struct extent_buffer *eb = root_eb;
2134 struct btrfs_path *path = NULL;
2135
Nikolay Borisovb6e6bca2017-07-12 09:42:19 +03002136 BUG_ON(root_level < 0 || root_level >= BTRFS_MAX_LEVEL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002137 BUG_ON(root_eb == NULL);
2138
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002139 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08002140 return 0;
2141
2142 if (!extent_buffer_uptodate(root_eb)) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002143 ret = btrfs_read_buffer(root_eb, root_gen, root_level, NULL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002144 if (ret)
2145 goto out;
2146 }
2147
2148 if (root_level == 0) {
Lu Fengqi8d38d7e2018-07-18 14:45:37 +08002149 ret = btrfs_qgroup_trace_leaf_items(trans, root_eb);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002150 goto out;
2151 }
2152
2153 path = btrfs_alloc_path();
2154 if (!path)
2155 return -ENOMEM;
2156
2157 /*
2158 * Walk down the tree. Missing extent blocks are filled in as
2159 * we go. Metadata is accounted every time we read a new
2160 * extent block.
2161 *
2162 * When we reach a leaf, we account for file extent items in it,
2163 * walk back up the tree (adjusting slot pointers as we go)
2164 * and restart the search process.
2165 */
2166 extent_buffer_get(root_eb); /* For path */
2167 path->nodes[root_level] = root_eb;
2168 path->slots[root_level] = 0;
2169 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
2170walk_down:
2171 level = root_level;
2172 while (level >= 0) {
2173 if (path->nodes[level] == NULL) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002174 struct btrfs_key first_key;
Qu Wenruo33d1f052016-10-18 09:31:28 +08002175 int parent_slot;
2176 u64 child_gen;
2177 u64 child_bytenr;
2178
2179 /*
2180 * We need to get child blockptr/gen from parent before
2181 * we can read it.
2182 */
2183 eb = path->nodes[level + 1];
2184 parent_slot = path->slots[level + 1];
2185 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
2186 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08002187 btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002188
Qu Wenruo581c1762018-03-29 09:08:11 +08002189 eb = read_tree_block(fs_info, child_bytenr, child_gen,
2190 level, &first_key);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002191 if (IS_ERR(eb)) {
2192 ret = PTR_ERR(eb);
2193 goto out;
2194 } else if (!extent_buffer_uptodate(eb)) {
2195 free_extent_buffer(eb);
2196 ret = -EIO;
2197 goto out;
2198 }
2199
2200 path->nodes[level] = eb;
2201 path->slots[level] = 0;
2202
2203 btrfs_tree_read_lock(eb);
2204 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
2205 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
2206
Lu Fengqia95f3aa2018-07-18 16:28:03 +08002207 ret = btrfs_qgroup_trace_extent(trans, child_bytenr,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002208 fs_info->nodesize,
2209 GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002210 if (ret)
2211 goto out;
2212 }
2213
2214 if (level == 0) {
Lu Fengqi8d38d7e2018-07-18 14:45:37 +08002215 ret = btrfs_qgroup_trace_leaf_items(trans,
2216 path->nodes[level]);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002217 if (ret)
2218 goto out;
2219
2220 /* Nonzero return here means we completed our search */
David Sterba15b34512017-02-10 20:30:23 +01002221 ret = adjust_slots_upwards(path, root_level);
Qu Wenruo33d1f052016-10-18 09:31:28 +08002222 if (ret)
2223 break;
2224
2225 /* Restart search with new slots */
2226 goto walk_down;
2227 }
2228
2229 level--;
2230 }
2231
2232 ret = 0;
2233out:
2234 btrfs_free_path(path);
2235
2236 return ret;
2237}
2238
Qu Wenruod810ef22015-04-12 16:52:34 +08002239#define UPDATE_NEW 0
2240#define UPDATE_OLD 1
2241/*
2242 * Walk all of the roots that points to the bytenr and adjust their refcnts.
2243 */
2244static int qgroup_update_refcnt(struct btrfs_fs_info *fs_info,
2245 struct ulist *roots, struct ulist *tmp,
2246 struct ulist *qgroups, u64 seq, int update_old)
2247{
2248 struct ulist_node *unode;
2249 struct ulist_iterator uiter;
2250 struct ulist_node *tmp_unode;
2251 struct ulist_iterator tmp_uiter;
2252 struct btrfs_qgroup *qg;
2253 int ret = 0;
2254
2255 if (!roots)
2256 return 0;
2257 ULIST_ITER_INIT(&uiter);
2258 while ((unode = ulist_next(roots, &uiter))) {
2259 qg = find_qgroup_rb(fs_info, unode->val);
2260 if (!qg)
2261 continue;
2262
2263 ulist_reinit(tmp);
David Sterbaef2fff62016-10-26 16:23:50 +02002264 ret = ulist_add(qgroups, qg->qgroupid, qgroup_to_aux(qg),
Qu Wenruod810ef22015-04-12 16:52:34 +08002265 GFP_ATOMIC);
2266 if (ret < 0)
2267 return ret;
David Sterbaef2fff62016-10-26 16:23:50 +02002268 ret = ulist_add(tmp, qg->qgroupid, qgroup_to_aux(qg), GFP_ATOMIC);
Qu Wenruod810ef22015-04-12 16:52:34 +08002269 if (ret < 0)
2270 return ret;
2271 ULIST_ITER_INIT(&tmp_uiter);
2272 while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
2273 struct btrfs_qgroup_list *glist;
2274
David Sterbaef2fff62016-10-26 16:23:50 +02002275 qg = unode_aux_to_qgroup(tmp_unode);
Qu Wenruod810ef22015-04-12 16:52:34 +08002276 if (update_old)
2277 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
2278 else
2279 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
2280 list_for_each_entry(glist, &qg->groups, next_group) {
2281 ret = ulist_add(qgroups, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02002282 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08002283 GFP_ATOMIC);
2284 if (ret < 0)
2285 return ret;
2286 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02002287 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08002288 GFP_ATOMIC);
2289 if (ret < 0)
2290 return ret;
2291 }
2292 }
2293 }
2294 return 0;
2295}
2296
Josef Bacikfcebe452014-05-13 17:30:47 -07002297/*
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002298 * Update qgroup rfer/excl counters.
2299 * Rfer update is easy, codes can explain themselves.
Qu Wenruoe69bcee2015-04-17 10:23:16 +08002300 *
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002301 * Excl update is tricky, the update is split into 2 part.
2302 * Part 1: Possible exclusive <-> sharing detect:
2303 * | A | !A |
2304 * -------------------------------------
2305 * B | * | - |
2306 * -------------------------------------
2307 * !B | + | ** |
2308 * -------------------------------------
2309 *
2310 * Conditions:
2311 * A: cur_old_roots < nr_old_roots (not exclusive before)
2312 * !A: cur_old_roots == nr_old_roots (possible exclusive before)
2313 * B: cur_new_roots < nr_new_roots (not exclusive now)
Nicholas D Steeves01327612016-05-19 21:18:45 -04002314 * !B: cur_new_roots == nr_new_roots (possible exclusive now)
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002315 *
2316 * Results:
2317 * +: Possible sharing -> exclusive -: Possible exclusive -> sharing
2318 * *: Definitely not changed. **: Possible unchanged.
2319 *
2320 * For !A and !B condition, the exception is cur_old/new_roots == 0 case.
2321 *
2322 * To make the logic clear, we first use condition A and B to split
2323 * combination into 4 results.
2324 *
2325 * Then, for result "+" and "-", check old/new_roots == 0 case, as in them
2326 * only on variant maybe 0.
2327 *
2328 * Lastly, check result **, since there are 2 variants maybe 0, split them
2329 * again(2x2).
2330 * But this time we don't need to consider other things, the codes and logic
2331 * is easy to understand now.
2332 */
2333static int qgroup_update_counters(struct btrfs_fs_info *fs_info,
2334 struct ulist *qgroups,
2335 u64 nr_old_roots,
2336 u64 nr_new_roots,
2337 u64 num_bytes, u64 seq)
2338{
2339 struct ulist_node *unode;
2340 struct ulist_iterator uiter;
2341 struct btrfs_qgroup *qg;
2342 u64 cur_new_count, cur_old_count;
2343
2344 ULIST_ITER_INIT(&uiter);
2345 while ((unode = ulist_next(qgroups, &uiter))) {
2346 bool dirty = false;
2347
David Sterbaef2fff62016-10-26 16:23:50 +02002348 qg = unode_aux_to_qgroup(unode);
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002349 cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
2350 cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
2351
Qu Wenruo8b317902018-04-30 15:04:44 +08002352 trace_qgroup_update_counters(fs_info, qg, cur_old_count,
2353 cur_new_count);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002354
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002355 /* Rfer update part */
2356 if (cur_old_count == 0 && cur_new_count > 0) {
2357 qg->rfer += num_bytes;
2358 qg->rfer_cmpr += num_bytes;
2359 dirty = true;
2360 }
2361 if (cur_old_count > 0 && cur_new_count == 0) {
2362 qg->rfer -= num_bytes;
2363 qg->rfer_cmpr -= num_bytes;
2364 dirty = true;
2365 }
2366
2367 /* Excl update part */
2368 /* Exclusive/none -> shared case */
2369 if (cur_old_count == nr_old_roots &&
2370 cur_new_count < nr_new_roots) {
2371 /* Exclusive -> shared */
2372 if (cur_old_count != 0) {
2373 qg->excl -= num_bytes;
2374 qg->excl_cmpr -= num_bytes;
2375 dirty = true;
2376 }
2377 }
2378
2379 /* Shared -> exclusive/none case */
2380 if (cur_old_count < nr_old_roots &&
2381 cur_new_count == nr_new_roots) {
2382 /* Shared->exclusive */
2383 if (cur_new_count != 0) {
2384 qg->excl += num_bytes;
2385 qg->excl_cmpr += num_bytes;
2386 dirty = true;
2387 }
2388 }
2389
2390 /* Exclusive/none -> exclusive/none case */
2391 if (cur_old_count == nr_old_roots &&
2392 cur_new_count == nr_new_roots) {
2393 if (cur_old_count == 0) {
2394 /* None -> exclusive/none */
2395
2396 if (cur_new_count != 0) {
2397 /* None -> exclusive */
2398 qg->excl += num_bytes;
2399 qg->excl_cmpr += num_bytes;
2400 dirty = true;
2401 }
2402 /* None -> none, nothing changed */
2403 } else {
2404 /* Exclusive -> exclusive/none */
2405
2406 if (cur_new_count == 0) {
2407 /* Exclusive -> none */
2408 qg->excl -= num_bytes;
2409 qg->excl_cmpr -= num_bytes;
2410 dirty = true;
2411 }
2412 /* Exclusive -> exclusive, nothing changed */
2413 }
2414 }
Qu Wenruoc05f9422015-08-03 14:44:29 +08002415
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002416 if (dirty)
2417 qgroup_dirty(fs_info, qg);
2418 }
2419 return 0;
2420}
2421
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002422/*
2423 * Check if the @roots potentially is a list of fs tree roots
2424 *
2425 * Return 0 for definitely not a fs/subvol tree roots ulist
2426 * Return 1 for possible fs/subvol tree roots in the list (considering an empty
2427 * one as well)
2428 */
2429static int maybe_fs_roots(struct ulist *roots)
2430{
2431 struct ulist_node *unode;
2432 struct ulist_iterator uiter;
2433
2434 /* Empty one, still possible for fs roots */
2435 if (!roots || roots->nnodes == 0)
2436 return 1;
2437
2438 ULIST_ITER_INIT(&uiter);
2439 unode = ulist_next(roots, &uiter);
2440 if (!unode)
2441 return 1;
2442
2443 /*
2444 * If it contains fs tree roots, then it must belong to fs/subvol
2445 * trees.
2446 * If it contains a non-fs tree, it won't be shared with fs/subvol trees.
2447 */
2448 return is_fstree(unode->val);
2449}
2450
Lu Fengqi8696d762018-07-18 14:45:39 +08002451int btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans, u64 bytenr,
2452 u64 num_bytes, struct ulist *old_roots,
2453 struct ulist *new_roots)
Qu Wenruo550d7a22015-04-16 15:37:33 +08002454{
Lu Fengqi8696d762018-07-18 14:45:39 +08002455 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002456 struct ulist *qgroups = NULL;
2457 struct ulist *tmp = NULL;
2458 u64 seq;
2459 u64 nr_new_roots = 0;
2460 u64 nr_old_roots = 0;
2461 int ret = 0;
2462
David Sterba81353d52017-02-13 14:05:24 +01002463 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2464 return 0;
2465
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002466 if (new_roots) {
2467 if (!maybe_fs_roots(new_roots))
2468 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002469 nr_new_roots = new_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002470 }
2471 if (old_roots) {
2472 if (!maybe_fs_roots(old_roots))
2473 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002474 nr_old_roots = old_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002475 }
2476
2477 /* Quick exit, either not fs tree roots, or won't affect any qgroup */
2478 if (nr_old_roots == 0 && nr_new_roots == 0)
2479 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002480
Qu Wenruo550d7a22015-04-16 15:37:33 +08002481 BUG_ON(!fs_info->quota_root);
2482
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08002483 trace_btrfs_qgroup_account_extent(fs_info, trans->transid, bytenr,
2484 num_bytes, nr_old_roots, nr_new_roots);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002485
Qu Wenruo550d7a22015-04-16 15:37:33 +08002486 qgroups = ulist_alloc(GFP_NOFS);
2487 if (!qgroups) {
2488 ret = -ENOMEM;
2489 goto out_free;
2490 }
2491 tmp = ulist_alloc(GFP_NOFS);
2492 if (!tmp) {
2493 ret = -ENOMEM;
2494 goto out_free;
2495 }
2496
2497 mutex_lock(&fs_info->qgroup_rescan_lock);
2498 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2499 if (fs_info->qgroup_rescan_progress.objectid <= bytenr) {
2500 mutex_unlock(&fs_info->qgroup_rescan_lock);
2501 ret = 0;
2502 goto out_free;
2503 }
2504 }
2505 mutex_unlock(&fs_info->qgroup_rescan_lock);
2506
2507 spin_lock(&fs_info->qgroup_lock);
2508 seq = fs_info->qgroup_seq;
2509
2510 /* Update old refcnts using old_roots */
2511 ret = qgroup_update_refcnt(fs_info, old_roots, tmp, qgroups, seq,
2512 UPDATE_OLD);
2513 if (ret < 0)
2514 goto out;
2515
2516 /* Update new refcnts using new_roots */
2517 ret = qgroup_update_refcnt(fs_info, new_roots, tmp, qgroups, seq,
2518 UPDATE_NEW);
2519 if (ret < 0)
2520 goto out;
2521
2522 qgroup_update_counters(fs_info, qgroups, nr_old_roots, nr_new_roots,
2523 num_bytes, seq);
2524
2525 /*
2526 * Bump qgroup_seq to avoid seq overlap
2527 */
2528 fs_info->qgroup_seq += max(nr_old_roots, nr_new_roots) + 1;
2529out:
2530 spin_unlock(&fs_info->qgroup_lock);
2531out_free:
2532 ulist_free(tmp);
2533 ulist_free(qgroups);
2534 ulist_free(old_roots);
2535 ulist_free(new_roots);
2536 return ret;
2537}
2538
Nikolay Borisov460fb202018-03-15 16:00:25 +02002539int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans)
Qu Wenruo550d7a22015-04-16 15:37:33 +08002540{
Nikolay Borisov460fb202018-03-15 16:00:25 +02002541 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002542 struct btrfs_qgroup_extent_record *record;
2543 struct btrfs_delayed_ref_root *delayed_refs;
2544 struct ulist *new_roots = NULL;
2545 struct rb_node *node;
Qu Wenruoc337e7b2018-09-27 14:42:29 +08002546 u64 num_dirty_extents = 0;
Qu Wenruo9086db82015-04-20 09:53:50 +08002547 u64 qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002548 int ret = 0;
2549
2550 delayed_refs = &trans->transaction->delayed_refs;
Qu Wenruo9086db82015-04-20 09:53:50 +08002551 qgroup_to_skip = delayed_refs->qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002552 while ((node = rb_first(&delayed_refs->dirty_extent_root))) {
2553 record = rb_entry(node, struct btrfs_qgroup_extent_record,
2554 node);
2555
Qu Wenruoc337e7b2018-09-27 14:42:29 +08002556 num_dirty_extents++;
Jeff Mahoneybc074522016-06-09 17:27:55 -04002557 trace_btrfs_qgroup_account_extents(fs_info, record);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002558
Qu Wenruo550d7a22015-04-16 15:37:33 +08002559 if (!ret) {
2560 /*
Qu Wenruod1b8b942017-02-27 15:10:35 +08002561 * Old roots should be searched when inserting qgroup
2562 * extent record
2563 */
2564 if (WARN_ON(!record->old_roots)) {
2565 /* Search commit root to find old_roots */
2566 ret = btrfs_find_all_roots(NULL, fs_info,
2567 record->bytenr, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002568 &record->old_roots, false);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002569 if (ret < 0)
2570 goto cleanup;
2571 }
2572
2573 /*
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06002574 * Use SEQ_LAST as time_seq to do special search, which
Qu Wenruo550d7a22015-04-16 15:37:33 +08002575 * doesn't lock tree or delayed_refs and search current
2576 * root. It's safe inside commit_transaction().
2577 */
2578 ret = btrfs_find_all_roots(trans, fs_info,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002579 record->bytenr, SEQ_LAST, &new_roots, false);
Qu Wenruo550d7a22015-04-16 15:37:33 +08002580 if (ret < 0)
2581 goto cleanup;
Qu Wenruod1b8b942017-02-27 15:10:35 +08002582 if (qgroup_to_skip) {
Qu Wenruo9086db82015-04-20 09:53:50 +08002583 ulist_del(new_roots, qgroup_to_skip, 0);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002584 ulist_del(record->old_roots, qgroup_to_skip,
2585 0);
2586 }
Lu Fengqi8696d762018-07-18 14:45:39 +08002587 ret = btrfs_qgroup_account_extent(trans, record->bytenr,
2588 record->num_bytes,
2589 record->old_roots,
2590 new_roots);
Qu Wenruo550d7a22015-04-16 15:37:33 +08002591 record->old_roots = NULL;
2592 new_roots = NULL;
2593 }
2594cleanup:
2595 ulist_free(record->old_roots);
2596 ulist_free(new_roots);
2597 new_roots = NULL;
2598 rb_erase(node, &delayed_refs->dirty_extent_root);
2599 kfree(record);
2600
2601 }
Qu Wenruoc337e7b2018-09-27 14:42:29 +08002602 trace_qgroup_num_dirty_extents(fs_info, trans->transid,
2603 num_dirty_extents);
Qu Wenruo550d7a22015-04-16 15:37:33 +08002604 return ret;
2605}
2606
Josef Bacikfcebe452014-05-13 17:30:47 -07002607/*
Arne Jansenbed92ea2012-06-28 18:03:02 +02002608 * called from commit_transaction. Writes all changed qgroups to disk.
2609 */
Lu Fengqi280f8bd2018-07-18 14:45:40 +08002610int btrfs_run_qgroups(struct btrfs_trans_handle *trans)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002611{
Lu Fengqi280f8bd2018-07-18 14:45:40 +08002612 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002613 struct btrfs_root *quota_root = fs_info->quota_root;
2614 int ret = 0;
2615
2616 if (!quota_root)
Nikolay Borisov5d235152018-01-31 10:52:04 +02002617 return ret;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002618
2619 spin_lock(&fs_info->qgroup_lock);
2620 while (!list_empty(&fs_info->dirty_qgroups)) {
2621 struct btrfs_qgroup *qgroup;
2622 qgroup = list_first_entry(&fs_info->dirty_qgroups,
2623 struct btrfs_qgroup, dirty);
2624 list_del_init(&qgroup->dirty);
2625 spin_unlock(&fs_info->qgroup_lock);
Lu Fengqi3e07e9a2018-07-18 14:45:28 +08002626 ret = update_qgroup_info_item(trans, qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002627 if (ret)
2628 fs_info->qgroup_flags |=
2629 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Lu Fengqiac8a8662018-07-18 14:45:27 +08002630 ret = update_qgroup_limit_item(trans, qgroup);
Dongsheng Yangd3001ed2014-11-20 21:04:56 -05002631 if (ret)
2632 fs_info->qgroup_flags |=
2633 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002634 spin_lock(&fs_info->qgroup_lock);
2635 }
Josef Bacikafcdd122016-09-02 15:40:02 -04002636 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Arne Jansenbed92ea2012-06-28 18:03:02 +02002637 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_ON;
2638 else
2639 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
2640 spin_unlock(&fs_info->qgroup_lock);
2641
Lu Fengqi2e980ac2018-07-18 14:45:29 +08002642 ret = update_qgroup_status_item(trans);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002643 if (ret)
2644 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2645
Arne Jansenbed92ea2012-06-28 18:03:02 +02002646 return ret;
2647}
2648
2649/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002650 * Copy the accounting information between qgroups. This is necessary
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002651 * when a snapshot or a subvolume is created. Throwing an error will
2652 * cause a transaction abort so we take extra care here to only error
2653 * when a readonly fs is a reasonable outcome.
Arne Jansenbed92ea2012-06-28 18:03:02 +02002654 */
Lu Fengqia93774222018-07-18 14:45:41 +08002655int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans, u64 srcid,
2656 u64 objectid, struct btrfs_qgroup_inherit *inherit)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002657{
2658 int ret = 0;
2659 int i;
2660 u64 *i_qgroups;
Lu Fengqia93774222018-07-18 14:45:41 +08002661 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana552f0322018-11-19 16:20:34 +00002662 struct btrfs_root *quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002663 struct btrfs_qgroup *srcgroup;
2664 struct btrfs_qgroup *dstgroup;
2665 u32 level_size = 0;
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002666 u64 nums;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002667
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002668 mutex_lock(&fs_info->qgroup_ioctl_lock);
Josef Bacikafcdd122016-09-02 15:40:02 -04002669 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002670 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002671
Filipe Manana552f0322018-11-19 16:20:34 +00002672 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002673 if (!quota_root) {
2674 ret = -EINVAL;
2675 goto out;
2676 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002677
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002678 if (inherit) {
2679 i_qgroups = (u64 *)(inherit + 1);
2680 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
2681 2 * inherit->num_excl_copies;
2682 for (i = 0; i < nums; ++i) {
2683 srcgroup = find_qgroup_rb(fs_info, *i_qgroups);
Dongsheng Yang09870d22014-11-11 07:18:22 -05002684
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002685 /*
2686 * Zero out invalid groups so we can ignore
2687 * them later.
2688 */
2689 if (!srcgroup ||
2690 ((srcgroup->qgroupid >> 48) <= (objectid >> 48)))
2691 *i_qgroups = 0ULL;
2692
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002693 ++i_qgroups;
2694 }
2695 }
2696
Arne Jansenbed92ea2012-06-28 18:03:02 +02002697 /*
2698 * create a tracking group for the subvol itself
2699 */
2700 ret = add_qgroup_item(trans, quota_root, objectid);
2701 if (ret)
2702 goto out;
2703
Arne Jansenbed92ea2012-06-28 18:03:02 +02002704 /*
2705 * add qgroup to all inherited groups
2706 */
2707 if (inherit) {
2708 i_qgroups = (u64 *)(inherit + 1);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002709 for (i = 0; i < inherit->num_qgroups; ++i, ++i_qgroups) {
2710 if (*i_qgroups == 0)
2711 continue;
Lu Fengqi711169c2018-07-18 14:45:24 +08002712 ret = add_qgroup_relation_item(trans, objectid,
2713 *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002714 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002715 goto out;
Lu Fengqi711169c2018-07-18 14:45:24 +08002716 ret = add_qgroup_relation_item(trans, *i_qgroups,
2717 objectid);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002718 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002719 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002720 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002721 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002722 }
2723
2724
2725 spin_lock(&fs_info->qgroup_lock);
2726
2727 dstgroup = add_qgroup_rb(fs_info, objectid);
Dan Carpenter57a5a882012-07-30 02:15:43 -06002728 if (IS_ERR(dstgroup)) {
2729 ret = PTR_ERR(dstgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002730 goto unlock;
Dan Carpenter57a5a882012-07-30 02:15:43 -06002731 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002732
Dongsheng Yange8c85412014-11-20 20:58:34 -05002733 if (inherit && inherit->flags & BTRFS_QGROUP_INHERIT_SET_LIMITS) {
Dongsheng Yange8c85412014-11-20 20:58:34 -05002734 dstgroup->lim_flags = inherit->lim.flags;
2735 dstgroup->max_rfer = inherit->lim.max_rfer;
2736 dstgroup->max_excl = inherit->lim.max_excl;
2737 dstgroup->rsv_rfer = inherit->lim.rsv_rfer;
2738 dstgroup->rsv_excl = inherit->lim.rsv_excl;
Dongsheng Yang1510e712014-11-20 21:01:41 -05002739
Lu Fengqiac8a8662018-07-18 14:45:27 +08002740 ret = update_qgroup_limit_item(trans, dstgroup);
Dongsheng Yang1510e712014-11-20 21:01:41 -05002741 if (ret) {
2742 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002743 btrfs_info(fs_info,
2744 "unable to update quota limit for %llu",
2745 dstgroup->qgroupid);
Dongsheng Yang1510e712014-11-20 21:01:41 -05002746 goto unlock;
2747 }
Dongsheng Yange8c85412014-11-20 20:58:34 -05002748 }
2749
Arne Jansenbed92ea2012-06-28 18:03:02 +02002750 if (srcid) {
2751 srcgroup = find_qgroup_rb(fs_info, srcid);
Chris Masonf3a87f12012-09-14 20:06:30 -04002752 if (!srcgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002753 goto unlock;
Josef Bacikfcebe452014-05-13 17:30:47 -07002754
2755 /*
2756 * We call inherit after we clone the root in order to make sure
2757 * our counts don't go crazy, so at this point the only
2758 * difference between the two roots should be the root node.
2759 */
Lu Fengqic8389d42018-07-17 16:58:22 +08002760 level_size = fs_info->nodesize;
Josef Bacikfcebe452014-05-13 17:30:47 -07002761 dstgroup->rfer = srcgroup->rfer;
2762 dstgroup->rfer_cmpr = srcgroup->rfer_cmpr;
2763 dstgroup->excl = level_size;
2764 dstgroup->excl_cmpr = level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002765 srcgroup->excl = level_size;
2766 srcgroup->excl_cmpr = level_size;
Dongsheng Yang3eeb4d52014-11-20 20:14:38 -05002767
2768 /* inherit the limit info */
2769 dstgroup->lim_flags = srcgroup->lim_flags;
2770 dstgroup->max_rfer = srcgroup->max_rfer;
2771 dstgroup->max_excl = srcgroup->max_excl;
2772 dstgroup->rsv_rfer = srcgroup->rsv_rfer;
2773 dstgroup->rsv_excl = srcgroup->rsv_excl;
2774
Arne Jansenbed92ea2012-06-28 18:03:02 +02002775 qgroup_dirty(fs_info, dstgroup);
2776 qgroup_dirty(fs_info, srcgroup);
2777 }
2778
Chris Masonf3a87f12012-09-14 20:06:30 -04002779 if (!inherit)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002780 goto unlock;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002781
2782 i_qgroups = (u64 *)(inherit + 1);
2783 for (i = 0; i < inherit->num_qgroups; ++i) {
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002784 if (*i_qgroups) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002785 ret = add_relation_rb(fs_info, objectid, *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002786 if (ret)
2787 goto unlock;
2788 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002789 ++i_qgroups;
2790 }
2791
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002792 for (i = 0; i < inherit->num_ref_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002793 struct btrfs_qgroup *src;
2794 struct btrfs_qgroup *dst;
2795
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002796 if (!i_qgroups[0] || !i_qgroups[1])
2797 continue;
2798
Arne Jansenbed92ea2012-06-28 18:03:02 +02002799 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2800 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2801
2802 if (!src || !dst) {
2803 ret = -EINVAL;
2804 goto unlock;
2805 }
2806
2807 dst->rfer = src->rfer - level_size;
2808 dst->rfer_cmpr = src->rfer_cmpr - level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002809 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002810 for (i = 0; i < inherit->num_excl_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002811 struct btrfs_qgroup *src;
2812 struct btrfs_qgroup *dst;
2813
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002814 if (!i_qgroups[0] || !i_qgroups[1])
2815 continue;
2816
Arne Jansenbed92ea2012-06-28 18:03:02 +02002817 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2818 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2819
2820 if (!src || !dst) {
2821 ret = -EINVAL;
2822 goto unlock;
2823 }
2824
2825 dst->excl = src->excl + level_size;
2826 dst->excl_cmpr = src->excl_cmpr + level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002827 }
2828
2829unlock:
2830 spin_unlock(&fs_info->qgroup_lock);
2831out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002832 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002833 return ret;
2834}
2835
Qu Wenruoa514d632017-12-22 16:06:39 +08002836/*
2837 * Two limits to commit transaction in advance.
2838 *
2839 * For RATIO, it will be 1/RATIO of the remaining limit
2840 * (excluding data and prealloc meta) as threshold.
2841 * For SIZE, it will be in byte unit as threshold.
2842 */
2843#define QGROUP_PERTRANS_RATIO 32
2844#define QGROUP_PERTRANS_SIZE SZ_32M
2845static bool qgroup_check_limits(struct btrfs_fs_info *fs_info,
2846 const struct btrfs_qgroup *qg, u64 num_bytes)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002847{
Qu Wenruoa514d632017-12-22 16:06:39 +08002848 u64 limit;
2849 u64 threshold;
2850
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002851 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002852 qgroup_rsv_total(qg) + (s64)qg->rfer + num_bytes > qg->max_rfer)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002853 return false;
2854
2855 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002856 qgroup_rsv_total(qg) + (s64)qg->excl + num_bytes > qg->max_excl)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002857 return false;
2858
Qu Wenruoa514d632017-12-22 16:06:39 +08002859 /*
2860 * Even if we passed the check, it's better to check if reservation
2861 * for meta_pertrans is pushing us near limit.
2862 * If there is too much pertrans reservation or it's near the limit,
2863 * let's try commit transaction to free some, using transaction_kthread
2864 */
2865 if ((qg->lim_flags & (BTRFS_QGROUP_LIMIT_MAX_RFER |
2866 BTRFS_QGROUP_LIMIT_MAX_EXCL))) {
2867 if (qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL)
2868 limit = qg->max_excl;
2869 else
2870 limit = qg->max_rfer;
2871 threshold = (limit - qg->rsv.values[BTRFS_QGROUP_RSV_DATA] -
2872 qg->rsv.values[BTRFS_QGROUP_RSV_META_PREALLOC]) /
2873 QGROUP_PERTRANS_RATIO;
2874 threshold = min_t(u64, threshold, QGROUP_PERTRANS_SIZE);
2875
2876 /*
2877 * Use transaction_kthread to commit transaction, so we no
2878 * longer need to bother nested transaction nor lock context.
2879 */
2880 if (qg->rsv.values[BTRFS_QGROUP_RSV_META_PERTRANS] > threshold)
2881 btrfs_commit_transaction_locksafe(fs_info);
2882 }
2883
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002884 return true;
2885}
2886
Qu Wenruodba21322017-12-12 15:34:25 +08002887static int qgroup_reserve(struct btrfs_root *root, u64 num_bytes, bool enforce,
2888 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002889{
2890 struct btrfs_root *quota_root;
2891 struct btrfs_qgroup *qgroup;
2892 struct btrfs_fs_info *fs_info = root->fs_info;
2893 u64 ref_root = root->root_key.objectid;
2894 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002895 struct ulist_node *unode;
2896 struct ulist_iterator uiter;
2897
2898 if (!is_fstree(ref_root))
2899 return 0;
2900
2901 if (num_bytes == 0)
2902 return 0;
Sargun Dhillonf29efe22017-05-11 21:17:33 +00002903
2904 if (test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags) &&
2905 capable(CAP_SYS_RESOURCE))
2906 enforce = false;
2907
Arne Jansenbed92ea2012-06-28 18:03:02 +02002908 spin_lock(&fs_info->qgroup_lock);
2909 quota_root = fs_info->quota_root;
2910 if (!quota_root)
2911 goto out;
2912
2913 qgroup = find_qgroup_rb(fs_info, ref_root);
2914 if (!qgroup)
2915 goto out;
2916
2917 /*
2918 * in a first step, we check all affected qgroups if any limits would
2919 * be exceeded
2920 */
Wang Shilong1e8f9152013-05-06 11:03:27 +00002921 ulist_reinit(fs_info->qgroup_ulist);
2922 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002923 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002924 if (ret < 0)
2925 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002926 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002927 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002928 struct btrfs_qgroup *qg;
2929 struct btrfs_qgroup_list *glist;
2930
David Sterbaef2fff62016-10-26 16:23:50 +02002931 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002932
Qu Wenruoa514d632017-12-22 16:06:39 +08002933 if (enforce && !qgroup_check_limits(fs_info, qg, num_bytes)) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002934 ret = -EDQUOT;
Wang Shilong720f1e22013-03-06 11:51:47 +00002935 goto out;
2936 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002937
2938 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002939 ret = ulist_add(fs_info->qgroup_ulist,
2940 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002941 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002942 if (ret < 0)
2943 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002944 }
2945 }
Wang Shilong3c971852013-04-17 14:00:36 +00002946 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002947 /*
2948 * no limits exceeded, now record the reservation into all qgroups
2949 */
2950 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002951 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002952 struct btrfs_qgroup *qg;
2953
David Sterbaef2fff62016-10-26 16:23:50 +02002954 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002955
Qu Wenruo64ee4e72017-12-12 15:34:27 +08002956 trace_qgroup_update_reserve(fs_info, qg, num_bytes, type);
2957 qgroup_rsv_add(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002958 }
2959
2960out:
2961 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002962 return ret;
2963}
2964
Qu Wenruoe1211d02017-12-12 15:34:30 +08002965/*
2966 * Free @num_bytes of reserved space with @type for qgroup. (Normally level 0
2967 * qgroup).
2968 *
2969 * Will handle all higher level qgroup too.
2970 *
2971 * NOTE: If @num_bytes is (u64)-1, this means to free all bytes of this qgroup.
2972 * This special case is only used for META_PERTRANS type.
2973 */
Qu Wenruo297d7502015-09-08 17:08:37 +08002974void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
Qu Wenruod4e5c922017-12-12 15:34:23 +08002975 u64 ref_root, u64 num_bytes,
2976 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002977{
2978 struct btrfs_root *quota_root;
2979 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002980 struct ulist_node *unode;
2981 struct ulist_iterator uiter;
Wang Shilong3c971852013-04-17 14:00:36 +00002982 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002983
2984 if (!is_fstree(ref_root))
2985 return;
2986
2987 if (num_bytes == 0)
2988 return;
2989
Qu Wenruoe1211d02017-12-12 15:34:30 +08002990 if (num_bytes == (u64)-1 && type != BTRFS_QGROUP_RSV_META_PERTRANS) {
2991 WARN(1, "%s: Invalid type to free", __func__);
2992 return;
2993 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002994 spin_lock(&fs_info->qgroup_lock);
2995
2996 quota_root = fs_info->quota_root;
2997 if (!quota_root)
2998 goto out;
2999
3000 qgroup = find_qgroup_rb(fs_info, ref_root);
3001 if (!qgroup)
3002 goto out;
3003
Qu Wenruoe1211d02017-12-12 15:34:30 +08003004 if (num_bytes == (u64)-1)
Qu Wenruo82874752017-12-12 15:34:34 +08003005 /*
3006 * We're freeing all pertrans rsv, get reserved value from
3007 * level 0 qgroup as real num_bytes to free.
3008 */
Qu Wenruoe1211d02017-12-12 15:34:30 +08003009 num_bytes = qgroup->rsv.values[type];
3010
Wang Shilong1e8f9152013-05-06 11:03:27 +00003011 ulist_reinit(fs_info->qgroup_ulist);
3012 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003013 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00003014 if (ret < 0)
3015 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02003016 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00003017 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02003018 struct btrfs_qgroup *qg;
3019 struct btrfs_qgroup_list *glist;
3020
David Sterbaef2fff62016-10-26 16:23:50 +02003021 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02003022
Qu Wenruo64ee4e72017-12-12 15:34:27 +08003023 trace_qgroup_update_reserve(fs_info, qg, -(s64)num_bytes, type);
3024 qgroup_rsv_release(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02003025
3026 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00003027 ret = ulist_add(fs_info->qgroup_ulist,
3028 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003029 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00003030 if (ret < 0)
3031 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02003032 }
3033 }
3034
3035out:
3036 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02003037}
3038
Jan Schmidt2f232032013-04-25 16:04:51 +00003039/*
Qu Wenruoff3d27a02018-05-14 09:38:13 +08003040 * Check if the leaf is the last leaf. Which means all node pointers
3041 * are at their last position.
3042 */
3043static bool is_last_leaf(struct btrfs_path *path)
3044{
3045 int i;
3046
3047 for (i = 1; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
3048 if (path->slots[i] != btrfs_header_nritems(path->nodes[i]) - 1)
3049 return false;
3050 }
3051 return true;
3052}
3053
3054/*
Jan Schmidt2f232032013-04-25 16:04:51 +00003055 * returns < 0 on error, 0 when more leafs are to be scanned.
Qu Wenruo33931682015-02-27 16:24:24 +08003056 * returns 1 when done.
Jan Schmidt2f232032013-04-25 16:04:51 +00003057 */
Lu Fengqi62088ca2018-07-18 14:45:42 +08003058static int qgroup_rescan_leaf(struct btrfs_trans_handle *trans,
3059 struct btrfs_path *path)
Jan Schmidt2f232032013-04-25 16:04:51 +00003060{
Lu Fengqi62088ca2018-07-18 14:45:42 +08003061 struct btrfs_fs_info *fs_info = trans->fs_info;
Jan Schmidt2f232032013-04-25 16:04:51 +00003062 struct btrfs_key found;
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08003063 struct extent_buffer *scratch_leaf = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00003064 struct ulist *roots = NULL;
Josef Bacikfcebe452014-05-13 17:30:47 -07003065 u64 num_bytes;
Qu Wenruoff3d27a02018-05-14 09:38:13 +08003066 bool done;
Jan Schmidt2f232032013-04-25 16:04:51 +00003067 int slot;
3068 int ret;
3069
Jan Schmidt2f232032013-04-25 16:04:51 +00003070 mutex_lock(&fs_info->qgroup_rescan_lock);
3071 ret = btrfs_search_slot_for_read(fs_info->extent_root,
3072 &fs_info->qgroup_rescan_progress,
3073 path, 1, 0);
3074
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04003075 btrfs_debug(fs_info,
3076 "current progress key (%llu %u %llu), search_slot ret %d",
3077 fs_info->qgroup_rescan_progress.objectid,
3078 fs_info->qgroup_rescan_progress.type,
3079 fs_info->qgroup_rescan_progress.offset, ret);
Jan Schmidt2f232032013-04-25 16:04:51 +00003080
3081 if (ret) {
3082 /*
3083 * The rescan is about to end, we will not be scanning any
3084 * further blocks. We cannot unset the RESCAN flag here, because
3085 * we want to commit the transaction if everything went well.
3086 * To make the live accounting work in this phase, we set our
3087 * scan progress pointer such that every real extent objectid
3088 * will be smaller.
3089 */
3090 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
3091 btrfs_release_path(path);
3092 mutex_unlock(&fs_info->qgroup_rescan_lock);
3093 return ret;
3094 }
Qu Wenruoff3d27a02018-05-14 09:38:13 +08003095 done = is_last_leaf(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00003096
3097 btrfs_item_key_to_cpu(path->nodes[0], &found,
3098 btrfs_header_nritems(path->nodes[0]) - 1);
3099 fs_info->qgroup_rescan_progress.objectid = found.objectid + 1;
3100
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08003101 scratch_leaf = btrfs_clone_extent_buffer(path->nodes[0]);
3102 if (!scratch_leaf) {
3103 ret = -ENOMEM;
3104 mutex_unlock(&fs_info->qgroup_rescan_lock);
3105 goto out;
3106 }
Jan Schmidt2f232032013-04-25 16:04:51 +00003107 slot = path->slots[0];
3108 btrfs_release_path(path);
3109 mutex_unlock(&fs_info->qgroup_rescan_lock);
3110
3111 for (; slot < btrfs_header_nritems(scratch_leaf); ++slot) {
3112 btrfs_item_key_to_cpu(scratch_leaf, &found, slot);
Josef Bacik3a6d75e2014-01-23 16:45:10 -05003113 if (found.type != BTRFS_EXTENT_ITEM_KEY &&
3114 found.type != BTRFS_METADATA_ITEM_KEY)
Jan Schmidt2f232032013-04-25 16:04:51 +00003115 continue;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05003116 if (found.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoneyda170662016-06-15 09:22:56 -04003117 num_bytes = fs_info->nodesize;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05003118 else
3119 num_bytes = found.offset;
3120
Josef Bacikfcebe452014-05-13 17:30:47 -07003121 ret = btrfs_find_all_roots(NULL, fs_info, found.objectid, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04003122 &roots, false);
Jan Schmidt2f232032013-04-25 16:04:51 +00003123 if (ret < 0)
3124 goto out;
Qu Wenruo9d220c92015-04-13 11:02:16 +08003125 /* For rescan, just pass old_roots as NULL */
Lu Fengqi8696d762018-07-18 14:45:39 +08003126 ret = btrfs_qgroup_account_extent(trans, found.objectid,
3127 num_bytes, NULL, roots);
Qu Wenruo9d220c92015-04-13 11:02:16 +08003128 if (ret < 0)
Jan Schmidt2f232032013-04-25 16:04:51 +00003129 goto out;
Jan Schmidt2f232032013-04-25 16:04:51 +00003130 }
Jan Schmidt2f232032013-04-25 16:04:51 +00003131out:
Nikolay Borisovdf449712018-08-15 18:26:56 +03003132 if (scratch_leaf)
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08003133 free_extent_buffer(scratch_leaf);
Jan Schmidt2f232032013-04-25 16:04:51 +00003134
Qu Wenruo6f7de192018-06-27 18:19:55 +08003135 if (done && !ret) {
Qu Wenruoff3d27a02018-05-14 09:38:13 +08003136 ret = 1;
Qu Wenruo6f7de192018-06-27 18:19:55 +08003137 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
3138 }
Jan Schmidt2f232032013-04-25 16:04:51 +00003139 return ret;
3140}
3141
Qu Wenruod458b052014-02-28 10:46:19 +08003142static void btrfs_qgroup_rescan_worker(struct btrfs_work *work)
Jan Schmidt2f232032013-04-25 16:04:51 +00003143{
Jan Schmidtb382a322013-05-28 15:47:24 +00003144 struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info,
3145 qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00003146 struct btrfs_path *path;
3147 struct btrfs_trans_handle *trans = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00003148 int err = -ENOMEM;
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003149 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00003150
3151 path = btrfs_alloc_path();
3152 if (!path)
3153 goto out;
Qu Wenruob6debf12018-05-14 09:38:12 +08003154 /*
3155 * Rescan should only search for commit root, and any later difference
3156 * should be recorded by qgroup
3157 */
3158 path->search_commit_root = 1;
3159 path->skip_locking = 1;
Jan Schmidt2f232032013-04-25 16:04:51 +00003160
3161 err = 0;
Justin Maggard7343dd62015-11-04 15:56:16 -08003162 while (!err && !btrfs_fs_closing(fs_info)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00003163 trans = btrfs_start_transaction(fs_info->fs_root, 0);
3164 if (IS_ERR(trans)) {
3165 err = PTR_ERR(trans);
3166 break;
3167 }
Josef Bacikafcdd122016-09-02 15:40:02 -04003168 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00003169 err = -EINTR;
3170 } else {
Lu Fengqi62088ca2018-07-18 14:45:42 +08003171 err = qgroup_rescan_leaf(trans, path);
Jan Schmidt2f232032013-04-25 16:04:51 +00003172 }
3173 if (err > 0)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003174 btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00003175 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003176 btrfs_end_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00003177 }
3178
3179out:
Jan Schmidt2f232032013-04-25 16:04:51 +00003180 btrfs_free_path(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00003181
3182 mutex_lock(&fs_info->qgroup_rescan_lock);
Justin Maggard7343dd62015-11-04 15:56:16 -08003183 if (!btrfs_fs_closing(fs_info))
3184 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidt2f232032013-04-25 16:04:51 +00003185
Qu Wenruo33931682015-02-27 16:24:24 +08003186 if (err > 0 &&
Jan Schmidt2f232032013-04-25 16:04:51 +00003187 fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT) {
3188 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
3189 } else if (err < 0) {
3190 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
3191 }
3192 mutex_unlock(&fs_info->qgroup_rescan_lock);
3193
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003194 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04003195 * only update status, since the previous part has already updated the
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003196 * qgroup info.
3197 */
3198 trans = btrfs_start_transaction(fs_info->quota_root, 1);
3199 if (IS_ERR(trans)) {
3200 err = PTR_ERR(trans);
3201 btrfs_err(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02003202 "fail to start transaction for status update: %d",
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003203 err);
3204 goto done;
3205 }
Lu Fengqi2e980ac2018-07-18 14:45:29 +08003206 ret = update_qgroup_status_item(trans);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003207 if (ret < 0) {
3208 err = ret;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04003209 btrfs_err(fs_info, "fail to update qgroup status: %d", err);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003210 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003211 btrfs_end_transaction(trans);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003212
Justin Maggard7343dd62015-11-04 15:56:16 -08003213 if (btrfs_fs_closing(fs_info)) {
3214 btrfs_info(fs_info, "qgroup scan paused");
3215 } else if (err >= 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003216 btrfs_info(fs_info, "qgroup scan completed%s",
Qu Wenruo33931682015-02-27 16:24:24 +08003217 err > 0 ? " (inconsistency flag cleared)" : "");
Jan Schmidt2f232032013-04-25 16:04:51 +00003218 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003219 btrfs_err(fs_info, "qgroup scan failed with %d", err);
Jan Schmidt2f232032013-04-25 16:04:51 +00003220 }
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003221
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003222done:
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04003223 mutex_lock(&fs_info->qgroup_rescan_lock);
3224 fs_info->qgroup_rescan_running = false;
3225 mutex_unlock(&fs_info->qgroup_rescan_lock);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003226 complete_all(&fs_info->qgroup_rescan_completion);
Jan Schmidt2f232032013-04-25 16:04:51 +00003227}
3228
Jan Schmidtb382a322013-05-28 15:47:24 +00003229/*
3230 * Checks that (a) no rescan is running and (b) quota is enabled. Allocates all
3231 * memory required for the rescan context.
3232 */
3233static int
3234qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
3235 int init_flags)
Jan Schmidt2f232032013-04-25 16:04:51 +00003236{
3237 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00003238
Qu Wenruo9593bf492018-05-02 13:28:03 +08003239 if (!init_flags) {
3240 /* we're resuming qgroup rescan at mount time */
Filipe Mananae4e7ede2018-06-27 00:43:15 +01003241 if (!(fs_info->qgroup_flags &
3242 BTRFS_QGROUP_STATUS_FLAG_RESCAN)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08003243 btrfs_warn(fs_info,
3244 "qgroup rescan init failed, qgroup is not enabled");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01003245 ret = -EINVAL;
3246 } else if (!(fs_info->qgroup_flags &
3247 BTRFS_QGROUP_STATUS_FLAG_ON)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08003248 btrfs_warn(fs_info,
3249 "qgroup rescan init failed, qgroup rescan is not queued");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01003250 ret = -EINVAL;
3251 }
3252
3253 if (ret)
3254 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00003255 }
Jan Schmidt2f232032013-04-25 16:04:51 +00003256
3257 mutex_lock(&fs_info->qgroup_rescan_lock);
3258 spin_lock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00003259
3260 if (init_flags) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08003261 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
3262 btrfs_warn(fs_info,
3263 "qgroup rescan is already in progress");
Jan Schmidtb382a322013-05-28 15:47:24 +00003264 ret = -EINPROGRESS;
Qu Wenruo9593bf492018-05-02 13:28:03 +08003265 } else if (!(fs_info->qgroup_flags &
3266 BTRFS_QGROUP_STATUS_FLAG_ON)) {
3267 btrfs_warn(fs_info,
3268 "qgroup rescan init failed, qgroup is not enabled");
Jan Schmidtb382a322013-05-28 15:47:24 +00003269 ret = -EINVAL;
Qu Wenruo9593bf492018-05-02 13:28:03 +08003270 }
Jan Schmidtb382a322013-05-28 15:47:24 +00003271
3272 if (ret) {
3273 spin_unlock(&fs_info->qgroup_lock);
3274 mutex_unlock(&fs_info->qgroup_rescan_lock);
Qu Wenruo9593bf492018-05-02 13:28:03 +08003275 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00003276 }
Jan Schmidtb382a322013-05-28 15:47:24 +00003277 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3278 }
3279
3280 memset(&fs_info->qgroup_rescan_progress, 0,
3281 sizeof(fs_info->qgroup_rescan_progress));
3282 fs_info->qgroup_rescan_progress.objectid = progress_objectid;
Filipe Manana190631f2015-11-05 10:06:23 +00003283 init_completion(&fs_info->qgroup_rescan_completion);
Filipe Manana8d9edda2016-11-24 02:09:04 +00003284 fs_info->qgroup_rescan_running = true;
Jan Schmidtb382a322013-05-28 15:47:24 +00003285
3286 spin_unlock(&fs_info->qgroup_lock);
3287 mutex_unlock(&fs_info->qgroup_rescan_lock);
3288
Jan Schmidtb382a322013-05-28 15:47:24 +00003289 memset(&fs_info->qgroup_rescan_work, 0,
3290 sizeof(fs_info->qgroup_rescan_work));
Qu Wenruofc97fab2014-02-28 10:46:16 +08003291 btrfs_init_work(&fs_info->qgroup_rescan_work,
Liu Bo9e0af232014-08-15 23:36:53 +08003292 btrfs_qgroup_rescan_helper,
Qu Wenruofc97fab2014-02-28 10:46:16 +08003293 btrfs_qgroup_rescan_worker, NULL, NULL);
Jan Schmidtb382a322013-05-28 15:47:24 +00003294 return 0;
3295}
Jan Schmidt2f232032013-04-25 16:04:51 +00003296
Jan Schmidtb382a322013-05-28 15:47:24 +00003297static void
3298qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info)
3299{
3300 struct rb_node *n;
3301 struct btrfs_qgroup *qgroup;
3302
3303 spin_lock(&fs_info->qgroup_lock);
Jan Schmidt2f232032013-04-25 16:04:51 +00003304 /* clear all current qgroup tracking information */
3305 for (n = rb_first(&fs_info->qgroup_tree); n; n = rb_next(n)) {
3306 qgroup = rb_entry(n, struct btrfs_qgroup, node);
3307 qgroup->rfer = 0;
3308 qgroup->rfer_cmpr = 0;
3309 qgroup->excl = 0;
3310 qgroup->excl_cmpr = 0;
Qu Wenruo9c7b0c22018-08-10 10:20:26 +08003311 qgroup_dirty(fs_info, qgroup);
Jan Schmidt2f232032013-04-25 16:04:51 +00003312 }
3313 spin_unlock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00003314}
Jan Schmidt2f232032013-04-25 16:04:51 +00003315
Jan Schmidtb382a322013-05-28 15:47:24 +00003316int
3317btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info)
3318{
3319 int ret = 0;
3320 struct btrfs_trans_handle *trans;
3321
3322 ret = qgroup_rescan_init(fs_info, 0, 1);
3323 if (ret)
3324 return ret;
3325
3326 /*
3327 * We have set the rescan_progress to 0, which means no more
3328 * delayed refs will be accounted by btrfs_qgroup_account_ref.
3329 * However, btrfs_qgroup_account_ref may be right after its call
3330 * to btrfs_find_all_roots, in which case it would still do the
3331 * accounting.
3332 * To solve this, we're committing the transaction, which will
3333 * ensure we run all delayed refs and only after that, we are
3334 * going to clear all tracking information for a clean start.
3335 */
3336
3337 trans = btrfs_join_transaction(fs_info->fs_root);
3338 if (IS_ERR(trans)) {
3339 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3340 return PTR_ERR(trans);
3341 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003342 ret = btrfs_commit_transaction(trans);
Jan Schmidtb382a322013-05-28 15:47:24 +00003343 if (ret) {
3344 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3345 return ret;
3346 }
3347
3348 qgroup_rescan_zero_tracking(fs_info);
3349
Qu Wenruofc97fab2014-02-28 10:46:16 +08003350 btrfs_queue_work(fs_info->qgroup_rescan_workers,
3351 &fs_info->qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00003352
3353 return 0;
3354}
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003355
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04003356int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
3357 bool interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003358{
3359 int running;
3360 int ret = 0;
3361
3362 mutex_lock(&fs_info->qgroup_rescan_lock);
3363 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04003364 running = fs_info->qgroup_rescan_running;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003365 spin_unlock(&fs_info->qgroup_lock);
3366 mutex_unlock(&fs_info->qgroup_rescan_lock);
3367
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04003368 if (!running)
3369 return 0;
3370
3371 if (interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003372 ret = wait_for_completion_interruptible(
3373 &fs_info->qgroup_rescan_completion);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04003374 else
3375 wait_for_completion(&fs_info->qgroup_rescan_completion);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003376
3377 return ret;
3378}
Jan Schmidtb382a322013-05-28 15:47:24 +00003379
3380/*
3381 * this is only called from open_ctree where we're still single threaded, thus
3382 * locking is omitted here.
3383 */
3384void
3385btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info)
3386{
3387 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN)
Qu Wenruofc97fab2014-02-28 10:46:16 +08003388 btrfs_queue_work(fs_info->qgroup_rescan_workers,
3389 &fs_info->qgroup_rescan_work);
Jan Schmidtb382a322013-05-28 15:47:24 +00003390}
Qu Wenruo52472552015-10-12 16:05:40 +08003391
3392/*
3393 * Reserve qgroup space for range [start, start + len).
3394 *
3395 * This function will either reserve space from related qgroups or doing
3396 * nothing if the range is already reserved.
3397 *
3398 * Return 0 for successful reserve
3399 * Return <0 for error (including -EQUOT)
3400 *
3401 * NOTE: this function may sleep for memory allocation.
Qu Wenruo364ecf32017-02-27 15:10:38 +08003402 * if btrfs_qgroup_reserve_data() is called multiple times with
3403 * same @reserved, caller must ensure when error happens it's OK
3404 * to free *ALL* reserved space.
Qu Wenruo52472552015-10-12 16:05:40 +08003405 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08003406int btrfs_qgroup_reserve_data(struct inode *inode,
3407 struct extent_changeset **reserved_ret, u64 start,
3408 u64 len)
Qu Wenruo52472552015-10-12 16:05:40 +08003409{
3410 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo52472552015-10-12 16:05:40 +08003411 struct ulist_node *unode;
3412 struct ulist_iterator uiter;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003413 struct extent_changeset *reserved;
3414 u64 orig_reserved;
3415 u64 to_reserve;
Qu Wenruo52472552015-10-12 16:05:40 +08003416 int ret;
3417
Josef Bacikafcdd122016-09-02 15:40:02 -04003418 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags) ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003419 !is_fstree(root->root_key.objectid) || len == 0)
Qu Wenruo52472552015-10-12 16:05:40 +08003420 return 0;
3421
Qu Wenruo364ecf32017-02-27 15:10:38 +08003422 /* @reserved parameter is mandatory for qgroup */
3423 if (WARN_ON(!reserved_ret))
3424 return -EINVAL;
3425 if (!*reserved_ret) {
3426 *reserved_ret = extent_changeset_alloc();
3427 if (!*reserved_ret)
3428 return -ENOMEM;
3429 }
3430 reserved = *reserved_ret;
3431 /* Record already reserved space */
3432 orig_reserved = reserved->bytes_changed;
Qu Wenruo52472552015-10-12 16:05:40 +08003433 ret = set_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003434 start + len -1, EXTENT_QGROUP_RESERVED, reserved);
3435
3436 /* Newly reserved space */
3437 to_reserve = reserved->bytes_changed - orig_reserved;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003438 trace_btrfs_qgroup_reserve_data(inode, start, len,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003439 to_reserve, QGROUP_RESERVE);
Qu Wenruo52472552015-10-12 16:05:40 +08003440 if (ret < 0)
3441 goto cleanup;
Qu Wenruodba21322017-12-12 15:34:25 +08003442 ret = qgroup_reserve(root, to_reserve, true, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo52472552015-10-12 16:05:40 +08003443 if (ret < 0)
3444 goto cleanup;
3445
Qu Wenruo52472552015-10-12 16:05:40 +08003446 return ret;
3447
3448cleanup:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003449 /* cleanup *ALL* already reserved ranges */
Qu Wenruo52472552015-10-12 16:05:40 +08003450 ULIST_ITER_INIT(&uiter);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003451 while ((unode = ulist_next(&reserved->range_changed, &uiter)))
Qu Wenruo52472552015-10-12 16:05:40 +08003452 clear_extent_bit(&BTRFS_I(inode)->io_tree, unode->val,
David Sterbaae0f1622017-10-31 16:37:52 +01003453 unode->aux, EXTENT_QGROUP_RESERVED, 0, 0, NULL);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003454 extent_changeset_release(reserved);
Qu Wenruo52472552015-10-12 16:05:40 +08003455 return ret;
3456}
Qu Wenruof695fdc2015-10-12 16:28:06 +08003457
Qu Wenruobc42bda2017-02-27 15:10:39 +08003458/* Free ranges specified by @reserved, normally in error path */
3459static int qgroup_free_reserved_data(struct inode *inode,
3460 struct extent_changeset *reserved, u64 start, u64 len)
3461{
3462 struct btrfs_root *root = BTRFS_I(inode)->root;
3463 struct ulist_node *unode;
3464 struct ulist_iterator uiter;
3465 struct extent_changeset changeset;
3466 int freed = 0;
3467 int ret;
3468
3469 extent_changeset_init(&changeset);
3470 len = round_up(start + len, root->fs_info->sectorsize);
3471 start = round_down(start, root->fs_info->sectorsize);
3472
3473 ULIST_ITER_INIT(&uiter);
3474 while ((unode = ulist_next(&reserved->range_changed, &uiter))) {
3475 u64 range_start = unode->val;
3476 /* unode->aux is the inclusive end */
3477 u64 range_len = unode->aux - range_start + 1;
3478 u64 free_start;
3479 u64 free_len;
3480
3481 extent_changeset_release(&changeset);
3482
3483 /* Only free range in range [start, start + len) */
3484 if (range_start >= start + len ||
3485 range_start + range_len <= start)
3486 continue;
3487 free_start = max(range_start, start);
3488 free_len = min(start + len, range_start + range_len) -
3489 free_start;
3490 /*
3491 * TODO: To also modify reserved->ranges_reserved to reflect
3492 * the modification.
3493 *
3494 * However as long as we free qgroup reserved according to
3495 * EXTENT_QGROUP_RESERVED, we won't double free.
3496 * So not need to rush.
3497 */
3498 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_failure_tree,
3499 free_start, free_start + free_len - 1,
3500 EXTENT_QGROUP_RESERVED, &changeset);
3501 if (ret < 0)
3502 goto out;
3503 freed += changeset.bytes_changed;
3504 }
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003505 btrfs_qgroup_free_refroot(root->fs_info, root->root_key.objectid, freed,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003506 BTRFS_QGROUP_RSV_DATA);
Qu Wenruobc42bda2017-02-27 15:10:39 +08003507 ret = freed;
3508out:
3509 extent_changeset_release(&changeset);
3510 return ret;
3511}
3512
3513static int __btrfs_qgroup_release_data(struct inode *inode,
3514 struct extent_changeset *reserved, u64 start, u64 len,
3515 int free)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003516{
3517 struct extent_changeset changeset;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003518 int trace_op = QGROUP_RELEASE;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003519 int ret;
3520
Qu Wenruo3628b4c2018-10-09 14:36:45 +08003521 if (!test_bit(BTRFS_FS_QUOTA_ENABLED,
3522 &BTRFS_I(inode)->root->fs_info->flags))
3523 return 0;
3524
Qu Wenruobc42bda2017-02-27 15:10:39 +08003525 /* In release case, we shouldn't have @reserved */
3526 WARN_ON(!free && reserved);
3527 if (free && reserved)
3528 return qgroup_free_reserved_data(inode, reserved, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003529 extent_changeset_init(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003530 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
David Sterbaf734c442016-04-26 23:54:39 +02003531 start + len -1, EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003532 if (ret < 0)
3533 goto out;
3534
Qu Wenruod51ea5d2017-03-13 15:52:09 +08003535 if (free)
3536 trace_op = QGROUP_FREE;
3537 trace_btrfs_qgroup_release_data(inode, start, len,
3538 changeset.bytes_changed, trace_op);
3539 if (free)
David Sterba0b08e1f2017-02-13 14:24:35 +01003540 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003541 BTRFS_I(inode)->root->root_key.objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003542 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08003543 ret = changeset.bytes_changed;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003544out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003545 extent_changeset_release(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003546 return ret;
3547}
3548
3549/*
3550 * Free a reserved space range from io_tree and related qgroups
3551 *
3552 * Should be called when a range of pages get invalidated before reaching disk.
3553 * Or for error cleanup case.
Qu Wenruobc42bda2017-02-27 15:10:39 +08003554 * if @reserved is given, only reserved range in [@start, @start + @len) will
3555 * be freed.
Qu Wenruof695fdc2015-10-12 16:28:06 +08003556 *
3557 * For data written to disk, use btrfs_qgroup_release_data().
3558 *
3559 * NOTE: This function may sleep for memory allocation.
3560 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003561int btrfs_qgroup_free_data(struct inode *inode,
3562 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003563{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003564 return __btrfs_qgroup_release_data(inode, reserved, start, len, 1);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003565}
3566
3567/*
3568 * Release a reserved space range from io_tree only.
3569 *
3570 * Should be called when a range of pages get written to disk and corresponding
3571 * FILE_EXTENT is inserted into corresponding root.
3572 *
3573 * Since new qgroup accounting framework will only update qgroup numbers at
3574 * commit_transaction() time, its reserved space shouldn't be freed from
3575 * related qgroups.
3576 *
3577 * But we should release the range from io_tree, to allow further write to be
3578 * COWed.
3579 *
3580 * NOTE: This function may sleep for memory allocation.
3581 */
3582int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len)
3583{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003584 return __btrfs_qgroup_release_data(inode, NULL, start, len, 0);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003585}
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003586
Qu Wenruo82874752017-12-12 15:34:34 +08003587static void add_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3588 enum btrfs_qgroup_rsv_type type)
3589{
3590 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3591 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3592 return;
3593 if (num_bytes == 0)
3594 return;
3595
3596 spin_lock(&root->qgroup_meta_rsv_lock);
3597 if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
3598 root->qgroup_meta_rsv_prealloc += num_bytes;
3599 else
3600 root->qgroup_meta_rsv_pertrans += num_bytes;
3601 spin_unlock(&root->qgroup_meta_rsv_lock);
3602}
3603
3604static int sub_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3605 enum btrfs_qgroup_rsv_type type)
3606{
3607 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3608 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3609 return 0;
3610 if (num_bytes == 0)
3611 return 0;
3612
3613 spin_lock(&root->qgroup_meta_rsv_lock);
3614 if (type == BTRFS_QGROUP_RSV_META_PREALLOC) {
3615 num_bytes = min_t(u64, root->qgroup_meta_rsv_prealloc,
3616 num_bytes);
3617 root->qgroup_meta_rsv_prealloc -= num_bytes;
3618 } else {
3619 num_bytes = min_t(u64, root->qgroup_meta_rsv_pertrans,
3620 num_bytes);
3621 root->qgroup_meta_rsv_pertrans -= num_bytes;
3622 }
3623 spin_unlock(&root->qgroup_meta_rsv_lock);
3624 return num_bytes;
3625}
3626
Qu Wenruo733e03a2017-12-12 15:34:29 +08003627int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
3628 enum btrfs_qgroup_rsv_type type, bool enforce)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003629{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003630 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003631 int ret;
3632
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003633 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003634 !is_fstree(root->root_key.objectid) || num_bytes == 0)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003635 return 0;
3636
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003637 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003638 trace_qgroup_meta_reserve(root, type, (s64)num_bytes);
Qu Wenruo733e03a2017-12-12 15:34:29 +08003639 ret = qgroup_reserve(root, num_bytes, enforce, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003640 if (ret < 0)
3641 return ret;
Qu Wenruo82874752017-12-12 15:34:34 +08003642 /*
3643 * Record what we have reserved into root.
3644 *
3645 * To avoid quota disabled->enabled underflow.
3646 * In that case, we may try to free space we haven't reserved
3647 * (since quota was disabled), so record what we reserved into root.
3648 * And ensure later release won't underflow this number.
3649 */
3650 add_root_meta_rsv(root, num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003651 return ret;
3652}
3653
Qu Wenruo733e03a2017-12-12 15:34:29 +08003654void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003655{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003656 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003657
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003658 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003659 !is_fstree(root->root_key.objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003660 return;
3661
Qu Wenruoe1211d02017-12-12 15:34:30 +08003662 /* TODO: Update trace point to handle such free */
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003663 trace_qgroup_meta_free_all_pertrans(root);
Qu Wenruoe1211d02017-12-12 15:34:30 +08003664 /* Special value -1 means to free all reserved space */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003665 btrfs_qgroup_free_refroot(fs_info, root->root_key.objectid, (u64)-1,
Qu Wenruo733e03a2017-12-12 15:34:29 +08003666 BTRFS_QGROUP_RSV_META_PERTRANS);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003667}
3668
Qu Wenruo733e03a2017-12-12 15:34:29 +08003669void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
3670 enum btrfs_qgroup_rsv_type type)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003671{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003672 struct btrfs_fs_info *fs_info = root->fs_info;
3673
3674 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003675 !is_fstree(root->root_key.objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003676 return;
3677
Qu Wenruo82874752017-12-12 15:34:34 +08003678 /*
3679 * reservation for META_PREALLOC can happen before quota is enabled,
3680 * which can lead to underflow.
3681 * Here ensure we will only free what we really have reserved.
3682 */
3683 num_bytes = sub_root_meta_rsv(root, num_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003684 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003685 trace_qgroup_meta_reserve(root, type, -(s64)num_bytes);
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003686 btrfs_qgroup_free_refroot(fs_info, root->root_key.objectid,
3687 num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003688}
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003689
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003690static void qgroup_convert_meta(struct btrfs_fs_info *fs_info, u64 ref_root,
3691 int num_bytes)
3692{
3693 struct btrfs_root *quota_root = fs_info->quota_root;
3694 struct btrfs_qgroup *qgroup;
3695 struct ulist_node *unode;
3696 struct ulist_iterator uiter;
3697 int ret = 0;
3698
3699 if (num_bytes == 0)
3700 return;
3701 if (!quota_root)
3702 return;
3703
3704 spin_lock(&fs_info->qgroup_lock);
3705 qgroup = find_qgroup_rb(fs_info, ref_root);
3706 if (!qgroup)
3707 goto out;
3708 ulist_reinit(fs_info->qgroup_ulist);
3709 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003710 qgroup_to_aux(qgroup), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003711 if (ret < 0)
3712 goto out;
3713 ULIST_ITER_INIT(&uiter);
3714 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
3715 struct btrfs_qgroup *qg;
3716 struct btrfs_qgroup_list *glist;
3717
3718 qg = unode_aux_to_qgroup(unode);
3719
3720 qgroup_rsv_release(fs_info, qg, num_bytes,
3721 BTRFS_QGROUP_RSV_META_PREALLOC);
3722 qgroup_rsv_add(fs_info, qg, num_bytes,
3723 BTRFS_QGROUP_RSV_META_PERTRANS);
3724 list_for_each_entry(glist, &qg->groups, next_group) {
3725 ret = ulist_add(fs_info->qgroup_ulist,
3726 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003727 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003728 if (ret < 0)
3729 goto out;
3730 }
3731 }
3732out:
3733 spin_unlock(&fs_info->qgroup_lock);
3734}
3735
3736void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes)
3737{
3738 struct btrfs_fs_info *fs_info = root->fs_info;
3739
3740 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003741 !is_fstree(root->root_key.objectid))
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003742 return;
Qu Wenruo82874752017-12-12 15:34:34 +08003743 /* Same as btrfs_qgroup_free_meta_prealloc() */
3744 num_bytes = sub_root_meta_rsv(root, num_bytes,
3745 BTRFS_QGROUP_RSV_META_PREALLOC);
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003746 trace_qgroup_meta_convert(root, num_bytes);
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003747 qgroup_convert_meta(fs_info, root->root_key.objectid, num_bytes);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003748}
3749
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003750/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04003751 * Check qgroup reserved space leaking, normally at destroy inode
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003752 * time
3753 */
3754void btrfs_qgroup_check_reserved_leak(struct inode *inode)
3755{
3756 struct extent_changeset changeset;
3757 struct ulist_node *unode;
3758 struct ulist_iterator iter;
3759 int ret;
3760
Qu Wenruo364ecf32017-02-27 15:10:38 +08003761 extent_changeset_init(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003762 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
David Sterbaf734c442016-04-26 23:54:39 +02003763 EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003764
3765 WARN_ON(ret < 0);
3766 if (WARN_ON(changeset.bytes_changed)) {
3767 ULIST_ITER_INIT(&iter);
David Sterba53d32352017-02-13 13:42:29 +01003768 while ((unode = ulist_next(&changeset.range_changed, &iter))) {
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003769 btrfs_warn(BTRFS_I(inode)->root->fs_info,
3770 "leaking qgroup reserved space, ino: %lu, start: %llu, end: %llu",
3771 inode->i_ino, unode->val, unode->aux);
3772 }
David Sterba0b08e1f2017-02-13 14:24:35 +01003773 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003774 BTRFS_I(inode)->root->root_key.objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003775 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
David Sterba0b08e1f2017-02-13 14:24:35 +01003776
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003777 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003778 extent_changeset_release(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003779}