]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/udf/balloc.c
reiserfs: use little-endian bitops
[mirror_ubuntu-hirsute-kernel.git] / fs / udf / balloc.c
CommitLineData
1da177e4
LT
1/*
2 * balloc.c
3 *
4 * PURPOSE
5 * Block allocation handling routines for the OSTA-UDF(tm) filesystem.
6 *
1da177e4
LT
7 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1999-2001 Ben Fennema
14 * (C) 1999 Stelias Computing Inc
15 *
16 * HISTORY
17 *
18 * 02/24/99 blf Created.
19 *
20 */
21
22#include "udfdecl.h"
23
1da177e4
LT
24#include <linux/buffer_head.h>
25#include <linux/bitops.h>
26
27#include "udf_i.h"
28#include "udf_sb.h"
29
4b11111a
MS
30#define udf_clear_bit(nr, addr) ext2_clear_bit(nr, addr)
31#define udf_set_bit(nr, addr) ext2_set_bit(nr, addr)
1da177e4 32#define udf_test_bit(nr, addr) ext2_test_bit(nr, addr)
4b11111a 33#define udf_find_next_one_bit(addr, size, offset) \
6f644e5f 34 ext2_find_next_bit((unsigned long *)(addr), size, offset)
1da177e4 35
cb00ea35
CG
36static int read_block_bitmap(struct super_block *sb,
37 struct udf_bitmap *bitmap, unsigned int block,
38 unsigned long bitmap_nr)
1da177e4
LT
39{
40 struct buffer_head *bh = NULL;
41 int retval = 0;
5ca4e4be 42 struct kernel_lb_addr loc;
1da177e4
LT
43
44 loc.logicalBlockNum = bitmap->s_extPosition;
6c79e987 45 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
1da177e4 46
97e961fd 47 bh = udf_tread(sb, udf_get_lb_pblock(sb, &loc, block));
4b11111a 48 if (!bh)
1da177e4 49 retval = -EIO;
4b11111a 50
1da177e4
LT
51 bitmap->s_block_bitmap[bitmap_nr] = bh;
52 return retval;
53}
54
cb00ea35
CG
55static int __load_block_bitmap(struct super_block *sb,
56 struct udf_bitmap *bitmap,
57 unsigned int block_group)
1da177e4
LT
58{
59 int retval = 0;
60 int nr_groups = bitmap->s_nr_groups;
61
cb00ea35
CG
62 if (block_group >= nr_groups) {
63 udf_debug("block_group (%d) > nr_groups (%d)\n", block_group,
64 nr_groups);
1da177e4
LT
65 }
66
28de7948 67 if (bitmap->s_block_bitmap[block_group]) {
1da177e4 68 return block_group;
28de7948
CG
69 } else {
70 retval = read_block_bitmap(sb, bitmap, block_group,
71 block_group);
1da177e4
LT
72 if (retval < 0)
73 return retval;
74 return block_group;
75 }
76}
77
cb00ea35
CG
78static inline int load_block_bitmap(struct super_block *sb,
79 struct udf_bitmap *bitmap,
80 unsigned int block_group)
1da177e4
LT
81{
82 int slot;
83
84 slot = __load_block_bitmap(sb, bitmap, block_group);
85
86 if (slot < 0)
87 return slot;
88
89 if (!bitmap->s_block_bitmap[slot])
90 return -EIO;
91
92 return slot;
93}
94
146bca72 95static void udf_add_free_space(struct super_block *sb, u16 partition, u32 cnt)
742ba02a 96{
146bca72 97 struct udf_sb_info *sbi = UDF_SB(sb);
742ba02a
MS
98 struct logicalVolIntegrityDesc *lvid;
99
146bca72
JK
100 if (!sbi->s_lvid_bh)
101 return;
742ba02a
MS
102
103 lvid = (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
c2104fda 104 le32_add_cpu(&lvid->freeSpaceTable[partition], cnt);
146bca72 105 udf_updated_lvid(sb);
742ba02a
MS
106}
107
cb00ea35
CG
108static void udf_bitmap_free_blocks(struct super_block *sb,
109 struct inode *inode,
110 struct udf_bitmap *bitmap,
97e961fd
PE
111 struct kernel_lb_addr *bloc,
112 uint32_t offset,
cb00ea35 113 uint32_t count)
1da177e4
LT
114{
115 struct udf_sb_info *sbi = UDF_SB(sb);
cb00ea35 116 struct buffer_head *bh = NULL;
97e961fd 117 struct udf_part_map *partmap;
1da177e4
LT
118 unsigned long block;
119 unsigned long block_group;
120 unsigned long bit;
121 unsigned long i;
122 int bitmap_nr;
123 unsigned long overflow;
124
1e7933de 125 mutex_lock(&sbi->s_alloc_mutex);
97e961fd 126 partmap = &sbi->s_partmaps[bloc->partitionReferenceNum];
69ecbbed
DC
127 if (bloc->logicalBlockNum + count < count ||
128 (bloc->logicalBlockNum + count) > partmap->s_partition_len) {
28de7948 129 udf_debug("%d < %d || %d + %d > %d\n",
97e961fd
PE
130 bloc->logicalBlockNum, 0, bloc->logicalBlockNum,
131 count, partmap->s_partition_len);
1da177e4
LT
132 goto error_return;
133 }
134
97e961fd 135 block = bloc->logicalBlockNum + offset +
4b11111a 136 (sizeof(struct spaceBitmapDesc) << 3);
1da177e4 137
4daa1b87
MS
138 do {
139 overflow = 0;
140 block_group = block >> (sb->s_blocksize_bits + 3);
141 bit = block % (sb->s_blocksize << 3);
142
143 /*
144 * Check to see if we are freeing blocks across a group boundary.
145 */
146 if (bit + count > (sb->s_blocksize << 3)) {
147 overflow = bit + count - (sb->s_blocksize << 3);
148 count -= overflow;
1da177e4 149 }
4daa1b87
MS
150 bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
151 if (bitmap_nr < 0)
152 goto error_return;
153
154 bh = bitmap->s_block_bitmap[bitmap_nr];
155 for (i = 0; i < count; i++) {
156 if (udf_set_bit(bit + i, bh->b_data)) {
157 udf_debug("bit %ld already set\n", bit + i);
158 udf_debug("byte=%2x\n",
159 ((char *)bh->b_data)[(bit + i) >> 3]);
4daa1b87
MS
160 }
161 }
7abc2e45 162 udf_add_free_space(sb, sbi->s_partition, count);
4daa1b87
MS
163 mark_buffer_dirty(bh);
164 if (overflow) {
165 block += count;
166 count = overflow;
167 }
168 } while (overflow);
169
28de7948 170error_return:
1e7933de 171 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
172}
173
cb00ea35
CG
174static int udf_bitmap_prealloc_blocks(struct super_block *sb,
175 struct inode *inode,
176 struct udf_bitmap *bitmap,
177 uint16_t partition, uint32_t first_block,
178 uint32_t block_count)
1da177e4
LT
179{
180 struct udf_sb_info *sbi = UDF_SB(sb);
181 int alloc_count = 0;
182 int bit, block, block_group, group_start;
183 int nr_groups, bitmap_nr;
184 struct buffer_head *bh;
6c79e987 185 __u32 part_len;
1da177e4 186
1e7933de 187 mutex_lock(&sbi->s_alloc_mutex);
6c79e987 188 part_len = sbi->s_partmaps[partition].s_partition_len;
3391faa4 189 if (first_block >= part_len)
1da177e4
LT
190 goto out;
191
6c79e987
MS
192 if (first_block + block_count > part_len)
193 block_count = part_len - first_block;
1da177e4 194
4daa1b87
MS
195 do {
196 nr_groups = udf_compute_nr_groups(sb, partition);
197 block = first_block + (sizeof(struct spaceBitmapDesc) << 3);
198 block_group = block >> (sb->s_blocksize_bits + 3);
199 group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);
1da177e4 200
4daa1b87
MS
201 bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
202 if (bitmap_nr < 0)
203 goto out;
204 bh = bitmap->s_block_bitmap[bitmap_nr];
1da177e4 205
4daa1b87 206 bit = block % (sb->s_blocksize << 3);
1da177e4 207
4daa1b87 208 while (bit < (sb->s_blocksize << 3) && block_count > 0) {
36350462 209 if (!udf_clear_bit(bit, bh->b_data))
4daa1b87 210 goto out;
4daa1b87
MS
211 block_count--;
212 alloc_count++;
213 bit++;
214 block++;
1da177e4 215 }
4daa1b87
MS
216 mark_buffer_dirty(bh);
217 } while (block_count > 0);
218
28de7948 219out:
146bca72 220 udf_add_free_space(sb, partition, -alloc_count);
1e7933de 221 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
222 return alloc_count;
223}
224
cb00ea35
CG
225static int udf_bitmap_new_block(struct super_block *sb,
226 struct inode *inode,
227 struct udf_bitmap *bitmap, uint16_t partition,
228 uint32_t goal, int *err)
1da177e4
LT
229{
230 struct udf_sb_info *sbi = UDF_SB(sb);
cb00ea35 231 int newbit, bit = 0, block, block_group, group_start;
1da177e4
LT
232 int end_goal, nr_groups, bitmap_nr, i;
233 struct buffer_head *bh = NULL;
234 char *ptr;
235 int newblock = 0;
236
237 *err = -ENOSPC;
1e7933de 238 mutex_lock(&sbi->s_alloc_mutex);
1da177e4 239
28de7948 240repeat:
3391faa4 241 if (goal >= sbi->s_partmaps[partition].s_partition_len)
1da177e4
LT
242 goal = 0;
243
244 nr_groups = bitmap->s_nr_groups;
245 block = goal + (sizeof(struct spaceBitmapDesc) << 3);
246 block_group = block >> (sb->s_blocksize_bits + 3);
247 group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);
248
249 bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
250 if (bitmap_nr < 0)
251 goto error_return;
252 bh = bitmap->s_block_bitmap[bitmap_nr];
28de7948
CG
253 ptr = memscan((char *)bh->b_data + group_start, 0xFF,
254 sb->s_blocksize - group_start);
1da177e4 255
cb00ea35 256 if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
1da177e4 257 bit = block % (sb->s_blocksize << 3);
28de7948 258 if (udf_test_bit(bit, bh->b_data))
1da177e4 259 goto got_block;
28de7948 260
1da177e4
LT
261 end_goal = (bit + 63) & ~63;
262 bit = udf_find_next_one_bit(bh->b_data, end_goal, bit);
263 if (bit < end_goal)
264 goto got_block;
28de7948 265
4b11111a
MS
266 ptr = memscan((char *)bh->b_data + (bit >> 3), 0xFF,
267 sb->s_blocksize - ((bit + 7) >> 3));
1da177e4 268 newbit = (ptr - ((char *)bh->b_data)) << 3;
cb00ea35 269 if (newbit < sb->s_blocksize << 3) {
1da177e4
LT
270 bit = newbit;
271 goto search_back;
272 }
28de7948 273
4b11111a
MS
274 newbit = udf_find_next_one_bit(bh->b_data,
275 sb->s_blocksize << 3, bit);
cb00ea35 276 if (newbit < sb->s_blocksize << 3) {
1da177e4
LT
277 bit = newbit;
278 goto got_block;
279 }
280 }
281
cb00ea35
CG
282 for (i = 0; i < (nr_groups * 2); i++) {
283 block_group++;
1da177e4
LT
284 if (block_group >= nr_groups)
285 block_group = 0;
286 group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);
287
288 bitmap_nr = load_block_bitmap(sb, bitmap, block_group);
289 if (bitmap_nr < 0)
290 goto error_return;
291 bh = bitmap->s_block_bitmap[bitmap_nr];
cb00ea35 292 if (i < nr_groups) {
28de7948
CG
293 ptr = memscan((char *)bh->b_data + group_start, 0xFF,
294 sb->s_blocksize - group_start);
cb00ea35 295 if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
1da177e4
LT
296 bit = (ptr - ((char *)bh->b_data)) << 3;
297 break;
298 }
cb00ea35 299 } else {
6f644e5f 300 bit = udf_find_next_one_bit(bh->b_data,
28de7948
CG
301 sb->s_blocksize << 3,
302 group_start << 3);
1da177e4
LT
303 if (bit < sb->s_blocksize << 3)
304 break;
305 }
306 }
cb00ea35 307 if (i >= (nr_groups * 2)) {
1e7933de 308 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
309 return newblock;
310 }
311 if (bit < sb->s_blocksize << 3)
312 goto search_back;
313 else
4b11111a
MS
314 bit = udf_find_next_one_bit(bh->b_data, sb->s_blocksize << 3,
315 group_start << 3);
cb00ea35 316 if (bit >= sb->s_blocksize << 3) {
1e7933de 317 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
318 return 0;
319 }
320
28de7948 321search_back:
4b11111a
MS
322 i = 0;
323 while (i < 7 && bit > (group_start << 3) &&
324 udf_test_bit(bit - 1, bh->b_data)) {
325 ++i;
326 --bit;
327 }
1da177e4 328
28de7948 329got_block:
1da177e4 330 newblock = bit + (block_group << (sb->s_blocksize_bits + 3)) -
28de7948 331 (sizeof(struct spaceBitmapDesc) << 3);
1da177e4 332
cb00ea35 333 if (!udf_clear_bit(bit, bh->b_data)) {
1da177e4
LT
334 udf_debug("bit already cleared for block %d\n", bit);
335 goto repeat;
336 }
337
338 mark_buffer_dirty(bh);
339
146bca72 340 udf_add_free_space(sb, partition, -1);
1e7933de 341 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
342 *err = 0;
343 return newblock;
344
28de7948 345error_return:
1da177e4 346 *err = -EIO;
1e7933de 347 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
348 return 0;
349}
350
cb00ea35
CG
351static void udf_table_free_blocks(struct super_block *sb,
352 struct inode *inode,
353 struct inode *table,
97e961fd
PE
354 struct kernel_lb_addr *bloc,
355 uint32_t offset,
cb00ea35 356 uint32_t count)
1da177e4
LT
357{
358 struct udf_sb_info *sbi = UDF_SB(sb);
97e961fd 359 struct udf_part_map *partmap;
1da177e4 360 uint32_t start, end;
ff116fc8 361 uint32_t elen;
5ca4e4be 362 struct kernel_lb_addr eloc;
ff116fc8 363 struct extent_position oepos, epos;
1da177e4
LT
364 int8_t etype;
365 int i;
48d6d8ff 366 struct udf_inode_info *iinfo;
1da177e4 367
1e7933de 368 mutex_lock(&sbi->s_alloc_mutex);
97e961fd 369 partmap = &sbi->s_partmaps[bloc->partitionReferenceNum];
69ecbbed
DC
370 if (bloc->logicalBlockNum + count < count ||
371 (bloc->logicalBlockNum + count) > partmap->s_partition_len) {
28de7948 372 udf_debug("%d < %d || %d + %d > %d\n",
1fefd086 373 bloc->logicalBlockNum, 0, bloc->logicalBlockNum, count,
97e961fd 374 partmap->s_partition_len);
1da177e4
LT
375 goto error_return;
376 }
377
48d6d8ff 378 iinfo = UDF_I(table);
146bca72 379 udf_add_free_space(sb, sbi->s_partition, count);
1da177e4 380
97e961fd
PE
381 start = bloc->logicalBlockNum + offset;
382 end = bloc->logicalBlockNum + offset + count - 1;
1da177e4 383
ff116fc8 384 epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry);
1da177e4 385 elen = 0;
48d6d8ff 386 epos.block = oepos.block = iinfo->i_location;
ff116fc8 387 epos.bh = oepos.bh = NULL;
1da177e4 388
28de7948
CG
389 while (count &&
390 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
4b11111a
MS
391 if (((eloc.logicalBlockNum +
392 (elen >> sb->s_blocksize_bits)) == start)) {
393 if ((0x3FFFFFFF - elen) <
394 (count << sb->s_blocksize_bits)) {
395 uint32_t tmp = ((0x3FFFFFFF - elen) >>
396 sb->s_blocksize_bits);
397 count -= tmp;
398 start += tmp;
399 elen = (etype << 30) |
400 (0x40000000 - sb->s_blocksize);
cb00ea35 401 } else {
4b11111a
MS
402 elen = (etype << 30) |
403 (elen +
404 (count << sb->s_blocksize_bits));
1da177e4
LT
405 start += count;
406 count = 0;
407 }
97e961fd 408 udf_write_aext(table, &oepos, &eloc, elen, 1);
cb00ea35 409 } else if (eloc.logicalBlockNum == (end + 1)) {
4b11111a
MS
410 if ((0x3FFFFFFF - elen) <
411 (count << sb->s_blocksize_bits)) {
412 uint32_t tmp = ((0x3FFFFFFF - elen) >>
413 sb->s_blocksize_bits);
414 count -= tmp;
415 end -= tmp;
416 eloc.logicalBlockNum -= tmp;
417 elen = (etype << 30) |
418 (0x40000000 - sb->s_blocksize);
cb00ea35 419 } else {
1da177e4 420 eloc.logicalBlockNum = start;
4b11111a
MS
421 elen = (etype << 30) |
422 (elen +
423 (count << sb->s_blocksize_bits));
1da177e4
LT
424 end -= count;
425 count = 0;
426 }
97e961fd 427 udf_write_aext(table, &oepos, &eloc, elen, 1);
1da177e4
LT
428 }
429
cb00ea35 430 if (epos.bh != oepos.bh) {
1da177e4 431 i = -1;
ff116fc8 432 oepos.block = epos.block;
3bf25cb4
JK
433 brelse(oepos.bh);
434 get_bh(epos.bh);
ff116fc8
JK
435 oepos.bh = epos.bh;
436 oepos.offset = 0;
28de7948 437 } else {
ff116fc8 438 oepos.offset = epos.offset;
28de7948 439 }
1da177e4
LT
440 }
441
cb00ea35 442 if (count) {
28de7948 443 /*
4b11111a
MS
444 * NOTE: we CANNOT use udf_add_aext here, as it can try to
445 * allocate a new block, and since we hold the super block
446 * lock already very bad things would happen :)
28de7948
CG
447 *
448 * We copy the behavior of udf_add_aext, but instead of
449 * trying to allocate a new block close to the existing one,
450 * we just steal a block from the extent we are trying to add.
451 *
452 * It would be nice if the blocks were close together, but it
453 * isn't required.
cb00ea35 454 */
1da177e4
LT
455
456 int adsize;
5ca4e4be
PE
457 struct short_ad *sad = NULL;
458 struct long_ad *lad = NULL;
1da177e4
LT
459 struct allocExtDesc *aed;
460
461 eloc.logicalBlockNum = start;
28de7948
CG
462 elen = EXT_RECORDED_ALLOCATED |
463 (count << sb->s_blocksize_bits);
1da177e4 464
48d6d8ff 465 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 466 adsize = sizeof(struct short_ad);
48d6d8ff 467 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 468 adsize = sizeof(struct long_ad);
48d6d8ff 469 else {
3bf25cb4
JK
470 brelse(oepos.bh);
471 brelse(epos.bh);
1da177e4
LT
472 goto error_return;
473 }
474
cb00ea35 475 if (epos.offset + (2 * adsize) > sb->s_blocksize) {
391e8bbd 476 unsigned char *sptr, *dptr;
1da177e4 477 int loffset;
cb00ea35 478
3bf25cb4 479 brelse(oepos.bh);
ff116fc8 480 oepos = epos;
1da177e4
LT
481
482 /* Steal a block from the extent being free'd */
ff116fc8 483 epos.block.logicalBlockNum = eloc.logicalBlockNum;
cb00ea35 484 eloc.logicalBlockNum++;
1da177e4
LT
485 elen -= sb->s_blocksize;
486
4b11111a 487 epos.bh = udf_tread(sb,
97e961fd 488 udf_get_lb_pblock(sb, &epos.block, 0));
4b11111a 489 if (!epos.bh) {
3bf25cb4 490 brelse(oepos.bh);
1da177e4
LT
491 goto error_return;
492 }
ff116fc8 493 aed = (struct allocExtDesc *)(epos.bh->b_data);
4b11111a
MS
494 aed->previousAllocExtLocation =
495 cpu_to_le32(oepos.block.logicalBlockNum);
cb00ea35 496 if (epos.offset + adsize > sb->s_blocksize) {
ff116fc8 497 loffset = epos.offset;
1da177e4 498 aed->lengthAllocDescs = cpu_to_le32(adsize);
48d6d8ff 499 sptr = iinfo->i_ext.i_data + epos.offset
c0b34438 500 - adsize;
4b11111a
MS
501 dptr = epos.bh->b_data +
502 sizeof(struct allocExtDesc);
1da177e4 503 memcpy(dptr, sptr, adsize);
4b11111a
MS
504 epos.offset = sizeof(struct allocExtDesc) +
505 adsize;
cb00ea35 506 } else {
ff116fc8 507 loffset = epos.offset + adsize;
1da177e4 508 aed->lengthAllocDescs = cpu_to_le32(0);
cb00ea35 509 if (oepos.bh) {
f5cc15da 510 sptr = oepos.bh->b_data + epos.offset;
4b11111a
MS
511 aed = (struct allocExtDesc *)
512 oepos.bh->b_data;
c2104fda 513 le32_add_cpu(&aed->lengthAllocDescs,
514 adsize);
cb00ea35 515 } else {
48d6d8ff 516 sptr = iinfo->i_ext.i_data +
c0b34438 517 epos.offset;
48d6d8ff 518 iinfo->i_lenAlloc += adsize;
1da177e4
LT
519 mark_inode_dirty(table);
520 }
f5cc15da 521 epos.offset = sizeof(struct allocExtDesc);
1da177e4 522 }
6c79e987 523 if (sbi->s_udfrev >= 0x0200)
4b11111a
MS
524 udf_new_tag(epos.bh->b_data, TAG_IDENT_AED,
525 3, 1, epos.block.logicalBlockNum,
5ca4e4be 526 sizeof(struct tag));
1da177e4 527 else
4b11111a
MS
528 udf_new_tag(epos.bh->b_data, TAG_IDENT_AED,
529 2, 1, epos.block.logicalBlockNum,
5ca4e4be 530 sizeof(struct tag));
28de7948 531
48d6d8ff 532 switch (iinfo->i_alloc_type) {
4b11111a 533 case ICBTAG_FLAG_AD_SHORT:
5ca4e4be 534 sad = (struct short_ad *)sptr;
4b11111a
MS
535 sad->extLength = cpu_to_le32(
536 EXT_NEXT_EXTENT_ALLOCDECS |
537 sb->s_blocksize);
538 sad->extPosition =
539 cpu_to_le32(epos.block.logicalBlockNum);
540 break;
541 case ICBTAG_FLAG_AD_LONG:
5ca4e4be 542 lad = (struct long_ad *)sptr;
4b11111a
MS
543 lad->extLength = cpu_to_le32(
544 EXT_NEXT_EXTENT_ALLOCDECS |
545 sb->s_blocksize);
546 lad->extLocation =
547 cpu_to_lelb(epos.block);
548 break;
1da177e4 549 }
cb00ea35 550 if (oepos.bh) {
ff116fc8
JK
551 udf_update_tag(oepos.bh->b_data, loffset);
552 mark_buffer_dirty(oepos.bh);
28de7948 553 } else {
1da177e4 554 mark_inode_dirty(table);
28de7948 555 }
1da177e4
LT
556 }
557
4b11111a
MS
558 /* It's possible that stealing the block emptied the extent */
559 if (elen) {
97e961fd 560 udf_write_aext(table, &epos, &eloc, elen, 1);
1da177e4 561
cb00ea35 562 if (!epos.bh) {
48d6d8ff 563 iinfo->i_lenAlloc += adsize;
1da177e4 564 mark_inode_dirty(table);
cb00ea35 565 } else {
ff116fc8 566 aed = (struct allocExtDesc *)epos.bh->b_data;
c2104fda 567 le32_add_cpu(&aed->lengthAllocDescs, adsize);
ff116fc8
JK
568 udf_update_tag(epos.bh->b_data, epos.offset);
569 mark_buffer_dirty(epos.bh);
1da177e4
LT
570 }
571 }
572 }
573
3bf25cb4
JK
574 brelse(epos.bh);
575 brelse(oepos.bh);
1da177e4 576
28de7948 577error_return:
1e7933de 578 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
579 return;
580}
581
cb00ea35
CG
582static int udf_table_prealloc_blocks(struct super_block *sb,
583 struct inode *inode,
584 struct inode *table, uint16_t partition,
585 uint32_t first_block, uint32_t block_count)
1da177e4
LT
586{
587 struct udf_sb_info *sbi = UDF_SB(sb);
588 int alloc_count = 0;
ff116fc8 589 uint32_t elen, adsize;
5ca4e4be 590 struct kernel_lb_addr eloc;
ff116fc8 591 struct extent_position epos;
1da177e4 592 int8_t etype = -1;
48d6d8ff 593 struct udf_inode_info *iinfo;
1da177e4 594
3391faa4 595 if (first_block >= sbi->s_partmaps[partition].s_partition_len)
1da177e4
LT
596 return 0;
597
48d6d8ff
MS
598 iinfo = UDF_I(table);
599 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 600 adsize = sizeof(struct short_ad);
48d6d8ff 601 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 602 adsize = sizeof(struct long_ad);
1da177e4
LT
603 else
604 return 0;
605
1e7933de 606 mutex_lock(&sbi->s_alloc_mutex);
ff116fc8 607 epos.offset = sizeof(struct unallocSpaceEntry);
48d6d8ff 608 epos.block = iinfo->i_location;
ff116fc8 609 epos.bh = NULL;
1da177e4
LT
610 eloc.logicalBlockNum = 0xFFFFFFFF;
611
28de7948
CG
612 while (first_block != eloc.logicalBlockNum &&
613 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
1da177e4 614 udf_debug("eloc=%d, elen=%d, first_block=%d\n",
cb00ea35 615 eloc.logicalBlockNum, elen, first_block);
28de7948 616 ; /* empty loop body */
1da177e4
LT
617 }
618
cb00ea35 619 if (first_block == eloc.logicalBlockNum) {
ff116fc8 620 epos.offset -= adsize;
1da177e4
LT
621
622 alloc_count = (elen >> sb->s_blocksize_bits);
36350462 623 if (alloc_count > block_count) {
1da177e4
LT
624 alloc_count = block_count;
625 eloc.logicalBlockNum += alloc_count;
626 elen -= (alloc_count << sb->s_blocksize_bits);
97e961fd 627 udf_write_aext(table, &epos, &eloc,
4b11111a
MS
628 (etype << 30) | elen, 1);
629 } else
630 udf_delete_aext(table, epos, eloc,
631 (etype << 30) | elen);
28de7948 632 } else {
1da177e4 633 alloc_count = 0;
28de7948 634 }
1da177e4 635
3bf25cb4 636 brelse(epos.bh);
1da177e4 637
146bca72
JK
638 if (alloc_count)
639 udf_add_free_space(sb, partition, -alloc_count);
1e7933de 640 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
641 return alloc_count;
642}
643
cb00ea35
CG
644static int udf_table_new_block(struct super_block *sb,
645 struct inode *inode,
646 struct inode *table, uint16_t partition,
647 uint32_t goal, int *err)
1da177e4
LT
648{
649 struct udf_sb_info *sbi = UDF_SB(sb);
650 uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF;
651 uint32_t newblock = 0, adsize;
ff116fc8 652 uint32_t elen, goal_elen = 0;
5ca4e4be 653 struct kernel_lb_addr eloc, uninitialized_var(goal_eloc);
ff116fc8 654 struct extent_position epos, goal_epos;
1da177e4 655 int8_t etype;
48d6d8ff 656 struct udf_inode_info *iinfo = UDF_I(table);
1da177e4
LT
657
658 *err = -ENOSPC;
659
48d6d8ff 660 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 661 adsize = sizeof(struct short_ad);
48d6d8ff 662 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 663 adsize = sizeof(struct long_ad);
1da177e4
LT
664 else
665 return newblock;
666
1e7933de 667 mutex_lock(&sbi->s_alloc_mutex);
3391faa4 668 if (goal >= sbi->s_partmaps[partition].s_partition_len)
1da177e4
LT
669 goal = 0;
670
4b11111a
MS
671 /* We search for the closest matching block to goal. If we find
672 a exact hit, we stop. Otherwise we keep going till we run out
673 of extents. We store the buffer_head, bloc, and extoffset
674 of the current closest match and use that when we are done.
cb00ea35 675 */
ff116fc8 676 epos.offset = sizeof(struct unallocSpaceEntry);
48d6d8ff 677 epos.block = iinfo->i_location;
ff116fc8 678 epos.bh = goal_epos.bh = NULL;
1da177e4 679
28de7948
CG
680 while (spread &&
681 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
cb00ea35 682 if (goal >= eloc.logicalBlockNum) {
4b11111a
MS
683 if (goal < eloc.logicalBlockNum +
684 (elen >> sb->s_blocksize_bits))
1da177e4
LT
685 nspread = 0;
686 else
687 nspread = goal - eloc.logicalBlockNum -
28de7948
CG
688 (elen >> sb->s_blocksize_bits);
689 } else {
1da177e4 690 nspread = eloc.logicalBlockNum - goal;
28de7948 691 }
1da177e4 692
cb00ea35 693 if (nspread < spread) {
1da177e4 694 spread = nspread;
cb00ea35 695 if (goal_epos.bh != epos.bh) {
3bf25cb4 696 brelse(goal_epos.bh);
ff116fc8 697 goal_epos.bh = epos.bh;
3bf25cb4 698 get_bh(goal_epos.bh);
1da177e4 699 }
ff116fc8
JK
700 goal_epos.block = epos.block;
701 goal_epos.offset = epos.offset - adsize;
1da177e4
LT
702 goal_eloc = eloc;
703 goal_elen = (etype << 30) | elen;
704 }
705 }
706
3bf25cb4 707 brelse(epos.bh);
1da177e4 708
cb00ea35 709 if (spread == 0xFFFFFFFF) {
3bf25cb4 710 brelse(goal_epos.bh);
1e7933de 711 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
712 return 0;
713 }
714
715 /* Only allocate blocks from the beginning of the extent.
716 That way, we only delete (empty) extents, never have to insert an
717 extent because of splitting */
718 /* This works, but very poorly.... */
719
720 newblock = goal_eloc.logicalBlockNum;
cb00ea35 721 goal_eloc.logicalBlockNum++;
1da177e4 722 goal_elen -= sb->s_blocksize;
1da177e4
LT
723
724 if (goal_elen)
97e961fd 725 udf_write_aext(table, &goal_epos, &goal_eloc, goal_elen, 1);
1da177e4 726 else
ff116fc8 727 udf_delete_aext(table, goal_epos, goal_eloc, goal_elen);
3bf25cb4 728 brelse(goal_epos.bh);
1da177e4 729
146bca72 730 udf_add_free_space(sb, partition, -1);
1da177e4 731
1e7933de 732 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
733 *err = 0;
734 return newblock;
735}
736
97e961fd
PE
737void udf_free_blocks(struct super_block *sb, struct inode *inode,
738 struct kernel_lb_addr *bloc, uint32_t offset,
739 uint32_t count)
1da177e4 740{
97e961fd 741 uint16_t partition = bloc->partitionReferenceNum;
6c79e987 742 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
1da177e4 743
6c79e987 744 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
e650b94a
JK
745 udf_bitmap_free_blocks(sb, inode, map->s_uspace.s_bitmap,
746 bloc, offset, count);
6c79e987 747 } else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
e650b94a
JK
748 udf_table_free_blocks(sb, inode, map->s_uspace.s_table,
749 bloc, offset, count);
6c79e987 750 } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
e650b94a
JK
751 udf_bitmap_free_blocks(sb, inode, map->s_fspace.s_bitmap,
752 bloc, offset, count);
6c79e987 753 } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
e650b94a
JK
754 udf_table_free_blocks(sb, inode, map->s_fspace.s_table,
755 bloc, offset, count);
28de7948 756 }
1da177e4
LT
757}
758
cb00ea35
CG
759inline int udf_prealloc_blocks(struct super_block *sb,
760 struct inode *inode,
761 uint16_t partition, uint32_t first_block,
762 uint32_t block_count)
1da177e4 763{
6c79e987
MS
764 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
765
4b11111a 766 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1da177e4 767 return udf_bitmap_prealloc_blocks(sb, inode,
6c79e987 768 map->s_uspace.s_bitmap,
4b11111a
MS
769 partition, first_block,
770 block_count);
771 else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1da177e4 772 return udf_table_prealloc_blocks(sb, inode,
6c79e987 773 map->s_uspace.s_table,
4b11111a
MS
774 partition, first_block,
775 block_count);
776 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1da177e4 777 return udf_bitmap_prealloc_blocks(sb, inode,
6c79e987 778 map->s_fspace.s_bitmap,
4b11111a
MS
779 partition, first_block,
780 block_count);
781 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1da177e4 782 return udf_table_prealloc_blocks(sb, inode,
6c79e987 783 map->s_fspace.s_table,
4b11111a
MS
784 partition, first_block,
785 block_count);
786 else
1da177e4
LT
787 return 0;
788}
789
cb00ea35
CG
790inline int udf_new_block(struct super_block *sb,
791 struct inode *inode,
792 uint16_t partition, uint32_t goal, int *err)
1da177e4 793{
6c79e987 794 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
3bf25cb4 795
4b11111a
MS
796 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
797 return udf_bitmap_new_block(sb, inode,
6c79e987 798 map->s_uspace.s_bitmap,
28de7948 799 partition, goal, err);
4b11111a 800 else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1da177e4 801 return udf_table_new_block(sb, inode,
6c79e987 802 map->s_uspace.s_table,
28de7948 803 partition, goal, err);
4b11111a 804 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1da177e4 805 return udf_bitmap_new_block(sb, inode,
6c79e987 806 map->s_fspace.s_bitmap,
28de7948 807 partition, goal, err);
4b11111a 808 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1da177e4 809 return udf_table_new_block(sb, inode,
6c79e987 810 map->s_fspace.s_table,
28de7948 811 partition, goal, err);
4b11111a 812 else {
1da177e4
LT
813 *err = -EIO;
814 return 0;
815 }
816}