1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2011 STRATO.  All rights reserved.
4  */
5 
6 #include <linux/sched.h>
7 #include <linux/pagemap.h>
8 #include <linux/writeback.h>
9 #include <linux/blkdev.h>
10 #include <linux/rbtree.h>
11 #include <linux/slab.h>
12 #include <linux/workqueue.h>
13 #include <linux/btrfs.h>
14 #include <linux/sizes.h>
15 
16 #include "ctree.h"
17 #include "transaction.h"
18 #include "disk-io.h"
19 #include "locking.h"
20 #include "ulist.h"
21 #include "backref.h"
22 #include "extent_io.h"
23 #include "qgroup.h"
24 
25 
26 /* TODO XXX FIXME
27  *  - subvol delete -> delete when ref goes to 0? delete limits also?
28  *  - reorganize keys
29  *  - compressed
30  *  - sync
31  *  - copy also limits on subvol creation
32  *  - limit
33  *  - caches fuer ulists
34  *  - performance benchmarks
35  *  - check all ioctl parameters
36  */
37 
38 /*
39  * Helpers to access qgroup reservation
40  *
41  * Callers should ensure the lock context and type are valid
42  */
43 
qgroup_rsv_total(const struct btrfs_qgroup * qgroup)44 static u64 qgroup_rsv_total(const struct btrfs_qgroup *qgroup)
45 {
46 	u64 ret = 0;
47 	int i;
48 
49 	for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
50 		ret += qgroup->rsv.values[i];
51 
52 	return ret;
53 }
54 
55 #ifdef CONFIG_BTRFS_DEBUG
qgroup_rsv_type_str(enum btrfs_qgroup_rsv_type type)56 static const char *qgroup_rsv_type_str(enum btrfs_qgroup_rsv_type type)
57 {
58 	if (type == BTRFS_QGROUP_RSV_DATA)
59 		return "data";
60 	if (type == BTRFS_QGROUP_RSV_META_PERTRANS)
61 		return "meta_pertrans";
62 	if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
63 		return "meta_prealloc";
64 	return NULL;
65 }
66 #endif
67 
qgroup_rsv_add(struct btrfs_fs_info * fs_info,struct btrfs_qgroup * qgroup,u64 num_bytes,enum btrfs_qgroup_rsv_type type)68 static void qgroup_rsv_add(struct btrfs_fs_info *fs_info,
69 			   struct btrfs_qgroup *qgroup, u64 num_bytes,
70 			   enum btrfs_qgroup_rsv_type type)
71 {
72 	trace_qgroup_update_reserve(fs_info, qgroup, num_bytes, type);
73 	qgroup->rsv.values[type] += num_bytes;
74 }
75 
qgroup_rsv_release(struct btrfs_fs_info * fs_info,struct btrfs_qgroup * qgroup,u64 num_bytes,enum btrfs_qgroup_rsv_type type)76 static void qgroup_rsv_release(struct btrfs_fs_info *fs_info,
77 			       struct btrfs_qgroup *qgroup, u64 num_bytes,
78 			       enum btrfs_qgroup_rsv_type type)
79 {
80 	trace_qgroup_update_reserve(fs_info, qgroup, -(s64)num_bytes, type);
81 	if (qgroup->rsv.values[type] >= num_bytes) {
82 		qgroup->rsv.values[type] -= num_bytes;
83 		return;
84 	}
85 #ifdef CONFIG_BTRFS_DEBUG
86 	WARN_RATELIMIT(1,
87 		"qgroup %llu %s reserved space underflow, have %llu to free %llu",
88 		qgroup->qgroupid, qgroup_rsv_type_str(type),
89 		qgroup->rsv.values[type], num_bytes);
90 #endif
91 	qgroup->rsv.values[type] = 0;
92 }
93 
qgroup_rsv_add_by_qgroup(struct btrfs_fs_info * fs_info,struct btrfs_qgroup * dest,struct btrfs_qgroup * src)94 static void qgroup_rsv_add_by_qgroup(struct btrfs_fs_info *fs_info,
95 				     struct btrfs_qgroup *dest,
96 				     struct btrfs_qgroup *src)
97 {
98 	int i;
99 
100 	for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
101 		qgroup_rsv_add(fs_info, dest, src->rsv.values[i], i);
102 }
103 
qgroup_rsv_release_by_qgroup(struct btrfs_fs_info * fs_info,struct btrfs_qgroup * dest,struct btrfs_qgroup * src)104 static void qgroup_rsv_release_by_qgroup(struct btrfs_fs_info *fs_info,
105 					 struct btrfs_qgroup *dest,
106 					  struct btrfs_qgroup *src)
107 {
108 	int i;
109 
110 	for (i = 0; i < BTRFS_QGROUP_RSV_LAST; i++)
111 		qgroup_rsv_release(fs_info, dest, src->rsv.values[i], i);
112 }
113 
btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup * qg,u64 seq,int mod)114 static void btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup *qg, u64 seq,
115 					   int mod)
116 {
117 	if (qg->old_refcnt < seq)
118 		qg->old_refcnt = seq;
119 	qg->old_refcnt += mod;
120 }
121 
btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup * qg,u64 seq,int mod)122 static void btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup *qg, u64 seq,
123 					   int mod)
124 {
125 	if (qg->new_refcnt < seq)
126 		qg->new_refcnt = seq;
127 	qg->new_refcnt += mod;
128 }
129 
btrfs_qgroup_get_old_refcnt(struct btrfs_qgroup * qg,u64 seq)130 static inline u64 btrfs_qgroup_get_old_refcnt(struct btrfs_qgroup *qg, u64 seq)
131 {
132 	if (qg->old_refcnt < seq)
133 		return 0;
134 	return qg->old_refcnt - seq;
135 }
136 
btrfs_qgroup_get_new_refcnt(struct btrfs_qgroup * qg,u64 seq)137 static inline u64 btrfs_qgroup_get_new_refcnt(struct btrfs_qgroup *qg, u64 seq)
138 {
139 	if (qg->new_refcnt < seq)
140 		return 0;
141 	return qg->new_refcnt - seq;
142 }
143 
144 /*
145  * glue structure to represent the relations between qgroups.
146  */
147 struct btrfs_qgroup_list {
148 	struct list_head next_group;
149 	struct list_head next_member;
150 	struct btrfs_qgroup *group;
151 	struct btrfs_qgroup *member;
152 };
153 
qgroup_to_aux(struct btrfs_qgroup * qg)154 static inline u64 qgroup_to_aux(struct btrfs_qgroup *qg)
155 {
156 	return (u64)(uintptr_t)qg;
157 }
158 
unode_aux_to_qgroup(struct ulist_node * n)159 static inline struct btrfs_qgroup* unode_aux_to_qgroup(struct ulist_node *n)
160 {
161 	return (struct btrfs_qgroup *)(uintptr_t)n->aux;
162 }
163 
164 static int
165 qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
166 		   int init_flags);
167 static void qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info);
168 
169 /* must be called with qgroup_ioctl_lock held */
find_qgroup_rb(struct btrfs_fs_info * fs_info,u64 qgroupid)170 static struct btrfs_qgroup *find_qgroup_rb(struct btrfs_fs_info *fs_info,
171 					   u64 qgroupid)
172 {
173 	struct rb_node *n = fs_info->qgroup_tree.rb_node;
174 	struct btrfs_qgroup *qgroup;
175 
176 	while (n) {
177 		qgroup = rb_entry(n, struct btrfs_qgroup, node);
178 		if (qgroup->qgroupid < qgroupid)
179 			n = n->rb_left;
180 		else if (qgroup->qgroupid > qgroupid)
181 			n = n->rb_right;
182 		else
183 			return qgroup;
184 	}
185 	return NULL;
186 }
187 
188 /* must be called with qgroup_lock held */
add_qgroup_rb(struct btrfs_fs_info * fs_info,u64 qgroupid)189 static struct btrfs_qgroup *add_qgroup_rb(struct btrfs_fs_info *fs_info,
190 					  u64 qgroupid)
191 {
192 	struct rb_node **p = &fs_info->qgroup_tree.rb_node;
193 	struct rb_node *parent = NULL;
194 	struct btrfs_qgroup *qgroup;
195 
196 	while (*p) {
197 		parent = *p;
198 		qgroup = rb_entry(parent, struct btrfs_qgroup, node);
199 
200 		if (qgroup->qgroupid < qgroupid)
201 			p = &(*p)->rb_left;
202 		else if (qgroup->qgroupid > qgroupid)
203 			p = &(*p)->rb_right;
204 		else
205 			return qgroup;
206 	}
207 
208 	qgroup = kzalloc(sizeof(*qgroup), GFP_ATOMIC);
209 	if (!qgroup)
210 		return ERR_PTR(-ENOMEM);
211 
212 	qgroup->qgroupid = qgroupid;
213 	INIT_LIST_HEAD(&qgroup->groups);
214 	INIT_LIST_HEAD(&qgroup->members);
215 	INIT_LIST_HEAD(&qgroup->dirty);
216 
217 	rb_link_node(&qgroup->node, parent, p);
218 	rb_insert_color(&qgroup->node, &fs_info->qgroup_tree);
219 
220 	return qgroup;
221 }
222 
__del_qgroup_rb(struct btrfs_qgroup * qgroup)223 static void __del_qgroup_rb(struct btrfs_qgroup *qgroup)
224 {
225 	struct btrfs_qgroup_list *list;
226 
227 	list_del(&qgroup->dirty);
228 	while (!list_empty(&qgroup->groups)) {
229 		list = list_first_entry(&qgroup->groups,
230 					struct btrfs_qgroup_list, next_group);
231 		list_del(&list->next_group);
232 		list_del(&list->next_member);
233 		kfree(list);
234 	}
235 
236 	while (!list_empty(&qgroup->members)) {
237 		list = list_first_entry(&qgroup->members,
238 					struct btrfs_qgroup_list, next_member);
239 		list_del(&list->next_group);
240 		list_del(&list->next_member);
241 		kfree(list);
242 	}
243 	kfree(qgroup);
244 }
245 
246 /* must be called with qgroup_lock held */
del_qgroup_rb(struct btrfs_fs_info * fs_info,u64 qgroupid)247 static int del_qgroup_rb(struct btrfs_fs_info *fs_info, u64 qgroupid)
248 {
249 	struct btrfs_qgroup *qgroup = find_qgroup_rb(fs_info, qgroupid);
250 
251 	if (!qgroup)
252 		return -ENOENT;
253 
254 	rb_erase(&qgroup->node, &fs_info->qgroup_tree);
255 	__del_qgroup_rb(qgroup);
256 	return 0;
257 }
258 
259 /* must be called with qgroup_lock held */
add_relation_rb(struct btrfs_fs_info * fs_info,u64 memberid,u64 parentid)260 static int add_relation_rb(struct btrfs_fs_info *fs_info,
261 			   u64 memberid, u64 parentid)
262 {
263 	struct btrfs_qgroup *member;
264 	struct btrfs_qgroup *parent;
265 	struct btrfs_qgroup_list *list;
266 
267 	member = find_qgroup_rb(fs_info, memberid);
268 	parent = find_qgroup_rb(fs_info, parentid);
269 	if (!member || !parent)
270 		return -ENOENT;
271 
272 	list = kzalloc(sizeof(*list), GFP_ATOMIC);
273 	if (!list)
274 		return -ENOMEM;
275 
276 	list->group = parent;
277 	list->member = member;
278 	list_add_tail(&list->next_group, &member->groups);
279 	list_add_tail(&list->next_member, &parent->members);
280 
281 	return 0;
282 }
283 
284 /* must be called with qgroup_lock held */
del_relation_rb(struct btrfs_fs_info * fs_info,u64 memberid,u64 parentid)285 static int del_relation_rb(struct btrfs_fs_info *fs_info,
286 			   u64 memberid, u64 parentid)
287 {
288 	struct btrfs_qgroup *member;
289 	struct btrfs_qgroup *parent;
290 	struct btrfs_qgroup_list *list;
291 
292 	member = find_qgroup_rb(fs_info, memberid);
293 	parent = find_qgroup_rb(fs_info, parentid);
294 	if (!member || !parent)
295 		return -ENOENT;
296 
297 	list_for_each_entry(list, &member->groups, next_group) {
298 		if (list->group == parent) {
299 			list_del(&list->next_group);
300 			list_del(&list->next_member);
301 			kfree(list);
302 			return 0;
303 		}
304 	}
305 	return -ENOENT;
306 }
307 
308 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
btrfs_verify_qgroup_counts(struct btrfs_fs_info * fs_info,u64 qgroupid,u64 rfer,u64 excl)309 int btrfs_verify_qgroup_counts(struct btrfs_fs_info *fs_info, u64 qgroupid,
310 			       u64 rfer, u64 excl)
311 {
312 	struct btrfs_qgroup *qgroup;
313 
314 	qgroup = find_qgroup_rb(fs_info, qgroupid);
315 	if (!qgroup)
316 		return -EINVAL;
317 	if (qgroup->rfer != rfer || qgroup->excl != excl)
318 		return -EINVAL;
319 	return 0;
320 }
321 #endif
322 
323 /*
324  * The full config is read in one go, only called from open_ctree()
325  * It doesn't use any locking, as at this point we're still single-threaded
326  */
btrfs_read_qgroup_config(struct btrfs_fs_info * fs_info)327 int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info)
328 {
329 	struct btrfs_key key;
330 	struct btrfs_key found_key;
331 	struct btrfs_root *quota_root = fs_info->quota_root;
332 	struct btrfs_path *path = NULL;
333 	struct extent_buffer *l;
334 	int slot;
335 	int ret = 0;
336 	u64 flags = 0;
337 	u64 rescan_progress = 0;
338 
339 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
340 		return 0;
341 
342 	fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
343 	if (!fs_info->qgroup_ulist) {
344 		ret = -ENOMEM;
345 		goto out;
346 	}
347 
348 	path = btrfs_alloc_path();
349 	if (!path) {
350 		ret = -ENOMEM;
351 		goto out;
352 	}
353 
354 	/* default this to quota off, in case no status key is found */
355 	fs_info->qgroup_flags = 0;
356 
357 	/*
358 	 * pass 1: read status, all qgroup infos and limits
359 	 */
360 	key.objectid = 0;
361 	key.type = 0;
362 	key.offset = 0;
363 	ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 1);
364 	if (ret)
365 		goto out;
366 
367 	while (1) {
368 		struct btrfs_qgroup *qgroup;
369 
370 		slot = path->slots[0];
371 		l = path->nodes[0];
372 		btrfs_item_key_to_cpu(l, &found_key, slot);
373 
374 		if (found_key.type == BTRFS_QGROUP_STATUS_KEY) {
375 			struct btrfs_qgroup_status_item *ptr;
376 
377 			ptr = btrfs_item_ptr(l, slot,
378 					     struct btrfs_qgroup_status_item);
379 
380 			if (btrfs_qgroup_status_version(l, ptr) !=
381 			    BTRFS_QGROUP_STATUS_VERSION) {
382 				btrfs_err(fs_info,
383 				 "old qgroup version, quota disabled");
384 				goto out;
385 			}
386 			if (btrfs_qgroup_status_generation(l, ptr) !=
387 			    fs_info->generation) {
388 				flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
389 				btrfs_err(fs_info,
390 					"qgroup generation mismatch, marked as inconsistent");
391 			}
392 			fs_info->qgroup_flags = btrfs_qgroup_status_flags(l,
393 									  ptr);
394 			rescan_progress = btrfs_qgroup_status_rescan(l, ptr);
395 			goto next1;
396 		}
397 
398 		if (found_key.type != BTRFS_QGROUP_INFO_KEY &&
399 		    found_key.type != BTRFS_QGROUP_LIMIT_KEY)
400 			goto next1;
401 
402 		qgroup = find_qgroup_rb(fs_info, found_key.offset);
403 		if ((qgroup && found_key.type == BTRFS_QGROUP_INFO_KEY) ||
404 		    (!qgroup && found_key.type == BTRFS_QGROUP_LIMIT_KEY)) {
405 			btrfs_err(fs_info, "inconsistent qgroup config");
406 			flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
407 		}
408 		if (!qgroup) {
409 			qgroup = add_qgroup_rb(fs_info, found_key.offset);
410 			if (IS_ERR(qgroup)) {
411 				ret = PTR_ERR(qgroup);
412 				goto out;
413 			}
414 		}
415 		switch (found_key.type) {
416 		case BTRFS_QGROUP_INFO_KEY: {
417 			struct btrfs_qgroup_info_item *ptr;
418 
419 			ptr = btrfs_item_ptr(l, slot,
420 					     struct btrfs_qgroup_info_item);
421 			qgroup->rfer = btrfs_qgroup_info_rfer(l, ptr);
422 			qgroup->rfer_cmpr = btrfs_qgroup_info_rfer_cmpr(l, ptr);
423 			qgroup->excl = btrfs_qgroup_info_excl(l, ptr);
424 			qgroup->excl_cmpr = btrfs_qgroup_info_excl_cmpr(l, ptr);
425 			/* generation currently unused */
426 			break;
427 		}
428 		case BTRFS_QGROUP_LIMIT_KEY: {
429 			struct btrfs_qgroup_limit_item *ptr;
430 
431 			ptr = btrfs_item_ptr(l, slot,
432 					     struct btrfs_qgroup_limit_item);
433 			qgroup->lim_flags = btrfs_qgroup_limit_flags(l, ptr);
434 			qgroup->max_rfer = btrfs_qgroup_limit_max_rfer(l, ptr);
435 			qgroup->max_excl = btrfs_qgroup_limit_max_excl(l, ptr);
436 			qgroup->rsv_rfer = btrfs_qgroup_limit_rsv_rfer(l, ptr);
437 			qgroup->rsv_excl = btrfs_qgroup_limit_rsv_excl(l, ptr);
438 			break;
439 		}
440 		}
441 next1:
442 		ret = btrfs_next_item(quota_root, path);
443 		if (ret < 0)
444 			goto out;
445 		if (ret)
446 			break;
447 	}
448 	btrfs_release_path(path);
449 
450 	/*
451 	 * pass 2: read all qgroup relations
452 	 */
453 	key.objectid = 0;
454 	key.type = BTRFS_QGROUP_RELATION_KEY;
455 	key.offset = 0;
456 	ret = btrfs_search_slot_for_read(quota_root, &key, path, 1, 0);
457 	if (ret)
458 		goto out;
459 	while (1) {
460 		slot = path->slots[0];
461 		l = path->nodes[0];
462 		btrfs_item_key_to_cpu(l, &found_key, slot);
463 
464 		if (found_key.type != BTRFS_QGROUP_RELATION_KEY)
465 			goto next2;
466 
467 		if (found_key.objectid > found_key.offset) {
468 			/* parent <- member, not needed to build config */
469 			/* FIXME should we omit the key completely? */
470 			goto next2;
471 		}
472 
473 		ret = add_relation_rb(fs_info, found_key.objectid,
474 				      found_key.offset);
475 		if (ret == -ENOENT) {
476 			btrfs_warn(fs_info,
477 				"orphan qgroup relation 0x%llx->0x%llx",
478 				found_key.objectid, found_key.offset);
479 			ret = 0;	/* ignore the error */
480 		}
481 		if (ret)
482 			goto out;
483 next2:
484 		ret = btrfs_next_item(quota_root, path);
485 		if (ret < 0)
486 			goto out;
487 		if (ret)
488 			break;
489 	}
490 out:
491 	btrfs_free_path(path);
492 	fs_info->qgroup_flags |= flags;
493 	if (!(fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_ON))
494 		clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
495 	else if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN &&
496 		 ret >= 0)
497 		ret = qgroup_rescan_init(fs_info, rescan_progress, 0);
498 
499 	if (ret < 0) {
500 		ulist_free(fs_info->qgroup_ulist);
501 		fs_info->qgroup_ulist = NULL;
502 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
503 	}
504 
505 	return ret < 0 ? ret : 0;
506 }
507 
508 /*
509  * This is called from close_ctree() or open_ctree() or btrfs_quota_disable(),
510  * first two are in single-threaded paths.And for the third one, we have set
511  * quota_root to be null with qgroup_lock held before, so it is safe to clean
512  * up the in-memory structures without qgroup_lock held.
513  */
btrfs_free_qgroup_config(struct btrfs_fs_info * fs_info)514 void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info)
515 {
516 	struct rb_node *n;
517 	struct btrfs_qgroup *qgroup;
518 
519 	while ((n = rb_first(&fs_info->qgroup_tree))) {
520 		qgroup = rb_entry(n, struct btrfs_qgroup, node);
521 		rb_erase(n, &fs_info->qgroup_tree);
522 		__del_qgroup_rb(qgroup);
523 	}
524 	/*
525 	 * we call btrfs_free_qgroup_config() when umounting
526 	 * filesystem and disabling quota, so we set qgroup_ulist
527 	 * to be null here to avoid double free.
528 	 */
529 	ulist_free(fs_info->qgroup_ulist);
530 	fs_info->qgroup_ulist = NULL;
531 }
532 
add_qgroup_relation_item(struct btrfs_trans_handle * trans,u64 src,u64 dst)533 static int add_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
534 				    u64 dst)
535 {
536 	int ret;
537 	struct btrfs_root *quota_root = trans->fs_info->quota_root;
538 	struct btrfs_path *path;
539 	struct btrfs_key key;
540 
541 	path = btrfs_alloc_path();
542 	if (!path)
543 		return -ENOMEM;
544 
545 	key.objectid = src;
546 	key.type = BTRFS_QGROUP_RELATION_KEY;
547 	key.offset = dst;
548 
549 	ret = btrfs_insert_empty_item(trans, quota_root, path, &key, 0);
550 
551 	btrfs_mark_buffer_dirty(path->nodes[0]);
552 
553 	btrfs_free_path(path);
554 	return ret;
555 }
556 
del_qgroup_relation_item(struct btrfs_trans_handle * trans,u64 src,u64 dst)557 static int del_qgroup_relation_item(struct btrfs_trans_handle *trans, u64 src,
558 				    u64 dst)
559 {
560 	int ret;
561 	struct btrfs_root *quota_root = trans->fs_info->quota_root;
562 	struct btrfs_path *path;
563 	struct btrfs_key key;
564 
565 	path = btrfs_alloc_path();
566 	if (!path)
567 		return -ENOMEM;
568 
569 	key.objectid = src;
570 	key.type = BTRFS_QGROUP_RELATION_KEY;
571 	key.offset = dst;
572 
573 	ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
574 	if (ret < 0)
575 		goto out;
576 
577 	if (ret > 0) {
578 		ret = -ENOENT;
579 		goto out;
580 	}
581 
582 	ret = btrfs_del_item(trans, quota_root, path);
583 out:
584 	btrfs_free_path(path);
585 	return ret;
586 }
587 
add_qgroup_item(struct btrfs_trans_handle * trans,struct btrfs_root * quota_root,u64 qgroupid)588 static int add_qgroup_item(struct btrfs_trans_handle *trans,
589 			   struct btrfs_root *quota_root, u64 qgroupid)
590 {
591 	int ret;
592 	struct btrfs_path *path;
593 	struct btrfs_qgroup_info_item *qgroup_info;
594 	struct btrfs_qgroup_limit_item *qgroup_limit;
595 	struct extent_buffer *leaf;
596 	struct btrfs_key key;
597 
598 	if (btrfs_is_testing(quota_root->fs_info))
599 		return 0;
600 
601 	path = btrfs_alloc_path();
602 	if (!path)
603 		return -ENOMEM;
604 
605 	key.objectid = 0;
606 	key.type = BTRFS_QGROUP_INFO_KEY;
607 	key.offset = qgroupid;
608 
609 	/*
610 	 * Avoid a transaction abort by catching -EEXIST here. In that
611 	 * case, we proceed by re-initializing the existing structure
612 	 * on disk.
613 	 */
614 
615 	ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
616 				      sizeof(*qgroup_info));
617 	if (ret && ret != -EEXIST)
618 		goto out;
619 
620 	leaf = path->nodes[0];
621 	qgroup_info = btrfs_item_ptr(leaf, path->slots[0],
622 				 struct btrfs_qgroup_info_item);
623 	btrfs_set_qgroup_info_generation(leaf, qgroup_info, trans->transid);
624 	btrfs_set_qgroup_info_rfer(leaf, qgroup_info, 0);
625 	btrfs_set_qgroup_info_rfer_cmpr(leaf, qgroup_info, 0);
626 	btrfs_set_qgroup_info_excl(leaf, qgroup_info, 0);
627 	btrfs_set_qgroup_info_excl_cmpr(leaf, qgroup_info, 0);
628 
629 	btrfs_mark_buffer_dirty(leaf);
630 
631 	btrfs_release_path(path);
632 
633 	key.type = BTRFS_QGROUP_LIMIT_KEY;
634 	ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
635 				      sizeof(*qgroup_limit));
636 	if (ret && ret != -EEXIST)
637 		goto out;
638 
639 	leaf = path->nodes[0];
640 	qgroup_limit = btrfs_item_ptr(leaf, path->slots[0],
641 				  struct btrfs_qgroup_limit_item);
642 	btrfs_set_qgroup_limit_flags(leaf, qgroup_limit, 0);
643 	btrfs_set_qgroup_limit_max_rfer(leaf, qgroup_limit, 0);
644 	btrfs_set_qgroup_limit_max_excl(leaf, qgroup_limit, 0);
645 	btrfs_set_qgroup_limit_rsv_rfer(leaf, qgroup_limit, 0);
646 	btrfs_set_qgroup_limit_rsv_excl(leaf, qgroup_limit, 0);
647 
648 	btrfs_mark_buffer_dirty(leaf);
649 
650 	ret = 0;
651 out:
652 	btrfs_free_path(path);
653 	return ret;
654 }
655 
del_qgroup_item(struct btrfs_trans_handle * trans,u64 qgroupid)656 static int del_qgroup_item(struct btrfs_trans_handle *trans, u64 qgroupid)
657 {
658 	int ret;
659 	struct btrfs_root *quota_root = trans->fs_info->quota_root;
660 	struct btrfs_path *path;
661 	struct btrfs_key key;
662 
663 	path = btrfs_alloc_path();
664 	if (!path)
665 		return -ENOMEM;
666 
667 	key.objectid = 0;
668 	key.type = BTRFS_QGROUP_INFO_KEY;
669 	key.offset = qgroupid;
670 	ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
671 	if (ret < 0)
672 		goto out;
673 
674 	if (ret > 0) {
675 		ret = -ENOENT;
676 		goto out;
677 	}
678 
679 	ret = btrfs_del_item(trans, quota_root, path);
680 	if (ret)
681 		goto out;
682 
683 	btrfs_release_path(path);
684 
685 	key.type = BTRFS_QGROUP_LIMIT_KEY;
686 	ret = btrfs_search_slot(trans, quota_root, &key, path, -1, 1);
687 	if (ret < 0)
688 		goto out;
689 
690 	if (ret > 0) {
691 		ret = -ENOENT;
692 		goto out;
693 	}
694 
695 	ret = btrfs_del_item(trans, quota_root, path);
696 
697 out:
698 	btrfs_free_path(path);
699 	return ret;
700 }
701 
update_qgroup_limit_item(struct btrfs_trans_handle * trans,struct btrfs_qgroup * qgroup)702 static int update_qgroup_limit_item(struct btrfs_trans_handle *trans,
703 				    struct btrfs_qgroup *qgroup)
704 {
705 	struct btrfs_root *quota_root = trans->fs_info->quota_root;
706 	struct btrfs_path *path;
707 	struct btrfs_key key;
708 	struct extent_buffer *l;
709 	struct btrfs_qgroup_limit_item *qgroup_limit;
710 	int ret;
711 	int slot;
712 
713 	key.objectid = 0;
714 	key.type = BTRFS_QGROUP_LIMIT_KEY;
715 	key.offset = qgroup->qgroupid;
716 
717 	path = btrfs_alloc_path();
718 	if (!path)
719 		return -ENOMEM;
720 
721 	ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
722 	if (ret > 0)
723 		ret = -ENOENT;
724 
725 	if (ret)
726 		goto out;
727 
728 	l = path->nodes[0];
729 	slot = path->slots[0];
730 	qgroup_limit = btrfs_item_ptr(l, slot, struct btrfs_qgroup_limit_item);
731 	btrfs_set_qgroup_limit_flags(l, qgroup_limit, qgroup->lim_flags);
732 	btrfs_set_qgroup_limit_max_rfer(l, qgroup_limit, qgroup->max_rfer);
733 	btrfs_set_qgroup_limit_max_excl(l, qgroup_limit, qgroup->max_excl);
734 	btrfs_set_qgroup_limit_rsv_rfer(l, qgroup_limit, qgroup->rsv_rfer);
735 	btrfs_set_qgroup_limit_rsv_excl(l, qgroup_limit, qgroup->rsv_excl);
736 
737 	btrfs_mark_buffer_dirty(l);
738 
739 out:
740 	btrfs_free_path(path);
741 	return ret;
742 }
743 
update_qgroup_info_item(struct btrfs_trans_handle * trans,struct btrfs_qgroup * qgroup)744 static int update_qgroup_info_item(struct btrfs_trans_handle *trans,
745 				   struct btrfs_qgroup *qgroup)
746 {
747 	struct btrfs_fs_info *fs_info = trans->fs_info;
748 	struct btrfs_root *quota_root = fs_info->quota_root;
749 	struct btrfs_path *path;
750 	struct btrfs_key key;
751 	struct extent_buffer *l;
752 	struct btrfs_qgroup_info_item *qgroup_info;
753 	int ret;
754 	int slot;
755 
756 	if (btrfs_is_testing(fs_info))
757 		return 0;
758 
759 	key.objectid = 0;
760 	key.type = BTRFS_QGROUP_INFO_KEY;
761 	key.offset = qgroup->qgroupid;
762 
763 	path = btrfs_alloc_path();
764 	if (!path)
765 		return -ENOMEM;
766 
767 	ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
768 	if (ret > 0)
769 		ret = -ENOENT;
770 
771 	if (ret)
772 		goto out;
773 
774 	l = path->nodes[0];
775 	slot = path->slots[0];
776 	qgroup_info = btrfs_item_ptr(l, slot, struct btrfs_qgroup_info_item);
777 	btrfs_set_qgroup_info_generation(l, qgroup_info, trans->transid);
778 	btrfs_set_qgroup_info_rfer(l, qgroup_info, qgroup->rfer);
779 	btrfs_set_qgroup_info_rfer_cmpr(l, qgroup_info, qgroup->rfer_cmpr);
780 	btrfs_set_qgroup_info_excl(l, qgroup_info, qgroup->excl);
781 	btrfs_set_qgroup_info_excl_cmpr(l, qgroup_info, qgroup->excl_cmpr);
782 
783 	btrfs_mark_buffer_dirty(l);
784 
785 out:
786 	btrfs_free_path(path);
787 	return ret;
788 }
789 
update_qgroup_status_item(struct btrfs_trans_handle * trans)790 static int update_qgroup_status_item(struct btrfs_trans_handle *trans)
791 {
792 	struct btrfs_fs_info *fs_info = trans->fs_info;
793 	struct btrfs_root *quota_root = fs_info->quota_root;
794 	struct btrfs_path *path;
795 	struct btrfs_key key;
796 	struct extent_buffer *l;
797 	struct btrfs_qgroup_status_item *ptr;
798 	int ret;
799 	int slot;
800 
801 	key.objectid = 0;
802 	key.type = BTRFS_QGROUP_STATUS_KEY;
803 	key.offset = 0;
804 
805 	path = btrfs_alloc_path();
806 	if (!path)
807 		return -ENOMEM;
808 
809 	ret = btrfs_search_slot(trans, quota_root, &key, path, 0, 1);
810 	if (ret > 0)
811 		ret = -ENOENT;
812 
813 	if (ret)
814 		goto out;
815 
816 	l = path->nodes[0];
817 	slot = path->slots[0];
818 	ptr = btrfs_item_ptr(l, slot, struct btrfs_qgroup_status_item);
819 	btrfs_set_qgroup_status_flags(l, ptr, fs_info->qgroup_flags);
820 	btrfs_set_qgroup_status_generation(l, ptr, trans->transid);
821 	btrfs_set_qgroup_status_rescan(l, ptr,
822 				fs_info->qgroup_rescan_progress.objectid);
823 
824 	btrfs_mark_buffer_dirty(l);
825 
826 out:
827 	btrfs_free_path(path);
828 	return ret;
829 }
830 
831 /*
832  * called with qgroup_lock held
833  */
btrfs_clean_quota_tree(struct btrfs_trans_handle * trans,struct btrfs_root * root)834 static int btrfs_clean_quota_tree(struct btrfs_trans_handle *trans,
835 				  struct btrfs_root *root)
836 {
837 	struct btrfs_path *path;
838 	struct btrfs_key key;
839 	struct extent_buffer *leaf = NULL;
840 	int ret;
841 	int nr = 0;
842 
843 	path = btrfs_alloc_path();
844 	if (!path)
845 		return -ENOMEM;
846 
847 	path->leave_spinning = 1;
848 
849 	key.objectid = 0;
850 	key.offset = 0;
851 	key.type = 0;
852 
853 	while (1) {
854 		ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
855 		if (ret < 0)
856 			goto out;
857 		leaf = path->nodes[0];
858 		nr = btrfs_header_nritems(leaf);
859 		if (!nr)
860 			break;
861 		/*
862 		 * delete the leaf one by one
863 		 * since the whole tree is going
864 		 * to be deleted.
865 		 */
866 		path->slots[0] = 0;
867 		ret = btrfs_del_items(trans, root, path, 0, nr);
868 		if (ret)
869 			goto out;
870 
871 		btrfs_release_path(path);
872 	}
873 	ret = 0;
874 out:
875 	btrfs_free_path(path);
876 	return ret;
877 }
878 
btrfs_quota_enable(struct btrfs_fs_info * fs_info)879 int btrfs_quota_enable(struct btrfs_fs_info *fs_info)
880 {
881 	struct btrfs_root *quota_root;
882 	struct btrfs_root *tree_root = fs_info->tree_root;
883 	struct btrfs_path *path = NULL;
884 	struct btrfs_qgroup_status_item *ptr;
885 	struct extent_buffer *leaf;
886 	struct btrfs_key key;
887 	struct btrfs_key found_key;
888 	struct btrfs_qgroup *qgroup = NULL;
889 	struct btrfs_trans_handle *trans = NULL;
890 	int ret = 0;
891 	int slot;
892 
893 	mutex_lock(&fs_info->qgroup_ioctl_lock);
894 	if (fs_info->quota_root)
895 		goto out;
896 
897 	/*
898 	 * 1 for quota root item
899 	 * 1 for BTRFS_QGROUP_STATUS item
900 	 *
901 	 * Yet we also need 2*n items for a QGROUP_INFO/QGROUP_LIMIT items
902 	 * per subvolume. However those are not currently reserved since it
903 	 * would be a lot of overkill.
904 	 */
905 	trans = btrfs_start_transaction(tree_root, 2);
906 	if (IS_ERR(trans)) {
907 		ret = PTR_ERR(trans);
908 		trans = NULL;
909 		goto out;
910 	}
911 
912 	fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
913 	if (!fs_info->qgroup_ulist) {
914 		ret = -ENOMEM;
915 		btrfs_abort_transaction(trans, ret);
916 		goto out;
917 	}
918 
919 	/*
920 	 * initially create the quota tree
921 	 */
922 	quota_root = btrfs_create_tree(trans, fs_info,
923 				       BTRFS_QUOTA_TREE_OBJECTID);
924 	if (IS_ERR(quota_root)) {
925 		ret =  PTR_ERR(quota_root);
926 		btrfs_abort_transaction(trans, ret);
927 		goto out;
928 	}
929 
930 	path = btrfs_alloc_path();
931 	if (!path) {
932 		ret = -ENOMEM;
933 		btrfs_abort_transaction(trans, ret);
934 		goto out_free_root;
935 	}
936 
937 	key.objectid = 0;
938 	key.type = BTRFS_QGROUP_STATUS_KEY;
939 	key.offset = 0;
940 
941 	ret = btrfs_insert_empty_item(trans, quota_root, path, &key,
942 				      sizeof(*ptr));
943 	if (ret) {
944 		btrfs_abort_transaction(trans, ret);
945 		goto out_free_path;
946 	}
947 
948 	leaf = path->nodes[0];
949 	ptr = btrfs_item_ptr(leaf, path->slots[0],
950 				 struct btrfs_qgroup_status_item);
951 	btrfs_set_qgroup_status_generation(leaf, ptr, trans->transid);
952 	btrfs_set_qgroup_status_version(leaf, ptr, BTRFS_QGROUP_STATUS_VERSION);
953 	fs_info->qgroup_flags = BTRFS_QGROUP_STATUS_FLAG_ON |
954 				BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
955 	btrfs_set_qgroup_status_flags(leaf, ptr, fs_info->qgroup_flags);
956 	btrfs_set_qgroup_status_rescan(leaf, ptr, 0);
957 
958 	btrfs_mark_buffer_dirty(leaf);
959 
960 	key.objectid = 0;
961 	key.type = BTRFS_ROOT_REF_KEY;
962 	key.offset = 0;
963 
964 	btrfs_release_path(path);
965 	ret = btrfs_search_slot_for_read(tree_root, &key, path, 1, 0);
966 	if (ret > 0)
967 		goto out_add_root;
968 	if (ret < 0) {
969 		btrfs_abort_transaction(trans, ret);
970 		goto out_free_path;
971 	}
972 
973 	while (1) {
974 		slot = path->slots[0];
975 		leaf = path->nodes[0];
976 		btrfs_item_key_to_cpu(leaf, &found_key, slot);
977 
978 		if (found_key.type == BTRFS_ROOT_REF_KEY) {
979 			ret = add_qgroup_item(trans, quota_root,
980 					      found_key.offset);
981 			if (ret) {
982 				btrfs_abort_transaction(trans, ret);
983 				goto out_free_path;
984 			}
985 
986 			qgroup = add_qgroup_rb(fs_info, found_key.offset);
987 			if (IS_ERR(qgroup)) {
988 				ret = PTR_ERR(qgroup);
989 				btrfs_abort_transaction(trans, ret);
990 				goto out_free_path;
991 			}
992 		}
993 		ret = btrfs_next_item(tree_root, path);
994 		if (ret < 0) {
995 			btrfs_abort_transaction(trans, ret);
996 			goto out_free_path;
997 		}
998 		if (ret)
999 			break;
1000 	}
1001 
1002 out_add_root:
1003 	btrfs_release_path(path);
1004 	ret = add_qgroup_item(trans, quota_root, BTRFS_FS_TREE_OBJECTID);
1005 	if (ret) {
1006 		btrfs_abort_transaction(trans, ret);
1007 		goto out_free_path;
1008 	}
1009 
1010 	qgroup = add_qgroup_rb(fs_info, BTRFS_FS_TREE_OBJECTID);
1011 	if (IS_ERR(qgroup)) {
1012 		ret = PTR_ERR(qgroup);
1013 		btrfs_abort_transaction(trans, ret);
1014 		goto out_free_path;
1015 	}
1016 
1017 	ret = btrfs_commit_transaction(trans);
1018 	trans = NULL;
1019 	if (ret)
1020 		goto out_free_path;
1021 
1022 	/*
1023 	 * Set quota enabled flag after committing the transaction, to avoid
1024 	 * deadlocks on fs_info->qgroup_ioctl_lock with concurrent snapshot
1025 	 * creation.
1026 	 */
1027 	spin_lock(&fs_info->qgroup_lock);
1028 	fs_info->quota_root = quota_root;
1029 	set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
1030 	spin_unlock(&fs_info->qgroup_lock);
1031 
1032 	ret = qgroup_rescan_init(fs_info, 0, 1);
1033 	if (!ret) {
1034 	        qgroup_rescan_zero_tracking(fs_info);
1035 		fs_info->qgroup_rescan_running = true;
1036 	        btrfs_queue_work(fs_info->qgroup_rescan_workers,
1037 	                         &fs_info->qgroup_rescan_work);
1038 	} else {
1039 		/*
1040 		 * We have set both BTRFS_FS_QUOTA_ENABLED and
1041 		 * BTRFS_QGROUP_STATUS_FLAG_ON, so we can only fail with
1042 		 * -EINPROGRESS. That can happen because someone started the
1043 		 * rescan worker by calling quota rescan ioctl before we
1044 		 * attempted to initialize the rescan worker. Failure due to
1045 		 * quotas disabled in the meanwhile is not possible, because
1046 		 * we are holding a write lock on fs_info->subvol_sem, which
1047 		 * is also acquired when disabling quotas.
1048 		 * Ignore such error, and any other error would need to undo
1049 		 * everything we did in the transaction we just committed.
1050 		 */
1051 		ASSERT(ret == -EINPROGRESS);
1052 		ret = 0;
1053 	}
1054 
1055 out_free_path:
1056 	btrfs_free_path(path);
1057 out_free_root:
1058 	if (ret) {
1059 		free_extent_buffer(quota_root->node);
1060 		free_extent_buffer(quota_root->commit_root);
1061 		kfree(quota_root);
1062 	}
1063 out:
1064 	if (ret) {
1065 		ulist_free(fs_info->qgroup_ulist);
1066 		fs_info->qgroup_ulist = NULL;
1067 		if (trans)
1068 			btrfs_end_transaction(trans);
1069 	}
1070 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1071 	return ret;
1072 }
1073 
btrfs_quota_disable(struct btrfs_fs_info * fs_info)1074 int btrfs_quota_disable(struct btrfs_fs_info *fs_info)
1075 {
1076 	struct btrfs_root *quota_root;
1077 	struct btrfs_trans_handle *trans = NULL;
1078 	int ret = 0;
1079 
1080 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1081 	if (!fs_info->quota_root)
1082 		goto out;
1083 
1084 	/*
1085 	 * 1 For the root item
1086 	 *
1087 	 * We should also reserve enough items for the quota tree deletion in
1088 	 * btrfs_clean_quota_tree but this is not done.
1089 	 */
1090 	trans = btrfs_start_transaction(fs_info->tree_root, 1);
1091 	if (IS_ERR(trans)) {
1092 		ret = PTR_ERR(trans);
1093 		goto out;
1094 	}
1095 
1096 	clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
1097 	btrfs_qgroup_wait_for_completion(fs_info, false);
1098 	spin_lock(&fs_info->qgroup_lock);
1099 	quota_root = fs_info->quota_root;
1100 	fs_info->quota_root = NULL;
1101 	fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
1102 	spin_unlock(&fs_info->qgroup_lock);
1103 
1104 	btrfs_free_qgroup_config(fs_info);
1105 
1106 	ret = btrfs_clean_quota_tree(trans, quota_root);
1107 	if (ret) {
1108 		btrfs_abort_transaction(trans, ret);
1109 		goto end_trans;
1110 	}
1111 
1112 	ret = btrfs_del_root(trans, &quota_root->root_key);
1113 	if (ret) {
1114 		btrfs_abort_transaction(trans, ret);
1115 		goto end_trans;
1116 	}
1117 
1118 	spin_lock(&fs_info->trans_lock);
1119 	list_del(&quota_root->dirty_list);
1120 	spin_unlock(&fs_info->trans_lock);
1121 
1122 	btrfs_tree_lock(quota_root->node);
1123 	clean_tree_block(fs_info, quota_root->node);
1124 	btrfs_tree_unlock(quota_root->node);
1125 	btrfs_free_tree_block(trans, quota_root, quota_root->node, 0, 1);
1126 
1127 	free_extent_buffer(quota_root->node);
1128 	free_extent_buffer(quota_root->commit_root);
1129 	kfree(quota_root);
1130 
1131 end_trans:
1132 	ret = btrfs_end_transaction(trans);
1133 out:
1134 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1135 	return ret;
1136 }
1137 
qgroup_dirty(struct btrfs_fs_info * fs_info,struct btrfs_qgroup * qgroup)1138 static void qgroup_dirty(struct btrfs_fs_info *fs_info,
1139 			 struct btrfs_qgroup *qgroup)
1140 {
1141 	if (list_empty(&qgroup->dirty))
1142 		list_add(&qgroup->dirty, &fs_info->dirty_qgroups);
1143 }
1144 
1145 /*
1146  * The easy accounting, we're updating qgroup relationship whose child qgroup
1147  * only has exclusive extents.
1148  *
1149  * In this case, all exclsuive extents will also be exlusive for parent, so
1150  * excl/rfer just get added/removed.
1151  *
1152  * So is qgroup reservation space, which should also be added/removed to
1153  * parent.
1154  * Or when child tries to release reservation space, parent will underflow its
1155  * reservation (for relationship adding case).
1156  *
1157  * Caller should hold fs_info->qgroup_lock.
1158  */
__qgroup_excl_accounting(struct btrfs_fs_info * fs_info,struct ulist * tmp,u64 ref_root,struct btrfs_qgroup * src,int sign)1159 static int __qgroup_excl_accounting(struct btrfs_fs_info *fs_info,
1160 				    struct ulist *tmp, u64 ref_root,
1161 				    struct btrfs_qgroup *src, int sign)
1162 {
1163 	struct btrfs_qgroup *qgroup;
1164 	struct btrfs_qgroup_list *glist;
1165 	struct ulist_node *unode;
1166 	struct ulist_iterator uiter;
1167 	u64 num_bytes = src->excl;
1168 	int ret = 0;
1169 
1170 	qgroup = find_qgroup_rb(fs_info, ref_root);
1171 	if (!qgroup)
1172 		goto out;
1173 
1174 	qgroup->rfer += sign * num_bytes;
1175 	qgroup->rfer_cmpr += sign * num_bytes;
1176 
1177 	WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1178 	qgroup->excl += sign * num_bytes;
1179 	qgroup->excl_cmpr += sign * num_bytes;
1180 
1181 	if (sign > 0)
1182 		qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
1183 	else
1184 		qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
1185 
1186 	qgroup_dirty(fs_info, qgroup);
1187 
1188 	/* Get all of the parent groups that contain this qgroup */
1189 	list_for_each_entry(glist, &qgroup->groups, next_group) {
1190 		ret = ulist_add(tmp, glist->group->qgroupid,
1191 				qgroup_to_aux(glist->group), GFP_ATOMIC);
1192 		if (ret < 0)
1193 			goto out;
1194 	}
1195 
1196 	/* Iterate all of the parents and adjust their reference counts */
1197 	ULIST_ITER_INIT(&uiter);
1198 	while ((unode = ulist_next(tmp, &uiter))) {
1199 		qgroup = unode_aux_to_qgroup(unode);
1200 		qgroup->rfer += sign * num_bytes;
1201 		qgroup->rfer_cmpr += sign * num_bytes;
1202 		WARN_ON(sign < 0 && qgroup->excl < num_bytes);
1203 		qgroup->excl += sign * num_bytes;
1204 		if (sign > 0)
1205 			qgroup_rsv_add_by_qgroup(fs_info, qgroup, src);
1206 		else
1207 			qgroup_rsv_release_by_qgroup(fs_info, qgroup, src);
1208 		qgroup->excl_cmpr += sign * num_bytes;
1209 		qgroup_dirty(fs_info, qgroup);
1210 
1211 		/* Add any parents of the parents */
1212 		list_for_each_entry(glist, &qgroup->groups, next_group) {
1213 			ret = ulist_add(tmp, glist->group->qgroupid,
1214 					qgroup_to_aux(glist->group), GFP_ATOMIC);
1215 			if (ret < 0)
1216 				goto out;
1217 		}
1218 	}
1219 	ret = 0;
1220 out:
1221 	return ret;
1222 }
1223 
1224 
1225 /*
1226  * Quick path for updating qgroup with only excl refs.
1227  *
1228  * In that case, just update all parent will be enough.
1229  * Or we needs to do a full rescan.
1230  * Caller should also hold fs_info->qgroup_lock.
1231  *
1232  * Return 0 for quick update, return >0 for need to full rescan
1233  * and mark INCONSISTENT flag.
1234  * Return < 0 for other error.
1235  */
quick_update_accounting(struct btrfs_fs_info * fs_info,struct ulist * tmp,u64 src,u64 dst,int sign)1236 static int quick_update_accounting(struct btrfs_fs_info *fs_info,
1237 				   struct ulist *tmp, u64 src, u64 dst,
1238 				   int sign)
1239 {
1240 	struct btrfs_qgroup *qgroup;
1241 	int ret = 1;
1242 	int err = 0;
1243 
1244 	qgroup = find_qgroup_rb(fs_info, src);
1245 	if (!qgroup)
1246 		goto out;
1247 	if (qgroup->excl == qgroup->rfer) {
1248 		ret = 0;
1249 		err = __qgroup_excl_accounting(fs_info, tmp, dst,
1250 					       qgroup, sign);
1251 		if (err < 0) {
1252 			ret = err;
1253 			goto out;
1254 		}
1255 	}
1256 out:
1257 	if (ret)
1258 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1259 	return ret;
1260 }
1261 
btrfs_add_qgroup_relation(struct btrfs_trans_handle * trans,u64 src,u64 dst)1262 int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1263 			      u64 dst)
1264 {
1265 	struct btrfs_fs_info *fs_info = trans->fs_info;
1266 	struct btrfs_root *quota_root;
1267 	struct btrfs_qgroup *parent;
1268 	struct btrfs_qgroup *member;
1269 	struct btrfs_qgroup_list *list;
1270 	struct ulist *tmp;
1271 	int ret = 0;
1272 
1273 	/* Check the level of src and dst first */
1274 	if (btrfs_qgroup_level(src) >= btrfs_qgroup_level(dst))
1275 		return -EINVAL;
1276 
1277 	tmp = ulist_alloc(GFP_KERNEL);
1278 	if (!tmp)
1279 		return -ENOMEM;
1280 
1281 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1282 	quota_root = fs_info->quota_root;
1283 	if (!quota_root) {
1284 		ret = -EINVAL;
1285 		goto out;
1286 	}
1287 	member = find_qgroup_rb(fs_info, src);
1288 	parent = find_qgroup_rb(fs_info, dst);
1289 	if (!member || !parent) {
1290 		ret = -EINVAL;
1291 		goto out;
1292 	}
1293 
1294 	/* check if such qgroup relation exist firstly */
1295 	list_for_each_entry(list, &member->groups, next_group) {
1296 		if (list->group == parent) {
1297 			ret = -EEXIST;
1298 			goto out;
1299 		}
1300 	}
1301 
1302 	ret = add_qgroup_relation_item(trans, src, dst);
1303 	if (ret)
1304 		goto out;
1305 
1306 	ret = add_qgroup_relation_item(trans, dst, src);
1307 	if (ret) {
1308 		del_qgroup_relation_item(trans, src, dst);
1309 		goto out;
1310 	}
1311 
1312 	spin_lock(&fs_info->qgroup_lock);
1313 	ret = add_relation_rb(fs_info, src, dst);
1314 	if (ret < 0) {
1315 		spin_unlock(&fs_info->qgroup_lock);
1316 		goto out;
1317 	}
1318 	ret = quick_update_accounting(fs_info, tmp, src, dst, 1);
1319 	spin_unlock(&fs_info->qgroup_lock);
1320 out:
1321 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1322 	ulist_free(tmp);
1323 	return ret;
1324 }
1325 
__del_qgroup_relation(struct btrfs_trans_handle * trans,u64 src,u64 dst)1326 static int __del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1327 				 u64 dst)
1328 {
1329 	struct btrfs_fs_info *fs_info = trans->fs_info;
1330 	struct btrfs_root *quota_root;
1331 	struct btrfs_qgroup *parent;
1332 	struct btrfs_qgroup *member;
1333 	struct btrfs_qgroup_list *list;
1334 	struct ulist *tmp;
1335 	int ret = 0;
1336 	int err;
1337 
1338 	tmp = ulist_alloc(GFP_KERNEL);
1339 	if (!tmp)
1340 		return -ENOMEM;
1341 
1342 	quota_root = fs_info->quota_root;
1343 	if (!quota_root) {
1344 		ret = -EINVAL;
1345 		goto out;
1346 	}
1347 
1348 	member = find_qgroup_rb(fs_info, src);
1349 	parent = find_qgroup_rb(fs_info, dst);
1350 	if (!member || !parent) {
1351 		ret = -EINVAL;
1352 		goto out;
1353 	}
1354 
1355 	/* check if such qgroup relation exist firstly */
1356 	list_for_each_entry(list, &member->groups, next_group) {
1357 		if (list->group == parent)
1358 			goto exist;
1359 	}
1360 	ret = -ENOENT;
1361 	goto out;
1362 exist:
1363 	ret = del_qgroup_relation_item(trans, src, dst);
1364 	err = del_qgroup_relation_item(trans, dst, src);
1365 	if (err && !ret)
1366 		ret = err;
1367 
1368 	spin_lock(&fs_info->qgroup_lock);
1369 	del_relation_rb(fs_info, src, dst);
1370 	ret = quick_update_accounting(fs_info, tmp, src, dst, -1);
1371 	spin_unlock(&fs_info->qgroup_lock);
1372 out:
1373 	ulist_free(tmp);
1374 	return ret;
1375 }
1376 
btrfs_del_qgroup_relation(struct btrfs_trans_handle * trans,u64 src,u64 dst)1377 int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
1378 			      u64 dst)
1379 {
1380 	struct btrfs_fs_info *fs_info = trans->fs_info;
1381 	int ret = 0;
1382 
1383 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1384 	ret = __del_qgroup_relation(trans, src, dst);
1385 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1386 
1387 	return ret;
1388 }
1389 
btrfs_create_qgroup(struct btrfs_trans_handle * trans,u64 qgroupid)1390 int btrfs_create_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid)
1391 {
1392 	struct btrfs_fs_info *fs_info = trans->fs_info;
1393 	struct btrfs_root *quota_root;
1394 	struct btrfs_qgroup *qgroup;
1395 	int ret = 0;
1396 
1397 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1398 	quota_root = fs_info->quota_root;
1399 	if (!quota_root) {
1400 		ret = -EINVAL;
1401 		goto out;
1402 	}
1403 	qgroup = find_qgroup_rb(fs_info, qgroupid);
1404 	if (qgroup) {
1405 		ret = -EEXIST;
1406 		goto out;
1407 	}
1408 
1409 	ret = add_qgroup_item(trans, quota_root, qgroupid);
1410 	if (ret)
1411 		goto out;
1412 
1413 	spin_lock(&fs_info->qgroup_lock);
1414 	qgroup = add_qgroup_rb(fs_info, qgroupid);
1415 	spin_unlock(&fs_info->qgroup_lock);
1416 
1417 	if (IS_ERR(qgroup))
1418 		ret = PTR_ERR(qgroup);
1419 out:
1420 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1421 	return ret;
1422 }
1423 
btrfs_remove_qgroup(struct btrfs_trans_handle * trans,u64 qgroupid)1424 int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid)
1425 {
1426 	struct btrfs_fs_info *fs_info = trans->fs_info;
1427 	struct btrfs_root *quota_root;
1428 	struct btrfs_qgroup *qgroup;
1429 	struct btrfs_qgroup_list *list;
1430 	int ret = 0;
1431 
1432 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1433 	quota_root = fs_info->quota_root;
1434 	if (!quota_root) {
1435 		ret = -EINVAL;
1436 		goto out;
1437 	}
1438 
1439 	qgroup = find_qgroup_rb(fs_info, qgroupid);
1440 	if (!qgroup) {
1441 		ret = -ENOENT;
1442 		goto out;
1443 	} else {
1444 		/* check if there are no children of this qgroup */
1445 		if (!list_empty(&qgroup->members)) {
1446 			ret = -EBUSY;
1447 			goto out;
1448 		}
1449 	}
1450 	ret = del_qgroup_item(trans, qgroupid);
1451 	if (ret && ret != -ENOENT)
1452 		goto out;
1453 
1454 	while (!list_empty(&qgroup->groups)) {
1455 		list = list_first_entry(&qgroup->groups,
1456 					struct btrfs_qgroup_list, next_group);
1457 		ret = __del_qgroup_relation(trans, qgroupid,
1458 					    list->group->qgroupid);
1459 		if (ret)
1460 			goto out;
1461 	}
1462 
1463 	spin_lock(&fs_info->qgroup_lock);
1464 	del_qgroup_rb(fs_info, qgroupid);
1465 	spin_unlock(&fs_info->qgroup_lock);
1466 out:
1467 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1468 	return ret;
1469 }
1470 
btrfs_limit_qgroup(struct btrfs_trans_handle * trans,u64 qgroupid,struct btrfs_qgroup_limit * limit)1471 int btrfs_limit_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid,
1472 		       struct btrfs_qgroup_limit *limit)
1473 {
1474 	struct btrfs_fs_info *fs_info = trans->fs_info;
1475 	struct btrfs_root *quota_root;
1476 	struct btrfs_qgroup *qgroup;
1477 	int ret = 0;
1478 	/* Sometimes we would want to clear the limit on this qgroup.
1479 	 * To meet this requirement, we treat the -1 as a special value
1480 	 * which tell kernel to clear the limit on this qgroup.
1481 	 */
1482 	const u64 CLEAR_VALUE = -1;
1483 
1484 	mutex_lock(&fs_info->qgroup_ioctl_lock);
1485 	quota_root = fs_info->quota_root;
1486 	if (!quota_root) {
1487 		ret = -EINVAL;
1488 		goto out;
1489 	}
1490 
1491 	qgroup = find_qgroup_rb(fs_info, qgroupid);
1492 	if (!qgroup) {
1493 		ret = -ENOENT;
1494 		goto out;
1495 	}
1496 
1497 	spin_lock(&fs_info->qgroup_lock);
1498 	if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_RFER) {
1499 		if (limit->max_rfer == CLEAR_VALUE) {
1500 			qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1501 			limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_RFER;
1502 			qgroup->max_rfer = 0;
1503 		} else {
1504 			qgroup->max_rfer = limit->max_rfer;
1505 		}
1506 	}
1507 	if (limit->flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) {
1508 		if (limit->max_excl == CLEAR_VALUE) {
1509 			qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1510 			limit->flags &= ~BTRFS_QGROUP_LIMIT_MAX_EXCL;
1511 			qgroup->max_excl = 0;
1512 		} else {
1513 			qgroup->max_excl = limit->max_excl;
1514 		}
1515 	}
1516 	if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_RFER) {
1517 		if (limit->rsv_rfer == CLEAR_VALUE) {
1518 			qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1519 			limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_RFER;
1520 			qgroup->rsv_rfer = 0;
1521 		} else {
1522 			qgroup->rsv_rfer = limit->rsv_rfer;
1523 		}
1524 	}
1525 	if (limit->flags & BTRFS_QGROUP_LIMIT_RSV_EXCL) {
1526 		if (limit->rsv_excl == CLEAR_VALUE) {
1527 			qgroup->lim_flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1528 			limit->flags &= ~BTRFS_QGROUP_LIMIT_RSV_EXCL;
1529 			qgroup->rsv_excl = 0;
1530 		} else {
1531 			qgroup->rsv_excl = limit->rsv_excl;
1532 		}
1533 	}
1534 	qgroup->lim_flags |= limit->flags;
1535 
1536 	spin_unlock(&fs_info->qgroup_lock);
1537 
1538 	ret = update_qgroup_limit_item(trans, qgroup);
1539 	if (ret) {
1540 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1541 		btrfs_info(fs_info, "unable to update quota limit for %llu",
1542 		       qgroupid);
1543 	}
1544 
1545 out:
1546 	mutex_unlock(&fs_info->qgroup_ioctl_lock);
1547 	return ret;
1548 }
1549 
btrfs_qgroup_trace_extent_nolock(struct btrfs_fs_info * fs_info,struct btrfs_delayed_ref_root * delayed_refs,struct btrfs_qgroup_extent_record * record)1550 int btrfs_qgroup_trace_extent_nolock(struct btrfs_fs_info *fs_info,
1551 				struct btrfs_delayed_ref_root *delayed_refs,
1552 				struct btrfs_qgroup_extent_record *record)
1553 {
1554 	struct rb_node **p = &delayed_refs->dirty_extent_root.rb_node;
1555 	struct rb_node *parent_node = NULL;
1556 	struct btrfs_qgroup_extent_record *entry;
1557 	u64 bytenr = record->bytenr;
1558 
1559 	lockdep_assert_held(&delayed_refs->lock);
1560 	trace_btrfs_qgroup_trace_extent(fs_info, record);
1561 
1562 	while (*p) {
1563 		parent_node = *p;
1564 		entry = rb_entry(parent_node, struct btrfs_qgroup_extent_record,
1565 				 node);
1566 		if (bytenr < entry->bytenr)
1567 			p = &(*p)->rb_left;
1568 		else if (bytenr > entry->bytenr)
1569 			p = &(*p)->rb_right;
1570 		else
1571 			return 1;
1572 	}
1573 
1574 	rb_link_node(&record->node, parent_node, p);
1575 	rb_insert_color(&record->node, &delayed_refs->dirty_extent_root);
1576 	return 0;
1577 }
1578 
btrfs_qgroup_trace_extent_post(struct btrfs_fs_info * fs_info,struct btrfs_qgroup_extent_record * qrecord)1579 int btrfs_qgroup_trace_extent_post(struct btrfs_fs_info *fs_info,
1580 				   struct btrfs_qgroup_extent_record *qrecord)
1581 {
1582 	struct ulist *old_root;
1583 	u64 bytenr = qrecord->bytenr;
1584 	int ret;
1585 
1586 	ret = btrfs_find_all_roots(NULL, fs_info, bytenr, 0, &old_root, false);
1587 	if (ret < 0) {
1588 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
1589 		btrfs_warn(fs_info,
1590 "error accounting new delayed refs extent (err code: %d), quota inconsistent",
1591 			ret);
1592 		return 0;
1593 	}
1594 
1595 	/*
1596 	 * Here we don't need to get the lock of
1597 	 * trans->transaction->delayed_refs, since inserted qrecord won't
1598 	 * be deleted, only qrecord->node may be modified (new qrecord insert)
1599 	 *
1600 	 * So modifying qrecord->old_roots is safe here
1601 	 */
1602 	qrecord->old_roots = old_root;
1603 	return 0;
1604 }
1605 
btrfs_qgroup_trace_extent(struct btrfs_trans_handle * trans,u64 bytenr,u64 num_bytes,gfp_t gfp_flag)1606 int btrfs_qgroup_trace_extent(struct btrfs_trans_handle *trans, u64 bytenr,
1607 			      u64 num_bytes, gfp_t gfp_flag)
1608 {
1609 	struct btrfs_fs_info *fs_info = trans->fs_info;
1610 	struct btrfs_qgroup_extent_record *record;
1611 	struct btrfs_delayed_ref_root *delayed_refs;
1612 	int ret;
1613 
1614 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)
1615 	    || bytenr == 0 || num_bytes == 0)
1616 		return 0;
1617 	record = kmalloc(sizeof(*record), gfp_flag);
1618 	if (!record)
1619 		return -ENOMEM;
1620 
1621 	delayed_refs = &trans->transaction->delayed_refs;
1622 	record->bytenr = bytenr;
1623 	record->num_bytes = num_bytes;
1624 	record->old_roots = NULL;
1625 
1626 	spin_lock(&delayed_refs->lock);
1627 	ret = btrfs_qgroup_trace_extent_nolock(fs_info, delayed_refs, record);
1628 	spin_unlock(&delayed_refs->lock);
1629 	if (ret > 0) {
1630 		kfree(record);
1631 		return 0;
1632 	}
1633 	return btrfs_qgroup_trace_extent_post(fs_info, record);
1634 }
1635 
btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle * trans,struct extent_buffer * eb)1636 int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
1637 				  struct extent_buffer *eb)
1638 {
1639 	struct btrfs_fs_info *fs_info = trans->fs_info;
1640 	int nr = btrfs_header_nritems(eb);
1641 	int i, extent_type, ret;
1642 	struct btrfs_key key;
1643 	struct btrfs_file_extent_item *fi;
1644 	u64 bytenr, num_bytes;
1645 
1646 	/* We can be called directly from walk_up_proc() */
1647 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
1648 		return 0;
1649 
1650 	for (i = 0; i < nr; i++) {
1651 		btrfs_item_key_to_cpu(eb, &key, i);
1652 
1653 		if (key.type != BTRFS_EXTENT_DATA_KEY)
1654 			continue;
1655 
1656 		fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
1657 		/* filter out non qgroup-accountable extents  */
1658 		extent_type = btrfs_file_extent_type(eb, fi);
1659 
1660 		if (extent_type == BTRFS_FILE_EXTENT_INLINE)
1661 			continue;
1662 
1663 		bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1664 		if (!bytenr)
1665 			continue;
1666 
1667 		num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1668 
1669 		ret = btrfs_qgroup_trace_extent(trans, bytenr, num_bytes,
1670 						GFP_NOFS);
1671 		if (ret)
1672 			return ret;
1673 	}
1674 	cond_resched();
1675 	return 0;
1676 }
1677 
1678 /*
1679  * Walk up the tree from the bottom, freeing leaves and any interior
1680  * nodes which have had all slots visited. If a node (leaf or
1681  * interior) is freed, the node above it will have it's slot
1682  * incremented. The root node will never be freed.
1683  *
1684  * At the end of this function, we should have a path which has all
1685  * slots incremented to the next position for a search. If we need to
1686  * read a new node it will be NULL and the node above it will have the
1687  * correct slot selected for a later read.
1688  *
1689  * If we increment the root nodes slot counter past the number of
1690  * elements, 1 is returned to signal completion of the search.
1691  */
adjust_slots_upwards(struct btrfs_path * path,int root_level)1692 static int adjust_slots_upwards(struct btrfs_path *path, int root_level)
1693 {
1694 	int level = 0;
1695 	int nr, slot;
1696 	struct extent_buffer *eb;
1697 
1698 	if (root_level == 0)
1699 		return 1;
1700 
1701 	while (level <= root_level) {
1702 		eb = path->nodes[level];
1703 		nr = btrfs_header_nritems(eb);
1704 		path->slots[level]++;
1705 		slot = path->slots[level];
1706 		if (slot >= nr || level == 0) {
1707 			/*
1708 			 * Don't free the root -  we will detect this
1709 			 * condition after our loop and return a
1710 			 * positive value for caller to stop walking the tree.
1711 			 */
1712 			if (level != root_level) {
1713 				btrfs_tree_unlock_rw(eb, path->locks[level]);
1714 				path->locks[level] = 0;
1715 
1716 				free_extent_buffer(eb);
1717 				path->nodes[level] = NULL;
1718 				path->slots[level] = 0;
1719 			}
1720 		} else {
1721 			/*
1722 			 * We have a valid slot to walk back down
1723 			 * from. Stop here so caller can process these
1724 			 * new nodes.
1725 			 */
1726 			break;
1727 		}
1728 
1729 		level++;
1730 	}
1731 
1732 	eb = path->nodes[root_level];
1733 	if (path->slots[root_level] >= btrfs_header_nritems(eb))
1734 		return 1;
1735 
1736 	return 0;
1737 }
1738 
btrfs_qgroup_trace_subtree(struct btrfs_trans_handle * trans,struct extent_buffer * root_eb,u64 root_gen,int root_level)1739 int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
1740 			       struct extent_buffer *root_eb,
1741 			       u64 root_gen, int root_level)
1742 {
1743 	struct btrfs_fs_info *fs_info = trans->fs_info;
1744 	int ret = 0;
1745 	int level;
1746 	struct extent_buffer *eb = root_eb;
1747 	struct btrfs_path *path = NULL;
1748 
1749 	BUG_ON(root_level < 0 || root_level >= BTRFS_MAX_LEVEL);
1750 	BUG_ON(root_eb == NULL);
1751 
1752 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
1753 		return 0;
1754 
1755 	if (!extent_buffer_uptodate(root_eb)) {
1756 		ret = btrfs_read_buffer(root_eb, root_gen, root_level, NULL);
1757 		if (ret)
1758 			goto out;
1759 	}
1760 
1761 	if (root_level == 0) {
1762 		ret = btrfs_qgroup_trace_leaf_items(trans, root_eb);
1763 		goto out;
1764 	}
1765 
1766 	path = btrfs_alloc_path();
1767 	if (!path)
1768 		return -ENOMEM;
1769 
1770 	/*
1771 	 * Walk down the tree.  Missing extent blocks are filled in as
1772 	 * we go. Metadata is accounted every time we read a new
1773 	 * extent block.
1774 	 *
1775 	 * When we reach a leaf, we account for file extent items in it,
1776 	 * walk back up the tree (adjusting slot pointers as we go)
1777 	 * and restart the search process.
1778 	 */
1779 	extent_buffer_get(root_eb); /* For path */
1780 	path->nodes[root_level] = root_eb;
1781 	path->slots[root_level] = 0;
1782 	path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
1783 walk_down:
1784 	level = root_level;
1785 	while (level >= 0) {
1786 		if (path->nodes[level] == NULL) {
1787 			struct btrfs_key first_key;
1788 			int parent_slot;
1789 			u64 child_gen;
1790 			u64 child_bytenr;
1791 
1792 			/*
1793 			 * We need to get child blockptr/gen from parent before
1794 			 * we can read it.
1795 			  */
1796 			eb = path->nodes[level + 1];
1797 			parent_slot = path->slots[level + 1];
1798 			child_bytenr = btrfs_node_blockptr(eb, parent_slot);
1799 			child_gen = btrfs_node_ptr_generation(eb, parent_slot);
1800 			btrfs_node_key_to_cpu(eb, &first_key, parent_slot);
1801 
1802 			eb = read_tree_block(fs_info, child_bytenr, child_gen,
1803 					     level, &first_key);
1804 			if (IS_ERR(eb)) {
1805 				ret = PTR_ERR(eb);
1806 				goto out;
1807 			} else if (!extent_buffer_uptodate(eb)) {
1808 				free_extent_buffer(eb);
1809 				ret = -EIO;
1810 				goto out;
1811 			}
1812 
1813 			path->nodes[level] = eb;
1814 			path->slots[level] = 0;
1815 
1816 			btrfs_tree_read_lock(eb);
1817 			btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1818 			path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
1819 
1820 			ret = btrfs_qgroup_trace_extent(trans, child_bytenr,
1821 							fs_info->nodesize,
1822 							GFP_NOFS);
1823 			if (ret)
1824 				goto out;
1825 		}
1826 
1827 		if (level == 0) {
1828 			ret = btrfs_qgroup_trace_leaf_items(trans,
1829 							    path->nodes[level]);
1830 			if (ret)
1831 				goto out;
1832 
1833 			/* Nonzero return here means we completed our search */
1834 			ret = adjust_slots_upwards(path, root_level);
1835 			if (ret)
1836 				break;
1837 
1838 			/* Restart search with new slots */
1839 			goto walk_down;
1840 		}
1841 
1842 		level--;
1843 	}
1844 
1845 	ret = 0;
1846 out:
1847 	btrfs_free_path(path);
1848 
1849 	return ret;
1850 }
1851 
1852 #define UPDATE_NEW	0
1853 #define UPDATE_OLD	1
1854 /*
1855  * Walk all of the roots that points to the bytenr and adjust their refcnts.
1856  */
qgroup_update_refcnt(struct btrfs_fs_info * fs_info,struct ulist * roots,struct ulist * tmp,struct ulist * qgroups,u64 seq,int update_old)1857 static int qgroup_update_refcnt(struct btrfs_fs_info *fs_info,
1858 				struct ulist *roots, struct ulist *tmp,
1859 				struct ulist *qgroups, u64 seq, int update_old)
1860 {
1861 	struct ulist_node *unode;
1862 	struct ulist_iterator uiter;
1863 	struct ulist_node *tmp_unode;
1864 	struct ulist_iterator tmp_uiter;
1865 	struct btrfs_qgroup *qg;
1866 	int ret = 0;
1867 
1868 	if (!roots)
1869 		return 0;
1870 	ULIST_ITER_INIT(&uiter);
1871 	while ((unode = ulist_next(roots, &uiter))) {
1872 		qg = find_qgroup_rb(fs_info, unode->val);
1873 		if (!qg)
1874 			continue;
1875 
1876 		ulist_reinit(tmp);
1877 		ret = ulist_add(qgroups, qg->qgroupid, qgroup_to_aux(qg),
1878 				GFP_ATOMIC);
1879 		if (ret < 0)
1880 			return ret;
1881 		ret = ulist_add(tmp, qg->qgroupid, qgroup_to_aux(qg), GFP_ATOMIC);
1882 		if (ret < 0)
1883 			return ret;
1884 		ULIST_ITER_INIT(&tmp_uiter);
1885 		while ((tmp_unode = ulist_next(tmp, &tmp_uiter))) {
1886 			struct btrfs_qgroup_list *glist;
1887 
1888 			qg = unode_aux_to_qgroup(tmp_unode);
1889 			if (update_old)
1890 				btrfs_qgroup_update_old_refcnt(qg, seq, 1);
1891 			else
1892 				btrfs_qgroup_update_new_refcnt(qg, seq, 1);
1893 			list_for_each_entry(glist, &qg->groups, next_group) {
1894 				ret = ulist_add(qgroups, glist->group->qgroupid,
1895 						qgroup_to_aux(glist->group),
1896 						GFP_ATOMIC);
1897 				if (ret < 0)
1898 					return ret;
1899 				ret = ulist_add(tmp, glist->group->qgroupid,
1900 						qgroup_to_aux(glist->group),
1901 						GFP_ATOMIC);
1902 				if (ret < 0)
1903 					return ret;
1904 			}
1905 		}
1906 	}
1907 	return 0;
1908 }
1909 
1910 /*
1911  * Update qgroup rfer/excl counters.
1912  * Rfer update is easy, codes can explain themselves.
1913  *
1914  * Excl update is tricky, the update is split into 2 part.
1915  * Part 1: Possible exclusive <-> sharing detect:
1916  *	|	A	|	!A	|
1917  *  -------------------------------------
1918  *  B	|	*	|	-	|
1919  *  -------------------------------------
1920  *  !B	|	+	|	**	|
1921  *  -------------------------------------
1922  *
1923  * Conditions:
1924  * A:	cur_old_roots < nr_old_roots	(not exclusive before)
1925  * !A:	cur_old_roots == nr_old_roots	(possible exclusive before)
1926  * B:	cur_new_roots < nr_new_roots	(not exclusive now)
1927  * !B:	cur_new_roots == nr_new_roots	(possible exclusive now)
1928  *
1929  * Results:
1930  * +: Possible sharing -> exclusive	-: Possible exclusive -> sharing
1931  * *: Definitely not changed.		**: Possible unchanged.
1932  *
1933  * For !A and !B condition, the exception is cur_old/new_roots == 0 case.
1934  *
1935  * To make the logic clear, we first use condition A and B to split
1936  * combination into 4 results.
1937  *
1938  * Then, for result "+" and "-", check old/new_roots == 0 case, as in them
1939  * only on variant maybe 0.
1940  *
1941  * Lastly, check result **, since there are 2 variants maybe 0, split them
1942  * again(2x2).
1943  * But this time we don't need to consider other things, the codes and logic
1944  * is easy to understand now.
1945  */
qgroup_update_counters(struct btrfs_fs_info * fs_info,struct ulist * qgroups,u64 nr_old_roots,u64 nr_new_roots,u64 num_bytes,u64 seq)1946 static int qgroup_update_counters(struct btrfs_fs_info *fs_info,
1947 				  struct ulist *qgroups,
1948 				  u64 nr_old_roots,
1949 				  u64 nr_new_roots,
1950 				  u64 num_bytes, u64 seq)
1951 {
1952 	struct ulist_node *unode;
1953 	struct ulist_iterator uiter;
1954 	struct btrfs_qgroup *qg;
1955 	u64 cur_new_count, cur_old_count;
1956 
1957 	ULIST_ITER_INIT(&uiter);
1958 	while ((unode = ulist_next(qgroups, &uiter))) {
1959 		bool dirty = false;
1960 
1961 		qg = unode_aux_to_qgroup(unode);
1962 		cur_old_count = btrfs_qgroup_get_old_refcnt(qg, seq);
1963 		cur_new_count = btrfs_qgroup_get_new_refcnt(qg, seq);
1964 
1965 		trace_qgroup_update_counters(fs_info, qg, cur_old_count,
1966 					     cur_new_count);
1967 
1968 		/* Rfer update part */
1969 		if (cur_old_count == 0 && cur_new_count > 0) {
1970 			qg->rfer += num_bytes;
1971 			qg->rfer_cmpr += num_bytes;
1972 			dirty = true;
1973 		}
1974 		if (cur_old_count > 0 && cur_new_count == 0) {
1975 			qg->rfer -= num_bytes;
1976 			qg->rfer_cmpr -= num_bytes;
1977 			dirty = true;
1978 		}
1979 
1980 		/* Excl update part */
1981 		/* Exclusive/none -> shared case */
1982 		if (cur_old_count == nr_old_roots &&
1983 		    cur_new_count < nr_new_roots) {
1984 			/* Exclusive -> shared */
1985 			if (cur_old_count != 0) {
1986 				qg->excl -= num_bytes;
1987 				qg->excl_cmpr -= num_bytes;
1988 				dirty = true;
1989 			}
1990 		}
1991 
1992 		/* Shared -> exclusive/none case */
1993 		if (cur_old_count < nr_old_roots &&
1994 		    cur_new_count == nr_new_roots) {
1995 			/* Shared->exclusive */
1996 			if (cur_new_count != 0) {
1997 				qg->excl += num_bytes;
1998 				qg->excl_cmpr += num_bytes;
1999 				dirty = true;
2000 			}
2001 		}
2002 
2003 		/* Exclusive/none -> exclusive/none case */
2004 		if (cur_old_count == nr_old_roots &&
2005 		    cur_new_count == nr_new_roots) {
2006 			if (cur_old_count == 0) {
2007 				/* None -> exclusive/none */
2008 
2009 				if (cur_new_count != 0) {
2010 					/* None -> exclusive */
2011 					qg->excl += num_bytes;
2012 					qg->excl_cmpr += num_bytes;
2013 					dirty = true;
2014 				}
2015 				/* None -> none, nothing changed */
2016 			} else {
2017 				/* Exclusive -> exclusive/none */
2018 
2019 				if (cur_new_count == 0) {
2020 					/* Exclusive -> none */
2021 					qg->excl -= num_bytes;
2022 					qg->excl_cmpr -= num_bytes;
2023 					dirty = true;
2024 				}
2025 				/* Exclusive -> exclusive, nothing changed */
2026 			}
2027 		}
2028 
2029 		if (dirty)
2030 			qgroup_dirty(fs_info, qg);
2031 	}
2032 	return 0;
2033 }
2034 
2035 /*
2036  * Check if the @roots potentially is a list of fs tree roots
2037  *
2038  * Return 0 for definitely not a fs/subvol tree roots ulist
2039  * Return 1 for possible fs/subvol tree roots in the list (considering an empty
2040  *          one as well)
2041  */
maybe_fs_roots(struct ulist * roots)2042 static int maybe_fs_roots(struct ulist *roots)
2043 {
2044 	struct ulist_node *unode;
2045 	struct ulist_iterator uiter;
2046 
2047 	/* Empty one, still possible for fs roots */
2048 	if (!roots || roots->nnodes == 0)
2049 		return 1;
2050 
2051 	ULIST_ITER_INIT(&uiter);
2052 	unode = ulist_next(roots, &uiter);
2053 	if (!unode)
2054 		return 1;
2055 
2056 	/*
2057 	 * If it contains fs tree roots, then it must belong to fs/subvol
2058 	 * trees.
2059 	 * If it contains a non-fs tree, it won't be shared with fs/subvol trees.
2060 	 */
2061 	return is_fstree(unode->val);
2062 }
2063 
btrfs_qgroup_account_extent(struct btrfs_trans_handle * trans,u64 bytenr,u64 num_bytes,struct ulist * old_roots,struct ulist * new_roots)2064 int btrfs_qgroup_account_extent(struct btrfs_trans_handle *trans, u64 bytenr,
2065 				u64 num_bytes, struct ulist *old_roots,
2066 				struct ulist *new_roots)
2067 {
2068 	struct btrfs_fs_info *fs_info = trans->fs_info;
2069 	struct ulist *qgroups = NULL;
2070 	struct ulist *tmp = NULL;
2071 	u64 seq;
2072 	u64 nr_new_roots = 0;
2073 	u64 nr_old_roots = 0;
2074 	int ret = 0;
2075 
2076 	/*
2077 	 * If quotas get disabled meanwhile, the resouces need to be freed and
2078 	 * we can't just exit here.
2079 	 */
2080 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2081 		goto out_free;
2082 
2083 	if (new_roots) {
2084 		if (!maybe_fs_roots(new_roots))
2085 			goto out_free;
2086 		nr_new_roots = new_roots->nnodes;
2087 	}
2088 	if (old_roots) {
2089 		if (!maybe_fs_roots(old_roots))
2090 			goto out_free;
2091 		nr_old_roots = old_roots->nnodes;
2092 	}
2093 
2094 	/* Quick exit, either not fs tree roots, or won't affect any qgroup */
2095 	if (nr_old_roots == 0 && nr_new_roots == 0)
2096 		goto out_free;
2097 
2098 	BUG_ON(!fs_info->quota_root);
2099 
2100 	trace_btrfs_qgroup_account_extent(fs_info, trans->transid, bytenr,
2101 					num_bytes, nr_old_roots, nr_new_roots);
2102 
2103 	qgroups = ulist_alloc(GFP_NOFS);
2104 	if (!qgroups) {
2105 		ret = -ENOMEM;
2106 		goto out_free;
2107 	}
2108 	tmp = ulist_alloc(GFP_NOFS);
2109 	if (!tmp) {
2110 		ret = -ENOMEM;
2111 		goto out_free;
2112 	}
2113 
2114 	mutex_lock(&fs_info->qgroup_rescan_lock);
2115 	if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2116 		if (fs_info->qgroup_rescan_progress.objectid <= bytenr) {
2117 			mutex_unlock(&fs_info->qgroup_rescan_lock);
2118 			ret = 0;
2119 			goto out_free;
2120 		}
2121 	}
2122 	mutex_unlock(&fs_info->qgroup_rescan_lock);
2123 
2124 	spin_lock(&fs_info->qgroup_lock);
2125 	seq = fs_info->qgroup_seq;
2126 
2127 	/* Update old refcnts using old_roots */
2128 	ret = qgroup_update_refcnt(fs_info, old_roots, tmp, qgroups, seq,
2129 				   UPDATE_OLD);
2130 	if (ret < 0)
2131 		goto out;
2132 
2133 	/* Update new refcnts using new_roots */
2134 	ret = qgroup_update_refcnt(fs_info, new_roots, tmp, qgroups, seq,
2135 				   UPDATE_NEW);
2136 	if (ret < 0)
2137 		goto out;
2138 
2139 	qgroup_update_counters(fs_info, qgroups, nr_old_roots, nr_new_roots,
2140 			       num_bytes, seq);
2141 
2142 	/*
2143 	 * Bump qgroup_seq to avoid seq overlap
2144 	 */
2145 	fs_info->qgroup_seq += max(nr_old_roots, nr_new_roots) + 1;
2146 out:
2147 	spin_unlock(&fs_info->qgroup_lock);
2148 out_free:
2149 	ulist_free(tmp);
2150 	ulist_free(qgroups);
2151 	ulist_free(old_roots);
2152 	ulist_free(new_roots);
2153 	return ret;
2154 }
2155 
btrfs_qgroup_account_extents(struct btrfs_trans_handle * trans)2156 int btrfs_qgroup_account_extents(struct btrfs_trans_handle *trans)
2157 {
2158 	struct btrfs_fs_info *fs_info = trans->fs_info;
2159 	struct btrfs_qgroup_extent_record *record;
2160 	struct btrfs_delayed_ref_root *delayed_refs;
2161 	struct ulist *new_roots = NULL;
2162 	struct rb_node *node;
2163 	u64 qgroup_to_skip;
2164 	int ret = 0;
2165 
2166 	delayed_refs = &trans->transaction->delayed_refs;
2167 	qgroup_to_skip = delayed_refs->qgroup_to_skip;
2168 	while ((node = rb_first(&delayed_refs->dirty_extent_root))) {
2169 		record = rb_entry(node, struct btrfs_qgroup_extent_record,
2170 				  node);
2171 
2172 		trace_btrfs_qgroup_account_extents(fs_info, record);
2173 
2174 		if (!ret) {
2175 			/*
2176 			 * Old roots should be searched when inserting qgroup
2177 			 * extent record
2178 			 */
2179 			if (WARN_ON(!record->old_roots)) {
2180 				/* Search commit root to find old_roots */
2181 				ret = btrfs_find_all_roots(NULL, fs_info,
2182 						record->bytenr, 0,
2183 						&record->old_roots, false);
2184 				if (ret < 0)
2185 					goto cleanup;
2186 			}
2187 
2188 			/*
2189 			 * Use SEQ_LAST as time_seq to do special search, which
2190 			 * doesn't lock tree or delayed_refs and search current
2191 			 * root. It's safe inside commit_transaction().
2192 			 */
2193 			ret = btrfs_find_all_roots(trans, fs_info,
2194 				record->bytenr, SEQ_LAST, &new_roots, false);
2195 			if (ret < 0)
2196 				goto cleanup;
2197 			if (qgroup_to_skip) {
2198 				ulist_del(new_roots, qgroup_to_skip, 0);
2199 				ulist_del(record->old_roots, qgroup_to_skip,
2200 					  0);
2201 			}
2202 			ret = btrfs_qgroup_account_extent(trans, record->bytenr,
2203 							  record->num_bytes,
2204 							  record->old_roots,
2205 							  new_roots);
2206 			record->old_roots = NULL;
2207 			new_roots = NULL;
2208 		}
2209 cleanup:
2210 		ulist_free(record->old_roots);
2211 		ulist_free(new_roots);
2212 		new_roots = NULL;
2213 		rb_erase(node, &delayed_refs->dirty_extent_root);
2214 		kfree(record);
2215 
2216 	}
2217 	return ret;
2218 }
2219 
2220 /*
2221  * called from commit_transaction. Writes all changed qgroups to disk.
2222  */
btrfs_run_qgroups(struct btrfs_trans_handle * trans)2223 int btrfs_run_qgroups(struct btrfs_trans_handle *trans)
2224 {
2225 	struct btrfs_fs_info *fs_info = trans->fs_info;
2226 	struct btrfs_root *quota_root = fs_info->quota_root;
2227 	int ret = 0;
2228 
2229 	if (!quota_root)
2230 		return ret;
2231 
2232 	spin_lock(&fs_info->qgroup_lock);
2233 	while (!list_empty(&fs_info->dirty_qgroups)) {
2234 		struct btrfs_qgroup *qgroup;
2235 		qgroup = list_first_entry(&fs_info->dirty_qgroups,
2236 					  struct btrfs_qgroup, dirty);
2237 		list_del_init(&qgroup->dirty);
2238 		spin_unlock(&fs_info->qgroup_lock);
2239 		ret = update_qgroup_info_item(trans, qgroup);
2240 		if (ret)
2241 			fs_info->qgroup_flags |=
2242 					BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2243 		ret = update_qgroup_limit_item(trans, qgroup);
2244 		if (ret)
2245 			fs_info->qgroup_flags |=
2246 					BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2247 		spin_lock(&fs_info->qgroup_lock);
2248 	}
2249 	if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2250 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_ON;
2251 	else
2252 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_ON;
2253 	spin_unlock(&fs_info->qgroup_lock);
2254 
2255 	ret = update_qgroup_status_item(trans);
2256 	if (ret)
2257 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2258 
2259 	return ret;
2260 }
2261 
2262 /*
2263  * Copy the accounting information between qgroups. This is necessary
2264  * when a snapshot or a subvolume is created. Throwing an error will
2265  * cause a transaction abort so we take extra care here to only error
2266  * when a readonly fs is a reasonable outcome.
2267  */
btrfs_qgroup_inherit(struct btrfs_trans_handle * trans,u64 srcid,u64 objectid,struct btrfs_qgroup_inherit * inherit)2268 int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans, u64 srcid,
2269 			 u64 objectid, struct btrfs_qgroup_inherit *inherit)
2270 {
2271 	int ret = 0;
2272 	int i;
2273 	u64 *i_qgroups;
2274 	bool committing = false;
2275 	struct btrfs_fs_info *fs_info = trans->fs_info;
2276 	struct btrfs_root *quota_root;
2277 	struct btrfs_qgroup *srcgroup;
2278 	struct btrfs_qgroup *dstgroup;
2279 	bool need_rescan = false;
2280 	u32 level_size = 0;
2281 	u64 nums;
2282 
2283 	/*
2284 	 * There are only two callers of this function.
2285 	 *
2286 	 * One in create_subvol() in the ioctl context, which needs to hold
2287 	 * the qgroup_ioctl_lock.
2288 	 *
2289 	 * The other one in create_pending_snapshot() where no other qgroup
2290 	 * code can modify the fs as they all need to either start a new trans
2291 	 * or hold a trans handler, thus we don't need to hold
2292 	 * qgroup_ioctl_lock.
2293 	 * This would avoid long and complex lock chain and make lockdep happy.
2294 	 */
2295 	spin_lock(&fs_info->trans_lock);
2296 	if (trans->transaction->state == TRANS_STATE_COMMIT_DOING)
2297 		committing = true;
2298 	spin_unlock(&fs_info->trans_lock);
2299 
2300 	if (!committing)
2301 		mutex_lock(&fs_info->qgroup_ioctl_lock);
2302 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
2303 		goto out;
2304 
2305 	quota_root = fs_info->quota_root;
2306 	if (!quota_root) {
2307 		ret = -EINVAL;
2308 		goto out;
2309 	}
2310 
2311 	if (inherit) {
2312 		i_qgroups = (u64 *)(inherit + 1);
2313 		nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
2314 		       2 * inherit->num_excl_copies;
2315 		for (i = 0; i < nums; ++i) {
2316 			srcgroup = find_qgroup_rb(fs_info, *i_qgroups);
2317 
2318 			/*
2319 			 * Zero out invalid groups so we can ignore
2320 			 * them later.
2321 			 */
2322 			if (!srcgroup ||
2323 			    ((srcgroup->qgroupid >> 48) <= (objectid >> 48)))
2324 				*i_qgroups = 0ULL;
2325 
2326 			++i_qgroups;
2327 		}
2328 	}
2329 
2330 	/*
2331 	 * create a tracking group for the subvol itself
2332 	 */
2333 	ret = add_qgroup_item(trans, quota_root, objectid);
2334 	if (ret)
2335 		goto out;
2336 
2337 	/*
2338 	 * add qgroup to all inherited groups
2339 	 */
2340 	if (inherit) {
2341 		i_qgroups = (u64 *)(inherit + 1);
2342 		for (i = 0; i < inherit->num_qgroups; ++i, ++i_qgroups) {
2343 			if (*i_qgroups == 0)
2344 				continue;
2345 			ret = add_qgroup_relation_item(trans, objectid,
2346 						       *i_qgroups);
2347 			if (ret && ret != -EEXIST)
2348 				goto out;
2349 			ret = add_qgroup_relation_item(trans, *i_qgroups,
2350 						       objectid);
2351 			if (ret && ret != -EEXIST)
2352 				goto out;
2353 		}
2354 		ret = 0;
2355 	}
2356 
2357 
2358 	spin_lock(&fs_info->qgroup_lock);
2359 
2360 	dstgroup = add_qgroup_rb(fs_info, objectid);
2361 	if (IS_ERR(dstgroup)) {
2362 		ret = PTR_ERR(dstgroup);
2363 		goto unlock;
2364 	}
2365 
2366 	if (inherit && inherit->flags & BTRFS_QGROUP_INHERIT_SET_LIMITS) {
2367 		dstgroup->lim_flags = inherit->lim.flags;
2368 		dstgroup->max_rfer = inherit->lim.max_rfer;
2369 		dstgroup->max_excl = inherit->lim.max_excl;
2370 		dstgroup->rsv_rfer = inherit->lim.rsv_rfer;
2371 		dstgroup->rsv_excl = inherit->lim.rsv_excl;
2372 
2373 		qgroup_dirty(fs_info, dstgroup);
2374 	}
2375 
2376 	if (srcid) {
2377 		srcgroup = find_qgroup_rb(fs_info, srcid);
2378 		if (!srcgroup)
2379 			goto unlock;
2380 
2381 		/*
2382 		 * We call inherit after we clone the root in order to make sure
2383 		 * our counts don't go crazy, so at this point the only
2384 		 * difference between the two roots should be the root node.
2385 		 */
2386 		level_size = fs_info->nodesize;
2387 		dstgroup->rfer = srcgroup->rfer;
2388 		dstgroup->rfer_cmpr = srcgroup->rfer_cmpr;
2389 		dstgroup->excl = level_size;
2390 		dstgroup->excl_cmpr = level_size;
2391 		srcgroup->excl = level_size;
2392 		srcgroup->excl_cmpr = level_size;
2393 
2394 		/* inherit the limit info */
2395 		dstgroup->lim_flags = srcgroup->lim_flags;
2396 		dstgroup->max_rfer = srcgroup->max_rfer;
2397 		dstgroup->max_excl = srcgroup->max_excl;
2398 		dstgroup->rsv_rfer = srcgroup->rsv_rfer;
2399 		dstgroup->rsv_excl = srcgroup->rsv_excl;
2400 
2401 		qgroup_dirty(fs_info, dstgroup);
2402 		qgroup_dirty(fs_info, srcgroup);
2403 	}
2404 
2405 	if (!inherit)
2406 		goto unlock;
2407 
2408 	i_qgroups = (u64 *)(inherit + 1);
2409 	for (i = 0; i < inherit->num_qgroups; ++i) {
2410 		if (*i_qgroups) {
2411 			ret = add_relation_rb(fs_info, objectid, *i_qgroups);
2412 			if (ret)
2413 				goto unlock;
2414 		}
2415 		++i_qgroups;
2416 
2417 		/*
2418 		 * If we're doing a snapshot, and adding the snapshot to a new
2419 		 * qgroup, the numbers are guaranteed to be incorrect.
2420 		 */
2421 		if (srcid)
2422 			need_rescan = true;
2423 	}
2424 
2425 	for (i = 0; i <  inherit->num_ref_copies; ++i, i_qgroups += 2) {
2426 		struct btrfs_qgroup *src;
2427 		struct btrfs_qgroup *dst;
2428 
2429 		if (!i_qgroups[0] || !i_qgroups[1])
2430 			continue;
2431 
2432 		src = find_qgroup_rb(fs_info, i_qgroups[0]);
2433 		dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2434 
2435 		if (!src || !dst) {
2436 			ret = -EINVAL;
2437 			goto unlock;
2438 		}
2439 
2440 		dst->rfer = src->rfer - level_size;
2441 		dst->rfer_cmpr = src->rfer_cmpr - level_size;
2442 
2443 		/* Manually tweaking numbers certainly needs a rescan */
2444 		need_rescan = true;
2445 	}
2446 	for (i = 0; i <  inherit->num_excl_copies; ++i, i_qgroups += 2) {
2447 		struct btrfs_qgroup *src;
2448 		struct btrfs_qgroup *dst;
2449 
2450 		if (!i_qgroups[0] || !i_qgroups[1])
2451 			continue;
2452 
2453 		src = find_qgroup_rb(fs_info, i_qgroups[0]);
2454 		dst = find_qgroup_rb(fs_info, i_qgroups[1]);
2455 
2456 		if (!src || !dst) {
2457 			ret = -EINVAL;
2458 			goto unlock;
2459 		}
2460 
2461 		dst->excl = src->excl + level_size;
2462 		dst->excl_cmpr = src->excl_cmpr + level_size;
2463 		need_rescan = true;
2464 	}
2465 
2466 unlock:
2467 	spin_unlock(&fs_info->qgroup_lock);
2468 out:
2469 	if (!committing)
2470 		mutex_unlock(&fs_info->qgroup_ioctl_lock);
2471 	if (need_rescan)
2472 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2473 	return ret;
2474 }
2475 
2476 /*
2477  * Two limits to commit transaction in advance.
2478  *
2479  * For RATIO, it will be 1/RATIO of the remaining limit as threshold.
2480  * For SIZE, it will be in byte unit as threshold.
2481  */
2482 #define QGROUP_FREE_RATIO		32
2483 #define QGROUP_FREE_SIZE		SZ_32M
qgroup_check_limits(struct btrfs_fs_info * fs_info,const struct btrfs_qgroup * qg,u64 num_bytes)2484 static bool qgroup_check_limits(struct btrfs_fs_info *fs_info,
2485 				const struct btrfs_qgroup *qg, u64 num_bytes)
2486 {
2487 	u64 free;
2488 	u64 threshold;
2489 
2490 	if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
2491 	    qgroup_rsv_total(qg) + (s64)qg->rfer + num_bytes > qg->max_rfer)
2492 		return false;
2493 
2494 	if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
2495 	    qgroup_rsv_total(qg) + (s64)qg->excl + num_bytes > qg->max_excl)
2496 		return false;
2497 
2498 	/*
2499 	 * Even if we passed the check, it's better to check if reservation
2500 	 * for meta_pertrans is pushing us near limit.
2501 	 * If there is too much pertrans reservation or it's near the limit,
2502 	 * let's try commit transaction to free some, using transaction_kthread
2503 	 */
2504 	if ((qg->lim_flags & (BTRFS_QGROUP_LIMIT_MAX_RFER |
2505 			      BTRFS_QGROUP_LIMIT_MAX_EXCL))) {
2506 		if (qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) {
2507 			free = qg->max_excl - qgroup_rsv_total(qg) - qg->excl;
2508 			threshold = min_t(u64, qg->max_excl / QGROUP_FREE_RATIO,
2509 					  QGROUP_FREE_SIZE);
2510 		} else {
2511 			free = qg->max_rfer - qgroup_rsv_total(qg) - qg->rfer;
2512 			threshold = min_t(u64, qg->max_rfer / QGROUP_FREE_RATIO,
2513 					  QGROUP_FREE_SIZE);
2514 		}
2515 
2516 		/*
2517 		 * Use transaction_kthread to commit transaction, so we no
2518 		 * longer need to bother nested transaction nor lock context.
2519 		 */
2520 		if (free < threshold)
2521 			btrfs_commit_transaction_locksafe(fs_info);
2522 	}
2523 
2524 	return true;
2525 }
2526 
qgroup_reserve(struct btrfs_root * root,u64 num_bytes,bool enforce,enum btrfs_qgroup_rsv_type type)2527 static int qgroup_reserve(struct btrfs_root *root, u64 num_bytes, bool enforce,
2528 			  enum btrfs_qgroup_rsv_type type)
2529 {
2530 	struct btrfs_root *quota_root;
2531 	struct btrfs_qgroup *qgroup;
2532 	struct btrfs_fs_info *fs_info = root->fs_info;
2533 	u64 ref_root = root->root_key.objectid;
2534 	int ret = 0;
2535 	struct ulist_node *unode;
2536 	struct ulist_iterator uiter;
2537 
2538 	if (!is_fstree(ref_root))
2539 		return 0;
2540 
2541 	if (num_bytes == 0)
2542 		return 0;
2543 
2544 	if (test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags) &&
2545 	    capable(CAP_SYS_RESOURCE))
2546 		enforce = false;
2547 
2548 	spin_lock(&fs_info->qgroup_lock);
2549 	quota_root = fs_info->quota_root;
2550 	if (!quota_root)
2551 		goto out;
2552 
2553 	qgroup = find_qgroup_rb(fs_info, ref_root);
2554 	if (!qgroup)
2555 		goto out;
2556 
2557 	/*
2558 	 * in a first step, we check all affected qgroups if any limits would
2559 	 * be exceeded
2560 	 */
2561 	ulist_reinit(fs_info->qgroup_ulist);
2562 	ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
2563 			qgroup_to_aux(qgroup), GFP_ATOMIC);
2564 	if (ret < 0)
2565 		goto out;
2566 	ULIST_ITER_INIT(&uiter);
2567 	while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
2568 		struct btrfs_qgroup *qg;
2569 		struct btrfs_qgroup_list *glist;
2570 
2571 		qg = unode_aux_to_qgroup(unode);
2572 
2573 		if (enforce && !qgroup_check_limits(fs_info, qg, num_bytes)) {
2574 			ret = -EDQUOT;
2575 			goto out;
2576 		}
2577 
2578 		list_for_each_entry(glist, &qg->groups, next_group) {
2579 			ret = ulist_add(fs_info->qgroup_ulist,
2580 					glist->group->qgroupid,
2581 					qgroup_to_aux(glist->group), GFP_ATOMIC);
2582 			if (ret < 0)
2583 				goto out;
2584 		}
2585 	}
2586 	ret = 0;
2587 	/*
2588 	 * no limits exceeded, now record the reservation into all qgroups
2589 	 */
2590 	ULIST_ITER_INIT(&uiter);
2591 	while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
2592 		struct btrfs_qgroup *qg;
2593 
2594 		qg = unode_aux_to_qgroup(unode);
2595 
2596 		trace_qgroup_update_reserve(fs_info, qg, num_bytes, type);
2597 		qgroup_rsv_add(fs_info, qg, num_bytes, type);
2598 	}
2599 
2600 out:
2601 	spin_unlock(&fs_info->qgroup_lock);
2602 	return ret;
2603 }
2604 
2605 /*
2606  * Free @num_bytes of reserved space with @type for qgroup.  (Normally level 0
2607  * qgroup).
2608  *
2609  * Will handle all higher level qgroup too.
2610  *
2611  * NOTE: If @num_bytes is (u64)-1, this means to free all bytes of this qgroup.
2612  * This special case is only used for META_PERTRANS type.
2613  */
btrfs_qgroup_free_refroot(struct btrfs_fs_info * fs_info,u64 ref_root,u64 num_bytes,enum btrfs_qgroup_rsv_type type)2614 void btrfs_qgroup_free_refroot(struct btrfs_fs_info *fs_info,
2615 			       u64 ref_root, u64 num_bytes,
2616 			       enum btrfs_qgroup_rsv_type type)
2617 {
2618 	struct btrfs_root *quota_root;
2619 	struct btrfs_qgroup *qgroup;
2620 	struct ulist_node *unode;
2621 	struct ulist_iterator uiter;
2622 	int ret = 0;
2623 
2624 	if (!is_fstree(ref_root))
2625 		return;
2626 
2627 	if (num_bytes == 0)
2628 		return;
2629 
2630 	if (num_bytes == (u64)-1 && type != BTRFS_QGROUP_RSV_META_PERTRANS) {
2631 		WARN(1, "%s: Invalid type to free", __func__);
2632 		return;
2633 	}
2634 	spin_lock(&fs_info->qgroup_lock);
2635 
2636 	quota_root = fs_info->quota_root;
2637 	if (!quota_root)
2638 		goto out;
2639 
2640 	qgroup = find_qgroup_rb(fs_info, ref_root);
2641 	if (!qgroup)
2642 		goto out;
2643 
2644 	if (num_bytes == (u64)-1)
2645 		/*
2646 		 * We're freeing all pertrans rsv, get reserved value from
2647 		 * level 0 qgroup as real num_bytes to free.
2648 		 */
2649 		num_bytes = qgroup->rsv.values[type];
2650 
2651 	ulist_reinit(fs_info->qgroup_ulist);
2652 	ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
2653 			qgroup_to_aux(qgroup), GFP_ATOMIC);
2654 	if (ret < 0)
2655 		goto out;
2656 	ULIST_ITER_INIT(&uiter);
2657 	while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
2658 		struct btrfs_qgroup *qg;
2659 		struct btrfs_qgroup_list *glist;
2660 
2661 		qg = unode_aux_to_qgroup(unode);
2662 
2663 		trace_qgroup_update_reserve(fs_info, qg, -(s64)num_bytes, type);
2664 		qgroup_rsv_release(fs_info, qg, num_bytes, type);
2665 
2666 		list_for_each_entry(glist, &qg->groups, next_group) {
2667 			ret = ulist_add(fs_info->qgroup_ulist,
2668 					glist->group->qgroupid,
2669 					qgroup_to_aux(glist->group), GFP_ATOMIC);
2670 			if (ret < 0)
2671 				goto out;
2672 		}
2673 	}
2674 
2675 out:
2676 	spin_unlock(&fs_info->qgroup_lock);
2677 }
2678 
2679 /*
2680  * Check if the leaf is the last leaf. Which means all node pointers
2681  * are at their last position.
2682  */
is_last_leaf(struct btrfs_path * path)2683 static bool is_last_leaf(struct btrfs_path *path)
2684 {
2685 	int i;
2686 
2687 	for (i = 1; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
2688 		if (path->slots[i] != btrfs_header_nritems(path->nodes[i]) - 1)
2689 			return false;
2690 	}
2691 	return true;
2692 }
2693 
2694 /*
2695  * returns < 0 on error, 0 when more leafs are to be scanned.
2696  * returns 1 when done.
2697  */
qgroup_rescan_leaf(struct btrfs_trans_handle * trans,struct btrfs_path * path)2698 static int qgroup_rescan_leaf(struct btrfs_trans_handle *trans,
2699 			      struct btrfs_path *path)
2700 {
2701 	struct btrfs_fs_info *fs_info = trans->fs_info;
2702 	struct btrfs_key found;
2703 	struct extent_buffer *scratch_leaf = NULL;
2704 	struct ulist *roots = NULL;
2705 	u64 num_bytes;
2706 	bool done;
2707 	int slot;
2708 	int ret;
2709 
2710 	mutex_lock(&fs_info->qgroup_rescan_lock);
2711 	ret = btrfs_search_slot_for_read(fs_info->extent_root,
2712 					 &fs_info->qgroup_rescan_progress,
2713 					 path, 1, 0);
2714 
2715 	btrfs_debug(fs_info,
2716 		"current progress key (%llu %u %llu), search_slot ret %d",
2717 		fs_info->qgroup_rescan_progress.objectid,
2718 		fs_info->qgroup_rescan_progress.type,
2719 		fs_info->qgroup_rescan_progress.offset, ret);
2720 
2721 	if (ret) {
2722 		/*
2723 		 * The rescan is about to end, we will not be scanning any
2724 		 * further blocks. We cannot unset the RESCAN flag here, because
2725 		 * we want to commit the transaction if everything went well.
2726 		 * To make the live accounting work in this phase, we set our
2727 		 * scan progress pointer such that every real extent objectid
2728 		 * will be smaller.
2729 		 */
2730 		fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2731 		btrfs_release_path(path);
2732 		mutex_unlock(&fs_info->qgroup_rescan_lock);
2733 		return ret;
2734 	}
2735 	done = is_last_leaf(path);
2736 
2737 	btrfs_item_key_to_cpu(path->nodes[0], &found,
2738 			      btrfs_header_nritems(path->nodes[0]) - 1);
2739 	fs_info->qgroup_rescan_progress.objectid = found.objectid + 1;
2740 
2741 	scratch_leaf = btrfs_clone_extent_buffer(path->nodes[0]);
2742 	if (!scratch_leaf) {
2743 		ret = -ENOMEM;
2744 		mutex_unlock(&fs_info->qgroup_rescan_lock);
2745 		goto out;
2746 	}
2747 	extent_buffer_get(scratch_leaf);
2748 	btrfs_tree_read_lock(scratch_leaf);
2749 	btrfs_set_lock_blocking_rw(scratch_leaf, BTRFS_READ_LOCK);
2750 	slot = path->slots[0];
2751 	btrfs_release_path(path);
2752 	mutex_unlock(&fs_info->qgroup_rescan_lock);
2753 
2754 	for (; slot < btrfs_header_nritems(scratch_leaf); ++slot) {
2755 		btrfs_item_key_to_cpu(scratch_leaf, &found, slot);
2756 		if (found.type != BTRFS_EXTENT_ITEM_KEY &&
2757 		    found.type != BTRFS_METADATA_ITEM_KEY)
2758 			continue;
2759 		if (found.type == BTRFS_METADATA_ITEM_KEY)
2760 			num_bytes = fs_info->nodesize;
2761 		else
2762 			num_bytes = found.offset;
2763 
2764 		ret = btrfs_find_all_roots(NULL, fs_info, found.objectid, 0,
2765 					   &roots, false);
2766 		if (ret < 0)
2767 			goto out;
2768 		/* For rescan, just pass old_roots as NULL */
2769 		ret = btrfs_qgroup_account_extent(trans, found.objectid,
2770 						  num_bytes, NULL, roots);
2771 		if (ret < 0)
2772 			goto out;
2773 	}
2774 out:
2775 	if (scratch_leaf) {
2776 		btrfs_tree_read_unlock_blocking(scratch_leaf);
2777 		free_extent_buffer(scratch_leaf);
2778 	}
2779 
2780 	if (done && !ret) {
2781 		ret = 1;
2782 		fs_info->qgroup_rescan_progress.objectid = (u64)-1;
2783 	}
2784 	return ret;
2785 }
2786 
rescan_should_stop(struct btrfs_fs_info * fs_info)2787 static bool rescan_should_stop(struct btrfs_fs_info *fs_info)
2788 {
2789 	return btrfs_fs_closing(fs_info) ||
2790 		test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
2791 }
2792 
btrfs_qgroup_rescan_worker(struct btrfs_work * work)2793 static void btrfs_qgroup_rescan_worker(struct btrfs_work *work)
2794 {
2795 	struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info,
2796 						     qgroup_rescan_work);
2797 	struct btrfs_path *path;
2798 	struct btrfs_trans_handle *trans = NULL;
2799 	int err = -ENOMEM;
2800 	int ret = 0;
2801 	bool stopped = false;
2802 
2803 	path = btrfs_alloc_path();
2804 	if (!path)
2805 		goto out;
2806 	/*
2807 	 * Rescan should only search for commit root, and any later difference
2808 	 * should be recorded by qgroup
2809 	 */
2810 	path->search_commit_root = 1;
2811 	path->skip_locking = 1;
2812 
2813 	err = 0;
2814 	while (!err && !(stopped = rescan_should_stop(fs_info))) {
2815 		trans = btrfs_start_transaction(fs_info->fs_root, 0);
2816 		if (IS_ERR(trans)) {
2817 			err = PTR_ERR(trans);
2818 			break;
2819 		}
2820 		if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
2821 			err = -EINTR;
2822 		} else {
2823 			err = qgroup_rescan_leaf(trans, path);
2824 		}
2825 		if (err > 0)
2826 			btrfs_commit_transaction(trans);
2827 		else
2828 			btrfs_end_transaction(trans);
2829 	}
2830 
2831 out:
2832 	btrfs_free_path(path);
2833 
2834 	mutex_lock(&fs_info->qgroup_rescan_lock);
2835 	if (err > 0 &&
2836 	    fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT) {
2837 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2838 	} else if (err < 0) {
2839 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT;
2840 	}
2841 	mutex_unlock(&fs_info->qgroup_rescan_lock);
2842 
2843 	/*
2844 	 * only update status, since the previous part has already updated the
2845 	 * qgroup info.
2846 	 */
2847 	trans = btrfs_start_transaction(fs_info->quota_root, 1);
2848 	if (IS_ERR(trans)) {
2849 		err = PTR_ERR(trans);
2850 		trans = NULL;
2851 		btrfs_err(fs_info,
2852 			  "fail to start transaction for status update: %d",
2853 			  err);
2854 	}
2855 
2856 	mutex_lock(&fs_info->qgroup_rescan_lock);
2857 	if (!stopped)
2858 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2859 	if (trans) {
2860 		ret = update_qgroup_status_item(trans);
2861 		if (ret < 0) {
2862 			err = ret;
2863 			btrfs_err(fs_info, "fail to update qgroup status: %d",
2864 				  err);
2865 		}
2866 	}
2867 	fs_info->qgroup_rescan_running = false;
2868 	complete_all(&fs_info->qgroup_rescan_completion);
2869 	mutex_unlock(&fs_info->qgroup_rescan_lock);
2870 
2871 	if (!trans)
2872 		return;
2873 
2874 	btrfs_end_transaction(trans);
2875 
2876 	if (stopped) {
2877 		btrfs_info(fs_info, "qgroup scan paused");
2878 	} else if (err >= 0) {
2879 		btrfs_info(fs_info, "qgroup scan completed%s",
2880 			err > 0 ? " (inconsistency flag cleared)" : "");
2881 	} else {
2882 		btrfs_err(fs_info, "qgroup scan failed with %d", err);
2883 	}
2884 }
2885 
2886 /*
2887  * Checks that (a) no rescan is running and (b) quota is enabled. Allocates all
2888  * memory required for the rescan context.
2889  */
2890 static int
qgroup_rescan_init(struct btrfs_fs_info * fs_info,u64 progress_objectid,int init_flags)2891 qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid,
2892 		   int init_flags)
2893 {
2894 	int ret = 0;
2895 
2896 	if (!init_flags) {
2897 		/* we're resuming qgroup rescan at mount time */
2898 		if (!(fs_info->qgroup_flags &
2899 		      BTRFS_QGROUP_STATUS_FLAG_RESCAN)) {
2900 			btrfs_warn(fs_info,
2901 			"qgroup rescan init failed, qgroup rescan is not queued");
2902 			ret = -EINVAL;
2903 		} else if (!(fs_info->qgroup_flags &
2904 			     BTRFS_QGROUP_STATUS_FLAG_ON)) {
2905 			btrfs_warn(fs_info,
2906 			"qgroup rescan init failed, qgroup is not enabled");
2907 			ret = -EINVAL;
2908 		}
2909 
2910 		if (ret)
2911 			return ret;
2912 	}
2913 
2914 	mutex_lock(&fs_info->qgroup_rescan_lock);
2915 	spin_lock(&fs_info->qgroup_lock);
2916 
2917 	if (init_flags) {
2918 		if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2919 			btrfs_warn(fs_info,
2920 				   "qgroup rescan is already in progress");
2921 			ret = -EINPROGRESS;
2922 		} else if (!(fs_info->qgroup_flags &
2923 			     BTRFS_QGROUP_STATUS_FLAG_ON)) {
2924 			btrfs_warn(fs_info,
2925 			"qgroup rescan init failed, qgroup is not enabled");
2926 			ret = -EINVAL;
2927 		}
2928 
2929 		if (ret) {
2930 			spin_unlock(&fs_info->qgroup_lock);
2931 			mutex_unlock(&fs_info->qgroup_rescan_lock);
2932 			return ret;
2933 		}
2934 		fs_info->qgroup_flags |= BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2935 	}
2936 
2937 	memset(&fs_info->qgroup_rescan_progress, 0,
2938 		sizeof(fs_info->qgroup_rescan_progress));
2939 	fs_info->qgroup_rescan_progress.objectid = progress_objectid;
2940 	init_completion(&fs_info->qgroup_rescan_completion);
2941 
2942 	spin_unlock(&fs_info->qgroup_lock);
2943 	mutex_unlock(&fs_info->qgroup_rescan_lock);
2944 
2945 	memset(&fs_info->qgroup_rescan_work, 0,
2946 	       sizeof(fs_info->qgroup_rescan_work));
2947 	btrfs_init_work(&fs_info->qgroup_rescan_work,
2948 			btrfs_qgroup_rescan_helper,
2949 			btrfs_qgroup_rescan_worker, NULL, NULL);
2950 	return 0;
2951 }
2952 
2953 static void
qgroup_rescan_zero_tracking(struct btrfs_fs_info * fs_info)2954 qgroup_rescan_zero_tracking(struct btrfs_fs_info *fs_info)
2955 {
2956 	struct rb_node *n;
2957 	struct btrfs_qgroup *qgroup;
2958 
2959 	spin_lock(&fs_info->qgroup_lock);
2960 	/* clear all current qgroup tracking information */
2961 	for (n = rb_first(&fs_info->qgroup_tree); n; n = rb_next(n)) {
2962 		qgroup = rb_entry(n, struct btrfs_qgroup, node);
2963 		qgroup->rfer = 0;
2964 		qgroup->rfer_cmpr = 0;
2965 		qgroup->excl = 0;
2966 		qgroup->excl_cmpr = 0;
2967 		qgroup_dirty(fs_info, qgroup);
2968 	}
2969 	spin_unlock(&fs_info->qgroup_lock);
2970 }
2971 
2972 int
btrfs_qgroup_rescan(struct btrfs_fs_info * fs_info)2973 btrfs_qgroup_rescan(struct btrfs_fs_info *fs_info)
2974 {
2975 	int ret = 0;
2976 	struct btrfs_trans_handle *trans;
2977 
2978 	ret = qgroup_rescan_init(fs_info, 0, 1);
2979 	if (ret)
2980 		return ret;
2981 
2982 	/*
2983 	 * We have set the rescan_progress to 0, which means no more
2984 	 * delayed refs will be accounted by btrfs_qgroup_account_ref.
2985 	 * However, btrfs_qgroup_account_ref may be right after its call
2986 	 * to btrfs_find_all_roots, in which case it would still do the
2987 	 * accounting.
2988 	 * To solve this, we're committing the transaction, which will
2989 	 * ensure we run all delayed refs and only after that, we are
2990 	 * going to clear all tracking information for a clean start.
2991 	 */
2992 
2993 	trans = btrfs_join_transaction(fs_info->fs_root);
2994 	if (IS_ERR(trans)) {
2995 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
2996 		return PTR_ERR(trans);
2997 	}
2998 	ret = btrfs_commit_transaction(trans);
2999 	if (ret) {
3000 		fs_info->qgroup_flags &= ~BTRFS_QGROUP_STATUS_FLAG_RESCAN;
3001 		return ret;
3002 	}
3003 
3004 	qgroup_rescan_zero_tracking(fs_info);
3005 
3006 	mutex_lock(&fs_info->qgroup_rescan_lock);
3007 	fs_info->qgroup_rescan_running = true;
3008 	btrfs_queue_work(fs_info->qgroup_rescan_workers,
3009 			 &fs_info->qgroup_rescan_work);
3010 	mutex_unlock(&fs_info->qgroup_rescan_lock);
3011 
3012 	return 0;
3013 }
3014 
btrfs_qgroup_wait_for_completion(struct btrfs_fs_info * fs_info,bool interruptible)3015 int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
3016 				     bool interruptible)
3017 {
3018 	int running;
3019 	int ret = 0;
3020 
3021 	mutex_lock(&fs_info->qgroup_rescan_lock);
3022 	spin_lock(&fs_info->qgroup_lock);
3023 	running = fs_info->qgroup_rescan_running;
3024 	spin_unlock(&fs_info->qgroup_lock);
3025 	mutex_unlock(&fs_info->qgroup_rescan_lock);
3026 
3027 	if (!running)
3028 		return 0;
3029 
3030 	if (interruptible)
3031 		ret = wait_for_completion_interruptible(
3032 					&fs_info->qgroup_rescan_completion);
3033 	else
3034 		wait_for_completion(&fs_info->qgroup_rescan_completion);
3035 
3036 	return ret;
3037 }
3038 
3039 /*
3040  * this is only called from open_ctree where we're still single threaded, thus
3041  * locking is omitted here.
3042  */
3043 void
btrfs_qgroup_rescan_resume(struct btrfs_fs_info * fs_info)3044 btrfs_qgroup_rescan_resume(struct btrfs_fs_info *fs_info)
3045 {
3046 	if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
3047 		mutex_lock(&fs_info->qgroup_rescan_lock);
3048 		fs_info->qgroup_rescan_running = true;
3049 		btrfs_queue_work(fs_info->qgroup_rescan_workers,
3050 				 &fs_info->qgroup_rescan_work);
3051 		mutex_unlock(&fs_info->qgroup_rescan_lock);
3052 	}
3053 }
3054 
3055 /*
3056  * Reserve qgroup space for range [start, start + len).
3057  *
3058  * This function will either reserve space from related qgroups or doing
3059  * nothing if the range is already reserved.
3060  *
3061  * Return 0 for successful reserve
3062  * Return <0 for error (including -EQUOT)
3063  *
3064  * NOTE: this function may sleep for memory allocation.
3065  *       if btrfs_qgroup_reserve_data() is called multiple times with
3066  *       same @reserved, caller must ensure when error happens it's OK
3067  *       to free *ALL* reserved space.
3068  */
btrfs_qgroup_reserve_data(struct inode * inode,struct extent_changeset ** reserved_ret,u64 start,u64 len)3069 int btrfs_qgroup_reserve_data(struct inode *inode,
3070 			struct extent_changeset **reserved_ret, u64 start,
3071 			u64 len)
3072 {
3073 	struct btrfs_root *root = BTRFS_I(inode)->root;
3074 	struct ulist_node *unode;
3075 	struct ulist_iterator uiter;
3076 	struct extent_changeset *reserved;
3077 	u64 orig_reserved;
3078 	u64 to_reserve;
3079 	int ret;
3080 
3081 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags) ||
3082 	    !is_fstree(root->objectid) || len == 0)
3083 		return 0;
3084 
3085 	/* @reserved parameter is mandatory for qgroup */
3086 	if (WARN_ON(!reserved_ret))
3087 		return -EINVAL;
3088 	if (!*reserved_ret) {
3089 		*reserved_ret = extent_changeset_alloc();
3090 		if (!*reserved_ret)
3091 			return -ENOMEM;
3092 	}
3093 	reserved = *reserved_ret;
3094 	/* Record already reserved space */
3095 	orig_reserved = reserved->bytes_changed;
3096 	ret = set_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
3097 			start + len -1, EXTENT_QGROUP_RESERVED, reserved);
3098 
3099 	/* Newly reserved space */
3100 	to_reserve = reserved->bytes_changed - orig_reserved;
3101 	trace_btrfs_qgroup_reserve_data(inode, start, len,
3102 					to_reserve, QGROUP_RESERVE);
3103 	if (ret < 0)
3104 		goto cleanup;
3105 	ret = qgroup_reserve(root, to_reserve, true, BTRFS_QGROUP_RSV_DATA);
3106 	if (ret < 0)
3107 		goto cleanup;
3108 
3109 	return ret;
3110 
3111 cleanup:
3112 	/* cleanup *ALL* already reserved ranges */
3113 	ULIST_ITER_INIT(&uiter);
3114 	while ((unode = ulist_next(&reserved->range_changed, &uiter)))
3115 		clear_extent_bit(&BTRFS_I(inode)->io_tree, unode->val,
3116 				 unode->aux, EXTENT_QGROUP_RESERVED, 0, 0, NULL);
3117 	/* Also free data bytes of already reserved one */
3118 	btrfs_qgroup_free_refroot(root->fs_info, root->root_key.objectid,
3119 				  orig_reserved, BTRFS_QGROUP_RSV_DATA);
3120 	extent_changeset_release(reserved);
3121 	return ret;
3122 }
3123 
3124 /* Free ranges specified by @reserved, normally in error path */
qgroup_free_reserved_data(struct inode * inode,struct extent_changeset * reserved,u64 start,u64 len)3125 static int qgroup_free_reserved_data(struct inode *inode,
3126 			struct extent_changeset *reserved, u64 start, u64 len)
3127 {
3128 	struct btrfs_root *root = BTRFS_I(inode)->root;
3129 	struct ulist_node *unode;
3130 	struct ulist_iterator uiter;
3131 	struct extent_changeset changeset;
3132 	int freed = 0;
3133 	int ret;
3134 
3135 	extent_changeset_init(&changeset);
3136 	len = round_up(start + len, root->fs_info->sectorsize);
3137 	start = round_down(start, root->fs_info->sectorsize);
3138 
3139 	ULIST_ITER_INIT(&uiter);
3140 	while ((unode = ulist_next(&reserved->range_changed, &uiter))) {
3141 		u64 range_start = unode->val;
3142 		/* unode->aux is the inclusive end */
3143 		u64 range_len = unode->aux - range_start + 1;
3144 		u64 free_start;
3145 		u64 free_len;
3146 
3147 		extent_changeset_release(&changeset);
3148 
3149 		/* Only free range in range [start, start + len) */
3150 		if (range_start >= start + len ||
3151 		    range_start + range_len <= start)
3152 			continue;
3153 		free_start = max(range_start, start);
3154 		free_len = min(start + len, range_start + range_len) -
3155 			   free_start;
3156 		/*
3157 		 * TODO: To also modify reserved->ranges_reserved to reflect
3158 		 * the modification.
3159 		 *
3160 		 * However as long as we free qgroup reserved according to
3161 		 * EXTENT_QGROUP_RESERVED, we won't double free.
3162 		 * So not need to rush.
3163 		 */
3164 		ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree,
3165 				free_start, free_start + free_len - 1,
3166 				EXTENT_QGROUP_RESERVED, &changeset);
3167 		if (ret < 0)
3168 			goto out;
3169 		freed += changeset.bytes_changed;
3170 	}
3171 	btrfs_qgroup_free_refroot(root->fs_info, root->objectid, freed,
3172 				  BTRFS_QGROUP_RSV_DATA);
3173 	ret = freed;
3174 out:
3175 	extent_changeset_release(&changeset);
3176 	return ret;
3177 }
3178 
__btrfs_qgroup_release_data(struct inode * inode,struct extent_changeset * reserved,u64 start,u64 len,int free)3179 static int __btrfs_qgroup_release_data(struct inode *inode,
3180 			struct extent_changeset *reserved, u64 start, u64 len,
3181 			int free)
3182 {
3183 	struct extent_changeset changeset;
3184 	int trace_op = QGROUP_RELEASE;
3185 	int ret;
3186 
3187 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED,
3188 		      &BTRFS_I(inode)->root->fs_info->flags))
3189 		return 0;
3190 
3191 	/* In release case, we shouldn't have @reserved */
3192 	WARN_ON(!free && reserved);
3193 	if (free && reserved)
3194 		return qgroup_free_reserved_data(inode, reserved, start, len);
3195 	extent_changeset_init(&changeset);
3196 	ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
3197 			start + len -1, EXTENT_QGROUP_RESERVED, &changeset);
3198 	if (ret < 0)
3199 		goto out;
3200 
3201 	if (free)
3202 		trace_op = QGROUP_FREE;
3203 	trace_btrfs_qgroup_release_data(inode, start, len,
3204 					changeset.bytes_changed, trace_op);
3205 	if (free)
3206 		btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3207 				BTRFS_I(inode)->root->objectid,
3208 				changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
3209 	ret = changeset.bytes_changed;
3210 out:
3211 	extent_changeset_release(&changeset);
3212 	return ret;
3213 }
3214 
3215 /*
3216  * Free a reserved space range from io_tree and related qgroups
3217  *
3218  * Should be called when a range of pages get invalidated before reaching disk.
3219  * Or for error cleanup case.
3220  * if @reserved is given, only reserved range in [@start, @start + @len) will
3221  * be freed.
3222  *
3223  * For data written to disk, use btrfs_qgroup_release_data().
3224  *
3225  * NOTE: This function may sleep for memory allocation.
3226  */
btrfs_qgroup_free_data(struct inode * inode,struct extent_changeset * reserved,u64 start,u64 len)3227 int btrfs_qgroup_free_data(struct inode *inode,
3228 			struct extent_changeset *reserved, u64 start, u64 len)
3229 {
3230 	return __btrfs_qgroup_release_data(inode, reserved, start, len, 1);
3231 }
3232 
3233 /*
3234  * Release a reserved space range from io_tree only.
3235  *
3236  * Should be called when a range of pages get written to disk and corresponding
3237  * FILE_EXTENT is inserted into corresponding root.
3238  *
3239  * Since new qgroup accounting framework will only update qgroup numbers at
3240  * commit_transaction() time, its reserved space shouldn't be freed from
3241  * related qgroups.
3242  *
3243  * But we should release the range from io_tree, to allow further write to be
3244  * COWed.
3245  *
3246  * NOTE: This function may sleep for memory allocation.
3247  */
btrfs_qgroup_release_data(struct inode * inode,u64 start,u64 len)3248 int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len)
3249 {
3250 	return __btrfs_qgroup_release_data(inode, NULL, start, len, 0);
3251 }
3252 
add_root_meta_rsv(struct btrfs_root * root,int num_bytes,enum btrfs_qgroup_rsv_type type)3253 static void add_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3254 			      enum btrfs_qgroup_rsv_type type)
3255 {
3256 	if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3257 	    type != BTRFS_QGROUP_RSV_META_PERTRANS)
3258 		return;
3259 	if (num_bytes == 0)
3260 		return;
3261 
3262 	spin_lock(&root->qgroup_meta_rsv_lock);
3263 	if (type == BTRFS_QGROUP_RSV_META_PREALLOC)
3264 		root->qgroup_meta_rsv_prealloc += num_bytes;
3265 	else
3266 		root->qgroup_meta_rsv_pertrans += num_bytes;
3267 	spin_unlock(&root->qgroup_meta_rsv_lock);
3268 }
3269 
sub_root_meta_rsv(struct btrfs_root * root,int num_bytes,enum btrfs_qgroup_rsv_type type)3270 static int sub_root_meta_rsv(struct btrfs_root *root, int num_bytes,
3271 			     enum btrfs_qgroup_rsv_type type)
3272 {
3273 	if (type != BTRFS_QGROUP_RSV_META_PREALLOC &&
3274 	    type != BTRFS_QGROUP_RSV_META_PERTRANS)
3275 		return 0;
3276 	if (num_bytes == 0)
3277 		return 0;
3278 
3279 	spin_lock(&root->qgroup_meta_rsv_lock);
3280 	if (type == BTRFS_QGROUP_RSV_META_PREALLOC) {
3281 		num_bytes = min_t(u64, root->qgroup_meta_rsv_prealloc,
3282 				  num_bytes);
3283 		root->qgroup_meta_rsv_prealloc -= num_bytes;
3284 	} else {
3285 		num_bytes = min_t(u64, root->qgroup_meta_rsv_pertrans,
3286 				  num_bytes);
3287 		root->qgroup_meta_rsv_pertrans -= num_bytes;
3288 	}
3289 	spin_unlock(&root->qgroup_meta_rsv_lock);
3290 	return num_bytes;
3291 }
3292 
__btrfs_qgroup_reserve_meta(struct btrfs_root * root,int num_bytes,enum btrfs_qgroup_rsv_type type,bool enforce)3293 int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes,
3294 				enum btrfs_qgroup_rsv_type type, bool enforce)
3295 {
3296 	struct btrfs_fs_info *fs_info = root->fs_info;
3297 	int ret;
3298 
3299 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3300 	    !is_fstree(root->objectid) || num_bytes == 0)
3301 		return 0;
3302 
3303 	BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
3304 	trace_qgroup_meta_reserve(root, (s64)num_bytes, type);
3305 	ret = qgroup_reserve(root, num_bytes, enforce, type);
3306 	if (ret < 0)
3307 		return ret;
3308 	/*
3309 	 * Record what we have reserved into root.
3310 	 *
3311 	 * To avoid quota disabled->enabled underflow.
3312 	 * In that case, we may try to free space we haven't reserved
3313 	 * (since quota was disabled), so record what we reserved into root.
3314 	 * And ensure later release won't underflow this number.
3315 	 */
3316 	add_root_meta_rsv(root, num_bytes, type);
3317 	return ret;
3318 }
3319 
btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root * root)3320 void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root)
3321 {
3322 	struct btrfs_fs_info *fs_info = root->fs_info;
3323 
3324 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3325 	    !is_fstree(root->objectid))
3326 		return;
3327 
3328 	/* TODO: Update trace point to handle such free */
3329 	trace_qgroup_meta_free_all_pertrans(root);
3330 	/* Special value -1 means to free all reserved space */
3331 	btrfs_qgroup_free_refroot(fs_info, root->objectid, (u64)-1,
3332 				  BTRFS_QGROUP_RSV_META_PERTRANS);
3333 }
3334 
__btrfs_qgroup_free_meta(struct btrfs_root * root,int num_bytes,enum btrfs_qgroup_rsv_type type)3335 void __btrfs_qgroup_free_meta(struct btrfs_root *root, int num_bytes,
3336 			      enum btrfs_qgroup_rsv_type type)
3337 {
3338 	struct btrfs_fs_info *fs_info = root->fs_info;
3339 
3340 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3341 	    !is_fstree(root->objectid))
3342 		return;
3343 
3344 	/*
3345 	 * reservation for META_PREALLOC can happen before quota is enabled,
3346 	 * which can lead to underflow.
3347 	 * Here ensure we will only free what we really have reserved.
3348 	 */
3349 	num_bytes = sub_root_meta_rsv(root, num_bytes, type);
3350 	BUG_ON(num_bytes != round_down(num_bytes, fs_info->nodesize));
3351 	trace_qgroup_meta_reserve(root, -(s64)num_bytes, type);
3352 	btrfs_qgroup_free_refroot(fs_info, root->objectid, num_bytes, type);
3353 }
3354 
qgroup_convert_meta(struct btrfs_fs_info * fs_info,u64 ref_root,int num_bytes)3355 static void qgroup_convert_meta(struct btrfs_fs_info *fs_info, u64 ref_root,
3356 				int num_bytes)
3357 {
3358 	struct btrfs_root *quota_root = fs_info->quota_root;
3359 	struct btrfs_qgroup *qgroup;
3360 	struct ulist_node *unode;
3361 	struct ulist_iterator uiter;
3362 	int ret = 0;
3363 
3364 	if (num_bytes == 0)
3365 		return;
3366 	if (!quota_root)
3367 		return;
3368 
3369 	spin_lock(&fs_info->qgroup_lock);
3370 	qgroup = find_qgroup_rb(fs_info, ref_root);
3371 	if (!qgroup)
3372 		goto out;
3373 	ulist_reinit(fs_info->qgroup_ulist);
3374 	ret = ulist_add(fs_info->qgroup_ulist, qgroup->qgroupid,
3375 		       qgroup_to_aux(qgroup), GFP_ATOMIC);
3376 	if (ret < 0)
3377 		goto out;
3378 	ULIST_ITER_INIT(&uiter);
3379 	while ((unode = ulist_next(fs_info->qgroup_ulist, &uiter))) {
3380 		struct btrfs_qgroup *qg;
3381 		struct btrfs_qgroup_list *glist;
3382 
3383 		qg = unode_aux_to_qgroup(unode);
3384 
3385 		qgroup_rsv_release(fs_info, qg, num_bytes,
3386 				BTRFS_QGROUP_RSV_META_PREALLOC);
3387 		qgroup_rsv_add(fs_info, qg, num_bytes,
3388 				BTRFS_QGROUP_RSV_META_PERTRANS);
3389 		list_for_each_entry(glist, &qg->groups, next_group) {
3390 			ret = ulist_add(fs_info->qgroup_ulist,
3391 					glist->group->qgroupid,
3392 					qgroup_to_aux(glist->group), GFP_ATOMIC);
3393 			if (ret < 0)
3394 				goto out;
3395 		}
3396 	}
3397 out:
3398 	spin_unlock(&fs_info->qgroup_lock);
3399 }
3400 
btrfs_qgroup_convert_reserved_meta(struct btrfs_root * root,int num_bytes)3401 void btrfs_qgroup_convert_reserved_meta(struct btrfs_root *root, int num_bytes)
3402 {
3403 	struct btrfs_fs_info *fs_info = root->fs_info;
3404 
3405 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) ||
3406 	    !is_fstree(root->objectid))
3407 		return;
3408 	/* Same as btrfs_qgroup_free_meta_prealloc() */
3409 	num_bytes = sub_root_meta_rsv(root, num_bytes,
3410 				      BTRFS_QGROUP_RSV_META_PREALLOC);
3411 	trace_qgroup_meta_convert(root, num_bytes);
3412 	qgroup_convert_meta(fs_info, root->objectid, num_bytes);
3413 }
3414 
3415 /*
3416  * Check qgroup reserved space leaking, normally at destroy inode
3417  * time
3418  */
btrfs_qgroup_check_reserved_leak(struct inode * inode)3419 void btrfs_qgroup_check_reserved_leak(struct inode *inode)
3420 {
3421 	struct extent_changeset changeset;
3422 	struct ulist_node *unode;
3423 	struct ulist_iterator iter;
3424 	int ret;
3425 
3426 	extent_changeset_init(&changeset);
3427 	ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
3428 			EXTENT_QGROUP_RESERVED, &changeset);
3429 
3430 	WARN_ON(ret < 0);
3431 	if (WARN_ON(changeset.bytes_changed)) {
3432 		ULIST_ITER_INIT(&iter);
3433 		while ((unode = ulist_next(&changeset.range_changed, &iter))) {
3434 			btrfs_warn(BTRFS_I(inode)->root->fs_info,
3435 				"leaking qgroup reserved space, ino: %lu, start: %llu, end: %llu",
3436 				inode->i_ino, unode->val, unode->aux);
3437 		}
3438 		btrfs_qgroup_free_refroot(BTRFS_I(inode)->root->fs_info,
3439 				BTRFS_I(inode)->root->objectid,
3440 				changeset.bytes_changed, BTRFS_QGROUP_RSV_DATA);
3441 
3442 	}
3443 	extent_changeset_release(&changeset);
3444 }
3445