quota_tree.c 18.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 *	vfsv0 quota IO operations on file
 */

#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/mount.h>
#include <linux/dqblk_v2.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/quotaops.h>

#include <asm/byteorder.h>

#include "quota_tree.h"

MODULE_AUTHOR("Jan Kara");
MODULE_DESCRIPTION("Quota trie support");
MODULE_LICENSE("GPL");

#define __QUOTA_QT_PARANOIA

25
static int __get_index(struct qtree_mem_dqinfo *info, qid_t id, int depth)
26 27 28 29 30 31 32 33 34
{
	unsigned int epb = info->dqi_usable_bs >> 2;

	depth = info->dqi_qtree_depth - depth - 1;
	while (depth--)
		id /= epb;
	return id % epb;
}

35 36 37 38 39 40 41
static int get_index(struct qtree_mem_dqinfo *info, struct kqid qid, int depth)
{
	qid_t id = from_kqid(&init_user_ns, qid);

	return __get_index(info, id, depth);
}

42
/* Number of entries in one blocks */
J
Jan Kara 已提交
43
static int qtree_dqstr_in_blk(struct qtree_mem_dqinfo *info)
44 45 46 47 48
{
	return (info->dqi_usable_bs - sizeof(struct qt_disk_dqdbheader))
	       / info->dqi_entry_size;
}

49
static char *getdqbuf(size_t size)
50
{
51
	char *buf = kmalloc(size, GFP_NOFS);
52
	if (!buf)
J
Jan Kara 已提交
53 54
		printk(KERN_WARNING
		       "VFS: Not enough memory for quota buffers.\n");
55 56 57
	return buf;
}

J
Jan Kara 已提交
58
static ssize_t read_blk(struct qtree_mem_dqinfo *info, uint blk, char *buf)
59 60 61 62
{
	struct super_block *sb = info->dqi_sb;

	memset(buf, 0, info->dqi_usable_bs);
63
	return sb->s_op->quota_read(sb, info->dqi_type, buf,
64 65 66
	       info->dqi_usable_bs, blk << info->dqi_blocksize_bits);
}

J
Jan Kara 已提交
67
static ssize_t write_blk(struct qtree_mem_dqinfo *info, uint blk, char *buf)
68 69
{
	struct super_block *sb = info->dqi_sb;
70
	ssize_t ret;
71

72
	ret = sb->s_op->quota_write(sb, info->dqi_type, buf,
73
	       info->dqi_usable_bs, blk << info->dqi_blocksize_bits);
74
	if (ret != info->dqi_usable_bs) {
75
		quota_error(sb, "dquota write failed");
76 77 78 79
		if (ret >= 0)
			ret = -EIO;
	}
	return ret;
80 81 82 83 84
}

/* Remove empty block from list and return it */
static int get_free_dqblk(struct qtree_mem_dqinfo *info)
{
85
	char *buf = getdqbuf(info->dqi_usable_bs);
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
	int ret, blk;

	if (!buf)
		return -ENOMEM;
	if (info->dqi_free_blk) {
		blk = info->dqi_free_blk;
		ret = read_blk(info, blk, buf);
		if (ret < 0)
			goto out_buf;
		info->dqi_free_blk = le32_to_cpu(dh->dqdh_next_free);
	}
	else {
		memset(buf, 0, info->dqi_usable_bs);
		/* Assure block allocation... */
		ret = write_blk(info, info->dqi_blocks, buf);
		if (ret < 0)
			goto out_buf;
		blk = info->dqi_blocks++;
	}
	mark_info_dirty(info->dqi_sb, info->dqi_type);
	ret = blk;
out_buf:
109
	kfree(buf);
110 111 112 113
	return ret;
}

/* Insert empty block to the list */
114
static int put_free_dqblk(struct qtree_mem_dqinfo *info, char *buf, uint blk)
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
{
	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
	int err;

	dh->dqdh_next_free = cpu_to_le32(info->dqi_free_blk);
	dh->dqdh_prev_free = cpu_to_le32(0);
	dh->dqdh_entries = cpu_to_le16(0);
	err = write_blk(info, blk, buf);
	if (err < 0)
		return err;
	info->dqi_free_blk = blk;
	mark_info_dirty(info->dqi_sb, info->dqi_type);
	return 0;
}

/* Remove given block from the list of blocks with free entries */
J
Jan Kara 已提交
131 132
static int remove_free_dqentry(struct qtree_mem_dqinfo *info, char *buf,
			       uint blk)
133
{
134
	char *tmpbuf = getdqbuf(info->dqi_usable_bs);
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
	uint nextblk = le32_to_cpu(dh->dqdh_next_free);
	uint prevblk = le32_to_cpu(dh->dqdh_prev_free);
	int err;

	if (!tmpbuf)
		return -ENOMEM;
	if (nextblk) {
		err = read_blk(info, nextblk, tmpbuf);
		if (err < 0)
			goto out_buf;
		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_prev_free =
							dh->dqdh_prev_free;
		err = write_blk(info, nextblk, tmpbuf);
		if (err < 0)
			goto out_buf;
	}
	if (prevblk) {
		err = read_blk(info, prevblk, tmpbuf);
		if (err < 0)
			goto out_buf;
		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_next_free =
							dh->dqdh_next_free;
		err = write_blk(info, prevblk, tmpbuf);
		if (err < 0)
			goto out_buf;
	} else {
		info->dqi_free_entry = nextblk;
		mark_info_dirty(info->dqi_sb, info->dqi_type);
	}
165
	kfree(tmpbuf);
166 167 168
	dh->dqdh_next_free = dh->dqdh_prev_free = cpu_to_le32(0);
	/* No matter whether write succeeds block is out of list */
	if (write_blk(info, blk, buf) < 0)
169 170
		quota_error(info->dqi_sb, "Can't write block (%u) "
			    "with free entries", blk);
171 172
	return 0;
out_buf:
173
	kfree(tmpbuf);
174 175 176 177
	return err;
}

/* Insert given block to the beginning of list with free entries */
J
Jan Kara 已提交
178 179
static int insert_free_dqentry(struct qtree_mem_dqinfo *info, char *buf,
			       uint blk)
180
{
181
	char *tmpbuf = getdqbuf(info->dqi_usable_bs);
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf;
	int err;

	if (!tmpbuf)
		return -ENOMEM;
	dh->dqdh_next_free = cpu_to_le32(info->dqi_free_entry);
	dh->dqdh_prev_free = cpu_to_le32(0);
	err = write_blk(info, blk, buf);
	if (err < 0)
		goto out_buf;
	if (info->dqi_free_entry) {
		err = read_blk(info, info->dqi_free_entry, tmpbuf);
		if (err < 0)
			goto out_buf;
		((struct qt_disk_dqdbheader *)tmpbuf)->dqdh_prev_free =
							cpu_to_le32(blk);
		err = write_blk(info, info->dqi_free_entry, tmpbuf);
		if (err < 0)
			goto out_buf;
	}
202
	kfree(tmpbuf);
203 204 205 206
	info->dqi_free_entry = blk;
	mark_info_dirty(info->dqi_sb, info->dqi_type);
	return 0;
out_buf:
207
	kfree(tmpbuf);
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	return err;
}

/* Is the entry in the block free? */
int qtree_entry_unused(struct qtree_mem_dqinfo *info, char *disk)
{
	int i;

	for (i = 0; i < info->dqi_entry_size; i++)
		if (disk[i])
			return 0;
	return 1;
}
EXPORT_SYMBOL(qtree_entry_unused);

/* Find space for dquot */
static uint find_free_dqentry(struct qtree_mem_dqinfo *info,
			      struct dquot *dquot, int *err)
{
	uint blk, i;
	struct qt_disk_dqdbheader *dh;
229
	char *buf = getdqbuf(info->dqi_usable_bs);
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
	char *ddquot;

	*err = 0;
	if (!buf) {
		*err = -ENOMEM;
		return 0;
	}
	dh = (struct qt_disk_dqdbheader *)buf;
	if (info->dqi_free_entry) {
		blk = info->dqi_free_entry;
		*err = read_blk(info, blk, buf);
		if (*err < 0)
			goto out_buf;
	} else {
		blk = get_free_dqblk(info);
		if ((int)blk < 0) {
			*err = blk;
247
			kfree(buf);
248 249 250
			return 0;
		}
		memset(buf, 0, info->dqi_usable_bs);
J
Jan Kara 已提交
251 252
		/* This is enough as the block is already zeroed and the entry
		 * list is empty... */
253
		info->dqi_free_entry = blk;
254
		mark_info_dirty(dquot->dq_sb, dquot->dq_id.type);
255 256 257 258 259
	}
	/* Block will be full? */
	if (le16_to_cpu(dh->dqdh_entries) + 1 >= qtree_dqstr_in_blk(info)) {
		*err = remove_free_dqentry(info, buf, blk);
		if (*err < 0) {
260 261
			quota_error(dquot->dq_sb, "Can't remove block (%u) "
				    "from entry free list", blk);
262 263 264 265 266
			goto out_buf;
		}
	}
	le16_add_cpu(&dh->dqdh_entries, 1);
	/* Find free structure in block */
J
Jan Kara 已提交
267 268 269 270 271 272
	ddquot = buf + sizeof(struct qt_disk_dqdbheader);
	for (i = 0; i < qtree_dqstr_in_blk(info); i++) {
		if (qtree_entry_unused(info, ddquot))
			break;
		ddquot += info->dqi_entry_size;
	}
273 274
#ifdef __QUOTA_QT_PARANOIA
	if (i == qtree_dqstr_in_blk(info)) {
275
		quota_error(dquot->dq_sb, "Data block full but it shouldn't");
276 277 278 279 280 281
		*err = -EIO;
		goto out_buf;
	}
#endif
	*err = write_blk(info, blk, buf);
	if (*err < 0) {
282 283
		quota_error(dquot->dq_sb, "Can't write quota data block %u",
			    blk);
284 285 286 287 288
		goto out_buf;
	}
	dquot->dq_off = (blk << info->dqi_blocksize_bits) +
			sizeof(struct qt_disk_dqdbheader) +
			i * info->dqi_entry_size;
289
	kfree(buf);
290 291
	return blk;
out_buf:
292
	kfree(buf);
293 294 295 296 297 298 299
	return 0;
}

/* Insert reference to structure into the trie */
static int do_insert_tree(struct qtree_mem_dqinfo *info, struct dquot *dquot,
			  uint *treeblk, int depth)
{
300
	char *buf = getdqbuf(info->dqi_usable_bs);
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
	int ret = 0, newson = 0, newact = 0;
	__le32 *ref;
	uint newblk;

	if (!buf)
		return -ENOMEM;
	if (!*treeblk) {
		ret = get_free_dqblk(info);
		if (ret < 0)
			goto out_buf;
		*treeblk = ret;
		memset(buf, 0, info->dqi_usable_bs);
		newact = 1;
	} else {
		ret = read_blk(info, *treeblk, buf);
		if (ret < 0) {
317 318
			quota_error(dquot->dq_sb, "Can't read tree quota "
				    "block %u", *treeblk);
319 320 321 322 323 324 325 326 327 328
			goto out_buf;
		}
	}
	ref = (__le32 *)buf;
	newblk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
	if (!newblk)
		newson = 1;
	if (depth == info->dqi_qtree_depth - 1) {
#ifdef __QUOTA_QT_PARANOIA
		if (newblk) {
329 330 331
			quota_error(dquot->dq_sb, "Inserting already present "
				    "quota entry (block %u)",
				    le32_to_cpu(ref[get_index(info,
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
						dquot->dq_id, depth)]));
			ret = -EIO;
			goto out_buf;
		}
#endif
		newblk = find_free_dqentry(info, dquot, &ret);
	} else {
		ret = do_insert_tree(info, dquot, &newblk, depth+1);
	}
	if (newson && ret >= 0) {
		ref[get_index(info, dquot->dq_id, depth)] =
							cpu_to_le32(newblk);
		ret = write_blk(info, *treeblk, buf);
	} else if (newact && ret < 0) {
		put_free_dqblk(info, buf, *treeblk);
	}
out_buf:
349
	kfree(buf);
350 351 352 353 354 355 356 357
	return ret;
}

/* Wrapper for inserting quota structure into tree */
static inline int dq_insert_tree(struct qtree_mem_dqinfo *info,
				 struct dquot *dquot)
{
	int tmp = QT_TREEOFF;
358 359 360 361 362 363 364

#ifdef __QUOTA_QT_PARANOIA
	if (info->dqi_blocks <= QT_TREEOFF) {
		quota_error(dquot->dq_sb, "Quota tree root isn't allocated!");
		return -EIO;
	}
#endif
365 366 367 368
	return do_insert_tree(info, dquot, &tmp, 0);
}

/*
J
Jan Kara 已提交
369 370
 * We don't have to be afraid of deadlocks as we never have quotas on quota
 * files...
371 372 373
 */
int qtree_write_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
{
374
	int type = dquot->dq_id.type;
375 376
	struct super_block *sb = dquot->dq_sb;
	ssize_t ret;
377
	char *ddquot = getdqbuf(info->dqi_entry_size);
378 379 380 381

	if (!ddquot)
		return -ENOMEM;

J
Jan Kara 已提交
382
	/* dq_off is guarded by dqio_sem */
383 384 385
	if (!dquot->dq_off) {
		ret = dq_insert_tree(info, dquot);
		if (ret < 0) {
386 387
			quota_error(sb, "Error %zd occurred while creating "
				    "quota", ret);
388
			kfree(ddquot);
389 390 391
			return ret;
		}
	}
392
	spin_lock(&dquot->dq_dqb_lock);
393
	info->dqi_ops->mem2disk_dqblk(ddquot, dquot);
394
	spin_unlock(&dquot->dq_dqb_lock);
395 396
	ret = sb->s_op->quota_write(sb, type, ddquot, info->dqi_entry_size,
				    dquot->dq_off);
397
	if (ret != info->dqi_entry_size) {
398
		quota_error(sb, "dquota write failed");
399 400 401 402 403
		if (ret >= 0)
			ret = -ENOSPC;
	} else {
		ret = 0;
	}
404
	dqstats_inc(DQST_WRITES);
405
	kfree(ddquot);
406 407 408 409 410 411 412 413 414 415

	return ret;
}
EXPORT_SYMBOL(qtree_write_dquot);

/* Free dquot entry in data block */
static int free_dqentry(struct qtree_mem_dqinfo *info, struct dquot *dquot,
			uint blk)
{
	struct qt_disk_dqdbheader *dh;
416
	char *buf = getdqbuf(info->dqi_usable_bs);
417 418 419 420 421
	int ret = 0;

	if (!buf)
		return -ENOMEM;
	if (dquot->dq_off >> info->dqi_blocksize_bits != blk) {
422 423 424
		quota_error(dquot->dq_sb, "Quota structure has offset to "
			"other block (%u) than it should (%u)", blk,
			(uint)(dquot->dq_off >> info->dqi_blocksize_bits));
425 426 427 428
		goto out_buf;
	}
	ret = read_blk(info, blk, buf);
	if (ret < 0) {
429 430
		quota_error(dquot->dq_sb, "Can't read quota data block %u",
			    blk);
431 432 433 434 435 436 437 438 439
		goto out_buf;
	}
	dh = (struct qt_disk_dqdbheader *)buf;
	le16_add_cpu(&dh->dqdh_entries, -1);
	if (!le16_to_cpu(dh->dqdh_entries)) {	/* Block got free? */
		ret = remove_free_dqentry(info, buf, blk);
		if (ret >= 0)
			ret = put_free_dqblk(info, buf, blk);
		if (ret < 0) {
440 441
			quota_error(dquot->dq_sb, "Can't move quota data block "
				    "(%u) to free list", blk);
442 443 444 445 446 447 448 449 450 451 452
			goto out_buf;
		}
	} else {
		memset(buf +
		       (dquot->dq_off & ((1 << info->dqi_blocksize_bits) - 1)),
		       0, info->dqi_entry_size);
		if (le16_to_cpu(dh->dqdh_entries) ==
		    qtree_dqstr_in_blk(info) - 1) {
			/* Insert will write block itself */
			ret = insert_free_dqentry(info, buf, blk);
			if (ret < 0) {
453 454
				quota_error(dquot->dq_sb, "Can't insert quota "
				    "data block (%u) to free entry list", blk);
455 456 457 458 459
				goto out_buf;
			}
		} else {
			ret = write_blk(info, blk, buf);
			if (ret < 0) {
460 461
				quota_error(dquot->dq_sb, "Can't write quota "
					    "data block %u", blk);
462 463 464 465 466 467
				goto out_buf;
			}
		}
	}
	dquot->dq_off = 0;	/* Quota is now unattached */
out_buf:
468
	kfree(buf);
469 470 471 472 473 474 475
	return ret;
}

/* Remove reference to dquot from tree */
static int remove_tree(struct qtree_mem_dqinfo *info, struct dquot *dquot,
		       uint *blk, int depth)
{
476
	char *buf = getdqbuf(info->dqi_usable_bs);
477 478 479 480 481 482 483 484
	int ret = 0;
	uint newblk;
	__le32 *ref = (__le32 *)buf;

	if (!buf)
		return -ENOMEM;
	ret = read_blk(info, *blk, buf);
	if (ret < 0) {
485 486
		quota_error(dquot->dq_sb, "Can't read quota data block %u",
			    *blk);
487 488 489 490 491 492 493 494 495 496 497 498 499
		goto out_buf;
	}
	newblk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
	if (depth == info->dqi_qtree_depth - 1) {
		ret = free_dqentry(info, dquot, newblk);
		newblk = 0;
	} else {
		ret = remove_tree(info, dquot, &newblk, depth+1);
	}
	if (ret >= 0 && !newblk) {
		int i;
		ref[get_index(info, dquot->dq_id, depth)] = cpu_to_le32(0);
		/* Block got empty? */
500 501
		for (i = 0; i < (info->dqi_usable_bs >> 2) && !ref[i]; i++)
			;
502 503 504 505 506 507 508 509
		/* Don't put the root block into the free block list */
		if (i == (info->dqi_usable_bs >> 2)
		    && *blk != QT_TREEOFF) {
			put_free_dqblk(info, buf, *blk);
			*blk = 0;
		} else {
			ret = write_blk(info, *blk, buf);
			if (ret < 0)
510 511 512
				quota_error(dquot->dq_sb,
					    "Can't write quota tree block %u",
					    *blk);
513 514 515
		}
	}
out_buf:
516
	kfree(buf);
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
	return ret;
}

/* Delete dquot from tree */
int qtree_delete_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
{
	uint tmp = QT_TREEOFF;

	if (!dquot->dq_off)	/* Even not allocated? */
		return 0;
	return remove_tree(info, dquot, &tmp, 0);
}
EXPORT_SYMBOL(qtree_delete_dquot);

/* Find entry in block */
static loff_t find_block_dqentry(struct qtree_mem_dqinfo *info,
				 struct dquot *dquot, uint blk)
{
535
	char *buf = getdqbuf(info->dqi_usable_bs);
536 537 538 539 540 541 542 543
	loff_t ret = 0;
	int i;
	char *ddquot;

	if (!buf)
		return -ENOMEM;
	ret = read_blk(info, blk, buf);
	if (ret < 0) {
544 545
		quota_error(dquot->dq_sb, "Can't read quota tree "
			    "block %u", blk);
546 547
		goto out_buf;
	}
J
Jan Kara 已提交
548 549 550 551 552 553
	ddquot = buf + sizeof(struct qt_disk_dqdbheader);
	for (i = 0; i < qtree_dqstr_in_blk(info); i++) {
		if (info->dqi_ops->is_id(ddquot, dquot))
			break;
		ddquot += info->dqi_entry_size;
	}
554
	if (i == qtree_dqstr_in_blk(info)) {
555 556 557
		quota_error(dquot->dq_sb,
			    "Quota for id %u referenced but not present",
			    from_kqid(&init_user_ns, dquot->dq_id));
558 559 560 561 562 563 564
		ret = -EIO;
		goto out_buf;
	} else {
		ret = (blk << info->dqi_blocksize_bits) + sizeof(struct
		  qt_disk_dqdbheader) + i * info->dqi_entry_size;
	}
out_buf:
565
	kfree(buf);
566 567 568 569 570 571 572
	return ret;
}

/* Find entry for given id in the tree */
static loff_t find_tree_dqentry(struct qtree_mem_dqinfo *info,
				struct dquot *dquot, uint blk, int depth)
{
573
	char *buf = getdqbuf(info->dqi_usable_bs);
574 575 576 577 578 579 580
	loff_t ret = 0;
	__le32 *ref = (__le32 *)buf;

	if (!buf)
		return -ENOMEM;
	ret = read_blk(info, blk, buf);
	if (ret < 0) {
581 582
		quota_error(dquot->dq_sb, "Can't read quota tree block %u",
			    blk);
583 584 585 586 587 588 589 590 591 592 593
		goto out_buf;
	}
	ret = 0;
	blk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]);
	if (!blk)	/* No reference? */
		goto out_buf;
	if (depth < info->dqi_qtree_depth - 1)
		ret = find_tree_dqentry(info, dquot, blk, depth+1);
	else
		ret = find_block_dqentry(info, dquot, blk);
out_buf:
594
	kfree(buf);
595 596 597 598 599 600 601 602 603 604 605 606
	return ret;
}

/* Find entry for given id in the tree - wrapper function */
static inline loff_t find_dqentry(struct qtree_mem_dqinfo *info,
				  struct dquot *dquot)
{
	return find_tree_dqentry(info, dquot, QT_TREEOFF, 0);
}

int qtree_read_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
{
607
	int type = dquot->dq_id.type;
608 609
	struct super_block *sb = dquot->dq_sb;
	loff_t offset;
610
	char *ddquot;
611 612 613 614 615
	int ret = 0;

#ifdef __QUOTA_QT_PARANOIA
	/* Invalidated quota? */
	if (!sb_dqopt(dquot->dq_sb)->files[type]) {
616
		quota_error(sb, "Quota invalidated while reading!");
617 618 619 620 621 622 623 624
		return -EIO;
	}
#endif
	/* Do we know offset of the dquot entry in the quota file? */
	if (!dquot->dq_off) {
		offset = find_dqentry(info, dquot);
		if (offset <= 0) {	/* Entry not present? */
			if (offset < 0)
625 626 627 628
				quota_error(sb,"Can't read quota structure "
					    "for id %u",
					    from_kqid(&init_user_ns,
						      dquot->dq_id));
629 630 631 632 633 634 635 636 637 638 639
			dquot->dq_off = 0;
			set_bit(DQ_FAKE_B, &dquot->dq_flags);
			memset(&dquot->dq_dqb, 0, sizeof(struct mem_dqblk));
			ret = offset;
			goto out;
		}
		dquot->dq_off = offset;
	}
	ddquot = getdqbuf(info->dqi_entry_size);
	if (!ddquot)
		return -ENOMEM;
640 641
	ret = sb->s_op->quota_read(sb, type, ddquot, info->dqi_entry_size,
				   dquot->dq_off);
642 643 644
	if (ret != info->dqi_entry_size) {
		if (ret >= 0)
			ret = -EIO;
645
		quota_error(sb, "Error while reading quota structure for id %u",
646
			    from_kqid(&init_user_ns, dquot->dq_id));
647 648
		set_bit(DQ_FAKE_B, &dquot->dq_flags);
		memset(&dquot->dq_dqb, 0, sizeof(struct mem_dqblk));
649
		kfree(ddquot);
650 651
		goto out;
	}
652
	spin_lock(&dquot->dq_dqb_lock);
653 654 655 656 657 658
	info->dqi_ops->disk2mem_dqblk(dquot, ddquot);
	if (!dquot->dq_dqb.dqb_bhardlimit &&
	    !dquot->dq_dqb.dqb_bsoftlimit &&
	    !dquot->dq_dqb.dqb_ihardlimit &&
	    !dquot->dq_dqb.dqb_isoftlimit)
		set_bit(DQ_FAKE_B, &dquot->dq_flags);
659
	spin_unlock(&dquot->dq_dqb_lock);
660
	kfree(ddquot);
661
out:
662
	dqstats_inc(DQST_READS);
663 664 665 666 667 668 669 670
	return ret;
}
EXPORT_SYMBOL(qtree_read_dquot);

/* Check whether dquot should not be deleted. We know we are
 * the only one operating on dquot (thanks to dq_lock) */
int qtree_release_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot)
{
J
Jan Kara 已提交
671 672
	if (test_bit(DQ_FAKE_B, &dquot->dq_flags) &&
	    !(dquot->dq_dqb.dqb_curinodes | dquot->dq_dqb.dqb_curspace))
673 674 675 676
		return qtree_delete_dquot(info, dquot);
	return 0;
}
EXPORT_SYMBOL(qtree_release_dquot);
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733

static int find_next_id(struct qtree_mem_dqinfo *info, qid_t *id,
			unsigned int blk, int depth)
{
	char *buf = getdqbuf(info->dqi_usable_bs);
	__le32 *ref = (__le32 *)buf;
	ssize_t ret;
	unsigned int epb = info->dqi_usable_bs >> 2;
	unsigned int level_inc = 1;
	int i;

	if (!buf)
		return -ENOMEM;

	for (i = depth; i < info->dqi_qtree_depth - 1; i++)
		level_inc *= epb;

	ret = read_blk(info, blk, buf);
	if (ret < 0) {
		quota_error(info->dqi_sb,
			    "Can't read quota tree block %u", blk);
		goto out_buf;
	}
	for (i = __get_index(info, *id, depth); i < epb; i++) {
		if (ref[i] == cpu_to_le32(0)) {
			*id += level_inc;
			continue;
		}
		if (depth == info->dqi_qtree_depth - 1) {
			ret = 0;
			goto out_buf;
		}
		ret = find_next_id(info, id, le32_to_cpu(ref[i]), depth + 1);
		if (ret != -ENOENT)
			break;
	}
	if (i == epb) {
		ret = -ENOENT;
		goto out_buf;
	}
out_buf:
	kfree(buf);
	return ret;
}

int qtree_get_next_id(struct qtree_mem_dqinfo *info, struct kqid *qid)
{
	qid_t id = from_kqid(&init_user_ns, *qid);
	int ret;

	ret = find_next_id(info, &id, QT_TREEOFF, 0);
	if (ret < 0)
		return ret;
	*qid = make_kqid(&init_user_ns, qid->type, id);
	return 0;
}
EXPORT_SYMBOL(qtree_get_next_id);