blob: 4f523b7a3e914d38285a1bc1455ae0078e6f0e05 [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
557static int del_qgroup_relation_item(struct btrfs_trans_handle *trans,
558 struct btrfs_root *quota_root,
559 u64 src, u64 dst)
560{
561 int ret;
562 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
656static int del_qgroup_item(struct btrfs_trans_handle *trans,
657 struct btrfs_root *quota_root, u64 qgroupid)
658{
659 int ret;
660 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_root *root,
704 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200705{
706 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
Arne Jansenbed92ea2012-06-28 18:03:02 +0200721 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
722 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,
745 struct btrfs_root *root,
746 struct btrfs_qgroup *qgroup)
747{
748 struct btrfs_path *path;
749 struct btrfs_key key;
750 struct extent_buffer *l;
751 struct btrfs_qgroup_info_item *qgroup_info;
752 int ret;
753 int slot;
754
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -0400755 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400756 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200757
Arne Jansenbed92ea2012-06-28 18:03:02 +0200758 key.objectid = 0;
759 key.type = BTRFS_QGROUP_INFO_KEY;
760 key.offset = qgroup->qgroupid;
761
762 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000763 if (!path)
764 return -ENOMEM;
765
Arne Jansenbed92ea2012-06-28 18:03:02 +0200766 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
767 if (ret > 0)
768 ret = -ENOENT;
769
770 if (ret)
771 goto out;
772
773 l = path->nodes[0];
774 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100775 qgroup_info = btrfs_item_ptr(l, slot, struct btrfs_qgroup_info_item);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200776 btrfs_set_qgroup_info_generation(l, qgroup_info, trans->transid);
777 btrfs_set_qgroup_info_rfer(l, qgroup_info, qgroup->rfer);
778 btrfs_set_qgroup_info_rfer_cmpr(l, qgroup_info, qgroup->rfer_cmpr);
779 btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl);
780 btrfs_set_qgroup_info_excl_cmpr(l, qgroup_info, qgroup->excl_cmpr);
781
782 btrfs_mark_buffer_dirty(l);
783
784out:
785 btrfs_free_path(path);
786 return ret;
787}
788
789static int update_qgroup_status_item(struct btrfs_trans_handle *trans,
790 struct btrfs_fs_info *fs_info,
791 struct btrfs_root *root)
792{
793 struct btrfs_path *path;
794 struct btrfs_key key;
795 struct extent_buffer *l;
796 struct btrfs_qgroup_status_item *ptr;
797 int ret;
798 int slot;
799
800 key.objectid = 0;
801 key.type = BTRFS_QGROUP_STATUS_KEY;
802 key.offset = 0;
803
804 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000805 if (!path)
806 return -ENOMEM;
807
Arne Jansenbed92ea2012-06-28 18:03:02 +0200808 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
809 if (ret > 0)
810 ret = -ENOENT;
811
812 if (ret)
813 goto out;
814
815 l = path->nodes[0];
816 slot = path->slots[0];
817 ptr = btrfs_item_ptr(l, slot, struct btrfs_qgroup_status_item);
818 btrfs_set_qgroup_status_flags(l, ptr, fs_info->qgroup_flags);
819 btrfs_set_qgroup_status_generation(l, ptr, trans->transid);
Jan Schmidt2f232032013-04-25 16:04:51 +0000820 btrfs_set_qgroup_status_rescan(l, ptr,
821 fs_info->qgroup_rescan_progress.objectid);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200822
823 btrfs_mark_buffer_dirty(l);
824
825out:
826 btrfs_free_path(path);
827 return ret;
828}
829
830/*
831 * called with qgroup_lock held
832 */
833static int btrfs_clean_quota_tree(struct btrfs_trans_handle *trans,
834 struct btrfs_root *root)
835{
836 struct btrfs_path *path;
837 struct btrfs_key key;
Wang Shilong06b3a862013-02-27 11:16:57 +0000838 struct extent_buffer *leaf = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200839 int ret;
Wang Shilong06b3a862013-02-27 11:16:57 +0000840 int nr = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200841
Arne Jansenbed92ea2012-06-28 18:03:02 +0200842 path = btrfs_alloc_path();
843 if (!path)
844 return -ENOMEM;
845
Wang Shilong06b3a862013-02-27 11:16:57 +0000846 path->leave_spinning = 1;
847
848 key.objectid = 0;
849 key.offset = 0;
850 key.type = 0;
851
Arne Jansenbed92ea2012-06-28 18:03:02 +0200852 while (1) {
Arne Jansenbed92ea2012-06-28 18:03:02 +0200853 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Wang Shilong06b3a862013-02-27 11:16:57 +0000854 if (ret < 0)
855 goto out;
856 leaf = path->nodes[0];
857 nr = btrfs_header_nritems(leaf);
858 if (!nr)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200859 break;
Wang Shilong06b3a862013-02-27 11:16:57 +0000860 /*
861 * delete the leaf one by one
862 * since the whole tree is going
863 * to be deleted.
864 */
865 path->slots[0] = 0;
866 ret = btrfs_del_items(trans, root, path, 0, nr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200867 if (ret)
868 goto out;
Wang Shilong06b3a862013-02-27 11:16:57 +0000869
Arne Jansenbed92ea2012-06-28 18:03:02 +0200870 btrfs_release_path(path);
871 }
872 ret = 0;
873out:
Arne Jansenbed92ea2012-06-28 18:03:02 +0200874 btrfs_free_path(path);
875 return ret;
876}
877
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300878int btrfs_quota_enable(struct btrfs_fs_info *fs_info)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200879{
880 struct btrfs_root *quota_root;
Wang Shilong7708f022013-04-07 10:24:57 +0000881 struct btrfs_root *tree_root = fs_info->tree_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200882 struct btrfs_path *path = NULL;
883 struct btrfs_qgroup_status_item *ptr;
884 struct extent_buffer *leaf;
885 struct btrfs_key key;
Wang Shilong7708f022013-04-07 10:24:57 +0000886 struct btrfs_key found_key;
887 struct btrfs_qgroup *qgroup = NULL;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300888 struct btrfs_trans_handle *trans = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200889 int ret = 0;
Wang Shilong7708f022013-04-07 10:24:57 +0000890 int slot;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200891
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000892 mutex_lock(&fs_info->qgroup_ioctl_lock);
Nikolay Borisov5d235152018-01-31 10:52:04 +0200893 if (fs_info->quota_root)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200894 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200895
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300896 /*
897 * 1 for quota root item
898 * 1 for BTRFS_QGROUP_STATUS item
899 *
900 * Yet we also need 2*n items for a QGROUP_INFO/QGROUP_LIMIT items
901 * per subvolume. However those are not currently reserved since it
902 * would be a lot of overkill.
903 */
904 trans = btrfs_start_transaction(tree_root, 2);
905 if (IS_ERR(trans)) {
906 ret = PTR_ERR(trans);
907 trans = NULL;
908 goto out;
909 }
910
David Sterba52bf8e72017-02-13 11:03:44 +0100911 fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000912 if (!fs_info->qgroup_ulist) {
913 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300914 btrfs_abort_transaction(trans, ret);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000915 goto out;
916 }
917
Arne Jansenbed92ea2012-06-28 18:03:02 +0200918 /*
919 * initially create the quota tree
920 */
921 quota_root = btrfs_create_tree(trans, fs_info,
922 BTRFS_QUOTA_TREE_OBJECTID);
923 if (IS_ERR(quota_root)) {
924 ret = PTR_ERR(quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300925 btrfs_abort_transaction(trans, ret);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200926 goto out;
927 }
928
929 path = btrfs_alloc_path();
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000930 if (!path) {
931 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300932 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000933 goto out_free_root;
934 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200935
936 key.objectid = 0;
937 key.type = BTRFS_QGROUP_STATUS_KEY;
938 key.offset = 0;
939
940 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
941 sizeof(*ptr));
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300942 if (ret) {
943 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000944 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300945 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200946
947 leaf = path->nodes[0];
948 ptr = btrfs_item_ptr(leaf, path->slots[0],
949 struct btrfs_qgroup_status_item);
950 btrfs_set_qgroup_status_generation(leaf, ptr, trans->transid);
951 btrfs_set_qgroup_status_version(leaf, ptr, BTRFS_QGROUP_STATUS_VERSION);
952 fs_info->qgroup_flags = BTRFS_QGROUP_STATUS_FLAG_ON |
953 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
954 btrfs_set_qgroup_status_flags(leaf, ptr, fs_info->qgroup_flags);
Jan Schmidt2f232032013-04-25 16:04:51 +0000955 btrfs_set_qgroup_status_rescan(leaf, ptr, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200956
957 btrfs_mark_buffer_dirty(leaf);
958
Wang Shilong7708f022013-04-07 10:24:57 +0000959 key.objectid = 0;
960 key.type = BTRFS_ROOT_REF_KEY;
961 key.offset = 0;
962
963 btrfs_release_path(path);
964 ret = btrfs_search_slot_for_read(tree_root, &key, path, 1, 0);
965 if (ret > 0)
966 goto out_add_root;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300967 if (ret < 0) {
968 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000969 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300970 }
Wang Shilong7708f022013-04-07 10:24:57 +0000971
972 while (1) {
973 slot = path->slots[0];
974 leaf = path->nodes[0];
975 btrfs_item_key_to_cpu(leaf, &found_key, slot);
976
977 if (found_key.type == BTRFS_ROOT_REF_KEY) {
978 ret = add_qgroup_item(trans, quota_root,
979 found_key.offset);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300980 if (ret) {
981 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000982 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300983 }
Wang Shilong7708f022013-04-07 10:24:57 +0000984
Wang Shilong7708f022013-04-07 10:24:57 +0000985 qgroup = add_qgroup_rb(fs_info, found_key.offset);
986 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +0000987 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300988 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000989 goto out_free_path;
990 }
Wang Shilong7708f022013-04-07 10:24:57 +0000991 }
992 ret = btrfs_next_item(tree_root, path);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300993 if (ret < 0) {
994 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000995 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300996 }
Wang Shilong7708f022013-04-07 10:24:57 +0000997 if (ret)
998 break;
999 }
1000
1001out_add_root:
1002 btrfs_release_path(path);
1003 ret = add_qgroup_item(trans, quota_root, BTRFS_FS_TREE_OBJECTID);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001004 if (ret) {
1005 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001006 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001007 }
Wang Shilong7708f022013-04-07 10:24:57 +00001008
Wang Shilong7708f022013-04-07 10:24:57 +00001009 qgroup = add_qgroup_rb(fs_info, BTRFS_FS_TREE_OBJECTID);
1010 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +00001011 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001012 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001013 goto out_free_path;
1014 }
Wang Shilong58400fc2013-04-07 10:50:17 +00001015 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001016 fs_info->quota_root = quota_root;
Nikolay Borisov5d235152018-01-31 10:52:04 +02001017 set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001018 spin_unlock(&fs_info->qgroup_lock);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001019
1020 ret = btrfs_commit_transaction(trans);
1021 if (ret) {
1022 trans = NULL;
1023 goto out_free_path;
1024 }
1025
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
Jeff Mahoney1cd54472017-08-17 10:25:11 -04001090 ret = btrfs_del_root(trans, fs_info, &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
Arne Jansenbed92ea2012-06-28 18:03:02 +02001238int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans,
1239 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1240{
1241 struct btrfs_root *quota_root;
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001242 struct btrfs_qgroup *parent;
1243 struct btrfs_qgroup *member;
Wang Shilong534e6622013-04-17 14:49:51 +00001244 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001245 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001246 int ret = 0;
1247
Qu Wenruo8465ece2015-02-27 16:24:22 +08001248 /* Check the level of src and dst first */
1249 if (btrfs_qgroup_level(src) >= btrfs_qgroup_level(dst))
1250 return -EINVAL;
1251
David Sterba6602caf2017-02-13 12:41:02 +01001252 tmp = ulist_alloc(GFP_KERNEL);
Christian Engelmayerab3680d2015-05-02 17:19:55 +02001253 if (!tmp)
1254 return -ENOMEM;
1255
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001256 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001257 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001258 if (!quota_root) {
1259 ret = -EINVAL;
1260 goto out;
1261 }
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001262 member = find_qgroup_rb(fs_info, src);
1263 parent = find_qgroup_rb(fs_info, dst);
1264 if (!member || !parent) {
1265 ret = -EINVAL;
1266 goto out;
1267 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001268
Wang Shilong534e6622013-04-17 14:49:51 +00001269 /* check if such qgroup relation exist firstly */
1270 list_for_each_entry(list, &member->groups, next_group) {
1271 if (list->group == parent) {
1272 ret = -EEXIST;
1273 goto out;
1274 }
1275 }
1276
Lu Fengqi711169c2018-07-18 14:45:24 +08001277 ret = add_qgroup_relation_item(trans, src, dst);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001278 if (ret)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001279 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001280
Lu Fengqi711169c2018-07-18 14:45:24 +08001281 ret = add_qgroup_relation_item(trans, dst, src);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001282 if (ret) {
1283 del_qgroup_relation_item(trans, quota_root, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001284 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001285 }
1286
1287 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001288 ret = add_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001289 if (ret < 0) {
1290 spin_unlock(&fs_info->qgroup_lock);
1291 goto out;
1292 }
1293 ret = quick_update_accounting(fs_info, tmp, src, dst, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001294 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001295out:
1296 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001297 ulist_free(tmp);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001298 return ret;
1299}
1300
David Sterba025db912017-02-13 13:00:51 +01001301static int __del_qgroup_relation(struct btrfs_trans_handle *trans,
Arne Jansenbed92ea2012-06-28 18:03:02 +02001302 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1303{
1304 struct btrfs_root *quota_root;
Wang Shilong534e6622013-04-17 14:49:51 +00001305 struct btrfs_qgroup *parent;
1306 struct btrfs_qgroup *member;
1307 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001308 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001309 int ret = 0;
1310 int err;
1311
David Sterba6602caf2017-02-13 12:41:02 +01001312 tmp = ulist_alloc(GFP_KERNEL);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001313 if (!tmp)
1314 return -ENOMEM;
1315
Arne Jansenbed92ea2012-06-28 18:03:02 +02001316 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001317 if (!quota_root) {
1318 ret = -EINVAL;
1319 goto out;
1320 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001321
Wang Shilong534e6622013-04-17 14:49:51 +00001322 member = find_qgroup_rb(fs_info, src);
1323 parent = find_qgroup_rb(fs_info, dst);
1324 if (!member || !parent) {
1325 ret = -EINVAL;
1326 goto out;
1327 }
1328
1329 /* check if such qgroup relation exist firstly */
1330 list_for_each_entry(list, &member->groups, next_group) {
1331 if (list->group == parent)
1332 goto exist;
1333 }
1334 ret = -ENOENT;
1335 goto out;
1336exist:
Arne Jansenbed92ea2012-06-28 18:03:02 +02001337 ret = del_qgroup_relation_item(trans, quota_root, src, dst);
1338 err = del_qgroup_relation_item(trans, quota_root, dst, src);
1339 if (err && !ret)
1340 ret = err;
1341
1342 spin_lock(&fs_info->qgroup_lock);
1343 del_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001344 ret = quick_update_accounting(fs_info, tmp, src, dst, -1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001345 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001346out:
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001347 ulist_free(tmp);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001348 return ret;
1349}
1350
1351int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans,
1352 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1353{
1354 int ret = 0;
1355
1356 mutex_lock(&fs_info->qgroup_ioctl_lock);
1357 ret = __del_qgroup_relation(trans, fs_info, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001358 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001359
Arne Jansenbed92ea2012-06-28 18:03:02 +02001360 return ret;
1361}
1362
1363int btrfs_create_qgroup(struct btrfs_trans_handle *trans,
Dongsheng Yang4087cf22015-01-18 10:59:23 -05001364 struct btrfs_fs_info *fs_info, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001365{
1366 struct btrfs_root *quota_root;
1367 struct btrfs_qgroup *qgroup;
1368 int ret = 0;
1369
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001370 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001371 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001372 if (!quota_root) {
1373 ret = -EINVAL;
1374 goto out;
1375 }
Wang Shilong534e6622013-04-17 14:49:51 +00001376 qgroup = find_qgroup_rb(fs_info, qgroupid);
1377 if (qgroup) {
1378 ret = -EEXIST;
1379 goto out;
1380 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001381
1382 ret = add_qgroup_item(trans, quota_root, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001383 if (ret)
1384 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001385
1386 spin_lock(&fs_info->qgroup_lock);
1387 qgroup = add_qgroup_rb(fs_info, qgroupid);
1388 spin_unlock(&fs_info->qgroup_lock);
1389
1390 if (IS_ERR(qgroup))
1391 ret = PTR_ERR(qgroup);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001392out:
1393 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001394 return ret;
1395}
1396
1397int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
1398 struct btrfs_fs_info *fs_info, u64 qgroupid)
1399{
1400 struct btrfs_root *quota_root;
Arne Jansen2cf68702013-01-17 01:22:09 -07001401 struct btrfs_qgroup *qgroup;
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001402 struct btrfs_qgroup_list *list;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001403 int ret = 0;
1404
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001405 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001406 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001407 if (!quota_root) {
1408 ret = -EINVAL;
1409 goto out;
1410 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001411
Arne Jansen2cf68702013-01-17 01:22:09 -07001412 qgroup = find_qgroup_rb(fs_info, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001413 if (!qgroup) {
1414 ret = -ENOENT;
1415 goto out;
1416 } else {
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001417 /* check if there are no children of this qgroup */
1418 if (!list_empty(&qgroup->members)) {
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001419 ret = -EBUSY;
1420 goto out;
Arne Jansen2cf68702013-01-17 01:22:09 -07001421 }
1422 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001423 ret = del_qgroup_item(trans, quota_root, qgroupid);
Sargun Dhillon36b96fd2017-09-17 09:02:29 +00001424 if (ret && ret != -ENOENT)
1425 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001426
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001427 while (!list_empty(&qgroup->groups)) {
1428 list = list_first_entry(&qgroup->groups,
1429 struct btrfs_qgroup_list, next_group);
1430 ret = __del_qgroup_relation(trans, fs_info,
1431 qgroupid,
1432 list->group->qgroupid);
1433 if (ret)
1434 goto out;
1435 }
1436
Arne Jansenbed92ea2012-06-28 18:03:02 +02001437 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001438 del_qgroup_rb(fs_info, qgroupid);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001439 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001440out:
1441 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001442 return ret;
1443}
1444
1445int btrfs_limit_qgroup(struct btrfs_trans_handle *trans,
1446 struct btrfs_fs_info *fs_info, u64 qgroupid,
1447 struct btrfs_qgroup_limit *limit)
1448{
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001449 struct btrfs_root *quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001450 struct btrfs_qgroup *qgroup;
1451 int ret = 0;
Yang Dongshengfe759902015-06-03 14:57:32 +08001452 /* Sometimes we would want to clear the limit on this qgroup.
1453 * To meet this requirement, we treat the -1 as a special value
1454 * which tell kernel to clear the limit on this qgroup.
1455 */
1456 const u64 CLEAR_VALUE = -1;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001457
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001458 mutex_lock(&fs_info->qgroup_ioctl_lock);
1459 quota_root = fs_info->quota_root;
1460 if (!quota_root) {
1461 ret = -EINVAL;
1462 goto out;
1463 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001464
Wang Shilongddb47af2013-04-07 10:50:20 +00001465 qgroup = find_qgroup_rb(fs_info, qgroupid);
1466 if (!qgroup) {
1467 ret = -ENOENT;
1468 goto out;
1469 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001470
Wang Shilong58400fc2013-04-07 10:50:17 +00001471 spin_lock(&fs_info->qgroup_lock);
Yang Dongshengfe759902015-06-03 14:57:32 +08001472 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_RFER) {
1473 if (limit->max_rfer == CLEAR_VALUE) {
1474 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1475 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1476 qgroup->max_rfer = 0;
1477 } else {
1478 qgroup->max_rfer = limit->max_rfer;
1479 }
1480 }
1481 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) {
1482 if (limit->max_excl == CLEAR_VALUE) {
1483 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1484 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1485 qgroup->max_excl = 0;
1486 } else {
1487 qgroup->max_excl = limit->max_excl;
1488 }
1489 }
1490 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_RFER) {
1491 if (limit->rsv_rfer == CLEAR_VALUE) {
1492 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1493 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1494 qgroup->rsv_rfer = 0;
1495 } else {
1496 qgroup->rsv_rfer = limit->rsv_rfer;
1497 }
1498 }
1499 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_EXCL) {
1500 if (limit->rsv_excl == CLEAR_VALUE) {
1501 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1502 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1503 qgroup->rsv_excl = 0;
1504 } else {
1505 qgroup->rsv_excl = limit->rsv_excl;
1506 }
1507 }
Dongsheng Yang03477d92015-02-06 11:06:25 -05001508 qgroup->lim_flags |= limit->flags;
1509
Arne Jansenbed92ea2012-06-28 18:03:02 +02001510 spin_unlock(&fs_info->qgroup_lock);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001511
1512 ret = update_qgroup_limit_item(trans, quota_root, qgroup);
1513 if (ret) {
1514 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1515 btrfs_info(fs_info, "unable to update quota limit for %llu",
1516 qgroupid);
1517 }
1518
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001519out:
1520 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001521 return ret;
1522}
Mark Fasheh11526512014-07-17 12:39:01 -07001523
Qu Wenruo50b3e042016-10-18 09:31:27 +08001524int btrfs_qgroup_trace_extent_nolock(struct btrfs_fs_info *fs_info,
Qu Wenruocb93b522016-08-15 10:36:50 +08001525 struct btrfs_delayed_ref_root *delayed_refs,
1526 struct btrfs_qgroup_extent_record *record)
Qu Wenruo3368d002015-04-16 14:34:17 +08001527{
1528 struct rb_node **p = &delayed_refs->dirty_extent_root.rb_node;
1529 struct rb_node *parent_node = NULL;
1530 struct btrfs_qgroup_extent_record *entry;
1531 u64 bytenr = record->bytenr;
1532
David Sterbaa4666e62018-03-16 02:21:22 +01001533 lockdep_assert_held(&delayed_refs->lock);
Qu Wenruo50b3e042016-10-18 09:31:27 +08001534 trace_btrfs_qgroup_trace_extent(fs_info, record);
Mark Fasheh82bd1012015-11-05 14:38:00 -08001535
Qu Wenruo3368d002015-04-16 14:34:17 +08001536 while (*p) {
1537 parent_node = *p;
1538 entry = rb_entry(parent_node, struct btrfs_qgroup_extent_record,
1539 node);
1540 if (bytenr < entry->bytenr)
1541 p = &(*p)->rb_left;
1542 else if (bytenr > entry->bytenr)
1543 p = &(*p)->rb_right;
1544 else
Qu Wenruocb93b522016-08-15 10:36:50 +08001545 return 1;
Qu Wenruo3368d002015-04-16 14:34:17 +08001546 }
1547
1548 rb_link_node(&record->node, parent_node, p);
1549 rb_insert_color(&record->node, &delayed_refs->dirty_extent_root);
Qu Wenruocb93b522016-08-15 10:36:50 +08001550 return 0;
1551}
1552
Qu Wenruofb235dc2017-02-15 10:43:03 +08001553int btrfs_qgroup_trace_extent_post(struct btrfs_fs_info *fs_info,
1554 struct btrfs_qgroup_extent_record *qrecord)
1555{
1556 struct ulist *old_root;
1557 u64 bytenr = qrecord->bytenr;
1558 int ret;
1559
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001560 ret = btrfs_find_all_roots(NULL, fs_info, bytenr, 0, &old_root, false);
Nikolay Borisov952bd3db2018-01-29 15:53:01 +02001561 if (ret < 0) {
1562 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1563 btrfs_warn(fs_info,
1564"error accounting new delayed refs extent (err code: %d), quota inconsistent",
1565 ret);
1566 return 0;
1567 }
Qu Wenruofb235dc2017-02-15 10:43:03 +08001568
1569 /*
1570 * Here we don't need to get the lock of
1571 * trans->transaction->delayed_refs, since inserted qrecord won't
1572 * be deleted, only qrecord->node may be modified (new qrecord insert)
1573 *
1574 * So modifying qrecord->old_roots is safe here
1575 */
1576 qrecord->old_roots = old_root;
1577 return 0;
1578}
1579
Qu Wenruo50b3e042016-10-18 09:31:27 +08001580int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans,
Qu Wenruocb93b522016-08-15 10:36:50 +08001581 struct btrfs_fs_info *fs_info, u64 bytenr, u64 num_bytes,
1582 gfp_t gfp_flag)
1583{
1584 struct btrfs_qgroup_extent_record *record;
1585 struct btrfs_delayed_ref_root *delayed_refs;
1586 int ret;
1587
Josef Bacikafcdd122016-09-02 15:40:02 -04001588 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)
1589 || bytenr == 0 || num_bytes == 0)
Qu Wenruocb93b522016-08-15 10:36:50 +08001590 return 0;
1591 if (WARN_ON(trans == NULL))
1592 return -EINVAL;
1593 record = kmalloc(sizeof(*record), gfp_flag);
1594 if (!record)
1595 return -ENOMEM;
1596
1597 delayed_refs = &trans->transaction->delayed_refs;
1598 record->bytenr = bytenr;
1599 record->num_bytes = num_bytes;
1600 record->old_roots = NULL;
1601
1602 spin_lock(&delayed_refs->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001603 ret = btrfs_qgroup_trace_extent_nolock(fs_info, delayed_refs, record);
Qu Wenruocb93b522016-08-15 10:36:50 +08001604 spin_unlock(&delayed_refs->lock);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001605 if (ret > 0) {
Qu Wenruocb93b522016-08-15 10:36:50 +08001606 kfree(record);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001607 return 0;
1608 }
1609 return btrfs_qgroup_trace_extent_post(fs_info, record);
Qu Wenruo3368d002015-04-16 14:34:17 +08001610}
1611
Qu Wenruo33d1f052016-10-18 09:31:28 +08001612int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001613 struct btrfs_fs_info *fs_info,
Qu Wenruo33d1f052016-10-18 09:31:28 +08001614 struct extent_buffer *eb)
1615{
1616 int nr = btrfs_header_nritems(eb);
1617 int i, extent_type, ret;
1618 struct btrfs_key key;
1619 struct btrfs_file_extent_item *fi;
1620 u64 bytenr, num_bytes;
1621
1622 /* We can be called directly from walk_up_proc() */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001623 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08001624 return 0;
1625
1626 for (i = 0; i < nr; i++) {
1627 btrfs_item_key_to_cpu(eb, &key, i);
1628
1629 if (key.type != BTRFS_EXTENT_DATA_KEY)
1630 continue;
1631
1632 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
1633 /* filter out non qgroup-accountable extents */
1634 extent_type = btrfs_file_extent_type(eb, fi);
1635
1636 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
1637 continue;
1638
1639 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1640 if (!bytenr)
1641 continue;
1642
1643 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1644
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001645 ret = btrfs_qgroup_trace_extent(trans, fs_info, bytenr,
1646 num_bytes, GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001647 if (ret)
1648 return ret;
1649 }
Jeff Mahoneycddf3b22017-06-20 08:15:26 -04001650 cond_resched();
Qu Wenruo33d1f052016-10-18 09:31:28 +08001651 return 0;
1652}
1653
1654/*
1655 * Walk up the tree from the bottom, freeing leaves and any interior
1656 * nodes which have had all slots visited. If a node (leaf or
1657 * interior) is freed, the node above it will have it's slot
1658 * incremented. The root node will never be freed.
1659 *
1660 * At the end of this function, we should have a path which has all
1661 * slots incremented to the next position for a search. If we need to
1662 * read a new node it will be NULL and the node above it will have the
1663 * correct slot selected for a later read.
1664 *
1665 * If we increment the root nodes slot counter past the number of
1666 * elements, 1 is returned to signal completion of the search.
1667 */
David Sterba15b34512017-02-10 20:30:23 +01001668static int adjust_slots_upwards(struct btrfs_path *path, int root_level)
Qu Wenruo33d1f052016-10-18 09:31:28 +08001669{
1670 int level = 0;
1671 int nr, slot;
1672 struct extent_buffer *eb;
1673
1674 if (root_level == 0)
1675 return 1;
1676
1677 while (level <= root_level) {
1678 eb = path->nodes[level];
1679 nr = btrfs_header_nritems(eb);
1680 path->slots[level]++;
1681 slot = path->slots[level];
1682 if (slot >= nr || level == 0) {
1683 /*
1684 * Don't free the root - we will detect this
1685 * condition after our loop and return a
1686 * positive value for caller to stop walking the tree.
1687 */
1688 if (level != root_level) {
1689 btrfs_tree_unlock_rw(eb, path->locks[level]);
1690 path->locks[level] = 0;
1691
1692 free_extent_buffer(eb);
1693 path->nodes[level] = NULL;
1694 path->slots[level] = 0;
1695 }
1696 } else {
1697 /*
1698 * We have a valid slot to walk back down
1699 * from. Stop here so caller can process these
1700 * new nodes.
1701 */
1702 break;
1703 }
1704
1705 level++;
1706 }
1707
1708 eb = path->nodes[root_level];
1709 if (path->slots[root_level] >= btrfs_header_nritems(eb))
1710 return 1;
1711
1712 return 0;
1713}
1714
1715int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
1716 struct btrfs_root *root,
1717 struct extent_buffer *root_eb,
1718 u64 root_gen, int root_level)
1719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001720 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo33d1f052016-10-18 09:31:28 +08001721 int ret = 0;
1722 int level;
1723 struct extent_buffer *eb = root_eb;
1724 struct btrfs_path *path = NULL;
1725
Nikolay Borisovb6e6bca2017-07-12 09:42:19 +03001726 BUG_ON(root_level < 0 || root_level >= BTRFS_MAX_LEVEL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001727 BUG_ON(root_eb == NULL);
1728
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001729 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08001730 return 0;
1731
1732 if (!extent_buffer_uptodate(root_eb)) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001733 ret = btrfs_read_buffer(root_eb, root_gen, root_level, NULL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001734 if (ret)
1735 goto out;
1736 }
1737
1738 if (root_level == 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001739 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, root_eb);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001740 goto out;
1741 }
1742
1743 path = btrfs_alloc_path();
1744 if (!path)
1745 return -ENOMEM;
1746
1747 /*
1748 * Walk down the tree. Missing extent blocks are filled in as
1749 * we go. Metadata is accounted every time we read a new
1750 * extent block.
1751 *
1752 * When we reach a leaf, we account for file extent items in it,
1753 * walk back up the tree (adjusting slot pointers as we go)
1754 * and restart the search process.
1755 */
1756 extent_buffer_get(root_eb); /* For path */
1757 path->nodes[root_level] = root_eb;
1758 path->slots[root_level] = 0;
1759 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
1760walk_down:
1761 level = root_level;
1762 while (level >= 0) {
1763 if (path->nodes[level] == NULL) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001764 struct btrfs_key first_key;
Qu Wenruo33d1f052016-10-18 09:31:28 +08001765 int parent_slot;
1766 u64 child_gen;
1767 u64 child_bytenr;
1768
1769 /*
1770 * We need to get child blockptr/gen from parent before
1771 * we can read it.
1772 */
1773 eb = path->nodes[level + 1];
1774 parent_slot = path->slots[level + 1];
1775 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
1776 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08001777 btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001778
Qu Wenruo581c1762018-03-29 09:08:11 +08001779 eb = read_tree_block(fs_info, child_bytenr, child_gen,
1780 level, &first_key);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001781 if (IS_ERR(eb)) {
1782 ret = PTR_ERR(eb);
1783 goto out;
1784 } else if (!extent_buffer_uptodate(eb)) {
1785 free_extent_buffer(eb);
1786 ret = -EIO;
1787 goto out;
1788 }
1789
1790 path->nodes[level] = eb;
1791 path->slots[level] = 0;
1792
1793 btrfs_tree_read_lock(eb);
1794 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1795 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
1796
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001797 ret = btrfs_qgroup_trace_extent(trans, fs_info,
1798 child_bytenr,
1799 fs_info->nodesize,
1800 GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001801 if (ret)
1802 goto out;
1803 }
1804
1805 if (level == 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001806 ret = btrfs_qgroup_trace_leaf_items(trans,fs_info,
1807 path->nodes[level]);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001808 if (ret)
1809 goto out;
1810
1811 /* Nonzero return here means we completed our search */
David Sterba15b34512017-02-10 20:30:23 +01001812 ret = adjust_slots_upwards(path, root_level);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001813 if (ret)
1814 break;
1815
1816 /* Restart search with new slots */
1817 goto walk_down;
1818 }
1819
1820 level--;
1821 }
1822
1823 ret = 0;
1824out:
1825 btrfs_free_path(path);
1826
1827 return ret;
1828}
1829
Qu Wenruod810ef22015-04-12 16:52:34 +08001830#define UPDATE_NEW 0
1831#define UPDATE_OLD 1
1832/*
1833 * Walk all of the roots that points to the bytenr and adjust their refcnts.
1834 */
1835static int qgroup_update_refcnt(struct btrfs_fs_info *fs_info,
1836 struct ulist *roots, struct ulist *tmp,
1837 struct ulist *qgroups, u64 seq, int update_old)
1838{
1839 struct ulist_node *unode;
1840 struct ulist_iterator uiter;
1841 struct ulist_node *tmp_unode;
1842 struct ulist_iterator tmp_uiter;
1843 struct btrfs_qgroup *qg;
1844 int ret = 0;
1845
1846 if (!roots)
1847 return 0;
1848 ULIST_ITER_INIT(&uiter);
1849 while ((unode = ulist_next(roots, &uiter))) {
1850 qg = find_qgroup_rb(fs_info, unode->val);
1851 if (!qg)
1852 continue;
1853
1854 ulist_reinit(tmp);
David Sterbaef2fff62016-10-26 16:23:50 +02001855 ret = ulist_add(qgroups, qg->qgroupid, qgroup_to_aux(qg),
Qu Wenruod810ef22015-04-12 16:52:34 +08001856 GFP_ATOMIC);
1857 if (ret < 0)
1858 return ret;
David Sterbaef2fff62016-10-26 16:23:50 +02001859 ret = ulist_add(tmp, qg->qgroupid, qgroup_to_aux(qg), GFP_ATOMIC);
Qu Wenruod810ef22015-04-12 16:52:34 +08001860 if (ret < 0)
1861 return ret;
1862 ULIST_ITER_INIT(&tmp_uiter);
1863 while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
1864 struct btrfs_qgroup_list *glist;
1865
David Sterbaef2fff62016-10-26 16:23:50 +02001866 qg = unode_aux_to_qgroup(tmp_unode);
Qu Wenruod810ef22015-04-12 16:52:34 +08001867 if (update_old)
1868 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
1869 else
1870 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
1871 list_for_each_entry(glist, &qg->groups, next_group) {
1872 ret = ulist_add(qgroups, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001873 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08001874 GFP_ATOMIC);
1875 if (ret < 0)
1876 return ret;
1877 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001878 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08001879 GFP_ATOMIC);
1880 if (ret < 0)
1881 return ret;
1882 }
1883 }
1884 }
1885 return 0;
1886}
1887
Josef Bacikfcebe452014-05-13 17:30:47 -07001888/*
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001889 * Update qgroup rfer/excl counters.
1890 * Rfer update is easy, codes can explain themselves.
Qu Wenruoe69bcee2015-04-17 10:23:16 +08001891 *
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001892 * Excl update is tricky, the update is split into 2 part.
1893 * Part 1: Possible exclusive <-> sharing detect:
1894 * | A | !A |
1895 * -------------------------------------
1896 * B | * | - |
1897 * -------------------------------------
1898 * !B | + | ** |
1899 * -------------------------------------
1900 *
1901 * Conditions:
1902 * A: cur_old_roots < nr_old_roots (not exclusive before)
1903 * !A: cur_old_roots == nr_old_roots (possible exclusive before)
1904 * B: cur_new_roots < nr_new_roots (not exclusive now)
Nicholas D Steeves01327612016-05-19 21:18:45 -04001905 * !B: cur_new_roots == nr_new_roots (possible exclusive now)
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001906 *
1907 * Results:
1908 * +: Possible sharing -> exclusive -: Possible exclusive -> sharing
1909 * *: Definitely not changed. **: Possible unchanged.
1910 *
1911 * For !A and !B condition, the exception is cur_old/new_roots == 0 case.
1912 *
1913 * To make the logic clear, we first use condition A and B to split
1914 * combination into 4 results.
1915 *
1916 * Then, for result "+" and "-", check old/new_roots == 0 case, as in them
1917 * only on variant maybe 0.
1918 *
1919 * Lastly, check result **, since there are 2 variants maybe 0, split them
1920 * again(2x2).
1921 * But this time we don't need to consider other things, the codes and logic
1922 * is easy to understand now.
1923 */
1924static int qgroup_update_counters(struct btrfs_fs_info *fs_info,
1925 struct ulist *qgroups,
1926 u64 nr_old_roots,
1927 u64 nr_new_roots,
1928 u64 num_bytes, u64 seq)
1929{
1930 struct ulist_node *unode;
1931 struct ulist_iterator uiter;
1932 struct btrfs_qgroup *qg;
1933 u64 cur_new_count, cur_old_count;
1934
1935 ULIST_ITER_INIT(&uiter);
1936 while ((unode = ulist_next(qgroups, &uiter))) {
1937 bool dirty = false;
1938
David Sterbaef2fff62016-10-26 16:23:50 +02001939 qg = unode_aux_to_qgroup(unode);
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001940 cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
1941 cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
1942
Qu Wenruo8b317902018-04-30 15:04:44 +08001943 trace_qgroup_update_counters(fs_info, qg, cur_old_count,
1944 cur_new_count);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001945
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001946 /* Rfer update part */
1947 if (cur_old_count == 0 && cur_new_count > 0) {
1948 qg->rfer += num_bytes;
1949 qg->rfer_cmpr += num_bytes;
1950 dirty = true;
1951 }
1952 if (cur_old_count > 0 && cur_new_count == 0) {
1953 qg->rfer -= num_bytes;
1954 qg->rfer_cmpr -= num_bytes;
1955 dirty = true;
1956 }
1957
1958 /* Excl update part */
1959 /* Exclusive/none -> shared case */
1960 if (cur_old_count == nr_old_roots &&
1961 cur_new_count < nr_new_roots) {
1962 /* Exclusive -> shared */
1963 if (cur_old_count != 0) {
1964 qg->excl -= num_bytes;
1965 qg->excl_cmpr -= num_bytes;
1966 dirty = true;
1967 }
1968 }
1969
1970 /* Shared -> exclusive/none case */
1971 if (cur_old_count < nr_old_roots &&
1972 cur_new_count == nr_new_roots) {
1973 /* Shared->exclusive */
1974 if (cur_new_count != 0) {
1975 qg->excl += num_bytes;
1976 qg->excl_cmpr += num_bytes;
1977 dirty = true;
1978 }
1979 }
1980
1981 /* Exclusive/none -> exclusive/none case */
1982 if (cur_old_count == nr_old_roots &&
1983 cur_new_count == nr_new_roots) {
1984 if (cur_old_count == 0) {
1985 /* None -> exclusive/none */
1986
1987 if (cur_new_count != 0) {
1988 /* None -> exclusive */
1989 qg->excl += num_bytes;
1990 qg->excl_cmpr += num_bytes;
1991 dirty = true;
1992 }
1993 /* None -> none, nothing changed */
1994 } else {
1995 /* Exclusive -> exclusive/none */
1996
1997 if (cur_new_count == 0) {
1998 /* Exclusive -> none */
1999 qg->excl -= num_bytes;
2000 qg->excl_cmpr -= num_bytes;
2001 dirty = true;
2002 }
2003 /* Exclusive -> exclusive, nothing changed */
2004 }
2005 }
Qu Wenruoc05f9422015-08-03 14:44:29 +08002006
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002007 if (dirty)
2008 qgroup_dirty(fs_info, qg);
2009 }
2010 return 0;
2011}
2012
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002013/*
2014 * Check if the @roots potentially is a list of fs tree roots
2015 *
2016 * Return 0 for definitely not a fs/subvol tree roots ulist
2017 * Return 1 for possible fs/subvol tree roots in the list (considering an empty
2018 * one as well)
2019 */
2020static int maybe_fs_roots(struct ulist *roots)
2021{
2022 struct ulist_node *unode;
2023 struct ulist_iterator uiter;
2024
2025 /* Empty one, still possible for fs roots */
2026 if (!roots || roots->nnodes == 0)
2027 return 1;
2028
2029 ULIST_ITER_INIT(&uiter);
2030 unode = ulist_next(roots, &uiter);
2031 if (!unode)
2032 return 1;
2033
2034 /*
2035 * If it contains fs tree roots, then it must belong to fs/subvol
2036 * trees.
2037 * If it contains a non-fs tree, it won't be shared with fs/subvol trees.
2038 */
2039 return is_fstree(unode->val);
2040}
2041
Qu Wenruo442244c2015-04-16 17:18:36 +08002042int
Qu Wenruo550d7a22015-04-16 15:37:33 +08002043btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans,
2044 struct btrfs_fs_info *fs_info,
2045 u64 bytenr, u64 num_bytes,
2046 struct ulist *old_roots, struct ulist *new_roots)
2047{
2048 struct ulist *qgroups = NULL;
2049 struct ulist *tmp = NULL;
2050 u64 seq;
2051 u64 nr_new_roots = 0;
2052 u64 nr_old_roots = 0;
2053 int ret = 0;
2054
David Sterba81353d52017-02-13 14:05:24 +01002055 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2056 return 0;
2057
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002058 if (new_roots) {
2059 if (!maybe_fs_roots(new_roots))
2060 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002061 nr_new_roots = new_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002062 }
2063 if (old_roots) {
2064 if (!maybe_fs_roots(old_roots))
2065 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002066 nr_old_roots = old_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002067 }
2068
2069 /* Quick exit, either not fs tree roots, or won't affect any qgroup */
2070 if (nr_old_roots == 0 && nr_new_roots == 0)
2071 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002072
Qu Wenruo550d7a22015-04-16 15:37:33 +08002073 BUG_ON(!fs_info->quota_root);
2074
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08002075 trace_btrfs_qgroup_account_extent(fs_info, trans->transid, bytenr,
2076 num_bytes, nr_old_roots, nr_new_roots);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002077
Qu Wenruo550d7a22015-04-16 15:37:33 +08002078 qgroups = ulist_alloc(GFP_NOFS);
2079 if (!qgroups) {
2080 ret = -ENOMEM;
2081 goto out_free;
2082 }
2083 tmp = ulist_alloc(GFP_NOFS);
2084 if (!tmp) {
2085 ret = -ENOMEM;
2086 goto out_free;
2087 }
2088
2089 mutex_lock(&fs_info->qgroup_rescan_lock);
2090 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2091 if (fs_info->qgroup_rescan_progress.objectid <= bytenr) {
2092 mutex_unlock(&fs_info->qgroup_rescan_lock);
2093 ret = 0;
2094 goto out_free;
2095 }
2096 }
2097 mutex_unlock(&fs_info->qgroup_rescan_lock);
2098
2099 spin_lock(&fs_info->qgroup_lock);
2100 seq = fs_info->qgroup_seq;
2101
2102 /* Update old refcnts using old_roots */
2103 ret = qgroup_update_refcnt(fs_info, old_roots, tmp, qgroups, seq,
2104 UPDATE_OLD);
2105 if (ret < 0)
2106 goto out;
2107
2108 /* Update new refcnts using new_roots */
2109 ret = qgroup_update_refcnt(fs_info, new_roots, tmp, qgroups, seq,
2110 UPDATE_NEW);
2111 if (ret < 0)
2112 goto out;
2113
2114 qgroup_update_counters(fs_info, qgroups, nr_old_roots, nr_new_roots,
2115 num_bytes, seq);
2116
2117 /*
2118 * Bump qgroup_seq to avoid seq overlap
2119 */
2120 fs_info->qgroup_seq += max(nr_old_roots, nr_new_roots) + 1;
2121out:
2122 spin_unlock(&fs_info->qgroup_lock);
2123out_free:
2124 ulist_free(tmp);
2125 ulist_free(qgroups);
2126 ulist_free(old_roots);
2127 ulist_free(new_roots);
2128 return ret;
2129}
2130
Nikolay Borisov460fb202018-03-15 16:00:25 +02002131int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans)
Qu Wenruo550d7a22015-04-16 15:37:33 +08002132{
Nikolay Borisov460fb202018-03-15 16:00:25 +02002133 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002134 struct btrfs_qgroup_extent_record *record;
2135 struct btrfs_delayed_ref_root *delayed_refs;
2136 struct ulist *new_roots = NULL;
2137 struct rb_node *node;
Qu Wenruo9086db82015-04-20 09:53:50 +08002138 u64 qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002139 int ret = 0;
2140
2141 delayed_refs = &trans->transaction->delayed_refs;
Qu Wenruo9086db82015-04-20 09:53:50 +08002142 qgroup_to_skip = delayed_refs->qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002143 while ((node = rb_first(&delayed_refs->dirty_extent_root))) {
2144 record = rb_entry(node, struct btrfs_qgroup_extent_record,
2145 node);
2146
Jeff Mahoneybc074522016-06-09 17:27:55 -04002147 trace_btrfs_qgroup_account_extents(fs_info, record);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002148
Qu Wenruo550d7a22015-04-16 15:37:33 +08002149 if (!ret) {
2150 /*
Qu Wenruod1b8b942017-02-27 15:10:35 +08002151 * Old roots should be searched when inserting qgroup
2152 * extent record
2153 */
2154 if (WARN_ON(!record->old_roots)) {
2155 /* Search commit root to find old_roots */
2156 ret = btrfs_find_all_roots(NULL, fs_info,
2157 record->bytenr, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002158 &record->old_roots, false);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002159 if (ret < 0)
2160 goto cleanup;
2161 }
2162
2163 /*
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06002164 * Use SEQ_LAST as time_seq to do special search, which
Qu Wenruo550d7a22015-04-16 15:37:33 +08002165 * doesn't lock tree or delayed_refs and search current
2166 * root. It's safe inside commit_transaction().
2167 */
2168 ret = btrfs_find_all_roots(trans, fs_info,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002169 record->bytenr, SEQ_LAST, &new_roots, false);
Qu Wenruo550d7a22015-04-16 15:37:33 +08002170 if (ret < 0)
2171 goto cleanup;
Qu Wenruod1b8b942017-02-27 15:10:35 +08002172 if (qgroup_to_skip) {
Qu Wenruo9086db82015-04-20 09:53:50 +08002173 ulist_del(new_roots, qgroup_to_skip, 0);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002174 ulist_del(record->old_roots, qgroup_to_skip,
2175 0);
2176 }
Qu Wenruo550d7a22015-04-16 15:37:33 +08002177 ret = btrfs_qgroup_account_extent(trans, fs_info,
2178 record->bytenr, record->num_bytes,
2179 record->old_roots, new_roots);
2180 record->old_roots = NULL;
2181 new_roots = NULL;
2182 }
2183cleanup:
2184 ulist_free(record->old_roots);
2185 ulist_free(new_roots);
2186 new_roots = NULL;
2187 rb_erase(node, &delayed_refs->dirty_extent_root);
2188 kfree(record);
2189
2190 }
2191 return ret;
2192}
2193
Josef Bacikfcebe452014-05-13 17:30:47 -07002194/*
Arne Jansenbed92ea2012-06-28 18:03:02 +02002195 * called from commit_transaction. Writes all changed qgroups to disk.
2196 */
2197int btrfs_run_qgroups(struct btrfs_trans_handle *trans,
2198 struct btrfs_fs_info *fs_info)
2199{
2200 struct btrfs_root *quota_root = fs_info->quota_root;
2201 int ret = 0;
2202
2203 if (!quota_root)
Nikolay Borisov5d235152018-01-31 10:52:04 +02002204 return ret;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002205
2206 spin_lock(&fs_info->qgroup_lock);
2207 while (!list_empty(&fs_info->dirty_qgroups)) {
2208 struct btrfs_qgroup *qgroup;
2209 qgroup = list_first_entry(&fs_info->dirty_qgroups,
2210 struct btrfs_qgroup, dirty);
2211 list_del_init(&qgroup->dirty);
2212 spin_unlock(&fs_info->qgroup_lock);
2213 ret = update_qgroup_info_item(trans, quota_root, qgroup);
2214 if (ret)
2215 fs_info->qgroup_flags |=
2216 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Dongsheng Yangd3001ed2014-11-20 21:04:56 -05002217 ret = update_qgroup_limit_item(trans, quota_root, qgroup);
2218 if (ret)
2219 fs_info->qgroup_flags |=
2220 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002221 spin_lock(&fs_info->qgroup_lock);
2222 }
Josef Bacikafcdd122016-09-02 15:40:02 -04002223 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Arne Jansenbed92ea2012-06-28 18:03:02 +02002224 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_ON;
2225 else
2226 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
2227 spin_unlock(&fs_info->qgroup_lock);
2228
2229 ret = update_qgroup_status_item(trans, fs_info, quota_root);
2230 if (ret)
2231 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2232
Arne Jansenbed92ea2012-06-28 18:03:02 +02002233 return ret;
2234}
2235
2236/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002237 * Copy the accounting information between qgroups. This is necessary
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002238 * when a snapshot or a subvolume is created. Throwing an error will
2239 * cause a transaction abort so we take extra care here to only error
2240 * when a readonly fs is a reasonable outcome.
Arne Jansenbed92ea2012-06-28 18:03:02 +02002241 */
2242int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans,
2243 struct btrfs_fs_info *fs_info, u64 srcid, u64 objectid,
2244 struct btrfs_qgroup_inherit *inherit)
2245{
2246 int ret = 0;
2247 int i;
2248 u64 *i_qgroups;
2249 struct btrfs_root *quota_root = fs_info->quota_root;
2250 struct btrfs_qgroup *srcgroup;
2251 struct btrfs_qgroup *dstgroup;
2252 u32 level_size = 0;
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002253 u64 nums;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002254
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002255 mutex_lock(&fs_info->qgroup_ioctl_lock);
Josef Bacikafcdd122016-09-02 15:40:02 -04002256 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002257 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002258
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002259 if (!quota_root) {
2260 ret = -EINVAL;
2261 goto out;
2262 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002263
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002264 if (inherit) {
2265 i_qgroups = (u64 *)(inherit + 1);
2266 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
2267 2 * inherit->num_excl_copies;
2268 for (i = 0; i < nums; ++i) {
2269 srcgroup = find_qgroup_rb(fs_info, *i_qgroups);
Dongsheng Yang09870d22014-11-11 07:18:22 -05002270
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002271 /*
2272 * Zero out invalid groups so we can ignore
2273 * them later.
2274 */
2275 if (!srcgroup ||
2276 ((srcgroup->qgroupid >> 48) <= (objectid >> 48)))
2277 *i_qgroups = 0ULL;
2278
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002279 ++i_qgroups;
2280 }
2281 }
2282
Arne Jansenbed92ea2012-06-28 18:03:02 +02002283 /*
2284 * create a tracking group for the subvol itself
2285 */
2286 ret = add_qgroup_item(trans, quota_root, objectid);
2287 if (ret)
2288 goto out;
2289
Arne Jansenbed92ea2012-06-28 18:03:02 +02002290 /*
2291 * add qgroup to all inherited groups
2292 */
2293 if (inherit) {
2294 i_qgroups = (u64 *)(inherit + 1);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002295 for (i = 0; i < inherit->num_qgroups; ++i, ++i_qgroups) {
2296 if (*i_qgroups == 0)
2297 continue;
Lu Fengqi711169c2018-07-18 14:45:24 +08002298 ret = add_qgroup_relation_item(trans, objectid,
2299 *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002300 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002301 goto out;
Lu Fengqi711169c2018-07-18 14:45:24 +08002302 ret = add_qgroup_relation_item(trans, *i_qgroups,
2303 objectid);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002304 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002305 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002306 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002307 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002308 }
2309
2310
2311 spin_lock(&fs_info->qgroup_lock);
2312
2313 dstgroup = add_qgroup_rb(fs_info, objectid);
Dan Carpenter57a5a882012-07-30 02:15:43 -06002314 if (IS_ERR(dstgroup)) {
2315 ret = PTR_ERR(dstgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002316 goto unlock;
Dan Carpenter57a5a882012-07-30 02:15:43 -06002317 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002318
Dongsheng Yange8c85412014-11-20 20:58:34 -05002319 if (inherit && inherit->flags & BTRFS_QGROUP_INHERIT_SET_LIMITS) {
Dongsheng Yange8c85412014-11-20 20:58:34 -05002320 dstgroup->lim_flags = inherit->lim.flags;
2321 dstgroup->max_rfer = inherit->lim.max_rfer;
2322 dstgroup->max_excl = inherit->lim.max_excl;
2323 dstgroup->rsv_rfer = inherit->lim.rsv_rfer;
2324 dstgroup->rsv_excl = inherit->lim.rsv_excl;
Dongsheng Yang1510e712014-11-20 21:01:41 -05002325
2326 ret = update_qgroup_limit_item(trans, quota_root, dstgroup);
2327 if (ret) {
2328 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002329 btrfs_info(fs_info,
2330 "unable to update quota limit for %llu",
2331 dstgroup->qgroupid);
Dongsheng Yang1510e712014-11-20 21:01:41 -05002332 goto unlock;
2333 }
Dongsheng Yange8c85412014-11-20 20:58:34 -05002334 }
2335
Arne Jansenbed92ea2012-06-28 18:03:02 +02002336 if (srcid) {
2337 srcgroup = find_qgroup_rb(fs_info, srcid);
Chris Masonf3a87f12012-09-14 20:06:30 -04002338 if (!srcgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002339 goto unlock;
Josef Bacikfcebe452014-05-13 17:30:47 -07002340
2341 /*
2342 * We call inherit after we clone the root in order to make sure
2343 * our counts don't go crazy, so at this point the only
2344 * difference between the two roots should be the root node.
2345 */
Lu Fengqic8389d42018-07-17 16:58:22 +08002346 level_size = fs_info->nodesize;
Josef Bacikfcebe452014-05-13 17:30:47 -07002347 dstgroup->rfer = srcgroup->rfer;
2348 dstgroup->rfer_cmpr = srcgroup->rfer_cmpr;
2349 dstgroup->excl = level_size;
2350 dstgroup->excl_cmpr = level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002351 srcgroup->excl = level_size;
2352 srcgroup->excl_cmpr = level_size;
Dongsheng Yang3eeb4d52014-11-20 20:14:38 -05002353
2354 /* inherit the limit info */
2355 dstgroup->lim_flags = srcgroup->lim_flags;
2356 dstgroup->max_rfer = srcgroup->max_rfer;
2357 dstgroup->max_excl = srcgroup->max_excl;
2358 dstgroup->rsv_rfer = srcgroup->rsv_rfer;
2359 dstgroup->rsv_excl = srcgroup->rsv_excl;
2360
Arne Jansenbed92ea2012-06-28 18:03:02 +02002361 qgroup_dirty(fs_info, dstgroup);
2362 qgroup_dirty(fs_info, srcgroup);
2363 }
2364
Chris Masonf3a87f12012-09-14 20:06:30 -04002365 if (!inherit)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002366 goto unlock;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002367
2368 i_qgroups = (u64 *)(inherit + 1);
2369 for (i = 0; i < inherit->num_qgroups; ++i) {
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002370 if (*i_qgroups) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002371 ret = add_relation_rb(fs_info, objectid, *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002372 if (ret)
2373 goto unlock;
2374 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002375 ++i_qgroups;
2376 }
2377
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002378 for (i = 0; i < inherit->num_ref_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002379 struct btrfs_qgroup *src;
2380 struct btrfs_qgroup *dst;
2381
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002382 if (!i_qgroups[0] || !i_qgroups[1])
2383 continue;
2384
Arne Jansenbed92ea2012-06-28 18:03:02 +02002385 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2386 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2387
2388 if (!src || !dst) {
2389 ret = -EINVAL;
2390 goto unlock;
2391 }
2392
2393 dst->rfer = src->rfer - level_size;
2394 dst->rfer_cmpr = src->rfer_cmpr - level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002395 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002396 for (i = 0; i < inherit->num_excl_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002397 struct btrfs_qgroup *src;
2398 struct btrfs_qgroup *dst;
2399
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002400 if (!i_qgroups[0] || !i_qgroups[1])
2401 continue;
2402
Arne Jansenbed92ea2012-06-28 18:03:02 +02002403 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2404 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2405
2406 if (!src || !dst) {
2407 ret = -EINVAL;
2408 goto unlock;
2409 }
2410
2411 dst->excl = src->excl + level_size;
2412 dst->excl_cmpr = src->excl_cmpr + level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002413 }
2414
2415unlock:
2416 spin_unlock(&fs_info->qgroup_lock);
2417out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002418 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002419 return ret;
2420}
2421
Qu Wenruoa514d632017-12-22 16:06:39 +08002422/*
2423 * Two limits to commit transaction in advance.
2424 *
2425 * For RATIO, it will be 1/RATIO of the remaining limit
2426 * (excluding data and prealloc meta) as threshold.
2427 * For SIZE, it will be in byte unit as threshold.
2428 */
2429#define QGROUP_PERTRANS_RATIO 32
2430#define QGROUP_PERTRANS_SIZE SZ_32M
2431static bool qgroup_check_limits(struct btrfs_fs_info *fs_info,
2432 const struct btrfs_qgroup *qg, u64 num_bytes)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002433{
Qu Wenruoa514d632017-12-22 16:06:39 +08002434 u64 limit;
2435 u64 threshold;
2436
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002437 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002438 qgroup_rsv_total(qg) + (s64)qg->rfer + num_bytes > qg->max_rfer)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002439 return false;
2440
2441 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002442 qgroup_rsv_total(qg) + (s64)qg->excl + num_bytes > qg->max_excl)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002443 return false;
2444
Qu Wenruoa514d632017-12-22 16:06:39 +08002445 /*
2446 * Even if we passed the check, it's better to check if reservation
2447 * for meta_pertrans is pushing us near limit.
2448 * If there is too much pertrans reservation or it's near the limit,
2449 * let's try commit transaction to free some, using transaction_kthread
2450 */
2451 if ((qg->lim_flags & (BTRFS_QGROUP_LIMIT_MAX_RFER |
2452 BTRFS_QGROUP_LIMIT_MAX_EXCL))) {
2453 if (qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL)
2454 limit = qg->max_excl;
2455 else
2456 limit = qg->max_rfer;
2457 threshold = (limit - qg->rsv.values[BTRFS_QGROUP_RSV_DATA] -
2458 qg->rsv.values[BTRFS_QGROUP_RSV_META_PREALLOC]) /
2459 QGROUP_PERTRANS_RATIO;
2460 threshold = min_t(u64, threshold, QGROUP_PERTRANS_SIZE);
2461
2462 /*
2463 * Use transaction_kthread to commit transaction, so we no
2464 * longer need to bother nested transaction nor lock context.
2465 */
2466 if (qg->rsv.values[BTRFS_QGROUP_RSV_META_PERTRANS] > threshold)
2467 btrfs_commit_transaction_locksafe(fs_info);
2468 }
2469
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002470 return true;
2471}
2472
Qu Wenruodba21322017-12-12 15:34:25 +08002473static int qgroup_reserve(struct btrfs_root *root, u64 num_bytes, bool enforce,
2474 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002475{
2476 struct btrfs_root *quota_root;
2477 struct btrfs_qgroup *qgroup;
2478 struct btrfs_fs_info *fs_info = root->fs_info;
2479 u64 ref_root = root->root_key.objectid;
2480 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002481 struct ulist_node *unode;
2482 struct ulist_iterator uiter;
2483
2484 if (!is_fstree(ref_root))
2485 return 0;
2486
2487 if (num_bytes == 0)
2488 return 0;
Sargun Dhillonf29efe22017-05-11 21:17:33 +00002489
2490 if (test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags) &&
2491 capable(CAP_SYS_RESOURCE))
2492 enforce = false;
2493
Arne Jansenbed92ea2012-06-28 18:03:02 +02002494 spin_lock(&fs_info->qgroup_lock);
2495 quota_root = fs_info->quota_root;
2496 if (!quota_root)
2497 goto out;
2498
2499 qgroup = find_qgroup_rb(fs_info, ref_root);
2500 if (!qgroup)
2501 goto out;
2502
2503 /*
2504 * in a first step, we check all affected qgroups if any limits would
2505 * be exceeded
2506 */
Wang Shilong1e8f9152013-05-06 11:03:27 +00002507 ulist_reinit(fs_info->qgroup_ulist);
2508 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002509 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002510 if (ret < 0)
2511 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002512 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002513 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002514 struct btrfs_qgroup *qg;
2515 struct btrfs_qgroup_list *glist;
2516
David Sterbaef2fff62016-10-26 16:23:50 +02002517 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002518
Qu Wenruoa514d632017-12-22 16:06:39 +08002519 if (enforce && !qgroup_check_limits(fs_info, qg, num_bytes)) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002520 ret = -EDQUOT;
Wang Shilong720f1e22013-03-06 11:51:47 +00002521 goto out;
2522 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002523
2524 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002525 ret = ulist_add(fs_info->qgroup_ulist,
2526 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002527 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002528 if (ret < 0)
2529 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002530 }
2531 }
Wang Shilong3c971852013-04-17 14:00:36 +00002532 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002533 /*
2534 * no limits exceeded, now record the reservation into all qgroups
2535 */
2536 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002537 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002538 struct btrfs_qgroup *qg;
2539
David Sterbaef2fff62016-10-26 16:23:50 +02002540 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002541
Qu Wenruo64ee4e72017-12-12 15:34:27 +08002542 trace_qgroup_update_reserve(fs_info, qg, num_bytes, type);
2543 qgroup_rsv_add(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002544 }
2545
2546out:
2547 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002548 return ret;
2549}
2550
Qu Wenruoe1211d02017-12-12 15:34:30 +08002551/*
2552 * Free @num_bytes of reserved space with @type for qgroup. (Normally level 0
2553 * qgroup).
2554 *
2555 * Will handle all higher level qgroup too.
2556 *
2557 * NOTE: If @num_bytes is (u64)-1, this means to free all bytes of this qgroup.
2558 * This special case is only used for META_PERTRANS type.
2559 */
Qu Wenruo297d7502015-09-08 17:08:37 +08002560void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
Qu Wenruod4e5c922017-12-12 15:34:23 +08002561 u64 ref_root, u64 num_bytes,
2562 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002563{
2564 struct btrfs_root *quota_root;
2565 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002566 struct ulist_node *unode;
2567 struct ulist_iterator uiter;
Wang Shilong3c971852013-04-17 14:00:36 +00002568 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002569
2570 if (!is_fstree(ref_root))
2571 return;
2572
2573 if (num_bytes == 0)
2574 return;
2575
Qu Wenruoe1211d02017-12-12 15:34:30 +08002576 if (num_bytes == (u64)-1 && type != BTRFS_QGROUP_RSV_META_PERTRANS) {
2577 WARN(1, "%s: Invalid type to free", __func__);
2578 return;
2579 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002580 spin_lock(&fs_info->qgroup_lock);
2581
2582 quota_root = fs_info->quota_root;
2583 if (!quota_root)
2584 goto out;
2585
2586 qgroup = find_qgroup_rb(fs_info, ref_root);
2587 if (!qgroup)
2588 goto out;
2589
Qu Wenruoe1211d02017-12-12 15:34:30 +08002590 if (num_bytes == (u64)-1)
Qu Wenruo82874752017-12-12 15:34:34 +08002591 /*
2592 * We're freeing all pertrans rsv, get reserved value from
2593 * level 0 qgroup as real num_bytes to free.
2594 */
Qu Wenruoe1211d02017-12-12 15:34:30 +08002595 num_bytes = qgroup->rsv.values[type];
2596
Wang Shilong1e8f9152013-05-06 11:03:27 +00002597 ulist_reinit(fs_info->qgroup_ulist);
2598 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002599 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002600 if (ret < 0)
2601 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002602 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002603 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002604 struct btrfs_qgroup *qg;
2605 struct btrfs_qgroup_list *glist;
2606
David Sterbaef2fff62016-10-26 16:23:50 +02002607 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002608
Qu Wenruo64ee4e72017-12-12 15:34:27 +08002609 trace_qgroup_update_reserve(fs_info, qg, -(s64)num_bytes, type);
2610 qgroup_rsv_release(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002611
2612 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002613 ret = ulist_add(fs_info->qgroup_ulist,
2614 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002615 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002616 if (ret < 0)
2617 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002618 }
2619 }
2620
2621out:
2622 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002623}
2624
Jan Schmidt2f232032013-04-25 16:04:51 +00002625/*
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002626 * Check if the leaf is the last leaf. Which means all node pointers
2627 * are at their last position.
2628 */
2629static bool is_last_leaf(struct btrfs_path *path)
2630{
2631 int i;
2632
2633 for (i = 1; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
2634 if (path->slots[i] != btrfs_header_nritems(path->nodes[i]) - 1)
2635 return false;
2636 }
2637 return true;
2638}
2639
2640/*
Jan Schmidt2f232032013-04-25 16:04:51 +00002641 * returns < 0 on error, 0 when more leafs are to be scanned.
Qu Wenruo33931682015-02-27 16:24:24 +08002642 * returns 1 when done.
Jan Schmidt2f232032013-04-25 16:04:51 +00002643 */
2644static int
Jan Schmidtb382a322013-05-28 15:47:24 +00002645qgroup_rescan_leaf(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002646 struct btrfs_trans_handle *trans)
Jan Schmidt2f232032013-04-25 16:04:51 +00002647{
2648 struct btrfs_key found;
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002649 struct extent_buffer *scratch_leaf = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00002650 struct ulist *roots = NULL;
Josef Bacikfcebe452014-05-13 17:30:47 -07002651 u64 num_bytes;
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002652 bool done;
Jan Schmidt2f232032013-04-25 16:04:51 +00002653 int slot;
2654 int ret;
2655
Jan Schmidt2f232032013-04-25 16:04:51 +00002656 mutex_lock(&fs_info->qgroup_rescan_lock);
2657 ret = btrfs_search_slot_for_read(fs_info->extent_root,
2658 &fs_info->qgroup_rescan_progress,
2659 path, 1, 0);
2660
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002661 btrfs_debug(fs_info,
2662 "current progress key (%llu %u %llu), search_slot ret %d",
2663 fs_info->qgroup_rescan_progress.objectid,
2664 fs_info->qgroup_rescan_progress.type,
2665 fs_info->qgroup_rescan_progress.offset, ret);
Jan Schmidt2f232032013-04-25 16:04:51 +00002666
2667 if (ret) {
2668 /*
2669 * The rescan is about to end, we will not be scanning any
2670 * further blocks. We cannot unset the RESCAN flag here, because
2671 * we want to commit the transaction if everything went well.
2672 * To make the live accounting work in this phase, we set our
2673 * scan progress pointer such that every real extent objectid
2674 * will be smaller.
2675 */
2676 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2677 btrfs_release_path(path);
2678 mutex_unlock(&fs_info->qgroup_rescan_lock);
2679 return ret;
2680 }
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002681 done = is_last_leaf(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00002682
2683 btrfs_item_key_to_cpu(path->nodes[0], &found,
2684 btrfs_header_nritems(path->nodes[0]) - 1);
2685 fs_info->qgroup_rescan_progress.objectid = found.objectid + 1;
2686
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002687 scratch_leaf = btrfs_clone_extent_buffer(path->nodes[0]);
2688 if (!scratch_leaf) {
2689 ret = -ENOMEM;
2690 mutex_unlock(&fs_info->qgroup_rescan_lock);
2691 goto out;
2692 }
2693 extent_buffer_get(scratch_leaf);
2694 btrfs_tree_read_lock(scratch_leaf);
2695 btrfs_set_lock_blocking_rw(scratch_leaf, BTRFS_READ_LOCK);
Jan Schmidt2f232032013-04-25 16:04:51 +00002696 slot = path->slots[0];
2697 btrfs_release_path(path);
2698 mutex_unlock(&fs_info->qgroup_rescan_lock);
2699
2700 for (; slot < btrfs_header_nritems(scratch_leaf); ++slot) {
2701 btrfs_item_key_to_cpu(scratch_leaf, &found, slot);
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002702 if (found.type != BTRFS_EXTENT_ITEM_KEY &&
2703 found.type != BTRFS_METADATA_ITEM_KEY)
Jan Schmidt2f232032013-04-25 16:04:51 +00002704 continue;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002705 if (found.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoneyda170662016-06-15 09:22:56 -04002706 num_bytes = fs_info->nodesize;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002707 else
2708 num_bytes = found.offset;
2709
Josef Bacikfcebe452014-05-13 17:30:47 -07002710 ret = btrfs_find_all_roots(NULL, fs_info, found.objectid, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002711 &roots, false);
Jan Schmidt2f232032013-04-25 16:04:51 +00002712 if (ret < 0)
2713 goto out;
Qu Wenruo9d220c92015-04-13 11:02:16 +08002714 /* For rescan, just pass old_roots as NULL */
2715 ret = btrfs_qgroup_account_extent(trans, fs_info,
2716 found.objectid, num_bytes, NULL, roots);
2717 if (ret < 0)
Jan Schmidt2f232032013-04-25 16:04:51 +00002718 goto out;
Jan Schmidt2f232032013-04-25 16:04:51 +00002719 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002720out:
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002721 if (scratch_leaf) {
2722 btrfs_tree_read_unlock_blocking(scratch_leaf);
2723 free_extent_buffer(scratch_leaf);
2724 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002725
Qu Wenruo6f7de192018-06-27 18:19:55 +08002726 if (done && !ret) {
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002727 ret = 1;
Qu Wenruo6f7de192018-06-27 18:19:55 +08002728 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2729 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002730 return ret;
2731}
2732
Qu Wenruod458b052014-02-28 10:46:19 +08002733static void btrfs_qgroup_rescan_worker(struct btrfs_work *work)
Jan Schmidt2f232032013-04-25 16:04:51 +00002734{
Jan Schmidtb382a322013-05-28 15:47:24 +00002735 struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info,
2736 qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00002737 struct btrfs_path *path;
2738 struct btrfs_trans_handle *trans = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00002739 int err = -ENOMEM;
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002740 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00002741
2742 path = btrfs_alloc_path();
2743 if (!path)
2744 goto out;
Qu Wenruob6debf12018-05-14 09:38:12 +08002745 /*
2746 * Rescan should only search for commit root, and any later difference
2747 * should be recorded by qgroup
2748 */
2749 path->search_commit_root = 1;
2750 path->skip_locking = 1;
Jan Schmidt2f232032013-04-25 16:04:51 +00002751
2752 err = 0;
Justin Maggard7343dd62015-11-04 15:56:16 -08002753 while (!err && !btrfs_fs_closing(fs_info)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002754 trans = btrfs_start_transaction(fs_info->fs_root, 0);
2755 if (IS_ERR(trans)) {
2756 err = PTR_ERR(trans);
2757 break;
2758 }
Josef Bacikafcdd122016-09-02 15:40:02 -04002759 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002760 err = -EINTR;
2761 } else {
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002762 err = qgroup_rescan_leaf(fs_info, path, trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002763 }
2764 if (err > 0)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002765 btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002766 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002767 btrfs_end_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002768 }
2769
2770out:
Jan Schmidt2f232032013-04-25 16:04:51 +00002771 btrfs_free_path(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00002772
2773 mutex_lock(&fs_info->qgroup_rescan_lock);
Justin Maggard7343dd62015-11-04 15:56:16 -08002774 if (!btrfs_fs_closing(fs_info))
2775 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidt2f232032013-04-25 16:04:51 +00002776
Qu Wenruo33931682015-02-27 16:24:24 +08002777 if (err > 0 &&
Jan Schmidt2f232032013-04-25 16:04:51 +00002778 fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT) {
2779 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2780 } else if (err < 0) {
2781 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2782 }
2783 mutex_unlock(&fs_info->qgroup_rescan_lock);
2784
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002785 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002786 * only update status, since the previous part has already updated the
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002787 * qgroup info.
2788 */
2789 trans = btrfs_start_transaction(fs_info->quota_root, 1);
2790 if (IS_ERR(trans)) {
2791 err = PTR_ERR(trans);
2792 btrfs_err(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02002793 "fail to start transaction for status update: %d",
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002794 err);
2795 goto done;
2796 }
2797 ret = update_qgroup_status_item(trans, fs_info, fs_info->quota_root);
2798 if (ret < 0) {
2799 err = ret;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002800 btrfs_err(fs_info, "fail to update qgroup status: %d", err);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002801 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002802 btrfs_end_transaction(trans);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002803
Justin Maggard7343dd62015-11-04 15:56:16 -08002804 if (btrfs_fs_closing(fs_info)) {
2805 btrfs_info(fs_info, "qgroup scan paused");
2806 } else if (err >= 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002807 btrfs_info(fs_info, "qgroup scan completed%s",
Qu Wenruo33931682015-02-27 16:24:24 +08002808 err > 0 ? " (inconsistency flag cleared)" : "");
Jan Schmidt2f232032013-04-25 16:04:51 +00002809 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05002810 btrfs_err(fs_info, "qgroup scan failed with %d", err);
Jan Schmidt2f232032013-04-25 16:04:51 +00002811 }
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002812
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002813done:
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04002814 mutex_lock(&fs_info->qgroup_rescan_lock);
2815 fs_info->qgroup_rescan_running = false;
2816 mutex_unlock(&fs_info->qgroup_rescan_lock);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002817 complete_all(&fs_info->qgroup_rescan_completion);
Jan Schmidt2f232032013-04-25 16:04:51 +00002818}
2819
Jan Schmidtb382a322013-05-28 15:47:24 +00002820/*
2821 * Checks that (a) no rescan is running and (b) quota is enabled. Allocates all
2822 * memory required for the rescan context.
2823 */
2824static int
2825qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
2826 int init_flags)
Jan Schmidt2f232032013-04-25 16:04:51 +00002827{
2828 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00002829
Qu Wenruo9593bf492018-05-02 13:28:03 +08002830 if (!init_flags) {
2831 /* we're resuming qgroup rescan at mount time */
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002832 if (!(fs_info->qgroup_flags &
2833 BTRFS_QGROUP_STATUS_FLAG_RESCAN)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002834 btrfs_warn(fs_info,
2835 "qgroup rescan init failed, qgroup is not enabled");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002836 ret = -EINVAL;
2837 } else if (!(fs_info->qgroup_flags &
2838 BTRFS_QGROUP_STATUS_FLAG_ON)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002839 btrfs_warn(fs_info,
2840 "qgroup rescan init failed, qgroup rescan is not queued");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002841 ret = -EINVAL;
2842 }
2843
2844 if (ret)
2845 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00002846 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002847
2848 mutex_lock(&fs_info->qgroup_rescan_lock);
2849 spin_lock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00002850
2851 if (init_flags) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002852 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2853 btrfs_warn(fs_info,
2854 "qgroup rescan is already in progress");
Jan Schmidtb382a322013-05-28 15:47:24 +00002855 ret = -EINPROGRESS;
Qu Wenruo9593bf492018-05-02 13:28:03 +08002856 } else if (!(fs_info->qgroup_flags &
2857 BTRFS_QGROUP_STATUS_FLAG_ON)) {
2858 btrfs_warn(fs_info,
2859 "qgroup rescan init failed, qgroup is not enabled");
Jan Schmidtb382a322013-05-28 15:47:24 +00002860 ret = -EINVAL;
Qu Wenruo9593bf492018-05-02 13:28:03 +08002861 }
Jan Schmidtb382a322013-05-28 15:47:24 +00002862
2863 if (ret) {
2864 spin_unlock(&fs_info->qgroup_lock);
2865 mutex_unlock(&fs_info->qgroup_rescan_lock);
Qu Wenruo9593bf492018-05-02 13:28:03 +08002866 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00002867 }
Jan Schmidtb382a322013-05-28 15:47:24 +00002868 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2869 }
2870
2871 memset(&fs_info->qgroup_rescan_progress, 0,
2872 sizeof(fs_info->qgroup_rescan_progress));
2873 fs_info->qgroup_rescan_progress.objectid = progress_objectid;
Filipe Manana190631f2015-11-05 10:06:23 +00002874 init_completion(&fs_info->qgroup_rescan_completion);
Filipe Manana8d9edda2016-11-24 02:09:04 +00002875 fs_info->qgroup_rescan_running = true;
Jan Schmidtb382a322013-05-28 15:47:24 +00002876
2877 spin_unlock(&fs_info->qgroup_lock);
2878 mutex_unlock(&fs_info->qgroup_rescan_lock);
2879
Jan Schmidtb382a322013-05-28 15:47:24 +00002880 memset(&fs_info->qgroup_rescan_work, 0,
2881 sizeof(fs_info->qgroup_rescan_work));
Qu Wenruofc97fab2014-02-28 10:46:16 +08002882 btrfs_init_work(&fs_info->qgroup_rescan_work,
Liu Bo9e0af232014-08-15 23:36:53 +08002883 btrfs_qgroup_rescan_helper,
Qu Wenruofc97fab2014-02-28 10:46:16 +08002884 btrfs_qgroup_rescan_worker, NULL, NULL);
Jan Schmidtb382a322013-05-28 15:47:24 +00002885 return 0;
2886}
Jan Schmidt2f232032013-04-25 16:04:51 +00002887
Jan Schmidtb382a322013-05-28 15:47:24 +00002888static void
2889qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info)
2890{
2891 struct rb_node *n;
2892 struct btrfs_qgroup *qgroup;
2893
2894 spin_lock(&fs_info->qgroup_lock);
Jan Schmidt2f232032013-04-25 16:04:51 +00002895 /* clear all current qgroup tracking information */
2896 for (n = rb_first(&fs_info->qgroup_tree); n; n = rb_next(n)) {
2897 qgroup = rb_entry(n, struct btrfs_qgroup, node);
2898 qgroup->rfer = 0;
2899 qgroup->rfer_cmpr = 0;
2900 qgroup->excl = 0;
2901 qgroup->excl_cmpr = 0;
2902 }
2903 spin_unlock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00002904}
Jan Schmidt2f232032013-04-25 16:04:51 +00002905
Jan Schmidtb382a322013-05-28 15:47:24 +00002906int
2907btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info)
2908{
2909 int ret = 0;
2910 struct btrfs_trans_handle *trans;
2911
2912 ret = qgroup_rescan_init(fs_info, 0, 1);
2913 if (ret)
2914 return ret;
2915
2916 /*
2917 * We have set the rescan_progress to 0, which means no more
2918 * delayed refs will be accounted by btrfs_qgroup_account_ref.
2919 * However, btrfs_qgroup_account_ref may be right after its call
2920 * to btrfs_find_all_roots, in which case it would still do the
2921 * accounting.
2922 * To solve this, we're committing the transaction, which will
2923 * ensure we run all delayed refs and only after that, we are
2924 * going to clear all tracking information for a clean start.
2925 */
2926
2927 trans = btrfs_join_transaction(fs_info->fs_root);
2928 if (IS_ERR(trans)) {
2929 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2930 return PTR_ERR(trans);
2931 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002932 ret = btrfs_commit_transaction(trans);
Jan Schmidtb382a322013-05-28 15:47:24 +00002933 if (ret) {
2934 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2935 return ret;
2936 }
2937
2938 qgroup_rescan_zero_tracking(fs_info);
2939
Qu Wenruofc97fab2014-02-28 10:46:16 +08002940 btrfs_queue_work(fs_info->qgroup_rescan_workers,
2941 &fs_info->qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00002942
2943 return 0;
2944}
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002945
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002946int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
2947 bool interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002948{
2949 int running;
2950 int ret = 0;
2951
2952 mutex_lock(&fs_info->qgroup_rescan_lock);
2953 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04002954 running = fs_info->qgroup_rescan_running;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002955 spin_unlock(&fs_info->qgroup_lock);
2956 mutex_unlock(&fs_info->qgroup_rescan_lock);
2957
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002958 if (!running)
2959 return 0;
2960
2961 if (interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002962 ret = wait_for_completion_interruptible(
2963 &fs_info->qgroup_rescan_completion);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002964 else
2965 wait_for_completion(&fs_info->qgroup_rescan_completion);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002966
2967 return ret;
2968}
Jan Schmidtb382a322013-05-28 15:47:24 +00002969
2970/*
2971 * this is only called from open_ctree where we're still single threaded, thus
2972 * locking is omitted here.
2973 */
2974void
2975btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info)
2976{
2977 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN)
Qu Wenruofc97fab2014-02-28 10:46:16 +08002978 btrfs_queue_work(fs_info->qgroup_rescan_workers,
2979 &fs_info->qgroup_rescan_work);
Jan Schmidtb382a322013-05-28 15:47:24 +00002980}
Qu Wenruo52472552015-10-12 16:05:40 +08002981
2982/*
2983 * Reserve qgroup space for range [start, start + len).
2984 *
2985 * This function will either reserve space from related qgroups or doing
2986 * nothing if the range is already reserved.
2987 *
2988 * Return 0 for successful reserve
2989 * Return <0 for error (including -EQUOT)
2990 *
2991 * NOTE: this function may sleep for memory allocation.
Qu Wenruo364ecf32017-02-27 15:10:38 +08002992 * if btrfs_qgroup_reserve_data() is called multiple times with
2993 * same @reserved, caller must ensure when error happens it's OK
2994 * to free *ALL* reserved space.
Qu Wenruo52472552015-10-12 16:05:40 +08002995 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08002996int btrfs_qgroup_reserve_data(struct inode *inode,
2997 struct extent_changeset **reserved_ret, u64 start,
2998 u64 len)
Qu Wenruo52472552015-10-12 16:05:40 +08002999{
3000 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo52472552015-10-12 16:05:40 +08003001 struct ulist_node *unode;
3002 struct ulist_iterator uiter;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003003 struct extent_changeset *reserved;
3004 u64 orig_reserved;
3005 u64 to_reserve;
Qu Wenruo52472552015-10-12 16:05:40 +08003006 int ret;
3007
Josef Bacikafcdd122016-09-02 15:40:02 -04003008 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags) ||
3009 !is_fstree(root->objectid) || len == 0)
Qu Wenruo52472552015-10-12 16:05:40 +08003010 return 0;
3011
Qu Wenruo364ecf32017-02-27 15:10:38 +08003012 /* @reserved parameter is mandatory for qgroup */
3013 if (WARN_ON(!reserved_ret))
3014 return -EINVAL;
3015 if (!*reserved_ret) {
3016 *reserved_ret = extent_changeset_alloc();
3017 if (!*reserved_ret)
3018 return -ENOMEM;
3019 }
3020 reserved = *reserved_ret;
3021 /* Record already reserved space */
3022 orig_reserved = reserved->bytes_changed;
Qu Wenruo52472552015-10-12 16:05:40 +08003023 ret = set_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003024 start + len -1, EXTENT_QGROUP_RESERVED, reserved);
3025
3026 /* Newly reserved space */
3027 to_reserve = reserved->bytes_changed - orig_reserved;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003028 trace_btrfs_qgroup_reserve_data(inode, start, len,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003029 to_reserve, QGROUP_RESERVE);
Qu Wenruo52472552015-10-12 16:05:40 +08003030 if (ret < 0)
3031 goto cleanup;
Qu Wenruodba21322017-12-12 15:34:25 +08003032 ret = qgroup_reserve(root, to_reserve, true, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo52472552015-10-12 16:05:40 +08003033 if (ret < 0)
3034 goto cleanup;
3035
Qu Wenruo52472552015-10-12 16:05:40 +08003036 return ret;
3037
3038cleanup:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003039 /* cleanup *ALL* already reserved ranges */
Qu Wenruo52472552015-10-12 16:05:40 +08003040 ULIST_ITER_INIT(&uiter);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003041 while ((unode = ulist_next(&reserved->range_changed, &uiter)))
Qu Wenruo52472552015-10-12 16:05:40 +08003042 clear_extent_bit(&BTRFS_I(inode)->io_tree, unode->val,
David Sterbaae0f1622017-10-31 16:37:52 +01003043 unode->aux, EXTENT_QGROUP_RESERVED, 0, 0, NULL);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003044 extent_changeset_release(reserved);
Qu Wenruo52472552015-10-12 16:05:40 +08003045 return ret;
3046}
Qu Wenruof695fdc2015-10-12 16:28:06 +08003047
Qu Wenruobc42bda2017-02-27 15:10:39 +08003048/* Free ranges specified by @reserved, normally in error path */
3049static int qgroup_free_reserved_data(struct inode *inode,
3050 struct extent_changeset *reserved, u64 start, u64 len)
3051{
3052 struct btrfs_root *root = BTRFS_I(inode)->root;
3053 struct ulist_node *unode;
3054 struct ulist_iterator uiter;
3055 struct extent_changeset changeset;
3056 int freed = 0;
3057 int ret;
3058
3059 extent_changeset_init(&changeset);
3060 len = round_up(start + len, root->fs_info->sectorsize);
3061 start = round_down(start, root->fs_info->sectorsize);
3062
3063 ULIST_ITER_INIT(&uiter);
3064 while ((unode = ulist_next(&reserved->range_changed, &uiter))) {
3065 u64 range_start = unode->val;
3066 /* unode->aux is the inclusive end */
3067 u64 range_len = unode->aux - range_start + 1;
3068 u64 free_start;
3069 u64 free_len;
3070
3071 extent_changeset_release(&changeset);
3072
3073 /* Only free range in range [start, start + len) */
3074 if (range_start >= start + len ||
3075 range_start + range_len <= start)
3076 continue;
3077 free_start = max(range_start, start);
3078 free_len = min(start + len, range_start + range_len) -
3079 free_start;
3080 /*
3081 * TODO: To also modify reserved->ranges_reserved to reflect
3082 * the modification.
3083 *
3084 * However as long as we free qgroup reserved according to
3085 * EXTENT_QGROUP_RESERVED, we won't double free.
3086 * So not need to rush.
3087 */
3088 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_failure_tree,
3089 free_start, free_start + free_len - 1,
3090 EXTENT_QGROUP_RESERVED, &changeset);
3091 if (ret < 0)
3092 goto out;
3093 freed += changeset.bytes_changed;
3094 }
Qu Wenruod4e5c922017-12-12 15:34:23 +08003095 btrfs_qgroup_free_refroot(root->fs_info, root->objectid, freed,
3096 BTRFS_QGROUP_RSV_DATA);
Qu Wenruobc42bda2017-02-27 15:10:39 +08003097 ret = freed;
3098out:
3099 extent_changeset_release(&changeset);
3100 return ret;
3101}
3102
3103static int __btrfs_qgroup_release_data(struct inode *inode,
3104 struct extent_changeset *reserved, u64 start, u64 len,
3105 int free)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003106{
3107 struct extent_changeset changeset;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003108 int trace_op = QGROUP_RELEASE;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003109 int ret;
3110
Qu Wenruobc42bda2017-02-27 15:10:39 +08003111 /* In release case, we shouldn't have @reserved */
3112 WARN_ON(!free && reserved);
3113 if (free && reserved)
3114 return qgroup_free_reserved_data(inode, reserved, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003115 extent_changeset_init(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003116 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
David Sterbaf734c442016-04-26 23:54:39 +02003117 start + len -1, EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003118 if (ret < 0)
3119 goto out;
3120
Qu Wenruod51ea5d2017-03-13 15:52:09 +08003121 if (free)
3122 trace_op = QGROUP_FREE;
3123 trace_btrfs_qgroup_release_data(inode, start, len,
3124 changeset.bytes_changed, trace_op);
3125 if (free)
David Sterba0b08e1f2017-02-13 14:24:35 +01003126 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3127 BTRFS_I(inode)->root->objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003128 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08003129 ret = changeset.bytes_changed;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003130out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003131 extent_changeset_release(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003132 return ret;
3133}
3134
3135/*
3136 * Free a reserved space range from io_tree and related qgroups
3137 *
3138 * Should be called when a range of pages get invalidated before reaching disk.
3139 * Or for error cleanup case.
Qu Wenruobc42bda2017-02-27 15:10:39 +08003140 * if @reserved is given, only reserved range in [@start, @start + @len) will
3141 * be freed.
Qu Wenruof695fdc2015-10-12 16:28:06 +08003142 *
3143 * For data written to disk, use btrfs_qgroup_release_data().
3144 *
3145 * NOTE: This function may sleep for memory allocation.
3146 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003147int btrfs_qgroup_free_data(struct inode *inode,
3148 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003149{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003150 return __btrfs_qgroup_release_data(inode, reserved, start, len, 1);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003151}
3152
3153/*
3154 * Release a reserved space range from io_tree only.
3155 *
3156 * Should be called when a range of pages get written to disk and corresponding
3157 * FILE_EXTENT is inserted into corresponding root.
3158 *
3159 * Since new qgroup accounting framework will only update qgroup numbers at
3160 * commit_transaction() time, its reserved space shouldn't be freed from
3161 * related qgroups.
3162 *
3163 * But we should release the range from io_tree, to allow further write to be
3164 * COWed.
3165 *
3166 * NOTE: This function may sleep for memory allocation.
3167 */
3168int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len)
3169{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003170 return __btrfs_qgroup_release_data(inode, NULL, start, len, 0);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003171}
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003172
Qu Wenruo82874752017-12-12 15:34:34 +08003173static void add_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3174 enum btrfs_qgroup_rsv_type type)
3175{
3176 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3177 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3178 return;
3179 if (num_bytes == 0)
3180 return;
3181
3182 spin_lock(&root->qgroup_meta_rsv_lock);
3183 if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
3184 root->qgroup_meta_rsv_prealloc += num_bytes;
3185 else
3186 root->qgroup_meta_rsv_pertrans += num_bytes;
3187 spin_unlock(&root->qgroup_meta_rsv_lock);
3188}
3189
3190static int sub_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3191 enum btrfs_qgroup_rsv_type type)
3192{
3193 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3194 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3195 return 0;
3196 if (num_bytes == 0)
3197 return 0;
3198
3199 spin_lock(&root->qgroup_meta_rsv_lock);
3200 if (type == BTRFS_QGROUP_RSV_META_PREALLOC) {
3201 num_bytes = min_t(u64, root->qgroup_meta_rsv_prealloc,
3202 num_bytes);
3203 root->qgroup_meta_rsv_prealloc -= num_bytes;
3204 } else {
3205 num_bytes = min_t(u64, root->qgroup_meta_rsv_pertrans,
3206 num_bytes);
3207 root->qgroup_meta_rsv_pertrans -= num_bytes;
3208 }
3209 spin_unlock(&root->qgroup_meta_rsv_lock);
3210 return num_bytes;
3211}
3212
Qu Wenruo733e03a2017-12-12 15:34:29 +08003213int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
3214 enum btrfs_qgroup_rsv_type type, bool enforce)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003215{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003216 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003217 int ret;
3218
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003219 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003220 !is_fstree(root->objectid) || num_bytes == 0)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003221 return 0;
3222
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003223 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003224 trace_qgroup_meta_reserve(root, type, (s64)num_bytes);
Qu Wenruo733e03a2017-12-12 15:34:29 +08003225 ret = qgroup_reserve(root, num_bytes, enforce, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003226 if (ret < 0)
3227 return ret;
Qu Wenruo82874752017-12-12 15:34:34 +08003228 /*
3229 * Record what we have reserved into root.
3230 *
3231 * To avoid quota disabled->enabled underflow.
3232 * In that case, we may try to free space we haven't reserved
3233 * (since quota was disabled), so record what we reserved into root.
3234 * And ensure later release won't underflow this number.
3235 */
3236 add_root_meta_rsv(root, num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003237 return ret;
3238}
3239
Qu Wenruo733e03a2017-12-12 15:34:29 +08003240void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003241{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003242 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003243
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003244 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003245 !is_fstree(root->objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003246 return;
3247
Qu Wenruoe1211d02017-12-12 15:34:30 +08003248 /* TODO: Update trace point to handle such free */
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003249 trace_qgroup_meta_free_all_pertrans(root);
Qu Wenruoe1211d02017-12-12 15:34:30 +08003250 /* Special value -1 means to free all reserved space */
3251 btrfs_qgroup_free_refroot(fs_info, root->objectid, (u64)-1,
Qu Wenruo733e03a2017-12-12 15:34:29 +08003252 BTRFS_QGROUP_RSV_META_PERTRANS);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003253}
3254
Qu Wenruo733e03a2017-12-12 15:34:29 +08003255void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
3256 enum btrfs_qgroup_rsv_type type)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003258 struct btrfs_fs_info *fs_info = root->fs_info;
3259
3260 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003261 !is_fstree(root->objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003262 return;
3263
Qu Wenruo82874752017-12-12 15:34:34 +08003264 /*
3265 * reservation for META_PREALLOC can happen before quota is enabled,
3266 * which can lead to underflow.
3267 * Here ensure we will only free what we really have reserved.
3268 */
3269 num_bytes = sub_root_meta_rsv(root, num_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003270 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003271 trace_qgroup_meta_reserve(root, type, -(s64)num_bytes);
Qu Wenruo733e03a2017-12-12 15:34:29 +08003272 btrfs_qgroup_free_refroot(fs_info, root->objectid, num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003273}
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003274
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003275static void qgroup_convert_meta(struct btrfs_fs_info *fs_info, u64 ref_root,
3276 int num_bytes)
3277{
3278 struct btrfs_root *quota_root = fs_info->quota_root;
3279 struct btrfs_qgroup *qgroup;
3280 struct ulist_node *unode;
3281 struct ulist_iterator uiter;
3282 int ret = 0;
3283
3284 if (num_bytes == 0)
3285 return;
3286 if (!quota_root)
3287 return;
3288
3289 spin_lock(&fs_info->qgroup_lock);
3290 qgroup = find_qgroup_rb(fs_info, ref_root);
3291 if (!qgroup)
3292 goto out;
3293 ulist_reinit(fs_info->qgroup_ulist);
3294 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003295 qgroup_to_aux(qgroup), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003296 if (ret < 0)
3297 goto out;
3298 ULIST_ITER_INIT(&uiter);
3299 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
3300 struct btrfs_qgroup *qg;
3301 struct btrfs_qgroup_list *glist;
3302
3303 qg = unode_aux_to_qgroup(unode);
3304
3305 qgroup_rsv_release(fs_info, qg, num_bytes,
3306 BTRFS_QGROUP_RSV_META_PREALLOC);
3307 qgroup_rsv_add(fs_info, qg, num_bytes,
3308 BTRFS_QGROUP_RSV_META_PERTRANS);
3309 list_for_each_entry(glist, &qg->groups, next_group) {
3310 ret = ulist_add(fs_info->qgroup_ulist,
3311 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003312 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003313 if (ret < 0)
3314 goto out;
3315 }
3316 }
3317out:
3318 spin_unlock(&fs_info->qgroup_lock);
3319}
3320
3321void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes)
3322{
3323 struct btrfs_fs_info *fs_info = root->fs_info;
3324
3325 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3326 !is_fstree(root->objectid))
3327 return;
Qu Wenruo82874752017-12-12 15:34:34 +08003328 /* Same as btrfs_qgroup_free_meta_prealloc() */
3329 num_bytes = sub_root_meta_rsv(root, num_bytes,
3330 BTRFS_QGROUP_RSV_META_PREALLOC);
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003331 trace_qgroup_meta_convert(root, num_bytes);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003332 qgroup_convert_meta(fs_info, root->objectid, num_bytes);
3333}
3334
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003335/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04003336 * Check qgroup reserved space leaking, normally at destroy inode
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003337 * time
3338 */
3339void btrfs_qgroup_check_reserved_leak(struct inode *inode)
3340{
3341 struct extent_changeset changeset;
3342 struct ulist_node *unode;
3343 struct ulist_iterator iter;
3344 int ret;
3345
Qu Wenruo364ecf32017-02-27 15:10:38 +08003346 extent_changeset_init(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003347 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
David Sterbaf734c442016-04-26 23:54:39 +02003348 EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003349
3350 WARN_ON(ret < 0);
3351 if (WARN_ON(changeset.bytes_changed)) {
3352 ULIST_ITER_INIT(&iter);
David Sterba53d32352017-02-13 13:42:29 +01003353 while ((unode = ulist_next(&changeset.range_changed, &iter))) {
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003354 btrfs_warn(BTRFS_I(inode)->root->fs_info,
3355 "leaking qgroup reserved space, ino: %lu, start: %llu, end: %llu",
3356 inode->i_ino, unode->val, unode->aux);
3357 }
David Sterba0b08e1f2017-02-13 14:24:35 +01003358 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3359 BTRFS_I(inode)->root->objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003360 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
David Sterba0b08e1f2017-02-13 14:24:35 +01003361
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003362 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003363 extent_changeset_release(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003364}