balloc.c 24.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * balloc.c
 *
 * PURPOSE
 *	Block allocation handling routines for the OSTA-UDF(tm) filesystem.
 *
 * COPYRIGHT
 *	This file is distributed under the terms of the GNU General Public
 *	License (GPL). Copies of the GPL can be obtained from:
 *		ftp://prep.ai.mit.edu/pub/gnu/GPL
 *	Each contributing author retains all rights to their own work.
 *
 *  (C) 1999-2001 Ben Fennema
 *  (C) 1999 Stelias Computing Inc
 *
 * HISTORY
 *
 *  02/24/99 blf  Created.
 *
 */

#include "udfdecl.h"

#include <linux/quotaops.h>
#include <linux/buffer_head.h>
#include <linux/bitops.h>

#include "udf_i.h"
#include "udf_sb.h"

#define udf_clear_bit(nr,addr) ext2_clear_bit(nr,addr)
#define udf_set_bit(nr,addr) ext2_set_bit(nr,addr)
#define udf_test_bit(nr, addr) ext2_test_bit(nr, addr)
#define udf_find_first_one_bit(addr, size) find_first_one_bit(addr, size)
#define udf_find_next_one_bit(addr, size, offset) find_next_one_bit(addr, size, offset)

#define leBPL_to_cpup(x) leNUM_to_cpup(BITS_PER_LONG, x)
#define leNUM_to_cpup(x,y) xleNUM_to_cpup(x,y)
#define xleNUM_to_cpup(x,y) (le ## x ## _to_cpup(y))
#define uintBPL_t uint(BITS_PER_LONG)
#define uint(x) xuint(x)
#define xuint(x) __le ## x

44
static inline int find_next_one_bit(void *addr, int size, int offset)
L
Linus Torvalds 已提交
45
{
46 47
	uintBPL_t *p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG);
	int result = offset & ~(BITS_PER_LONG - 1);
L
Linus Torvalds 已提交
48 49 50 51 52
	unsigned long tmp;

	if (offset >= size)
		return size;
	size -= result;
53 54
	offset &= (BITS_PER_LONG - 1);
	if (offset) {
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63
		tmp = leBPL_to_cpup(p++);
		tmp &= ~0UL << offset;
		if (size < BITS_PER_LONG)
			goto found_first;
		if (tmp)
			goto found_middle;
		size -= BITS_PER_LONG;
		result += BITS_PER_LONG;
	}
64
	while (size & ~(BITS_PER_LONG - 1)) {
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72
		if ((tmp = leBPL_to_cpup(p++)))
			goto found_middle;
		result += BITS_PER_LONG;
		size -= BITS_PER_LONG;
	}
	if (!size)
		return result;
	tmp = leBPL_to_cpup(p);
73
found_first:
74
	tmp &= ~0UL >> (BITS_PER_LONG - size);
75
found_middle:
L
Linus Torvalds 已提交
76 77 78 79 80 81
	return result + ffz(~tmp);
}

#define find_first_one_bit(addr, size)\
	find_next_one_bit((addr), (size), 0)

82 83 84
static int read_block_bitmap(struct super_block *sb,
			     struct udf_bitmap *bitmap, unsigned int block,
			     unsigned long bitmap_nr)
L
Linus Torvalds 已提交
85 86 87 88 89 90 91 92 93
{
	struct buffer_head *bh = NULL;
	int retval = 0;
	kernel_lb_addr loc;

	loc.logicalBlockNum = bitmap->s_extPosition;
	loc.partitionReferenceNum = UDF_SB_PARTITION(sb);

	bh = udf_tread(sb, udf_get_lb_pblock(sb, loc, block));
94
	if (!bh) {
L
Linus Torvalds 已提交
95 96 97 98 99 100
		retval = -EIO;
	}
	bitmap->s_block_bitmap[bitmap_nr] = bh;
	return retval;
}

101 102 103
static int __load_block_bitmap(struct super_block *sb,
			       struct udf_bitmap *bitmap,
			       unsigned int block_group)
L
Linus Torvalds 已提交
104 105 106 107
{
	int retval = 0;
	int nr_groups = bitmap->s_nr_groups;

108 109 110
	if (block_group >= nr_groups) {
		udf_debug("block_group (%d) > nr_groups (%d)\n", block_group,
			  nr_groups);
L
Linus Torvalds 已提交
111 112
	}

113
	if (bitmap->s_block_bitmap[block_group]) {
L
Linus Torvalds 已提交
114
		return block_group;
115 116 117
	} else {
		retval = read_block_bitmap(sb, bitmap, block_group,
					   block_group);
L
Linus Torvalds 已提交
118 119 120 121 122 123
		if (retval < 0)
			return retval;
		return block_group;
	}
}

124 125 126
static inline int load_block_bitmap(struct super_block *sb,
				    struct udf_bitmap *bitmap,
				    unsigned int block_group)
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140
{
	int slot;

	slot = __load_block_bitmap(sb, bitmap, block_group);

	if (slot < 0)
		return slot;

	if (!bitmap->s_block_bitmap[slot])
		return -EIO;

	return slot;
}

141 142 143 144 145
static void udf_bitmap_free_blocks(struct super_block *sb,
				   struct inode *inode,
				   struct udf_bitmap *bitmap,
				   kernel_lb_addr bloc, uint32_t offset,
				   uint32_t count)
L
Linus Torvalds 已提交
146 147
{
	struct udf_sb_info *sbi = UDF_SB(sb);
148
	struct buffer_head *bh = NULL;
L
Linus Torvalds 已提交
149 150 151 152 153 154 155
	unsigned long block;
	unsigned long block_group;
	unsigned long bit;
	unsigned long i;
	int bitmap_nr;
	unsigned long overflow;

I
Ingo Molnar 已提交
156
	mutex_lock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
157
	if (bloc.logicalBlockNum < 0 ||
158 159 160 161
	    (bloc.logicalBlockNum + count) > UDF_SB_PARTLEN(sb, bloc.partitionReferenceNum)) {
		udf_debug("%d < %d || %d + %d > %d\n",
			  bloc.logicalBlockNum, 0, bloc.logicalBlockNum, count,
			  UDF_SB_PARTLEN(sb, bloc.partitionReferenceNum));
L
Linus Torvalds 已提交
162 163 164
		goto error_return;
	}

165
	block = bloc.logicalBlockNum + offset + (sizeof(struct spaceBitmapDesc) << 3);
L
Linus Torvalds 已提交
166

167
do_more:
L
Linus Torvalds 已提交
168 169 170 171 172 173 174
	overflow = 0;
	block_group = block >> (sb->s_blocksize_bits + 3);
	bit = block % (sb->s_blocksize << 3);

	/*
	 * Check to see if we are freeing blocks across a group boundary.
	 */
175
	if (bit + count > (sb->s_blocksize << 3)) {
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183
		overflow = bit + count - (sb->s_blocksize << 3);
		count -= overflow;
	}
	bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
	if (bitmap_nr < 0)
		goto error_return;

	bh = bitmap->s_block_bitmap[bitmap_nr];
184 185
	for (i = 0; i < count; i++) {
		if (udf_set_bit(bit + i, bh->b_data)) {
L
Linus Torvalds 已提交
186
			udf_debug("bit %ld already set\n", bit + i);
187
			udf_debug("byte=%2x\n", ((char *)bh->b_data)[(bit + i) >> 3]);
188
		} else {
L
Linus Torvalds 已提交
189 190
			if (inode)
				DQUOT_FREE_BLOCK(inode, 1);
191
			if (UDF_SB_LVIDBH(sb)) {
192 193
				UDF_SB_LVID(sb)->freeSpaceTable[UDF_SB_PARTITION(sb)] =
					cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[UDF_SB_PARTITION(sb)]) + 1);
L
Linus Torvalds 已提交
194 195 196 197
			}
		}
	}
	mark_buffer_dirty(bh);
198
	if (overflow) {
L
Linus Torvalds 已提交
199 200 201 202
		block += count;
		count = overflow;
		goto do_more;
	}
203
error_return:
L
Linus Torvalds 已提交
204 205 206
	sb->s_dirt = 1;
	if (UDF_SB_LVIDBH(sb))
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
I
Ingo Molnar 已提交
207
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
208 209 210
	return;
}

211 212 213 214 215
static int udf_bitmap_prealloc_blocks(struct super_block *sb,
				      struct inode *inode,
				      struct udf_bitmap *bitmap,
				      uint16_t partition, uint32_t first_block,
				      uint32_t block_count)
L
Linus Torvalds 已提交
216 217 218 219 220 221 222
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	int alloc_count = 0;
	int bit, block, block_group, group_start;
	int nr_groups, bitmap_nr;
	struct buffer_head *bh;

I
Ingo Molnar 已提交
223
	mutex_lock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
224 225 226 227 228 229
	if (first_block < 0 || first_block >= UDF_SB_PARTLEN(sb, partition))
		goto out;

	if (first_block + block_count > UDF_SB_PARTLEN(sb, partition))
		block_count = UDF_SB_PARTLEN(sb, partition) - first_block;

230
repeat:
L
Linus Torvalds 已提交
231
	nr_groups = (UDF_SB_PARTLEN(sb, partition) +
232 233
		     (sizeof(struct spaceBitmapDesc) << 3) +
		     (sb->s_blocksize * 8) - 1) / (sb->s_blocksize * 8);
L
Linus Torvalds 已提交
234 235 236 237 238 239 240 241 242 243 244
	block = first_block + (sizeof(struct spaceBitmapDesc) << 3);
	block_group = block >> (sb->s_blocksize_bits + 3);
	group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);

	bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
	if (bitmap_nr < 0)
		goto out;
	bh = bitmap->s_block_bitmap[bitmap_nr];

	bit = block % (sb->s_blocksize << 3);

245
	while (bit < (sb->s_blocksize << 3) && block_count > 0) {
246
		if (!udf_test_bit(bit, bh->b_data)) {
L
Linus Torvalds 已提交
247
			goto out;
248
		} else if (DQUOT_PREALLOC_BLOCK(inode, 1)) {
L
Linus Torvalds 已提交
249
			goto out;
250
		} else if (!udf_clear_bit(bit, bh->b_data)) {
L
Linus Torvalds 已提交
251 252 253 254
			udf_debug("bit already cleared for block %d\n", bit);
			DQUOT_FREE_BLOCK(inode, 1);
			goto out;
		}
255 256 257 258
		block_count--;
		alloc_count++;
		bit++;
		block++;
L
Linus Torvalds 已提交
259 260 261 262
	}
	mark_buffer_dirty(bh);
	if (block_count > 0)
		goto repeat;
263
out:
264
	if (UDF_SB_LVIDBH(sb)) {
L
Linus Torvalds 已提交
265
		UDF_SB_LVID(sb)->freeSpaceTable[partition] =
266
			cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition]) - alloc_count);
L
Linus Torvalds 已提交
267 268 269
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
	}
	sb->s_dirt = 1;
I
Ingo Molnar 已提交
270
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
271 272 273
	return alloc_count;
}

274 275 276 277
static int udf_bitmap_new_block(struct super_block *sb,
				struct inode *inode,
				struct udf_bitmap *bitmap, uint16_t partition,
				uint32_t goal, int *err)
L
Linus Torvalds 已提交
278 279
{
	struct udf_sb_info *sbi = UDF_SB(sb);
280
	int newbit, bit = 0, block, block_group, group_start;
L
Linus Torvalds 已提交
281 282 283 284 285 286
	int end_goal, nr_groups, bitmap_nr, i;
	struct buffer_head *bh = NULL;
	char *ptr;
	int newblock = 0;

	*err = -ENOSPC;
I
Ingo Molnar 已提交
287
	mutex_lock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
288

289
repeat:
L
Linus Torvalds 已提交
290 291 292 293 294 295 296 297 298 299 300 301
	if (goal < 0 || goal >= UDF_SB_PARTLEN(sb, partition))
		goal = 0;

	nr_groups = bitmap->s_nr_groups;
	block = goal + (sizeof(struct spaceBitmapDesc) << 3);
	block_group = block >> (sb->s_blocksize_bits + 3);
	group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);

	bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
	if (bitmap_nr < 0)
		goto error_return;
	bh = bitmap->s_block_bitmap[bitmap_nr];
302 303
	ptr = memscan((char *)bh->b_data + group_start, 0xFF,
		      sb->s_blocksize - group_start);
L
Linus Torvalds 已提交
304

305
	if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
L
Linus Torvalds 已提交
306
		bit = block % (sb->s_blocksize << 3);
307
		if (udf_test_bit(bit, bh->b_data))
L
Linus Torvalds 已提交
308
			goto got_block;
309

L
Linus Torvalds 已提交
310 311 312 313
		end_goal = (bit + 63) & ~63;
		bit = udf_find_next_one_bit(bh->b_data, end_goal, bit);
		if (bit < end_goal)
			goto got_block;
314 315

		ptr = memscan((char *)bh->b_data + (bit >> 3), 0xFF, sb->s_blocksize - ((bit + 7) >> 3));
L
Linus Torvalds 已提交
316
		newbit = (ptr - ((char *)bh->b_data)) << 3;
317
		if (newbit < sb->s_blocksize << 3) {
L
Linus Torvalds 已提交
318 319 320
			bit = newbit;
			goto search_back;
		}
321 322

		newbit = udf_find_next_one_bit(bh->b_data, sb->s_blocksize << 3, bit);
323
		if (newbit < sb->s_blocksize << 3) {
L
Linus Torvalds 已提交
324 325 326 327 328
			bit = newbit;
			goto got_block;
		}
	}

329 330
	for (i = 0; i < (nr_groups * 2); i++) {
		block_group++;
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338
		if (block_group >= nr_groups)
			block_group = 0;
		group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);

		bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
		if (bitmap_nr < 0)
			goto error_return;
		bh = bitmap->s_block_bitmap[bitmap_nr];
339
		if (i < nr_groups) {
340 341
			ptr = memscan((char *)bh->b_data + group_start, 0xFF,
				      sb->s_blocksize - group_start);
342
			if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
L
Linus Torvalds 已提交
343 344 345
				bit = (ptr - ((char *)bh->b_data)) << 3;
				break;
			}
346
		} else {
347 348 349
			bit = udf_find_next_one_bit((char *)bh->b_data,
						    sb->s_blocksize << 3,
						    group_start << 3);
L
Linus Torvalds 已提交
350 351 352 353
			if (bit < sb->s_blocksize << 3)
				break;
		}
	}
354
	if (i >= (nr_groups * 2)) {
I
Ingo Molnar 已提交
355
		mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
356 357 358 359 360
		return newblock;
	}
	if (bit < sb->s_blocksize << 3)
		goto search_back;
	else
361
		bit = udf_find_next_one_bit(bh->b_data, sb->s_blocksize << 3, group_start << 3);
362
	if (bit >= sb->s_blocksize << 3) {
I
Ingo Molnar 已提交
363
		mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
364 365 366
		return 0;
	}

367 368 369
search_back:
	for (i = 0; i < 7 && bit > (group_start << 3) && udf_test_bit(bit - 1, bh->b_data); i++, bit--)
		; /* empty loop */
L
Linus Torvalds 已提交
370

371
got_block:
L
Linus Torvalds 已提交
372 373 374 375

	/*
	 * Check quota for allocation of this block.
	 */
376
	if (inode && DQUOT_ALLOC_BLOCK(inode, 1)) {
I
Ingo Molnar 已提交
377
		mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
378 379 380 381 382
		*err = -EDQUOT;
		return 0;
	}

	newblock = bit + (block_group << (sb->s_blocksize_bits + 3)) -
383
		(sizeof(struct spaceBitmapDesc) << 3);
L
Linus Torvalds 已提交
384

385
	if (!udf_clear_bit(bit, bh->b_data)) {
L
Linus Torvalds 已提交
386 387 388 389 390 391
		udf_debug("bit already cleared for block %d\n", bit);
		goto repeat;
	}

	mark_buffer_dirty(bh);

392
	if (UDF_SB_LVIDBH(sb)) {
L
Linus Torvalds 已提交
393
		UDF_SB_LVID(sb)->freeSpaceTable[partition] =
394
			cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition]) - 1);
L
Linus Torvalds 已提交
395 396 397
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
	}
	sb->s_dirt = 1;
I
Ingo Molnar 已提交
398
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
399 400 401
	*err = 0;
	return newblock;

402
error_return:
L
Linus Torvalds 已提交
403
	*err = -EIO;
I
Ingo Molnar 已提交
404
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
405 406 407
	return 0;
}

408 409 410 411 412
static void udf_table_free_blocks(struct super_block *sb,
				  struct inode *inode,
				  struct inode *table,
				  kernel_lb_addr bloc, uint32_t offset,
				  uint32_t count)
L
Linus Torvalds 已提交
413 414 415
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	uint32_t start, end;
J
Jan Kara 已提交
416 417 418
	uint32_t elen;
	kernel_lb_addr eloc;
	struct extent_position oepos, epos;
L
Linus Torvalds 已提交
419 420 421
	int8_t etype;
	int i;

I
Ingo Molnar 已提交
422
	mutex_lock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
423
	if (bloc.logicalBlockNum < 0 ||
424 425 426 427
	    (bloc.logicalBlockNum + count) > UDF_SB_PARTLEN(sb, bloc.partitionReferenceNum)) {
		udf_debug("%d < %d || %d + %d > %d\n",
			  bloc.logicalBlockNum, 0, bloc.logicalBlockNum, count,
			  UDF_SB_PARTLEN(sb, bloc.partitionReferenceNum));
L
Linus Torvalds 已提交
428 429 430 431 432 433 434
		goto error_return;
	}

	/* We do this up front - There are some error conditions that could occure,
	   but.. oh well */
	if (inode)
		DQUOT_FREE_BLOCK(inode, count);
435
	if (UDF_SB_LVIDBH(sb)) {
L
Linus Torvalds 已提交
436
		UDF_SB_LVID(sb)->freeSpaceTable[UDF_SB_PARTITION(sb)] =
437
			cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[UDF_SB_PARTITION(sb)]) + count);
L
Linus Torvalds 已提交
438 439 440 441 442 443
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
	}

	start = bloc.logicalBlockNum + offset;
	end = bloc.logicalBlockNum + offset + count - 1;

J
Jan Kara 已提交
444
	epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry);
L
Linus Torvalds 已提交
445
	elen = 0;
J
Jan Kara 已提交
446 447
	epos.block = oepos.block = UDF_I_LOCATION(table);
	epos.bh = oepos.bh = NULL;
L
Linus Torvalds 已提交
448

449 450 451 452 453 454 455
	while (count &&
	       (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
		if (((eloc.logicalBlockNum + (elen >> sb->s_blocksize_bits)) == start)) {
			if ((0x3FFFFFFF - elen) < (count << sb->s_blocksize_bits)) {
				count -= ((0x3FFFFFFF - elen) >> sb->s_blocksize_bits);
				start += ((0x3FFFFFFF - elen) >> sb->s_blocksize_bits);
				elen = (etype << 30) | (0x40000000 - sb->s_blocksize);
456
			} else {
457
				elen = (etype << 30) | (elen + (count << sb->s_blocksize_bits));
L
Linus Torvalds 已提交
458 459 460
				start += count;
				count = 0;
			}
J
Jan Kara 已提交
461
			udf_write_aext(table, &oepos, eloc, elen, 1);
462
		} else if (eloc.logicalBlockNum == (end + 1)) {
463 464 465 466 467
			if ((0x3FFFFFFF - elen) < (count << sb->s_blocksize_bits)) {
				count -= ((0x3FFFFFFF - elen) >> sb->s_blocksize_bits);
				end -= ((0x3FFFFFFF - elen) >> sb->s_blocksize_bits);
				eloc.logicalBlockNum -= ((0x3FFFFFFF - elen) >> sb->s_blocksize_bits);
				elen = (etype << 30) | (0x40000000 - sb->s_blocksize);
468
			} else {
L
Linus Torvalds 已提交
469
				eloc.logicalBlockNum = start;
470
				elen = (etype << 30) | (elen + (count << sb->s_blocksize_bits));
L
Linus Torvalds 已提交
471 472 473
				end -= count;
				count = 0;
			}
J
Jan Kara 已提交
474
			udf_write_aext(table, &oepos, eloc, elen, 1);
L
Linus Torvalds 已提交
475 476
		}

477
		if (epos.bh != oepos.bh) {
L
Linus Torvalds 已提交
478
			i = -1;
J
Jan Kara 已提交
479
			oepos.block = epos.block;
J
Jan Kara 已提交
480 481
			brelse(oepos.bh);
			get_bh(epos.bh);
J
Jan Kara 已提交
482 483
			oepos.bh = epos.bh;
			oepos.offset = 0;
484
		} else {
J
Jan Kara 已提交
485
			oepos.offset = epos.offset;
486
		}
L
Linus Torvalds 已提交
487 488
	}

489
	if (count) {
490 491 492 493 494 495 496 497 498 499 500
		/*
		 * NOTE: we CANNOT use udf_add_aext here, as it can try to allocate
		 * a new block, and since we hold the super block lock already
		 * very bad things would happen :)
		 *
		 * We copy the behavior of udf_add_aext, but instead of
		 * trying to allocate a new block close to the existing one,
		 * we just steal a block from the extent we are trying to add.
		 *
		 * It would be nice if the blocks were close together, but it
		 * isn't required.
501
		 */
L
Linus Torvalds 已提交
502 503 504 505 506 507 508

		int adsize;
		short_ad *sad = NULL;
		long_ad *lad = NULL;
		struct allocExtDesc *aed;

		eloc.logicalBlockNum = start;
509 510
		elen = EXT_RECORDED_ALLOCATED |
			(count << sb->s_blocksize_bits);
L
Linus Torvalds 已提交
511

512
		if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_SHORT) {
L
Linus Torvalds 已提交
513
			adsize = sizeof(short_ad);
514
		} else if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_LONG) {
L
Linus Torvalds 已提交
515
			adsize = sizeof(long_ad);
516
		} else {
J
Jan Kara 已提交
517 518
			brelse(oepos.bh);
			brelse(epos.bh);
L
Linus Torvalds 已提交
519 520 521
			goto error_return;
		}

522
		if (epos.offset + (2 * adsize) > sb->s_blocksize) {
L
Linus Torvalds 已提交
523 524
			char *sptr, *dptr;
			int loffset;
525

J
Jan Kara 已提交
526
			brelse(oepos.bh);
J
Jan Kara 已提交
527
			oepos = epos;
L
Linus Torvalds 已提交
528 529

			/* Steal a block from the extent being free'd */
J
Jan Kara 已提交
530
			epos.block.logicalBlockNum = eloc.logicalBlockNum;
531
			eloc.logicalBlockNum++;
L
Linus Torvalds 已提交
532 533
			elen -= sb->s_blocksize;

534
			if (!(epos.bh = udf_tread(sb, udf_get_lb_pblock(sb, epos.block, 0)))) {
J
Jan Kara 已提交
535
				brelse(oepos.bh);
L
Linus Torvalds 已提交
536 537
				goto error_return;
			}
J
Jan Kara 已提交
538
			aed = (struct allocExtDesc *)(epos.bh->b_data);
539
			aed->previousAllocExtLocation = cpu_to_le32(oepos.block.logicalBlockNum);
540
			if (epos.offset + adsize > sb->s_blocksize) {
J
Jan Kara 已提交
541
				loffset = epos.offset;
L
Linus Torvalds 已提交
542
				aed->lengthAllocDescs = cpu_to_le32(adsize);
543
				sptr = UDF_I_DATA(table) + epos.offset - adsize;
544
				dptr = epos.bh->b_data + sizeof(struct allocExtDesc);
L
Linus Torvalds 已提交
545
				memcpy(dptr, sptr, adsize);
546
				epos.offset = sizeof(struct allocExtDesc) + adsize;
547
			} else {
J
Jan Kara 已提交
548
				loffset = epos.offset + adsize;
L
Linus Torvalds 已提交
549
				aed->lengthAllocDescs = cpu_to_le32(0);
550
				if (oepos.bh) {
551
					sptr = oepos.bh->b_data + epos.offset;
552
					aed = (struct allocExtDesc *)oepos.bh->b_data;
L
Linus Torvalds 已提交
553
					aed->lengthAllocDescs =
554
						cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) + adsize);
555
				} else {
556
					sptr = UDF_I_DATA(table) + epos.offset;
L
Linus Torvalds 已提交
557 558 559
					UDF_I_LENALLOC(table) += adsize;
					mark_inode_dirty(table);
				}
560
				epos.offset = sizeof(struct allocExtDesc);
L
Linus Torvalds 已提交
561 562
			}
			if (UDF_SB_UDFREV(sb) >= 0x0200)
563 564
				udf_new_tag(epos.bh->b_data, TAG_IDENT_AED, 3, 1,
					    epos.block.logicalBlockNum, sizeof(tag));
L
Linus Torvalds 已提交
565
			else
566 567 568
				udf_new_tag(epos.bh->b_data, TAG_IDENT_AED, 2, 1,
					    epos.block.logicalBlockNum, sizeof(tag));

569
			switch (UDF_I_ALLOCTYPE(table)) {
570 571 572 573 574 575
				case ICBTAG_FLAG_AD_SHORT:
					sad = (short_ad *)sptr;
					sad->extLength = cpu_to_le32(
						EXT_NEXT_EXTENT_ALLOCDECS |
						sb->s_blocksize);
					sad->extPosition = cpu_to_le32(epos.block.logicalBlockNum);
L
Linus Torvalds 已提交
576
					break;
577 578 579 580 581 582
				case ICBTAG_FLAG_AD_LONG:
					lad = (long_ad *)sptr;
					lad->extLength = cpu_to_le32(
						EXT_NEXT_EXTENT_ALLOCDECS |
						sb->s_blocksize);
					lad->extLocation = cpu_to_lelb(epos.block);
L
Linus Torvalds 已提交
583 584
					break;
			}
585
			if (oepos.bh) {
J
Jan Kara 已提交
586 587
				udf_update_tag(oepos.bh->b_data, loffset);
				mark_buffer_dirty(oepos.bh);
588
			} else {
L
Linus Torvalds 已提交
589
				mark_inode_dirty(table);
590
			}
L
Linus Torvalds 已提交
591 592
		}

593
		if (elen) { /* It's possible that stealing the block emptied the extent */
J
Jan Kara 已提交
594
			udf_write_aext(table, &epos, eloc, elen, 1);
L
Linus Torvalds 已提交
595

596
			if (!epos.bh) {
L
Linus Torvalds 已提交
597 598
				UDF_I_LENALLOC(table) += adsize;
				mark_inode_dirty(table);
599
			} else {
J
Jan Kara 已提交
600
				aed = (struct allocExtDesc *)epos.bh->b_data;
L
Linus Torvalds 已提交
601
				aed->lengthAllocDescs =
602
					cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) + adsize);
J
Jan Kara 已提交
603 604
				udf_update_tag(epos.bh->b_data, epos.offset);
				mark_buffer_dirty(epos.bh);
L
Linus Torvalds 已提交
605 606 607 608
			}
		}
	}

J
Jan Kara 已提交
609 610
	brelse(epos.bh);
	brelse(oepos.bh);
L
Linus Torvalds 已提交
611

612
error_return:
L
Linus Torvalds 已提交
613
	sb->s_dirt = 1;
I
Ingo Molnar 已提交
614
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
615 616 617
	return;
}

618 619 620 621
static int udf_table_prealloc_blocks(struct super_block *sb,
				     struct inode *inode,
				     struct inode *table, uint16_t partition,
				     uint32_t first_block, uint32_t block_count)
L
Linus Torvalds 已提交
622 623 624
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	int alloc_count = 0;
J
Jan Kara 已提交
625 626 627
	uint32_t elen, adsize;
	kernel_lb_addr eloc;
	struct extent_position epos;
L
Linus Torvalds 已提交
628 629 630 631 632 633 634 635 636 637 638 639
	int8_t etype = -1;

	if (first_block < 0 || first_block >= UDF_SB_PARTLEN(sb, partition))
		return 0;

	if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_SHORT)
		adsize = sizeof(short_ad);
	else if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_LONG)
		adsize = sizeof(long_ad);
	else
		return 0;

I
Ingo Molnar 已提交
640
	mutex_lock(&sbi->s_alloc_mutex);
J
Jan Kara 已提交
641 642 643
	epos.offset = sizeof(struct unallocSpaceEntry);
	epos.block = UDF_I_LOCATION(table);
	epos.bh = NULL;
L
Linus Torvalds 已提交
644 645
	eloc.logicalBlockNum = 0xFFFFFFFF;

646 647
	while (first_block != eloc.logicalBlockNum &&
	       (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
L
Linus Torvalds 已提交
648
		udf_debug("eloc=%d, elen=%d, first_block=%d\n",
649
			  eloc.logicalBlockNum, elen, first_block);
650
		; /* empty loop body */
L
Linus Torvalds 已提交
651 652
	}

653
	if (first_block == eloc.logicalBlockNum) {
J
Jan Kara 已提交
654
		epos.offset -= adsize;
L
Linus Torvalds 已提交
655 656

		alloc_count = (elen >> sb->s_blocksize_bits);
657
		if (inode && DQUOT_PREALLOC_BLOCK(inode, alloc_count > block_count ? block_count : alloc_count)) {
L
Linus Torvalds 已提交
658
			alloc_count = 0;
659
		} else if (alloc_count > block_count) {
L
Linus Torvalds 已提交
660 661 662
			alloc_count = block_count;
			eloc.logicalBlockNum += alloc_count;
			elen -= (alloc_count << sb->s_blocksize_bits);
663 664 665 666 667
			udf_write_aext(table, &epos, eloc, (etype << 30) | elen, 1);
		} else {
			udf_delete_aext(table, epos, eloc, (etype << 30) | elen);
		}
	} else {
L
Linus Torvalds 已提交
668
		alloc_count = 0;
669
	}
L
Linus Torvalds 已提交
670

J
Jan Kara 已提交
671
	brelse(epos.bh);
L
Linus Torvalds 已提交
672

673
	if (alloc_count && UDF_SB_LVIDBH(sb)) {
L
Linus Torvalds 已提交
674
		UDF_SB_LVID(sb)->freeSpaceTable[partition] =
675
			cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition]) - alloc_count);
L
Linus Torvalds 已提交
676 677 678
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
		sb->s_dirt = 1;
	}
I
Ingo Molnar 已提交
679
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
680 681 682
	return alloc_count;
}

683 684 685 686
static int udf_table_new_block(struct super_block *sb,
			       struct inode *inode,
			       struct inode *table, uint16_t partition,
			       uint32_t goal, int *err)
L
Linus Torvalds 已提交
687 688 689 690
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF;
	uint32_t newblock = 0, adsize;
J
Jan Kara 已提交
691 692 693
	uint32_t elen, goal_elen = 0;
	kernel_lb_addr eloc, goal_eloc;
	struct extent_position epos, goal_epos;
L
Linus Torvalds 已提交
694 695 696 697 698 699 700 701 702 703 704
	int8_t etype;

	*err = -ENOSPC;

	if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_SHORT)
		adsize = sizeof(short_ad);
	else if (UDF_I_ALLOCTYPE(table) == ICBTAG_FLAG_AD_LONG)
		adsize = sizeof(long_ad);
	else
		return newblock;

I
Ingo Molnar 已提交
705
	mutex_lock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
706 707 708 709 710 711 712
	if (goal < 0 || goal >= UDF_SB_PARTLEN(sb, partition))
		goal = 0;

	/* We search for the closest matching block to goal. If we find a exact hit,
	   we stop. Otherwise we keep going till we run out of extents.
	   We store the buffer_head, bloc, and extoffset of the current closest
	   match and use that when we are done.
713
	 */
J
Jan Kara 已提交
714 715 716
	epos.offset = sizeof(struct unallocSpaceEntry);
	epos.block = UDF_I_LOCATION(table);
	epos.bh = goal_epos.bh = NULL;
L
Linus Torvalds 已提交
717

718 719
	while (spread &&
	       (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
720
		if (goal >= eloc.logicalBlockNum) {
721
			if (goal < eloc.logicalBlockNum + (elen >> sb->s_blocksize_bits))
L
Linus Torvalds 已提交
722 723 724
				nspread = 0;
			else
				nspread = goal - eloc.logicalBlockNum -
725 726
					(elen >> sb->s_blocksize_bits);
		} else {
L
Linus Torvalds 已提交
727
			nspread = eloc.logicalBlockNum - goal;
728
		}
L
Linus Torvalds 已提交
729

730
		if (nspread < spread) {
L
Linus Torvalds 已提交
731
			spread = nspread;
732
			if (goal_epos.bh != epos.bh) {
J
Jan Kara 已提交
733
				brelse(goal_epos.bh);
J
Jan Kara 已提交
734
				goal_epos.bh = epos.bh;
J
Jan Kara 已提交
735
				get_bh(goal_epos.bh);
L
Linus Torvalds 已提交
736
			}
J
Jan Kara 已提交
737 738
			goal_epos.block = epos.block;
			goal_epos.offset = epos.offset - adsize;
L
Linus Torvalds 已提交
739 740 741 742 743
			goal_eloc = eloc;
			goal_elen = (etype << 30) | elen;
		}
	}

J
Jan Kara 已提交
744
	brelse(epos.bh);
L
Linus Torvalds 已提交
745

746
	if (spread == 0xFFFFFFFF) {
J
Jan Kara 已提交
747
		brelse(goal_epos.bh);
I
Ingo Molnar 已提交
748
		mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
749 750 751 752 753 754 755 756 757
		return 0;
	}

	/* Only allocate blocks from the beginning of the extent.
	   That way, we only delete (empty) extents, never have to insert an
	   extent because of splitting */
	/* This works, but very poorly.... */

	newblock = goal_eloc.logicalBlockNum;
758
	goal_eloc.logicalBlockNum++;
L
Linus Torvalds 已提交
759 760
	goal_elen -= sb->s_blocksize;

761
	if (inode && DQUOT_ALLOC_BLOCK(inode, 1)) {
J
Jan Kara 已提交
762
		brelse(goal_epos.bh);
I
Ingo Molnar 已提交
763
		mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
764 765 766 767 768
		*err = -EDQUOT;
		return 0;
	}

	if (goal_elen)
J
Jan Kara 已提交
769
		udf_write_aext(table, &goal_epos, goal_eloc, goal_elen, 1);
L
Linus Torvalds 已提交
770
	else
J
Jan Kara 已提交
771
		udf_delete_aext(table, goal_epos, goal_eloc, goal_elen);
J
Jan Kara 已提交
772
	brelse(goal_epos.bh);
L
Linus Torvalds 已提交
773

774
	if (UDF_SB_LVIDBH(sb)) {
L
Linus Torvalds 已提交
775
		UDF_SB_LVID(sb)->freeSpaceTable[partition] =
776
			cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition]) - 1);
L
Linus Torvalds 已提交
777 778 779 780
		mark_buffer_dirty(UDF_SB_LVIDBH(sb));
	}

	sb->s_dirt = 1;
I
Ingo Molnar 已提交
781
	mutex_unlock(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
782 783 784 785
	*err = 0;
	return newblock;
}

786 787 788 789
inline void udf_free_blocks(struct super_block *sb,
			    struct inode *inode,
			    kernel_lb_addr bloc, uint32_t offset,
			    uint32_t count)
L
Linus Torvalds 已提交
790 791 792
{
	uint16_t partition = bloc.partitionReferenceNum;

793
	if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_BITMAP) {
L
Linus Torvalds 已提交
794
		return udf_bitmap_free_blocks(sb, inode,
795 796 797
					      UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_bitmap,
					      bloc, offset, count);
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_TABLE) {
L
Linus Torvalds 已提交
798
		return udf_table_free_blocks(sb, inode,
799 800
					     UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_table,
					     bloc, offset, count);
801
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_BITMAP) {
L
Linus Torvalds 已提交
802
		return udf_bitmap_free_blocks(sb, inode,
803 804
					      UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_bitmap,
					      bloc, offset, count);
805
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_TABLE) {
L
Linus Torvalds 已提交
806
		return udf_table_free_blocks(sb, inode,
807 808 809
					     UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_table,
					     bloc, offset, count);
	} else {
L
Linus Torvalds 已提交
810
		return;
811
	}
L
Linus Torvalds 已提交
812 813
}

814 815 816 817
inline int udf_prealloc_blocks(struct super_block *sb,
			       struct inode *inode,
			       uint16_t partition, uint32_t first_block,
			       uint32_t block_count)
L
Linus Torvalds 已提交
818
{
819
	if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_BITMAP) {
L
Linus Torvalds 已提交
820
		return udf_bitmap_prealloc_blocks(sb, inode,
821 822 823
						  UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_bitmap,
						  partition, first_block, block_count);
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_TABLE) {
L
Linus Torvalds 已提交
824
		return udf_table_prealloc_blocks(sb, inode,
825 826
						 UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_table,
						 partition, first_block, block_count);
827
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_BITMAP) {
L
Linus Torvalds 已提交
828
		return udf_bitmap_prealloc_blocks(sb, inode,
829 830
						  UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_bitmap,
						  partition, first_block, block_count);
831
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_TABLE) {
L
Linus Torvalds 已提交
832
		return udf_table_prealloc_blocks(sb, inode,
833 834 835
						 UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_table,
						 partition, first_block, block_count);
	} else {
L
Linus Torvalds 已提交
836
		return 0;
837
	}
L
Linus Torvalds 已提交
838 839
}

840 841 842
inline int udf_new_block(struct super_block *sb,
			 struct inode *inode,
			 uint16_t partition, uint32_t goal, int *err)
L
Linus Torvalds 已提交
843
{
J
Jan Kara 已提交
844 845
	int ret;

846
	if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_BITMAP) {
J
Jan Kara 已提交
847
		ret = udf_bitmap_new_block(sb, inode,
848 849
					   UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_bitmap,
					   partition, goal, err);
J
Jan Kara 已提交
850
		return ret;
851
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_UNALLOC_TABLE) {
L
Linus Torvalds 已提交
852
		return udf_table_new_block(sb, inode,
853 854
					   UDF_SB_PARTMAPS(sb)[partition].s_uspace.s_table,
					   partition, goal, err);
855
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_BITMAP) {
L
Linus Torvalds 已提交
856
		return udf_bitmap_new_block(sb, inode,
857 858
					    UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_bitmap,
					    partition, goal, err);
859
	} else if (UDF_SB_PARTFLAGS(sb, partition) & UDF_PART_FLAG_FREED_TABLE) {
L
Linus Torvalds 已提交
860
		return udf_table_new_block(sb, inode,
861 862
					   UDF_SB_PARTMAPS(sb)[partition].s_fspace.s_table,
					   partition, goal, err);
863
	} else {
L
Linus Torvalds 已提交
864 865 866 867
		*err = -EIO;
		return 0;
	}
}