blob: 7b18fff558ca22b90c14aa626f1ac0cbaff1555e [file] [log] [blame]
Arne Jansenbed92ea2012-06-28 18:03:02 +02001/*
2 * Copyright (C) 2011 STRATO. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/sched.h>
20#include <linux/pagemap.h>
21#include <linux/writeback.h>
22#include <linux/blkdev.h>
23#include <linux/rbtree.h>
24#include <linux/slab.h>
25#include <linux/workqueue.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000026#include <linux/btrfs.h>
Arne Jansenbed92ea2012-06-28 18:03:02 +020027
28#include "ctree.h"
29#include "transaction.h"
30#include "disk-io.h"
31#include "locking.h"
32#include "ulist.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020033#include "backref.h"
Jan Schmidt2f232032013-04-25 16:04:51 +000034#include "extent_io.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070035#include "qgroup.h"
Arne Jansenbed92ea2012-06-28 18:03:02 +020036
37/* TODO XXX FIXME
38 * - subvol delete -> delete when ref goes to 0? delete limits also?
39 * - reorganize keys
40 * - compressed
41 * - sync
Arne Jansenbed92ea2012-06-28 18:03:02 +020042 * - copy also limits on subvol creation
43 * - limit
44 * - caches fuer ulists
45 * - performance benchmarks
46 * - check all ioctl parameters
47 */
48
49/*
50 * one struct for each qgroup, organized in fs_info->qgroup_tree.
51 */
52struct btrfs_qgroup {
53 u64 qgroupid;
54
55 /*
56 * state
57 */
58 u64 rfer; /* referenced */
59 u64 rfer_cmpr; /* referenced compressed */
60 u64 excl; /* exclusive */
61 u64 excl_cmpr; /* exclusive compressed */
62
63 /*
64 * limits
65 */
66 u64 lim_flags; /* which limits are set */
67 u64 max_rfer;
68 u64 max_excl;
69 u64 rsv_rfer;
70 u64 rsv_excl;
71
72 /*
73 * reservation tracking
74 */
75 u64 reserved;
76
77 /*
78 * lists
79 */
80 struct list_head groups; /* groups this group is member of */
81 struct list_head members; /* groups that are members of this group */
82 struct list_head dirty; /* dirty groups */
83 struct rb_node node; /* tree of qgroups */
84
85 /*
86 * temp variables for accounting operations
Qu Wenruo9c542132015-03-12 16:10:13 +080087 * Refer to qgroup_shared_accouting() for details.
Arne Jansenbed92ea2012-06-28 18:03:02 +020088 */
Josef Bacikfcebe452014-05-13 17:30:47 -070089 u64 old_refcnt;
90 u64 new_refcnt;
Arne Jansenbed92ea2012-06-28 18:03:02 +020091};
92
Qu Wenruo9c542132015-03-12 16:10:13 +080093static void btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup *qg, u64 seq,
94 int mod)
95{
96 if (qg->old_refcnt < seq)
97 qg->old_refcnt = seq;
98 qg->old_refcnt += mod;
99}
100
101static void btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup *qg, u64 seq,
102 int mod)
103{
104 if (qg->new_refcnt < seq)
105 qg->new_refcnt = seq;
106 qg->new_refcnt += mod;
107}
108
109static inline u64 btrfs_qgroup_get_old_refcnt(struct btrfs_qgroup *qg, u64 seq)
110{
111 if (qg->old_refcnt < seq)
112 return 0;
113 return qg->old_refcnt - seq;
114}
115
116static inline u64 btrfs_qgroup_get_new_refcnt(struct btrfs_qgroup *qg, u64 seq)
117{
118 if (qg->new_refcnt < seq)
119 return 0;
120 return qg->new_refcnt - seq;
121}
122
Arne Jansenbed92ea2012-06-28 18:03:02 +0200123/*
124 * glue structure to represent the relations between qgroups.
125 */
126struct btrfs_qgroup_list {
127 struct list_head next_group;
128 struct list_head next_member;
129 struct btrfs_qgroup *group;
130 struct btrfs_qgroup *member;
131};
132
Josef Bacikfcebe452014-05-13 17:30:47 -0700133#define ptr_to_u64(x) ((u64)(uintptr_t)x)
134#define u64_to_ptr(x) ((struct btrfs_qgroup *)(uintptr_t)x)
135
Jan Schmidtb382a322013-05-28 15:47:24 +0000136static int
137qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
138 int init_flags);
139static void qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +0000140
Wang Shilong58400fc2013-04-07 10:50:17 +0000141/* must be called with qgroup_ioctl_lock held */
Arne Jansenbed92ea2012-06-28 18:03:02 +0200142static struct btrfs_qgroup *find_qgroup_rb(struct btrfs_fs_info *fs_info,
143 u64 qgroupid)
144{
145 struct rb_node *n = fs_info->qgroup_tree.rb_node;
146 struct btrfs_qgroup *qgroup;
147
148 while (n) {
149 qgroup = rb_entry(n, struct btrfs_qgroup, node);
150 if (qgroup->qgroupid < qgroupid)
151 n = n->rb_left;
152 else if (qgroup->qgroupid > qgroupid)
153 n = n->rb_right;
154 else
155 return qgroup;
156 }
157 return NULL;
158}
159
160/* must be called with qgroup_lock held */
161static struct btrfs_qgroup *add_qgroup_rb(struct btrfs_fs_info *fs_info,
162 u64 qgroupid)
163{
164 struct rb_node **p = &fs_info->qgroup_tree.rb_node;
165 struct rb_node *parent = NULL;
166 struct btrfs_qgroup *qgroup;
167
168 while (*p) {
169 parent = *p;
170 qgroup = rb_entry(parent, struct btrfs_qgroup, node);
171
172 if (qgroup->qgroupid < qgroupid)
173 p = &(*p)->rb_left;
174 else if (qgroup->qgroupid > qgroupid)
175 p = &(*p)->rb_right;
176 else
177 return qgroup;
178 }
179
180 qgroup = kzalloc(sizeof(*qgroup), GFP_ATOMIC);
181 if (!qgroup)
182 return ERR_PTR(-ENOMEM);
183
184 qgroup->qgroupid = qgroupid;
185 INIT_LIST_HEAD(&qgroup->groups);
186 INIT_LIST_HEAD(&qgroup->members);
187 INIT_LIST_HEAD(&qgroup->dirty);
188
189 rb_link_node(&qgroup->node, parent, p);
190 rb_insert_color(&qgroup->node, &fs_info->qgroup_tree);
191
192 return qgroup;
193}
194
Wang Shilong4082bd32013-08-14 09:13:36 +0800195static void __del_qgroup_rb(struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200196{
Arne Jansenbed92ea2012-06-28 18:03:02 +0200197 struct btrfs_qgroup_list *list;
198
Arne Jansenbed92ea2012-06-28 18:03:02 +0200199 list_del(&qgroup->dirty);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200200 while (!list_empty(&qgroup->groups)) {
201 list = list_first_entry(&qgroup->groups,
202 struct btrfs_qgroup_list, next_group);
203 list_del(&list->next_group);
204 list_del(&list->next_member);
205 kfree(list);
206 }
207
208 while (!list_empty(&qgroup->members)) {
209 list = list_first_entry(&qgroup->members,
210 struct btrfs_qgroup_list, next_member);
211 list_del(&list->next_group);
212 list_del(&list->next_member);
213 kfree(list);
214 }
215 kfree(qgroup);
Wang Shilong4082bd32013-08-14 09:13:36 +0800216}
Arne Jansenbed92ea2012-06-28 18:03:02 +0200217
Wang Shilong4082bd32013-08-14 09:13:36 +0800218/* must be called with qgroup_lock held */
219static int del_qgroup_rb(struct btrfs_fs_info *fs_info, u64 qgroupid)
220{
221 struct btrfs_qgroup *qgroup = find_qgroup_rb(fs_info, qgroupid);
222
223 if (!qgroup)
224 return -ENOENT;
225
226 rb_erase(&qgroup->node, &fs_info->qgroup_tree);
227 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200228 return 0;
229}
230
231/* must be called with qgroup_lock held */
232static int add_relation_rb(struct btrfs_fs_info *fs_info,
233 u64 memberid, u64 parentid)
234{
235 struct btrfs_qgroup *member;
236 struct btrfs_qgroup *parent;
237 struct btrfs_qgroup_list *list;
238
239 member = find_qgroup_rb(fs_info, memberid);
240 parent = find_qgroup_rb(fs_info, parentid);
241 if (!member || !parent)
242 return -ENOENT;
243
244 list = kzalloc(sizeof(*list), GFP_ATOMIC);
245 if (!list)
246 return -ENOMEM;
247
248 list->group = parent;
249 list->member = member;
250 list_add_tail(&list->next_group, &member->groups);
251 list_add_tail(&list->next_member, &parent->members);
252
253 return 0;
254}
255
256/* must be called with qgroup_lock held */
257static int del_relation_rb(struct btrfs_fs_info *fs_info,
258 u64 memberid, u64 parentid)
259{
260 struct btrfs_qgroup *member;
261 struct btrfs_qgroup *parent;
262 struct btrfs_qgroup_list *list;
263
264 member = find_qgroup_rb(fs_info, memberid);
265 parent = find_qgroup_rb(fs_info, parentid);
266 if (!member || !parent)
267 return -ENOENT;
268
269 list_for_each_entry(list, &member->groups, next_group) {
270 if (list->group == parent) {
271 list_del(&list->next_group);
272 list_del(&list->next_member);
273 kfree(list);
274 return 0;
275 }
276 }
277 return -ENOENT;
278}
279
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400280#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
281int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
282 u64 rfer, u64 excl)
283{
284 struct btrfs_qgroup *qgroup;
285
286 qgroup = find_qgroup_rb(fs_info, qgroupid);
287 if (!qgroup)
288 return -EINVAL;
289 if (qgroup->rfer != rfer || qgroup->excl != excl)
290 return -EINVAL;
291 return 0;
292}
293#endif
294
Arne Jansenbed92ea2012-06-28 18:03:02 +0200295/*
296 * The full config is read in one go, only called from open_ctree()
297 * It doesn't use any locking, as at this point we're still single-threaded
298 */
299int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info)
300{
301 struct btrfs_key key;
302 struct btrfs_key found_key;
303 struct btrfs_root *quota_root = fs_info->quota_root;
304 struct btrfs_path *path = NULL;
305 struct extent_buffer *l;
306 int slot;
307 int ret = 0;
308 u64 flags = 0;
Jan Schmidtb382a322013-05-28 15:47:24 +0000309 u64 rescan_progress = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200310
311 if (!fs_info->quota_enabled)
312 return 0;
313
Wang Shilong1e8f9152013-05-06 11:03:27 +0000314 fs_info->qgroup_ulist = ulist_alloc(GFP_NOFS);
315 if (!fs_info->qgroup_ulist) {
316 ret = -ENOMEM;
317 goto out;
318 }
319
Arne Jansenbed92ea2012-06-28 18:03:02 +0200320 path = btrfs_alloc_path();
321 if (!path) {
322 ret = -ENOMEM;
323 goto out;
324 }
325
326 /* default this to quota off, in case no status key is found */
327 fs_info->qgroup_flags = 0;
328
329 /*
330 * pass 1: read status, all qgroup infos and limits
331 */
332 key.objectid = 0;
333 key.type = 0;
334 key.offset = 0;
335 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 1);
336 if (ret)
337 goto out;
338
339 while (1) {
340 struct btrfs_qgroup *qgroup;
341
342 slot = path->slots[0];
343 l = path->nodes[0];
344 btrfs_item_key_to_cpu(l, &found_key, slot);
345
346 if (found_key.type == BTRFS_QGROUP_STATUS_KEY) {
347 struct btrfs_qgroup_status_item *ptr;
348
349 ptr = btrfs_item_ptr(l, slot,
350 struct btrfs_qgroup_status_item);
351
352 if (btrfs_qgroup_status_version(l, ptr) !=
353 BTRFS_QGROUP_STATUS_VERSION) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500354 btrfs_err(fs_info,
355 "old qgroup version, quota disabled");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200356 goto out;
357 }
358 if (btrfs_qgroup_status_generation(l, ptr) !=
359 fs_info->generation) {
360 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Frank Holtonefe120a2013-12-20 11:37:06 -0500361 btrfs_err(fs_info,
362 "qgroup generation mismatch, "
363 "marked as inconsistent");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200364 }
365 fs_info->qgroup_flags = btrfs_qgroup_status_flags(l,
366 ptr);
Jan Schmidtb382a322013-05-28 15:47:24 +0000367 rescan_progress = btrfs_qgroup_status_rescan(l, ptr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200368 goto next1;
369 }
370
371 if (found_key.type != BTRFS_QGROUP_INFO_KEY &&
372 found_key.type != BTRFS_QGROUP_LIMIT_KEY)
373 goto next1;
374
375 qgroup = find_qgroup_rb(fs_info, found_key.offset);
376 if ((qgroup && found_key.type == BTRFS_QGROUP_INFO_KEY) ||
377 (!qgroup && found_key.type == BTRFS_QGROUP_LIMIT_KEY)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500378 btrfs_err(fs_info, "inconsitent qgroup config");
Arne Jansenbed92ea2012-06-28 18:03:02 +0200379 flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
380 }
381 if (!qgroup) {
382 qgroup = add_qgroup_rb(fs_info, found_key.offset);
383 if (IS_ERR(qgroup)) {
384 ret = PTR_ERR(qgroup);
385 goto out;
386 }
387 }
388 switch (found_key.type) {
389 case BTRFS_QGROUP_INFO_KEY: {
390 struct btrfs_qgroup_info_item *ptr;
391
392 ptr = btrfs_item_ptr(l, slot,
393 struct btrfs_qgroup_info_item);
394 qgroup->rfer = btrfs_qgroup_info_rfer(l, ptr);
395 qgroup->rfer_cmpr = btrfs_qgroup_info_rfer_cmpr(l, ptr);
396 qgroup->excl = btrfs_qgroup_info_excl(l, ptr);
397 qgroup->excl_cmpr = btrfs_qgroup_info_excl_cmpr(l, ptr);
398 /* generation currently unused */
399 break;
400 }
401 case BTRFS_QGROUP_LIMIT_KEY: {
402 struct btrfs_qgroup_limit_item *ptr;
403
404 ptr = btrfs_item_ptr(l, slot,
405 struct btrfs_qgroup_limit_item);
406 qgroup->lim_flags = btrfs_qgroup_limit_flags(l, ptr);
407 qgroup->max_rfer = btrfs_qgroup_limit_max_rfer(l, ptr);
408 qgroup->max_excl = btrfs_qgroup_limit_max_excl(l, ptr);
409 qgroup->rsv_rfer = btrfs_qgroup_limit_rsv_rfer(l, ptr);
410 qgroup->rsv_excl = btrfs_qgroup_limit_rsv_excl(l, ptr);
411 break;
412 }
413 }
414next1:
415 ret = btrfs_next_item(quota_root, path);
416 if (ret < 0)
417 goto out;
418 if (ret)
419 break;
420 }
421 btrfs_release_path(path);
422
423 /*
424 * pass 2: read all qgroup relations
425 */
426 key.objectid = 0;
427 key.type = BTRFS_QGROUP_RELATION_KEY;
428 key.offset = 0;
429 ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 0);
430 if (ret)
431 goto out;
432 while (1) {
433 slot = path->slots[0];
434 l = path->nodes[0];
435 btrfs_item_key_to_cpu(l, &found_key, slot);
436
437 if (found_key.type != BTRFS_QGROUP_RELATION_KEY)
438 goto next2;
439
440 if (found_key.objectid > found_key.offset) {
441 /* parent <- member, not needed to build config */
442 /* FIXME should we omit the key completely? */
443 goto next2;
444 }
445
446 ret = add_relation_rb(fs_info, found_key.objectid,
447 found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700448 if (ret == -ENOENT) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500449 btrfs_warn(fs_info,
450 "orphan qgroup relation 0x%llx->0x%llx",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200451 found_key.objectid, found_key.offset);
Arne Jansenff248582013-01-17 01:22:08 -0700452 ret = 0; /* ignore the error */
453 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200454 if (ret)
455 goto out;
456next2:
457 ret = btrfs_next_item(quota_root, path);
458 if (ret < 0)
459 goto out;
460 if (ret)
461 break;
462 }
463out:
464 fs_info->qgroup_flags |= flags;
465 if (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON)) {
466 fs_info->quota_enabled = 0;
467 fs_info->pending_quota_state = 0;
Jan Schmidtb382a322013-05-28 15:47:24 +0000468 } else if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN &&
469 ret >= 0) {
470 ret = qgroup_rescan_init(fs_info, rescan_progress, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200471 }
472 btrfs_free_path(path);
473
Jan Schmidteb1716a2013-05-28 15:47:23 +0000474 if (ret < 0) {
Wang Shilong1e8f9152013-05-06 11:03:27 +0000475 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +0000476 fs_info->qgroup_ulist = NULL;
Jan Schmidtb382a322013-05-28 15:47:24 +0000477 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
Jan Schmidteb1716a2013-05-28 15:47:23 +0000478 }
Wang Shilong1e8f9152013-05-06 11:03:27 +0000479
Arne Jansenbed92ea2012-06-28 18:03:02 +0200480 return ret < 0 ? ret : 0;
481}
482
483/*
Wang Shilonge685da12013-08-14 09:13:37 +0800484 * This is called from close_ctree() or open_ctree() or btrfs_quota_disable(),
485 * first two are in single-threaded paths.And for the third one, we have set
486 * quota_root to be null with qgroup_lock held before, so it is safe to clean
487 * up the in-memory structures without qgroup_lock held.
Arne Jansenbed92ea2012-06-28 18:03:02 +0200488 */
489void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info)
490{
491 struct rb_node *n;
492 struct btrfs_qgroup *qgroup;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200493
494 while ((n = rb_first(&fs_info->qgroup_tree))) {
495 qgroup = rb_entry(n, struct btrfs_qgroup, node);
496 rb_erase(n, &fs_info->qgroup_tree);
Wang Shilong4082bd32013-08-14 09:13:36 +0800497 __del_qgroup_rb(qgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200498 }
Wang Shilong1e7bac12013-07-13 21:02:54 +0800499 /*
500 * we call btrfs_free_qgroup_config() when umounting
501 * filesystem and disabling quota, so we set qgroup_ulit
502 * to be null here to avoid double free.
503 */
Wang Shilong1e8f9152013-05-06 11:03:27 +0000504 ulist_free(fs_info->qgroup_ulist);
Wang Shilong1e7bac12013-07-13 21:02:54 +0800505 fs_info->qgroup_ulist = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200506}
507
508static int add_qgroup_relation_item(struct btrfs_trans_handle *trans,
509 struct btrfs_root *quota_root,
510 u64 src, u64 dst)
511{
512 int ret;
513 struct btrfs_path *path;
514 struct btrfs_key key;
515
516 path = btrfs_alloc_path();
517 if (!path)
518 return -ENOMEM;
519
520 key.objectid = src;
521 key.type = BTRFS_QGROUP_RELATION_KEY;
522 key.offset = dst;
523
524 ret = btrfs_insert_empty_item(trans, quota_root, path, &key, 0);
525
526 btrfs_mark_buffer_dirty(path->nodes[0]);
527
528 btrfs_free_path(path);
529 return ret;
530}
531
532static int del_qgroup_relation_item(struct btrfs_trans_handle *trans,
533 struct btrfs_root *quota_root,
534 u64 src, u64 dst)
535{
536 int ret;
537 struct btrfs_path *path;
538 struct btrfs_key key;
539
540 path = btrfs_alloc_path();
541 if (!path)
542 return -ENOMEM;
543
544 key.objectid = src;
545 key.type = BTRFS_QGROUP_RELATION_KEY;
546 key.offset = dst;
547
548 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
549 if (ret < 0)
550 goto out;
551
552 if (ret > 0) {
553 ret = -ENOENT;
554 goto out;
555 }
556
557 ret = btrfs_del_item(trans, quota_root, path);
558out:
559 btrfs_free_path(path);
560 return ret;
561}
562
563static int add_qgroup_item(struct btrfs_trans_handle *trans,
564 struct btrfs_root *quota_root, u64 qgroupid)
565{
566 int ret;
567 struct btrfs_path *path;
568 struct btrfs_qgroup_info_item *qgroup_info;
569 struct btrfs_qgroup_limit_item *qgroup_limit;
570 struct extent_buffer *leaf;
571 struct btrfs_key key;
572
David Sterbafccb84c2014-09-29 23:53:21 +0200573 if (btrfs_test_is_dummy_root(quota_root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400574 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200575
Arne Jansenbed92ea2012-06-28 18:03:02 +0200576 path = btrfs_alloc_path();
577 if (!path)
578 return -ENOMEM;
579
580 key.objectid = 0;
581 key.type = BTRFS_QGROUP_INFO_KEY;
582 key.offset = qgroupid;
583
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700584 /*
585 * Avoid a transaction abort by catching -EEXIST here. In that
586 * case, we proceed by re-initializing the existing structure
587 * on disk.
588 */
589
Arne Jansenbed92ea2012-06-28 18:03:02 +0200590 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
591 sizeof(*qgroup_info));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700592 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200593 goto out;
594
595 leaf = path->nodes[0];
596 qgroup_info = btrfs_item_ptr(leaf, path->slots[0],
597 struct btrfs_qgroup_info_item);
598 btrfs_set_qgroup_info_generation(leaf, qgroup_info, trans->transid);
599 btrfs_set_qgroup_info_rfer(leaf, qgroup_info, 0);
600 btrfs_set_qgroup_info_rfer_cmpr(leaf, qgroup_info, 0);
601 btrfs_set_qgroup_info_excl(leaf, qgroup_info, 0);
602 btrfs_set_qgroup_info_excl_cmpr(leaf, qgroup_info, 0);
603
604 btrfs_mark_buffer_dirty(leaf);
605
606 btrfs_release_path(path);
607
608 key.type = BTRFS_QGROUP_LIMIT_KEY;
609 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
610 sizeof(*qgroup_limit));
Mark Fasheh0b4699d2014-08-18 14:01:17 -0700611 if (ret && ret != -EEXIST)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200612 goto out;
613
614 leaf = path->nodes[0];
615 qgroup_limit = btrfs_item_ptr(leaf, path->slots[0],
616 struct btrfs_qgroup_limit_item);
617 btrfs_set_qgroup_limit_flags(leaf, qgroup_limit, 0);
618 btrfs_set_qgroup_limit_max_rfer(leaf, qgroup_limit, 0);
619 btrfs_set_qgroup_limit_max_excl(leaf, qgroup_limit, 0);
620 btrfs_set_qgroup_limit_rsv_rfer(leaf, qgroup_limit, 0);
621 btrfs_set_qgroup_limit_rsv_excl(leaf, qgroup_limit, 0);
622
623 btrfs_mark_buffer_dirty(leaf);
624
625 ret = 0;
626out:
627 btrfs_free_path(path);
628 return ret;
629}
630
631static int del_qgroup_item(struct btrfs_trans_handle *trans,
632 struct btrfs_root *quota_root, u64 qgroupid)
633{
634 int ret;
635 struct btrfs_path *path;
636 struct btrfs_key key;
637
638 path = btrfs_alloc_path();
639 if (!path)
640 return -ENOMEM;
641
642 key.objectid = 0;
643 key.type = BTRFS_QGROUP_INFO_KEY;
644 key.offset = qgroupid;
645 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
646 if (ret < 0)
647 goto out;
648
649 if (ret > 0) {
650 ret = -ENOENT;
651 goto out;
652 }
653
654 ret = btrfs_del_item(trans, quota_root, path);
655 if (ret)
656 goto out;
657
658 btrfs_release_path(path);
659
660 key.type = BTRFS_QGROUP_LIMIT_KEY;
661 ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
662 if (ret < 0)
663 goto out;
664
665 if (ret > 0) {
666 ret = -ENOENT;
667 goto out;
668 }
669
670 ret = btrfs_del_item(trans, quota_root, path);
671
672out:
673 btrfs_free_path(path);
674 return ret;
675}
676
677static int update_qgroup_limit_item(struct btrfs_trans_handle *trans,
Dongsheng Yang1510e712014-11-20 21:01:41 -0500678 struct btrfs_root *root,
679 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200680{
681 struct btrfs_path *path;
682 struct btrfs_key key;
683 struct extent_buffer *l;
684 struct btrfs_qgroup_limit_item *qgroup_limit;
685 int ret;
686 int slot;
687
688 key.objectid = 0;
689 key.type = BTRFS_QGROUP_LIMIT_KEY;
Dongsheng Yang1510e712014-11-20 21:01:41 -0500690 key.offset = qgroup->qgroupid;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200691
692 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000693 if (!path)
694 return -ENOMEM;
695
Arne Jansenbed92ea2012-06-28 18:03:02 +0200696 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
697 if (ret > 0)
698 ret = -ENOENT;
699
700 if (ret)
701 goto out;
702
703 l = path->nodes[0];
704 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100705 qgroup_limit = btrfs_item_ptr(l, slot, struct btrfs_qgroup_limit_item);
Dongsheng Yang1510e712014-11-20 21:01:41 -0500706 btrfs_set_qgroup_limit_flags(l, qgroup_limit, qgroup->lim_flags);
707 btrfs_set_qgroup_limit_max_rfer(l, qgroup_limit, qgroup->max_rfer);
708 btrfs_set_qgroup_limit_max_excl(l, qgroup_limit, qgroup->max_excl);
709 btrfs_set_qgroup_limit_rsv_rfer(l, qgroup_limit, qgroup->rsv_rfer);
710 btrfs_set_qgroup_limit_rsv_excl(l, qgroup_limit, qgroup->rsv_excl);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200711
712 btrfs_mark_buffer_dirty(l);
713
714out:
715 btrfs_free_path(path);
716 return ret;
717}
718
719static int update_qgroup_info_item(struct btrfs_trans_handle *trans,
720 struct btrfs_root *root,
721 struct btrfs_qgroup *qgroup)
722{
723 struct btrfs_path *path;
724 struct btrfs_key key;
725 struct extent_buffer *l;
726 struct btrfs_qgroup_info_item *qgroup_info;
727 int ret;
728 int slot;
729
David Sterbafccb84c2014-09-29 23:53:21 +0200730 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400731 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +0200732
Arne Jansenbed92ea2012-06-28 18:03:02 +0200733 key.objectid = 0;
734 key.type = BTRFS_QGROUP_INFO_KEY;
735 key.offset = qgroup->qgroupid;
736
737 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000738 if (!path)
739 return -ENOMEM;
740
Arne Jansenbed92ea2012-06-28 18:03:02 +0200741 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
742 if (ret > 0)
743 ret = -ENOENT;
744
745 if (ret)
746 goto out;
747
748 l = path->nodes[0];
749 slot = path->slots[0];
Valentina Giustia3df41e2013-11-04 22:34:29 +0100750 qgroup_info = btrfs_item_ptr(l, slot, struct btrfs_qgroup_info_item);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200751 btrfs_set_qgroup_info_generation(l, qgroup_info, trans->transid);
752 btrfs_set_qgroup_info_rfer(l, qgroup_info, qgroup->rfer);
753 btrfs_set_qgroup_info_rfer_cmpr(l, qgroup_info, qgroup->rfer_cmpr);
754 btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl);
755 btrfs_set_qgroup_info_excl_cmpr(l, qgroup_info, qgroup->excl_cmpr);
756
757 btrfs_mark_buffer_dirty(l);
758
759out:
760 btrfs_free_path(path);
761 return ret;
762}
763
764static int update_qgroup_status_item(struct btrfs_trans_handle *trans,
765 struct btrfs_fs_info *fs_info,
766 struct btrfs_root *root)
767{
768 struct btrfs_path *path;
769 struct btrfs_key key;
770 struct extent_buffer *l;
771 struct btrfs_qgroup_status_item *ptr;
772 int ret;
773 int slot;
774
775 key.objectid = 0;
776 key.type = BTRFS_QGROUP_STATUS_KEY;
777 key.offset = 0;
778
779 path = btrfs_alloc_path();
Wang Shilong84cbe2f2013-02-27 11:20:56 +0000780 if (!path)
781 return -ENOMEM;
782
Arne Jansenbed92ea2012-06-28 18:03:02 +0200783 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
784 if (ret > 0)
785 ret = -ENOENT;
786
787 if (ret)
788 goto out;
789
790 l = path->nodes[0];
791 slot = path->slots[0];
792 ptr = btrfs_item_ptr(l, slot, struct btrfs_qgroup_status_item);
793 btrfs_set_qgroup_status_flags(l, ptr, fs_info->qgroup_flags);
794 btrfs_set_qgroup_status_generation(l, ptr, trans->transid);
Jan Schmidt2f232032013-04-25 16:04:51 +0000795 btrfs_set_qgroup_status_rescan(l, ptr,
796 fs_info->qgroup_rescan_progress.objectid);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200797
798 btrfs_mark_buffer_dirty(l);
799
800out:
801 btrfs_free_path(path);
802 return ret;
803}
804
805/*
806 * called with qgroup_lock held
807 */
808static int btrfs_clean_quota_tree(struct btrfs_trans_handle *trans,
809 struct btrfs_root *root)
810{
811 struct btrfs_path *path;
812 struct btrfs_key key;
Wang Shilong06b3a862013-02-27 11:16:57 +0000813 struct extent_buffer *leaf = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200814 int ret;
Wang Shilong06b3a862013-02-27 11:16:57 +0000815 int nr = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200816
Arne Jansenbed92ea2012-06-28 18:03:02 +0200817 path = btrfs_alloc_path();
818 if (!path)
819 return -ENOMEM;
820
Wang Shilong06b3a862013-02-27 11:16:57 +0000821 path->leave_spinning = 1;
822
823 key.objectid = 0;
824 key.offset = 0;
825 key.type = 0;
826
Arne Jansenbed92ea2012-06-28 18:03:02 +0200827 while (1) {
Arne Jansenbed92ea2012-06-28 18:03:02 +0200828 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Wang Shilong06b3a862013-02-27 11:16:57 +0000829 if (ret < 0)
830 goto out;
831 leaf = path->nodes[0];
832 nr = btrfs_header_nritems(leaf);
833 if (!nr)
Arne Jansenbed92ea2012-06-28 18:03:02 +0200834 break;
Wang Shilong06b3a862013-02-27 11:16:57 +0000835 /*
836 * delete the leaf one by one
837 * since the whole tree is going
838 * to be deleted.
839 */
840 path->slots[0] = 0;
841 ret = btrfs_del_items(trans, root, path, 0, nr);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200842 if (ret)
843 goto out;
Wang Shilong06b3a862013-02-27 11:16:57 +0000844
Arne Jansenbed92ea2012-06-28 18:03:02 +0200845 btrfs_release_path(path);
846 }
847 ret = 0;
848out:
849 root->fs_info->pending_quota_state = 0;
850 btrfs_free_path(path);
851 return ret;
852}
853
854int btrfs_quota_enable(struct btrfs_trans_handle *trans,
855 struct btrfs_fs_info *fs_info)
856{
857 struct btrfs_root *quota_root;
Wang Shilong7708f022013-04-07 10:24:57 +0000858 struct btrfs_root *tree_root = fs_info->tree_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200859 struct btrfs_path *path = NULL;
860 struct btrfs_qgroup_status_item *ptr;
861 struct extent_buffer *leaf;
862 struct btrfs_key key;
Wang Shilong7708f022013-04-07 10:24:57 +0000863 struct btrfs_key found_key;
864 struct btrfs_qgroup *qgroup = NULL;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200865 int ret = 0;
Wang Shilong7708f022013-04-07 10:24:57 +0000866 int slot;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200867
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000868 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200869 if (fs_info->quota_root) {
870 fs_info->pending_quota_state = 1;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200871 goto out;
872 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200873
Wang Shilong1e8f9152013-05-06 11:03:27 +0000874 fs_info->qgroup_ulist = ulist_alloc(GFP_NOFS);
875 if (!fs_info->qgroup_ulist) {
876 ret = -ENOMEM;
877 goto out;
878 }
879
Arne Jansenbed92ea2012-06-28 18:03:02 +0200880 /*
881 * initially create the quota tree
882 */
883 quota_root = btrfs_create_tree(trans, fs_info,
884 BTRFS_QUOTA_TREE_OBJECTID);
885 if (IS_ERR(quota_root)) {
886 ret = PTR_ERR(quota_root);
887 goto out;
888 }
889
890 path = btrfs_alloc_path();
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000891 if (!path) {
892 ret = -ENOMEM;
893 goto out_free_root;
894 }
Arne Jansenbed92ea2012-06-28 18:03:02 +0200895
896 key.objectid = 0;
897 key.type = BTRFS_QGROUP_STATUS_KEY;
898 key.offset = 0;
899
900 ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
901 sizeof(*ptr));
902 if (ret)
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000903 goto out_free_path;
Arne Jansenbed92ea2012-06-28 18:03:02 +0200904
905 leaf = path->nodes[0];
906 ptr = btrfs_item_ptr(leaf, path->slots[0],
907 struct btrfs_qgroup_status_item);
908 btrfs_set_qgroup_status_generation(leaf, ptr, trans->transid);
909 btrfs_set_qgroup_status_version(leaf, ptr, BTRFS_QGROUP_STATUS_VERSION);
910 fs_info->qgroup_flags = BTRFS_QGROUP_STATUS_FLAG_ON |
911 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
912 btrfs_set_qgroup_status_flags(leaf, ptr, fs_info->qgroup_flags);
Jan Schmidt2f232032013-04-25 16:04:51 +0000913 btrfs_set_qgroup_status_rescan(leaf, ptr, 0);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200914
915 btrfs_mark_buffer_dirty(leaf);
916
Wang Shilong7708f022013-04-07 10:24:57 +0000917 key.objectid = 0;
918 key.type = BTRFS_ROOT_REF_KEY;
919 key.offset = 0;
920
921 btrfs_release_path(path);
922 ret = btrfs_search_slot_for_read(tree_root, &key, path, 1, 0);
923 if (ret > 0)
924 goto out_add_root;
925 if (ret < 0)
926 goto out_free_path;
927
928
929 while (1) {
930 slot = path->slots[0];
931 leaf = path->nodes[0];
932 btrfs_item_key_to_cpu(leaf, &found_key, slot);
933
934 if (found_key.type == BTRFS_ROOT_REF_KEY) {
935 ret = add_qgroup_item(trans, quota_root,
936 found_key.offset);
937 if (ret)
938 goto out_free_path;
939
Wang Shilong7708f022013-04-07 10:24:57 +0000940 qgroup = add_qgroup_rb(fs_info, found_key.offset);
941 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +0000942 ret = PTR_ERR(qgroup);
943 goto out_free_path;
944 }
Wang Shilong7708f022013-04-07 10:24:57 +0000945 }
946 ret = btrfs_next_item(tree_root, path);
947 if (ret < 0)
948 goto out_free_path;
949 if (ret)
950 break;
951 }
952
953out_add_root:
954 btrfs_release_path(path);
955 ret = add_qgroup_item(trans, quota_root, BTRFS_FS_TREE_OBJECTID);
956 if (ret)
957 goto out_free_path;
958
Wang Shilong7708f022013-04-07 10:24:57 +0000959 qgroup = add_qgroup_rb(fs_info, BTRFS_FS_TREE_OBJECTID);
960 if (IS_ERR(qgroup)) {
Wang Shilong7708f022013-04-07 10:24:57 +0000961 ret = PTR_ERR(qgroup);
962 goto out_free_path;
963 }
Wang Shilong58400fc2013-04-07 10:50:17 +0000964 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200965 fs_info->quota_root = quota_root;
966 fs_info->pending_quota_state = 1;
967 spin_unlock(&fs_info->qgroup_lock);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000968out_free_path:
Arne Jansenbed92ea2012-06-28 18:03:02 +0200969 btrfs_free_path(path);
Tsutomu Itoh5b7ff5b2012-10-16 05:44:21 +0000970out_free_root:
971 if (ret) {
972 free_extent_buffer(quota_root->node);
973 free_extent_buffer(quota_root->commit_root);
974 kfree(quota_root);
975 }
976out:
Jan Schmidteb1716a2013-05-28 15:47:23 +0000977 if (ret) {
Wang Shilong1e8f9152013-05-06 11:03:27 +0000978 ulist_free(fs_info->qgroup_ulist);
Jan Schmidteb1716a2013-05-28 15:47:23 +0000979 fs_info->qgroup_ulist = NULL;
980 }
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000981 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200982 return ret;
983}
984
985int btrfs_quota_disable(struct btrfs_trans_handle *trans,
986 struct btrfs_fs_info *fs_info)
987{
988 struct btrfs_root *tree_root = fs_info->tree_root;
989 struct btrfs_root *quota_root;
990 int ret = 0;
991
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000992 mutex_lock(&fs_info->qgroup_ioctl_lock);
Wang Shilong58400fc2013-04-07 10:50:17 +0000993 if (!fs_info->quota_root)
Wang Shilongf2f6ed32013-04-07 10:50:16 +0000994 goto out;
Wang Shilong58400fc2013-04-07 10:50:17 +0000995 spin_lock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +0200996 fs_info->quota_enabled = 0;
997 fs_info->pending_quota_state = 0;
998 quota_root = fs_info->quota_root;
999 fs_info->quota_root = NULL;
Dongsheng Yang8ea0ec92015-02-27 16:24:26 +08001000 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001001 spin_unlock(&fs_info->qgroup_lock);
1002
Wang Shilonge685da12013-08-14 09:13:37 +08001003 btrfs_free_qgroup_config(fs_info);
1004
Arne Jansenbed92ea2012-06-28 18:03:02 +02001005 ret = btrfs_clean_quota_tree(trans, quota_root);
1006 if (ret)
1007 goto out;
1008
1009 ret = btrfs_del_root(trans, tree_root, &quota_root->root_key);
1010 if (ret)
1011 goto out;
1012
1013 list_del(&quota_root->dirty_list);
1014
1015 btrfs_tree_lock(quota_root->node);
Daniel Dressler01d58472014-11-21 17:15:07 +09001016 clean_tree_block(trans, tree_root->fs_info, quota_root->node);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001017 btrfs_tree_unlock(quota_root->node);
1018 btrfs_free_tree_block(trans, quota_root, quota_root->node, 0, 1);
1019
1020 free_extent_buffer(quota_root->node);
1021 free_extent_buffer(quota_root->commit_root);
1022 kfree(quota_root);
1023out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001024 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001025 return ret;
1026}
1027
Jan Schmidt2f232032013-04-25 16:04:51 +00001028static void qgroup_dirty(struct btrfs_fs_info *fs_info,
1029 struct btrfs_qgroup *qgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001030{
Jan Schmidt2f232032013-04-25 16:04:51 +00001031 if (list_empty(&qgroup->dirty))
1032 list_add(&qgroup->dirty, &fs_info->dirty_qgroups);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001033}
1034
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001035/*
1036 * The easy accounting, if we are adding/removing the only ref for an extent
1037 * then this qgroup and all of the parent qgroups get their refrence and
1038 * exclusive counts adjusted.
1039 *
1040 * Caller should hold fs_info->qgroup_lock.
1041 */
1042static int __qgroup_excl_accounting(struct btrfs_fs_info *fs_info,
1043 struct ulist *tmp, u64 ref_root,
1044 u64 num_bytes, int sign)
1045{
1046 struct btrfs_qgroup *qgroup;
1047 struct btrfs_qgroup_list *glist;
1048 struct ulist_node *unode;
1049 struct ulist_iterator uiter;
1050 int ret = 0;
1051
1052 qgroup = find_qgroup_rb(fs_info, ref_root);
1053 if (!qgroup)
1054 goto out;
1055
1056 qgroup->rfer += sign * num_bytes;
1057 qgroup->rfer_cmpr += sign * num_bytes;
1058
1059 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1060 qgroup->excl += sign * num_bytes;
1061 qgroup->excl_cmpr += sign * num_bytes;
1062 if (sign > 0)
1063 qgroup->reserved -= num_bytes;
1064
1065 qgroup_dirty(fs_info, qgroup);
1066
1067 /* Get all of the parent groups that contain this qgroup */
1068 list_for_each_entry(glist, &qgroup->groups, next_group) {
1069 ret = ulist_add(tmp, glist->group->qgroupid,
1070 ptr_to_u64(glist->group), GFP_ATOMIC);
1071 if (ret < 0)
1072 goto out;
1073 }
1074
1075 /* Iterate all of the parents and adjust their reference counts */
1076 ULIST_ITER_INIT(&uiter);
1077 while ((unode = ulist_next(tmp, &uiter))) {
1078 qgroup = u64_to_ptr(unode->aux);
1079 qgroup->rfer += sign * num_bytes;
1080 qgroup->rfer_cmpr += sign * num_bytes;
1081 WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1082 qgroup->excl += sign * num_bytes;
1083 if (sign > 0)
1084 qgroup->reserved -= num_bytes;
1085 qgroup->excl_cmpr += sign * num_bytes;
1086 qgroup_dirty(fs_info, qgroup);
1087
1088 /* Add any parents of the parents */
1089 list_for_each_entry(glist, &qgroup->groups, next_group) {
1090 ret = ulist_add(tmp, glist->group->qgroupid,
1091 ptr_to_u64(glist->group), GFP_ATOMIC);
1092 if (ret < 0)
1093 goto out;
1094 }
1095 }
1096 ret = 0;
1097out:
1098 return ret;
1099}
1100
1101
1102/*
1103 * Quick path for updating qgroup with only excl refs.
1104 *
1105 * In that case, just update all parent will be enough.
1106 * Or we needs to do a full rescan.
1107 * Caller should also hold fs_info->qgroup_lock.
1108 *
1109 * Return 0 for quick update, return >0 for need to full rescan
1110 * and mark INCONSISTENT flag.
1111 * Return < 0 for other error.
1112 */
1113static int quick_update_accounting(struct btrfs_fs_info *fs_info,
1114 struct ulist *tmp, u64 src, u64 dst,
1115 int sign)
1116{
1117 struct btrfs_qgroup *qgroup;
1118 int ret = 1;
1119 int err = 0;
1120
1121 qgroup = find_qgroup_rb(fs_info, src);
1122 if (!qgroup)
1123 goto out;
1124 if (qgroup->excl == qgroup->rfer) {
1125 ret = 0;
1126 err = __qgroup_excl_accounting(fs_info, tmp, dst,
1127 qgroup->excl, sign);
1128 if (err < 0) {
1129 ret = err;
1130 goto out;
1131 }
1132 }
1133out:
1134 if (ret)
1135 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1136 return ret;
1137}
1138
Arne Jansenbed92ea2012-06-28 18:03:02 +02001139int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans,
1140 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1141{
1142 struct btrfs_root *quota_root;
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001143 struct btrfs_qgroup *parent;
1144 struct btrfs_qgroup *member;
Wang Shilong534e6622013-04-17 14:49:51 +00001145 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001146 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001147 int ret = 0;
1148
Qu Wenruo8465ece2015-02-27 16:24:22 +08001149 /* Check the level of src and dst first */
1150 if (btrfs_qgroup_level(src) >= btrfs_qgroup_level(dst))
1151 return -EINVAL;
1152
Christian Engelmayerab3680d2015-05-02 17:19:55 +02001153 tmp = ulist_alloc(GFP_NOFS);
1154 if (!tmp)
1155 return -ENOMEM;
1156
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001157 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001158 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001159 if (!quota_root) {
1160 ret = -EINVAL;
1161 goto out;
1162 }
Wang Shilongb7fef4f2013-04-07 10:50:18 +00001163 member = find_qgroup_rb(fs_info, src);
1164 parent = find_qgroup_rb(fs_info, dst);
1165 if (!member || !parent) {
1166 ret = -EINVAL;
1167 goto out;
1168 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001169
Wang Shilong534e6622013-04-17 14:49:51 +00001170 /* check if such qgroup relation exist firstly */
1171 list_for_each_entry(list, &member->groups, next_group) {
1172 if (list->group == parent) {
1173 ret = -EEXIST;
1174 goto out;
1175 }
1176 }
1177
Arne Jansenbed92ea2012-06-28 18:03:02 +02001178 ret = add_qgroup_relation_item(trans, quota_root, src, dst);
1179 if (ret)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001180 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001181
1182 ret = add_qgroup_relation_item(trans, quota_root, dst, src);
1183 if (ret) {
1184 del_qgroup_relation_item(trans, quota_root, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001185 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001186 }
1187
1188 spin_lock(&fs_info->qgroup_lock);
1189 ret = add_relation_rb(quota_root->fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001190 if (ret < 0) {
1191 spin_unlock(&fs_info->qgroup_lock);
1192 goto out;
1193 }
1194 ret = quick_update_accounting(fs_info, tmp, src, dst, 1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001195 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001196out:
1197 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001198 ulist_free(tmp);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001199 return ret;
1200}
1201
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001202int __del_qgroup_relation(struct btrfs_trans_handle *trans,
Arne Jansenbed92ea2012-06-28 18:03:02 +02001203 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1204{
1205 struct btrfs_root *quota_root;
Wang Shilong534e6622013-04-17 14:49:51 +00001206 struct btrfs_qgroup *parent;
1207 struct btrfs_qgroup *member;
1208 struct btrfs_qgroup_list *list;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001209 struct ulist *tmp;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001210 int ret = 0;
1211 int err;
1212
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001213 tmp = ulist_alloc(GFP_NOFS);
1214 if (!tmp)
1215 return -ENOMEM;
1216
Arne Jansenbed92ea2012-06-28 18:03:02 +02001217 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001218 if (!quota_root) {
1219 ret = -EINVAL;
1220 goto out;
1221 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001222
Wang Shilong534e6622013-04-17 14:49:51 +00001223 member = find_qgroup_rb(fs_info, src);
1224 parent = find_qgroup_rb(fs_info, dst);
1225 if (!member || !parent) {
1226 ret = -EINVAL;
1227 goto out;
1228 }
1229
1230 /* check if such qgroup relation exist firstly */
1231 list_for_each_entry(list, &member->groups, next_group) {
1232 if (list->group == parent)
1233 goto exist;
1234 }
1235 ret = -ENOENT;
1236 goto out;
1237exist:
Arne Jansenbed92ea2012-06-28 18:03:02 +02001238 ret = del_qgroup_relation_item(trans, quota_root, src, dst);
1239 err = del_qgroup_relation_item(trans, quota_root, dst, src);
1240 if (err && !ret)
1241 ret = err;
1242
1243 spin_lock(&fs_info->qgroup_lock);
1244 del_relation_rb(fs_info, src, dst);
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001245 ret = quick_update_accounting(fs_info, tmp, src, dst, -1);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001246 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001247out:
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001248 ulist_free(tmp);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001249 return ret;
1250}
1251
1252int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans,
1253 struct btrfs_fs_info *fs_info, u64 src, u64 dst)
1254{
1255 int ret = 0;
1256
1257 mutex_lock(&fs_info->qgroup_ioctl_lock);
1258 ret = __del_qgroup_relation(trans, fs_info, src, dst);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001259 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001260
Arne Jansenbed92ea2012-06-28 18:03:02 +02001261 return ret;
1262}
1263
1264int btrfs_create_qgroup(struct btrfs_trans_handle *trans,
Dongsheng Yang4087cf22015-01-18 10:59:23 -05001265 struct btrfs_fs_info *fs_info, u64 qgroupid)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001266{
1267 struct btrfs_root *quota_root;
1268 struct btrfs_qgroup *qgroup;
1269 int ret = 0;
1270
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001271 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001272 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001273 if (!quota_root) {
1274 ret = -EINVAL;
1275 goto out;
1276 }
Wang Shilong534e6622013-04-17 14:49:51 +00001277 qgroup = find_qgroup_rb(fs_info, qgroupid);
1278 if (qgroup) {
1279 ret = -EEXIST;
1280 goto out;
1281 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001282
1283 ret = add_qgroup_item(trans, quota_root, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001284 if (ret)
1285 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001286
1287 spin_lock(&fs_info->qgroup_lock);
1288 qgroup = add_qgroup_rb(fs_info, qgroupid);
1289 spin_unlock(&fs_info->qgroup_lock);
1290
1291 if (IS_ERR(qgroup))
1292 ret = PTR_ERR(qgroup);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001293out:
1294 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001295 return ret;
1296}
1297
1298int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
1299 struct btrfs_fs_info *fs_info, u64 qgroupid)
1300{
1301 struct btrfs_root *quota_root;
Arne Jansen2cf68702013-01-17 01:22:09 -07001302 struct btrfs_qgroup *qgroup;
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001303 struct btrfs_qgroup_list *list;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001304 int ret = 0;
1305
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001306 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001307 quota_root = fs_info->quota_root;
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001308 if (!quota_root) {
1309 ret = -EINVAL;
1310 goto out;
1311 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001312
Arne Jansen2cf68702013-01-17 01:22:09 -07001313 qgroup = find_qgroup_rb(fs_info, qgroupid);
Wang Shilong534e6622013-04-17 14:49:51 +00001314 if (!qgroup) {
1315 ret = -ENOENT;
1316 goto out;
1317 } else {
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001318 /* check if there are no children of this qgroup */
1319 if (!list_empty(&qgroup->members)) {
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001320 ret = -EBUSY;
1321 goto out;
Arne Jansen2cf68702013-01-17 01:22:09 -07001322 }
1323 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001324 ret = del_qgroup_item(trans, quota_root, qgroupid);
1325
Dongsheng Yangf5a6b1c2014-11-24 10:27:09 -05001326 while (!list_empty(&qgroup->groups)) {
1327 list = list_first_entry(&qgroup->groups,
1328 struct btrfs_qgroup_list, next_group);
1329 ret = __del_qgroup_relation(trans, fs_info,
1330 qgroupid,
1331 list->group->qgroupid);
1332 if (ret)
1333 goto out;
1334 }
1335
Arne Jansenbed92ea2012-06-28 18:03:02 +02001336 spin_lock(&fs_info->qgroup_lock);
1337 del_qgroup_rb(quota_root->fs_info, qgroupid);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001338 spin_unlock(&fs_info->qgroup_lock);
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001339out:
1340 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001341 return ret;
1342}
1343
1344int btrfs_limit_qgroup(struct btrfs_trans_handle *trans,
1345 struct btrfs_fs_info *fs_info, u64 qgroupid,
1346 struct btrfs_qgroup_limit *limit)
1347{
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001348 struct btrfs_root *quota_root;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001349 struct btrfs_qgroup *qgroup;
1350 int ret = 0;
1351
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001352 mutex_lock(&fs_info->qgroup_ioctl_lock);
1353 quota_root = fs_info->quota_root;
1354 if (!quota_root) {
1355 ret = -EINVAL;
1356 goto out;
1357 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001358
Wang Shilongddb47af2013-04-07 10:50:20 +00001359 qgroup = find_qgroup_rb(fs_info, qgroupid);
1360 if (!qgroup) {
1361 ret = -ENOENT;
1362 goto out;
1363 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02001364
Wang Shilong58400fc2013-04-07 10:50:17 +00001365 spin_lock(&fs_info->qgroup_lock);
Dongsheng Yang03477d92015-02-06 11:06:25 -05001366 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_RFER)
1367 qgroup->max_rfer = limit->max_rfer;
1368 if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_EXCL)
1369 qgroup->max_excl = limit->max_excl;
1370 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_RFER)
1371 qgroup->rsv_rfer = limit->rsv_rfer;
1372 if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_EXCL)
1373 qgroup->rsv_excl = limit->rsv_excl;
1374 qgroup->lim_flags |= limit->flags;
1375
Arne Jansenbed92ea2012-06-28 18:03:02 +02001376 spin_unlock(&fs_info->qgroup_lock);
Dongsheng Yang1510e712014-11-20 21:01:41 -05001377
1378 ret = update_qgroup_limit_item(trans, quota_root, qgroup);
1379 if (ret) {
1380 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1381 btrfs_info(fs_info, "unable to update quota limit for %llu",
1382 qgroupid);
1383 }
1384
Wang Shilongf2f6ed32013-04-07 10:50:16 +00001385out:
1386 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001387 return ret;
1388}
Mark Fasheh11526512014-07-17 12:39:01 -07001389
1390static int comp_oper_exist(struct btrfs_qgroup_operation *oper1,
1391 struct btrfs_qgroup_operation *oper2)
1392{
1393 /*
1394 * Ignore seq and type here, we're looking for any operation
1395 * at all related to this extent on that root.
1396 */
1397 if (oper1->bytenr < oper2->bytenr)
1398 return -1;
1399 if (oper1->bytenr > oper2->bytenr)
1400 return 1;
1401 if (oper1->ref_root < oper2->ref_root)
1402 return -1;
1403 if (oper1->ref_root > oper2->ref_root)
1404 return 1;
1405 return 0;
1406}
1407
1408static int qgroup_oper_exists(struct btrfs_fs_info *fs_info,
1409 struct btrfs_qgroup_operation *oper)
1410{
1411 struct rb_node *n;
1412 struct btrfs_qgroup_operation *cur;
1413 int cmp;
1414
1415 spin_lock(&fs_info->qgroup_op_lock);
1416 n = fs_info->qgroup_op_tree.rb_node;
1417 while (n) {
1418 cur = rb_entry(n, struct btrfs_qgroup_operation, n);
1419 cmp = comp_oper_exist(cur, oper);
1420 if (cmp < 0) {
1421 n = n->rb_right;
1422 } else if (cmp) {
1423 n = n->rb_left;
1424 } else {
1425 spin_unlock(&fs_info->qgroup_op_lock);
1426 return -EEXIST;
1427 }
1428 }
1429 spin_unlock(&fs_info->qgroup_op_lock);
1430 return 0;
1431}
1432
Josef Bacikfcebe452014-05-13 17:30:47 -07001433static int comp_oper(struct btrfs_qgroup_operation *oper1,
1434 struct btrfs_qgroup_operation *oper2)
1435{
1436 if (oper1->bytenr < oper2->bytenr)
1437 return -1;
1438 if (oper1->bytenr > oper2->bytenr)
1439 return 1;
Josef Bacikfcebe452014-05-13 17:30:47 -07001440 if (oper1->ref_root < oper2->ref_root)
1441 return -1;
1442 if (oper1->ref_root > oper2->ref_root)
1443 return 1;
Filipe Mananabf691962015-03-14 07:03:27 +00001444 if (oper1->seq < oper2->seq)
1445 return -1;
1446 if (oper1->seq > oper2->seq)
1447 return 1;
Josef Bacikfcebe452014-05-13 17:30:47 -07001448 if (oper1->type < oper2->type)
1449 return -1;
1450 if (oper1->type > oper2->type)
1451 return 1;
1452 return 0;
1453}
1454
1455static int insert_qgroup_oper(struct btrfs_fs_info *fs_info,
1456 struct btrfs_qgroup_operation *oper)
1457{
1458 struct rb_node **p;
1459 struct rb_node *parent = NULL;
1460 struct btrfs_qgroup_operation *cur;
1461 int cmp;
1462
1463 spin_lock(&fs_info->qgroup_op_lock);
1464 p = &fs_info->qgroup_op_tree.rb_node;
1465 while (*p) {
1466 parent = *p;
1467 cur = rb_entry(parent, struct btrfs_qgroup_operation, n);
1468 cmp = comp_oper(cur, oper);
1469 if (cmp < 0) {
1470 p = &(*p)->rb_right;
1471 } else if (cmp) {
1472 p = &(*p)->rb_left;
1473 } else {
1474 spin_unlock(&fs_info->qgroup_op_lock);
1475 return -EEXIST;
1476 }
1477 }
1478 rb_link_node(&oper->n, parent, p);
1479 rb_insert_color(&oper->n, &fs_info->qgroup_op_tree);
1480 spin_unlock(&fs_info->qgroup_op_lock);
1481 return 0;
1482}
Arne Jansenbed92ea2012-06-28 18:03:02 +02001483
Arne Jansenbed92ea2012-06-28 18:03:02 +02001484/*
Josef Bacikfcebe452014-05-13 17:30:47 -07001485 * Record a quota operation for processing later on.
1486 * @trans: the transaction we are adding the delayed op to.
1487 * @fs_info: the fs_info for this fs.
1488 * @ref_root: the root of the reference we are acting on,
1489 * @bytenr: the bytenr we are acting on.
1490 * @num_bytes: the number of bytes in the reference.
1491 * @type: the type of operation this is.
1492 * @mod_seq: do we need to get a sequence number for looking up roots.
1493 *
1494 * We just add it to our trans qgroup_ref_list and carry on and process these
1495 * operations in order at some later point. If the reference root isn't a fs
1496 * root then we don't bother with doing anything.
1497 *
1498 * MUST BE HOLDING THE REF LOCK.
Arne Jansenbed92ea2012-06-28 18:03:02 +02001499 */
1500int btrfs_qgroup_record_ref(struct btrfs_trans_handle *trans,
Josef Bacikfcebe452014-05-13 17:30:47 -07001501 struct btrfs_fs_info *fs_info, u64 ref_root,
1502 u64 bytenr, u64 num_bytes,
1503 enum btrfs_qgroup_operation_type type, int mod_seq)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001504{
Josef Bacikfcebe452014-05-13 17:30:47 -07001505 struct btrfs_qgroup_operation *oper;
1506 int ret;
Arne Jansenbed92ea2012-06-28 18:03:02 +02001507
Josef Bacikfcebe452014-05-13 17:30:47 -07001508 if (!is_fstree(ref_root) || !fs_info->quota_enabled)
1509 return 0;
1510
1511 oper = kmalloc(sizeof(*oper), GFP_NOFS);
1512 if (!oper)
Arne Jansenbed92ea2012-06-28 18:03:02 +02001513 return -ENOMEM;
1514
Josef Bacikfcebe452014-05-13 17:30:47 -07001515 oper->ref_root = ref_root;
1516 oper->bytenr = bytenr;
1517 oper->num_bytes = num_bytes;
1518 oper->type = type;
1519 oper->seq = atomic_inc_return(&fs_info->qgroup_op_seq);
1520 INIT_LIST_HEAD(&oper->elem.list);
1521 oper->elem.seq = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07001522
Mark Fashehd3982102014-07-17 12:39:00 -07001523 trace_btrfs_qgroup_record_ref(oper);
1524
Mark Fasheh11526512014-07-17 12:39:01 -07001525 if (type == BTRFS_QGROUP_OPER_SUB_SUBTREE) {
1526 /*
1527 * If any operation for this bytenr/ref_root combo
1528 * exists, then we know it's not exclusively owned and
1529 * shouldn't be queued up.
1530 *
1531 * This also catches the case where we have a cloned
1532 * extent that gets queued up multiple times during
1533 * drop snapshot.
1534 */
1535 if (qgroup_oper_exists(fs_info, oper)) {
1536 kfree(oper);
1537 return 0;
1538 }
1539 }
1540
Josef Bacikfcebe452014-05-13 17:30:47 -07001541 ret = insert_qgroup_oper(fs_info, oper);
1542 if (ret) {
1543 /* Shouldn't happen so have an assert for developers */
1544 ASSERT(0);
1545 kfree(oper);
1546 return ret;
1547 }
1548 list_add_tail(&oper->list, &trans->qgroup_ref_list);
1549
1550 if (mod_seq)
1551 btrfs_get_tree_mod_seq(fs_info, &oper->elem);
Arne Jansenbed92ea2012-06-28 18:03:02 +02001552
1553 return 0;
1554}
1555
Qu Wenruo3b7d00f2015-04-16 16:40:39 +08001556int btrfs_qgroup_prepare_account_extents(struct btrfs_trans_handle *trans,
1557 struct btrfs_fs_info *fs_info)
1558{
1559 struct btrfs_qgroup_extent_record *record;
1560 struct btrfs_delayed_ref_root *delayed_refs;
1561 struct rb_node *node;
1562 int ret = 0;
1563
1564 delayed_refs = &trans->transaction->delayed_refs;
1565
1566 /*
1567 * No need to do lock, since this function will only be called in
1568 * btrfs_commmit_transaction().
1569 */
1570 node = rb_first(&delayed_refs->dirty_extent_root);
1571 while (node) {
1572 record = rb_entry(node, struct btrfs_qgroup_extent_record,
1573 node);
1574 ret = btrfs_find_all_roots(NULL, fs_info, record->bytenr, 0,
1575 &record->old_roots);
1576 if (ret < 0)
1577 break;
1578 node = rb_next(node);
1579 }
1580 return ret;
1581}
1582
Qu Wenruo3368d002015-04-16 14:34:17 +08001583struct btrfs_qgroup_extent_record
1584*btrfs_qgroup_insert_dirty_extent(struct btrfs_delayed_ref_root *delayed_refs,
1585 struct btrfs_qgroup_extent_record *record)
1586{
1587 struct rb_node **p = &delayed_refs->dirty_extent_root.rb_node;
1588 struct rb_node *parent_node = NULL;
1589 struct btrfs_qgroup_extent_record *entry;
1590 u64 bytenr = record->bytenr;
1591
1592 while (*p) {
1593 parent_node = *p;
1594 entry = rb_entry(parent_node, struct btrfs_qgroup_extent_record,
1595 node);
1596 if (bytenr < entry->bytenr)
1597 p = &(*p)->rb_left;
1598 else if (bytenr > entry->bytenr)
1599 p = &(*p)->rb_right;
1600 else
1601 return entry;
1602 }
1603
1604 rb_link_node(&record->node, parent_node, p);
1605 rb_insert_color(&record->node, &delayed_refs->dirty_extent_root);
1606 return NULL;
1607}
1608
1609/*
1610 * The easy accounting, if we are adding/removing the only ref for an extent
1611 * then this qgroup and all of the parent qgroups get their refrence and
1612 * exclusive counts adjusted.
1613 */
Josef Bacikfcebe452014-05-13 17:30:47 -07001614static int qgroup_excl_accounting(struct btrfs_fs_info *fs_info,
1615 struct btrfs_qgroup_operation *oper)
1616{
Josef Bacikfcebe452014-05-13 17:30:47 -07001617 struct ulist *tmp;
Josef Bacikfcebe452014-05-13 17:30:47 -07001618 int sign = 0;
1619 int ret = 0;
1620
1621 tmp = ulist_alloc(GFP_NOFS);
1622 if (!tmp)
1623 return -ENOMEM;
1624
1625 spin_lock(&fs_info->qgroup_lock);
1626 if (!fs_info->quota_root)
1627 goto out;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001628
Josef Bacikfcebe452014-05-13 17:30:47 -07001629 switch (oper->type) {
1630 case BTRFS_QGROUP_OPER_ADD_EXCL:
1631 sign = 1;
1632 break;
1633 case BTRFS_QGROUP_OPER_SUB_EXCL:
1634 sign = -1;
1635 break;
1636 default:
1637 ASSERT(0);
1638 }
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08001639 ret = __qgroup_excl_accounting(fs_info, tmp, oper->ref_root,
1640 oper->num_bytes, sign);
Josef Bacikfcebe452014-05-13 17:30:47 -07001641out:
1642 spin_unlock(&fs_info->qgroup_lock);
1643 ulist_free(tmp);
1644 return ret;
1645}
1646
1647/*
1648 * Walk all of the roots that pointed to our bytenr and adjust their refcnts as
1649 * properly.
1650 */
1651static int qgroup_calc_old_refcnt(struct btrfs_fs_info *fs_info,
1652 u64 root_to_skip, struct ulist *tmp,
1653 struct ulist *roots, struct ulist *qgroups,
1654 u64 seq, int *old_roots, int rescan)
Jan Schmidt46b665c2013-04-25 16:04:50 +00001655{
1656 struct ulist_node *unode;
1657 struct ulist_iterator uiter;
1658 struct ulist_node *tmp_unode;
1659 struct ulist_iterator tmp_uiter;
1660 struct btrfs_qgroup *qg;
1661 int ret;
1662
1663 ULIST_ITER_INIT(&uiter);
1664 while ((unode = ulist_next(roots, &uiter))) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001665 /* We don't count our current root here */
1666 if (unode->val == root_to_skip)
1667 continue;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001668 qg = find_qgroup_rb(fs_info, unode->val);
1669 if (!qg)
1670 continue;
Josef Bacikfcebe452014-05-13 17:30:47 -07001671 /*
1672 * We could have a pending removal of this same ref so we may
1673 * not have actually found our ref root when doing
1674 * btrfs_find_all_roots, so we need to keep track of how many
1675 * old roots we find in case we removed ours and added a
1676 * different one at the same time. I don't think this could
1677 * happen in practice but that sort of thinking leads to pain
1678 * and suffering and to the dark side.
1679 */
1680 (*old_roots)++;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001681
1682 ulist_reinit(tmp);
Josef Bacikfcebe452014-05-13 17:30:47 -07001683 ret = ulist_add(qgroups, qg->qgroupid, ptr_to_u64(qg),
1684 GFP_ATOMIC);
1685 if (ret < 0)
1686 return ret;
1687 ret = ulist_add(tmp, qg->qgroupid, ptr_to_u64(qg), GFP_ATOMIC);
Jan Schmidt46b665c2013-04-25 16:04:50 +00001688 if (ret < 0)
1689 return ret;
1690 ULIST_ITER_INIT(&tmp_uiter);
1691 while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
1692 struct btrfs_qgroup_list *glist;
Qu Wenruo9c542132015-03-12 16:10:13 +08001693 int mod;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001694
Josef Bacikfcebe452014-05-13 17:30:47 -07001695 qg = u64_to_ptr(tmp_unode->aux);
1696 /*
1697 * We use this sequence number to keep from having to
1698 * run the whole list and 0 out the refcnt every time.
1699 * We basically use sequnce as the known 0 count and
1700 * then add 1 everytime we see a qgroup. This is how we
1701 * get how many of the roots actually point up to the
1702 * upper level qgroups in order to determine exclusive
1703 * counts.
1704 *
Qu Wenruo9c542132015-03-12 16:10:13 +08001705 * For rescan none of the extent is recorded before so
1706 * we just don't add old_refcnt.
Josef Bacikfcebe452014-05-13 17:30:47 -07001707 */
1708 if (rescan)
Qu Wenruo9c542132015-03-12 16:10:13 +08001709 mod = 0;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001710 else
Qu Wenruo9c542132015-03-12 16:10:13 +08001711 mod = 1;
1712 btrfs_qgroup_update_old_refcnt(qg, seq, mod);
1713 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
Jan Schmidt46b665c2013-04-25 16:04:50 +00001714 list_for_each_entry(glist, &qg->groups, next_group) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001715 ret = ulist_add(qgroups, glist->group->qgroupid,
1716 ptr_to_u64(glist->group),
1717 GFP_ATOMIC);
1718 if (ret < 0)
1719 return ret;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001720 ret = ulist_add(tmp, glist->group->qgroupid,
Josef Bacikfcebe452014-05-13 17:30:47 -07001721 ptr_to_u64(glist->group),
Jan Schmidt46b665c2013-04-25 16:04:50 +00001722 GFP_ATOMIC);
1723 if (ret < 0)
1724 return ret;
1725 }
1726 }
1727 }
Jan Schmidt46b665c2013-04-25 16:04:50 +00001728 return 0;
1729}
1730
Josef Bacikfcebe452014-05-13 17:30:47 -07001731/*
1732 * We need to walk forward in our operation tree and account for any roots that
1733 * were deleted after we made this operation.
1734 */
1735static int qgroup_account_deleted_refs(struct btrfs_fs_info *fs_info,
1736 struct btrfs_qgroup_operation *oper,
1737 struct ulist *tmp,
1738 struct ulist *qgroups, u64 seq,
1739 int *old_roots)
Jan Schmidt46b665c2013-04-25 16:04:50 +00001740{
1741 struct ulist_node *unode;
1742 struct ulist_iterator uiter;
1743 struct btrfs_qgroup *qg;
Josef Bacikfcebe452014-05-13 17:30:47 -07001744 struct btrfs_qgroup_operation *tmp_oper;
1745 struct rb_node *n;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001746 int ret;
1747
1748 ulist_reinit(tmp);
Jan Schmidt46b665c2013-04-25 16:04:50 +00001749
Josef Bacikfcebe452014-05-13 17:30:47 -07001750 /*
1751 * We only walk forward in the tree since we're only interested in
1752 * removals that happened _after_ our operation.
1753 */
1754 spin_lock(&fs_info->qgroup_op_lock);
1755 n = rb_next(&oper->n);
1756 spin_unlock(&fs_info->qgroup_op_lock);
1757 if (!n)
1758 return 0;
1759 tmp_oper = rb_entry(n, struct btrfs_qgroup_operation, n);
1760 while (tmp_oper->bytenr == oper->bytenr) {
1761 /*
1762 * If it's not a removal we don't care, additions work out
1763 * properly with our refcnt tracking.
1764 */
1765 if (tmp_oper->type != BTRFS_QGROUP_OPER_SUB_SHARED &&
1766 tmp_oper->type != BTRFS_QGROUP_OPER_SUB_EXCL)
1767 goto next;
1768 qg = find_qgroup_rb(fs_info, tmp_oper->ref_root);
1769 if (!qg)
1770 goto next;
1771 ret = ulist_add(qgroups, qg->qgroupid, ptr_to_u64(qg),
1772 GFP_ATOMIC);
1773 if (ret) {
1774 if (ret < 0)
1775 return ret;
1776 /*
1777 * We only want to increase old_roots if this qgroup is
1778 * not already in the list of qgroups. If it is already
1779 * there then that means it must have been re-added or
1780 * the delete will be discarded because we had an
1781 * existing ref that we haven't looked up yet. In this
1782 * case we don't want to increase old_roots. So if ret
1783 * == 1 then we know that this is the first time we've
1784 * seen this qgroup and we can bump the old_roots.
1785 */
1786 (*old_roots)++;
1787 ret = ulist_add(tmp, qg->qgroupid, ptr_to_u64(qg),
1788 GFP_ATOMIC);
1789 if (ret < 0)
1790 return ret;
1791 }
1792next:
1793 spin_lock(&fs_info->qgroup_op_lock);
1794 n = rb_next(&tmp_oper->n);
1795 spin_unlock(&fs_info->qgroup_op_lock);
1796 if (!n)
1797 break;
1798 tmp_oper = rb_entry(n, struct btrfs_qgroup_operation, n);
1799 }
1800
1801 /* Ok now process the qgroups we found */
Jan Schmidt46b665c2013-04-25 16:04:50 +00001802 ULIST_ITER_INIT(&uiter);
1803 while ((unode = ulist_next(tmp, &uiter))) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001804 struct btrfs_qgroup_list *glist;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001805
Josef Bacikfcebe452014-05-13 17:30:47 -07001806 qg = u64_to_ptr(unode->aux);
Qu Wenruo9c542132015-03-12 16:10:13 +08001807 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
1808 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
Jan Schmidt46b665c2013-04-25 16:04:50 +00001809 list_for_each_entry(glist, &qg->groups, next_group) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001810 ret = ulist_add(qgroups, glist->group->qgroupid,
1811 ptr_to_u64(glist->group), GFP_ATOMIC);
1812 if (ret < 0)
1813 return ret;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001814 ret = ulist_add(tmp, glist->group->qgroupid,
Josef Bacikfcebe452014-05-13 17:30:47 -07001815 ptr_to_u64(glist->group), GFP_ATOMIC);
Jan Schmidt46b665c2013-04-25 16:04:50 +00001816 if (ret < 0)
1817 return ret;
1818 }
1819 }
Jan Schmidt46b665c2013-04-25 16:04:50 +00001820 return 0;
1821}
1822
Josef Bacikfcebe452014-05-13 17:30:47 -07001823/* Add refcnt for the newly added reference. */
1824static int qgroup_calc_new_refcnt(struct btrfs_fs_info *fs_info,
1825 struct btrfs_qgroup_operation *oper,
1826 struct btrfs_qgroup *qgroup,
1827 struct ulist *tmp, struct ulist *qgroups,
1828 u64 seq)
Jan Schmidt46b665c2013-04-25 16:04:50 +00001829{
1830 struct ulist_node *unode;
1831 struct ulist_iterator uiter;
1832 struct btrfs_qgroup *qg;
Jan Schmidt46b665c2013-04-25 16:04:50 +00001833 int ret;
1834
Josef Bacikfcebe452014-05-13 17:30:47 -07001835 ulist_reinit(tmp);
1836 ret = ulist_add(qgroups, qgroup->qgroupid, ptr_to_u64(qgroup),
1837 GFP_ATOMIC);
1838 if (ret < 0)
1839 return ret;
1840 ret = ulist_add(tmp, qgroup->qgroupid, ptr_to_u64(qgroup),
1841 GFP_ATOMIC);
1842 if (ret < 0)
1843 return ret;
1844 ULIST_ITER_INIT(&uiter);
1845 while ((unode = ulist_next(tmp, &uiter))) {
1846 struct btrfs_qgroup_list *glist;
1847
1848 qg = u64_to_ptr(unode->aux);
Qu Wenruo9c542132015-03-12 16:10:13 +08001849 if (oper->type == BTRFS_QGROUP_OPER_ADD_SHARED)
1850 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
1851 else
1852 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
Josef Bacikfcebe452014-05-13 17:30:47 -07001853 list_for_each_entry(glist, &qg->groups, next_group) {
1854 ret = ulist_add(tmp, glist->group->qgroupid,
1855 ptr_to_u64(glist->group), GFP_ATOMIC);
1856 if (ret < 0)
1857 return ret;
1858 ret = ulist_add(qgroups, glist->group->qgroupid,
1859 ptr_to_u64(glist->group), GFP_ATOMIC);
1860 if (ret < 0)
1861 return ret;
1862 }
1863 }
1864 return 0;
1865}
1866
Qu Wenruod810ef22015-04-12 16:52:34 +08001867#define UPDATE_NEW 0
1868#define UPDATE_OLD 1
1869/*
1870 * Walk all of the roots that points to the bytenr and adjust their refcnts.
1871 */
1872static int qgroup_update_refcnt(struct btrfs_fs_info *fs_info,
1873 struct ulist *roots, struct ulist *tmp,
1874 struct ulist *qgroups, u64 seq, int update_old)
1875{
1876 struct ulist_node *unode;
1877 struct ulist_iterator uiter;
1878 struct ulist_node *tmp_unode;
1879 struct ulist_iterator tmp_uiter;
1880 struct btrfs_qgroup *qg;
1881 int ret = 0;
1882
1883 if (!roots)
1884 return 0;
1885 ULIST_ITER_INIT(&uiter);
1886 while ((unode = ulist_next(roots, &uiter))) {
1887 qg = find_qgroup_rb(fs_info, unode->val);
1888 if (!qg)
1889 continue;
1890
1891 ulist_reinit(tmp);
1892 ret = ulist_add(qgroups, qg->qgroupid, ptr_to_u64(qg),
1893 GFP_ATOMIC);
1894 if (ret < 0)
1895 return ret;
1896 ret = ulist_add(tmp, qg->qgroupid, ptr_to_u64(qg), GFP_ATOMIC);
1897 if (ret < 0)
1898 return ret;
1899 ULIST_ITER_INIT(&tmp_uiter);
1900 while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
1901 struct btrfs_qgroup_list *glist;
1902
1903 qg = u64_to_ptr(tmp_unode->aux);
1904 if (update_old)
1905 btrfs_qgroup_update_old_refcnt(qg, seq, 1);
1906 else
1907 btrfs_qgroup_update_new_refcnt(qg, seq, 1);
1908 list_for_each_entry(glist, &qg->groups, next_group) {
1909 ret = ulist_add(qgroups, glist->group->qgroupid,
1910 ptr_to_u64(glist->group),
1911 GFP_ATOMIC);
1912 if (ret < 0)
1913 return ret;
1914 ret = ulist_add(tmp, glist->group->qgroupid,
1915 ptr_to_u64(glist->group),
1916 GFP_ATOMIC);
1917 if (ret < 0)
1918 return ret;
1919 }
1920 }
1921 }
1922 return 0;
1923}
1924
Josef Bacikfcebe452014-05-13 17:30:47 -07001925/*
Qu Wenruo823ae5b2015-04-12 16:59:57 +08001926 * Update qgroup rfer/excl counters.
1927 * Rfer update is easy, codes can explain themselves.
1928 * Excl update is tricky, the update is split into 2 part.
1929 * Part 1: Possible exclusive <-> sharing detect:
1930 * | A | !A |
1931 * -------------------------------------
1932 * B | * | - |
1933 * -------------------------------------
1934 * !B | + | ** |
1935 * -------------------------------------
1936 *
1937 * Conditions:
1938 * A: cur_old_roots < nr_old_roots (not exclusive before)
1939 * !A: cur_old_roots == nr_old_roots (possible exclusive before)
1940 * B: cur_new_roots < nr_new_roots (not exclusive now)
1941 * !B: cur_new_roots == nr_new_roots (possible exclsuive now)
1942 *
1943 * Results:
1944 * +: Possible sharing -> exclusive -: Possible exclusive -> sharing
1945 * *: Definitely not changed. **: Possible unchanged.
1946 *
1947 * For !A and !B condition, the exception is cur_old/new_roots == 0 case.
1948 *
1949 * To make the logic clear, we first use condition A and B to split
1950 * combination into 4 results.
1951 *
1952 * Then, for result "+" and "-", check old/new_roots == 0 case, as in them
1953 * only on variant maybe 0.
1954 *
1955 * Lastly, check result **, since there are 2 variants maybe 0, split them
1956 * again(2x2).
1957 * But this time we don't need to consider other things, the codes and logic
1958 * is easy to understand now.
1959 */
1960static int qgroup_update_counters(struct btrfs_fs_info *fs_info,
1961 struct ulist *qgroups,
1962 u64 nr_old_roots,
1963 u64 nr_new_roots,
1964 u64 num_bytes, u64 seq)
1965{
1966 struct ulist_node *unode;
1967 struct ulist_iterator uiter;
1968 struct btrfs_qgroup *qg;
1969 u64 cur_new_count, cur_old_count;
1970
1971 ULIST_ITER_INIT(&uiter);
1972 while ((unode = ulist_next(qgroups, &uiter))) {
1973 bool dirty = false;
1974
1975 qg = u64_to_ptr(unode->aux);
1976 cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
1977 cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
1978
1979 /* Rfer update part */
1980 if (cur_old_count == 0 && cur_new_count > 0) {
1981 qg->rfer += num_bytes;
1982 qg->rfer_cmpr += num_bytes;
1983 dirty = true;
1984 }
1985 if (cur_old_count > 0 && cur_new_count == 0) {
1986 qg->rfer -= num_bytes;
1987 qg->rfer_cmpr -= num_bytes;
1988 dirty = true;
1989 }
1990
1991 /* Excl update part */
1992 /* Exclusive/none -> shared case */
1993 if (cur_old_count == nr_old_roots &&
1994 cur_new_count < nr_new_roots) {
1995 /* Exclusive -> shared */
1996 if (cur_old_count != 0) {
1997 qg->excl -= num_bytes;
1998 qg->excl_cmpr -= num_bytes;
1999 dirty = true;
2000 }
2001 }
2002
2003 /* Shared -> exclusive/none case */
2004 if (cur_old_count < nr_old_roots &&
2005 cur_new_count == nr_new_roots) {
2006 /* Shared->exclusive */
2007 if (cur_new_count != 0) {
2008 qg->excl += num_bytes;
2009 qg->excl_cmpr += num_bytes;
2010 dirty = true;
2011 }
2012 }
2013
2014 /* Exclusive/none -> exclusive/none case */
2015 if (cur_old_count == nr_old_roots &&
2016 cur_new_count == nr_new_roots) {
2017 if (cur_old_count == 0) {
2018 /* None -> exclusive/none */
2019
2020 if (cur_new_count != 0) {
2021 /* None -> exclusive */
2022 qg->excl += num_bytes;
2023 qg->excl_cmpr += num_bytes;
2024 dirty = true;
2025 }
2026 /* None -> none, nothing changed */
2027 } else {
2028 /* Exclusive -> exclusive/none */
2029
2030 if (cur_new_count == 0) {
2031 /* Exclusive -> none */
2032 qg->excl -= num_bytes;
2033 qg->excl_cmpr -= num_bytes;
2034 dirty = true;
2035 }
2036 /* Exclusive -> exclusive, nothing changed */
2037 }
2038 }
2039 if (dirty)
2040 qgroup_dirty(fs_info, qg);
2041 }
2042 return 0;
2043}
2044
2045/*
Josef Bacikfcebe452014-05-13 17:30:47 -07002046 * This adjusts the counters for all referenced qgroups if need be.
2047 */
2048static int qgroup_adjust_counters(struct btrfs_fs_info *fs_info,
2049 u64 root_to_skip, u64 num_bytes,
2050 struct ulist *qgroups, u64 seq,
2051 int old_roots, int new_roots, int rescan)
2052{
2053 struct ulist_node *unode;
2054 struct ulist_iterator uiter;
2055 struct btrfs_qgroup *qg;
2056 u64 cur_new_count, cur_old_count;
2057
2058 ULIST_ITER_INIT(&uiter);
2059 while ((unode = ulist_next(qgroups, &uiter))) {
2060 bool dirty = false;
2061
2062 qg = u64_to_ptr(unode->aux);
Qu Wenruo9c542132015-03-12 16:10:13 +08002063 cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
2064 cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
2065
Josef Bacikfcebe452014-05-13 17:30:47 -07002066 /*
2067 * Wasn't referenced before but is now, add to the reference
2068 * counters.
2069 */
Qu Wenruo9c542132015-03-12 16:10:13 +08002070 if (cur_old_count == 0 && cur_new_count > 0) {
Josef Bacikfcebe452014-05-13 17:30:47 -07002071 qg->rfer += num_bytes;
2072 qg->rfer_cmpr += num_bytes;
2073 dirty = true;
2074 }
2075
2076 /*
2077 * Was referenced before but isn't now, subtract from the
2078 * reference counters.
2079 */
Qu Wenruo9c542132015-03-12 16:10:13 +08002080 if (cur_old_count > 0 && cur_new_count == 0) {
Josef Bacikfcebe452014-05-13 17:30:47 -07002081 qg->rfer -= num_bytes;
2082 qg->rfer_cmpr -= num_bytes;
2083 dirty = true;
2084 }
2085
Josef Bacikfcebe452014-05-13 17:30:47 -07002086 /*
2087 * If our refcount was the same as the roots previously but our
2088 * new count isn't the same as the number of roots now then we
2089 * went from having a exclusive reference on this range to not.
2090 */
2091 if (old_roots && cur_old_count == old_roots &&
2092 (cur_new_count != new_roots || new_roots == 0)) {
2093 WARN_ON(cur_new_count != new_roots && new_roots == 0);
2094 qg->excl -= num_bytes;
2095 qg->excl_cmpr -= num_bytes;
2096 dirty = true;
2097 }
2098
2099 /*
2100 * If we didn't reference all the roots before but now we do we
2101 * have an exclusive reference to this range.
2102 */
2103 if ((!old_roots || (old_roots && cur_old_count != old_roots))
2104 && cur_new_count == new_roots) {
2105 qg->excl += num_bytes;
2106 qg->excl_cmpr += num_bytes;
2107 dirty = true;
2108 }
2109
2110 if (dirty)
2111 qgroup_dirty(fs_info, qg);
2112 }
2113 return 0;
2114}
2115
2116/*
2117 * If we removed a data extent and there were other references for that bytenr
2118 * then we need to lookup all referenced roots to make sure we still don't
2119 * reference this bytenr. If we do then we can just discard this operation.
2120 */
2121static int check_existing_refs(struct btrfs_trans_handle *trans,
2122 struct btrfs_fs_info *fs_info,
2123 struct btrfs_qgroup_operation *oper)
2124{
2125 struct ulist *roots = NULL;
2126 struct ulist_node *unode;
2127 struct ulist_iterator uiter;
2128 int ret = 0;
2129
2130 ret = btrfs_find_all_roots(trans, fs_info, oper->bytenr,
2131 oper->elem.seq, &roots);
2132 if (ret < 0)
2133 return ret;
2134 ret = 0;
2135
Jan Schmidt46b665c2013-04-25 16:04:50 +00002136 ULIST_ITER_INIT(&uiter);
2137 while ((unode = ulist_next(roots, &uiter))) {
Josef Bacikfcebe452014-05-13 17:30:47 -07002138 if (unode->val == oper->ref_root) {
2139 ret = 1;
2140 break;
Jan Schmidt46b665c2013-04-25 16:04:50 +00002141 }
2142 }
Josef Bacikfcebe452014-05-13 17:30:47 -07002143 ulist_free(roots);
2144 btrfs_put_tree_mod_seq(fs_info, &oper->elem);
Jan Schmidt46b665c2013-04-25 16:04:50 +00002145
Josef Bacikfcebe452014-05-13 17:30:47 -07002146 return ret;
2147}
2148
2149/*
2150 * If we share a reference across multiple roots then we may need to adjust
2151 * various qgroups referenced and exclusive counters. The basic premise is this
2152 *
2153 * 1) We have seq to represent a 0 count. Instead of looping through all of the
2154 * qgroups and resetting their refcount to 0 we just constantly bump this
2155 * sequence number to act as the base reference count. This means that if
2156 * anybody is equal to or below this sequence they were never referenced. We
2157 * jack this sequence up by the number of roots we found each time in order to
2158 * make sure we don't have any overlap.
2159 *
2160 * 2) We first search all the roots that reference the area _except_ the root
2161 * we're acting on currently. This makes up the old_refcnt of all the qgroups
2162 * before.
2163 *
2164 * 3) We walk all of the qgroups referenced by the root we are currently acting
2165 * on, and will either adjust old_refcnt in the case of a removal or the
2166 * new_refcnt in the case of an addition.
2167 *
2168 * 4) Finally we walk all the qgroups that are referenced by this range
2169 * including the root we are acting on currently. We will adjust the counters
2170 * based on the number of roots we had and will have after this operation.
2171 *
2172 * Take this example as an illustration
2173 *
2174 * [qgroup 1/0]
2175 * / | \
2176 * [qg 0/0] [qg 0/1] [qg 0/2]
2177 * \ | /
2178 * [ extent ]
2179 *
2180 * Say we are adding a reference that is covered by qg 0/0. The first step
2181 * would give a refcnt of 1 to qg 0/1 and 0/2 and a refcnt of 2 to qg 1/0 with
2182 * old_roots being 2. Because it is adding new_roots will be 1. We then go
2183 * through qg 0/0 which will get the new_refcnt set to 1 and add 1 to qg 1/0's
2184 * new_refcnt, bringing it to 3. We then walk through all of the qgroups, we
2185 * notice that the old refcnt for qg 0/0 < the new refcnt, so we added a
2186 * reference and thus must add the size to the referenced bytes. Everything
2187 * else is the same so nothing else changes.
2188 */
2189static int qgroup_shared_accounting(struct btrfs_trans_handle *trans,
2190 struct btrfs_fs_info *fs_info,
2191 struct btrfs_qgroup_operation *oper)
2192{
2193 struct ulist *roots = NULL;
2194 struct ulist *qgroups, *tmp;
2195 struct btrfs_qgroup *qgroup;
David Sterba3284da72015-02-25 15:47:32 +01002196 struct seq_list elem = SEQ_LIST_INIT(elem);
Josef Bacikfcebe452014-05-13 17:30:47 -07002197 u64 seq;
2198 int old_roots = 0;
2199 int new_roots = 0;
2200 int ret = 0;
2201
2202 if (oper->elem.seq) {
2203 ret = check_existing_refs(trans, fs_info, oper);
2204 if (ret < 0)
2205 return ret;
2206 if (ret)
2207 return 0;
2208 }
2209
2210 qgroups = ulist_alloc(GFP_NOFS);
2211 if (!qgroups)
2212 return -ENOMEM;
2213
2214 tmp = ulist_alloc(GFP_NOFS);
Eric Sandeend7372782014-06-12 00:14:59 -05002215 if (!tmp) {
2216 ulist_free(qgroups);
Josef Bacikfcebe452014-05-13 17:30:47 -07002217 return -ENOMEM;
Eric Sandeend7372782014-06-12 00:14:59 -05002218 }
Josef Bacikfcebe452014-05-13 17:30:47 -07002219
2220 btrfs_get_tree_mod_seq(fs_info, &elem);
2221 ret = btrfs_find_all_roots(trans, fs_info, oper->bytenr, elem.seq,
2222 &roots);
2223 btrfs_put_tree_mod_seq(fs_info, &elem);
2224 if (ret < 0) {
2225 ulist_free(qgroups);
2226 ulist_free(tmp);
2227 return ret;
2228 }
2229 spin_lock(&fs_info->qgroup_lock);
2230 qgroup = find_qgroup_rb(fs_info, oper->ref_root);
2231 if (!qgroup)
2232 goto out;
2233 seq = fs_info->qgroup_seq;
2234
2235 /*
2236 * So roots is the list of all the roots currently pointing at the
2237 * bytenr, including the ref we are adding if we are adding, or not if
2238 * we are removing a ref. So we pass in the ref_root to skip that root
2239 * in our calculations. We set old_refnct and new_refcnt cause who the
2240 * hell knows what everything looked like before, and it doesn't matter
2241 * except...
2242 */
2243 ret = qgroup_calc_old_refcnt(fs_info, oper->ref_root, tmp, roots, qgroups,
2244 seq, &old_roots, 0);
2245 if (ret < 0)
2246 goto out;
2247
2248 /*
2249 * Now adjust the refcounts of the qgroups that care about this
2250 * reference, either the old_count in the case of removal or new_count
2251 * in the case of an addition.
2252 */
2253 ret = qgroup_calc_new_refcnt(fs_info, oper, qgroup, tmp, qgroups,
2254 seq);
2255 if (ret < 0)
2256 goto out;
2257
2258 /*
2259 * ...in the case of removals. If we had a removal before we got around
2260 * to processing this operation then we need to find that guy and count
2261 * his references as if they really existed so we don't end up screwing
2262 * up the exclusive counts. Then whenever we go to process the delete
2263 * everything will be grand and we can account for whatever exclusive
2264 * changes need to be made there. We also have to pass in old_roots so
2265 * we have an accurate count of the roots as it pertains to this
2266 * operations view of the world.
2267 */
2268 ret = qgroup_account_deleted_refs(fs_info, oper, tmp, qgroups, seq,
2269 &old_roots);
2270 if (ret < 0)
2271 goto out;
2272
2273 /*
2274 * We are adding our root, need to adjust up the number of roots,
2275 * otherwise old_roots is the number of roots we want.
2276 */
2277 if (oper->type == BTRFS_QGROUP_OPER_ADD_SHARED) {
2278 new_roots = old_roots + 1;
2279 } else {
2280 new_roots = old_roots;
2281 old_roots++;
2282 }
Qu Wenruo9c542132015-03-12 16:10:13 +08002283
2284 /*
2285 * Bump qgroup_seq to avoid seq overlap
2286 * XXX: This makes qgroup_seq mismatch with oper->seq.
2287 */
Josef Bacikfcebe452014-05-13 17:30:47 -07002288 fs_info->qgroup_seq += old_roots + 1;
2289
2290
2291 /*
2292 * And now the magic happens, bless Arne for having a pretty elegant
2293 * solution for this.
2294 */
2295 qgroup_adjust_counters(fs_info, oper->ref_root, oper->num_bytes,
2296 qgroups, seq, old_roots, new_roots, 0);
2297out:
2298 spin_unlock(&fs_info->qgroup_lock);
2299 ulist_free(qgroups);
2300 ulist_free(roots);
2301 ulist_free(tmp);
2302 return ret;
Jan Schmidt46b665c2013-04-25 16:04:50 +00002303}
2304
Arne Jansenbed92ea2012-06-28 18:03:02 +02002305/*
Mark Fasheh11526512014-07-17 12:39:01 -07002306 * Process a reference to a shared subtree. This type of operation is
2307 * queued during snapshot removal when we encounter extents which are
2308 * shared between more than one root.
2309 */
2310static int qgroup_subtree_accounting(struct btrfs_trans_handle *trans,
2311 struct btrfs_fs_info *fs_info,
2312 struct btrfs_qgroup_operation *oper)
2313{
2314 struct ulist *roots = NULL;
2315 struct ulist_node *unode;
2316 struct ulist_iterator uiter;
2317 struct btrfs_qgroup_list *glist;
2318 struct ulist *parents;
2319 int ret = 0;
Mark Fashehf90e5792014-07-17 12:39:04 -07002320 int err;
Mark Fasheh11526512014-07-17 12:39:01 -07002321 struct btrfs_qgroup *qg;
2322 u64 root_obj = 0;
David Sterba3284da72015-02-25 15:47:32 +01002323 struct seq_list elem = SEQ_LIST_INIT(elem);
Mark Fasheh11526512014-07-17 12:39:01 -07002324
2325 parents = ulist_alloc(GFP_NOFS);
2326 if (!parents)
2327 return -ENOMEM;
2328
2329 btrfs_get_tree_mod_seq(fs_info, &elem);
2330 ret = btrfs_find_all_roots(trans, fs_info, oper->bytenr,
2331 elem.seq, &roots);
2332 btrfs_put_tree_mod_seq(fs_info, &elem);
2333 if (ret < 0)
Eric Sandeena3c10892014-08-17 15:09:21 -05002334 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07002335
2336 if (roots->nnodes != 1)
2337 goto out;
2338
2339 ULIST_ITER_INIT(&uiter);
2340 unode = ulist_next(roots, &uiter); /* Only want 1 so no need to loop */
2341 /*
2342 * If we find our ref root then that means all refs
2343 * this extent has to the root have not yet been
2344 * deleted. In that case, we do nothing and let the
2345 * last ref for this bytenr drive our update.
2346 *
2347 * This can happen for example if an extent is
2348 * referenced multiple times in a snapshot (clone,
2349 * etc). If we are in the middle of snapshot removal,
2350 * queued updates for such an extent will find the
2351 * root if we have not yet finished removing the
2352 * snapshot.
2353 */
2354 if (unode->val == oper->ref_root)
2355 goto out;
2356
2357 root_obj = unode->val;
2358 BUG_ON(!root_obj);
2359
2360 spin_lock(&fs_info->qgroup_lock);
2361 qg = find_qgroup_rb(fs_info, root_obj);
2362 if (!qg)
2363 goto out_unlock;
2364
2365 qg->excl += oper->num_bytes;
2366 qg->excl_cmpr += oper->num_bytes;
2367 qgroup_dirty(fs_info, qg);
2368
2369 /*
2370 * Adjust counts for parent groups. First we find all
2371 * parents, then in the 2nd loop we do the adjustment
2372 * while adding parents of the parents to our ulist.
2373 */
2374 list_for_each_entry(glist, &qg->groups, next_group) {
Mark Fashehf90e5792014-07-17 12:39:04 -07002375 err = ulist_add(parents, glist->group->qgroupid,
Mark Fasheh11526512014-07-17 12:39:01 -07002376 ptr_to_u64(glist->group), GFP_ATOMIC);
Mark Fashehf90e5792014-07-17 12:39:04 -07002377 if (err < 0) {
2378 ret = err;
Mark Fasheh11526512014-07-17 12:39:01 -07002379 goto out_unlock;
Mark Fashehf90e5792014-07-17 12:39:04 -07002380 }
Mark Fasheh11526512014-07-17 12:39:01 -07002381 }
2382
2383 ULIST_ITER_INIT(&uiter);
2384 while ((unode = ulist_next(parents, &uiter))) {
2385 qg = u64_to_ptr(unode->aux);
2386 qg->excl += oper->num_bytes;
2387 qg->excl_cmpr += oper->num_bytes;
2388 qgroup_dirty(fs_info, qg);
2389
2390 /* Add any parents of the parents */
2391 list_for_each_entry(glist, &qg->groups, next_group) {
Mark Fashehf90e5792014-07-17 12:39:04 -07002392 err = ulist_add(parents, glist->group->qgroupid,
Mark Fasheh11526512014-07-17 12:39:01 -07002393 ptr_to_u64(glist->group), GFP_ATOMIC);
Mark Fashehf90e5792014-07-17 12:39:04 -07002394 if (err < 0) {
2395 ret = err;
Mark Fasheh11526512014-07-17 12:39:01 -07002396 goto out_unlock;
Mark Fashehf90e5792014-07-17 12:39:04 -07002397 }
Mark Fasheh11526512014-07-17 12:39:01 -07002398 }
2399 }
2400
2401out_unlock:
2402 spin_unlock(&fs_info->qgroup_lock);
2403
2404out:
2405 ulist_free(roots);
2406 ulist_free(parents);
2407 return ret;
2408}
2409
2410/*
Arne Jansenbed92ea2012-06-28 18:03:02 +02002411 * btrfs_qgroup_account_ref is called for every ref that is added to or deleted
2412 * from the fs. First, all roots referencing the extent are searched, and
2413 * then the space is accounted accordingly to the different roots. The
2414 * accounting algorithm works in 3 steps documented inline.
2415 */
Josef Bacikfcebe452014-05-13 17:30:47 -07002416static int btrfs_qgroup_account(struct btrfs_trans_handle *trans,
2417 struct btrfs_fs_info *fs_info,
2418 struct btrfs_qgroup_operation *oper)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002419{
Arne Jansenbed92ea2012-06-28 18:03:02 +02002420 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002421
2422 if (!fs_info->quota_enabled)
2423 return 0;
2424
2425 BUG_ON(!fs_info->quota_root);
2426
Jan Schmidt2f232032013-04-25 16:04:51 +00002427 mutex_lock(&fs_info->qgroup_rescan_lock);
2428 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Josef Bacikfcebe452014-05-13 17:30:47 -07002429 if (fs_info->qgroup_rescan_progress.objectid <= oper->bytenr) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002430 mutex_unlock(&fs_info->qgroup_rescan_lock);
2431 return 0;
2432 }
2433 }
2434 mutex_unlock(&fs_info->qgroup_rescan_lock);
2435
Josef Bacikfcebe452014-05-13 17:30:47 -07002436 ASSERT(is_fstree(oper->ref_root));
Arne Jansenbed92ea2012-06-28 18:03:02 +02002437
Mark Fashehd3982102014-07-17 12:39:00 -07002438 trace_btrfs_qgroup_account(oper);
2439
Josef Bacikfcebe452014-05-13 17:30:47 -07002440 switch (oper->type) {
2441 case BTRFS_QGROUP_OPER_ADD_EXCL:
2442 case BTRFS_QGROUP_OPER_SUB_EXCL:
2443 ret = qgroup_excl_accounting(fs_info, oper);
2444 break;
2445 case BTRFS_QGROUP_OPER_ADD_SHARED:
2446 case BTRFS_QGROUP_OPER_SUB_SHARED:
2447 ret = qgroup_shared_accounting(trans, fs_info, oper);
2448 break;
Mark Fasheh11526512014-07-17 12:39:01 -07002449 case BTRFS_QGROUP_OPER_SUB_SUBTREE:
2450 ret = qgroup_subtree_accounting(trans, fs_info, oper);
2451 break;
Josef Bacikfcebe452014-05-13 17:30:47 -07002452 default:
2453 ASSERT(0);
2454 }
2455 return ret;
2456}
Jan Schmidt2f232032013-04-25 16:04:51 +00002457
Josef Bacikfcebe452014-05-13 17:30:47 -07002458/*
2459 * Needs to be called everytime we run delayed refs, even if there is an error
2460 * in order to cleanup outstanding operations.
2461 */
2462int btrfs_delayed_qgroup_accounting(struct btrfs_trans_handle *trans,
2463 struct btrfs_fs_info *fs_info)
2464{
2465 struct btrfs_qgroup_operation *oper;
2466 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002467
Josef Bacikfcebe452014-05-13 17:30:47 -07002468 while (!list_empty(&trans->qgroup_ref_list)) {
2469 oper = list_first_entry(&trans->qgroup_ref_list,
2470 struct btrfs_qgroup_operation, list);
2471 list_del_init(&oper->list);
2472 if (!ret || !trans->aborted)
2473 ret = btrfs_qgroup_account(trans, fs_info, oper);
2474 spin_lock(&fs_info->qgroup_op_lock);
2475 rb_erase(&oper->n, &fs_info->qgroup_op_tree);
2476 spin_unlock(&fs_info->qgroup_op_lock);
2477 btrfs_put_tree_mod_seq(fs_info, &oper->elem);
2478 kfree(oper);
2479 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002480 return ret;
2481}
2482
2483/*
2484 * called from commit_transaction. Writes all changed qgroups to disk.
2485 */
2486int btrfs_run_qgroups(struct btrfs_trans_handle *trans,
2487 struct btrfs_fs_info *fs_info)
2488{
2489 struct btrfs_root *quota_root = fs_info->quota_root;
2490 int ret = 0;
Jan Schmidt3d7b5a22013-04-25 16:04:52 +00002491 int start_rescan_worker = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002492
2493 if (!quota_root)
2494 goto out;
2495
Jan Schmidt3d7b5a22013-04-25 16:04:52 +00002496 if (!fs_info->quota_enabled && fs_info->pending_quota_state)
2497 start_rescan_worker = 1;
2498
Arne Jansenbed92ea2012-06-28 18:03:02 +02002499 fs_info->quota_enabled = fs_info->pending_quota_state;
2500
2501 spin_lock(&fs_info->qgroup_lock);
2502 while (!list_empty(&fs_info->dirty_qgroups)) {
2503 struct btrfs_qgroup *qgroup;
2504 qgroup = list_first_entry(&fs_info->dirty_qgroups,
2505 struct btrfs_qgroup, dirty);
2506 list_del_init(&qgroup->dirty);
2507 spin_unlock(&fs_info->qgroup_lock);
2508 ret = update_qgroup_info_item(trans, quota_root, qgroup);
2509 if (ret)
2510 fs_info->qgroup_flags |=
2511 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Dongsheng Yangd3001ed2014-11-20 21:04:56 -05002512 ret = update_qgroup_limit_item(trans, quota_root, qgroup);
2513 if (ret)
2514 fs_info->qgroup_flags |=
2515 BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002516 spin_lock(&fs_info->qgroup_lock);
2517 }
2518 if (fs_info->quota_enabled)
2519 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_ON;
2520 else
2521 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
2522 spin_unlock(&fs_info->qgroup_lock);
2523
2524 ret = update_qgroup_status_item(trans, fs_info, quota_root);
2525 if (ret)
2526 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2527
Jan Schmidt3d7b5a22013-04-25 16:04:52 +00002528 if (!ret && start_rescan_worker) {
Jan Schmidtb382a322013-05-28 15:47:24 +00002529 ret = qgroup_rescan_init(fs_info, 0, 1);
2530 if (!ret) {
2531 qgroup_rescan_zero_tracking(fs_info);
Qu Wenruofc97fab2014-02-28 10:46:16 +08002532 btrfs_queue_work(fs_info->qgroup_rescan_workers,
2533 &fs_info->qgroup_rescan_work);
Jan Schmidtb382a322013-05-28 15:47:24 +00002534 }
Jan Schmidt3d7b5a22013-04-25 16:04:52 +00002535 ret = 0;
2536 }
2537
Arne Jansenbed92ea2012-06-28 18:03:02 +02002538out:
2539
2540 return ret;
2541}
2542
2543/*
2544 * copy the acounting information between qgroups. This is necessary when a
2545 * snapshot or a subvolume is created
2546 */
2547int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans,
2548 struct btrfs_fs_info *fs_info, u64 srcid, u64 objectid,
2549 struct btrfs_qgroup_inherit *inherit)
2550{
2551 int ret = 0;
2552 int i;
2553 u64 *i_qgroups;
2554 struct btrfs_root *quota_root = fs_info->quota_root;
2555 struct btrfs_qgroup *srcgroup;
2556 struct btrfs_qgroup *dstgroup;
2557 u32 level_size = 0;
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002558 u64 nums;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002559
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002560 mutex_lock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002561 if (!fs_info->quota_enabled)
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002562 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002563
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002564 if (!quota_root) {
2565 ret = -EINVAL;
2566 goto out;
2567 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002568
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002569 if (inherit) {
2570 i_qgroups = (u64 *)(inherit + 1);
2571 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
2572 2 * inherit->num_excl_copies;
2573 for (i = 0; i < nums; ++i) {
2574 srcgroup = find_qgroup_rb(fs_info, *i_qgroups);
2575 if (!srcgroup) {
2576 ret = -EINVAL;
2577 goto out;
2578 }
Dongsheng Yang09870d22014-11-11 07:18:22 -05002579
2580 if ((srcgroup->qgroupid >> 48) <= (objectid >> 48)) {
2581 ret = -EINVAL;
2582 goto out;
2583 }
Wang Shilong3f5e2d32013-04-07 10:50:19 +00002584 ++i_qgroups;
2585 }
2586 }
2587
Arne Jansenbed92ea2012-06-28 18:03:02 +02002588 /*
2589 * create a tracking group for the subvol itself
2590 */
2591 ret = add_qgroup_item(trans, quota_root, objectid);
2592 if (ret)
2593 goto out;
2594
Arne Jansenbed92ea2012-06-28 18:03:02 +02002595 if (srcid) {
2596 struct btrfs_root *srcroot;
2597 struct btrfs_key srckey;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002598
2599 srckey.objectid = srcid;
2600 srckey.type = BTRFS_ROOT_ITEM_KEY;
2601 srckey.offset = (u64)-1;
2602 srcroot = btrfs_read_fs_root_no_name(fs_info, &srckey);
2603 if (IS_ERR(srcroot)) {
2604 ret = PTR_ERR(srcroot);
2605 goto out;
2606 }
2607
2608 rcu_read_lock();
David Sterba707e8a02014-06-04 19:22:26 +02002609 level_size = srcroot->nodesize;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002610 rcu_read_unlock();
2611 }
2612
2613 /*
2614 * add qgroup to all inherited groups
2615 */
2616 if (inherit) {
2617 i_qgroups = (u64 *)(inherit + 1);
2618 for (i = 0; i < inherit->num_qgroups; ++i) {
2619 ret = add_qgroup_relation_item(trans, quota_root,
2620 objectid, *i_qgroups);
2621 if (ret)
2622 goto out;
2623 ret = add_qgroup_relation_item(trans, quota_root,
2624 *i_qgroups, objectid);
2625 if (ret)
2626 goto out;
2627 ++i_qgroups;
2628 }
2629 }
2630
2631
2632 spin_lock(&fs_info->qgroup_lock);
2633
2634 dstgroup = add_qgroup_rb(fs_info, objectid);
Dan Carpenter57a5a882012-07-30 02:15:43 -06002635 if (IS_ERR(dstgroup)) {
2636 ret = PTR_ERR(dstgroup);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002637 goto unlock;
Dan Carpenter57a5a882012-07-30 02:15:43 -06002638 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002639
Dongsheng Yange8c85412014-11-20 20:58:34 -05002640 if (inherit && inherit->flags & BTRFS_QGROUP_INHERIT_SET_LIMITS) {
Dongsheng Yange8c85412014-11-20 20:58:34 -05002641 dstgroup->lim_flags = inherit->lim.flags;
2642 dstgroup->max_rfer = inherit->lim.max_rfer;
2643 dstgroup->max_excl = inherit->lim.max_excl;
2644 dstgroup->rsv_rfer = inherit->lim.rsv_rfer;
2645 dstgroup->rsv_excl = inherit->lim.rsv_excl;
Dongsheng Yang1510e712014-11-20 21:01:41 -05002646
2647 ret = update_qgroup_limit_item(trans, quota_root, dstgroup);
2648 if (ret) {
2649 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2650 btrfs_info(fs_info, "unable to update quota limit for %llu",
2651 dstgroup->qgroupid);
2652 goto unlock;
2653 }
Dongsheng Yange8c85412014-11-20 20:58:34 -05002654 }
2655
Arne Jansenbed92ea2012-06-28 18:03:02 +02002656 if (srcid) {
2657 srcgroup = find_qgroup_rb(fs_info, srcid);
Chris Masonf3a87f12012-09-14 20:06:30 -04002658 if (!srcgroup)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002659 goto unlock;
Josef Bacikfcebe452014-05-13 17:30:47 -07002660
2661 /*
2662 * We call inherit after we clone the root in order to make sure
2663 * our counts don't go crazy, so at this point the only
2664 * difference between the two roots should be the root node.
2665 */
2666 dstgroup->rfer = srcgroup->rfer;
2667 dstgroup->rfer_cmpr = srcgroup->rfer_cmpr;
2668 dstgroup->excl = level_size;
2669 dstgroup->excl_cmpr = level_size;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002670 srcgroup->excl = level_size;
2671 srcgroup->excl_cmpr = level_size;
Dongsheng Yang3eeb4d52014-11-20 20:14:38 -05002672
2673 /* inherit the limit info */
2674 dstgroup->lim_flags = srcgroup->lim_flags;
2675 dstgroup->max_rfer = srcgroup->max_rfer;
2676 dstgroup->max_excl = srcgroup->max_excl;
2677 dstgroup->rsv_rfer = srcgroup->rsv_rfer;
2678 dstgroup->rsv_excl = srcgroup->rsv_excl;
2679
Arne Jansenbed92ea2012-06-28 18:03:02 +02002680 qgroup_dirty(fs_info, dstgroup);
2681 qgroup_dirty(fs_info, srcgroup);
2682 }
2683
Chris Masonf3a87f12012-09-14 20:06:30 -04002684 if (!inherit)
Arne Jansenbed92ea2012-06-28 18:03:02 +02002685 goto unlock;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002686
2687 i_qgroups = (u64 *)(inherit + 1);
2688 for (i = 0; i < inherit->num_qgroups; ++i) {
2689 ret = add_relation_rb(quota_root->fs_info, objectid,
2690 *i_qgroups);
2691 if (ret)
2692 goto unlock;
2693 ++i_qgroups;
2694 }
2695
2696 for (i = 0; i < inherit->num_ref_copies; ++i) {
2697 struct btrfs_qgroup *src;
2698 struct btrfs_qgroup *dst;
2699
2700 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2701 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2702
2703 if (!src || !dst) {
2704 ret = -EINVAL;
2705 goto unlock;
2706 }
2707
2708 dst->rfer = src->rfer - level_size;
2709 dst->rfer_cmpr = src->rfer_cmpr - level_size;
2710 i_qgroups += 2;
2711 }
2712 for (i = 0; i < inherit->num_excl_copies; ++i) {
2713 struct btrfs_qgroup *src;
2714 struct btrfs_qgroup *dst;
2715
2716 src = find_qgroup_rb(fs_info, i_qgroups[0]);
2717 dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2718
2719 if (!src || !dst) {
2720 ret = -EINVAL;
2721 goto unlock;
2722 }
2723
2724 dst->excl = src->excl + level_size;
2725 dst->excl_cmpr = src->excl_cmpr + level_size;
2726 i_qgroups += 2;
2727 }
2728
2729unlock:
2730 spin_unlock(&fs_info->qgroup_lock);
2731out:
Wang Shilongf2f6ed32013-04-07 10:50:16 +00002732 mutex_unlock(&fs_info->qgroup_ioctl_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002733 return ret;
2734}
2735
Arne Jansenbed92ea2012-06-28 18:03:02 +02002736int btrfs_qgroup_reserve(struct btrfs_root *root, u64 num_bytes)
2737{
2738 struct btrfs_root *quota_root;
2739 struct btrfs_qgroup *qgroup;
2740 struct btrfs_fs_info *fs_info = root->fs_info;
2741 u64 ref_root = root->root_key.objectid;
2742 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002743 struct ulist_node *unode;
2744 struct ulist_iterator uiter;
2745
2746 if (!is_fstree(ref_root))
2747 return 0;
2748
2749 if (num_bytes == 0)
2750 return 0;
2751
2752 spin_lock(&fs_info->qgroup_lock);
2753 quota_root = fs_info->quota_root;
2754 if (!quota_root)
2755 goto out;
2756
2757 qgroup = find_qgroup_rb(fs_info, ref_root);
2758 if (!qgroup)
2759 goto out;
2760
2761 /*
2762 * in a first step, we check all affected qgroups if any limits would
2763 * be exceeded
2764 */
Wang Shilong1e8f9152013-05-06 11:03:27 +00002765 ulist_reinit(fs_info->qgroup_ulist);
2766 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
Wang Shilong3c971852013-04-17 14:00:36 +00002767 (uintptr_t)qgroup, GFP_ATOMIC);
2768 if (ret < 0)
2769 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002770 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002771 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002772 struct btrfs_qgroup *qg;
2773 struct btrfs_qgroup_list *glist;
2774
Josef Bacikfcebe452014-05-13 17:30:47 -07002775 qg = u64_to_ptr(unode->aux);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002776
2777 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
Dongsheng Yange2d1f922015-02-06 10:26:52 -05002778 qg->reserved + (s64)qg->rfer + num_bytes >
Wang Shilong720f1e22013-03-06 11:51:47 +00002779 qg->max_rfer) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002780 ret = -EDQUOT;
Wang Shilong720f1e22013-03-06 11:51:47 +00002781 goto out;
2782 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002783
2784 if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
Dongsheng Yange2d1f922015-02-06 10:26:52 -05002785 qg->reserved + (s64)qg->excl + num_bytes >
Wang Shilong720f1e22013-03-06 11:51:47 +00002786 qg->max_excl) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002787 ret = -EDQUOT;
Wang Shilong720f1e22013-03-06 11:51:47 +00002788 goto out;
2789 }
Arne Jansenbed92ea2012-06-28 18:03:02 +02002790
2791 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002792 ret = ulist_add(fs_info->qgroup_ulist,
2793 glist->group->qgroupid,
Wang Shilong3c971852013-04-17 14:00:36 +00002794 (uintptr_t)glist->group, GFP_ATOMIC);
2795 if (ret < 0)
2796 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002797 }
2798 }
Wang Shilong3c971852013-04-17 14:00:36 +00002799 ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002800 /*
2801 * no limits exceeded, now record the reservation into all qgroups
2802 */
2803 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002804 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002805 struct btrfs_qgroup *qg;
2806
Josef Bacikfcebe452014-05-13 17:30:47 -07002807 qg = u64_to_ptr(unode->aux);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002808
Dongsheng Yange2d1f922015-02-06 10:26:52 -05002809 qg->reserved += num_bytes;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002810 }
2811
2812out:
2813 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002814 return ret;
2815}
2816
2817void btrfs_qgroup_free(struct btrfs_root *root, u64 num_bytes)
2818{
2819 struct btrfs_root *quota_root;
2820 struct btrfs_qgroup *qgroup;
2821 struct btrfs_fs_info *fs_info = root->fs_info;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002822 struct ulist_node *unode;
2823 struct ulist_iterator uiter;
2824 u64 ref_root = root->root_key.objectid;
Wang Shilong3c971852013-04-17 14:00:36 +00002825 int ret = 0;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002826
2827 if (!is_fstree(ref_root))
2828 return;
2829
2830 if (num_bytes == 0)
2831 return;
2832
2833 spin_lock(&fs_info->qgroup_lock);
2834
2835 quota_root = fs_info->quota_root;
2836 if (!quota_root)
2837 goto out;
2838
2839 qgroup = find_qgroup_rb(fs_info, ref_root);
2840 if (!qgroup)
2841 goto out;
2842
Wang Shilong1e8f9152013-05-06 11:03:27 +00002843 ulist_reinit(fs_info->qgroup_ulist);
2844 ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
Wang Shilong3c971852013-04-17 14:00:36 +00002845 (uintptr_t)qgroup, GFP_ATOMIC);
2846 if (ret < 0)
2847 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002848 ULIST_ITER_INIT(&uiter);
Wang Shilong1e8f9152013-05-06 11:03:27 +00002849 while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
Arne Jansenbed92ea2012-06-28 18:03:02 +02002850 struct btrfs_qgroup *qg;
2851 struct btrfs_qgroup_list *glist;
2852
Josef Bacikfcebe452014-05-13 17:30:47 -07002853 qg = u64_to_ptr(unode->aux);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002854
Dongsheng Yange2d1f922015-02-06 10:26:52 -05002855 qg->reserved -= num_bytes;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002856
2857 list_for_each_entry(glist, &qg->groups, next_group) {
Wang Shilong1e8f9152013-05-06 11:03:27 +00002858 ret = ulist_add(fs_info->qgroup_ulist,
2859 glist->group->qgroupid,
Wang Shilong3c971852013-04-17 14:00:36 +00002860 (uintptr_t)glist->group, GFP_ATOMIC);
2861 if (ret < 0)
2862 goto out;
Arne Jansenbed92ea2012-06-28 18:03:02 +02002863 }
2864 }
2865
2866out:
2867 spin_unlock(&fs_info->qgroup_lock);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002868}
2869
2870void assert_qgroups_uptodate(struct btrfs_trans_handle *trans)
2871{
2872 if (list_empty(&trans->qgroup_ref_list) && !trans->delayed_ref_elem.seq)
2873 return;
Frank Holtonefe120a2013-12-20 11:37:06 -05002874 btrfs_err(trans->root->fs_info,
2875 "qgroups not uptodate in trans handle %p: list is%s empty, "
2876 "seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002877 trans, list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002878 (u32)(trans->delayed_ref_elem.seq >> 32),
2879 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002880 BUG();
2881}
Jan Schmidt2f232032013-04-25 16:04:51 +00002882
2883/*
2884 * returns < 0 on error, 0 when more leafs are to be scanned.
Qu Wenruo33931682015-02-27 16:24:24 +08002885 * returns 1 when done.
Jan Schmidt2f232032013-04-25 16:04:51 +00002886 */
2887static int
Jan Schmidtb382a322013-05-28 15:47:24 +00002888qgroup_rescan_leaf(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07002889 struct btrfs_trans_handle *trans, struct ulist *qgroups,
2890 struct ulist *tmp, struct extent_buffer *scratch_leaf)
Jan Schmidt2f232032013-04-25 16:04:51 +00002891{
2892 struct btrfs_key found;
Jan Schmidt2f232032013-04-25 16:04:51 +00002893 struct ulist *roots = NULL;
David Sterba3284da72015-02-25 15:47:32 +01002894 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
Josef Bacikfcebe452014-05-13 17:30:47 -07002895 u64 num_bytes;
Jan Schmidt2f232032013-04-25 16:04:51 +00002896 u64 seq;
Josef Bacikfcebe452014-05-13 17:30:47 -07002897 int new_roots;
Jan Schmidt2f232032013-04-25 16:04:51 +00002898 int slot;
2899 int ret;
2900
2901 path->leave_spinning = 1;
2902 mutex_lock(&fs_info->qgroup_rescan_lock);
2903 ret = btrfs_search_slot_for_read(fs_info->extent_root,
2904 &fs_info->qgroup_rescan_progress,
2905 path, 1, 0);
2906
2907 pr_debug("current progress key (%llu %u %llu), search_slot ret %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002908 fs_info->qgroup_rescan_progress.objectid,
Jan Schmidt2f232032013-04-25 16:04:51 +00002909 fs_info->qgroup_rescan_progress.type,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002910 fs_info->qgroup_rescan_progress.offset, ret);
Jan Schmidt2f232032013-04-25 16:04:51 +00002911
2912 if (ret) {
2913 /*
2914 * The rescan is about to end, we will not be scanning any
2915 * further blocks. We cannot unset the RESCAN flag here, because
2916 * we want to commit the transaction if everything went well.
2917 * To make the live accounting work in this phase, we set our
2918 * scan progress pointer such that every real extent objectid
2919 * will be smaller.
2920 */
2921 fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2922 btrfs_release_path(path);
2923 mutex_unlock(&fs_info->qgroup_rescan_lock);
2924 return ret;
2925 }
2926
2927 btrfs_item_key_to_cpu(path->nodes[0], &found,
2928 btrfs_header_nritems(path->nodes[0]) - 1);
2929 fs_info->qgroup_rescan_progress.objectid = found.objectid + 1;
2930
2931 btrfs_get_tree_mod_seq(fs_info, &tree_mod_seq_elem);
2932 memcpy(scratch_leaf, path->nodes[0], sizeof(*scratch_leaf));
2933 slot = path->slots[0];
2934 btrfs_release_path(path);
2935 mutex_unlock(&fs_info->qgroup_rescan_lock);
2936
2937 for (; slot < btrfs_header_nritems(scratch_leaf); ++slot) {
2938 btrfs_item_key_to_cpu(scratch_leaf, &found, slot);
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002939 if (found.type != BTRFS_EXTENT_ITEM_KEY &&
2940 found.type != BTRFS_METADATA_ITEM_KEY)
Jan Schmidt2f232032013-04-25 16:04:51 +00002941 continue;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002942 if (found.type == BTRFS_METADATA_ITEM_KEY)
David Sterba707e8a02014-06-04 19:22:26 +02002943 num_bytes = fs_info->extent_root->nodesize;
Josef Bacik3a6d75e2014-01-23 16:45:10 -05002944 else
2945 num_bytes = found.offset;
2946
Josef Bacikfcebe452014-05-13 17:30:47 -07002947 ulist_reinit(qgroups);
2948 ret = btrfs_find_all_roots(NULL, fs_info, found.objectid, 0,
2949 &roots);
Jan Schmidt2f232032013-04-25 16:04:51 +00002950 if (ret < 0)
2951 goto out;
2952 spin_lock(&fs_info->qgroup_lock);
2953 seq = fs_info->qgroup_seq;
2954 fs_info->qgroup_seq += roots->nnodes + 1; /* max refcnt */
2955
Josef Bacikfcebe452014-05-13 17:30:47 -07002956 new_roots = 0;
2957 ret = qgroup_calc_old_refcnt(fs_info, 0, tmp, roots, qgroups,
2958 seq, &new_roots, 1);
2959 if (ret < 0) {
Jan Schmidt2f232032013-04-25 16:04:51 +00002960 spin_unlock(&fs_info->qgroup_lock);
2961 ulist_free(roots);
2962 goto out;
2963 }
2964
Josef Bacikfcebe452014-05-13 17:30:47 -07002965 ret = qgroup_adjust_counters(fs_info, 0, num_bytes, qgroups,
2966 seq, 0, new_roots, 1);
2967 if (ret < 0) {
2968 spin_unlock(&fs_info->qgroup_lock);
2969 ulist_free(roots);
2970 goto out;
Jan Schmidt2f232032013-04-25 16:04:51 +00002971 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002972 spin_unlock(&fs_info->qgroup_lock);
2973 ulist_free(roots);
Jan Schmidt2f232032013-04-25 16:04:51 +00002974 }
Jan Schmidt2f232032013-04-25 16:04:51 +00002975out:
2976 btrfs_put_tree_mod_seq(fs_info, &tree_mod_seq_elem);
2977
2978 return ret;
2979}
2980
Qu Wenruod458b052014-02-28 10:46:19 +08002981static void btrfs_qgroup_rescan_worker(struct btrfs_work *work)
Jan Schmidt2f232032013-04-25 16:04:51 +00002982{
Jan Schmidtb382a322013-05-28 15:47:24 +00002983 struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info,
2984 qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00002985 struct btrfs_path *path;
2986 struct btrfs_trans_handle *trans = NULL;
Josef Bacikfcebe452014-05-13 17:30:47 -07002987 struct ulist *tmp = NULL, *qgroups = NULL;
Jan Schmidt2f232032013-04-25 16:04:51 +00002988 struct extent_buffer *scratch_leaf = NULL;
2989 int err = -ENOMEM;
Qu Wenruo53b7cde2015-02-27 16:24:25 +08002990 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00002991
2992 path = btrfs_alloc_path();
2993 if (!path)
2994 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002995 qgroups = ulist_alloc(GFP_NOFS);
2996 if (!qgroups)
2997 goto out;
Jan Schmidt2f232032013-04-25 16:04:51 +00002998 tmp = ulist_alloc(GFP_NOFS);
2999 if (!tmp)
3000 goto out;
3001 scratch_leaf = kmalloc(sizeof(*scratch_leaf), GFP_NOFS);
3002 if (!scratch_leaf)
3003 goto out;
3004
3005 err = 0;
3006 while (!err) {
3007 trans = btrfs_start_transaction(fs_info->fs_root, 0);
3008 if (IS_ERR(trans)) {
3009 err = PTR_ERR(trans);
3010 break;
3011 }
3012 if (!fs_info->quota_enabled) {
3013 err = -EINTR;
3014 } else {
Jan Schmidtb382a322013-05-28 15:47:24 +00003015 err = qgroup_rescan_leaf(fs_info, path, trans,
Josef Bacikfcebe452014-05-13 17:30:47 -07003016 qgroups, tmp, scratch_leaf);
Jan Schmidt2f232032013-04-25 16:04:51 +00003017 }
3018 if (err > 0)
3019 btrfs_commit_transaction(trans, fs_info->fs_root);
3020 else
3021 btrfs_end_transaction(trans, fs_info->fs_root);
3022 }
3023
3024out:
3025 kfree(scratch_leaf);
Josef Bacikfcebe452014-05-13 17:30:47 -07003026 ulist_free(qgroups);
Josef Bacik2a108402014-05-20 09:23:31 -04003027 ulist_free(tmp);
Jan Schmidt2f232032013-04-25 16:04:51 +00003028 btrfs_free_path(path);
Jan Schmidt2f232032013-04-25 16:04:51 +00003029
3030 mutex_lock(&fs_info->qgroup_rescan_lock);
3031 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3032
Qu Wenruo33931682015-02-27 16:24:24 +08003033 if (err > 0 &&
Jan Schmidt2f232032013-04-25 16:04:51 +00003034 fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT) {
3035 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
3036 } else if (err < 0) {
3037 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
3038 }
3039 mutex_unlock(&fs_info->qgroup_rescan_lock);
3040
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003041 /*
3042 * only update status, since the previous part has alreay updated the
3043 * qgroup info.
3044 */
3045 trans = btrfs_start_transaction(fs_info->quota_root, 1);
3046 if (IS_ERR(trans)) {
3047 err = PTR_ERR(trans);
3048 btrfs_err(fs_info,
3049 "fail to start transaction for status update: %d\n",
3050 err);
3051 goto done;
3052 }
3053 ret = update_qgroup_status_item(trans, fs_info, fs_info->quota_root);
3054 if (ret < 0) {
3055 err = ret;
Qu Wenruo9c8b35b2015-02-27 16:24:27 +08003056 btrfs_err(fs_info, "fail to update qgroup status: %d\n", err);
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003057 }
3058 btrfs_end_transaction(trans, fs_info->quota_root);
3059
Jan Schmidt2f232032013-04-25 16:04:51 +00003060 if (err >= 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003061 btrfs_info(fs_info, "qgroup scan completed%s",
Qu Wenruo33931682015-02-27 16:24:24 +08003062 err > 0 ? " (inconsistency flag cleared)" : "");
Jan Schmidt2f232032013-04-25 16:04:51 +00003063 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003064 btrfs_err(fs_info, "qgroup scan failed with %d", err);
Jan Schmidt2f232032013-04-25 16:04:51 +00003065 }
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003066
Qu Wenruo53b7cde2015-02-27 16:24:25 +08003067done:
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003068 complete_all(&fs_info->qgroup_rescan_completion);
Jan Schmidt2f232032013-04-25 16:04:51 +00003069}
3070
Jan Schmidtb382a322013-05-28 15:47:24 +00003071/*
3072 * Checks that (a) no rescan is running and (b) quota is enabled. Allocates all
3073 * memory required for the rescan context.
3074 */
3075static int
3076qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
3077 int init_flags)
Jan Schmidt2f232032013-04-25 16:04:51 +00003078{
3079 int ret = 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00003080
Jan Schmidtb382a322013-05-28 15:47:24 +00003081 if (!init_flags &&
3082 (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) ||
3083 !(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON))) {
3084 ret = -EINVAL;
3085 goto err;
3086 }
Jan Schmidt2f232032013-04-25 16:04:51 +00003087
3088 mutex_lock(&fs_info->qgroup_rescan_lock);
3089 spin_lock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00003090
3091 if (init_flags) {
3092 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN)
3093 ret = -EINPROGRESS;
3094 else if (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON))
3095 ret = -EINVAL;
3096
3097 if (ret) {
3098 spin_unlock(&fs_info->qgroup_lock);
3099 mutex_unlock(&fs_info->qgroup_rescan_lock);
3100 goto err;
3101 }
Jan Schmidtb382a322013-05-28 15:47:24 +00003102 fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3103 }
3104
3105 memset(&fs_info->qgroup_rescan_progress, 0,
3106 sizeof(fs_info->qgroup_rescan_progress));
3107 fs_info->qgroup_rescan_progress.objectid = progress_objectid;
3108
3109 spin_unlock(&fs_info->qgroup_lock);
3110 mutex_unlock(&fs_info->qgroup_rescan_lock);
3111
3112 init_completion(&fs_info->qgroup_rescan_completion);
3113
3114 memset(&fs_info->qgroup_rescan_work, 0,
3115 sizeof(fs_info->qgroup_rescan_work));
Qu Wenruofc97fab2014-02-28 10:46:16 +08003116 btrfs_init_work(&fs_info->qgroup_rescan_work,
Liu Bo9e0af232014-08-15 23:36:53 +08003117 btrfs_qgroup_rescan_helper,
Qu Wenruofc97fab2014-02-28 10:46:16 +08003118 btrfs_qgroup_rescan_worker, NULL, NULL);
Jan Schmidtb382a322013-05-28 15:47:24 +00003119
Jan Schmidt2f232032013-04-25 16:04:51 +00003120 if (ret) {
Jan Schmidtb382a322013-05-28 15:47:24 +00003121err:
Frank Holtonefe120a2013-12-20 11:37:06 -05003122 btrfs_info(fs_info, "qgroup_rescan_init failed with %d", ret);
Jan Schmidt2f232032013-04-25 16:04:51 +00003123 return ret;
3124 }
3125
Jan Schmidtb382a322013-05-28 15:47:24 +00003126 return 0;
3127}
Jan Schmidt2f232032013-04-25 16:04:51 +00003128
Jan Schmidtb382a322013-05-28 15:47:24 +00003129static void
3130qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info)
3131{
3132 struct rb_node *n;
3133 struct btrfs_qgroup *qgroup;
3134
3135 spin_lock(&fs_info->qgroup_lock);
Jan Schmidt2f232032013-04-25 16:04:51 +00003136 /* clear all current qgroup tracking information */
3137 for (n = rb_first(&fs_info->qgroup_tree); n; n = rb_next(n)) {
3138 qgroup = rb_entry(n, struct btrfs_qgroup, node);
3139 qgroup->rfer = 0;
3140 qgroup->rfer_cmpr = 0;
3141 qgroup->excl = 0;
3142 qgroup->excl_cmpr = 0;
3143 }
3144 spin_unlock(&fs_info->qgroup_lock);
Jan Schmidtb382a322013-05-28 15:47:24 +00003145}
Jan Schmidt2f232032013-04-25 16:04:51 +00003146
Jan Schmidtb382a322013-05-28 15:47:24 +00003147int
3148btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info)
3149{
3150 int ret = 0;
3151 struct btrfs_trans_handle *trans;
3152
3153 ret = qgroup_rescan_init(fs_info, 0, 1);
3154 if (ret)
3155 return ret;
3156
3157 /*
3158 * We have set the rescan_progress to 0, which means no more
3159 * delayed refs will be accounted by btrfs_qgroup_account_ref.
3160 * However, btrfs_qgroup_account_ref may be right after its call
3161 * to btrfs_find_all_roots, in which case it would still do the
3162 * accounting.
3163 * To solve this, we're committing the transaction, which will
3164 * ensure we run all delayed refs and only after that, we are
3165 * going to clear all tracking information for a clean start.
3166 */
3167
3168 trans = btrfs_join_transaction(fs_info->fs_root);
3169 if (IS_ERR(trans)) {
3170 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3171 return PTR_ERR(trans);
3172 }
3173 ret = btrfs_commit_transaction(trans, fs_info->fs_root);
3174 if (ret) {
3175 fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3176 return ret;
3177 }
3178
3179 qgroup_rescan_zero_tracking(fs_info);
3180
Qu Wenruofc97fab2014-02-28 10:46:16 +08003181 btrfs_queue_work(fs_info->qgroup_rescan_workers,
3182 &fs_info->qgroup_rescan_work);
Jan Schmidt2f232032013-04-25 16:04:51 +00003183
3184 return 0;
3185}
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003186
3187int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info)
3188{
3189 int running;
3190 int ret = 0;
3191
3192 mutex_lock(&fs_info->qgroup_rescan_lock);
3193 spin_lock(&fs_info->qgroup_lock);
3194 running = fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3195 spin_unlock(&fs_info->qgroup_lock);
3196 mutex_unlock(&fs_info->qgroup_rescan_lock);
3197
3198 if (running)
3199 ret = wait_for_completion_interruptible(
3200 &fs_info->qgroup_rescan_completion);
3201
3202 return ret;
3203}
Jan Schmidtb382a322013-05-28 15:47:24 +00003204
3205/*
3206 * this is only called from open_ctree where we're still single threaded, thus
3207 * locking is omitted here.
3208 */
3209void
3210btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info)
3211{
3212 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN)
Qu Wenruofc97fab2014-02-28 10:46:16 +08003213 btrfs_queue_work(fs_info->qgroup_rescan_workers,
3214 &fs_info->qgroup_rescan_work);
Jan Schmidtb382a322013-05-28 15:47:24 +00003215}