blob: 8994dd041660613873d7aa39f033883b61f24173 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * balloc.c
3 *
4 * PURPOSE
5 * Block allocation handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/buffer_head.h>
25#include <linux/bitops.h>
26
27#include "udf_i.h"
28#include "udf_sb.h"
29
Marcin Slusarz4b111112008-02-08 04:20:36 -080030#define udf_clear_bit(nr, addr) ext2_clear_bit(nr, addr)
31#define udf_set_bit(nr, addr) ext2_set_bit(nr, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define udf_test_bit(nr, addr) ext2_test_bit(nr, addr)
Marcin Slusarz4b111112008-02-08 04:20:36 -080033#define udf_find_next_one_bit(addr, size, offset) \
Dirk Behme6f644e52011-02-22 14:04:19 -050034 ext2_find_next_bit((unsigned long *)(addr), size, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070036static int read_block_bitmap(struct super_block *sb,
37 struct udf_bitmap *bitmap, unsigned int block,
38 unsigned long bitmap_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 struct buffer_head *bh = NULL;
41 int retval = 0;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020042 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -080045 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Pekka Enberg97e961f2008-10-15 12:29:03 +020047 bh = udf_tread(sb, udf_get_lb_pblock(sb, &loc, block));
Marcin Slusarz4b111112008-02-08 04:20:36 -080048 if (!bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 retval = -EIO;
Marcin Slusarz4b111112008-02-08 04:20:36 -080050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 bitmap->s_block_bitmap[bitmap_nr] = bh;
52 return retval;
53}
54
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070055static int __load_block_bitmap(struct super_block *sb,
56 struct udf_bitmap *bitmap,
57 unsigned int block_group)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 int retval = 0;
60 int nr_groups = bitmap->s_nr_groups;
61
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070062 if (block_group >= nr_groups) {
63 udf_debug("block_group (%d) > nr_groups (%d)\n", block_group,
64 nr_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070067 if (bitmap->s_block_bitmap[block_group]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return block_group;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070069 } else {
70 retval = read_block_bitmap(sb, bitmap, block_group,
71 block_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (retval < 0)
73 return retval;
74 return block_group;
75 }
76}
77
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070078static inline int load_block_bitmap(struct super_block *sb,
79 struct udf_bitmap *bitmap,
80 unsigned int block_group)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
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
Jan Kara146bca72009-03-16 18:27:37 +010095static void udf_add_free_space(struct super_block *sb, u16 partition, u32 cnt)
Marcin Slusarz742ba022008-02-08 04:20:40 -080096{
Jan Kara146bca72009-03-16 18:27:37 +010097 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz742ba022008-02-08 04:20:40 -080098 struct logicalVolIntegrityDesc *lvid;
99
Jan Kara146bca72009-03-16 18:27:37 +0100100 if (!sbi->s_lvid_bh)
101 return;
Marcin Slusarz742ba022008-02-08 04:20:40 -0800102
103 lvid = (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +0100104 le32_add_cpu(&lvid->freeSpaceTable[partition], cnt);
Jan Kara146bca72009-03-16 18:27:37 +0100105 udf_updated_lvid(sb);
Marcin Slusarz742ba022008-02-08 04:20:40 -0800106}
107
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700108static void udf_bitmap_free_blocks(struct super_block *sb,
109 struct inode *inode,
110 struct udf_bitmap *bitmap,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200111 struct kernel_lb_addr *bloc,
112 uint32_t offset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700113 uint32_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct udf_sb_info *sbi = UDF_SB(sb);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700116 struct buffer_head *bh = NULL;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200117 struct udf_part_map *partmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 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
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800125 mutex_lock(&sbi->s_alloc_mutex);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200126 partmap = &sbi->s_partmaps[bloc->partitionReferenceNum];
Dan Carpenter69ecbbe2010-03-15 11:21:13 +0300127 if (bloc->logicalBlockNum + count < count ||
128 (bloc->logicalBlockNum + count) > partmap->s_partition_len) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700129 udf_debug("%d < %d || %d + %d > %d\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +0200130 bloc->logicalBlockNum, 0, bloc->logicalBlockNum,
131 count, partmap->s_partition_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 goto error_return;
133 }
134
Pekka Enberg97e961f2008-10-15 12:29:03 +0200135 block = bloc->logicalBlockNum + offset +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800136 (sizeof(struct spaceBitmapDesc) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800138 do {
139 overflow = 0;
140 block_group = block >> (sb->s_blocksize_bits + 3);
141 bit = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800143 /*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800150 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]);
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800160 }
161 }
Jan Kara7abc2e42010-10-20 22:32:02 +0200162 udf_add_free_space(sb, sbi->s_partition, count);
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800163 mark_buffer_dirty(bh);
164 if (overflow) {
165 block += count;
166 count = overflow;
167 }
168 } while (overflow);
169
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700170error_return:
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800171 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700174static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
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;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800185 __u32 part_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800187 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800188 part_len = sbi->s_partmaps[partition].s_partition_len;
Roel Kluin3391faa2009-06-22 23:12:29 +0200189 if (first_block >= part_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 goto out;
191
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800192 if (first_block + block_count > part_len)
193 block_count = part_len - first_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800195 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800201 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];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800206 bit = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800208 while (bit < (sb->s_blocksize << 3) && block_count > 0) {
Jan Kara36350462010-05-19 16:28:56 +0200209 if (!udf_clear_bit(bit, bh->b_data))
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800210 goto out;
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800211 block_count--;
212 alloc_count++;
213 bit++;
214 block++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Marcin Slusarz4daa1b82008-02-08 04:20:41 -0800216 mark_buffer_dirty(bh);
217 } while (block_count > 0);
218
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219out:
Jan Kara146bca72009-03-16 18:27:37 +0100220 udf_add_free_space(sb, partition, -alloc_count);
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800221 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return alloc_count;
223}
224
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700225static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct udf_sb_info *sbi = UDF_SB(sb);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700231 int newbit, bit = 0, block, block_group, group_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 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;
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800238 mutex_lock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700240repeat:
Roel Kluin3391faa2009-06-22 23:12:29 +0200241 if (goal >= sbi->s_partmaps[partition].s_partition_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 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];
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700253 ptr = memscan((char *)bh->b_data + group_start, 0xFF,
254 sb->s_blocksize - group_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700256 if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 bit = block % (sb->s_blocksize << 3);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700258 if (udf_test_bit(bit, bh->b_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto got_block;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 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;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700265
Marcin Slusarz4b111112008-02-08 04:20:36 -0800266 ptr = memscan((char *)bh->b_data + (bit >> 3), 0xFF,
267 sb->s_blocksize - ((bit + 7) >> 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 newbit = (ptr - ((char *)bh->b_data)) << 3;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700269 if (newbit < sb->s_blocksize << 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 bit = newbit;
271 goto search_back;
272 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700273
Marcin Slusarz4b111112008-02-08 04:20:36 -0800274 newbit = udf_find_next_one_bit(bh->b_data,
275 sb->s_blocksize << 3, bit);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700276 if (newbit < sb->s_blocksize << 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 bit = newbit;
278 goto got_block;
279 }
280 }
281
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700282 for (i = 0; i < (nr_groups * 2); i++) {
283 block_group++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 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];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700292 if (i < nr_groups) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700293 ptr = memscan((char *)bh->b_data + group_start, 0xFF,
294 sb->s_blocksize - group_start);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700295 if ((ptr - ((char *)bh->b_data)) < sb->s_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 bit = (ptr - ((char *)bh->b_data)) << 3;
297 break;
298 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700299 } else {
Dirk Behme6f644e52011-02-22 14:04:19 -0500300 bit = udf_find_next_one_bit(bh->b_data,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700301 sb->s_blocksize << 3,
302 group_start << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (bit < sb->s_blocksize << 3)
304 break;
305 }
306 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700307 if (i >= (nr_groups * 2)) {
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800308 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return newblock;
310 }
311 if (bit < sb->s_blocksize << 3)
312 goto search_back;
313 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800314 bit = udf_find_next_one_bit(bh->b_data, sb->s_blocksize << 3,
315 group_start << 3);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700316 if (bit >= sb->s_blocksize << 3) {
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800317 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319 }
320
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700321search_back:
Marcin Slusarz4b111112008-02-08 04:20:36 -0800322 i = 0;
323 while (i < 7 && bit > (group_start << 3) &&
324 udf_test_bit(bit - 1, bh->b_data)) {
325 ++i;
326 --bit;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700329got_block:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 newblock = bit + (block_group << (sb->s_blocksize_bits + 3)) -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700331 (sizeof(struct spaceBitmapDesc) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700333 if (!udf_clear_bit(bit, bh->b_data)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 udf_debug("bit already cleared for block %d\n", bit);
335 goto repeat;
336 }
337
338 mark_buffer_dirty(bh);
339
Jan Kara146bca72009-03-16 18:27:37 +0100340 udf_add_free_space(sb, partition, -1);
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800341 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *err = 0;
343 return newblock;
344
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700345error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *err = -EIO;
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800347 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
349}
350
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700351static void udf_table_free_blocks(struct super_block *sb,
352 struct inode *inode,
353 struct inode *table,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200354 struct kernel_lb_addr *bloc,
355 uint32_t offset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700356 uint32_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 struct udf_sb_info *sbi = UDF_SB(sb);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200359 struct udf_part_map *partmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 uint32_t start, end;
Jan Karaff116fc2007-05-08 00:35:14 -0700361 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200362 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700363 struct extent_position oepos, epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int8_t etype;
365 int i;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800366 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800368 mutex_lock(&sbi->s_alloc_mutex);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200369 partmap = &sbi->s_partmaps[bloc->partitionReferenceNum];
Dan Carpenter69ecbbe2010-03-15 11:21:13 +0300370 if (bloc->logicalBlockNum + count < count ||
371 (bloc->logicalBlockNum + count) > partmap->s_partition_len) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700372 udf_debug("%d < %d || %d + %d > %d\n",
Jan Kara1fefd082009-11-30 19:47:10 +0100373 bloc->logicalBlockNum, 0, bloc->logicalBlockNum, count,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200374 partmap->s_partition_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 goto error_return;
376 }
377
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800378 iinfo = UDF_I(table);
Jan Kara146bca72009-03-16 18:27:37 +0100379 udf_add_free_space(sb, sbi->s_partition, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Pekka Enberg97e961f2008-10-15 12:29:03 +0200381 start = bloc->logicalBlockNum + offset;
382 end = bloc->logicalBlockNum + offset + count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jan Karaff116fc2007-05-08 00:35:14 -0700384 epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 elen = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800386 epos.block = oepos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700387 epos.bh = oepos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700389 while (count &&
390 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800391 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);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700401 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800402 elen = (etype << 30) |
403 (elen +
404 (count << sb->s_blocksize_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 start += count;
406 count = 0;
407 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200408 udf_write_aext(table, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700409 } else if (eloc.logicalBlockNum == (end + 1)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800410 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);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700419 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 eloc.logicalBlockNum = start;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800421 elen = (etype << 30) |
422 (elen +
423 (count << sb->s_blocksize_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 end -= count;
425 count = 0;
426 }
Pekka Enberg97e961f2008-10-15 12:29:03 +0200427 udf_write_aext(table, &oepos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700430 if (epos.bh != oepos.bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 i = -1;
Jan Karaff116fc2007-05-08 00:35:14 -0700432 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700433 brelse(oepos.bh);
434 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700435 oepos.bh = epos.bh;
436 oepos.offset = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700437 } else {
Jan Karaff116fc2007-05-08 00:35:14 -0700438 oepos.offset = epos.offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700442 if (count) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700443 /*
Marcin Slusarz4b111112008-02-08 04:20:36 -0800444 * 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 :)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700447 *
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.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200457 struct short_ad *sad = NULL;
458 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 struct allocExtDesc *aed;
460
461 eloc.logicalBlockNum = start;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700462 elen = EXT_RECORDED_ALLOCATED |
463 (count << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800465 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200466 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800467 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200468 adsize = sizeof(struct long_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800469 else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700470 brelse(oepos.bh);
471 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 goto error_return;
473 }
474
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700475 if (epos.offset + (2 * adsize) > sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -0500476 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int loffset;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700478
Jan Kara3bf25cb2007-05-08 00:35:16 -0700479 brelse(oepos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700480 oepos = epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /* Steal a block from the extent being free'd */
Jan Karaff116fc2007-05-08 00:35:14 -0700483 epos.block.logicalBlockNum = eloc.logicalBlockNum;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700484 eloc.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 elen -= sb->s_blocksize;
486
Marcin Slusarz4b111112008-02-08 04:20:36 -0800487 epos.bh = udf_tread(sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200488 udf_get_lb_pblock(sb, &epos.block, 0));
Marcin Slusarz4b111112008-02-08 04:20:36 -0800489 if (!epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700490 brelse(oepos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 goto error_return;
492 }
Jan Karaff116fc2007-05-08 00:35:14 -0700493 aed = (struct allocExtDesc *)(epos.bh->b_data);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800494 aed->previousAllocExtLocation =
495 cpu_to_le32(oepos.block.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700496 if (epos.offset + adsize > sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -0700497 loffset = epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 aed->lengthAllocDescs = cpu_to_le32(adsize);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800499 sptr = iinfo->i_ext.i_data + epos.offset
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800500 - adsize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800501 dptr = epos.bh->b_data +
502 sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 memcpy(dptr, sptr, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800504 epos.offset = sizeof(struct allocExtDesc) +
505 adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700506 } else {
Jan Karaff116fc2007-05-08 00:35:14 -0700507 loffset = epos.offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 aed->lengthAllocDescs = cpu_to_le32(0);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700509 if (oepos.bh) {
Jan Karaf5cc15d2007-08-30 23:56:22 -0700510 sptr = oepos.bh->b_data + epos.offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800511 aed = (struct allocExtDesc *)
512 oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +0100513 le32_add_cpu(&aed->lengthAllocDescs,
514 adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700515 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800516 sptr = iinfo->i_ext.i_data +
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800517 epos.offset;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800518 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 mark_inode_dirty(table);
520 }
Jan Karaf5cc15d2007-08-30 23:56:22 -0700521 epos.offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800523 if (sbi->s_udfrev >= 0x0200)
Marcin Slusarz4b111112008-02-08 04:20:36 -0800524 udf_new_tag(epos.bh->b_data, TAG_IDENT_AED,
525 3, 1, epos.block.logicalBlockNum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200526 sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 else
Marcin Slusarz4b111112008-02-08 04:20:36 -0800528 udf_new_tag(epos.bh->b_data, TAG_IDENT_AED,
529 2, 1, epos.block.logicalBlockNum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200530 sizeof(struct tag));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700531
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800532 switch (iinfo->i_alloc_type) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800533 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200534 sad = (struct short_ad *)sptr;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800535 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:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200542 lad = (struct long_ad *)sptr;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800543 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700550 if (oepos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -0700551 udf_update_tag(oepos.bh->b_data, loffset);
552 mark_buffer_dirty(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700553 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 mark_inode_dirty(table);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
Marcin Slusarz4b111112008-02-08 04:20:36 -0800558 /* It's possible that stealing the block emptied the extent */
559 if (elen) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200560 udf_write_aext(table, &epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700562 if (!epos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800563 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 mark_inode_dirty(table);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700565 } else {
Jan Karaff116fc2007-05-08 00:35:14 -0700566 aed = (struct allocExtDesc *)epos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +0100567 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -0700568 udf_update_tag(epos.bh->b_data, epos.offset);
569 mark_buffer_dirty(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571 }
572 }
573
Jan Kara3bf25cb2007-05-08 00:35:16 -0700574 brelse(epos.bh);
575 brelse(oepos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700577error_return:
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800578 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return;
580}
581
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700582static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 struct udf_sb_info *sbi = UDF_SB(sb);
588 int alloc_count = 0;
Jan Karaff116fc2007-05-08 00:35:14 -0700589 uint32_t elen, adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200590 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700591 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int8_t etype = -1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800593 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Roel Kluin3391faa2009-06-22 23:12:29 +0200595 if (first_block >= sbi->s_partmaps[partition].s_partition_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800598 iinfo = UDF_I(table);
599 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200600 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800601 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200602 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else
604 return 0;
605
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800606 mutex_lock(&sbi->s_alloc_mutex);
Jan Karaff116fc2007-05-08 00:35:14 -0700607 epos.offset = sizeof(struct unallocSpaceEntry);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800608 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700609 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 eloc.logicalBlockNum = 0xFFFFFFFF;
611
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700612 while (first_block != eloc.logicalBlockNum &&
613 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 udf_debug("eloc=%d, elen=%d, first_block=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700615 eloc.logicalBlockNum, elen, first_block);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700616 ; /* empty loop body */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700619 if (first_block == eloc.logicalBlockNum) {
Jan Karaff116fc2007-05-08 00:35:14 -0700620 epos.offset -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 alloc_count = (elen >> sb->s_blocksize_bits);
Jan Kara36350462010-05-19 16:28:56 +0200623 if (alloc_count > block_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 alloc_count = block_count;
625 eloc.logicalBlockNum += alloc_count;
626 elen -= (alloc_count << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200627 udf_write_aext(table, &epos, &eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800628 (etype << 30) | elen, 1);
629 } else
630 udf_delete_aext(table, epos, eloc,
631 (etype << 30) | elen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700632 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 alloc_count = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Jan Kara3bf25cb2007-05-08 00:35:16 -0700636 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Jan Kara146bca72009-03-16 18:27:37 +0100638 if (alloc_count)
639 udf_add_free_space(sb, partition, -alloc_count);
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800640 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return alloc_count;
642}
643
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct udf_sb_info *sbi = UDF_SB(sb);
650 uint32_t spread = 0xFFFFFFFF, nspread = 0xFFFFFFFF;
651 uint32_t newblock = 0, adsize;
Jan Karaff116fc2007-05-08 00:35:14 -0700652 uint32_t elen, goal_elen = 0;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200653 struct kernel_lb_addr eloc, uninitialized_var(goal_eloc);
Jan Karaff116fc2007-05-08 00:35:14 -0700654 struct extent_position epos, goal_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800656 struct udf_inode_info *iinfo = UDF_I(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 *err = -ENOSPC;
659
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800660 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200661 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800662 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200663 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 else
665 return newblock;
666
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800667 mutex_lock(&sbi->s_alloc_mutex);
Roel Kluin3391faa2009-06-22 23:12:29 +0200668 if (goal >= sbi->s_partmaps[partition].s_partition_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goal = 0;
670
Marcin Slusarz4b111112008-02-08 04:20:36 -0800671 /* 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.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700675 */
Jan Karaff116fc2007-05-08 00:35:14 -0700676 epos.offset = sizeof(struct unallocSpaceEntry);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800677 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700678 epos.bh = goal_epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700680 while (spread &&
681 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700682 if (goal >= eloc.logicalBlockNum) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800683 if (goal < eloc.logicalBlockNum +
684 (elen >> sb->s_blocksize_bits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 nspread = 0;
686 else
687 nspread = goal - eloc.logicalBlockNum -
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700688 (elen >> sb->s_blocksize_bits);
689 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 nspread = eloc.logicalBlockNum - goal;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700693 if (nspread < spread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 spread = nspread;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700695 if (goal_epos.bh != epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700696 brelse(goal_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700697 goal_epos.bh = epos.bh;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700698 get_bh(goal_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
Jan Karaff116fc2007-05-08 00:35:14 -0700700 goal_epos.block = epos.block;
701 goal_epos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goal_eloc = eloc;
703 goal_elen = (etype << 30) | elen;
704 }
705 }
706
Jan Kara3bf25cb2007-05-08 00:35:16 -0700707 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700709 if (spread == 0xFFFFFFFF) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700710 brelse(goal_epos.bh);
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800711 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 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;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 goal_eloc.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 goal_elen -= sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (goal_elen)
Pekka Enberg97e961f2008-10-15 12:29:03 +0200725 udf_write_aext(table, &goal_epos, &goal_eloc, goal_elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 else
Jan Karaff116fc2007-05-08 00:35:14 -0700727 udf_delete_aext(table, goal_epos, goal_eloc, goal_elen);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700728 brelse(goal_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Jan Kara146bca72009-03-16 18:27:37 +0100730 udf_add_free_space(sb, partition, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Ingo Molnar1e7933d2006-03-23 03:00:44 -0800732 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *err = 0;
734 return newblock;
735}
736
Pekka Enberg97e961f2008-10-15 12:29:03 +0200737void udf_free_blocks(struct super_block *sb, struct inode *inode,
738 struct kernel_lb_addr *bloc, uint32_t offset,
739 uint32_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Pekka Enberg97e961f2008-10-15 12:29:03 +0200741 uint16_t partition = bloc->partitionReferenceNum;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800742 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800744 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Jan Karae650b942008-12-01 13:06:10 +0100745 udf_bitmap_free_blocks(sb, inode, map->s_uspace.s_bitmap,
746 bloc, offset, count);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800747 } else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Jan Karae650b942008-12-01 13:06:10 +0100748 udf_table_free_blocks(sb, inode, map->s_uspace.s_table,
749 bloc, offset, count);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800750 } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Jan Karae650b942008-12-01 13:06:10 +0100751 udf_bitmap_free_blocks(sb, inode, map->s_fspace.s_bitmap,
752 bloc, offset, count);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800753 } else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Jan Karae650b942008-12-01 13:06:10 +0100754 udf_table_free_blocks(sb, inode, map->s_fspace.s_table,
755 bloc, offset, count);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700759inline 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800764 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
765
Marcin Slusarz4b111112008-02-08 04:20:36 -0800766 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return udf_bitmap_prealloc_blocks(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800768 map->s_uspace.s_bitmap,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800769 partition, first_block,
770 block_count);
771 else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return udf_table_prealloc_blocks(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800773 map->s_uspace.s_table,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800774 partition, first_block,
775 block_count);
776 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return udf_bitmap_prealloc_blocks(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800778 map->s_fspace.s_bitmap,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800779 partition, first_block,
780 block_count);
781 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return udf_table_prealloc_blocks(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800783 map->s_fspace.s_table,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800784 partition, first_block,
785 block_count);
786 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return 0;
788}
789
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790inline int udf_new_block(struct super_block *sb,
791 struct inode *inode,
792 uint16_t partition, uint32_t goal, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800794 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Jan Kara3bf25cb2007-05-08 00:35:16 -0700795
Marcin Slusarz4b111112008-02-08 04:20:36 -0800796 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
797 return udf_bitmap_new_block(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800798 map->s_uspace.s_bitmap,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700799 partition, goal, err);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800800 else if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return udf_table_new_block(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800802 map->s_uspace.s_table,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700803 partition, goal, err);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800804 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return udf_bitmap_new_block(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800806 map->s_fspace.s_bitmap,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700807 partition, goal, err);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800808 else if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return udf_table_new_block(sb, inode,
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800810 map->s_fspace.s_table,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700811 partition, goal, err);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800812 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 *err = -EIO;
814 return 0;
815 }
816}