blob: 8b71aec85d843b5979154b7e14c3e454073a4caf [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Arne Jansenbed92ea2012-06-28 18:03:02 +02002/*
3 * Copyright (C) 2011 STRATO. All rights reserved.
Arne Jansenbed92ea2012-06-28 18:03:02 +02004 */
5
6#include <linux/sched.h>
7#include <linux/pagemap.h>
8#include <linux/writeback.h>
9#include <linux/blkdev.h>
10#include <linux/rbtree.h>
11#include <linux/slab.h>
12#include <linux/workqueue.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000013#include <linux/btrfs.h>
Qu Wenruoa514d632017-12-22 16:06:39 +080014#include <linux/sizes.h>
Arne Jansenbed92ea2012-06-28 18:03:02 +020015
16#include "ctree.h"
17#include "transaction.h"
18#include "disk-io.h"
19#include "locking.h"
20#include "ulist.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020021#include "backref.h"
Jan Schmidt2f232032013-04-25 16:04:51 +000022#include "extent_io.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070023#include "qgroup.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020024
Qu Wenruoe69bcee2015-04-17 10:23:16 +080025
Arne Jansenbed92ea2012-06-28 18:03:02 +020026/* TODO XXX FIXME
27 * - subvol delete -> delete when ref goes to 0? delete limits also?
28 * - reorganize keys
29 * - compressed
30 * - sync
Arne Jansenbed92ea2012-06-28 18:03:02 +020031 * - copy also limits on subvol creation
32 * - limit
33 * - caches fuer ulists
34 * - performance benchmarks
35 * - check all ioctl parameters
36 */
37
Qu Wenruof59c0342017-12-12 15:34:24 +080038/*
39 * Helpers to access qgroup reservation
40 *
41 * Callers should ensure the lock context and type are valid
42 */
43
44static u64 qgroup_rsv_total(const struct btrfs_qgroup *qgroup)
45{
46 u64 ret = 0;
47 int i;
48
49 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
50 ret += qgroup->rsv.values[i];
51
52 return ret;
53}
54
55#ifdef CONFIG_BTRFS_DEBUG
56static const char *qgroup_rsv_type_str(enum btrfs_qgroup_rsv_type type)
57{
58 if (type == BTRFS_QGROUP_RSV_DATA)
59 return "data";
Qu Wenruo733e03a2017-12-12 15:34:29 +080060 if (type == BTRFS_QGROUP_RSV_META_PERTRANS)
61 return "meta_pertrans";
62 if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
63 return "meta_prealloc";
Qu Wenruof59c0342017-12-12 15:34:24 +080064 return NULL;
65}
66#endif
67
Qu Wenruo64ee4e72017-12-12 15:34:27 +080068static void qgroup_rsv_add(struct btrfs_fs_info *fs_info,
69 struct btrfs_qgroup *qgroup, u64 num_bytes,
Qu Wenruof59c0342017-12-12 15:34:24 +080070 enum btrfs_qgroup_rsv_type type)
71{
Qu Wenruo64ee4e72017-12-12 15:34:27 +080072 trace_qgroup_update_reserve(fs_info, qgroup, num_bytes, type);
Qu Wenruof59c0342017-12-12 15:34:24 +080073 qgroup->rsv.values[type] += num_bytes;
74}
75
Qu Wenruo64ee4e72017-12-12 15:34:27 +080076static void qgroup_rsv_release(struct btrfs_fs_info *fs_info,
77 struct btrfs_qgroup *qgroup, u64 num_bytes,
Qu Wenruof59c0342017-12-12 15:34:24 +080078 enum btrfs_qgroup_rsv_type type)
79{
Qu Wenruo64ee4e72017-12-12 15:34:27 +080080 trace_qgroup_update_reserve(fs_info, qgroup, -(s64)num_bytes, type);
Qu Wenruof59c0342017-12-12 15:34:24 +080081 if (qgroup->rsv.values[type] >= num_bytes) {
82 qgroup->rsv.values[type] -= num_bytes;
83 return;
84 }
85#ifdef CONFIG_BTRFS_DEBUG
86 WARN_RATELIMIT(1,
87 "qgroup %llu %s reserved space underflow, have %llu to free %llu",
88 qgroup->qgroupid, qgroup_rsv_type_str(type),
89 qgroup->rsv.values[type], num_bytes);
90#endif
91 qgroup->rsv.values[type] = 0;
92}
93
Qu Wenruo64ee4e72017-12-12 15:34:27 +080094static void qgroup_rsv_add_by_qgroup(struct btrfs_fs_info *fs_info,
95 struct btrfs_qgroup *dest,
96 struct btrfs_qgroup *src)
Qu Wenruof59c0342017-12-12 15:34:24 +080097{
98 int i;
99
100 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800101 qgroup_rsv_add(fs_info, dest, src->rsv.values[i], i);
Qu Wenruof59c0342017-12-12 15:34:24 +0800102}
103
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800104static void qgroup_rsv_release_by_qgroup(struct btrfs_fs_info *fs_info,
105 struct btrfs_qgroup *dest,
Qu Wenruof59c0342017-12-12 15:34:24 +0800106 struct btrfs_qgroup *src)
107{
108 int i;
109
110 for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
Qu Wenruo64ee4e72017-12-12 15:34:27 +0800111 qgroup_rsv_release(fs_info, dest, src->rsv.values[i], i);
Qu Wenruof59c0342017-12-12 15:34:24 +0800112}
113
Qu Wenruo9c542132015-03-12 16:10:13 +0800114static void btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup *qg, u64 seq,
115 int mod)
116{
117 if (qg->old_refcnt < seq)
118 qg->old_refcnt = seq;
119 qg->old_refcnt += mod;
120}
121
122static void btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup *qg, u64 seq,
123 int mod)
124{
125 if (qg->new_refcnt < seq)
126 qg->new_refcnt = seq;
127 qg->new_refcnt += mod;
128}
129
130static inline u64 btrfs_qgroup_get_old_refcnt(struct btrfs_qgroup *qg, u64 seq)
131{
132 if (qg->old_refcnt < seq)
133 return 0;
134 return qg->old_refcnt - seq;
135}
136
137static inline u64 btrfs_qgroup_get_new_refcnt(struct btrfs_qgroup *qg, u64 seq)
138{
139 if (qg->new_refcnt < seq)
140 return 0;
141 return qg->new_refcnt - seq;
142}
143
Arne Jansenbed92ea2012-06-28 18:03:02 +0200144/*
145 * glue structure to represent the relations between qgroups.
146 */
147struct btrfs_qgroup_list {
148 struct list_head next_group;
149 struct list_head next_member;
150 struct btrfs_qgroup *group;
151 struct btrfs_qgroup *member;
152};
153
David Sterbaef2fff62016-10-26 16:23:50 +0200154static inline u64 qgroup_to_aux(struct btrfs_qgroup *qg)
155{
156 return (u64)(uintptr_t)qg;
157}
158
159static inline struct btrfs_qgroup* unode_aux_to_qgroup(struct ulist_node *n)
160{
161 return (struct btrfs_qgroup *)(uintptr_t)n->aux;
162}
Josef Bacikfcebe452014-05-13 17:30:47 -0700163
Jan Schmidtb382a322013-05-28 15:47:24 +0000164static int
165qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
166 int init_flags);
167static void qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +0000168
Wang Shilong58400fc2013-04-07 10:50:17 +0000169/* must be called with qgroup_ioctl_lock held */
Arne Jansenbed92ea2012-06-28 18:03:02 +0200170static struct btrfs_qgroup *find_qgroup_rb(struct btrfs_fs_info *fs_info,
171 u64 qgroupid)
172{
173 struct rb_node *n = fs_info->qgroup_tree.rb_node;
174 struct btrfs_qgroup *qgroup;
175
176 while (n) {
177 qgroup = rb_entry(n, struct btrfs_qgroup, node);
178 if (qgroup->qgroupid < qgroupid)
179 n = n->rb_left;
180 else if (qgroup->qgroupid > qgroupid)
181 n = n->rb_right;
182 else
183 return qgroup;
184 }
185 return NULL;
186}
187
188/* must be called with qgroup_lock held */
189static struct btrfs_qgroup *add_qgroup_rb(struct btrfs_fs_info *fs_info,
190 u64 qgroupid)
191{
192 struct rb_node **p = &fs_info->qgroup_tree.rb_node;
193 struct rb_node *parent = NULL;
194 struct btrfs_qgroup *qgroup;
195
196 while (*p) {
197 parent = *p;
198 qgroup = rb_entry(parent, struct btrfs_qgroup, node);
199
200 if (qgroup->qgroupid < qgroupid)
201 p = &(*p)->rb_left;
202 else if (qgroup->qgroupid > qgroupid)
203 p = &(*p)->rb_right;
204 else
205 return qgroup;
206 }
207
208 qgroup = kzalloc(sizeof(*qgroup), GFP_ATOMIC);
209 if (!qgroup)
210 return ERR_PTR(-ENOMEM);
211
212 qgroup->qgroupid = qgroupid;
213 INIT_LIST_HEAD(&qgroup->groups);
214 INIT_LIST_HEAD(&qgroup->members);
215 INIT_LIST_HEAD(&qgroup->dirty);
216
217 rb_link_node(&qgroup->node, parent, p);
218 rb_insert_color(&qgroup->node, &fs_info->qgroup_tree);
219
220 return qgroup;
221}
222
Wang Shilong4082bd32013-08-14 09:13:36 +0800223static void __del_qgroup_rb(struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200224{
Arne Jansenbed92ea2012-06-28 18:03:02 +0200225 struct btrfs_qgroup_list *list;
226
Arne Jansenbed92ea2012-06-28 18:03:02 +0200227 list_del(&qgroup->dirty);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200228 while (!list_empty(&qgroup->groups)) {
229 list = list_first_entry(&qgroup->groups,
230 struct btrfs_qgroup_list, next_group);
231 list_del(&list->next_group);
232 list_del(&list->next_member);
233 kfree(list);
234 }
235
236 while (!list_empty(&qgroup->members)) {
237 list = list_first_entry(&qgroup->members,
238 struct btrfs_qgroup_list, next_member);
239 list_del(&list->next_group);
240 list_del(&list->next_member);
241 kfree(list);
242 }
243 kfree(qgroup);
Wang Shilong4082bd32013-08-14 09:13:36 +0800244}
Arne Jansenbed92ea2012-06-28 18:03:02 +0200245
Wang Shilong4082bd32013-08-14 09:13:36 +0800246/* must be called with qgroup_lock held */
247static int del_qgroup_rb(struct btrfs_fs_info *fs_info, u64 qgroupid)
248{
249 struct btrfs_qgroup *qgroup = find_qgroup_rb(fs_info, qgroupid);
250
251 if (!qgroup)
252 return -ENOENT;
253
254 rb_erase(&qgroup->node, &fs_info->qgroup_tree);
255 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200256 return 0;
257}
258
259/* must be called with qgroup_lock held */
260static int add_relation_rb(struct btrfs_fs_info *fs_info,
261 u64 memberid, u64 parentid)
262{
263 struct btrfs_qgroup *member;
264 struct btrfs_qgroup *parent;
265 struct btrfs_qgroup_list *list;
266
267 member = find_qgroup_rb(fs_info, memberid);
268 parent = find_qgroup_rb(fs_info, parentid);
269 if (!member || !parent)
270 return -ENOENT;
271
272 list = kzalloc(sizeof(*list), GFP_ATOMIC);
273 if (!list)
274 return -ENOMEM;
275
276 list->group = parent;
277 list->member = member;
278 list_add_tail(&list->next_group, &member->groups);
279 list_add_tail(&list->next_member, &parent->members);
280
281 return 0;
282}
283
284/* must be called with qgroup_lock held */
285static int del_relation_rb(struct btrfs_fs_info *fs_info,
286 u64 memberid, u64 parentid)
287{
288 struct btrfs_qgroup *member;
289 struct btrfs_qgroup *parent;
290 struct btrfs_qgroup_list *list;
291
292 member = find_qgroup_rb(fs_info, memberid);
293 parent = find_qgroup_rb(fs_info, parentid);
294 if (!member || !parent)
295 return -ENOENT;
296
297 list_for_each_entry(list, &member->groups, next_group) {
298 if (list->group == parent) {
299 list_del(&list->next_group);
300 list_del(&list->next_member);
301 kfree(list);
302 return 0;
303 }
304 }
305 return -ENOENT;
306}
307
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400308#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
309int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
310 u64 rfer, u64 excl)
311{
312 struct btrfs_qgroup *qgroup;
313
314 qgroup = find_qgroup_rb(fs_info, qgroupid);
315 if (!qgroup)
316 return -EINVAL;
317 if (qgroup->rfer != rfer || qgroup->excl != excl)
318 return -EINVAL;
319 return 0;
320}
321#endif
322
Arne Jansenbed92ea2012-06-28 18:03:02 +0200323/*
324 * The full config is read in one go, only called from open_ctree()
325 * It doesn't use any locking, as at this point we're still single-threaded
326 */
327int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info)
328{
329 struct btrfs_key key;
330 struct btrfs_key found_key;
331 struct btrfs_root *quota_root = fs_info->quota_root;
332 struct btrfs_path *path = NULL;
333 struct extent_buffer *l;
334 int slot;
335 int ret = 0;
336 u64 flags = 0;
Jan Schmidtb382a322013-05-28 15:47:24 +0000337 u64 rescan_progress = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200338
Josef Bacikafcdd122016-09-02 15:40:02 -0400339 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Arne Jansenbed92ea2012-06-28 18:03:02 +0200340 return 0;
341
David Sterba323b88f2017-02-13 12:10:20 +0100342 fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000343 if (!fs_info->qgroup_ulist) {
344 ret = -ENOMEM;
345 goto out;
346 }
347
Arne Jansenbed92ea2012-06-28 18:03:02 +0200348 path = btrfs_alloc_path();
349 if (!path) {
350 ret = -ENOMEM;
351 goto out;
352 }
353
354 /* default this to quota off, in case no status key is found */
355 fs_info->qgroup_flags = 0;
356
357 /*
358 * pass 1: read status, all qgroup infos and limits
359 */
360 key.objectid = 0;
361 key.type = 0;
362 key.offset = 0;
363 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 1);
364 if (ret)
365 goto out;
366
367 while (1) {
368 struct btrfs_qgroup *qgroup;
369
370 slot = path->slots[0];
371 l = path->nodes[0];
372 btrfs_item_key_to_cpu(l, &found_key, slot);
373
374 if (found_key.type == BTRFS_QGROUP_STATUS_KEY) {
375 struct btrfs_qgroup_status_item *ptr;
376
377 ptr = btrfs_item_ptr(l, slot,
378 struct btrfs_qgroup_status_item);
379
380 if (btrfs_qgroup_status_version(l, ptr) !=
381 BTRFS_QGROUP_STATUS_VERSION) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500382 btrfs_err(fs_info,
383 "old qgroup version, quota disabled");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200384 goto out;
385 }
386 if (btrfs_qgroup_status_generation(l, ptr) !=
387 fs_info->generation) {
388 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Frank Holtonefe120a2013-12-20 11:37:06 -0500389 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400390 "qgroup generation mismatch, marked as inconsistent");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200391 }
392 fs_info->qgroup_flags = btrfs_qgroup_status_flags(l,
393 ptr);
Jan Schmidtb382a322013-05-28 15:47:24 +0000394 rescan_progress = btrfs_qgroup_status_rescan(l, ptr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200395 goto next1;
396 }
397
398 if (found_key.type != BTRFS_QGROUP_INFO_KEY &&
399 found_key.type != BTRFS_QGROUP_LIMIT_KEY)
400 goto next1;
401
402 qgroup = find_qgroup_rb(fs_info, found_key.offset);
403 if ((qgroup && found_key.type == BTRFS_QGROUP_INFO_KEY) ||
404 (!qgroup && found_key.type == BTRFS_QGROUP_LIMIT_KEY)) {
Geert Uytterhoevend41e36a2015-07-06 15:38:11 +0200405 btrfs_err(fs_info, "inconsistent qgroup config");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200406 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
407 }
408 if (!qgroup) {
409 qgroup = add_qgroup_rb(fs_info, found_key.offset);
410 if (IS_ERR(qgroup)) {
411 ret = PTR_ERR(qgroup);
412 goto out;
413 }
414 }
415 switch (found_key.type) {
416 case BTRFS_QGROUP_INFO_KEY: {
417 struct btrfs_qgroup_info_item *ptr;
418
419 ptr = btrfs_item_ptr(l, slot,
420 struct btrfs_qgroup_info_item);
421 qgroup->rfer = btrfs_qgroup_info_rfer(l, ptr);
422 qgroup->rfer_cmpr = btrfs_qgroup_info_rfer_cmpr(l, ptr);
423 qgroup->excl = btrfs_qgroup_info_excl(l, ptr);
424 qgroup->excl_cmpr = btrfs_qgroup_info_excl_cmpr(l, ptr);
425 /* generation currently unused */
426 break;
427 }
428 case BTRFS_QGROUP_LIMIT_KEY: {
429 struct btrfs_qgroup_limit_item *ptr;
430
431 ptr = btrfs_item_ptr(l, slot,
432 struct btrfs_qgroup_limit_item);
433 qgroup->lim_flags = btrfs_qgroup_limit_flags(l, ptr);
434 qgroup->max_rfer = btrfs_qgroup_limit_max_rfer(l, ptr);
435 qgroup->max_excl = btrfs_qgroup_limit_max_excl(l, ptr);
436 qgroup->rsv_rfer = btrfs_qgroup_limit_rsv_rfer(l, ptr);
437 qgroup->rsv_excl = btrfs_qgroup_limit_rsv_excl(l, ptr);
438 break;
439 }
440 }
441next1:
442 ret = btrfs_next_item(quota_root, path);
443 if (ret < 0)
444 goto out;
445 if (ret)
446 break;
447 }
448 btrfs_release_path(path);
449
450 /*
451 * pass 2: read all qgroup relations
452 */
453 key.objectid = 0;
454 key.type = BTRFS_QGROUP_RELATION_KEY;
455 key.offset = 0;
456 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 0);
457 if (ret)
458 goto out;
459 while (1) {
460 slot = path->slots[0];
461 l = path->nodes[0];
462 btrfs_item_key_to_cpu(l, &found_key, slot);
463
464 if (found_key.type != BTRFS_QGROUP_RELATION_KEY)
465 goto next2;
466
467 if (found_key.objectid > found_key.offset) {
468 /* parent <- member, not needed to build config */
469 /* FIXME should we omit the key completely? */
470 goto next2;
471 }
472
473 ret = add_relation_rb(fs_info, found_key.objectid,
474 found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700475 if (ret == -ENOENT) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500476 btrfs_warn(fs_info,
477 "orphan qgroup relation 0x%llx->0x%llx",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200478 found_key.objectid, found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700479 ret = 0; /* ignore the error */
480 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200481 if (ret)
482 goto out;
483next2:
484 ret = btrfs_next_item(quota_root, path);
485 if (ret < 0)
486 goto out;
487 if (ret)
488 break;
489 }
490out:
491 fs_info->qgroup_flags |= flags;
Josef Bacikafcdd122016-09-02 15:40:02 -0400492 if (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON))
493 clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
494 else if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN &&
495 ret >= 0)
Jan Schmidtb382a322013-05-28 15:47:24 +0000496 ret = qgroup_rescan_init(fs_info, rescan_progress, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200497 btrfs_free_path(path);
498
Jan Schmidteb1716a2013-05-28 15:47:23 +0000499 if (ret < 0) {
Wang Shilong1e8f9152013-05-06 11:03:27 +0000500 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +0000501 fs_info->qgroup_ulist = NULL;
Jan Schmidtb382a322013-05-28 15:47:24 +0000502 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidteb1716a2013-05-28 15:47:23 +0000503 }
Wang Shilong1e8f9152013-05-06 11:03:27 +0000504
Arne Jansenbed92ea2012-06-28 18:03:02 +0200505 return ret < 0 ? ret : 0;
506}
507
508/*
Wang Shilonge685da12013-08-14 09:13:37 +0800509 * This is called from close_ctree() or open_ctree() or btrfs_quota_disable(),
510 * first two are in single-threaded paths.And for the third one, we have set
511 * quota_root to be null with qgroup_lock held before, so it is safe to clean
512 * up the in-memory structures without qgroup_lock held.
Arne Jansenbed92ea2012-06-28 18:03:02 +0200513 */
514void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info)
515{
516 struct rb_node *n;
517 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200518
519 while ((n = rb_first(&fs_info->qgroup_tree))) {
520 qgroup = rb_entry(n, struct btrfs_qgroup, node);
521 rb_erase(n, &fs_info->qgroup_tree);
Wang Shilong4082bd32013-08-14 09:13:36 +0800522 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200523 }
Wang Shilong1e7bac12013-07-13 21:02:54 +0800524 /*
525 * we call btrfs_free_qgroup_config() when umounting
Nicholas D Steeves01327612016-05-19 21:18:45 -0400526 * filesystem and disabling quota, so we set qgroup_ulist
Wang Shilong1e7bac12013-07-13 21:02:54 +0800527 * to be null here to avoid double free.
528 */
Wang Shilong1e8f9152013-05-06 11:03:27 +0000529 ulist_free(fs_info->qgroup_ulist);
Wang Shilong1e7bac12013-07-13 21:02:54 +0800530 fs_info->qgroup_ulist = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200531}
532
Lu Fengqi711169c2018-07-18 14:45:24 +0800533static int add_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
534 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200535{
536 int ret;
Lu Fengqi711169c2018-07-18 14:45:24 +0800537 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200538 struct btrfs_path *path;
539 struct btrfs_key key;
540
541 path = btrfs_alloc_path();
542 if (!path)
543 return -ENOMEM;
544
545 key.objectid = src;
546 key.type = BTRFS_QGROUP_RELATION_KEY;
547 key.offset = dst;
548
549 ret = btrfs_insert_empty_item(trans, quota_root, path, &key, 0);
550
551 btrfs_mark_buffer_dirty(path->nodes[0]);
552
553 btrfs_free_path(path);
554 return ret;
555}
556
Lu Fengqi99d7f092018-07-18 14:45:25 +0800557static int del_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
558 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200559{
560 int ret;
Lu Fengqi99d7f092018-07-18 14:45:25 +0800561 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200562 struct btrfs_path *path;
563 struct btrfs_key key;
564
565 path = btrfs_alloc_path();
566 if (!path)
567 return -ENOMEM;
568
569 key.objectid = src;
570 key.type = BTRFS_QGROUP_RELATION_KEY;
571 key.offset = dst;
572
573 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
574 if (ret < 0)
575 goto out;
576
577 if (ret > 0) {
578 ret = -ENOENT;
579 goto out;
580 }
581
582 ret = btrfs_del_item(trans, quota_root, path);
583out:
584 btrfs_free_path(path);
585 return ret;
586}
587
588static int add_qgroup_item(struct btrfs_trans_handle *trans,
589 struct btrfs_root *quota_root, u64 qgroupid)
590{
591 int ret;
592 struct btrfs_path *path;
593 struct btrfs_qgroup_info_item *qgroup_info;
594 struct btrfs_qgroup_limit_item *qgroup_limit;
595 struct extent_buffer *leaf;
596 struct btrfs_key key;
597
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -0400598 if (btrfs_is_testing(quota_root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400599 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200600
Arne Jansenbed92ea2012-06-28 18:03:02 +0200601 path = btrfs_alloc_path();
602 if (!path)
603 return -ENOMEM;
604
605 key.objectid = 0;
606 key.type = BTRFS_QGROUP_INFO_KEY;
607 key.offset = qgroupid;
608
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700609 /*
610 * Avoid a transaction abort by catching -EEXIST here. In that
611 * case, we proceed by re-initializing the existing structure
612 * on disk.
613 */
614
Arne Jansenbed92ea2012-06-28 18:03:02 +0200615 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
616 sizeof(*qgroup_info));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700617 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200618 goto out;
619
620 leaf = path->nodes[0];
621 qgroup_info = btrfs_item_ptr(leaf, path->slots[0],
622 struct btrfs_qgroup_info_item);
623 btrfs_set_qgroup_info_generation(leaf, qgroup_info, trans->transid);
624 btrfs_set_qgroup_info_rfer(leaf, qgroup_info, 0);
625 btrfs_set_qgroup_info_rfer_cmpr(leaf, qgroup_info, 0);
626 btrfs_set_qgroup_info_excl(leaf, qgroup_info, 0);
627 btrfs_set_qgroup_info_excl_cmpr(leaf, qgroup_info, 0);
628
629 btrfs_mark_buffer_dirty(leaf);
630
631 btrfs_release_path(path);
632
633 key.type = BTRFS_QGROUP_LIMIT_KEY;
634 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
635 sizeof(*qgroup_limit));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700636 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200637 goto out;
638
639 leaf = path->nodes[0];
640 qgroup_limit = btrfs_item_ptr(leaf, path->slots[0],
641 struct btrfs_qgroup_limit_item);
642 btrfs_set_qgroup_limit_flags(leaf, qgroup_limit, 0);
643 btrfs_set_qgroup_limit_max_rfer(leaf, qgroup_limit, 0);
644 btrfs_set_qgroup_limit_max_excl(leaf, qgroup_limit, 0);
645 btrfs_set_qgroup_limit_rsv_rfer(leaf, qgroup_limit, 0);
646 btrfs_set_qgroup_limit_rsv_excl(leaf, qgroup_limit, 0);
647
648 btrfs_mark_buffer_dirty(leaf);
649
650 ret = 0;
651out:
652 btrfs_free_path(path);
653 return ret;
654}
655
Lu Fengqi69104612018-07-18 14:45:26 +0800656static int del_qgroup_item(struct btrfs_trans_handle *trans, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200657{
658 int ret;
Lu Fengqi69104612018-07-18 14:45:26 +0800659 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200660 struct btrfs_path *path;
661 struct btrfs_key key;
662
663 path = btrfs_alloc_path();
664 if (!path)
665 return -ENOMEM;
666
667 key.objectid = 0;
668 key.type = BTRFS_QGROUP_INFO_KEY;
669 key.offset = qgroupid;
670 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
671 if (ret < 0)
672 goto out;
673
674 if (ret > 0) {
675 ret = -ENOENT;
676 goto out;
677 }
678
679 ret = btrfs_del_item(trans, quota_root, path);
680 if (ret)
681 goto out;
682
683 btrfs_release_path(path);
684
685 key.type = BTRFS_QGROUP_LIMIT_KEY;
686 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
687 if (ret < 0)
688 goto out;
689
690 if (ret > 0) {
691 ret = -ENOENT;
692 goto out;
693 }
694
695 ret = btrfs_del_item(trans, quota_root, path);
696
697out:
698 btrfs_free_path(path);
699 return ret;
700}
701
702static int update_qgroup_limit_item(struct btrfs_trans_handle *trans,
Dongsheng Yang1510e712014-11-20 21:01:41 -0500703 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200704{
Lu Fengqiac8a8662018-07-18 14:45:27 +0800705 struct btrfs_root *quota_root = trans->fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200706 struct btrfs_path *path;
707 struct btrfs_key key;
708 struct extent_buffer *l;
709 struct btrfs_qgroup_limit_item *qgroup_limit;
710 int ret;
711 int slot;
712
713 key.objectid = 0;
714 key.type = BTRFS_QGROUP_LIMIT_KEY;
Dongsheng Yang1510e712014-11-20 21:01:41 -0500715 key.offset = qgroup->qgroupid;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200716
717 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000718 if (!path)
719 return -ENOMEM;
720
Lu Fengqiac8a8662018-07-18 14:45:27 +0800721 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200722 if (ret > 0)
723 ret = -ENOENT;
724
725 if (ret)
726 goto out;
727
728 l = path->nodes[0];
729 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100730 qgroup_limit = btrfs_item_ptr(l, slot, struct btrfs_qgroup_limit_item);
Dongsheng Yang1510e712014-11-20 21:01:41 -0500731 btrfs_set_qgroup_limit_flags(l, qgroup_limit, qgroup->lim_flags);
732 btrfs_set_qgroup_limit_max_rfer(l, qgroup_limit, qgroup->max_rfer);
733 btrfs_set_qgroup_limit_max_excl(l, qgroup_limit, qgroup->max_excl);
734 btrfs_set_qgroup_limit_rsv_rfer(l, qgroup_limit, qgroup->rsv_rfer);
735 btrfs_set_qgroup_limit_rsv_excl(l, qgroup_limit, qgroup->rsv_excl);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200736
737 btrfs_mark_buffer_dirty(l);
738
739out:
740 btrfs_free_path(path);
741 return ret;
742}
743
744static int update_qgroup_info_item(struct btrfs_trans_handle *trans,
Arne Jansenbed92ea2012-06-28 18:03:02 +0200745 struct btrfs_qgroup *qgroup)
746{
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800747 struct btrfs_fs_info *fs_info = trans->fs_info;
748 struct btrfs_root *quota_root = fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200749 struct btrfs_path *path;
750 struct btrfs_key key;
751 struct extent_buffer *l;
752 struct btrfs_qgroup_info_item *qgroup_info;
753 int ret;
754 int slot;
755
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800756 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400757 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200758
Arne Jansenbed92ea2012-06-28 18:03:02 +0200759 key.objectid = 0;
760 key.type = BTRFS_QGROUP_INFO_KEY;
761 key.offset = qgroup->qgroupid;
762
763 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000764 if (!path)
765 return -ENOMEM;
766
Lu Fengqi3e07e9a2018-07-18 14:45:28 +0800767 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200768 if (ret > 0)
769 ret = -ENOENT;
770
771 if (ret)
772 goto out;
773
774 l = path->nodes[0];
775 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100776 qgroup_info = btrfs_item_ptr(l, slot, struct btrfs_qgroup_info_item);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200777 btrfs_set_qgroup_info_generation(l, qgroup_info, trans->transid);
778 btrfs_set_qgroup_info_rfer(l, qgroup_info, qgroup->rfer);
779 btrfs_set_qgroup_info_rfer_cmpr(l, qgroup_info, qgroup->rfer_cmpr);
780 btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl);
781 btrfs_set_qgroup_info_excl_cmpr(l, qgroup_info, qgroup->excl_cmpr);
782
783 btrfs_mark_buffer_dirty(l);
784
785out:
786 btrfs_free_path(path);
787 return ret;
788}
789
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800790static int update_qgroup_status_item(struct btrfs_trans_handle *trans)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200791{
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800792 struct btrfs_fs_info *fs_info = trans->fs_info;
793 struct btrfs_root *quota_root = fs_info->quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200794 struct btrfs_path *path;
795 struct btrfs_key key;
796 struct extent_buffer *l;
797 struct btrfs_qgroup_status_item *ptr;
798 int ret;
799 int slot;
800
801 key.objectid = 0;
802 key.type = BTRFS_QGROUP_STATUS_KEY;
803 key.offset = 0;
804
805 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000806 if (!path)
807 return -ENOMEM;
808
Lu Fengqi2e980ac2018-07-18 14:45:29 +0800809 ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200810 if (ret > 0)
811 ret = -ENOENT;
812
813 if (ret)
814 goto out;
815
816 l = path->nodes[0];
817 slot = path->slots[0];
818 ptr = btrfs_item_ptr(l, slot, struct btrfs_qgroup_status_item);
819 btrfs_set_qgroup_status_flags(l, ptr, fs_info->qgroup_flags);
820 btrfs_set_qgroup_status_generation(l, ptr, trans->transid);
Jan Schmidt2f232032013-04-25 16:04:51 +0000821 btrfs_set_qgroup_status_rescan(l, ptr,
822 fs_info->qgroup_rescan_progress.objectid);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200823
824 btrfs_mark_buffer_dirty(l);
825
826out:
827 btrfs_free_path(path);
828 return ret;
829}
830
831/*
832 * called with qgroup_lock held
833 */
834static int btrfs_clean_quota_tree(struct btrfs_trans_handle *trans,
835 struct btrfs_root *root)
836{
837 struct btrfs_path *path;
838 struct btrfs_key key;
Wang Shilong06b3a862013-02-27 11:16:57 +0000839 struct extent_buffer *leaf = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200840 int ret;
Wang Shilong06b3a862013-02-27 11:16:57 +0000841 int nr = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200842
Arne Jansenbed92ea2012-06-28 18:03:02 +0200843 path = btrfs_alloc_path();
844 if (!path)
845 return -ENOMEM;
846
Wang Shilong06b3a862013-02-27 11:16:57 +0000847 path->leave_spinning = 1;
848
849 key.objectid = 0;
850 key.offset = 0;
851 key.type = 0;
852
Arne Jansenbed92ea2012-06-28 18:03:02 +0200853 while (1) {
Arne Jansenbed92ea2012-06-28 18:03:02 +0200854 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Wang Shilong06b3a862013-02-27 11:16:57 +0000855 if (ret < 0)
856 goto out;
857 leaf = path->nodes[0];
858 nr = btrfs_header_nritems(leaf);
859 if (!nr)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200860 break;
Wang Shilong06b3a862013-02-27 11:16:57 +0000861 /*
862 * delete the leaf one by one
863 * since the whole tree is going
864 * to be deleted.
865 */
866 path->slots[0] = 0;
867 ret = btrfs_del_items(trans, root, path, 0, nr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200868 if (ret)
869 goto out;
Wang Shilong06b3a862013-02-27 11:16:57 +0000870
Arne Jansenbed92ea2012-06-28 18:03:02 +0200871 btrfs_release_path(path);
872 }
873 ret = 0;
874out:
Arne Jansenbed92ea2012-06-28 18:03:02 +0200875 btrfs_free_path(path);
876 return ret;
877}
878
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300879int btrfs_quota_enable(struct btrfs_fs_info *fs_info)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200880{
881 struct btrfs_root *quota_root;
Wang Shilong7708f022013-04-07 10:24:57 +0000882 struct btrfs_root *tree_root = fs_info->tree_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200883 struct btrfs_path *path = NULL;
884 struct btrfs_qgroup_status_item *ptr;
885 struct extent_buffer *leaf;
886 struct btrfs_key key;
Wang Shilong7708f022013-04-07 10:24:57 +0000887 struct btrfs_key found_key;
888 struct btrfs_qgroup *qgroup = NULL;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300889 struct btrfs_trans_handle *trans = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200890 int ret = 0;
Wang Shilong7708f022013-04-07 10:24:57 +0000891 int slot;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200892
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000893 mutex_lock(&fs_info->qgroup_ioctl_lock);
Nikolay Borisov5d235152018-01-31 10:52:04 +0200894 if (fs_info->quota_root)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200895 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200896
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300897 /*
898 * 1 for quota root item
899 * 1 for BTRFS_QGROUP_STATUS item
900 *
901 * Yet we also need 2*n items for a QGROUP_INFO/QGROUP_LIMIT items
902 * per subvolume. However those are not currently reserved since it
903 * would be a lot of overkill.
904 */
905 trans = btrfs_start_transaction(tree_root, 2);
906 if (IS_ERR(trans)) {
907 ret = PTR_ERR(trans);
908 trans = NULL;
909 goto out;
910 }
911
David Sterba52bf8e72017-02-13 11:03:44 +0100912 fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000913 if (!fs_info->qgroup_ulist) {
914 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300915 btrfs_abort_transaction(trans, ret);
Wang Shilong1e8f9152013-05-06 11:03:27 +0000916 goto out;
917 }
918
Arne Jansenbed92ea2012-06-28 18:03:02 +0200919 /*
920 * initially create the quota tree
921 */
922 quota_root = btrfs_create_tree(trans, fs_info,
923 BTRFS_QUOTA_TREE_OBJECTID);
924 if (IS_ERR(quota_root)) {
925 ret = PTR_ERR(quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300926 btrfs_abort_transaction(trans, ret);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200927 goto out;
928 }
929
930 path = btrfs_alloc_path();
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000931 if (!path) {
932 ret = -ENOMEM;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300933 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000934 goto out_free_root;
935 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200936
937 key.objectid = 0;
938 key.type = BTRFS_QGROUP_STATUS_KEY;
939 key.offset = 0;
940
941 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
942 sizeof(*ptr));
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300943 if (ret) {
944 btrfs_abort_transaction(trans, ret);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000945 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300946 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200947
948 leaf = path->nodes[0];
949 ptr = btrfs_item_ptr(leaf, path->slots[0],
950 struct btrfs_qgroup_status_item);
951 btrfs_set_qgroup_status_generation(leaf, ptr, trans->transid);
952 btrfs_set_qgroup_status_version(leaf, ptr, BTRFS_QGROUP_STATUS_VERSION);
953 fs_info->qgroup_flags = BTRFS_QGROUP_STATUS_FLAG_ON |
954 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
955 btrfs_set_qgroup_status_flags(leaf, ptr, fs_info->qgroup_flags);
Jan Schmidt2f232032013-04-25 16:04:51 +0000956 btrfs_set_qgroup_status_rescan(leaf, ptr, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200957
958 btrfs_mark_buffer_dirty(leaf);
959
Wang Shilong7708f022013-04-07 10:24:57 +0000960 key.objectid = 0;
961 key.type = BTRFS_ROOT_REF_KEY;
962 key.offset = 0;
963
964 btrfs_release_path(path);
965 ret = btrfs_search_slot_for_read(tree_root, &key, path, 1, 0);
966 if (ret > 0)
967 goto out_add_root;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300968 if (ret < 0) {
969 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000970 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300971 }
Wang Shilong7708f022013-04-07 10:24:57 +0000972
973 while (1) {
974 slot = path->slots[0];
975 leaf = path->nodes[0];
976 btrfs_item_key_to_cpu(leaf, &found_key, slot);
977
978 if (found_key.type == BTRFS_ROOT_REF_KEY) {
979 ret = add_qgroup_item(trans, quota_root,
980 found_key.offset);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300981 if (ret) {
982 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000983 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300984 }
Wang Shilong7708f022013-04-07 10:24:57 +0000985
Wang Shilong7708f022013-04-07 10:24:57 +0000986 qgroup = add_qgroup_rb(fs_info, found_key.offset);
987 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +0000988 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300989 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000990 goto out_free_path;
991 }
Wang Shilong7708f022013-04-07 10:24:57 +0000992 }
993 ret = btrfs_next_item(tree_root, path);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300994 if (ret < 0) {
995 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +0000996 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +0300997 }
Wang Shilong7708f022013-04-07 10:24:57 +0000998 if (ret)
999 break;
1000 }
1001
1002out_add_root:
1003 btrfs_release_path(path);
1004 ret = add_qgroup_item(trans, quota_root, BTRFS_FS_TREE_OBJECTID);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001005 if (ret) {
1006 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001007 goto out_free_path;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001008 }
Wang Shilong7708f022013-04-07 10:24:57 +00001009
Wang Shilong7708f022013-04-07 10:24:57 +00001010 qgroup = add_qgroup_rb(fs_info, BTRFS_FS_TREE_OBJECTID);
1011 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +00001012 ret = PTR_ERR(qgroup);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001013 btrfs_abort_transaction(trans, ret);
Wang Shilong7708f022013-04-07 10:24:57 +00001014 goto out_free_path;
1015 }
Wang Shilong58400fc2013-04-07 10:50:17 +00001016 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001017 fs_info->quota_root = quota_root;
Nikolay Borisov5d235152018-01-31 10:52:04 +02001018 set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001019 spin_unlock(&fs_info->qgroup_lock);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001020
1021 ret = btrfs_commit_transaction(trans);
1022 if (ret) {
1023 trans = NULL;
1024 goto out_free_path;
1025 }
1026
Nikolay Borisov5d235152018-01-31 10:52:04 +02001027 ret = qgroup_rescan_init(fs_info, 0, 1);
1028 if (!ret) {
1029 qgroup_rescan_zero_tracking(fs_info);
1030 btrfs_queue_work(fs_info->qgroup_rescan_workers,
1031 &fs_info->qgroup_rescan_work);
1032 }
1033
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +00001034out_free_path:
Arne Jansenbed92ea2012-06-28 18:03:02 +02001035 btrfs_free_path(path);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +00001036out_free_root:
1037 if (ret) {
1038 free_extent_buffer(quota_root->node);
1039 free_extent_buffer(quota_root->commit_root);
1040 kfree(quota_root);
1041 }
1042out:
Jan Schmidteb1716a2013-05-28 15:47:23 +00001043 if (ret) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00001044 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +00001045 fs_info->qgroup_ulist = NULL;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001046 if (trans)
1047 btrfs_end_transaction(trans);
Jan Schmidteb1716a2013-05-28 15:47:23 +00001048 }
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001049 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001050 return ret;
1051}
1052
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001053int btrfs_quota_disable(struct btrfs_fs_info *fs_info)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001054{
Arne Jansenbed92ea2012-06-28 18:03:02 +02001055 struct btrfs_root *quota_root;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001056 struct btrfs_trans_handle *trans = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001057 int ret = 0;
1058
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001059 mutex_lock(&fs_info->qgroup_ioctl_lock);
Wang Shilong58400fc2013-04-07 10:50:17 +00001060 if (!fs_info->quota_root)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001061 goto out;
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001062
1063 /*
1064 * 1 For the root item
1065 *
1066 * We should also reserve enough items for the quota tree deletion in
1067 * btrfs_clean_quota_tree but this is not done.
1068 */
1069 trans = btrfs_start_transaction(fs_info->tree_root, 1);
1070 if (IS_ERR(trans)) {
1071 ret = PTR_ERR(trans);
1072 goto out;
1073 }
1074
Josef Bacikafcdd122016-09-02 15:40:02 -04001075 clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04001076 btrfs_qgroup_wait_for_completion(fs_info, false);
Justin Maggard967ef512015-11-06 10:36:42 -08001077 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001078 quota_root = fs_info->quota_root;
1079 fs_info->quota_root = NULL;
Dongsheng Yang8ea0ec92015-02-27 16:24:26 +08001080 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001081 spin_unlock(&fs_info->qgroup_lock);
1082
Wang Shilonge685da12013-08-14 09:13:37 +08001083 btrfs_free_qgroup_config(fs_info);
1084
Arne Jansenbed92ea2012-06-28 18:03:02 +02001085 ret = btrfs_clean_quota_tree(trans, quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001086 if (ret) {
1087 btrfs_abort_transaction(trans, ret);
1088 goto end_trans;
1089 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001090
Jeff Mahoney1cd54472017-08-17 10:25:11 -04001091 ret = btrfs_del_root(trans, fs_info, &quota_root->root_key);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001092 if (ret) {
1093 btrfs_abort_transaction(trans, ret);
1094 goto end_trans;
1095 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001096
1097 list_del(&quota_root->dirty_list);
1098
1099 btrfs_tree_lock(quota_root->node);
David Sterba7c302b42017-02-10 18:47:57 +01001100 clean_tree_block(fs_info, quota_root->node);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001101 btrfs_tree_unlock(quota_root->node);
1102 btrfs_free_tree_block(trans, quota_root, quota_root->node, 0, 1);
1103
1104 free_extent_buffer(quota_root->node);
1105 free_extent_buffer(quota_root->commit_root);
1106 kfree(quota_root);
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03001107
1108end_trans:
1109 ret = btrfs_end_transaction(trans);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001110out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001111 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001112 return ret;
1113}
1114
Jan Schmidt2f232032013-04-25 16:04:51 +00001115static void qgroup_dirty(struct btrfs_fs_info *fs_info,
1116 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001117{
Jan Schmidt2f232032013-04-25 16:04:51 +00001118 if (list_empty(&qgroup->dirty))
1119 list_add(&qgroup->dirty, &fs_info->dirty_qgroups);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001120}
1121
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001122/*
Qu Wenruo429d6272017-12-12 15:34:26 +08001123 * The easy accounting, we're updating qgroup relationship whose child qgroup
1124 * only has exclusive extents.
1125 *
1126 * In this case, all exclsuive extents will also be exlusive for parent, so
1127 * excl/rfer just get added/removed.
1128 *
1129 * So is qgroup reservation space, which should also be added/removed to
1130 * parent.
1131 * Or when child tries to release reservation space, parent will underflow its
1132 * reservation (for relationship adding case).
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001133 *
1134 * Caller should hold fs_info->qgroup_lock.
1135 */
1136static int __qgroup_excl_accounting(struct btrfs_fs_info *fs_info,
1137 struct ulist *tmp, u64 ref_root,
Qu Wenruo429d6272017-12-12 15:34:26 +08001138 struct btrfs_qgroup *src, int sign)
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001139{
1140 struct btrfs_qgroup *qgroup;
1141 struct btrfs_qgroup_list *glist;
1142 struct ulist_node *unode;
1143 struct ulist_iterator uiter;
Qu Wenruo429d6272017-12-12 15:34:26 +08001144 u64 num_bytes = src->excl;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001145 int ret = 0;
1146
1147 qgroup = find_qgroup_rb(fs_info, ref_root);
1148 if (!qgroup)
1149 goto out;
1150
1151 qgroup->rfer += sign * num_bytes;
1152 qgroup->rfer_cmpr += sign * num_bytes;
1153
1154 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1155 qgroup->excl += sign * num_bytes;
1156 qgroup->excl_cmpr += sign * num_bytes;
Qu Wenruo429d6272017-12-12 15:34:26 +08001157
1158 if (sign > 0)
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001159 qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
Qu Wenruo429d6272017-12-12 15:34:26 +08001160 else
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001161 qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001162
1163 qgroup_dirty(fs_info, qgroup);
1164
1165 /* Get all of the parent groups that contain this qgroup */
1166 list_for_each_entry(glist, &qgroup->groups, next_group) {
1167 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001168 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001169 if (ret < 0)
1170 goto out;
1171 }
1172
1173 /* Iterate all of the parents and adjust their reference counts */
1174 ULIST_ITER_INIT(&uiter);
1175 while ((unode = ulist_next(tmp, &uiter))) {
David Sterbaef2fff62016-10-26 16:23:50 +02001176 qgroup = unode_aux_to_qgroup(unode);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001177 qgroup->rfer += sign * num_bytes;
1178 qgroup->rfer_cmpr += sign * num_bytes;
1179 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1180 qgroup->excl += sign * num_bytes;
Qu Wenruo429d6272017-12-12 15:34:26 +08001181 if (sign > 0)
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001182 qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
Qu Wenruo429d6272017-12-12 15:34:26 +08001183 else
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001184 qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001185 qgroup->excl_cmpr += sign * num_bytes;
1186 qgroup_dirty(fs_info, qgroup);
1187
1188 /* Add any parents of the parents */
1189 list_for_each_entry(glist, &qgroup->groups, next_group) {
1190 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001191 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001192 if (ret < 0)
1193 goto out;
1194 }
1195 }
1196 ret = 0;
1197out:
1198 return ret;
1199}
1200
1201
1202/*
1203 * Quick path for updating qgroup with only excl refs.
1204 *
1205 * In that case, just update all parent will be enough.
1206 * Or we needs to do a full rescan.
1207 * Caller should also hold fs_info->qgroup_lock.
1208 *
1209 * Return 0 for quick update, return >0 for need to full rescan
1210 * and mark INCONSISTENT flag.
1211 * Return < 0 for other error.
1212 */
1213static int quick_update_accounting(struct btrfs_fs_info *fs_info,
1214 struct ulist *tmp, u64 src, u64 dst,
1215 int sign)
1216{
1217 struct btrfs_qgroup *qgroup;
1218 int ret = 1;
1219 int err = 0;
1220
1221 qgroup = find_qgroup_rb(fs_info, src);
1222 if (!qgroup)
1223 goto out;
1224 if (qgroup->excl == qgroup->rfer) {
1225 ret = 0;
1226 err = __qgroup_excl_accounting(fs_info, tmp, dst,
Qu Wenruo429d6272017-12-12 15:34:26 +08001227 qgroup, sign);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001228 if (err < 0) {
1229 ret = err;
1230 goto out;
1231 }
1232 }
1233out:
1234 if (ret)
1235 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1236 return ret;
1237}
1238
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08001239int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1240 u64 dst)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001241{
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08001242 struct btrfs_fs_info *fs_info = trans->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001243 struct btrfs_root *quota_root;
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001244 struct btrfs_qgroup *parent;
1245 struct btrfs_qgroup *member;
Wang Shilong534e6622013-04-17 14:49:51 +00001246 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001247 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001248 int ret = 0;
1249
Qu Wenruo8465ece2015-02-27 16:24:22 +08001250 /* Check the level of src and dst first */
1251 if (btrfs_qgroup_level(src) >= btrfs_qgroup_level(dst))
1252 return -EINVAL;
1253
David Sterba6602caf2017-02-13 12:41:02 +01001254 tmp = ulist_alloc(GFP_KERNEL);
Christian Engelmayerab3680d2015-05-02 17:19:55 +02001255 if (!tmp)
1256 return -ENOMEM;
1257
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001258 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001259 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001260 if (!quota_root) {
1261 ret = -EINVAL;
1262 goto out;
1263 }
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001264 member = find_qgroup_rb(fs_info, src);
1265 parent = find_qgroup_rb(fs_info, dst);
1266 if (!member || !parent) {
1267 ret = -EINVAL;
1268 goto out;
1269 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001270
Wang Shilong534e6622013-04-17 14:49:51 +00001271 /* check if such qgroup relation exist firstly */
1272 list_for_each_entry(list, &member->groups, next_group) {
1273 if (list->group == parent) {
1274 ret = -EEXIST;
1275 goto out;
1276 }
1277 }
1278
Lu Fengqi711169c2018-07-18 14:45:24 +08001279 ret = add_qgroup_relation_item(trans, src, dst);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001280 if (ret)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001281 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001282
Lu Fengqi711169c2018-07-18 14:45:24 +08001283 ret = add_qgroup_relation_item(trans, dst, src);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001284 if (ret) {
Lu Fengqi99d7f092018-07-18 14:45:25 +08001285 del_qgroup_relation_item(trans, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001286 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001287 }
1288
1289 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001290 ret = add_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001291 if (ret < 0) {
1292 spin_unlock(&fs_info->qgroup_lock);
1293 goto out;
1294 }
1295 ret = quick_update_accounting(fs_info, tmp, src, dst, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001296 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001297out:
1298 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001299 ulist_free(tmp);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001300 return ret;
1301}
1302
David Sterba025db912017-02-13 13:00:51 +01001303static int __del_qgroup_relation(struct btrfs_trans_handle *trans,
Arne Jansenbed92ea2012-06-28 18:03:02 +02001304 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1305{
1306 struct btrfs_root *quota_root;
Wang Shilong534e6622013-04-17 14:49:51 +00001307 struct btrfs_qgroup *parent;
1308 struct btrfs_qgroup *member;
1309 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001310 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001311 int ret = 0;
1312 int err;
1313
David Sterba6602caf2017-02-13 12:41:02 +01001314 tmp = ulist_alloc(GFP_KERNEL);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001315 if (!tmp)
1316 return -ENOMEM;
1317
Arne Jansenbed92ea2012-06-28 18:03:02 +02001318 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001319 if (!quota_root) {
1320 ret = -EINVAL;
1321 goto out;
1322 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001323
Wang Shilong534e6622013-04-17 14:49:51 +00001324 member = find_qgroup_rb(fs_info, src);
1325 parent = find_qgroup_rb(fs_info, dst);
1326 if (!member || !parent) {
1327 ret = -EINVAL;
1328 goto out;
1329 }
1330
1331 /* check if such qgroup relation exist firstly */
1332 list_for_each_entry(list, &member->groups, next_group) {
1333 if (list->group == parent)
1334 goto exist;
1335 }
1336 ret = -ENOENT;
1337 goto out;
1338exist:
Lu Fengqi99d7f092018-07-18 14:45:25 +08001339 ret = del_qgroup_relation_item(trans, src, dst);
1340 err = del_qgroup_relation_item(trans, dst, src);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001341 if (err && !ret)
1342 ret = err;
1343
1344 spin_lock(&fs_info->qgroup_lock);
1345 del_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001346 ret = quick_update_accounting(fs_info, tmp, src, dst, -1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001347 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001348out:
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001349 ulist_free(tmp);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001350 return ret;
1351}
1352
1353int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans,
1354 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1355{
1356 int ret = 0;
1357
1358 mutex_lock(&fs_info->qgroup_ioctl_lock);
1359 ret = __del_qgroup_relation(trans, fs_info, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001360 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001361
Arne Jansenbed92ea2012-06-28 18:03:02 +02001362 return ret;
1363}
1364
1365int btrfs_create_qgroup(struct btrfs_trans_handle *trans,
Dongsheng Yang4087cf22015-01-18 10:59:23 -05001366 struct btrfs_fs_info *fs_info, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001367{
1368 struct btrfs_root *quota_root;
1369 struct btrfs_qgroup *qgroup;
1370 int ret = 0;
1371
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001372 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001373 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001374 if (!quota_root) {
1375 ret = -EINVAL;
1376 goto out;
1377 }
Wang Shilong534e6622013-04-17 14:49:51 +00001378 qgroup = find_qgroup_rb(fs_info, qgroupid);
1379 if (qgroup) {
1380 ret = -EEXIST;
1381 goto out;
1382 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001383
1384 ret = add_qgroup_item(trans, quota_root, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001385 if (ret)
1386 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001387
1388 spin_lock(&fs_info->qgroup_lock);
1389 qgroup = add_qgroup_rb(fs_info, qgroupid);
1390 spin_unlock(&fs_info->qgroup_lock);
1391
1392 if (IS_ERR(qgroup))
1393 ret = PTR_ERR(qgroup);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001394out:
1395 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001396 return ret;
1397}
1398
1399int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
1400 struct btrfs_fs_info *fs_info, u64 qgroupid)
1401{
1402 struct btrfs_root *quota_root;
Arne Jansen2cf68702013-01-17 01:22:09 -07001403 struct btrfs_qgroup *qgroup;
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001404 struct btrfs_qgroup_list *list;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001405 int ret = 0;
1406
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001407 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001408 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001409 if (!quota_root) {
1410 ret = -EINVAL;
1411 goto out;
1412 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001413
Arne Jansen2cf68702013-01-17 01:22:09 -07001414 qgroup = find_qgroup_rb(fs_info, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001415 if (!qgroup) {
1416 ret = -ENOENT;
1417 goto out;
1418 } else {
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001419 /* check if there are no children of this qgroup */
1420 if (!list_empty(&qgroup->members)) {
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001421 ret = -EBUSY;
1422 goto out;
Arne Jansen2cf68702013-01-17 01:22:09 -07001423 }
1424 }
Lu Fengqi69104612018-07-18 14:45:26 +08001425 ret = del_qgroup_item(trans, qgroupid);
Sargun Dhillon36b96fd2017-09-17 09:02:29 +00001426 if (ret && ret != -ENOENT)
1427 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001428
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001429 while (!list_empty(&qgroup->groups)) {
1430 list = list_first_entry(&qgroup->groups,
1431 struct btrfs_qgroup_list, next_group);
1432 ret = __del_qgroup_relation(trans, fs_info,
1433 qgroupid,
1434 list->group->qgroupid);
1435 if (ret)
1436 goto out;
1437 }
1438
Arne Jansenbed92ea2012-06-28 18:03:02 +02001439 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001440 del_qgroup_rb(fs_info, qgroupid);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001441 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001442out:
1443 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001444 return ret;
1445}
1446
1447int btrfs_limit_qgroup(struct btrfs_trans_handle *trans,
1448 struct btrfs_fs_info *fs_info, u64 qgroupid,
1449 struct btrfs_qgroup_limit *limit)
1450{
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001451 struct btrfs_root *quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001452 struct btrfs_qgroup *qgroup;
1453 int ret = 0;
Yang Dongshengfe759902015-06-03 14:57:32 +08001454 /* Sometimes we would want to clear the limit on this qgroup.
1455 * To meet this requirement, we treat the -1 as a special value
1456 * which tell kernel to clear the limit on this qgroup.
1457 */
1458 const u64 CLEAR_VALUE = -1;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001459
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001460 mutex_lock(&fs_info->qgroup_ioctl_lock);
1461 quota_root = fs_info->quota_root;
1462 if (!quota_root) {
1463 ret = -EINVAL;
1464 goto out;
1465 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001466
Wang Shilongddb47af2013-04-07 10:50:20 +00001467 qgroup = find_qgroup_rb(fs_info, qgroupid);
1468 if (!qgroup) {
1469 ret = -ENOENT;
1470 goto out;
1471 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001472
Wang Shilong58400fc2013-04-07 10:50:17 +00001473 spin_lock(&fs_info->qgroup_lock);
Yang Dongshengfe759902015-06-03 14:57:32 +08001474 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_RFER) {
1475 if (limit->max_rfer == CLEAR_VALUE) {
1476 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1477 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1478 qgroup->max_rfer = 0;
1479 } else {
1480 qgroup->max_rfer = limit->max_rfer;
1481 }
1482 }
1483 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) {
1484 if (limit->max_excl == CLEAR_VALUE) {
1485 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1486 limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1487 qgroup->max_excl = 0;
1488 } else {
1489 qgroup->max_excl = limit->max_excl;
1490 }
1491 }
1492 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_RFER) {
1493 if (limit->rsv_rfer == CLEAR_VALUE) {
1494 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1495 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1496 qgroup->rsv_rfer = 0;
1497 } else {
1498 qgroup->rsv_rfer = limit->rsv_rfer;
1499 }
1500 }
1501 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_EXCL) {
1502 if (limit->rsv_excl == CLEAR_VALUE) {
1503 qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1504 limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1505 qgroup->rsv_excl = 0;
1506 } else {
1507 qgroup->rsv_excl = limit->rsv_excl;
1508 }
1509 }
Dongsheng Yang03477d92015-02-06 11:06:25 -05001510 qgroup->lim_flags |= limit->flags;
1511
Arne Jansenbed92ea2012-06-28 18:03:02 +02001512 spin_unlock(&fs_info->qgroup_lock);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001513
Lu Fengqiac8a8662018-07-18 14:45:27 +08001514 ret = update_qgroup_limit_item(trans, qgroup);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001515 if (ret) {
1516 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1517 btrfs_info(fs_info, "unable to update quota limit for %llu",
1518 qgroupid);
1519 }
1520
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001521out:
1522 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001523 return ret;
1524}
Mark Fasheh11526512014-07-17 12:39:01 -07001525
Qu Wenruo50b3e042016-10-18 09:31:27 +08001526int btrfs_qgroup_trace_extent_nolock(struct btrfs_fs_info *fs_info,
Qu Wenruocb93b522016-08-15 10:36:50 +08001527 struct btrfs_delayed_ref_root *delayed_refs,
1528 struct btrfs_qgroup_extent_record *record)
Qu Wenruo3368d002015-04-16 14:34:17 +08001529{
1530 struct rb_node **p = &delayed_refs->dirty_extent_root.rb_node;
1531 struct rb_node *parent_node = NULL;
1532 struct btrfs_qgroup_extent_record *entry;
1533 u64 bytenr = record->bytenr;
1534
David Sterbaa4666e62018-03-16 02:21:22 +01001535 lockdep_assert_held(&delayed_refs->lock);
Qu Wenruo50b3e042016-10-18 09:31:27 +08001536 trace_btrfs_qgroup_trace_extent(fs_info, record);
Mark Fasheh82bd1012015-11-05 14:38:00 -08001537
Qu Wenruo3368d002015-04-16 14:34:17 +08001538 while (*p) {
1539 parent_node = *p;
1540 entry = rb_entry(parent_node, struct btrfs_qgroup_extent_record,
1541 node);
1542 if (bytenr < entry->bytenr)
1543 p = &(*p)->rb_left;
1544 else if (bytenr > entry->bytenr)
1545 p = &(*p)->rb_right;
1546 else
Qu Wenruocb93b522016-08-15 10:36:50 +08001547 return 1;
Qu Wenruo3368d002015-04-16 14:34:17 +08001548 }
1549
1550 rb_link_node(&record->node, parent_node, p);
1551 rb_insert_color(&record->node, &delayed_refs->dirty_extent_root);
Qu Wenruocb93b522016-08-15 10:36:50 +08001552 return 0;
1553}
1554
Qu Wenruofb235dc2017-02-15 10:43:03 +08001555int btrfs_qgroup_trace_extent_post(struct btrfs_fs_info *fs_info,
1556 struct btrfs_qgroup_extent_record *qrecord)
1557{
1558 struct ulist *old_root;
1559 u64 bytenr = qrecord->bytenr;
1560 int ret;
1561
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001562 ret = btrfs_find_all_roots(NULL, fs_info, bytenr, 0, &old_root, false);
Nikolay Borisov952bd3db2018-01-29 15:53:01 +02001563 if (ret < 0) {
1564 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1565 btrfs_warn(fs_info,
1566"error accounting new delayed refs extent (err code: %d), quota inconsistent",
1567 ret);
1568 return 0;
1569 }
Qu Wenruofb235dc2017-02-15 10:43:03 +08001570
1571 /*
1572 * Here we don't need to get the lock of
1573 * trans->transaction->delayed_refs, since inserted qrecord won't
1574 * be deleted, only qrecord->node may be modified (new qrecord insert)
1575 *
1576 * So modifying qrecord->old_roots is safe here
1577 */
1578 qrecord->old_roots = old_root;
1579 return 0;
1580}
1581
Qu Wenruo50b3e042016-10-18 09:31:27 +08001582int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans,
Qu Wenruocb93b522016-08-15 10:36:50 +08001583 struct btrfs_fs_info *fs_info, u64 bytenr, u64 num_bytes,
1584 gfp_t gfp_flag)
1585{
1586 struct btrfs_qgroup_extent_record *record;
1587 struct btrfs_delayed_ref_root *delayed_refs;
1588 int ret;
1589
Josef Bacikafcdd122016-09-02 15:40:02 -04001590 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)
1591 || bytenr == 0 || num_bytes == 0)
Qu Wenruocb93b522016-08-15 10:36:50 +08001592 return 0;
1593 if (WARN_ON(trans == NULL))
1594 return -EINVAL;
1595 record = kmalloc(sizeof(*record), gfp_flag);
1596 if (!record)
1597 return -ENOMEM;
1598
1599 delayed_refs = &trans->transaction->delayed_refs;
1600 record->bytenr = bytenr;
1601 record->num_bytes = num_bytes;
1602 record->old_roots = NULL;
1603
1604 spin_lock(&delayed_refs->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001605 ret = btrfs_qgroup_trace_extent_nolock(fs_info, delayed_refs, record);
Qu Wenruocb93b522016-08-15 10:36:50 +08001606 spin_unlock(&delayed_refs->lock);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001607 if (ret > 0) {
Qu Wenruocb93b522016-08-15 10:36:50 +08001608 kfree(record);
Qu Wenruofb235dc2017-02-15 10:43:03 +08001609 return 0;
1610 }
1611 return btrfs_qgroup_trace_extent_post(fs_info, record);
Qu Wenruo3368d002015-04-16 14:34:17 +08001612}
1613
Qu Wenruo33d1f052016-10-18 09:31:28 +08001614int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001615 struct btrfs_fs_info *fs_info,
Qu Wenruo33d1f052016-10-18 09:31:28 +08001616 struct extent_buffer *eb)
1617{
1618 int nr = btrfs_header_nritems(eb);
1619 int i, extent_type, ret;
1620 struct btrfs_key key;
1621 struct btrfs_file_extent_item *fi;
1622 u64 bytenr, num_bytes;
1623
1624 /* We can be called directly from walk_up_proc() */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001625 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08001626 return 0;
1627
1628 for (i = 0; i < nr; i++) {
1629 btrfs_item_key_to_cpu(eb, &key, i);
1630
1631 if (key.type != BTRFS_EXTENT_DATA_KEY)
1632 continue;
1633
1634 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
1635 /* filter out non qgroup-accountable extents */
1636 extent_type = btrfs_file_extent_type(eb, fi);
1637
1638 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
1639 continue;
1640
1641 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1642 if (!bytenr)
1643 continue;
1644
1645 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1646
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001647 ret = btrfs_qgroup_trace_extent(trans, fs_info, bytenr,
1648 num_bytes, GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001649 if (ret)
1650 return ret;
1651 }
Jeff Mahoneycddf3b22017-06-20 08:15:26 -04001652 cond_resched();
Qu Wenruo33d1f052016-10-18 09:31:28 +08001653 return 0;
1654}
1655
1656/*
1657 * Walk up the tree from the bottom, freeing leaves and any interior
1658 * nodes which have had all slots visited. If a node (leaf or
1659 * interior) is freed, the node above it will have it's slot
1660 * incremented. The root node will never be freed.
1661 *
1662 * At the end of this function, we should have a path which has all
1663 * slots incremented to the next position for a search. If we need to
1664 * read a new node it will be NULL and the node above it will have the
1665 * correct slot selected for a later read.
1666 *
1667 * If we increment the root nodes slot counter past the number of
1668 * elements, 1 is returned to signal completion of the search.
1669 */
David Sterba15b34512017-02-10 20:30:23 +01001670static int adjust_slots_upwards(struct btrfs_path *path, int root_level)
Qu Wenruo33d1f052016-10-18 09:31:28 +08001671{
1672 int level = 0;
1673 int nr, slot;
1674 struct extent_buffer *eb;
1675
1676 if (root_level == 0)
1677 return 1;
1678
1679 while (level <= root_level) {
1680 eb = path->nodes[level];
1681 nr = btrfs_header_nritems(eb);
1682 path->slots[level]++;
1683 slot = path->slots[level];
1684 if (slot >= nr || level == 0) {
1685 /*
1686 * Don't free the root - we will detect this
1687 * condition after our loop and return a
1688 * positive value for caller to stop walking the tree.
1689 */
1690 if (level != root_level) {
1691 btrfs_tree_unlock_rw(eb, path->locks[level]);
1692 path->locks[level] = 0;
1693
1694 free_extent_buffer(eb);
1695 path->nodes[level] = NULL;
1696 path->slots[level] = 0;
1697 }
1698 } else {
1699 /*
1700 * We have a valid slot to walk back down
1701 * from. Stop here so caller can process these
1702 * new nodes.
1703 */
1704 break;
1705 }
1706
1707 level++;
1708 }
1709
1710 eb = path->nodes[root_level];
1711 if (path->slots[root_level] >= btrfs_header_nritems(eb))
1712 return 1;
1713
1714 return 0;
1715}
1716
1717int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
1718 struct btrfs_root *root,
1719 struct extent_buffer *root_eb,
1720 u64 root_gen, int root_level)
1721{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo33d1f052016-10-18 09:31:28 +08001723 int ret = 0;
1724 int level;
1725 struct extent_buffer *eb = root_eb;
1726 struct btrfs_path *path = NULL;
1727
Nikolay Borisovb6e6bca2017-07-12 09:42:19 +03001728 BUG_ON(root_level < 0 || root_level >= BTRFS_MAX_LEVEL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001729 BUG_ON(root_eb == NULL);
1730
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001731 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Qu Wenruo33d1f052016-10-18 09:31:28 +08001732 return 0;
1733
1734 if (!extent_buffer_uptodate(root_eb)) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001735 ret = btrfs_read_buffer(root_eb, root_gen, root_level, NULL);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001736 if (ret)
1737 goto out;
1738 }
1739
1740 if (root_level == 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001741 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, root_eb);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001742 goto out;
1743 }
1744
1745 path = btrfs_alloc_path();
1746 if (!path)
1747 return -ENOMEM;
1748
1749 /*
1750 * Walk down the tree. Missing extent blocks are filled in as
1751 * we go. Metadata is accounted every time we read a new
1752 * extent block.
1753 *
1754 * When we reach a leaf, we account for file extent items in it,
1755 * walk back up the tree (adjusting slot pointers as we go)
1756 * and restart the search process.
1757 */
1758 extent_buffer_get(root_eb); /* For path */
1759 path->nodes[root_level] = root_eb;
1760 path->slots[root_level] = 0;
1761 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
1762walk_down:
1763 level = root_level;
1764 while (level >= 0) {
1765 if (path->nodes[level] == NULL) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001766 struct btrfs_key first_key;
Qu Wenruo33d1f052016-10-18 09:31:28 +08001767 int parent_slot;
1768 u64 child_gen;
1769 u64 child_bytenr;
1770
1771 /*
1772 * We need to get child blockptr/gen from parent before
1773 * we can read it.
1774 */
1775 eb = path->nodes[level + 1];
1776 parent_slot = path->slots[level + 1];
1777 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
1778 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08001779 btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001780
Qu Wenruo581c1762018-03-29 09:08:11 +08001781 eb = read_tree_block(fs_info, child_bytenr, child_gen,
1782 level, &first_key);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001783 if (IS_ERR(eb)) {
1784 ret = PTR_ERR(eb);
1785 goto out;
1786 } else if (!extent_buffer_uptodate(eb)) {
1787 free_extent_buffer(eb);
1788 ret = -EIO;
1789 goto out;
1790 }
1791
1792 path->nodes[level] = eb;
1793 path->slots[level] = 0;
1794
1795 btrfs_tree_read_lock(eb);
1796 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1797 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
1798
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001799 ret = btrfs_qgroup_trace_extent(trans, fs_info,
1800 child_bytenr,
1801 fs_info->nodesize,
1802 GFP_NOFS);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001803 if (ret)
1804 goto out;
1805 }
1806
1807 if (level == 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001808 ret = btrfs_qgroup_trace_leaf_items(trans,fs_info,
1809 path->nodes[level]);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001810 if (ret)
1811 goto out;
1812
1813 /* Nonzero return here means we completed our search */
David Sterba15b34512017-02-10 20:30:23 +01001814 ret = adjust_slots_upwards(path, root_level);
Qu Wenruo33d1f052016-10-18 09:31:28 +08001815 if (ret)
1816 break;
1817
1818 /* Restart search with new slots */
1819 goto walk_down;
1820 }
1821
1822 level--;
1823 }
1824
1825 ret = 0;
1826out:
1827 btrfs_free_path(path);
1828
1829 return ret;
1830}
1831
Qu Wenruod810ef22015-04-12 16:52:34 +08001832#define UPDATE_NEW 0
1833#define UPDATE_OLD 1
1834/*
1835 * Walk all of the roots that points to the bytenr and adjust their refcnts.
1836 */
1837static int qgroup_update_refcnt(struct btrfs_fs_info *fs_info,
1838 struct ulist *roots, struct ulist *tmp,
1839 struct ulist *qgroups, u64 seq, int update_old)
1840{
1841 struct ulist_node *unode;
1842 struct ulist_iterator uiter;
1843 struct ulist_node *tmp_unode;
1844 struct ulist_iterator tmp_uiter;
1845 struct btrfs_qgroup *qg;
1846 int ret = 0;
1847
1848 if (!roots)
1849 return 0;
1850 ULIST_ITER_INIT(&uiter);
1851 while ((unode = ulist_next(roots, &uiter))) {
1852 qg = find_qgroup_rb(fs_info, unode->val);
1853 if (!qg)
1854 continue;
1855
1856 ulist_reinit(tmp);
David Sterbaef2fff62016-10-26 16:23:50 +02001857 ret = ulist_add(qgroups, qg->qgroupid, qgroup_to_aux(qg),
Qu Wenruod810ef22015-04-12 16:52:34 +08001858 GFP_ATOMIC);
1859 if (ret < 0)
1860 return ret;
David Sterbaef2fff62016-10-26 16:23:50 +02001861 ret = ulist_add(tmp, qg->qgroupid, qgroup_to_aux(qg), GFP_ATOMIC);
Qu Wenruod810ef22015-04-12 16:52:34 +08001862 if (ret < 0)
1863 return ret;
1864 ULIST_ITER_INIT(&tmp_uiter);
1865 while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
1866 struct btrfs_qgroup_list *glist;
1867
David Sterbaef2fff62016-10-26 16:23:50 +02001868 qg = unode_aux_to_qgroup(tmp_unode);
Qu Wenruod810ef22015-04-12 16:52:34 +08001869 if (update_old)
1870 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
1871 else
1872 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
1873 list_for_each_entry(glist, &qg->groups, next_group) {
1874 ret = ulist_add(qgroups, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001875 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08001876 GFP_ATOMIC);
1877 if (ret < 0)
1878 return ret;
1879 ret = ulist_add(tmp, glist->group->qgroupid,
David Sterbaef2fff62016-10-26 16:23:50 +02001880 qgroup_to_aux(glist->group),
Qu Wenruod810ef22015-04-12 16:52:34 +08001881 GFP_ATOMIC);
1882 if (ret < 0)
1883 return ret;
1884 }
1885 }
1886 }
1887 return 0;
1888}
1889
Josef Bacikfcebe452014-05-13 17:30:47 -07001890/*
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001891 * Update qgroup rfer/excl counters.
1892 * Rfer update is easy, codes can explain themselves.
Qu Wenruoe69bcee2015-04-17 10:23:16 +08001893 *
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001894 * Excl update is tricky, the update is split into 2 part.
1895 * Part 1: Possible exclusive <-> sharing detect:
1896 * | A | !A |
1897 * -------------------------------------
1898 * B | * | - |
1899 * -------------------------------------
1900 * !B | + | ** |
1901 * -------------------------------------
1902 *
1903 * Conditions:
1904 * A: cur_old_roots < nr_old_roots (not exclusive before)
1905 * !A: cur_old_roots == nr_old_roots (possible exclusive before)
1906 * B: cur_new_roots < nr_new_roots (not exclusive now)
Nicholas D Steeves01327612016-05-19 21:18:45 -04001907 * !B: cur_new_roots == nr_new_roots (possible exclusive now)
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001908 *
1909 * Results:
1910 * +: Possible sharing -> exclusive -: Possible exclusive -> sharing
1911 * *: Definitely not changed. **: Possible unchanged.
1912 *
1913 * For !A and !B condition, the exception is cur_old/new_roots == 0 case.
1914 *
1915 * To make the logic clear, we first use condition A and B to split
1916 * combination into 4 results.
1917 *
1918 * Then, for result "+" and "-", check old/new_roots == 0 case, as in them
1919 * only on variant maybe 0.
1920 *
1921 * Lastly, check result **, since there are 2 variants maybe 0, split them
1922 * again(2x2).
1923 * But this time we don't need to consider other things, the codes and logic
1924 * is easy to understand now.
1925 */
1926static int qgroup_update_counters(struct btrfs_fs_info *fs_info,
1927 struct ulist *qgroups,
1928 u64 nr_old_roots,
1929 u64 nr_new_roots,
1930 u64 num_bytes, u64 seq)
1931{
1932 struct ulist_node *unode;
1933 struct ulist_iterator uiter;
1934 struct btrfs_qgroup *qg;
1935 u64 cur_new_count, cur_old_count;
1936
1937 ULIST_ITER_INIT(&uiter);
1938 while ((unode = ulist_next(qgroups, &uiter))) {
1939 bool dirty = false;
1940
David Sterbaef2fff62016-10-26 16:23:50 +02001941 qg = unode_aux_to_qgroup(unode);
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001942 cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
1943 cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
1944
Qu Wenruo8b317902018-04-30 15:04:44 +08001945 trace_qgroup_update_counters(fs_info, qg, cur_old_count,
1946 cur_new_count);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001947
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001948 /* Rfer update part */
1949 if (cur_old_count == 0 && cur_new_count > 0) {
1950 qg->rfer += num_bytes;
1951 qg->rfer_cmpr += num_bytes;
1952 dirty = true;
1953 }
1954 if (cur_old_count > 0 && cur_new_count == 0) {
1955 qg->rfer -= num_bytes;
1956 qg->rfer_cmpr -= num_bytes;
1957 dirty = true;
1958 }
1959
1960 /* Excl update part */
1961 /* Exclusive/none -> shared case */
1962 if (cur_old_count == nr_old_roots &&
1963 cur_new_count < nr_new_roots) {
1964 /* Exclusive -> shared */
1965 if (cur_old_count != 0) {
1966 qg->excl -= num_bytes;
1967 qg->excl_cmpr -= num_bytes;
1968 dirty = true;
1969 }
1970 }
1971
1972 /* Shared -> exclusive/none case */
1973 if (cur_old_count < nr_old_roots &&
1974 cur_new_count == nr_new_roots) {
1975 /* Shared->exclusive */
1976 if (cur_new_count != 0) {
1977 qg->excl += num_bytes;
1978 qg->excl_cmpr += num_bytes;
1979 dirty = true;
1980 }
1981 }
1982
1983 /* Exclusive/none -> exclusive/none case */
1984 if (cur_old_count == nr_old_roots &&
1985 cur_new_count == nr_new_roots) {
1986 if (cur_old_count == 0) {
1987 /* None -> exclusive/none */
1988
1989 if (cur_new_count != 0) {
1990 /* None -> exclusive */
1991 qg->excl += num_bytes;
1992 qg->excl_cmpr += num_bytes;
1993 dirty = true;
1994 }
1995 /* None -> none, nothing changed */
1996 } else {
1997 /* Exclusive -> exclusive/none */
1998
1999 if (cur_new_count == 0) {
2000 /* Exclusive -> none */
2001 qg->excl -= num_bytes;
2002 qg->excl_cmpr -= num_bytes;
2003 dirty = true;
2004 }
2005 /* Exclusive -> exclusive, nothing changed */
2006 }
2007 }
Qu Wenruoc05f9422015-08-03 14:44:29 +08002008
Qu Wenruo823ae5b2015-04-12 16:59:57 +08002009 if (dirty)
2010 qgroup_dirty(fs_info, qg);
2011 }
2012 return 0;
2013}
2014
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002015/*
2016 * Check if the @roots potentially is a list of fs tree roots
2017 *
2018 * Return 0 for definitely not a fs/subvol tree roots ulist
2019 * Return 1 for possible fs/subvol tree roots in the list (considering an empty
2020 * one as well)
2021 */
2022static int maybe_fs_roots(struct ulist *roots)
2023{
2024 struct ulist_node *unode;
2025 struct ulist_iterator uiter;
2026
2027 /* Empty one, still possible for fs roots */
2028 if (!roots || roots->nnodes == 0)
2029 return 1;
2030
2031 ULIST_ITER_INIT(&uiter);
2032 unode = ulist_next(roots, &uiter);
2033 if (!unode)
2034 return 1;
2035
2036 /*
2037 * If it contains fs tree roots, then it must belong to fs/subvol
2038 * trees.
2039 * If it contains a non-fs tree, it won't be shared with fs/subvol trees.
2040 */
2041 return is_fstree(unode->val);
2042}
2043
Qu Wenruo442244c2015-04-16 17:18:36 +08002044int
Qu Wenruo550d7a22015-04-16 15:37:33 +08002045btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans,
2046 struct btrfs_fs_info *fs_info,
2047 u64 bytenr, u64 num_bytes,
2048 struct ulist *old_roots, struct ulist *new_roots)
2049{
2050 struct ulist *qgroups = NULL;
2051 struct ulist *tmp = NULL;
2052 u64 seq;
2053 u64 nr_new_roots = 0;
2054 u64 nr_old_roots = 0;
2055 int ret = 0;
2056
David Sterba81353d52017-02-13 14:05:24 +01002057 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2058 return 0;
2059
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002060 if (new_roots) {
2061 if (!maybe_fs_roots(new_roots))
2062 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002063 nr_new_roots = new_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002064 }
2065 if (old_roots) {
2066 if (!maybe_fs_roots(old_roots))
2067 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002068 nr_old_roots = old_roots->nnodes;
Qu Wenruo5edfd9f2017-02-27 15:10:34 +08002069 }
2070
2071 /* Quick exit, either not fs tree roots, or won't affect any qgroup */
2072 if (nr_old_roots == 0 && nr_new_roots == 0)
2073 goto out_free;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002074
Qu Wenruo550d7a22015-04-16 15:37:33 +08002075 BUG_ON(!fs_info->quota_root);
2076
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08002077 trace_btrfs_qgroup_account_extent(fs_info, trans->transid, bytenr,
2078 num_bytes, nr_old_roots, nr_new_roots);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002079
Qu Wenruo550d7a22015-04-16 15:37:33 +08002080 qgroups = ulist_alloc(GFP_NOFS);
2081 if (!qgroups) {
2082 ret = -ENOMEM;
2083 goto out_free;
2084 }
2085 tmp = ulist_alloc(GFP_NOFS);
2086 if (!tmp) {
2087 ret = -ENOMEM;
2088 goto out_free;
2089 }
2090
2091 mutex_lock(&fs_info->qgroup_rescan_lock);
2092 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2093 if (fs_info->qgroup_rescan_progress.objectid <= bytenr) {
2094 mutex_unlock(&fs_info->qgroup_rescan_lock);
2095 ret = 0;
2096 goto out_free;
2097 }
2098 }
2099 mutex_unlock(&fs_info->qgroup_rescan_lock);
2100
2101 spin_lock(&fs_info->qgroup_lock);
2102 seq = fs_info->qgroup_seq;
2103
2104 /* Update old refcnts using old_roots */
2105 ret = qgroup_update_refcnt(fs_info, old_roots, tmp, qgroups, seq,
2106 UPDATE_OLD);
2107 if (ret < 0)
2108 goto out;
2109
2110 /* Update new refcnts using new_roots */
2111 ret = qgroup_update_refcnt(fs_info, new_roots, tmp, qgroups, seq,
2112 UPDATE_NEW);
2113 if (ret < 0)
2114 goto out;
2115
2116 qgroup_update_counters(fs_info, qgroups, nr_old_roots, nr_new_roots,
2117 num_bytes, seq);
2118
2119 /*
2120 * Bump qgroup_seq to avoid seq overlap
2121 */
2122 fs_info->qgroup_seq += max(nr_old_roots, nr_new_roots) + 1;
2123out:
2124 spin_unlock(&fs_info->qgroup_lock);
2125out_free:
2126 ulist_free(tmp);
2127 ulist_free(qgroups);
2128 ulist_free(old_roots);
2129 ulist_free(new_roots);
2130 return ret;
2131}
2132
Nikolay Borisov460fb202018-03-15 16:00:25 +02002133int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans)
Qu Wenruo550d7a22015-04-16 15:37:33 +08002134{
Nikolay Borisov460fb202018-03-15 16:00:25 +02002135 struct btrfs_fs_info *fs_info = trans->fs_info;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002136 struct btrfs_qgroup_extent_record *record;
2137 struct btrfs_delayed_ref_root *delayed_refs;
2138 struct ulist *new_roots = NULL;
2139 struct rb_node *node;
Qu Wenruo9086db82015-04-20 09:53:50 +08002140 u64 qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002141 int ret = 0;
2142
2143 delayed_refs = &trans->transaction->delayed_refs;
Qu Wenruo9086db82015-04-20 09:53:50 +08002144 qgroup_to_skip = delayed_refs->qgroup_to_skip;
Qu Wenruo550d7a22015-04-16 15:37:33 +08002145 while ((node = rb_first(&delayed_refs->dirty_extent_root))) {
2146 record = rb_entry(node, struct btrfs_qgroup_extent_record,
2147 node);
2148
Jeff Mahoneybc074522016-06-09 17:27:55 -04002149 trace_btrfs_qgroup_account_extents(fs_info, record);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07002150
Qu Wenruo550d7a22015-04-16 15:37:33 +08002151 if (!ret) {
2152 /*
Qu Wenruod1b8b942017-02-27 15:10:35 +08002153 * Old roots should be searched when inserting qgroup
2154 * extent record
2155 */
2156 if (WARN_ON(!record->old_roots)) {
2157 /* Search commit root to find old_roots */
2158 ret = btrfs_find_all_roots(NULL, fs_info,
2159 record->bytenr, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002160 &record->old_roots, false);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002161 if (ret < 0)
2162 goto cleanup;
2163 }
2164
2165 /*
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06002166 * Use SEQ_LAST as time_seq to do special search, which
Qu Wenruo550d7a22015-04-16 15:37:33 +08002167 * doesn't lock tree or delayed_refs and search current
2168 * root. It's safe inside commit_transaction().
2169 */
2170 ret = btrfs_find_all_roots(trans, fs_info,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002171 record->bytenr, SEQ_LAST, &new_roots, false);
Qu Wenruo550d7a22015-04-16 15:37:33 +08002172 if (ret < 0)
2173 goto cleanup;
Qu Wenruod1b8b942017-02-27 15:10:35 +08002174 if (qgroup_to_skip) {
Qu Wenruo9086db82015-04-20 09:53:50 +08002175 ulist_del(new_roots, qgroup_to_skip, 0);
Qu Wenruod1b8b942017-02-27 15:10:35 +08002176 ulist_del(record->old_roots, qgroup_to_skip,
2177 0);
2178 }
Qu Wenruo550d7a22015-04-16 15:37:33 +08002179 ret = btrfs_qgroup_account_extent(trans, fs_info,
2180 record->bytenr, record->num_bytes,
2181 record->old_roots, new_roots);
2182 record->old_roots = NULL;
2183 new_roots = NULL;
2184 }
2185cleanup:
2186 ulist_free(record->old_roots);
2187 ulist_free(new_roots);
2188 new_roots = NULL;
2189 rb_erase(node, &delayed_refs->dirty_extent_root);
2190 kfree(record);
2191
2192 }
2193 return ret;
2194}
2195
Josef Bacikfcebe452014-05-13 17:30:47 -07002196/*
Arne Jansenbed92ea2012-06-28 18:03:02 +02002197 * called from commit_transaction. Writes all changed qgroups to disk.
2198 */
2199int btrfs_run_qgroups(struct btrfs_trans_handle *trans,
2200 struct btrfs_fs_info *fs_info)
2201{
2202 struct btrfs_root *quota_root = fs_info->quota_root;
2203 int ret = 0;
2204
2205 if (!quota_root)
Nikolay Borisov5d235152018-01-31 10:52:04 +02002206 return ret;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002207
2208 spin_lock(&fs_info->qgroup_lock);
2209 while (!list_empty(&fs_info->dirty_qgroups)) {
2210 struct btrfs_qgroup *qgroup;
2211 qgroup = list_first_entry(&fs_info->dirty_qgroups,
2212 struct btrfs_qgroup, dirty);
2213 list_del_init(&qgroup->dirty);
2214 spin_unlock(&fs_info->qgroup_lock);
Lu Fengqi3e07e9a2018-07-18 14:45:28 +08002215 ret = update_qgroup_info_item(trans, qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002216 if (ret)
2217 fs_info->qgroup_flags |=
2218 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Lu Fengqiac8a8662018-07-18 14:45:27 +08002219 ret = update_qgroup_limit_item(trans, qgroup);
Dongsheng Yangd3001ed2014-11-20 21:04:56 -05002220 if (ret)
2221 fs_info->qgroup_flags |=
2222 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002223 spin_lock(&fs_info->qgroup_lock);
2224 }
Josef Bacikafcdd122016-09-02 15:40:02 -04002225 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Arne Jansenbed92ea2012-06-28 18:03:02 +02002226 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_ON;
2227 else
2228 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
2229 spin_unlock(&fs_info->qgroup_lock);
2230
Lu Fengqi2e980ac2018-07-18 14:45:29 +08002231 ret = update_qgroup_status_item(trans);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002232 if (ret)
2233 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2234
Arne Jansenbed92ea2012-06-28 18:03:02 +02002235 return ret;
2236}
2237
2238/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002239 * Copy the accounting information between qgroups. This is necessary
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002240 * when a snapshot or a subvolume is created. Throwing an error will
2241 * cause a transaction abort so we take extra care here to only error
2242 * when a readonly fs is a reasonable outcome.
Arne Jansenbed92ea2012-06-28 18:03:02 +02002243 */
2244int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans,
2245 struct btrfs_fs_info *fs_info, u64 srcid, u64 objectid,
2246 struct btrfs_qgroup_inherit *inherit)
2247{
2248 int ret = 0;
2249 int i;
2250 u64 *i_qgroups;
2251 struct btrfs_root *quota_root = fs_info->quota_root;
2252 struct btrfs_qgroup *srcgroup;
2253 struct btrfs_qgroup *dstgroup;
2254 u32 level_size = 0;
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002255 u64 nums;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002256
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002257 mutex_lock(&fs_info->qgroup_ioctl_lock);
Josef Bacikafcdd122016-09-02 15:40:02 -04002258 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002259 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002260
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002261 if (!quota_root) {
2262 ret = -EINVAL;
2263 goto out;
2264 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002265
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002266 if (inherit) {
2267 i_qgroups = (u64 *)(inherit + 1);
2268 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
2269 2 * inherit->num_excl_copies;
2270 for (i = 0; i < nums; ++i) {
2271 srcgroup = find_qgroup_rb(fs_info, *i_qgroups);
Dongsheng Yang09870d22014-11-11 07:18:22 -05002272
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002273 /*
2274 * Zero out invalid groups so we can ignore
2275 * them later.
2276 */
2277 if (!srcgroup ||
2278 ((srcgroup->qgroupid >> 48) <= (objectid >> 48)))
2279 *i_qgroups = 0ULL;
2280
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002281 ++i_qgroups;
2282 }
2283 }
2284
Arne Jansenbed92ea2012-06-28 18:03:02 +02002285 /*
2286 * create a tracking group for the subvol itself
2287 */
2288 ret = add_qgroup_item(trans, quota_root, objectid);
2289 if (ret)
2290 goto out;
2291
Arne Jansenbed92ea2012-06-28 18:03:02 +02002292 /*
2293 * add qgroup to all inherited groups
2294 */
2295 if (inherit) {
2296 i_qgroups = (u64 *)(inherit + 1);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002297 for (i = 0; i < inherit->num_qgroups; ++i, ++i_qgroups) {
2298 if (*i_qgroups == 0)
2299 continue;
Lu Fengqi711169c2018-07-18 14:45:24 +08002300 ret = add_qgroup_relation_item(trans, objectid,
2301 *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002302 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002303 goto out;
Lu Fengqi711169c2018-07-18 14:45:24 +08002304 ret = add_qgroup_relation_item(trans, *i_qgroups,
2305 objectid);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002306 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002307 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002308 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002309 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002310 }
2311
2312
2313 spin_lock(&fs_info->qgroup_lock);
2314
2315 dstgroup = add_qgroup_rb(fs_info, objectid);
Dan Carpenter57a5a882012-07-30 02:15:43 -06002316 if (IS_ERR(dstgroup)) {
2317 ret = PTR_ERR(dstgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002318 goto unlock;
Dan Carpenter57a5a882012-07-30 02:15:43 -06002319 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002320
Dongsheng Yange8c85412014-11-20 20:58:34 -05002321 if (inherit && inherit->flags & BTRFS_QGROUP_INHERIT_SET_LIMITS) {
Dongsheng Yange8c85412014-11-20 20:58:34 -05002322 dstgroup->lim_flags = inherit->lim.flags;
2323 dstgroup->max_rfer = inherit->lim.max_rfer;
2324 dstgroup->max_excl = inherit->lim.max_excl;
2325 dstgroup->rsv_rfer = inherit->lim.rsv_rfer;
2326 dstgroup->rsv_excl = inherit->lim.rsv_excl;
Dongsheng Yang1510e712014-11-20 21:01:41 -05002327
Lu Fengqiac8a8662018-07-18 14:45:27 +08002328 ret = update_qgroup_limit_item(trans, dstgroup);
Dongsheng Yang1510e712014-11-20 21:01:41 -05002329 if (ret) {
2330 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002331 btrfs_info(fs_info,
2332 "unable to update quota limit for %llu",
2333 dstgroup->qgroupid);
Dongsheng Yang1510e712014-11-20 21:01:41 -05002334 goto unlock;
2335 }
Dongsheng Yange8c85412014-11-20 20:58:34 -05002336 }
2337
Arne Jansenbed92ea2012-06-28 18:03:02 +02002338 if (srcid) {
2339 srcgroup = find_qgroup_rb(fs_info, srcid);
Chris Masonf3a87f12012-09-14 20:06:30 -04002340 if (!srcgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002341 goto unlock;
Josef Bacikfcebe452014-05-13 17:30:47 -07002342
2343 /*
2344 * We call inherit after we clone the root in order to make sure
2345 * our counts don't go crazy, so at this point the only
2346 * difference between the two roots should be the root node.
2347 */
Lu Fengqic8389d42018-07-17 16:58:22 +08002348 level_size = fs_info->nodesize;
Josef Bacikfcebe452014-05-13 17:30:47 -07002349 dstgroup->rfer = srcgroup->rfer;
2350 dstgroup->rfer_cmpr = srcgroup->rfer_cmpr;
2351 dstgroup->excl = level_size;
2352 dstgroup->excl_cmpr = level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002353 srcgroup->excl = level_size;
2354 srcgroup->excl_cmpr = level_size;
Dongsheng Yang3eeb4d52014-11-20 20:14:38 -05002355
2356 /* inherit the limit info */
2357 dstgroup->lim_flags = srcgroup->lim_flags;
2358 dstgroup->max_rfer = srcgroup->max_rfer;
2359 dstgroup->max_excl = srcgroup->max_excl;
2360 dstgroup->rsv_rfer = srcgroup->rsv_rfer;
2361 dstgroup->rsv_excl = srcgroup->rsv_excl;
2362
Arne Jansenbed92ea2012-06-28 18:03:02 +02002363 qgroup_dirty(fs_info, dstgroup);
2364 qgroup_dirty(fs_info, srcgroup);
2365 }
2366
Chris Masonf3a87f12012-09-14 20:06:30 -04002367 if (!inherit)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002368 goto unlock;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002369
2370 i_qgroups = (u64 *)(inherit + 1);
2371 for (i = 0; i < inherit->num_qgroups; ++i) {
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002372 if (*i_qgroups) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002373 ret = add_relation_rb(fs_info, objectid, *i_qgroups);
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002374 if (ret)
2375 goto unlock;
2376 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002377 ++i_qgroups;
2378 }
2379
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002380 for (i = 0; i < inherit->num_ref_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002381 struct btrfs_qgroup *src;
2382 struct btrfs_qgroup *dst;
2383
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002384 if (!i_qgroups[0] || !i_qgroups[1])
2385 continue;
2386
Arne Jansenbed92ea2012-06-28 18:03:02 +02002387 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2388 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2389
2390 if (!src || !dst) {
2391 ret = -EINVAL;
2392 goto unlock;
2393 }
2394
2395 dst->rfer = src->rfer - level_size;
2396 dst->rfer_cmpr = src->rfer_cmpr - level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002397 }
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002398 for (i = 0; i < inherit->num_excl_copies; ++i, i_qgroups += 2) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002399 struct btrfs_qgroup *src;
2400 struct btrfs_qgroup *dst;
2401
Mark Fasheh918c2ee2016-03-30 17:57:48 -07002402 if (!i_qgroups[0] || !i_qgroups[1])
2403 continue;
2404
Arne Jansenbed92ea2012-06-28 18:03:02 +02002405 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2406 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2407
2408 if (!src || !dst) {
2409 ret = -EINVAL;
2410 goto unlock;
2411 }
2412
2413 dst->excl = src->excl + level_size;
2414 dst->excl_cmpr = src->excl_cmpr + level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002415 }
2416
2417unlock:
2418 spin_unlock(&fs_info->qgroup_lock);
2419out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002420 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002421 return ret;
2422}
2423
Qu Wenruoa514d632017-12-22 16:06:39 +08002424/*
2425 * Two limits to commit transaction in advance.
2426 *
2427 * For RATIO, it will be 1/RATIO of the remaining limit
2428 * (excluding data and prealloc meta) as threshold.
2429 * For SIZE, it will be in byte unit as threshold.
2430 */
2431#define QGROUP_PERTRANS_RATIO 32
2432#define QGROUP_PERTRANS_SIZE SZ_32M
2433static bool qgroup_check_limits(struct btrfs_fs_info *fs_info,
2434 const struct btrfs_qgroup *qg, u64 num_bytes)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002435{
Qu Wenruoa514d632017-12-22 16:06:39 +08002436 u64 limit;
2437 u64 threshold;
2438
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002439 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002440 qgroup_rsv_total(qg) + (s64)qg->rfer + num_bytes > qg->max_rfer)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002441 return false;
2442
2443 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
Qu Wenruodba21322017-12-12 15:34:25 +08002444 qgroup_rsv_total(qg) + (s64)qg->excl + num_bytes > qg->max_excl)
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002445 return false;
2446
Qu Wenruoa514d632017-12-22 16:06:39 +08002447 /*
2448 * Even if we passed the check, it's better to check if reservation
2449 * for meta_pertrans is pushing us near limit.
2450 * If there is too much pertrans reservation or it's near the limit,
2451 * let's try commit transaction to free some, using transaction_kthread
2452 */
2453 if ((qg->lim_flags & (BTRFS_QGROUP_LIMIT_MAX_RFER |
2454 BTRFS_QGROUP_LIMIT_MAX_EXCL))) {
2455 if (qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL)
2456 limit = qg->max_excl;
2457 else
2458 limit = qg->max_rfer;
2459 threshold = (limit - qg->rsv.values[BTRFS_QGROUP_RSV_DATA] -
2460 qg->rsv.values[BTRFS_QGROUP_RSV_META_PREALLOC]) /
2461 QGROUP_PERTRANS_RATIO;
2462 threshold = min_t(u64, threshold, QGROUP_PERTRANS_SIZE);
2463
2464 /*
2465 * Use transaction_kthread to commit transaction, so we no
2466 * longer need to bother nested transaction nor lock context.
2467 */
2468 if (qg->rsv.values[BTRFS_QGROUP_RSV_META_PERTRANS] > threshold)
2469 btrfs_commit_transaction_locksafe(fs_info);
2470 }
2471
Jeff Mahoney003d7c52017-01-25 09:50:33 -05002472 return true;
2473}
2474
Qu Wenruodba21322017-12-12 15:34:25 +08002475static int qgroup_reserve(struct btrfs_root *root, u64 num_bytes, bool enforce,
2476 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002477{
2478 struct btrfs_root *quota_root;
2479 struct btrfs_qgroup *qgroup;
2480 struct btrfs_fs_info *fs_info = root->fs_info;
2481 u64 ref_root = root->root_key.objectid;
2482 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002483 struct ulist_node *unode;
2484 struct ulist_iterator uiter;
2485
2486 if (!is_fstree(ref_root))
2487 return 0;
2488
2489 if (num_bytes == 0)
2490 return 0;
Sargun Dhillonf29efe22017-05-11 21:17:33 +00002491
2492 if (test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags) &&
2493 capable(CAP_SYS_RESOURCE))
2494 enforce = false;
2495
Arne Jansenbed92ea2012-06-28 18:03:02 +02002496 spin_lock(&fs_info->qgroup_lock);
2497 quota_root = fs_info->quota_root;
2498 if (!quota_root)
2499 goto out;
2500
2501 qgroup = find_qgroup_rb(fs_info, ref_root);
2502 if (!qgroup)
2503 goto out;
2504
2505 /*
2506 * in a first step, we check all affected qgroups if any limits would
2507 * be exceeded
2508 */
Wang Shilong1e8f9152013-05-06 11:03:27 +00002509 ulist_reinit(fs_info->qgroup_ulist);
2510 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002511 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002512 if (ret < 0)
2513 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002514 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002515 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002516 struct btrfs_qgroup *qg;
2517 struct btrfs_qgroup_list *glist;
2518
David Sterbaef2fff62016-10-26 16:23:50 +02002519 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002520
Qu Wenruoa514d632017-12-22 16:06:39 +08002521 if (enforce && !qgroup_check_limits(fs_info, qg, num_bytes)) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002522 ret = -EDQUOT;
Wang Shilong720f1e22013-03-06 11:51:47 +00002523 goto out;
2524 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002525
2526 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002527 ret = ulist_add(fs_info->qgroup_ulist,
2528 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002529 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002530 if (ret < 0)
2531 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002532 }
2533 }
Wang Shilong3c971852013-04-17 14:00:36 +00002534 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002535 /*
2536 * no limits exceeded, now record the reservation into all qgroups
2537 */
2538 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002539 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002540 struct btrfs_qgroup *qg;
2541
David Sterbaef2fff62016-10-26 16:23:50 +02002542 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002543
Qu Wenruo64ee4e72017-12-12 15:34:27 +08002544 trace_qgroup_update_reserve(fs_info, qg, num_bytes, type);
2545 qgroup_rsv_add(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002546 }
2547
2548out:
2549 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002550 return ret;
2551}
2552
Qu Wenruoe1211d02017-12-12 15:34:30 +08002553/*
2554 * Free @num_bytes of reserved space with @type for qgroup. (Normally level 0
2555 * qgroup).
2556 *
2557 * Will handle all higher level qgroup too.
2558 *
2559 * NOTE: If @num_bytes is (u64)-1, this means to free all bytes of this qgroup.
2560 * This special case is only used for META_PERTRANS type.
2561 */
Qu Wenruo297d7502015-09-08 17:08:37 +08002562void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
Qu Wenruod4e5c922017-12-12 15:34:23 +08002563 u64 ref_root, u64 num_bytes,
2564 enum btrfs_qgroup_rsv_type type)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002565{
2566 struct btrfs_root *quota_root;
2567 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002568 struct ulist_node *unode;
2569 struct ulist_iterator uiter;
Wang Shilong3c971852013-04-17 14:00:36 +00002570 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002571
2572 if (!is_fstree(ref_root))
2573 return;
2574
2575 if (num_bytes == 0)
2576 return;
2577
Qu Wenruoe1211d02017-12-12 15:34:30 +08002578 if (num_bytes == (u64)-1 && type != BTRFS_QGROUP_RSV_META_PERTRANS) {
2579 WARN(1, "%s: Invalid type to free", __func__);
2580 return;
2581 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002582 spin_lock(&fs_info->qgroup_lock);
2583
2584 quota_root = fs_info->quota_root;
2585 if (!quota_root)
2586 goto out;
2587
2588 qgroup = find_qgroup_rb(fs_info, ref_root);
2589 if (!qgroup)
2590 goto out;
2591
Qu Wenruoe1211d02017-12-12 15:34:30 +08002592 if (num_bytes == (u64)-1)
Qu Wenruo82874752017-12-12 15:34:34 +08002593 /*
2594 * We're freeing all pertrans rsv, get reserved value from
2595 * level 0 qgroup as real num_bytes to free.
2596 */
Qu Wenruoe1211d02017-12-12 15:34:30 +08002597 num_bytes = qgroup->rsv.values[type];
2598
Wang Shilong1e8f9152013-05-06 11:03:27 +00002599 ulist_reinit(fs_info->qgroup_ulist);
2600 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002601 qgroup_to_aux(qgroup), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002602 if (ret < 0)
2603 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002604 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002605 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002606 struct btrfs_qgroup *qg;
2607 struct btrfs_qgroup_list *glist;
2608
David Sterbaef2fff62016-10-26 16:23:50 +02002609 qg = unode_aux_to_qgroup(unode);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002610
Qu Wenruo64ee4e72017-12-12 15:34:27 +08002611 trace_qgroup_update_reserve(fs_info, qg, -(s64)num_bytes, type);
2612 qgroup_rsv_release(fs_info, qg, num_bytes, type);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002613
2614 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002615 ret = ulist_add(fs_info->qgroup_ulist,
2616 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02002617 qgroup_to_aux(glist->group), GFP_ATOMIC);
Wang Shilong3c971852013-04-17 14:00:36 +00002618 if (ret < 0)
2619 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002620 }
2621 }
2622
2623out:
2624 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002625}
2626
Jan Schmidt2f232032013-04-25 16:04:51 +00002627/*
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002628 * Check if the leaf is the last leaf. Which means all node pointers
2629 * are at their last position.
2630 */
2631static bool is_last_leaf(struct btrfs_path *path)
2632{
2633 int i;
2634
2635 for (i = 1; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
2636 if (path->slots[i] != btrfs_header_nritems(path->nodes[i]) - 1)
2637 return false;
2638 }
2639 return true;
2640}
2641
2642/*
Jan Schmidt2f232032013-04-25 16:04:51 +00002643 * returns < 0 on error, 0 when more leafs are to be scanned.
Qu Wenruo33931682015-02-27 16:24:24 +08002644 * returns 1 when done.
Jan Schmidt2f232032013-04-25 16:04:51 +00002645 */
2646static int
Jan Schmidtb382a322013-05-28 15:47:24 +00002647qgroup_rescan_leaf(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002648 struct btrfs_trans_handle *trans)
Jan Schmidt2f232032013-04-25 16:04:51 +00002649{
2650 struct btrfs_key found;
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002651 struct extent_buffer *scratch_leaf = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00002652 struct ulist *roots = NULL;
Josef Bacikfcebe452014-05-13 17:30:47 -07002653 u64 num_bytes;
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002654 bool done;
Jan Schmidt2f232032013-04-25 16:04:51 +00002655 int slot;
2656 int ret;
2657
Jan Schmidt2f232032013-04-25 16:04:51 +00002658 mutex_lock(&fs_info->qgroup_rescan_lock);
2659 ret = btrfs_search_slot_for_read(fs_info->extent_root,
2660 &fs_info->qgroup_rescan_progress,
2661 path, 1, 0);
2662
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002663 btrfs_debug(fs_info,
2664 "current progress key (%llu %u %llu), search_slot ret %d",
2665 fs_info->qgroup_rescan_progress.objectid,
2666 fs_info->qgroup_rescan_progress.type,
2667 fs_info->qgroup_rescan_progress.offset, ret);
Jan Schmidt2f232032013-04-25 16:04:51 +00002668
2669 if (ret) {
2670 /*
2671 * The rescan is about to end, we will not be scanning any
2672 * further blocks. We cannot unset the RESCAN flag here, because
2673 * we want to commit the transaction if everything went well.
2674 * To make the live accounting work in this phase, we set our
2675 * scan progress pointer such that every real extent objectid
2676 * will be smaller.
2677 */
2678 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2679 btrfs_release_path(path);
2680 mutex_unlock(&fs_info->qgroup_rescan_lock);
2681 return ret;
2682 }
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002683 done = is_last_leaf(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00002684
2685 btrfs_item_key_to_cpu(path->nodes[0], &found,
2686 btrfs_header_nritems(path->nodes[0]) - 1);
2687 fs_info->qgroup_rescan_progress.objectid = found.objectid + 1;
2688
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002689 scratch_leaf = btrfs_clone_extent_buffer(path->nodes[0]);
2690 if (!scratch_leaf) {
2691 ret = -ENOMEM;
2692 mutex_unlock(&fs_info->qgroup_rescan_lock);
2693 goto out;
2694 }
2695 extent_buffer_get(scratch_leaf);
2696 btrfs_tree_read_lock(scratch_leaf);
2697 btrfs_set_lock_blocking_rw(scratch_leaf, BTRFS_READ_LOCK);
Jan Schmidt2f232032013-04-25 16:04:51 +00002698 slot = path->slots[0];
2699 btrfs_release_path(path);
2700 mutex_unlock(&fs_info->qgroup_rescan_lock);
2701
2702 for (; slot < btrfs_header_nritems(scratch_leaf); ++slot) {
2703 btrfs_item_key_to_cpu(scratch_leaf, &found, slot);
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002704 if (found.type != BTRFS_EXTENT_ITEM_KEY &&
2705 found.type != BTRFS_METADATA_ITEM_KEY)
Jan Schmidt2f232032013-04-25 16:04:51 +00002706 continue;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002707 if (found.type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoneyda170662016-06-15 09:22:56 -04002708 num_bytes = fs_info->nodesize;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002709 else
2710 num_bytes = found.offset;
2711
Josef Bacikfcebe452014-05-13 17:30:47 -07002712 ret = btrfs_find_all_roots(NULL, fs_info, found.objectid, 0,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002713 &roots, false);
Jan Schmidt2f232032013-04-25 16:04:51 +00002714 if (ret < 0)
2715 goto out;
Qu Wenruo9d220c92015-04-13 11:02:16 +08002716 /* For rescan, just pass old_roots as NULL */
2717 ret = btrfs_qgroup_account_extent(trans, fs_info,
2718 found.objectid, num_bytes, NULL, roots);
2719 if (ret < 0)
Jan Schmidt2f232032013-04-25 16:04:51 +00002720 goto out;
Jan Schmidt2f232032013-04-25 16:04:51 +00002721 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002722out:
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002723 if (scratch_leaf) {
2724 btrfs_tree_read_unlock_blocking(scratch_leaf);
2725 free_extent_buffer(scratch_leaf);
2726 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002727
Qu Wenruo6f7de192018-06-27 18:19:55 +08002728 if (done && !ret) {
Qu Wenruoff3d27a02018-05-14 09:38:13 +08002729 ret = 1;
Qu Wenruo6f7de192018-06-27 18:19:55 +08002730 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2731 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002732 return ret;
2733}
2734
Qu Wenruod458b052014-02-28 10:46:19 +08002735static void btrfs_qgroup_rescan_worker(struct btrfs_work *work)
Jan Schmidt2f232032013-04-25 16:04:51 +00002736{
Jan Schmidtb382a322013-05-28 15:47:24 +00002737 struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info,
2738 qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00002739 struct btrfs_path *path;
2740 struct btrfs_trans_handle *trans = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00002741 int err = -ENOMEM;
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002742 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00002743
2744 path = btrfs_alloc_path();
2745 if (!path)
2746 goto out;
Qu Wenruob6debf12018-05-14 09:38:12 +08002747 /*
2748 * Rescan should only search for commit root, and any later difference
2749 * should be recorded by qgroup
2750 */
2751 path->search_commit_root = 1;
2752 path->skip_locking = 1;
Jan Schmidt2f232032013-04-25 16:04:51 +00002753
2754 err = 0;
Justin Maggard7343dd62015-11-04 15:56:16 -08002755 while (!err && !btrfs_fs_closing(fs_info)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002756 trans = btrfs_start_transaction(fs_info->fs_root, 0);
2757 if (IS_ERR(trans)) {
2758 err = PTR_ERR(trans);
2759 break;
2760 }
Josef Bacikafcdd122016-09-02 15:40:02 -04002761 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002762 err = -EINTR;
2763 } else {
Qu Wenruo0a0e8b892015-10-26 09:19:43 +08002764 err = qgroup_rescan_leaf(fs_info, path, trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002765 }
2766 if (err > 0)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002767 btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002768 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002769 btrfs_end_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00002770 }
2771
2772out:
Jan Schmidt2f232032013-04-25 16:04:51 +00002773 btrfs_free_path(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00002774
2775 mutex_lock(&fs_info->qgroup_rescan_lock);
Justin Maggard7343dd62015-11-04 15:56:16 -08002776 if (!btrfs_fs_closing(fs_info))
2777 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidt2f232032013-04-25 16:04:51 +00002778
Qu Wenruo33931682015-02-27 16:24:24 +08002779 if (err > 0 &&
Jan Schmidt2f232032013-04-25 16:04:51 +00002780 fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT) {
2781 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2782 } else if (err < 0) {
2783 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2784 }
2785 mutex_unlock(&fs_info->qgroup_rescan_lock);
2786
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002787 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002788 * only update status, since the previous part has already updated the
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002789 * qgroup info.
2790 */
2791 trans = btrfs_start_transaction(fs_info->quota_root, 1);
2792 if (IS_ERR(trans)) {
2793 err = PTR_ERR(trans);
2794 btrfs_err(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02002795 "fail to start transaction for status update: %d",
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002796 err);
2797 goto done;
2798 }
Lu Fengqi2e980ac2018-07-18 14:45:29 +08002799 ret = update_qgroup_status_item(trans);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002800 if (ret < 0) {
2801 err = ret;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002802 btrfs_err(fs_info, "fail to update qgroup status: %d", err);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002803 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002804 btrfs_end_transaction(trans);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002805
Justin Maggard7343dd62015-11-04 15:56:16 -08002806 if (btrfs_fs_closing(fs_info)) {
2807 btrfs_info(fs_info, "qgroup scan paused");
2808 } else if (err >= 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002809 btrfs_info(fs_info, "qgroup scan completed%s",
Qu Wenruo33931682015-02-27 16:24:24 +08002810 err > 0 ? " (inconsistency flag cleared)" : "");
Jan Schmidt2f232032013-04-25 16:04:51 +00002811 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05002812 btrfs_err(fs_info, "qgroup scan failed with %d", err);
Jan Schmidt2f232032013-04-25 16:04:51 +00002813 }
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002814
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002815done:
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04002816 mutex_lock(&fs_info->qgroup_rescan_lock);
2817 fs_info->qgroup_rescan_running = false;
2818 mutex_unlock(&fs_info->qgroup_rescan_lock);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002819 complete_all(&fs_info->qgroup_rescan_completion);
Jan Schmidt2f232032013-04-25 16:04:51 +00002820}
2821
Jan Schmidtb382a322013-05-28 15:47:24 +00002822/*
2823 * Checks that (a) no rescan is running and (b) quota is enabled. Allocates all
2824 * memory required for the rescan context.
2825 */
2826static int
2827qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
2828 int init_flags)
Jan Schmidt2f232032013-04-25 16:04:51 +00002829{
2830 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00002831
Qu Wenruo9593bf492018-05-02 13:28:03 +08002832 if (!init_flags) {
2833 /* we're resuming qgroup rescan at mount time */
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002834 if (!(fs_info->qgroup_flags &
2835 BTRFS_QGROUP_STATUS_FLAG_RESCAN)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002836 btrfs_warn(fs_info,
2837 "qgroup rescan init failed, qgroup is not enabled");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002838 ret = -EINVAL;
2839 } else if (!(fs_info->qgroup_flags &
2840 BTRFS_QGROUP_STATUS_FLAG_ON)) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002841 btrfs_warn(fs_info,
2842 "qgroup rescan init failed, qgroup rescan is not queued");
Filipe Mananae4e7ede2018-06-27 00:43:15 +01002843 ret = -EINVAL;
2844 }
2845
2846 if (ret)
2847 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00002848 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002849
2850 mutex_lock(&fs_info->qgroup_rescan_lock);
2851 spin_lock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00002852
2853 if (init_flags) {
Qu Wenruo9593bf492018-05-02 13:28:03 +08002854 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2855 btrfs_warn(fs_info,
2856 "qgroup rescan is already in progress");
Jan Schmidtb382a322013-05-28 15:47:24 +00002857 ret = -EINPROGRESS;
Qu Wenruo9593bf492018-05-02 13:28:03 +08002858 } else if (!(fs_info->qgroup_flags &
2859 BTRFS_QGROUP_STATUS_FLAG_ON)) {
2860 btrfs_warn(fs_info,
2861 "qgroup rescan init failed, qgroup is not enabled");
Jan Schmidtb382a322013-05-28 15:47:24 +00002862 ret = -EINVAL;
Qu Wenruo9593bf492018-05-02 13:28:03 +08002863 }
Jan Schmidtb382a322013-05-28 15:47:24 +00002864
2865 if (ret) {
2866 spin_unlock(&fs_info->qgroup_lock);
2867 mutex_unlock(&fs_info->qgroup_rescan_lock);
Qu Wenruo9593bf492018-05-02 13:28:03 +08002868 return ret;
Jan Schmidtb382a322013-05-28 15:47:24 +00002869 }
Jan Schmidtb382a322013-05-28 15:47:24 +00002870 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2871 }
2872
2873 memset(&fs_info->qgroup_rescan_progress, 0,
2874 sizeof(fs_info->qgroup_rescan_progress));
2875 fs_info->qgroup_rescan_progress.objectid = progress_objectid;
Filipe Manana190631f2015-11-05 10:06:23 +00002876 init_completion(&fs_info->qgroup_rescan_completion);
Filipe Manana8d9edda2016-11-24 02:09:04 +00002877 fs_info->qgroup_rescan_running = true;
Jan Schmidtb382a322013-05-28 15:47:24 +00002878
2879 spin_unlock(&fs_info->qgroup_lock);
2880 mutex_unlock(&fs_info->qgroup_rescan_lock);
2881
Jan Schmidtb382a322013-05-28 15:47:24 +00002882 memset(&fs_info->qgroup_rescan_work, 0,
2883 sizeof(fs_info->qgroup_rescan_work));
Qu Wenruofc97fab2014-02-28 10:46:16 +08002884 btrfs_init_work(&fs_info->qgroup_rescan_work,
Liu Bo9e0af232014-08-15 23:36:53 +08002885 btrfs_qgroup_rescan_helper,
Qu Wenruofc97fab2014-02-28 10:46:16 +08002886 btrfs_qgroup_rescan_worker, NULL, NULL);
Jan Schmidtb382a322013-05-28 15:47:24 +00002887 return 0;
2888}
Jan Schmidt2f232032013-04-25 16:04:51 +00002889
Jan Schmidtb382a322013-05-28 15:47:24 +00002890static void
2891qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info)
2892{
2893 struct rb_node *n;
2894 struct btrfs_qgroup *qgroup;
2895
2896 spin_lock(&fs_info->qgroup_lock);
Jan Schmidt2f232032013-04-25 16:04:51 +00002897 /* clear all current qgroup tracking information */
2898 for (n = rb_first(&fs_info->qgroup_tree); n; n = rb_next(n)) {
2899 qgroup = rb_entry(n, struct btrfs_qgroup, node);
2900 qgroup->rfer = 0;
2901 qgroup->rfer_cmpr = 0;
2902 qgroup->excl = 0;
2903 qgroup->excl_cmpr = 0;
2904 }
2905 spin_unlock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00002906}
Jan Schmidt2f232032013-04-25 16:04:51 +00002907
Jan Schmidtb382a322013-05-28 15:47:24 +00002908int
2909btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info)
2910{
2911 int ret = 0;
2912 struct btrfs_trans_handle *trans;
2913
2914 ret = qgroup_rescan_init(fs_info, 0, 1);
2915 if (ret)
2916 return ret;
2917
2918 /*
2919 * We have set the rescan_progress to 0, which means no more
2920 * delayed refs will be accounted by btrfs_qgroup_account_ref.
2921 * However, btrfs_qgroup_account_ref may be right after its call
2922 * to btrfs_find_all_roots, in which case it would still do the
2923 * accounting.
2924 * To solve this, we're committing the transaction, which will
2925 * ensure we run all delayed refs and only after that, we are
2926 * going to clear all tracking information for a clean start.
2927 */
2928
2929 trans = btrfs_join_transaction(fs_info->fs_root);
2930 if (IS_ERR(trans)) {
2931 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2932 return PTR_ERR(trans);
2933 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002934 ret = btrfs_commit_transaction(trans);
Jan Schmidtb382a322013-05-28 15:47:24 +00002935 if (ret) {
2936 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2937 return ret;
2938 }
2939
2940 qgroup_rescan_zero_tracking(fs_info);
2941
Qu Wenruofc97fab2014-02-28 10:46:16 +08002942 btrfs_queue_work(fs_info->qgroup_rescan_workers,
2943 &fs_info->qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00002944
2945 return 0;
2946}
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002947
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002948int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
2949 bool interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002950{
2951 int running;
2952 int ret = 0;
2953
2954 mutex_lock(&fs_info->qgroup_rescan_lock);
2955 spin_lock(&fs_info->qgroup_lock);
Jeff Mahoneyd2c609b2016-08-15 12:10:33 -04002956 running = fs_info->qgroup_rescan_running;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002957 spin_unlock(&fs_info->qgroup_lock);
2958 mutex_unlock(&fs_info->qgroup_rescan_lock);
2959
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002960 if (!running)
2961 return 0;
2962
2963 if (interruptible)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002964 ret = wait_for_completion_interruptible(
2965 &fs_info->qgroup_rescan_completion);
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04002966 else
2967 wait_for_completion(&fs_info->qgroup_rescan_completion);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00002968
2969 return ret;
2970}
Jan Schmidtb382a322013-05-28 15:47:24 +00002971
2972/*
2973 * this is only called from open_ctree where we're still single threaded, thus
2974 * locking is omitted here.
2975 */
2976void
2977btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info)
2978{
2979 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN)
Qu Wenruofc97fab2014-02-28 10:46:16 +08002980 btrfs_queue_work(fs_info->qgroup_rescan_workers,
2981 &fs_info->qgroup_rescan_work);
Jan Schmidtb382a322013-05-28 15:47:24 +00002982}
Qu Wenruo52472552015-10-12 16:05:40 +08002983
2984/*
2985 * Reserve qgroup space for range [start, start + len).
2986 *
2987 * This function will either reserve space from related qgroups or doing
2988 * nothing if the range is already reserved.
2989 *
2990 * Return 0 for successful reserve
2991 * Return <0 for error (including -EQUOT)
2992 *
2993 * NOTE: this function may sleep for memory allocation.
Qu Wenruo364ecf32017-02-27 15:10:38 +08002994 * if btrfs_qgroup_reserve_data() is called multiple times with
2995 * same @reserved, caller must ensure when error happens it's OK
2996 * to free *ALL* reserved space.
Qu Wenruo52472552015-10-12 16:05:40 +08002997 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08002998int btrfs_qgroup_reserve_data(struct inode *inode,
2999 struct extent_changeset **reserved_ret, u64 start,
3000 u64 len)
Qu Wenruo52472552015-10-12 16:05:40 +08003001{
3002 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo52472552015-10-12 16:05:40 +08003003 struct ulist_node *unode;
3004 struct ulist_iterator uiter;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003005 struct extent_changeset *reserved;
3006 u64 orig_reserved;
3007 u64 to_reserve;
Qu Wenruo52472552015-10-12 16:05:40 +08003008 int ret;
3009
Josef Bacikafcdd122016-09-02 15:40:02 -04003010 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags) ||
3011 !is_fstree(root->objectid) || len == 0)
Qu Wenruo52472552015-10-12 16:05:40 +08003012 return 0;
3013
Qu Wenruo364ecf32017-02-27 15:10:38 +08003014 /* @reserved parameter is mandatory for qgroup */
3015 if (WARN_ON(!reserved_ret))
3016 return -EINVAL;
3017 if (!*reserved_ret) {
3018 *reserved_ret = extent_changeset_alloc();
3019 if (!*reserved_ret)
3020 return -ENOMEM;
3021 }
3022 reserved = *reserved_ret;
3023 /* Record already reserved space */
3024 orig_reserved = reserved->bytes_changed;
Qu Wenruo52472552015-10-12 16:05:40 +08003025 ret = set_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003026 start + len -1, EXTENT_QGROUP_RESERVED, reserved);
3027
3028 /* Newly reserved space */
3029 to_reserve = reserved->bytes_changed - orig_reserved;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003030 trace_btrfs_qgroup_reserve_data(inode, start, len,
Qu Wenruo364ecf32017-02-27 15:10:38 +08003031 to_reserve, QGROUP_RESERVE);
Qu Wenruo52472552015-10-12 16:05:40 +08003032 if (ret < 0)
3033 goto cleanup;
Qu Wenruodba21322017-12-12 15:34:25 +08003034 ret = qgroup_reserve(root, to_reserve, true, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo52472552015-10-12 16:05:40 +08003035 if (ret < 0)
3036 goto cleanup;
3037
Qu Wenruo52472552015-10-12 16:05:40 +08003038 return ret;
3039
3040cleanup:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003041 /* cleanup *ALL* already reserved ranges */
Qu Wenruo52472552015-10-12 16:05:40 +08003042 ULIST_ITER_INIT(&uiter);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003043 while ((unode = ulist_next(&reserved->range_changed, &uiter)))
Qu Wenruo52472552015-10-12 16:05:40 +08003044 clear_extent_bit(&BTRFS_I(inode)->io_tree, unode->val,
David Sterbaae0f1622017-10-31 16:37:52 +01003045 unode->aux, EXTENT_QGROUP_RESERVED, 0, 0, NULL);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003046 extent_changeset_release(reserved);
Qu Wenruo52472552015-10-12 16:05:40 +08003047 return ret;
3048}
Qu Wenruof695fdc2015-10-12 16:28:06 +08003049
Qu Wenruobc42bda2017-02-27 15:10:39 +08003050/* Free ranges specified by @reserved, normally in error path */
3051static int qgroup_free_reserved_data(struct inode *inode,
3052 struct extent_changeset *reserved, u64 start, u64 len)
3053{
3054 struct btrfs_root *root = BTRFS_I(inode)->root;
3055 struct ulist_node *unode;
3056 struct ulist_iterator uiter;
3057 struct extent_changeset changeset;
3058 int freed = 0;
3059 int ret;
3060
3061 extent_changeset_init(&changeset);
3062 len = round_up(start + len, root->fs_info->sectorsize);
3063 start = round_down(start, root->fs_info->sectorsize);
3064
3065 ULIST_ITER_INIT(&uiter);
3066 while ((unode = ulist_next(&reserved->range_changed, &uiter))) {
3067 u64 range_start = unode->val;
3068 /* unode->aux is the inclusive end */
3069 u64 range_len = unode->aux - range_start + 1;
3070 u64 free_start;
3071 u64 free_len;
3072
3073 extent_changeset_release(&changeset);
3074
3075 /* Only free range in range [start, start + len) */
3076 if (range_start >= start + len ||
3077 range_start + range_len <= start)
3078 continue;
3079 free_start = max(range_start, start);
3080 free_len = min(start + len, range_start + range_len) -
3081 free_start;
3082 /*
3083 * TODO: To also modify reserved->ranges_reserved to reflect
3084 * the modification.
3085 *
3086 * However as long as we free qgroup reserved according to
3087 * EXTENT_QGROUP_RESERVED, we won't double free.
3088 * So not need to rush.
3089 */
3090 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_failure_tree,
3091 free_start, free_start + free_len - 1,
3092 EXTENT_QGROUP_RESERVED, &changeset);
3093 if (ret < 0)
3094 goto out;
3095 freed += changeset.bytes_changed;
3096 }
Qu Wenruod4e5c922017-12-12 15:34:23 +08003097 btrfs_qgroup_free_refroot(root->fs_info, root->objectid, freed,
3098 BTRFS_QGROUP_RSV_DATA);
Qu Wenruobc42bda2017-02-27 15:10:39 +08003099 ret = freed;
3100out:
3101 extent_changeset_release(&changeset);
3102 return ret;
3103}
3104
3105static int __btrfs_qgroup_release_data(struct inode *inode,
3106 struct extent_changeset *reserved, u64 start, u64 len,
3107 int free)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003108{
3109 struct extent_changeset changeset;
Qu Wenruo81fb6f72015-09-28 16:57:53 +08003110 int trace_op = QGROUP_RELEASE;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003111 int ret;
3112
Qu Wenruobc42bda2017-02-27 15:10:39 +08003113 /* In release case, we shouldn't have @reserved */
3114 WARN_ON(!free && reserved);
3115 if (free && reserved)
3116 return qgroup_free_reserved_data(inode, reserved, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003117 extent_changeset_init(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003118 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
David Sterbaf734c442016-04-26 23:54:39 +02003119 start + len -1, EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003120 if (ret < 0)
3121 goto out;
3122
Qu Wenruod51ea5d2017-03-13 15:52:09 +08003123 if (free)
3124 trace_op = QGROUP_FREE;
3125 trace_btrfs_qgroup_release_data(inode, start, len,
3126 changeset.bytes_changed, trace_op);
3127 if (free)
David Sterba0b08e1f2017-02-13 14:24:35 +01003128 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3129 BTRFS_I(inode)->root->objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003130 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08003131 ret = changeset.bytes_changed;
Qu Wenruof695fdc2015-10-12 16:28:06 +08003132out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08003133 extent_changeset_release(&changeset);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003134 return ret;
3135}
3136
3137/*
3138 * Free a reserved space range from io_tree and related qgroups
3139 *
3140 * Should be called when a range of pages get invalidated before reaching disk.
3141 * Or for error cleanup case.
Qu Wenruobc42bda2017-02-27 15:10:39 +08003142 * if @reserved is given, only reserved range in [@start, @start + @len) will
3143 * be freed.
Qu Wenruof695fdc2015-10-12 16:28:06 +08003144 *
3145 * For data written to disk, use btrfs_qgroup_release_data().
3146 *
3147 * NOTE: This function may sleep for memory allocation.
3148 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003149int btrfs_qgroup_free_data(struct inode *inode,
3150 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruof695fdc2015-10-12 16:28:06 +08003151{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003152 return __btrfs_qgroup_release_data(inode, reserved, start, len, 1);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003153}
3154
3155/*
3156 * Release a reserved space range from io_tree only.
3157 *
3158 * Should be called when a range of pages get written to disk and corresponding
3159 * FILE_EXTENT is inserted into corresponding root.
3160 *
3161 * Since new qgroup accounting framework will only update qgroup numbers at
3162 * commit_transaction() time, its reserved space shouldn't be freed from
3163 * related qgroups.
3164 *
3165 * But we should release the range from io_tree, to allow further write to be
3166 * COWed.
3167 *
3168 * NOTE: This function may sleep for memory allocation.
3169 */
3170int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len)
3171{
Qu Wenruobc42bda2017-02-27 15:10:39 +08003172 return __btrfs_qgroup_release_data(inode, NULL, start, len, 0);
Qu Wenruof695fdc2015-10-12 16:28:06 +08003173}
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003174
Qu Wenruo82874752017-12-12 15:34:34 +08003175static void add_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3176 enum btrfs_qgroup_rsv_type type)
3177{
3178 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3179 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3180 return;
3181 if (num_bytes == 0)
3182 return;
3183
3184 spin_lock(&root->qgroup_meta_rsv_lock);
3185 if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
3186 root->qgroup_meta_rsv_prealloc += num_bytes;
3187 else
3188 root->qgroup_meta_rsv_pertrans += num_bytes;
3189 spin_unlock(&root->qgroup_meta_rsv_lock);
3190}
3191
3192static int sub_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3193 enum btrfs_qgroup_rsv_type type)
3194{
3195 if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3196 type != BTRFS_QGROUP_RSV_META_PERTRANS)
3197 return 0;
3198 if (num_bytes == 0)
3199 return 0;
3200
3201 spin_lock(&root->qgroup_meta_rsv_lock);
3202 if (type == BTRFS_QGROUP_RSV_META_PREALLOC) {
3203 num_bytes = min_t(u64, root->qgroup_meta_rsv_prealloc,
3204 num_bytes);
3205 root->qgroup_meta_rsv_prealloc -= num_bytes;
3206 } else {
3207 num_bytes = min_t(u64, root->qgroup_meta_rsv_pertrans,
3208 num_bytes);
3209 root->qgroup_meta_rsv_pertrans -= num_bytes;
3210 }
3211 spin_unlock(&root->qgroup_meta_rsv_lock);
3212 return num_bytes;
3213}
3214
Qu Wenruo733e03a2017-12-12 15:34:29 +08003215int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
3216 enum btrfs_qgroup_rsv_type type, bool enforce)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003217{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003218 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003219 int ret;
3220
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003221 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003222 !is_fstree(root->objectid) || num_bytes == 0)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003223 return 0;
3224
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003225 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003226 trace_qgroup_meta_reserve(root, type, (s64)num_bytes);
Qu Wenruo733e03a2017-12-12 15:34:29 +08003227 ret = qgroup_reserve(root, num_bytes, enforce, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003228 if (ret < 0)
3229 return ret;
Qu Wenruo82874752017-12-12 15:34:34 +08003230 /*
3231 * Record what we have reserved into root.
3232 *
3233 * To avoid quota disabled->enabled underflow.
3234 * In that case, we may try to free space we haven't reserved
3235 * (since quota was disabled), so record what we reserved into root.
3236 * And ensure later release won't underflow this number.
3237 */
3238 add_root_meta_rsv(root, num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003239 return ret;
3240}
3241
Qu Wenruo733e03a2017-12-12 15:34:29 +08003242void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003243{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003244 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003245
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003246 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003247 !is_fstree(root->objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003248 return;
3249
Qu Wenruoe1211d02017-12-12 15:34:30 +08003250 /* TODO: Update trace point to handle such free */
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003251 trace_qgroup_meta_free_all_pertrans(root);
Qu Wenruoe1211d02017-12-12 15:34:30 +08003252 /* Special value -1 means to free all reserved space */
3253 btrfs_qgroup_free_refroot(fs_info, root->objectid, (u64)-1,
Qu Wenruo733e03a2017-12-12 15:34:29 +08003254 BTRFS_QGROUP_RSV_META_PERTRANS);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003255}
3256
Qu Wenruo733e03a2017-12-12 15:34:29 +08003257void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
3258 enum btrfs_qgroup_rsv_type type)
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003259{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003260 struct btrfs_fs_info *fs_info = root->fs_info;
3261
3262 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
Josef Bacikafcdd122016-09-02 15:40:02 -04003263 !is_fstree(root->objectid))
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003264 return;
3265
Qu Wenruo82874752017-12-12 15:34:34 +08003266 /*
3267 * reservation for META_PREALLOC can happen before quota is enabled,
3268 * which can lead to underflow.
3269 * Here ensure we will only free what we really have reserved.
3270 */
3271 num_bytes = sub_root_meta_rsv(root, num_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003272 BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003273 trace_qgroup_meta_reserve(root, type, -(s64)num_bytes);
Qu Wenruo733e03a2017-12-12 15:34:29 +08003274 btrfs_qgroup_free_refroot(fs_info, root->objectid, num_bytes, type);
Qu Wenruo55eeaf02015-09-08 17:08:38 +08003275}
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003276
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003277static void qgroup_convert_meta(struct btrfs_fs_info *fs_info, u64 ref_root,
3278 int num_bytes)
3279{
3280 struct btrfs_root *quota_root = fs_info->quota_root;
3281 struct btrfs_qgroup *qgroup;
3282 struct ulist_node *unode;
3283 struct ulist_iterator uiter;
3284 int ret = 0;
3285
3286 if (num_bytes == 0)
3287 return;
3288 if (!quota_root)
3289 return;
3290
3291 spin_lock(&fs_info->qgroup_lock);
3292 qgroup = find_qgroup_rb(fs_info, ref_root);
3293 if (!qgroup)
3294 goto out;
3295 ulist_reinit(fs_info->qgroup_ulist);
3296 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003297 qgroup_to_aux(qgroup), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003298 if (ret < 0)
3299 goto out;
3300 ULIST_ITER_INIT(&uiter);
3301 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
3302 struct btrfs_qgroup *qg;
3303 struct btrfs_qgroup_list *glist;
3304
3305 qg = unode_aux_to_qgroup(unode);
3306
3307 qgroup_rsv_release(fs_info, qg, num_bytes,
3308 BTRFS_QGROUP_RSV_META_PREALLOC);
3309 qgroup_rsv_add(fs_info, qg, num_bytes,
3310 BTRFS_QGROUP_RSV_META_PERTRANS);
3311 list_for_each_entry(glist, &qg->groups, next_group) {
3312 ret = ulist_add(fs_info->qgroup_ulist,
3313 glist->group->qgroupid,
David Sterbaa1840b52018-03-27 19:04:50 +02003314 qgroup_to_aux(glist->group), GFP_ATOMIC);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003315 if (ret < 0)
3316 goto out;
3317 }
3318 }
3319out:
3320 spin_unlock(&fs_info->qgroup_lock);
3321}
3322
3323void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes)
3324{
3325 struct btrfs_fs_info *fs_info = root->fs_info;
3326
3327 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3328 !is_fstree(root->objectid))
3329 return;
Qu Wenruo82874752017-12-12 15:34:34 +08003330 /* Same as btrfs_qgroup_free_meta_prealloc() */
3331 num_bytes = sub_root_meta_rsv(root, num_bytes,
3332 BTRFS_QGROUP_RSV_META_PREALLOC);
Qu Wenruo4ee0d882017-12-12 15:34:35 +08003333 trace_qgroup_meta_convert(root, num_bytes);
Qu Wenruo64cfaef2017-12-12 15:34:31 +08003334 qgroup_convert_meta(fs_info, root->objectid, num_bytes);
3335}
3336
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003337/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04003338 * Check qgroup reserved space leaking, normally at destroy inode
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003339 * time
3340 */
3341void btrfs_qgroup_check_reserved_leak(struct inode *inode)
3342{
3343 struct extent_changeset changeset;
3344 struct ulist_node *unode;
3345 struct ulist_iterator iter;
3346 int ret;
3347
Qu Wenruo364ecf32017-02-27 15:10:38 +08003348 extent_changeset_init(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003349 ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
David Sterbaf734c442016-04-26 23:54:39 +02003350 EXTENT_QGROUP_RESERVED, &changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003351
3352 WARN_ON(ret < 0);
3353 if (WARN_ON(changeset.bytes_changed)) {
3354 ULIST_ITER_INIT(&iter);
David Sterba53d32352017-02-13 13:42:29 +01003355 while ((unode = ulist_next(&changeset.range_changed, &iter))) {
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003356 btrfs_warn(BTRFS_I(inode)->root->fs_info,
3357 "leaking qgroup reserved space, ino: %lu, start: %llu, end: %llu",
3358 inode->i_ino, unode->val, unode->aux);
3359 }
David Sterba0b08e1f2017-02-13 14:24:35 +01003360 btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3361 BTRFS_I(inode)->root->objectid,
Qu Wenruod4e5c922017-12-12 15:34:23 +08003362 changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
David Sterba0b08e1f2017-02-13 14:24:35 +01003363
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003364 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003365 extent_changeset_release(&changeset);
Qu Wenruo56fa9d02015-10-13 09:53:10 +08003366}