autofs4: Add d_manage() dentry operation
[deliverable/linux.git] / fs / udf / inode.c
CommitLineData
1da177e4
LT
1/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode 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) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/04/98 dgb Added rudimentary directory functions
20 * 10/07/98 Fully working udf_block_map! It works!
21 * 11/25/98 bmap altered to better support extents
4b11111a
MS
22 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
1da177e4
LT
24 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
25 * block boundaries (which is not actually allowed)
26 * 12/20/98 added support for strategy 4096
27 * 03/07/99 rewrote udf_block_map (again)
28 * New funcs, inode_bmap, udf_next_aext
29 * 04/19/99 Support for writing device EA's for major/minor #
30 */
31
32#include "udfdecl.h"
33#include <linux/mm.h>
1da177e4
LT
34#include <linux/module.h>
35#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
37#include <linux/writeback.h>
38#include <linux/slab.h>
f845fced 39#include <linux/crc-itu-t.h>
1da177e4
LT
40
41#include "udf_i.h"
42#include "udf_sb.h"
43
44MODULE_AUTHOR("Ben Fennema");
45MODULE_DESCRIPTION("Universal Disk Format Filesystem");
46MODULE_LICENSE("GPL");
47
48#define EXTENT_MERGE_SIZE 5
49
50static mode_t udf_convert_permissions(struct fileEntry *);
51static int udf_update_inode(struct inode *, int);
52static void udf_fill_inode(struct inode *, struct buffer_head *);
49521de1 53static int udf_sync_inode(struct inode *inode);
647bd61a 54static int udf_alloc_i_data(struct inode *inode, size_t size);
60448b1d 55static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
1ed16171 56 sector_t *, int *);
ff116fc8 57static int8_t udf_insert_aext(struct inode *, struct extent_position,
5ca4e4be 58 struct kernel_lb_addr, uint32_t);
1da177e4 59static void udf_split_extents(struct inode *, int *, int, int,
5ca4e4be 60 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
1da177e4 61static void udf_prealloc_extents(struct inode *, int, int,
5ca4e4be 62 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
1da177e4 63static void udf_merge_extents(struct inode *,
5ca4e4be 64 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
1da177e4 65static void udf_update_extents(struct inode *,
5ca4e4be 66 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
cb00ea35 67 struct extent_position *);
1da177e4
LT
68static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
b1e32126 70
3aac2b62 71void udf_evict_inode(struct inode *inode)
1da177e4 72{
2c948b3f 73 struct udf_inode_info *iinfo = UDF_I(inode);
3aac2b62
AV
74 int want_delete = 0;
75
76 truncate_inode_pages(&inode->i_data, 0);
2c948b3f 77
3aac2b62
AV
78 if (!inode->i_nlink && !is_bad_inode(inode)) {
79 want_delete = 1;
80 inode->i_size = 0;
81 udf_truncate(inode);
3aac2b62 82 udf_update_inode(inode, IS_SYNC(inode));
3aac2b62
AV
83 }
84 invalidate_inode_buffers(inode);
85 end_writeback(inode);
2c948b3f
JK
86 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
87 inode->i_size != iinfo->i_lenExtents) {
88 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
1537a363 89 "inode size %llu different from extent length %llu. "
2c948b3f
JK
90 "Filesystem need not be standards compliant.\n",
91 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
92 (unsigned long long)inode->i_size,
93 (unsigned long long)iinfo->i_lenExtents);
1da177e4 94 }
48d6d8ff
MS
95 kfree(iinfo->i_ext.i_data);
96 iinfo->i_ext.i_data = NULL;
3aac2b62 97 if (want_delete) {
3aac2b62 98 udf_free_inode(inode);
3aac2b62 99 }
1da177e4
LT
100}
101
102static int udf_writepage(struct page *page, struct writeback_control *wbc)
103{
104 return block_write_full_page(page, udf_get_block, wbc);
105}
106
107static int udf_readpage(struct file *file, struct page *page)
108{
109 return block_read_full_page(page, udf_get_block);
110}
111
be021ee4
NP
112static int udf_write_begin(struct file *file, struct address_space *mapping,
113 loff_t pos, unsigned len, unsigned flags,
114 struct page **pagep, void **fsdata)
1da177e4 115{
155130a4
CH
116 int ret;
117
118 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
119 if (unlikely(ret)) {
120 loff_t isize = mapping->host->i_size;
121 if (pos + len > isize)
122 vmtruncate(mapping->host, isize);
123 }
124
125 return ret;
1da177e4
LT
126}
127
128static sector_t udf_bmap(struct address_space *mapping, sector_t block)
129{
cb00ea35 130 return generic_block_bmap(mapping, block, udf_get_block);
1da177e4
LT
131}
132
f5e54d6e 133const struct address_space_operations udf_aops = {
28de7948
CG
134 .readpage = udf_readpage,
135 .writepage = udf_writepage,
136 .sync_page = block_sync_page,
be021ee4
NP
137 .write_begin = udf_write_begin,
138 .write_end = generic_write_end,
28de7948 139 .bmap = udf_bmap,
1da177e4
LT
140};
141
cb00ea35 142void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
1da177e4
LT
143{
144 struct page *page;
145 char *kaddr;
48d6d8ff 146 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4
LT
147 struct writeback_control udf_wbc = {
148 .sync_mode = WB_SYNC_NONE,
149 .nr_to_write = 1,
150 };
151
152 /* from now on we have normal address_space methods */
153 inode->i_data.a_ops = &udf_aops;
154
48d6d8ff 155 if (!iinfo->i_lenAlloc) {
1da177e4 156 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
48d6d8ff 157 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
1da177e4 158 else
48d6d8ff 159 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
1da177e4
LT
160 mark_inode_dirty(inode);
161 return;
162 }
163
164 page = grab_cache_page(inode->i_mapping, 0);
cd7619d6
MM
165 BUG_ON(!PageLocked(page));
166
cb00ea35 167 if (!PageUptodate(page)) {
1da177e4 168 kaddr = kmap(page);
48d6d8ff
MS
169 memset(kaddr + iinfo->i_lenAlloc, 0x00,
170 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
171 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
172 iinfo->i_lenAlloc);
1da177e4
LT
173 flush_dcache_page(page);
174 SetPageUptodate(page);
175 kunmap(page);
176 }
48d6d8ff
MS
177 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
178 iinfo->i_lenAlloc);
179 iinfo->i_lenAlloc = 0;
1da177e4 180 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
48d6d8ff 181 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
1da177e4 182 else
48d6d8ff 183 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
1da177e4
LT
184
185 inode->i_data.a_ops->writepage(page, &udf_wbc);
186 page_cache_release(page);
187
188 mark_inode_dirty(inode);
189}
190
cb00ea35
CG
191struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
192 int *err)
1da177e4
LT
193{
194 int newblock;
ff116fc8 195 struct buffer_head *dbh = NULL;
5ca4e4be 196 struct kernel_lb_addr eloc;
1da177e4 197 uint8_t alloctype;
ff116fc8 198 struct extent_position epos;
1da177e4
LT
199
200 struct udf_fileident_bh sfibh, dfibh;
af793295
JK
201 loff_t f_pos = udf_ext0_offset(inode);
202 int size = udf_ext0_offset(inode) + inode->i_size;
1da177e4 203 struct fileIdentDesc cfi, *sfi, *dfi;
48d6d8ff 204 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4
LT
205
206 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
207 alloctype = ICBTAG_FLAG_AD_SHORT;
208 else
209 alloctype = ICBTAG_FLAG_AD_LONG;
210
cb00ea35 211 if (!inode->i_size) {
48d6d8ff 212 iinfo->i_alloc_type = alloctype;
1da177e4
LT
213 mark_inode_dirty(inode);
214 return NULL;
215 }
216
217 /* alloc block, and copy data to it */
218 *block = udf_new_block(inode->i_sb, inode,
48d6d8ff
MS
219 iinfo->i_location.partitionReferenceNum,
220 iinfo->i_location.logicalBlockNum, err);
1da177e4
LT
221 if (!(*block))
222 return NULL;
223 newblock = udf_get_pblock(inode->i_sb, *block,
48d6d8ff 224 iinfo->i_location.partitionReferenceNum,
c0b34438 225 0);
1da177e4
LT
226 if (!newblock)
227 return NULL;
228 dbh = udf_tgetblk(inode->i_sb, newblock);
229 if (!dbh)
230 return NULL;
231 lock_buffer(dbh);
232 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
233 set_buffer_uptodate(dbh);
234 unlock_buffer(dbh);
235 mark_buffer_dirty_inode(dbh, inode);
236
4b11111a 237 sfibh.soffset = sfibh.eoffset =
af793295 238 f_pos & (inode->i_sb->s_blocksize - 1);
ff116fc8 239 sfibh.sbh = sfibh.ebh = NULL;
1da177e4
LT
240 dfibh.soffset = dfibh.eoffset = 0;
241 dfibh.sbh = dfibh.ebh = dbh;
af793295 242 while (f_pos < size) {
48d6d8ff 243 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
4b11111a
MS
244 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
245 NULL, NULL, NULL);
cb00ea35 246 if (!sfi) {
3bf25cb4 247 brelse(dbh);
1da177e4
LT
248 return NULL;
249 }
48d6d8ff 250 iinfo->i_alloc_type = alloctype;
1da177e4
LT
251 sfi->descTag.tagLocation = cpu_to_le32(*block);
252 dfibh.soffset = dfibh.eoffset;
253 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
254 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
255 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
4b11111a
MS
256 sfi->fileIdent +
257 le16_to_cpu(sfi->lengthOfImpUse))) {
48d6d8ff 258 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
3bf25cb4 259 brelse(dbh);
1da177e4
LT
260 return NULL;
261 }
262 }
263 mark_buffer_dirty_inode(dbh, inode);
264
48d6d8ff
MS
265 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
266 iinfo->i_lenAlloc);
267 iinfo->i_lenAlloc = 0;
1da177e4 268 eloc.logicalBlockNum = *block;
4b11111a 269 eloc.partitionReferenceNum =
48d6d8ff 270 iinfo->i_location.partitionReferenceNum;
2c948b3f 271 iinfo->i_lenExtents = inode->i_size;
ff116fc8 272 epos.bh = NULL;
48d6d8ff 273 epos.block = iinfo->i_location;
ff116fc8 274 epos.offset = udf_file_entry_alloc_offset(inode);
2c948b3f 275 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
1da177e4
LT
276 /* UniqueID stuff */
277
3bf25cb4 278 brelse(epos.bh);
1da177e4
LT
279 mark_inode_dirty(inode);
280 return dbh;
281}
282
cb00ea35
CG
283static int udf_get_block(struct inode *inode, sector_t block,
284 struct buffer_head *bh_result, int create)
1da177e4
LT
285{
286 int err, new;
287 struct buffer_head *bh;
1ed16171 288 sector_t phys = 0;
48d6d8ff 289 struct udf_inode_info *iinfo;
1da177e4 290
cb00ea35 291 if (!create) {
1da177e4
LT
292 phys = udf_block_map(inode, block);
293 if (phys)
294 map_bh(bh_result, inode->i_sb, phys);
295 return 0;
296 }
297
298 err = -EIO;
299 new = 0;
300 bh = NULL;
48d6d8ff 301 iinfo = UDF_I(inode);
4d0fb621
AIB
302
303 down_write(&iinfo->i_data_sem);
48d6d8ff
MS
304 if (block == iinfo->i_next_alloc_block + 1) {
305 iinfo->i_next_alloc_block++;
306 iinfo->i_next_alloc_goal++;
1da177e4
LT
307 }
308
309 err = 0;
310
311 bh = inode_getblk(inode, block, &err, &phys, &new);
2c2111c2 312 BUG_ON(bh);
1da177e4
LT
313 if (err)
314 goto abort;
2c2111c2 315 BUG_ON(!phys);
1da177e4
LT
316
317 if (new)
318 set_buffer_new(bh_result);
319 map_bh(bh_result, inode->i_sb, phys);
28de7948
CG
320
321abort:
4d0fb621 322 up_write(&iinfo->i_data_sem);
1da177e4 323 return err;
1da177e4
LT
324}
325
cb00ea35
CG
326static struct buffer_head *udf_getblk(struct inode *inode, long block,
327 int create, int *err)
1da177e4 328{
28de7948 329 struct buffer_head *bh;
1da177e4
LT
330 struct buffer_head dummy;
331
332 dummy.b_state = 0;
333 dummy.b_blocknr = -1000;
334 *err = udf_get_block(inode, block, &dummy, create);
cb00ea35 335 if (!*err && buffer_mapped(&dummy)) {
1da177e4 336 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
cb00ea35 337 if (buffer_new(&dummy)) {
1da177e4
LT
338 lock_buffer(bh);
339 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
340 set_buffer_uptodate(bh);
341 unlock_buffer(bh);
342 mark_buffer_dirty_inode(bh, inode);
343 }
344 return bh;
345 }
28de7948 346
1da177e4
LT
347 return NULL;
348}
349
31170b6a
JK
350/* Extend the file by 'blocks' blocks, return the number of extents added */
351int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
5ca4e4be 352 struct kernel_long_ad *last_ext, sector_t blocks)
31170b6a
JK
353{
354 sector_t add;
355 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
356 struct super_block *sb = inode->i_sb;
5ca4e4be 357 struct kernel_lb_addr prealloc_loc = {};
31170b6a 358 int prealloc_len = 0;
48d6d8ff 359 struct udf_inode_info *iinfo;
31170b6a
JK
360
361 /* The previous extent is fake and we should not extend by anything
362 * - there's nothing to do... */
363 if (!blocks && fake)
364 return 0;
28de7948 365
48d6d8ff 366 iinfo = UDF_I(inode);
31170b6a
JK
367 /* Round the last extent up to a multiple of block size */
368 if (last_ext->extLength & (sb->s_blocksize - 1)) {
369 last_ext->extLength =
28de7948
CG
370 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
371 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
372 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
48d6d8ff
MS
373 iinfo->i_lenExtents =
374 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
28de7948 375 ~(sb->s_blocksize - 1);
31170b6a 376 }
28de7948 377
31170b6a 378 /* Last extent are just preallocated blocks? */
4b11111a
MS
379 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
380 EXT_NOT_RECORDED_ALLOCATED) {
31170b6a
JK
381 /* Save the extent so that we can reattach it to the end */
382 prealloc_loc = last_ext->extLocation;
383 prealloc_len = last_ext->extLength;
384 /* Mark the extent as a hole */
385 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
28de7948 386 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
31170b6a 387 last_ext->extLocation.logicalBlockNum = 0;
4b11111a 388 last_ext->extLocation.partitionReferenceNum = 0;
31170b6a 389 }
28de7948 390
31170b6a 391 /* Can we merge with the previous extent? */
4b11111a
MS
392 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
393 EXT_NOT_RECORDED_NOT_ALLOCATED) {
394 add = ((1 << 30) - sb->s_blocksize -
395 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
396 sb->s_blocksize_bits;
31170b6a
JK
397 if (add > blocks)
398 add = blocks;
399 blocks -= add;
400 last_ext->extLength += add << sb->s_blocksize_bits;
401 }
402
403 if (fake) {
97e961fd 404 udf_add_aext(inode, last_pos, &last_ext->extLocation,
cb00ea35 405 last_ext->extLength, 1);
31170b6a 406 count++;
4b11111a 407 } else
97e961fd 408 udf_write_aext(inode, last_pos, &last_ext->extLocation,
4b11111a 409 last_ext->extLength, 1);
28de7948 410
31170b6a
JK
411 /* Managed to do everything necessary? */
412 if (!blocks)
413 goto out;
414
415 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
416 last_ext->extLocation.logicalBlockNum = 0;
4b11111a 417 last_ext->extLocation.partitionReferenceNum = 0;
28de7948 418 add = (1 << (30-sb->s_blocksize_bits)) - 1;
4b11111a
MS
419 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
420 (add << sb->s_blocksize_bits);
28de7948 421
31170b6a
JK
422 /* Create enough extents to cover the whole hole */
423 while (blocks > add) {
424 blocks -= add;
97e961fd 425 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
cb00ea35 426 last_ext->extLength, 1) == -1)
31170b6a
JK
427 return -1;
428 count++;
429 }
430 if (blocks) {
431 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
28de7948 432 (blocks << sb->s_blocksize_bits);
97e961fd 433 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
cb00ea35 434 last_ext->extLength, 1) == -1)
31170b6a
JK
435 return -1;
436 count++;
437 }
28de7948
CG
438
439out:
31170b6a
JK
440 /* Do we have some preallocated blocks saved? */
441 if (prealloc_len) {
97e961fd 442 if (udf_add_aext(inode, last_pos, &prealloc_loc,
4b11111a 443 prealloc_len, 1) == -1)
31170b6a
JK
444 return -1;
445 last_ext->extLocation = prealloc_loc;
446 last_ext->extLength = prealloc_len;
447 count++;
448 }
28de7948 449
31170b6a 450 /* last_pos should point to the last written extent... */
48d6d8ff 451 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 452 last_pos->offset -= sizeof(struct short_ad);
48d6d8ff 453 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 454 last_pos->offset -= sizeof(struct long_ad);
31170b6a
JK
455 else
456 return -1;
28de7948 457
31170b6a
JK
458 return count;
459}
460
cb00ea35 461static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
1ed16171 462 int *err, sector_t *phys, int *new)
1da177e4 463{
31170b6a 464 static sector_t last_block;
ff116fc8 465 struct buffer_head *result = NULL;
5ca4e4be 466 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
ff116fc8 467 struct extent_position prev_epos, cur_epos, next_epos;
1da177e4 468 int count = 0, startnum = 0, endnum = 0;
85d71244 469 uint32_t elen = 0, tmpelen;
5ca4e4be 470 struct kernel_lb_addr eloc, tmpeloc;
1da177e4 471 int c = 1;
60448b1d
JK
472 loff_t lbcount = 0, b_off = 0;
473 uint32_t newblocknum, newblock;
474 sector_t offset = 0;
1da177e4 475 int8_t etype;
48d6d8ff
MS
476 struct udf_inode_info *iinfo = UDF_I(inode);
477 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
31170b6a 478 int lastblock = 0;
1da177e4 479
ff116fc8 480 prev_epos.offset = udf_file_entry_alloc_offset(inode);
48d6d8ff 481 prev_epos.block = iinfo->i_location;
ff116fc8
JK
482 prev_epos.bh = NULL;
483 cur_epos = next_epos = prev_epos;
28de7948 484 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
1da177e4
LT
485
486 /* find the extent which contains the block we are looking for.
cb00ea35
CG
487 alternate between laarr[0] and laarr[1] for locations of the
488 current extent, and the previous extent */
489 do {
490 if (prev_epos.bh != cur_epos.bh) {
3bf25cb4
JK
491 brelse(prev_epos.bh);
492 get_bh(cur_epos.bh);
ff116fc8 493 prev_epos.bh = cur_epos.bh;
1da177e4 494 }
cb00ea35 495 if (cur_epos.bh != next_epos.bh) {
3bf25cb4
JK
496 brelse(cur_epos.bh);
497 get_bh(next_epos.bh);
ff116fc8 498 cur_epos.bh = next_epos.bh;
1da177e4
LT
499 }
500
501 lbcount += elen;
502
ff116fc8
JK
503 prev_epos.block = cur_epos.block;
504 cur_epos.block = next_epos.block;
1da177e4 505
ff116fc8
JK
506 prev_epos.offset = cur_epos.offset;
507 cur_epos.offset = next_epos.offset;
1da177e4 508
4b11111a
MS
509 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
510 if (etype == -1)
1da177e4
LT
511 break;
512
513 c = !c;
514
515 laarr[c].extLength = (etype << 30) | elen;
516 laarr[c].extLocation = eloc;
517
518 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
519 pgoal = eloc.logicalBlockNum +
28de7948
CG
520 ((elen + inode->i_sb->s_blocksize - 1) >>
521 inode->i_sb->s_blocksize_bits);
1da177e4 522
cb00ea35 523 count++;
1da177e4
LT
524 } while (lbcount + elen <= b_off);
525
526 b_off -= lbcount;
527 offset = b_off >> inode->i_sb->s_blocksize_bits;
85d71244
JK
528 /*
529 * Move prev_epos and cur_epos into indirect extent if we are at
530 * the pointer to it
531 */
532 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
533 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
1da177e4
LT
534
535 /* if the extent is allocated and recorded, return the block
cb00ea35 536 if the extent is not a multiple of the blocksize, round up */
1da177e4 537
cb00ea35
CG
538 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
539 if (elen & (inode->i_sb->s_blocksize - 1)) {
1da177e4 540 elen = EXT_RECORDED_ALLOCATED |
28de7948
CG
541 ((elen + inode->i_sb->s_blocksize - 1) &
542 ~(inode->i_sb->s_blocksize - 1));
97e961fd 543 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
1da177e4 544 }
3bf25cb4
JK
545 brelse(prev_epos.bh);
546 brelse(cur_epos.bh);
547 brelse(next_epos.bh);
97e961fd 548 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
1da177e4
LT
549 *phys = newblock;
550 return NULL;
551 }
552
31170b6a
JK
553 last_block = block;
554 /* Are we beyond EOF? */
cb00ea35 555 if (etype == -1) {
31170b6a
JK
556 int ret;
557
558 if (count) {
559 if (c)
560 laarr[0] = laarr[1];
561 startnum = 1;
cb00ea35 562 } else {
31170b6a 563 /* Create a fake extent when there's not one */
4b11111a 564 memset(&laarr[0].extLocation, 0x00,
5ca4e4be 565 sizeof(struct kernel_lb_addr));
31170b6a 566 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
4b11111a
MS
567 /* Will udf_extend_file() create real extent from
568 a fake one? */
31170b6a
JK
569 startnum = (offset > 0);
570 }
571 /* Create extents for the hole between EOF and offset */
572 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
573 if (ret == -1) {
574 brelse(prev_epos.bh);
575 brelse(cur_epos.bh);
576 brelse(next_epos.bh);
577 /* We don't really know the error here so we just make
578 * something up */
579 *err = -ENOSPC;
580 return NULL;
581 }
582 c = 0;
583 offset = 0;
584 count += ret;
585 /* We are not covered by a preallocated extent? */
4b11111a
MS
586 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
587 EXT_NOT_RECORDED_ALLOCATED) {
31170b6a
JK
588 /* Is there any real extent? - otherwise we overwrite
589 * the fake one... */
590 if (count)
591 c = !c;
592 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
28de7948 593 inode->i_sb->s_blocksize;
4b11111a 594 memset(&laarr[c].extLocation, 0x00,
5ca4e4be 595 sizeof(struct kernel_lb_addr));
cb00ea35
CG
596 count++;
597 endnum++;
31170b6a 598 }
cb00ea35 599 endnum = c + 1;
1da177e4 600 lastblock = 1;
cb00ea35 601 } else {
1da177e4
LT
602 endnum = startnum = ((count > 2) ? 2 : count);
603
4b11111a
MS
604 /* if the current extent is in position 0,
605 swap it with the previous */
cb00ea35 606 if (!c && count != 1) {
31170b6a
JK
607 laarr[2] = laarr[0];
608 laarr[0] = laarr[1];
609 laarr[1] = laarr[2];
610 c = 1;
611 }
1da177e4 612
4b11111a
MS
613 /* if the current block is located in an extent,
614 read the next extent */
615 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
616 if (etype != -1) {
cb00ea35
CG
617 laarr[c + 1].extLength = (etype << 30) | elen;
618 laarr[c + 1].extLocation = eloc;
619 count++;
620 startnum++;
621 endnum++;
4b11111a 622 } else
1da177e4
LT
623 lastblock = 1;
624 }
1da177e4
LT
625
626 /* if the current extent is not recorded but allocated, get the
28de7948 627 * block in the extent corresponding to the requested block */
4b11111a 628 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
1da177e4 629 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
4b11111a 630 else { /* otherwise, allocate a new block */
48d6d8ff
MS
631 if (iinfo->i_next_alloc_block == block)
632 goal = iinfo->i_next_alloc_goal;
1da177e4 633
cb00ea35 634 if (!goal) {
4b11111a 635 if (!(goal = pgoal)) /* XXX: what was intended here? */
48d6d8ff 636 goal = iinfo->i_location.logicalBlockNum + 1;
1da177e4
LT
637 }
638
4b11111a 639 newblocknum = udf_new_block(inode->i_sb, inode,
48d6d8ff 640 iinfo->i_location.partitionReferenceNum,
4b11111a
MS
641 goal, err);
642 if (!newblocknum) {
3bf25cb4 643 brelse(prev_epos.bh);
1da177e4
LT
644 *err = -ENOSPC;
645 return NULL;
646 }
48d6d8ff 647 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
1da177e4
LT
648 }
649
4b11111a
MS
650 /* if the extent the requsted block is located in contains multiple
651 * blocks, split the extent into at most three extents. blocks prior
652 * to requested block, requested block, and blocks after requested
653 * block */
1da177e4
LT
654 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
655
656#ifdef UDF_PREALLOCATE
81056dd0
JK
657 /* We preallocate blocks only for regular files. It also makes sense
658 * for directories but there's a problem when to drop the
659 * preallocation. We might use some delayed work for that but I feel
660 * it's overengineering for a filesystem like UDF. */
661 if (S_ISREG(inode->i_mode))
662 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
1da177e4
LT
663#endif
664
665 /* merge any continuous blocks in laarr */
666 udf_merge_extents(inode, laarr, &endnum);
667
668 /* write back the new extents, inserting new extents if the new number
28de7948
CG
669 * of extents is greater than the old number, and deleting extents if
670 * the new number of extents is less than the old number */
ff116fc8 671 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
1da177e4 672
3bf25cb4 673 brelse(prev_epos.bh);
1da177e4 674
4b11111a 675 newblock = udf_get_pblock(inode->i_sb, newblocknum,
48d6d8ff 676 iinfo->i_location.partitionReferenceNum, 0);
4b11111a 677 if (!newblock)
1da177e4 678 return NULL;
1da177e4
LT
679 *phys = newblock;
680 *err = 0;
681 *new = 1;
48d6d8ff
MS
682 iinfo->i_next_alloc_block = block;
683 iinfo->i_next_alloc_goal = newblocknum;
1da177e4
LT
684 inode->i_ctime = current_fs_time(inode->i_sb);
685
686 if (IS_SYNC(inode))
687 udf_sync_inode(inode);
688 else
689 mark_inode_dirty(inode);
28de7948 690
1da177e4
LT
691 return result;
692}
693
cb00ea35
CG
694static void udf_split_extents(struct inode *inode, int *c, int offset,
695 int newblocknum,
5ca4e4be 696 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
cb00ea35 697 int *endnum)
1da177e4 698{
4b11111a
MS
699 unsigned long blocksize = inode->i_sb->s_blocksize;
700 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
701
1da177e4 702 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
4b11111a
MS
703 (laarr[*c].extLength >> 30) ==
704 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
1da177e4
LT
705 int curr = *c;
706 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
4b11111a 707 blocksize - 1) >> blocksize_bits;
1da177e4
LT
708 int8_t etype = (laarr[curr].extLength >> 30);
709
4b11111a 710 if (blen == 1)
28de7948 711 ;
4b11111a 712 else if (!offset || blen == offset + 1) {
cb00ea35
CG
713 laarr[curr + 2] = laarr[curr + 1];
714 laarr[curr + 1] = laarr[curr];
715 } else {
716 laarr[curr + 3] = laarr[curr + 1];
717 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
718 }
719
720 if (offset) {
721 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
4b11111a 722 udf_free_blocks(inode->i_sb, inode,
97e961fd 723 &laarr[curr].extLocation,
4b11111a
MS
724 0, offset);
725 laarr[curr].extLength =
726 EXT_NOT_RECORDED_NOT_ALLOCATED |
727 (offset << blocksize_bits);
1da177e4 728 laarr[curr].extLocation.logicalBlockNum = 0;
4b11111a
MS
729 laarr[curr].extLocation.
730 partitionReferenceNum = 0;
731 } else
1da177e4 732 laarr[curr].extLength = (etype << 30) |
4b11111a 733 (offset << blocksize_bits);
cb00ea35
CG
734 curr++;
735 (*c)++;
736 (*endnum)++;
1da177e4 737 }
647bd61a 738
1da177e4
LT
739 laarr[curr].extLocation.logicalBlockNum = newblocknum;
740 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
741 laarr[curr].extLocation.partitionReferenceNum =
c0b34438 742 UDF_I(inode)->i_location.partitionReferenceNum;
1da177e4 743 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
4b11111a 744 blocksize;
cb00ea35 745 curr++;
1da177e4 746
cb00ea35 747 if (blen != offset + 1) {
1da177e4 748 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
4b11111a
MS
749 laarr[curr].extLocation.logicalBlockNum +=
750 offset + 1;
28de7948 751 laarr[curr].extLength = (etype << 30) |
4b11111a 752 ((blen - (offset + 1)) << blocksize_bits);
cb00ea35
CG
753 curr++;
754 (*endnum)++;
1da177e4
LT
755 }
756 }
757}
758
759static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
5ca4e4be 760 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
cb00ea35 761 int *endnum)
1da177e4
LT
762{
763 int start, length = 0, currlength = 0, i;
764
cb00ea35 765 if (*endnum >= (c + 1)) {
1da177e4
LT
766 if (!lastblock)
767 return;
768 else
769 start = c;
cb00ea35 770 } else {
4b11111a
MS
771 if ((laarr[c + 1].extLength >> 30) ==
772 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
cb00ea35 773 start = c + 1;
4b11111a
MS
774 length = currlength =
775 (((laarr[c + 1].extLength &
776 UDF_EXTENT_LENGTH_MASK) +
777 inode->i_sb->s_blocksize - 1) >>
778 inode->i_sb->s_blocksize_bits);
779 } else
1da177e4
LT
780 start = c;
781 }
782
cb00ea35
CG
783 for (i = start + 1; i <= *endnum; i++) {
784 if (i == *endnum) {
1da177e4
LT
785 if (lastblock)
786 length += UDF_DEFAULT_PREALLOC_BLOCKS;
4b11111a
MS
787 } else if ((laarr[i].extLength >> 30) ==
788 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
789 length += (((laarr[i].extLength &
790 UDF_EXTENT_LENGTH_MASK) +
791 inode->i_sb->s_blocksize - 1) >>
792 inode->i_sb->s_blocksize_bits);
793 } else
1da177e4
LT
794 break;
795 }
796
cb00ea35 797 if (length) {
1da177e4 798 int next = laarr[start].extLocation.logicalBlockNum +
28de7948 799 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
4b11111a
MS
800 inode->i_sb->s_blocksize - 1) >>
801 inode->i_sb->s_blocksize_bits);
1da177e4 802 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
4b11111a
MS
803 laarr[start].extLocation.partitionReferenceNum,
804 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
805 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
806 currlength);
28de7948 807 if (numalloc) {
4b11111a 808 if (start == (c + 1))
1da177e4 809 laarr[start].extLength +=
4b11111a
MS
810 (numalloc <<
811 inode->i_sb->s_blocksize_bits);
812 else {
cb00ea35 813 memmove(&laarr[c + 2], &laarr[c + 1],
5ca4e4be 814 sizeof(struct long_ad) * (*endnum - (c + 1)));
cb00ea35
CG
815 (*endnum)++;
816 laarr[c + 1].extLocation.logicalBlockNum = next;
817 laarr[c + 1].extLocation.partitionReferenceNum =
4b11111a
MS
818 laarr[c].extLocation.
819 partitionReferenceNum;
820 laarr[c + 1].extLength =
821 EXT_NOT_RECORDED_ALLOCATED |
822 (numalloc <<
823 inode->i_sb->s_blocksize_bits);
cb00ea35 824 start = c + 1;
1da177e4
LT
825 }
826
cb00ea35 827 for (i = start + 1; numalloc && i < *endnum; i++) {
4b11111a
MS
828 int elen = ((laarr[i].extLength &
829 UDF_EXTENT_LENGTH_MASK) +
830 inode->i_sb->s_blocksize - 1) >>
831 inode->i_sb->s_blocksize_bits;
1da177e4 832
cb00ea35 833 if (elen > numalloc) {
1da177e4 834 laarr[i].extLength -=
4b11111a
MS
835 (numalloc <<
836 inode->i_sb->s_blocksize_bits);
1da177e4 837 numalloc = 0;
cb00ea35 838 } else {
1da177e4 839 numalloc -= elen;
cb00ea35 840 if (*endnum > (i + 1))
4b11111a
MS
841 memmove(&laarr[i],
842 &laarr[i + 1],
5ca4e4be 843 sizeof(struct long_ad) *
4b11111a 844 (*endnum - (i + 1)));
cb00ea35
CG
845 i--;
846 (*endnum)--;
1da177e4
LT
847 }
848 }
c0b34438 849 UDF_I(inode)->i_lenExtents +=
4b11111a 850 numalloc << inode->i_sb->s_blocksize_bits;
1da177e4
LT
851 }
852 }
853}
854
855static void udf_merge_extents(struct inode *inode,
5ca4e4be 856 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
cb00ea35 857 int *endnum)
1da177e4
LT
858{
859 int i;
4b11111a
MS
860 unsigned long blocksize = inode->i_sb->s_blocksize;
861 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
1da177e4 862
cb00ea35 863 for (i = 0; i < (*endnum - 1); i++) {
5ca4e4be
PE
864 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
865 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
4b11111a
MS
866
867 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
868 (((li->extLength >> 30) ==
869 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
870 ((lip1->extLocation.logicalBlockNum -
871 li->extLocation.logicalBlockNum) ==
872 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
873 blocksize - 1) >> blocksize_bits)))) {
874
875 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
876 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
877 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
878 lip1->extLength = (lip1->extLength -
879 (li->extLength &
880 UDF_EXTENT_LENGTH_MASK) +
881 UDF_EXTENT_LENGTH_MASK) &
882 ~(blocksize - 1);
883 li->extLength = (li->extLength &
884 UDF_EXTENT_FLAG_MASK) +
885 (UDF_EXTENT_LENGTH_MASK + 1) -
886 blocksize;
887 lip1->extLocation.logicalBlockNum =
888 li->extLocation.logicalBlockNum +
889 ((li->extLength &
890 UDF_EXTENT_LENGTH_MASK) >>
891 blocksize_bits);
892 } else {
893 li->extLength = lip1->extLength +
894 (((li->extLength &
895 UDF_EXTENT_LENGTH_MASK) +
896 blocksize - 1) & ~(blocksize - 1));
897 if (*endnum > (i + 2))
898 memmove(&laarr[i + 1], &laarr[i + 2],
5ca4e4be 899 sizeof(struct long_ad) *
4b11111a
MS
900 (*endnum - (i + 2)));
901 i--;
902 (*endnum)--;
1da177e4 903 }
4b11111a
MS
904 } else if (((li->extLength >> 30) ==
905 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
906 ((lip1->extLength >> 30) ==
907 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
97e961fd 908 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
4b11111a
MS
909 ((li->extLength &
910 UDF_EXTENT_LENGTH_MASK) +
911 blocksize - 1) >> blocksize_bits);
912 li->extLocation.logicalBlockNum = 0;
913 li->extLocation.partitionReferenceNum = 0;
914
915 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
916 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
917 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
918 lip1->extLength = (lip1->extLength -
919 (li->extLength &
920 UDF_EXTENT_LENGTH_MASK) +
921 UDF_EXTENT_LENGTH_MASK) &
922 ~(blocksize - 1);
923 li->extLength = (li->extLength &
924 UDF_EXTENT_FLAG_MASK) +
925 (UDF_EXTENT_LENGTH_MASK + 1) -
926 blocksize;
cb00ea35 927 } else {
4b11111a
MS
928 li->extLength = lip1->extLength +
929 (((li->extLength &
930 UDF_EXTENT_LENGTH_MASK) +
931 blocksize - 1) & ~(blocksize - 1));
cb00ea35
CG
932 if (*endnum > (i + 2))
933 memmove(&laarr[i + 1], &laarr[i + 2],
5ca4e4be 934 sizeof(struct long_ad) *
4b11111a 935 (*endnum - (i + 2)));
cb00ea35
CG
936 i--;
937 (*endnum)--;
1da177e4 938 }
4b11111a
MS
939 } else if ((li->extLength >> 30) ==
940 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
941 udf_free_blocks(inode->i_sb, inode,
97e961fd 942 &li->extLocation, 0,
4b11111a
MS
943 ((li->extLength &
944 UDF_EXTENT_LENGTH_MASK) +
945 blocksize - 1) >> blocksize_bits);
946 li->extLocation.logicalBlockNum = 0;
947 li->extLocation.partitionReferenceNum = 0;
948 li->extLength = (li->extLength &
949 UDF_EXTENT_LENGTH_MASK) |
950 EXT_NOT_RECORDED_NOT_ALLOCATED;
1da177e4
LT
951 }
952 }
953}
954
955static void udf_update_extents(struct inode *inode,
5ca4e4be 956 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
cb00ea35
CG
957 int startnum, int endnum,
958 struct extent_position *epos)
1da177e4
LT
959{
960 int start = 0, i;
5ca4e4be 961 struct kernel_lb_addr tmploc;
1da177e4
LT
962 uint32_t tmplen;
963
cb00ea35
CG
964 if (startnum > endnum) {
965 for (i = 0; i < (startnum - endnum); i++)
ff116fc8 966 udf_delete_aext(inode, *epos, laarr[i].extLocation,
cb00ea35
CG
967 laarr[i].extLength);
968 } else if (startnum < endnum) {
969 for (i = 0; i < (endnum - startnum); i++) {
ff116fc8 970 udf_insert_aext(inode, *epos, laarr[i].extLocation,
cb00ea35 971 laarr[i].extLength);
ff116fc8 972 udf_next_aext(inode, epos, &laarr[i].extLocation,
cb00ea35
CG
973 &laarr[i].extLength, 1);
974 start++;
1da177e4
LT
975 }
976 }
977
cb00ea35 978 for (i = start; i < endnum; i++) {
ff116fc8 979 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
97e961fd 980 udf_write_aext(inode, epos, &laarr[i].extLocation,
cb00ea35 981 laarr[i].extLength, 1);
1da177e4
LT
982 }
983}
984
cb00ea35
CG
985struct buffer_head *udf_bread(struct inode *inode, int block,
986 int create, int *err)
1da177e4 987{
cb00ea35 988 struct buffer_head *bh = NULL;
1da177e4
LT
989
990 bh = udf_getblk(inode, block, create, err);
991 if (!bh)
992 return NULL;
993
994 if (buffer_uptodate(bh))
995 return bh;
28de7948 996
1da177e4 997 ll_rw_block(READ, 1, &bh);
28de7948 998
1da177e4
LT
999 wait_on_buffer(bh);
1000 if (buffer_uptodate(bh))
1001 return bh;
28de7948 1002
1da177e4
LT
1003 brelse(bh);
1004 *err = -EIO;
1005 return NULL;
1006}
1007
cb00ea35 1008void udf_truncate(struct inode *inode)
1da177e4
LT
1009{
1010 int offset;
1011 int err;
48d6d8ff 1012 struct udf_inode_info *iinfo;
1da177e4
LT
1013
1014 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
cb00ea35 1015 S_ISLNK(inode->i_mode)))
1da177e4
LT
1016 return;
1017 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1018 return;
1019
48d6d8ff
MS
1020 iinfo = UDF_I(inode);
1021 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
4d0fb621 1022 down_write(&iinfo->i_data_sem);
4b11111a
MS
1023 if (inode->i_sb->s_blocksize <
1024 (udf_file_entry_alloc_offset(inode) +
1025 inode->i_size)) {
1da177e4 1026 udf_expand_file_adinicb(inode, inode->i_size, &err);
48d6d8ff
MS
1027 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1028 inode->i_size = iinfo->i_lenAlloc;
4d0fb621 1029 up_write(&iinfo->i_data_sem);
1da177e4 1030 return;
4b11111a 1031 } else
1da177e4 1032 udf_truncate_extents(inode);
cb00ea35 1033 } else {
1da177e4 1034 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
48d6d8ff 1035 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
c0b34438 1036 0x00, inode->i_sb->s_blocksize -
4b11111a 1037 offset - udf_file_entry_alloc_offset(inode));
48d6d8ff 1038 iinfo->i_lenAlloc = inode->i_size;
1da177e4 1039 }
4d0fb621 1040 up_write(&iinfo->i_data_sem);
cb00ea35 1041 } else {
4b11111a
MS
1042 block_truncate_page(inode->i_mapping, inode->i_size,
1043 udf_get_block);
4d0fb621 1044 down_write(&iinfo->i_data_sem);
1da177e4 1045 udf_truncate_extents(inode);
4d0fb621 1046 up_write(&iinfo->i_data_sem);
647bd61a 1047 }
1da177e4
LT
1048
1049 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1050 if (IS_SYNC(inode))
cb00ea35 1051 udf_sync_inode(inode);
1da177e4
LT
1052 else
1053 mark_inode_dirty(inode);
1da177e4
LT
1054}
1055
cb00ea35 1056static void __udf_read_inode(struct inode *inode)
1da177e4
LT
1057{
1058 struct buffer_head *bh = NULL;
1059 struct fileEntry *fe;
1060 uint16_t ident;
48d6d8ff 1061 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4
LT
1062
1063 /*
1064 * Set defaults, but the inode is still incomplete!
1065 * Note: get_new_inode() sets the following on a new inode:
1066 * i_sb = sb
1067 * i_no = ino
1068 * i_flags = sb->s_flags
1069 * i_state = 0
1070 * clean_inode(): zero fills and sets
1071 * i_count = 1
1072 * i_nlink = 1
1073 * i_op = NULL;
1074 */
97e961fd 1075 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
cb00ea35 1076 if (!bh) {
1da177e4 1077 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
cb00ea35 1078 inode->i_ino);
1da177e4
LT
1079 make_bad_inode(inode);
1080 return;
1081 }
1082
1083 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
cb00ea35 1084 ident != TAG_IDENT_USE) {
4b11111a
MS
1085 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1086 "failed ident=%d\n", inode->i_ino, ident);
3bf25cb4 1087 brelse(bh);
1da177e4
LT
1088 make_bad_inode(inode);
1089 return;
1090 }
1091
1092 fe = (struct fileEntry *)bh->b_data;
1093
5e0f0017 1094 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
1ab92785 1095 struct buffer_head *ibh;
1da177e4 1096
97e961fd 1097 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
4b11111a 1098 &ident);
1ab92785 1099 if (ident == TAG_IDENT_IE && ibh) {
1100 struct buffer_head *nbh = NULL;
5ca4e4be 1101 struct kernel_lb_addr loc;
1ab92785 1102 struct indirectEntry *ie;
1103
1104 ie = (struct indirectEntry *)ibh->b_data;
1105 loc = lelb_to_cpu(ie->indirectICB.extLocation);
1106
1107 if (ie->indirectICB.extLength &&
97e961fd 1108 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
1ab92785 1109 &ident))) {
1110 if (ident == TAG_IDENT_FE ||
1111 ident == TAG_IDENT_EFE) {
1112 memcpy(&iinfo->i_location,
1113 &loc,
5ca4e4be 1114 sizeof(struct kernel_lb_addr));
1ab92785 1115 brelse(bh);
3bf25cb4 1116 brelse(ibh);
1ab92785 1117 brelse(nbh);
1118 __udf_read_inode(inode);
1119 return;
28de7948 1120 }
1ab92785 1121 brelse(nbh);
1da177e4 1122 }
28de7948 1123 }
1ab92785 1124 brelse(ibh);
5e0f0017 1125 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
1da177e4 1126 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
cb00ea35 1127 le16_to_cpu(fe->icbTag.strategyType));
3bf25cb4 1128 brelse(bh);
1da177e4
LT
1129 make_bad_inode(inode);
1130 return;
1131 }
1132 udf_fill_inode(inode, bh);
31170b6a 1133
3bf25cb4 1134 brelse(bh);
1da177e4
LT
1135}
1136
1137static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1138{
1139 struct fileEntry *fe;
1140 struct extendedFileEntry *efe;
1da177e4 1141 int offset;
6c79e987 1142 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
48d6d8ff 1143 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4
LT
1144
1145 fe = (struct fileEntry *)bh->b_data;
1146 efe = (struct extendedFileEntry *)bh->b_data;
1147
5e0f0017 1148 if (fe->icbTag.strategyType == cpu_to_le16(4))
48d6d8ff 1149 iinfo->i_strat4096 = 0;
5e0f0017 1150 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
48d6d8ff 1151 iinfo->i_strat4096 = 1;
1da177e4 1152
48d6d8ff 1153 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
4b11111a 1154 ICBTAG_FLAG_AD_MASK;
48d6d8ff
MS
1155 iinfo->i_unique = 0;
1156 iinfo->i_lenEAttr = 0;
1157 iinfo->i_lenExtents = 0;
1158 iinfo->i_lenAlloc = 0;
1159 iinfo->i_next_alloc_block = 0;
1160 iinfo->i_next_alloc_goal = 0;
5e0f0017 1161 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
48d6d8ff
MS
1162 iinfo->i_efe = 1;
1163 iinfo->i_use = 0;
4b11111a
MS
1164 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1165 sizeof(struct extendedFileEntry))) {
647bd61a
CG
1166 make_bad_inode(inode);
1167 return;
1168 }
48d6d8ff 1169 memcpy(iinfo->i_ext.i_data,
4b11111a
MS
1170 bh->b_data + sizeof(struct extendedFileEntry),
1171 inode->i_sb->s_blocksize -
1172 sizeof(struct extendedFileEntry));
5e0f0017 1173 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
48d6d8ff
MS
1174 iinfo->i_efe = 0;
1175 iinfo->i_use = 0;
4b11111a
MS
1176 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1177 sizeof(struct fileEntry))) {
647bd61a
CG
1178 make_bad_inode(inode);
1179 return;
1180 }
48d6d8ff 1181 memcpy(iinfo->i_ext.i_data,
c0b34438 1182 bh->b_data + sizeof(struct fileEntry),
cb00ea35 1183 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
5e0f0017 1184 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
48d6d8ff
MS
1185 iinfo->i_efe = 0;
1186 iinfo->i_use = 1;
1187 iinfo->i_lenAlloc = le32_to_cpu(
4b11111a
MS
1188 ((struct unallocSpaceEntry *)bh->b_data)->
1189 lengthAllocDescs);
1190 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1191 sizeof(struct unallocSpaceEntry))) {
647bd61a
CG
1192 make_bad_inode(inode);
1193 return;
1194 }
48d6d8ff 1195 memcpy(iinfo->i_ext.i_data,
4b11111a
MS
1196 bh->b_data + sizeof(struct unallocSpaceEntry),
1197 inode->i_sb->s_blocksize -
1198 sizeof(struct unallocSpaceEntry));
1da177e4
LT
1199 return;
1200 }
1201
c03cad24 1202 read_lock(&sbi->s_cred_lock);
1da177e4 1203 inode->i_uid = le32_to_cpu(fe->uid);
ca76d2d8
CG
1204 if (inode->i_uid == -1 ||
1205 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1206 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
4d6660eb 1207 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
1da177e4
LT
1208
1209 inode->i_gid = le32_to_cpu(fe->gid);
ca76d2d8
CG
1210 if (inode->i_gid == -1 ||
1211 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1212 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
4d6660eb 1213 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
1da177e4 1214
7ac9bcd5 1215 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
87bc730c 1216 sbi->s_fmode != UDF_INVALID_MODE)
7ac9bcd5
MS
1217 inode->i_mode = sbi->s_fmode;
1218 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
87bc730c 1219 sbi->s_dmode != UDF_INVALID_MODE)
7ac9bcd5
MS
1220 inode->i_mode = sbi->s_dmode;
1221 else
1222 inode->i_mode = udf_convert_permissions(fe);
1223 inode->i_mode &= ~sbi->s_umask;
c03cad24
JK
1224 read_unlock(&sbi->s_cred_lock);
1225
1226 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1227 if (!inode->i_nlink)
1228 inode->i_nlink = 1;
1229
1230 inode->i_size = le64_to_cpu(fe->informationLength);
1231 iinfo->i_lenExtents = inode->i_size;
1da177e4 1232
48d6d8ff 1233 if (iinfo->i_efe == 0) {
1da177e4 1234 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
28de7948 1235 (inode->i_sb->s_blocksize_bits - 9);
1da177e4 1236
56774805 1237 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
cbf5676a 1238 inode->i_atime = sbi->s_record_time;
1239
56774805
MS
1240 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1241 fe->modificationTime))
cbf5676a 1242 inode->i_mtime = sbi->s_record_time;
1243
56774805 1244 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
cbf5676a 1245 inode->i_ctime = sbi->s_record_time;
1da177e4 1246
48d6d8ff
MS
1247 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1248 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1249 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1250 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
cb00ea35 1251 } else {
647bd61a 1252 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
cb00ea35 1253 (inode->i_sb->s_blocksize_bits - 9);
1da177e4 1254
56774805 1255 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
cbf5676a 1256 inode->i_atime = sbi->s_record_time;
1257
56774805
MS
1258 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1259 efe->modificationTime))
cbf5676a 1260 inode->i_mtime = sbi->s_record_time;
1261
56774805 1262 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
cbf5676a 1263 iinfo->i_crtime = sbi->s_record_time;
1264
56774805 1265 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
cbf5676a 1266 inode->i_ctime = sbi->s_record_time;
1da177e4 1267
48d6d8ff
MS
1268 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1269 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1270 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
4b11111a 1271 offset = sizeof(struct extendedFileEntry) +
48d6d8ff 1272 iinfo->i_lenEAttr;
1da177e4
LT
1273 }
1274
cb00ea35
CG
1275 switch (fe->icbTag.fileType) {
1276 case ICBTAG_FILE_TYPE_DIRECTORY:
28de7948
CG
1277 inode->i_op = &udf_dir_inode_operations;
1278 inode->i_fop = &udf_dir_operations;
1279 inode->i_mode |= S_IFDIR;
1280 inc_nlink(inode);
1281 break;
cb00ea35
CG
1282 case ICBTAG_FILE_TYPE_REALTIME:
1283 case ICBTAG_FILE_TYPE_REGULAR:
1284 case ICBTAG_FILE_TYPE_UNDEF:
742e1795 1285 case ICBTAG_FILE_TYPE_VAT20:
48d6d8ff 1286 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
28de7948
CG
1287 inode->i_data.a_ops = &udf_adinicb_aops;
1288 else
1289 inode->i_data.a_ops = &udf_aops;
1290 inode->i_op = &udf_file_inode_operations;
1291 inode->i_fop = &udf_file_operations;
1292 inode->i_mode |= S_IFREG;
1293 break;
cb00ea35 1294 case ICBTAG_FILE_TYPE_BLOCK:
28de7948
CG
1295 inode->i_mode |= S_IFBLK;
1296 break;
cb00ea35 1297 case ICBTAG_FILE_TYPE_CHAR:
28de7948
CG
1298 inode->i_mode |= S_IFCHR;
1299 break;
cb00ea35 1300 case ICBTAG_FILE_TYPE_FIFO:
28de7948
CG
1301 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1302 break;
cb00ea35 1303 case ICBTAG_FILE_TYPE_SOCKET:
28de7948
CG
1304 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1305 break;
cb00ea35 1306 case ICBTAG_FILE_TYPE_SYMLINK:
28de7948 1307 inode->i_data.a_ops = &udf_symlink_aops;
c15d0fc0 1308 inode->i_op = &udf_symlink_inode_operations;
28de7948
CG
1309 inode->i_mode = S_IFLNK | S_IRWXUGO;
1310 break;
bfb257a5
JK
1311 case ICBTAG_FILE_TYPE_MAIN:
1312 udf_debug("METADATA FILE-----\n");
1313 break;
1314 case ICBTAG_FILE_TYPE_MIRROR:
1315 udf_debug("METADATA MIRROR FILE-----\n");
1316 break;
1317 case ICBTAG_FILE_TYPE_BITMAP:
1318 udf_debug("METADATA BITMAP FILE-----\n");
1319 break;
cb00ea35 1320 default:
4b11111a
MS
1321 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1322 "file type=%d\n", inode->i_ino,
1323 fe->icbTag.fileType);
28de7948
CG
1324 make_bad_inode(inode);
1325 return;
1da177e4 1326 }
cb00ea35 1327 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4b11111a
MS
1328 struct deviceSpec *dsea =
1329 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
cb00ea35
CG
1330 if (dsea) {
1331 init_special_inode(inode, inode->i_mode,
4b11111a
MS
1332 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1333 le32_to_cpu(dsea->minorDeviceIdent)));
1da177e4 1334 /* Developer ID ??? */
4b11111a 1335 } else
1da177e4 1336 make_bad_inode(inode);
1da177e4
LT
1337 }
1338}
1339
647bd61a
CG
1340static int udf_alloc_i_data(struct inode *inode, size_t size)
1341{
48d6d8ff
MS
1342 struct udf_inode_info *iinfo = UDF_I(inode);
1343 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
647bd61a 1344
48d6d8ff 1345 if (!iinfo->i_ext.i_data) {
4b11111a
MS
1346 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1347 "no free memory\n", inode->i_ino);
647bd61a
CG
1348 return -ENOMEM;
1349 }
1350
1351 return 0;
1352}
1353
cb00ea35 1354static mode_t udf_convert_permissions(struct fileEntry *fe)
1da177e4
LT
1355{
1356 mode_t mode;
1357 uint32_t permissions;
1358 uint32_t flags;
1359
1360 permissions = le32_to_cpu(fe->permissions);
1361 flags = le16_to_cpu(fe->icbTag.flags);
1362
4b11111a
MS
1363 mode = ((permissions) & S_IRWXO) |
1364 ((permissions >> 2) & S_IRWXG) |
1365 ((permissions >> 4) & S_IRWXU) |
1366 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1367 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1368 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
1da177e4
LT
1369
1370 return mode;
1371}
1372
a9185b41 1373int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
1da177e4 1374{
49521de1 1375 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1da177e4
LT
1376}
1377
49521de1 1378static int udf_sync_inode(struct inode *inode)
1da177e4
LT
1379{
1380 return udf_update_inode(inode, 1);
1381}
1382
cb00ea35 1383static int udf_update_inode(struct inode *inode, int do_sync)
1da177e4
LT
1384{
1385 struct buffer_head *bh = NULL;
1386 struct fileEntry *fe;
1387 struct extendedFileEntry *efe;
1388 uint32_t udfperms;
1389 uint16_t icbflags;
1390 uint16_t crclen;
1da177e4 1391 int err = 0;
6c79e987 1392 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
4b11111a 1393 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
48d6d8ff 1394 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4 1395
5833ded9
JK
1396 bh = udf_tgetblk(inode->i_sb,
1397 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
cb00ea35 1398 if (!bh) {
aae917cd
JK
1399 udf_debug("getblk failure\n");
1400 return -ENOMEM;
1da177e4
LT
1401 }
1402
aae917cd
JK
1403 lock_buffer(bh);
1404 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
1da177e4
LT
1405 fe = (struct fileEntry *)bh->b_data;
1406 efe = (struct extendedFileEntry *)bh->b_data;
1407
aae917cd 1408 if (iinfo->i_use) {
1da177e4 1409 struct unallocSpaceEntry *use =
28de7948 1410 (struct unallocSpaceEntry *)bh->b_data;
1da177e4 1411
48d6d8ff 1412 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
4b11111a 1413 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
48d6d8ff 1414 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
4b11111a 1415 sizeof(struct unallocSpaceEntry));
aae917cd
JK
1416 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1417 use->descTag.tagLocation =
1418 cpu_to_le32(iinfo->i_location.logicalBlockNum);
4b11111a 1419 crclen = sizeof(struct unallocSpaceEntry) +
5ca4e4be 1420 iinfo->i_lenAlloc - sizeof(struct tag);
1da177e4 1421 use->descTag.descCRCLength = cpu_to_le16(crclen);
f845fced 1422 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
5ca4e4be 1423 sizeof(struct tag),
f845fced 1424 crclen));
3f2587bb 1425 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
1da177e4 1426
aae917cd 1427 goto out;
1da177e4
LT
1428 }
1429
4d6660eb
PS
1430 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1431 fe->uid = cpu_to_le32(-1);
cb00ea35
CG
1432 else
1433 fe->uid = cpu_to_le32(inode->i_uid);
1da177e4 1434
4d6660eb
PS
1435 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1436 fe->gid = cpu_to_le32(-1);
cb00ea35
CG
1437 else
1438 fe->gid = cpu_to_le32(inode->i_gid);
1da177e4 1439
4b11111a
MS
1440 udfperms = ((inode->i_mode & S_IRWXO)) |
1441 ((inode->i_mode & S_IRWXG) << 2) |
1442 ((inode->i_mode & S_IRWXU) << 4);
1da177e4 1443
4b11111a
MS
1444 udfperms |= (le32_to_cpu(fe->permissions) &
1445 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1446 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1447 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
1da177e4
LT
1448 fe->permissions = cpu_to_le32(udfperms);
1449
1450 if (S_ISDIR(inode->i_mode))
1451 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1452 else
1453 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1454
1455 fe->informationLength = cpu_to_le64(inode->i_size);
1456
cb00ea35 1457 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5ca4e4be 1458 struct regid *eid;
28de7948
CG
1459 struct deviceSpec *dsea =
1460 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
cb00ea35 1461 if (!dsea) {
1da177e4 1462 dsea = (struct deviceSpec *)
28de7948
CG
1463 udf_add_extendedattr(inode,
1464 sizeof(struct deviceSpec) +
5ca4e4be 1465 sizeof(struct regid), 12, 0x3);
1da177e4
LT
1466 dsea->attrType = cpu_to_le32(12);
1467 dsea->attrSubtype = 1;
4b11111a
MS
1468 dsea->attrLength = cpu_to_le32(
1469 sizeof(struct deviceSpec) +
5ca4e4be
PE
1470 sizeof(struct regid));
1471 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
1da177e4 1472 }
5ca4e4be
PE
1473 eid = (struct regid *)dsea->impUse;
1474 memset(eid, 0, sizeof(struct regid));
1da177e4
LT
1475 strcpy(eid->ident, UDF_ID_DEVELOPER);
1476 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1477 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1478 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1479 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1480 }
1481
48d6d8ff 1482 if (iinfo->i_efe == 0) {
c0b34438 1483 memcpy(bh->b_data + sizeof(struct fileEntry),
48d6d8ff 1484 iinfo->i_ext.i_data,
cb00ea35 1485 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
28de7948 1486 fe->logicalBlocksRecorded = cpu_to_le64(
4b11111a
MS
1487 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1488 (blocksize_bits - 9));
1da177e4 1489
56774805
MS
1490 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1491 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1492 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
5ca4e4be 1493 memset(&(fe->impIdent), 0, sizeof(struct regid));
1da177e4
LT
1494 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1495 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1496 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
48d6d8ff
MS
1497 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1498 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1499 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
1da177e4
LT
1500 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1501 crclen = sizeof(struct fileEntry);
cb00ea35 1502 } else {
4b11111a 1503 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
48d6d8ff 1504 iinfo->i_ext.i_data,
4b11111a
MS
1505 inode->i_sb->s_blocksize -
1506 sizeof(struct extendedFileEntry));
1da177e4 1507 efe->objectSize = cpu_to_le64(inode->i_size);
28de7948 1508 efe->logicalBlocksRecorded = cpu_to_le64(
4b11111a
MS
1509 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1510 (blocksize_bits - 9));
1da177e4 1511
48d6d8ff
MS
1512 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1513 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1514 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1515 iinfo->i_crtime = inode->i_atime;
4b11111a 1516
48d6d8ff
MS
1517 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1518 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1519 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1520 iinfo->i_crtime = inode->i_mtime;
4b11111a 1521
48d6d8ff
MS
1522 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1523 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1524 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1525 iinfo->i_crtime = inode->i_ctime;
1da177e4 1526
56774805
MS
1527 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1528 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1529 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1530 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
1da177e4 1531
5ca4e4be 1532 memset(&(efe->impIdent), 0, sizeof(struct regid));
1da177e4
LT
1533 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1534 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1535 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
48d6d8ff
MS
1536 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1537 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1538 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
1da177e4
LT
1539 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1540 crclen = sizeof(struct extendedFileEntry);
1541 }
48d6d8ff 1542 if (iinfo->i_strat4096) {
1da177e4
LT
1543 fe->icbTag.strategyType = cpu_to_le16(4096);
1544 fe->icbTag.strategyParameter = cpu_to_le16(1);
1545 fe->icbTag.numEntries = cpu_to_le16(2);
cb00ea35 1546 } else {
1da177e4
LT
1547 fe->icbTag.strategyType = cpu_to_le16(4);
1548 fe->icbTag.numEntries = cpu_to_le16(1);
1549 }
1550
1551 if (S_ISDIR(inode->i_mode))
1552 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1553 else if (S_ISREG(inode->i_mode))
1554 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1555 else if (S_ISLNK(inode->i_mode))
1556 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1557 else if (S_ISBLK(inode->i_mode))
1558 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1559 else if (S_ISCHR(inode->i_mode))
1560 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1561 else if (S_ISFIFO(inode->i_mode))
1562 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1563 else if (S_ISSOCK(inode->i_mode))
1564 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1565
48d6d8ff 1566 icbflags = iinfo->i_alloc_type |
28de7948
CG
1567 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1568 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1569 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1570 (le16_to_cpu(fe->icbTag.flags) &
1571 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1572 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
1da177e4
LT
1573
1574 fe->icbTag.flags = cpu_to_le16(icbflags);
6c79e987 1575 if (sbi->s_udfrev >= 0x0200)
1da177e4
LT
1576 fe->descTag.descVersion = cpu_to_le16(3);
1577 else
1578 fe->descTag.descVersion = cpu_to_le16(2);
6c79e987 1579 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
4b11111a 1580 fe->descTag.tagLocation = cpu_to_le32(
48d6d8ff 1581 iinfo->i_location.logicalBlockNum);
aae917cd 1582 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
1da177e4 1583 fe->descTag.descCRCLength = cpu_to_le16(crclen);
5ca4e4be 1584 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
f845fced 1585 crclen));
3f2587bb 1586 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
1da177e4 1587
aae917cd 1588out:
5833ded9 1589 set_buffer_uptodate(bh);
aae917cd
JK
1590 unlock_buffer(bh);
1591
1da177e4
LT
1592 /* write the data blocks */
1593 mark_buffer_dirty(bh);
cb00ea35 1594 if (do_sync) {
1da177e4 1595 sync_dirty_buffer(bh);
aae917cd 1596 if (buffer_write_io_error(bh)) {
4b11111a
MS
1597 printk(KERN_WARNING "IO error syncing udf inode "
1598 "[%s:%08lx]\n", inode->i_sb->s_id,
1599 inode->i_ino);
1da177e4
LT
1600 err = -EIO;
1601 }
1602 }
3bf25cb4 1603 brelse(bh);
28de7948 1604
1da177e4
LT
1605 return err;
1606}
1607
97e961fd 1608struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
1da177e4
LT
1609{
1610 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1611 struct inode *inode = iget_locked(sb, block);
1612
1613 if (!inode)
1614 return NULL;
1615
1616 if (inode->i_state & I_NEW) {
97e961fd 1617 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
1da177e4
LT
1618 __udf_read_inode(inode);
1619 unlock_new_inode(inode);
1620 }
1621
1622 if (is_bad_inode(inode))
1623 goto out_iput;
1624
97e961fd
PE
1625 if (ino->logicalBlockNum >= UDF_SB(sb)->
1626 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
1da177e4 1627 udf_debug("block=%d, partition=%d out of range\n",
97e961fd 1628 ino->logicalBlockNum, ino->partitionReferenceNum);
1da177e4
LT
1629 make_bad_inode(inode);
1630 goto out_iput;
1631 }
1632
1633 return inode;
1634
28de7948 1635 out_iput:
1da177e4
LT
1636 iput(inode);
1637 return NULL;
1638}
1639
4b11111a 1640int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
97e961fd 1641 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
1da177e4
LT
1642{
1643 int adsize;
5ca4e4be
PE
1644 struct short_ad *sad = NULL;
1645 struct long_ad *lad = NULL;
1da177e4
LT
1646 struct allocExtDesc *aed;
1647 int8_t etype;
1648 uint8_t *ptr;
48d6d8ff 1649 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4 1650
ff116fc8 1651 if (!epos->bh)
48d6d8ff 1652 ptr = iinfo->i_ext.i_data + epos->offset -
4b11111a 1653 udf_file_entry_alloc_offset(inode) +
48d6d8ff 1654 iinfo->i_lenEAttr;
1da177e4 1655 else
ff116fc8 1656 ptr = epos->bh->b_data + epos->offset;
1da177e4 1657
48d6d8ff 1658 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 1659 adsize = sizeof(struct short_ad);
48d6d8ff 1660 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 1661 adsize = sizeof(struct long_ad);
1da177e4
LT
1662 else
1663 return -1;
1664
cb00ea35 1665 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
391e8bbd 1666 unsigned char *sptr, *dptr;
1da177e4
LT
1667 struct buffer_head *nbh;
1668 int err, loffset;
5ca4e4be 1669 struct kernel_lb_addr obloc = epos->block;
1da177e4 1670
4b11111a
MS
1671 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1672 obloc.partitionReferenceNum,
1673 obloc.logicalBlockNum, &err);
1674 if (!epos->block.logicalBlockNum)
1da177e4 1675 return -1;
4b11111a 1676 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
97e961fd 1677 &epos->block,
4b11111a
MS
1678 0));
1679 if (!nbh)
1da177e4 1680 return -1;
1da177e4
LT
1681 lock_buffer(nbh);
1682 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1683 set_buffer_uptodate(nbh);
1684 unlock_buffer(nbh);
1685 mark_buffer_dirty_inode(nbh, inode);
1686
1687 aed = (struct allocExtDesc *)(nbh->b_data);
1688 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
4b11111a
MS
1689 aed->previousAllocExtLocation =
1690 cpu_to_le32(obloc.logicalBlockNum);
cb00ea35 1691 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
ff116fc8 1692 loffset = epos->offset;
1da177e4
LT
1693 aed->lengthAllocDescs = cpu_to_le32(adsize);
1694 sptr = ptr - adsize;
1695 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1696 memcpy(dptr, sptr, adsize);
ff116fc8 1697 epos->offset = sizeof(struct allocExtDesc) + adsize;
cb00ea35 1698 } else {
ff116fc8 1699 loffset = epos->offset + adsize;
1da177e4
LT
1700 aed->lengthAllocDescs = cpu_to_le32(0);
1701 sptr = ptr;
ff116fc8 1702 epos->offset = sizeof(struct allocExtDesc);
1da177e4 1703
cb00ea35 1704 if (epos->bh) {
ff116fc8 1705 aed = (struct allocExtDesc *)epos->bh->b_data;
c2104fda 1706 le32_add_cpu(&aed->lengthAllocDescs, adsize);
cb00ea35 1707 } else {
48d6d8ff 1708 iinfo->i_lenAlloc += adsize;
1da177e4
LT
1709 mark_inode_dirty(inode);
1710 }
1711 }
6c79e987 1712 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
1da177e4 1713 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
5ca4e4be 1714 epos->block.logicalBlockNum, sizeof(struct tag));
1da177e4
LT
1715 else
1716 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
5ca4e4be 1717 epos->block.logicalBlockNum, sizeof(struct tag));
48d6d8ff 1718 switch (iinfo->i_alloc_type) {
cb00ea35 1719 case ICBTAG_FLAG_AD_SHORT:
5ca4e4be 1720 sad = (struct short_ad *)sptr;
28de7948
CG
1721 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1722 inode->i_sb->s_blocksize);
4b11111a
MS
1723 sad->extPosition =
1724 cpu_to_le32(epos->block.logicalBlockNum);
28de7948 1725 break;
cb00ea35 1726 case ICBTAG_FLAG_AD_LONG:
5ca4e4be 1727 lad = (struct long_ad *)sptr;
28de7948
CG
1728 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1729 inode->i_sb->s_blocksize);
1730 lad->extLocation = cpu_to_lelb(epos->block);
1731 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1732 break;
1da177e4 1733 }
cb00ea35 1734 if (epos->bh) {
28de7948 1735 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
6c79e987 1736 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
ff116fc8 1737 udf_update_tag(epos->bh->b_data, loffset);
1da177e4 1738 else
4b11111a
MS
1739 udf_update_tag(epos->bh->b_data,
1740 sizeof(struct allocExtDesc));
ff116fc8 1741 mark_buffer_dirty_inode(epos->bh, inode);
3bf25cb4 1742 brelse(epos->bh);
28de7948 1743 } else {
1da177e4 1744 mark_inode_dirty(inode);
28de7948 1745 }
ff116fc8 1746 epos->bh = nbh;
1da177e4
LT
1747 }
1748
ff116fc8 1749 etype = udf_write_aext(inode, epos, eloc, elen, inc);
1da177e4 1750
cb00ea35 1751 if (!epos->bh) {
48d6d8ff 1752 iinfo->i_lenAlloc += adsize;
1da177e4 1753 mark_inode_dirty(inode);
cb00ea35 1754 } else {
ff116fc8 1755 aed = (struct allocExtDesc *)epos->bh->b_data;
c2104fda 1756 le32_add_cpu(&aed->lengthAllocDescs, adsize);
4b11111a
MS
1757 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1758 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1759 udf_update_tag(epos->bh->b_data,
1760 epos->offset + (inc ? 0 : adsize));
1da177e4 1761 else
4b11111a
MS
1762 udf_update_tag(epos->bh->b_data,
1763 sizeof(struct allocExtDesc));
ff116fc8 1764 mark_buffer_dirty_inode(epos->bh, inode);
1da177e4
LT
1765 }
1766
1767 return etype;
1768}
1769
4b11111a 1770int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
97e961fd 1771 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
1da177e4
LT
1772{
1773 int adsize;
1774 uint8_t *ptr;
5ca4e4be
PE
1775 struct short_ad *sad;
1776 struct long_ad *lad;
48d6d8ff 1777 struct udf_inode_info *iinfo = UDF_I(inode);
1da177e4 1778
ff116fc8 1779 if (!epos->bh)
48d6d8ff 1780 ptr = iinfo->i_ext.i_data + epos->offset -
4b11111a 1781 udf_file_entry_alloc_offset(inode) +
48d6d8ff 1782 iinfo->i_lenEAttr;
1da177e4 1783 else
ff116fc8 1784 ptr = epos->bh->b_data + epos->offset;
1da177e4 1785
48d6d8ff 1786 switch (iinfo->i_alloc_type) {
cb00ea35 1787 case ICBTAG_FLAG_AD_SHORT:
5ca4e4be 1788 sad = (struct short_ad *)ptr;
28de7948 1789 sad->extLength = cpu_to_le32(elen);
97e961fd 1790 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
5ca4e4be 1791 adsize = sizeof(struct short_ad);
28de7948 1792 break;
cb00ea35 1793 case ICBTAG_FLAG_AD_LONG:
5ca4e4be 1794 lad = (struct long_ad *)ptr;
28de7948 1795 lad->extLength = cpu_to_le32(elen);
97e961fd 1796 lad->extLocation = cpu_to_lelb(*eloc);
28de7948 1797 memset(lad->impUse, 0x00, sizeof(lad->impUse));
5ca4e4be 1798 adsize = sizeof(struct long_ad);
28de7948 1799 break;
cb00ea35
CG
1800 default:
1801 return -1;
1da177e4
LT
1802 }
1803
cb00ea35 1804 if (epos->bh) {
28de7948 1805 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
6c79e987 1806 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
4b11111a
MS
1807 struct allocExtDesc *aed =
1808 (struct allocExtDesc *)epos->bh->b_data;
ff116fc8 1809 udf_update_tag(epos->bh->b_data,
4b11111a
MS
1810 le32_to_cpu(aed->lengthAllocDescs) +
1811 sizeof(struct allocExtDesc));
1da177e4 1812 }
ff116fc8 1813 mark_buffer_dirty_inode(epos->bh, inode);
28de7948 1814 } else {
1da177e4 1815 mark_inode_dirty(inode);
28de7948 1816 }
1da177e4
LT
1817
1818 if (inc)
ff116fc8 1819 epos->offset += adsize;
28de7948 1820
1da177e4
LT
1821 return (elen >> 30);
1822}
1823
4b11111a 1824int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
5ca4e4be 1825 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
1da177e4
LT
1826{
1827 int8_t etype;
1828
ff116fc8 1829 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
cb00ea35 1830 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
4b11111a 1831 int block;
ff116fc8
JK
1832 epos->block = *eloc;
1833 epos->offset = sizeof(struct allocExtDesc);
3bf25cb4 1834 brelse(epos->bh);
97e961fd 1835 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
4b11111a
MS
1836 epos->bh = udf_tread(inode->i_sb, block);
1837 if (!epos->bh) {
1838 udf_debug("reading block %d failed!\n", block);
1da177e4
LT
1839 return -1;
1840 }
1841 }
1842
1843 return etype;
1844}
1845
4b11111a 1846int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
5ca4e4be 1847 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
1da177e4
LT
1848{
1849 int alen;
1850 int8_t etype;
1851 uint8_t *ptr;
5ca4e4be
PE
1852 struct short_ad *sad;
1853 struct long_ad *lad;
48d6d8ff 1854 struct udf_inode_info *iinfo = UDF_I(inode);
28de7948 1855
cb00ea35 1856 if (!epos->bh) {
ff116fc8
JK
1857 if (!epos->offset)
1858 epos->offset = udf_file_entry_alloc_offset(inode);
48d6d8ff 1859 ptr = iinfo->i_ext.i_data + epos->offset -
4b11111a 1860 udf_file_entry_alloc_offset(inode) +
48d6d8ff 1861 iinfo->i_lenEAttr;
4b11111a 1862 alen = udf_file_entry_alloc_offset(inode) +
48d6d8ff 1863 iinfo->i_lenAlloc;
cb00ea35 1864 } else {
ff116fc8
JK
1865 if (!epos->offset)
1866 epos->offset = sizeof(struct allocExtDesc);
1867 ptr = epos->bh->b_data + epos->offset;
28de7948 1868 alen = sizeof(struct allocExtDesc) +
4b11111a
MS
1869 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1870 lengthAllocDescs);
1da177e4
LT
1871 }
1872
48d6d8ff 1873 switch (iinfo->i_alloc_type) {
cb00ea35 1874 case ICBTAG_FLAG_AD_SHORT:
4b11111a
MS
1875 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1876 if (!sad)
28de7948
CG
1877 return -1;
1878 etype = le32_to_cpu(sad->extLength) >> 30;
1879 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
4b11111a 1880 eloc->partitionReferenceNum =
48d6d8ff 1881 iinfo->i_location.partitionReferenceNum;
28de7948
CG
1882 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1883 break;
cb00ea35 1884 case ICBTAG_FLAG_AD_LONG:
4b11111a
MS
1885 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1886 if (!lad)
1da177e4 1887 return -1;
28de7948
CG
1888 etype = le32_to_cpu(lad->extLength) >> 30;
1889 *eloc = lelb_to_cpu(lad->extLocation);
1890 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1891 break;
1892 default:
4b11111a 1893 udf_debug("alloc_type = %d unsupported\n",
48d6d8ff 1894 iinfo->i_alloc_type);
28de7948 1895 return -1;
1da177e4
LT
1896 }
1897
1898 return etype;
1899}
1900
28de7948 1901static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
5ca4e4be 1902 struct kernel_lb_addr neloc, uint32_t nelen)
1da177e4 1903{
5ca4e4be 1904 struct kernel_lb_addr oeloc;
1da177e4
LT
1905 uint32_t oelen;
1906 int8_t etype;
1907
ff116fc8 1908 if (epos.bh)
3bf25cb4 1909 get_bh(epos.bh);
1da177e4 1910
cb00ea35 1911 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
97e961fd 1912 udf_write_aext(inode, &epos, &neloc, nelen, 1);
1da177e4
LT
1913 neloc = oeloc;
1914 nelen = (etype << 30) | oelen;
1915 }
97e961fd 1916 udf_add_aext(inode, &epos, &neloc, nelen, 1);
3bf25cb4 1917 brelse(epos.bh);
28de7948 1918
1da177e4
LT
1919 return (nelen >> 30);
1920}
1921
4b11111a 1922int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
5ca4e4be 1923 struct kernel_lb_addr eloc, uint32_t elen)
1da177e4 1924{
ff116fc8
JK
1925 struct extent_position oepos;
1926 int adsize;
1da177e4
LT
1927 int8_t etype;
1928 struct allocExtDesc *aed;
48d6d8ff 1929 struct udf_inode_info *iinfo;
1da177e4 1930
cb00ea35 1931 if (epos.bh) {
3bf25cb4
JK
1932 get_bh(epos.bh);
1933 get_bh(epos.bh);
1da177e4
LT
1934 }
1935
48d6d8ff
MS
1936 iinfo = UDF_I(inode);
1937 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
5ca4e4be 1938 adsize = sizeof(struct short_ad);
48d6d8ff 1939 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
5ca4e4be 1940 adsize = sizeof(struct long_ad);
1da177e4
LT
1941 else
1942 adsize = 0;
1943
ff116fc8
JK
1944 oepos = epos;
1945 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
1da177e4
LT
1946 return -1;
1947
cb00ea35 1948 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
97e961fd 1949 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
cb00ea35 1950 if (oepos.bh != epos.bh) {
ff116fc8 1951 oepos.block = epos.block;
3bf25cb4
JK
1952 brelse(oepos.bh);
1953 get_bh(epos.bh);
ff116fc8
JK
1954 oepos.bh = epos.bh;
1955 oepos.offset = epos.offset - adsize;
1da177e4
LT
1956 }
1957 }
5ca4e4be 1958 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
1da177e4
LT
1959 elen = 0;
1960
cb00ea35 1961 if (epos.bh != oepos.bh) {
97e961fd
PE
1962 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1963 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1964 udf_write_aext(inode, &oepos, &eloc, elen, 1);
cb00ea35 1965 if (!oepos.bh) {
48d6d8ff 1966 iinfo->i_lenAlloc -= (adsize * 2);
1da177e4 1967 mark_inode_dirty(inode);
cb00ea35 1968 } else {
ff116fc8 1969 aed = (struct allocExtDesc *)oepos.bh->b_data;
c2104fda 1970 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
28de7948 1971 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
6c79e987 1972 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
4b11111a
MS
1973 udf_update_tag(oepos.bh->b_data,
1974 oepos.offset - (2 * adsize));
1da177e4 1975 else
4b11111a
MS
1976 udf_update_tag(oepos.bh->b_data,
1977 sizeof(struct allocExtDesc));
ff116fc8 1978 mark_buffer_dirty_inode(oepos.bh, inode);
1da177e4 1979 }
cb00ea35 1980 } else {
97e961fd 1981 udf_write_aext(inode, &oepos, &eloc, elen, 1);
cb00ea35 1982 if (!oepos.bh) {
48d6d8ff 1983 iinfo->i_lenAlloc -= adsize;
1da177e4 1984 mark_inode_dirty(inode);
cb00ea35 1985 } else {
ff116fc8 1986 aed = (struct allocExtDesc *)oepos.bh->b_data;
c2104fda 1987 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
28de7948 1988 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
6c79e987 1989 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
4b11111a
MS
1990 udf_update_tag(oepos.bh->b_data,
1991 epos.offset - adsize);
1da177e4 1992 else
4b11111a
MS
1993 udf_update_tag(oepos.bh->b_data,
1994 sizeof(struct allocExtDesc));
ff116fc8 1995 mark_buffer_dirty_inode(oepos.bh, inode);
1da177e4
LT
1996 }
1997 }
647bd61a 1998
3bf25cb4
JK
1999 brelse(epos.bh);
2000 brelse(oepos.bh);
28de7948 2001
1da177e4
LT
2002 return (elen >> 30);
2003}
2004
4b11111a 2005int8_t inode_bmap(struct inode *inode, sector_t block,
5ca4e4be 2006 struct extent_position *pos, struct kernel_lb_addr *eloc,
4b11111a 2007 uint32_t *elen, sector_t *offset)
1da177e4 2008{
4b11111a 2009 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
cb00ea35 2010 loff_t lbcount = 0, bcount =
4b11111a 2011 (loff_t) block << blocksize_bits;
1da177e4 2012 int8_t etype;
48d6d8ff 2013 struct udf_inode_info *iinfo;
1da177e4 2014
48d6d8ff 2015 iinfo = UDF_I(inode);
ff116fc8 2016 pos->offset = 0;
48d6d8ff 2017 pos->block = iinfo->i_location;
ff116fc8 2018 pos->bh = NULL;
1da177e4 2019 *elen = 0;
1da177e4 2020
cb00ea35 2021 do {
4b11111a
MS
2022 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2023 if (etype == -1) {
2024 *offset = (bcount - lbcount) >> blocksize_bits;
48d6d8ff 2025 iinfo->i_lenExtents = lbcount;
1da177e4
LT
2026 return -1;
2027 }
2028 lbcount += *elen;
2029 } while (lbcount <= bcount);
2030
4b11111a 2031 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
1da177e4
LT
2032
2033 return etype;
2034}
2035
60448b1d 2036long udf_block_map(struct inode *inode, sector_t block)
1da177e4 2037{
5ca4e4be 2038 struct kernel_lb_addr eloc;
ff116fc8 2039 uint32_t elen;
60448b1d 2040 sector_t offset;
28de7948 2041 struct extent_position epos = {};
1da177e4
LT
2042 int ret;
2043
4d0fb621 2044 down_read(&UDF_I(inode)->i_data_sem);
1da177e4 2045
4b11111a
MS
2046 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2047 (EXT_RECORDED_ALLOCATED >> 30))
97e961fd 2048 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
1da177e4
LT
2049 else
2050 ret = 0;
2051
4d0fb621 2052 up_read(&UDF_I(inode)->i_data_sem);
3bf25cb4 2053 brelse(epos.bh);
1da177e4
LT
2054
2055 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2056 return udf_fixed_to_variable(ret);
2057 else
2058 return ret;
2059}
This page took 0.656629 seconds and 5 git commands to generate.