xref: /openbmc/linux/fs/quota/quota_tree.c (revision 332db090)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *	vfsv0 quota IO operations on file
4  */
5 
6 #include <linux/errno.h>
7 #include <linux/fs.h>
8 #include <linux/mount.h>
9 #include <linux/dqblk_v2.h>
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/quotaops.h>
15 
16 #include <asm/byteorder.h>
17 
18 #include "quota_tree.h"
19 
20 MODULE_AUTHOR("Jan Kara");
21 MODULE_DESCRIPTION("Quota trie support");
22 MODULE_LICENSE("GPL");
23 
24 #define __QUOTA_QT_PARANOIA
25 
26 static int __get_index(struct qtree_mem_dqinfo *info, qid_t id, int depth)
27 {
28 	unsigned int epb = info->dqi_usable_bs >> 2;
29 
30 	depth = info->dqi_qtree_depth - depth - 1;
31 	while (depth--)
32 		id /= epb;
33 	return id % epb;
34 }
35 
36 static int get_index(struct qtree_mem_dqinfo *info, struct kqid qid, int depth)
37 {
38 	qid_t id = from_kqid(&init_user_ns, qid);
39 
40 	return __get_index(info, id, depth);
41 }
42 
43 /* Number of entries in one blocks */
44 static int qtree_dqstr_in_blk(struct qtree_mem_dqinfo *info)
45 {
46 	return (info->dqi_usable_bs - sizeof(struct qt_disk_dqdbheader))
47 	       / info->dqi_entry_size;
48 }
49 
50 static ssize_t read_blk(struct qtree_mem_dqinfo *info, uint blk, char *buf)
51 {
52 	struct super_block *sb = info->dqi_sb;
53 
54 	memset(buf, 0, info->dqi_usable_bs);
55 	return sb->s_op->quota_read(sb, info->dqi_type, buf,
56 	       info->dqi_usable_bs, (loff_t)blk << info->dqi_blocksize_bits);
57 }
58 
59 static ssize_t write_blk(struct qtree_mem_dqinfo *info, uint blk, char *buf)
60 {
61 	struct super_block *sb = info->dqi_sb;
62 	ssize_t ret;
63 
64 	ret = sb->s_op->quota_write(sb, info->dqi_type, buf,
65 	       info->dqi_usable_bs, (loff_t)blk << info->dqi_blocksize_bits);
66 	if (ret != info->dqi_usable_bs) {
67 		quota_error(sb, "dquota write failed");
68 		if (ret >= 0)
69 			ret = -EIO;
70 	}
71 	return ret;
72 }
73 
74 /* Remove empty block from list and return it */
75 static int get_free_dqblk(struct qtree_mem_dqinfo *info)
76 {
77 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
78 	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
79 	int ret, blk;
80 
81 	if (!buf)
82 		return -ENOMEM;
83 	if (info->dqi_free_blk) {
84 		blk = info->dqi_free_blk;
85 		ret = read_blk(info, blk, buf);
86 		if (ret < 0)
87 			goto out_buf;
88 		info->dqi_free_blk = le32_to_cpu(dh->dqdh_next_free);
89 	}
90 	else {
91 		memset(buf, 0, info->dqi_usable_bs);
92 		/* Assure block allocation... */
93 		ret = write_blk(info, info->dqi_blocks, buf);
94 		if (ret < 0)
95 			goto out_buf;
96 		blk = info->dqi_blocks++;
97 	}
98 	mark_info_dirty(info->dqi_sb, info->dqi_type);
99 	ret = blk;
100 out_buf:
101 	kfree(buf);
102 	return ret;
103 }
104 
105 /* Insert empty block to the list */
106 static int put_free_dqblk(struct qtree_mem_dqinfo *info, char *buf, uint blk)
107 {
108 	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
109 	int err;
110 
111 	dh->dqdh_next_free = cpu_to_le32(info->dqi_free_blk);
112 	dh->dqdh_prev_free = cpu_to_le32(0);
113 	dh->dqdh_entries = cpu_to_le16(0);
114 	err = write_blk(info, blk, buf);
115 	if (err < 0)
116 		return err;
117 	info->dqi_free_blk = blk;
118 	mark_info_dirty(info->dqi_sb, info->dqi_type);
119 	return 0;
120 }
121 
122 /* Remove given block from the list of blocks with free entries */
123 static int remove_free_dqentry(struct qtree_mem_dqinfo *info, char *buf,
124 			       uint blk)
125 {
126 	char *tmpbuf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
127 	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
128 	uint nextblk = le32_to_cpu(dh->dqdh_next_free);
129 	uint prevblk = le32_to_cpu(dh->dqdh_prev_free);
130 	int err;
131 
132 	if (!tmpbuf)
133 		return -ENOMEM;
134 	if (nextblk) {
135 		err = read_blk(info, nextblk, tmpbuf);
136 		if (err < 0)
137 			goto out_buf;
138 		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_prev_free =
139 							dh->dqdh_prev_free;
140 		err = write_blk(info, nextblk, tmpbuf);
141 		if (err < 0)
142 			goto out_buf;
143 	}
144 	if (prevblk) {
145 		err = read_blk(info, prevblk, tmpbuf);
146 		if (err < 0)
147 			goto out_buf;
148 		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_next_free =
149 							dh->dqdh_next_free;
150 		err = write_blk(info, prevblk, tmpbuf);
151 		if (err < 0)
152 			goto out_buf;
153 	} else {
154 		info->dqi_free_entry = nextblk;
155 		mark_info_dirty(info->dqi_sb, info->dqi_type);
156 	}
157 	kfree(tmpbuf);
158 	dh->dqdh_next_free = dh->dqdh_prev_free = cpu_to_le32(0);
159 	/* No matter whether write succeeds block is out of list */
160 	if (write_blk(info, blk, buf) < 0)
161 		quota_error(info->dqi_sb, "Can't write block (%u) "
162 			    "with free entries", blk);
163 	return 0;
164 out_buf:
165 	kfree(tmpbuf);
166 	return err;
167 }
168 
169 /* Insert given block to the beginning of list with free entries */
170 static int insert_free_dqentry(struct qtree_mem_dqinfo *info, char *buf,
171 			       uint blk)
172 {
173 	char *tmpbuf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
174 	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
175 	int err;
176 
177 	if (!tmpbuf)
178 		return -ENOMEM;
179 	dh->dqdh_next_free = cpu_to_le32(info->dqi_free_entry);
180 	dh->dqdh_prev_free = cpu_to_le32(0);
181 	err = write_blk(info, blk, buf);
182 	if (err < 0)
183 		goto out_buf;
184 	if (info->dqi_free_entry) {
185 		err = read_blk(info, info->dqi_free_entry, tmpbuf);
186 		if (err < 0)
187 			goto out_buf;
188 		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_prev_free =
189 							cpu_to_le32(blk);
190 		err = write_blk(info, info->dqi_free_entry, tmpbuf);
191 		if (err < 0)
192 			goto out_buf;
193 	}
194 	kfree(tmpbuf);
195 	info->dqi_free_entry = blk;
196 	mark_info_dirty(info->dqi_sb, info->dqi_type);
197 	return 0;
198 out_buf:
199 	kfree(tmpbuf);
200 	return err;
201 }
202 
203 /* Is the entry in the block free? */
204 int qtree_entry_unused(struct qtree_mem_dqinfo *info, char *disk)
205 {
206 	int i;
207 
208 	for (i = 0; i < info->dqi_entry_size; i++)
209 		if (disk[i])
210 			return 0;
211 	return 1;
212 }
213 EXPORT_SYMBOL(qtree_entry_unused);
214 
215 /* Find space for dquot */
216 static uint find_free_dqentry(struct qtree_mem_dqinfo *info,
217 			      struct dquot *dquot, int *err)
218 {
219 	uint blk, i;
220 	struct qt_disk_dqdbheader *dh;
221 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
222 	char *ddquot;
223 
224 	*err = 0;
225 	if (!buf) {
226 		*err = -ENOMEM;
227 		return 0;
228 	}
229 	dh = (struct qt_disk_dqdbheader *)buf;
230 	if (info->dqi_free_entry) {
231 		blk = info->dqi_free_entry;
232 		*err = read_blk(info, blk, buf);
233 		if (*err < 0)
234 			goto out_buf;
235 	} else {
236 		blk = get_free_dqblk(info);
237 		if ((int)blk < 0) {
238 			*err = blk;
239 			kfree(buf);
240 			return 0;
241 		}
242 		memset(buf, 0, info->dqi_usable_bs);
243 		/* This is enough as the block is already zeroed and the entry
244 		 * list is empty... */
245 		info->dqi_free_entry = blk;
246 		mark_info_dirty(dquot->dq_sb, dquot->dq_id.type);
247 	}
248 	/* Block will be full? */
249 	if (le16_to_cpu(dh->dqdh_entries) + 1 >= qtree_dqstr_in_blk(info)) {
250 		*err = remove_free_dqentry(info, buf, blk);
251 		if (*err < 0) {
252 			quota_error(dquot->dq_sb, "Can't remove block (%u) "
253 				    "from entry free list", blk);
254 			goto out_buf;
255 		}
256 	}
257 	le16_add_cpu(&dh->dqdh_entries, 1);
258 	/* Find free structure in block */
259 	ddquot = buf + sizeof(struct qt_disk_dqdbheader);
260 	for (i = 0; i < qtree_dqstr_in_blk(info); i++) {
261 		if (qtree_entry_unused(info, ddquot))
262 			break;
263 		ddquot += info->dqi_entry_size;
264 	}
265 #ifdef __QUOTA_QT_PARANOIA
266 	if (i == qtree_dqstr_in_blk(info)) {
267 		quota_error(dquot->dq_sb, "Data block full but it shouldn't");
268 		*err = -EIO;
269 		goto out_buf;
270 	}
271 #endif
272 	*err = write_blk(info, blk, buf);
273 	if (*err < 0) {
274 		quota_error(dquot->dq_sb, "Can't write quota data block %u",
275 			    blk);
276 		goto out_buf;
277 	}
278 	dquot->dq_off = ((loff_t)blk << info->dqi_blocksize_bits) +
279 			sizeof(struct qt_disk_dqdbheader) +
280 			i * info->dqi_entry_size;
281 	kfree(buf);
282 	return blk;
283 out_buf:
284 	kfree(buf);
285 	return 0;
286 }
287 
288 /* Insert reference to structure into the trie */
289 static int do_insert_tree(struct qtree_mem_dqinfo *info, struct dquot *dquot,
290 			  uint *treeblk, int depth)
291 {
292 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
293 	int ret = 0, newson = 0, newact = 0;
294 	__le32 *ref;
295 	uint newblk;
296 
297 	if (!buf)
298 		return -ENOMEM;
299 	if (!*treeblk) {
300 		ret = get_free_dqblk(info);
301 		if (ret < 0)
302 			goto out_buf;
303 		*treeblk = ret;
304 		memset(buf, 0, info->dqi_usable_bs);
305 		newact = 1;
306 	} else {
307 		ret = read_blk(info, *treeblk, buf);
308 		if (ret < 0) {
309 			quota_error(dquot->dq_sb, "Can't read tree quota "
310 				    "block %u", *treeblk);
311 			goto out_buf;
312 		}
313 	}
314 	ref = (__le32 *)buf;
315 	newblk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
316 	if (!newblk)
317 		newson = 1;
318 	if (depth == info->dqi_qtree_depth - 1) {
319 #ifdef __QUOTA_QT_PARANOIA
320 		if (newblk) {
321 			quota_error(dquot->dq_sb, "Inserting already present "
322 				    "quota entry (block %u)",
323 				    le32_to_cpu(ref[get_index(info,
324 						dquot->dq_id, depth)]));
325 			ret = -EIO;
326 			goto out_buf;
327 		}
328 #endif
329 		newblk = find_free_dqentry(info, dquot, &ret);
330 	} else {
331 		ret = do_insert_tree(info, dquot, &newblk, depth+1);
332 	}
333 	if (newson && ret >= 0) {
334 		ref[get_index(info, dquot->dq_id, depth)] =
335 							cpu_to_le32(newblk);
336 		ret = write_blk(info, *treeblk, buf);
337 	} else if (newact && ret < 0) {
338 		put_free_dqblk(info, buf, *treeblk);
339 	}
340 out_buf:
341 	kfree(buf);
342 	return ret;
343 }
344 
345 /* Wrapper for inserting quota structure into tree */
346 static inline int dq_insert_tree(struct qtree_mem_dqinfo *info,
347 				 struct dquot *dquot)
348 {
349 	int tmp = QT_TREEOFF;
350 
351 #ifdef __QUOTA_QT_PARANOIA
352 	if (info->dqi_blocks <= QT_TREEOFF) {
353 		quota_error(dquot->dq_sb, "Quota tree root isn't allocated!");
354 		return -EIO;
355 	}
356 #endif
357 	return do_insert_tree(info, dquot, &tmp, 0);
358 }
359 
360 /*
361  * We don't have to be afraid of deadlocks as we never have quotas on quota
362  * files...
363  */
364 int qtree_write_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
365 {
366 	int type = dquot->dq_id.type;
367 	struct super_block *sb = dquot->dq_sb;
368 	ssize_t ret;
369 	char *ddquot = kmalloc(info->dqi_entry_size, GFP_NOFS);
370 
371 	if (!ddquot)
372 		return -ENOMEM;
373 
374 	/* dq_off is guarded by dqio_sem */
375 	if (!dquot->dq_off) {
376 		ret = dq_insert_tree(info, dquot);
377 		if (ret < 0) {
378 			quota_error(sb, "Error %zd occurred while creating "
379 				    "quota", ret);
380 			kfree(ddquot);
381 			return ret;
382 		}
383 	}
384 	spin_lock(&dquot->dq_dqb_lock);
385 	info->dqi_ops->mem2disk_dqblk(ddquot, dquot);
386 	spin_unlock(&dquot->dq_dqb_lock);
387 	ret = sb->s_op->quota_write(sb, type, ddquot, info->dqi_entry_size,
388 				    dquot->dq_off);
389 	if (ret != info->dqi_entry_size) {
390 		quota_error(sb, "dquota write failed");
391 		if (ret >= 0)
392 			ret = -ENOSPC;
393 	} else {
394 		ret = 0;
395 	}
396 	dqstats_inc(DQST_WRITES);
397 	kfree(ddquot);
398 
399 	return ret;
400 }
401 EXPORT_SYMBOL(qtree_write_dquot);
402 
403 /* Free dquot entry in data block */
404 static int free_dqentry(struct qtree_mem_dqinfo *info, struct dquot *dquot,
405 			uint blk)
406 {
407 	struct qt_disk_dqdbheader *dh;
408 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
409 	int ret = 0;
410 
411 	if (!buf)
412 		return -ENOMEM;
413 	if (dquot->dq_off >> info->dqi_blocksize_bits != blk) {
414 		quota_error(dquot->dq_sb, "Quota structure has offset to "
415 			"other block (%u) than it should (%u)", blk,
416 			(uint)(dquot->dq_off >> info->dqi_blocksize_bits));
417 		goto out_buf;
418 	}
419 	ret = read_blk(info, blk, buf);
420 	if (ret < 0) {
421 		quota_error(dquot->dq_sb, "Can't read quota data block %u",
422 			    blk);
423 		goto out_buf;
424 	}
425 	dh = (struct qt_disk_dqdbheader *)buf;
426 	le16_add_cpu(&dh->dqdh_entries, -1);
427 	if (!le16_to_cpu(dh->dqdh_entries)) {	/* Block got free? */
428 		ret = remove_free_dqentry(info, buf, blk);
429 		if (ret >= 0)
430 			ret = put_free_dqblk(info, buf, blk);
431 		if (ret < 0) {
432 			quota_error(dquot->dq_sb, "Can't move quota data block "
433 				    "(%u) to free list", blk);
434 			goto out_buf;
435 		}
436 	} else {
437 		memset(buf +
438 		       (dquot->dq_off & ((1 << info->dqi_blocksize_bits) - 1)),
439 		       0, info->dqi_entry_size);
440 		if (le16_to_cpu(dh->dqdh_entries) ==
441 		    qtree_dqstr_in_blk(info) - 1) {
442 			/* Insert will write block itself */
443 			ret = insert_free_dqentry(info, buf, blk);
444 			if (ret < 0) {
445 				quota_error(dquot->dq_sb, "Can't insert quota "
446 				    "data block (%u) to free entry list", blk);
447 				goto out_buf;
448 			}
449 		} else {
450 			ret = write_blk(info, blk, buf);
451 			if (ret < 0) {
452 				quota_error(dquot->dq_sb, "Can't write quota "
453 					    "data block %u", blk);
454 				goto out_buf;
455 			}
456 		}
457 	}
458 	dquot->dq_off = 0;	/* Quota is now unattached */
459 out_buf:
460 	kfree(buf);
461 	return ret;
462 }
463 
464 /* Remove reference to dquot from tree */
465 static int remove_tree(struct qtree_mem_dqinfo *info, struct dquot *dquot,
466 		       uint *blk, int depth)
467 {
468 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
469 	int ret = 0;
470 	uint newblk;
471 	__le32 *ref = (__le32 *)buf;
472 
473 	if (!buf)
474 		return -ENOMEM;
475 	ret = read_blk(info, *blk, buf);
476 	if (ret < 0) {
477 		quota_error(dquot->dq_sb, "Can't read quota data block %u",
478 			    *blk);
479 		goto out_buf;
480 	}
481 	newblk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
482 	if (newblk < QT_TREEOFF || newblk >= info->dqi_blocks) {
483 		quota_error(dquot->dq_sb, "Getting block too big (%u >= %u)",
484 			    newblk, info->dqi_blocks);
485 		ret = -EUCLEAN;
486 		goto out_buf;
487 	}
488 
489 	if (depth == info->dqi_qtree_depth - 1) {
490 		ret = free_dqentry(info, dquot, newblk);
491 		newblk = 0;
492 	} else {
493 		ret = remove_tree(info, dquot, &newblk, depth+1);
494 	}
495 	if (ret >= 0 && !newblk) {
496 		int i;
497 		ref[get_index(info, dquot->dq_id, depth)] = cpu_to_le32(0);
498 		/* Block got empty? */
499 		for (i = 0; i < (info->dqi_usable_bs >> 2) && !ref[i]; i++)
500 			;
501 		/* Don't put the root block into the free block list */
502 		if (i == (info->dqi_usable_bs >> 2)
503 		    && *blk != QT_TREEOFF) {
504 			put_free_dqblk(info, buf, *blk);
505 			*blk = 0;
506 		} else {
507 			ret = write_blk(info, *blk, buf);
508 			if (ret < 0)
509 				quota_error(dquot->dq_sb,
510 					    "Can't write quota tree block %u",
511 					    *blk);
512 		}
513 	}
514 out_buf:
515 	kfree(buf);
516 	return ret;
517 }
518 
519 /* Delete dquot from tree */
520 int qtree_delete_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
521 {
522 	uint tmp = QT_TREEOFF;
523 
524 	if (!dquot->dq_off)	/* Even not allocated? */
525 		return 0;
526 	return remove_tree(info, dquot, &tmp, 0);
527 }
528 EXPORT_SYMBOL(qtree_delete_dquot);
529 
530 /* Find entry in block */
531 static loff_t find_block_dqentry(struct qtree_mem_dqinfo *info,
532 				 struct dquot *dquot, uint blk)
533 {
534 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
535 	loff_t ret = 0;
536 	int i;
537 	char *ddquot;
538 
539 	if (!buf)
540 		return -ENOMEM;
541 	ret = read_blk(info, blk, buf);
542 	if (ret < 0) {
543 		quota_error(dquot->dq_sb, "Can't read quota tree "
544 			    "block %u", blk);
545 		goto out_buf;
546 	}
547 	ddquot = buf + sizeof(struct qt_disk_dqdbheader);
548 	for (i = 0; i < qtree_dqstr_in_blk(info); i++) {
549 		if (info->dqi_ops->is_id(ddquot, dquot))
550 			break;
551 		ddquot += info->dqi_entry_size;
552 	}
553 	if (i == qtree_dqstr_in_blk(info)) {
554 		quota_error(dquot->dq_sb,
555 			    "Quota for id %u referenced but not present",
556 			    from_kqid(&init_user_ns, dquot->dq_id));
557 		ret = -EIO;
558 		goto out_buf;
559 	} else {
560 		ret = ((loff_t)blk << info->dqi_blocksize_bits) + sizeof(struct
561 		  qt_disk_dqdbheader) + i * info->dqi_entry_size;
562 	}
563 out_buf:
564 	kfree(buf);
565 	return ret;
566 }
567 
568 /* Find entry for given id in the tree */
569 static loff_t find_tree_dqentry(struct qtree_mem_dqinfo *info,
570 				struct dquot *dquot, uint blk, int depth)
571 {
572 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
573 	loff_t ret = 0;
574 	__le32 *ref = (__le32 *)buf;
575 
576 	if (!buf)
577 		return -ENOMEM;
578 	ret = read_blk(info, blk, buf);
579 	if (ret < 0) {
580 		quota_error(dquot->dq_sb, "Can't read quota tree block %u",
581 			    blk);
582 		goto out_buf;
583 	}
584 	ret = 0;
585 	blk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
586 	if (!blk)	/* No reference? */
587 		goto out_buf;
588 	if (blk < QT_TREEOFF || blk >= info->dqi_blocks) {
589 		quota_error(dquot->dq_sb, "Getting block too big (%u >= %u)",
590 			    blk, info->dqi_blocks);
591 		ret = -EUCLEAN;
592 		goto out_buf;
593 	}
594 
595 	if (depth < info->dqi_qtree_depth - 1)
596 		ret = find_tree_dqentry(info, dquot, blk, depth+1);
597 	else
598 		ret = find_block_dqentry(info, dquot, blk);
599 out_buf:
600 	kfree(buf);
601 	return ret;
602 }
603 
604 /* Find entry for given id in the tree - wrapper function */
605 static inline loff_t find_dqentry(struct qtree_mem_dqinfo *info,
606 				  struct dquot *dquot)
607 {
608 	return find_tree_dqentry(info, dquot, QT_TREEOFF, 0);
609 }
610 
611 int qtree_read_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
612 {
613 	int type = dquot->dq_id.type;
614 	struct super_block *sb = dquot->dq_sb;
615 	loff_t offset;
616 	char *ddquot;
617 	int ret = 0;
618 
619 #ifdef __QUOTA_QT_PARANOIA
620 	/* Invalidated quota? */
621 	if (!sb_dqopt(dquot->dq_sb)->files[type]) {
622 		quota_error(sb, "Quota invalidated while reading!");
623 		return -EIO;
624 	}
625 #endif
626 	/* Do we know offset of the dquot entry in the quota file? */
627 	if (!dquot->dq_off) {
628 		offset = find_dqentry(info, dquot);
629 		if (offset <= 0) {	/* Entry not present? */
630 			if (offset < 0)
631 				quota_error(sb,"Can't read quota structure "
632 					    "for id %u",
633 					    from_kqid(&init_user_ns,
634 						      dquot->dq_id));
635 			dquot->dq_off = 0;
636 			set_bit(DQ_FAKE_B, &dquot->dq_flags);
637 			memset(&dquot->dq_dqb, 0, sizeof(struct mem_dqblk));
638 			ret = offset;
639 			goto out;
640 		}
641 		dquot->dq_off = offset;
642 	}
643 	ddquot = kmalloc(info->dqi_entry_size, GFP_NOFS);
644 	if (!ddquot)
645 		return -ENOMEM;
646 	ret = sb->s_op->quota_read(sb, type, ddquot, info->dqi_entry_size,
647 				   dquot->dq_off);
648 	if (ret != info->dqi_entry_size) {
649 		if (ret >= 0)
650 			ret = -EIO;
651 		quota_error(sb, "Error while reading quota structure for id %u",
652 			    from_kqid(&init_user_ns, dquot->dq_id));
653 		set_bit(DQ_FAKE_B, &dquot->dq_flags);
654 		memset(&dquot->dq_dqb, 0, sizeof(struct mem_dqblk));
655 		kfree(ddquot);
656 		goto out;
657 	}
658 	spin_lock(&dquot->dq_dqb_lock);
659 	info->dqi_ops->disk2mem_dqblk(dquot, ddquot);
660 	if (!dquot->dq_dqb.dqb_bhardlimit &&
661 	    !dquot->dq_dqb.dqb_bsoftlimit &&
662 	    !dquot->dq_dqb.dqb_ihardlimit &&
663 	    !dquot->dq_dqb.dqb_isoftlimit)
664 		set_bit(DQ_FAKE_B, &dquot->dq_flags);
665 	spin_unlock(&dquot->dq_dqb_lock);
666 	kfree(ddquot);
667 out:
668 	dqstats_inc(DQST_READS);
669 	return ret;
670 }
671 EXPORT_SYMBOL(qtree_read_dquot);
672 
673 /* Check whether dquot should not be deleted. We know we are
674  * the only one operating on dquot (thanks to dq_lock) */
675 int qtree_release_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
676 {
677 	if (test_bit(DQ_FAKE_B, &dquot->dq_flags) &&
678 	    !(dquot->dq_dqb.dqb_curinodes | dquot->dq_dqb.dqb_curspace))
679 		return qtree_delete_dquot(info, dquot);
680 	return 0;
681 }
682 EXPORT_SYMBOL(qtree_release_dquot);
683 
684 static int find_next_id(struct qtree_mem_dqinfo *info, qid_t *id,
685 			unsigned int blk, int depth)
686 {
687 	char *buf = kmalloc(info->dqi_usable_bs, GFP_NOFS);
688 	__le32 *ref = (__le32 *)buf;
689 	ssize_t ret;
690 	unsigned int epb = info->dqi_usable_bs >> 2;
691 	unsigned int level_inc = 1;
692 	int i;
693 
694 	if (!buf)
695 		return -ENOMEM;
696 
697 	for (i = depth; i < info->dqi_qtree_depth - 1; i++)
698 		level_inc *= epb;
699 
700 	ret = read_blk(info, blk, buf);
701 	if (ret < 0) {
702 		quota_error(info->dqi_sb,
703 			    "Can't read quota tree block %u", blk);
704 		goto out_buf;
705 	}
706 	for (i = __get_index(info, *id, depth); i < epb; i++) {
707 		if (ref[i] == cpu_to_le32(0)) {
708 			*id += level_inc;
709 			continue;
710 		}
711 		if (depth == info->dqi_qtree_depth - 1) {
712 			ret = 0;
713 			goto out_buf;
714 		}
715 		ret = find_next_id(info, id, le32_to_cpu(ref[i]), depth + 1);
716 		if (ret != -ENOENT)
717 			break;
718 	}
719 	if (i == epb) {
720 		ret = -ENOENT;
721 		goto out_buf;
722 	}
723 out_buf:
724 	kfree(buf);
725 	return ret;
726 }
727 
728 int qtree_get_next_id(struct qtree_mem_dqinfo *info, struct kqid *qid)
729 {
730 	qid_t id = from_kqid(&init_user_ns, *qid);
731 	int ret;
732 
733 	ret = find_next_id(info, &id, QT_TREEOFF, 0);
734 	if (ret < 0)
735 		return ret;
736 	*qid = make_kqid(&init_user_ns, qid->type, id);
737 	return 0;
738 }
739 EXPORT_SYMBOL(qtree_get_next_id);
740