5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
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.
13 * (C) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
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
22 * 12/06/98 blf partition support in udf_iget, udf_block_map
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 #
34 #include <linux/smp_lock.h>
35 #include <linux/module.h>
36 #include <linux/pagemap.h>
37 #include <linux/buffer_head.h>
38 #include <linux/writeback.h>
39 #include <linux/slab.h>
40 #include <linux/crc-itu-t.h>
45 MODULE_AUTHOR("Ben Fennema");
46 MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47 MODULE_LICENSE("GPL");
49 #define EXTENT_MERGE_SIZE 5
51 static mode_t
udf_convert_permissions(struct fileEntry
*);
52 static int udf_update_inode(struct inode
*, int);
53 static void udf_fill_inode(struct inode
*, struct buffer_head
*);
54 static int udf_alloc_i_data(struct inode
*inode
, size_t size
);
55 static struct buffer_head
*inode_getblk(struct inode
*, sector_t
, int *,
57 static int8_t udf_insert_aext(struct inode
*, struct extent_position
,
58 struct kernel_lb_addr
, uint32_t);
59 static void udf_split_extents(struct inode
*, int *, int, int,
60 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
61 static void udf_prealloc_extents(struct inode
*, int, int,
62 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
63 static void udf_merge_extents(struct inode
*,
64 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
65 static void udf_update_extents(struct inode
*,
66 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int, int,
67 struct extent_position
*);
68 static int udf_get_block(struct inode
*, sector_t
, struct buffer_head
*, int);
71 void udf_delete_inode(struct inode
*inode
)
73 truncate_inode_pages(&inode
->i_data
, 0);
75 if (is_bad_inode(inode
))
82 udf_update_inode(inode
, IS_SYNC(inode
));
83 udf_free_inode(inode
);
93 * If we are going to release inode from memory, we truncate last inode extent
94 * to proper length. We could use drop_inode() but it's called under inode_lock
95 * and thus we cannot mark inode dirty there. We use clear_inode() but we have
96 * to make sure to write inode as it's not written automatically.
98 void udf_clear_inode(struct inode
*inode
)
100 struct udf_inode_info
*iinfo
= UDF_I(inode
);
102 if (iinfo
->i_alloc_type
!= ICBTAG_FLAG_AD_IN_ICB
&&
103 inode
->i_size
!= iinfo
->i_lenExtents
) {
104 printk(KERN_WARNING
"UDF-fs (%s): Inode %lu (mode %o) has "
105 "inode size %llu different from extent length %llu. "
106 "Filesystem need not be standards compliant.\n",
107 inode
->i_sb
->s_id
, inode
->i_ino
, inode
->i_mode
,
108 (unsigned long long)inode
->i_size
,
109 (unsigned long long)iinfo
->i_lenExtents
);
112 kfree(iinfo
->i_ext
.i_data
);
113 iinfo
->i_ext
.i_data
= NULL
;
116 static int udf_writepage(struct page
*page
, struct writeback_control
*wbc
)
118 return block_write_full_page(page
, udf_get_block
, wbc
);
121 static int udf_readpage(struct file
*file
, struct page
*page
)
123 return block_read_full_page(page
, udf_get_block
);
126 static int udf_write_begin(struct file
*file
, struct address_space
*mapping
,
127 loff_t pos
, unsigned len
, unsigned flags
,
128 struct page
**pagep
, void **fsdata
)
131 return block_write_begin(file
, mapping
, pos
, len
, flags
, pagep
, fsdata
,
135 static sector_t
udf_bmap(struct address_space
*mapping
, sector_t block
)
137 return generic_block_bmap(mapping
, block
, udf_get_block
);
140 const struct address_space_operations udf_aops
= {
141 .readpage
= udf_readpage
,
142 .writepage
= udf_writepage
,
143 .sync_page
= block_sync_page
,
144 .write_begin
= udf_write_begin
,
145 .write_end
= generic_write_end
,
149 void udf_expand_file_adinicb(struct inode
*inode
, int newsize
, int *err
)
153 struct udf_inode_info
*iinfo
= UDF_I(inode
);
154 struct writeback_control udf_wbc
= {
155 .sync_mode
= WB_SYNC_NONE
,
159 /* from now on we have normal address_space methods */
160 inode
->i_data
.a_ops
= &udf_aops
;
162 if (!iinfo
->i_lenAlloc
) {
163 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
164 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_SHORT
;
166 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_LONG
;
167 mark_inode_dirty(inode
);
171 page
= grab_cache_page(inode
->i_mapping
, 0);
172 BUG_ON(!PageLocked(page
));
174 if (!PageUptodate(page
)) {
176 memset(kaddr
+ iinfo
->i_lenAlloc
, 0x00,
177 PAGE_CACHE_SIZE
- iinfo
->i_lenAlloc
);
178 memcpy(kaddr
, iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
,
180 flush_dcache_page(page
);
181 SetPageUptodate(page
);
184 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
, 0x00,
186 iinfo
->i_lenAlloc
= 0;
187 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
188 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_SHORT
;
190 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_LONG
;
192 inode
->i_data
.a_ops
->writepage(page
, &udf_wbc
);
193 page_cache_release(page
);
195 mark_inode_dirty(inode
);
198 struct buffer_head
*udf_expand_dir_adinicb(struct inode
*inode
, int *block
,
202 struct buffer_head
*dbh
= NULL
;
203 struct kernel_lb_addr eloc
;
205 struct extent_position epos
;
207 struct udf_fileident_bh sfibh
, dfibh
;
208 loff_t f_pos
= udf_ext0_offset(inode
);
209 int size
= udf_ext0_offset(inode
) + inode
->i_size
;
210 struct fileIdentDesc cfi
, *sfi
, *dfi
;
211 struct udf_inode_info
*iinfo
= UDF_I(inode
);
213 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
214 alloctype
= ICBTAG_FLAG_AD_SHORT
;
216 alloctype
= ICBTAG_FLAG_AD_LONG
;
218 if (!inode
->i_size
) {
219 iinfo
->i_alloc_type
= alloctype
;
220 mark_inode_dirty(inode
);
224 /* alloc block, and copy data to it */
225 *block
= udf_new_block(inode
->i_sb
, inode
,
226 iinfo
->i_location
.partitionReferenceNum
,
227 iinfo
->i_location
.logicalBlockNum
, err
);
230 newblock
= udf_get_pblock(inode
->i_sb
, *block
,
231 iinfo
->i_location
.partitionReferenceNum
,
235 dbh
= udf_tgetblk(inode
->i_sb
, newblock
);
239 memset(dbh
->b_data
, 0x00, inode
->i_sb
->s_blocksize
);
240 set_buffer_uptodate(dbh
);
242 mark_buffer_dirty_inode(dbh
, inode
);
244 sfibh
.soffset
= sfibh
.eoffset
=
245 f_pos
& (inode
->i_sb
->s_blocksize
- 1);
246 sfibh
.sbh
= sfibh
.ebh
= NULL
;
247 dfibh
.soffset
= dfibh
.eoffset
= 0;
248 dfibh
.sbh
= dfibh
.ebh
= dbh
;
249 while (f_pos
< size
) {
250 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_IN_ICB
;
251 sfi
= udf_fileident_read(inode
, &f_pos
, &sfibh
, &cfi
, NULL
,
257 iinfo
->i_alloc_type
= alloctype
;
258 sfi
->descTag
.tagLocation
= cpu_to_le32(*block
);
259 dfibh
.soffset
= dfibh
.eoffset
;
260 dfibh
.eoffset
+= (sfibh
.eoffset
- sfibh
.soffset
);
261 dfi
= (struct fileIdentDesc
*)(dbh
->b_data
+ dfibh
.soffset
);
262 if (udf_write_fi(inode
, sfi
, dfi
, &dfibh
, sfi
->impUse
,
264 le16_to_cpu(sfi
->lengthOfImpUse
))) {
265 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_IN_ICB
;
270 mark_buffer_dirty_inode(dbh
, inode
);
272 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
, 0,
274 iinfo
->i_lenAlloc
= 0;
275 eloc
.logicalBlockNum
= *block
;
276 eloc
.partitionReferenceNum
=
277 iinfo
->i_location
.partitionReferenceNum
;
278 iinfo
->i_lenExtents
= inode
->i_size
;
280 epos
.block
= iinfo
->i_location
;
281 epos
.offset
= udf_file_entry_alloc_offset(inode
);
282 udf_add_aext(inode
, &epos
, &eloc
, inode
->i_size
, 0);
286 mark_inode_dirty(inode
);
290 static int udf_get_block(struct inode
*inode
, sector_t block
,
291 struct buffer_head
*bh_result
, int create
)
294 struct buffer_head
*bh
;
296 struct udf_inode_info
*iinfo
;
299 phys
= udf_block_map(inode
, block
);
301 map_bh(bh_result
, inode
->i_sb
, phys
);
311 iinfo
= UDF_I(inode
);
312 if (block
== iinfo
->i_next_alloc_block
+ 1) {
313 iinfo
->i_next_alloc_block
++;
314 iinfo
->i_next_alloc_goal
++;
319 bh
= inode_getblk(inode
, block
, &err
, &phys
, &new);
326 set_buffer_new(bh_result
);
327 map_bh(bh_result
, inode
->i_sb
, phys
);
334 static struct buffer_head
*udf_getblk(struct inode
*inode
, long block
,
335 int create
, int *err
)
337 struct buffer_head
*bh
;
338 struct buffer_head dummy
;
341 dummy
.b_blocknr
= -1000;
342 *err
= udf_get_block(inode
, block
, &dummy
, create
);
343 if (!*err
&& buffer_mapped(&dummy
)) {
344 bh
= sb_getblk(inode
->i_sb
, dummy
.b_blocknr
);
345 if (buffer_new(&dummy
)) {
347 memset(bh
->b_data
, 0x00, inode
->i_sb
->s_blocksize
);
348 set_buffer_uptodate(bh
);
350 mark_buffer_dirty_inode(bh
, inode
);
358 /* Extend the file by 'blocks' blocks, return the number of extents added */
359 int udf_extend_file(struct inode
*inode
, struct extent_position
*last_pos
,
360 struct kernel_long_ad
*last_ext
, sector_t blocks
)
363 int count
= 0, fake
= !(last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
);
364 struct super_block
*sb
= inode
->i_sb
;
365 struct kernel_lb_addr prealloc_loc
= {};
366 int prealloc_len
= 0;
367 struct udf_inode_info
*iinfo
;
369 /* The previous extent is fake and we should not extend by anything
370 * - there's nothing to do... */
374 iinfo
= UDF_I(inode
);
375 /* Round the last extent up to a multiple of block size */
376 if (last_ext
->extLength
& (sb
->s_blocksize
- 1)) {
377 last_ext
->extLength
=
378 (last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) |
379 (((last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
380 sb
->s_blocksize
- 1) & ~(sb
->s_blocksize
- 1));
381 iinfo
->i_lenExtents
=
382 (iinfo
->i_lenExtents
+ sb
->s_blocksize
- 1) &
383 ~(sb
->s_blocksize
- 1);
386 /* Last extent are just preallocated blocks? */
387 if ((last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) ==
388 EXT_NOT_RECORDED_ALLOCATED
) {
389 /* Save the extent so that we can reattach it to the end */
390 prealloc_loc
= last_ext
->extLocation
;
391 prealloc_len
= last_ext
->extLength
;
392 /* Mark the extent as a hole */
393 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
394 (last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
);
395 last_ext
->extLocation
.logicalBlockNum
= 0;
396 last_ext
->extLocation
.partitionReferenceNum
= 0;
399 /* Can we merge with the previous extent? */
400 if ((last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) ==
401 EXT_NOT_RECORDED_NOT_ALLOCATED
) {
402 add
= ((1 << 30) - sb
->s_blocksize
-
403 (last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
)) >>
404 sb
->s_blocksize_bits
;
408 last_ext
->extLength
+= add
<< sb
->s_blocksize_bits
;
412 udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
413 last_ext
->extLength
, 1);
416 udf_write_aext(inode
, last_pos
, &last_ext
->extLocation
,
417 last_ext
->extLength
, 1);
419 /* Managed to do everything necessary? */
423 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
424 last_ext
->extLocation
.logicalBlockNum
= 0;
425 last_ext
->extLocation
.partitionReferenceNum
= 0;
426 add
= (1 << (30-sb
->s_blocksize_bits
)) - 1;
427 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
428 (add
<< sb
->s_blocksize_bits
);
430 /* Create enough extents to cover the whole hole */
431 while (blocks
> add
) {
433 if (udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
434 last_ext
->extLength
, 1) == -1)
439 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
440 (blocks
<< sb
->s_blocksize_bits
);
441 if (udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
442 last_ext
->extLength
, 1) == -1)
448 /* Do we have some preallocated blocks saved? */
450 if (udf_add_aext(inode
, last_pos
, &prealloc_loc
,
451 prealloc_len
, 1) == -1)
453 last_ext
->extLocation
= prealloc_loc
;
454 last_ext
->extLength
= prealloc_len
;
458 /* last_pos should point to the last written extent... */
459 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
460 last_pos
->offset
-= sizeof(struct short_ad
);
461 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
462 last_pos
->offset
-= sizeof(struct long_ad
);
469 static struct buffer_head
*inode_getblk(struct inode
*inode
, sector_t block
,
470 int *err
, sector_t
*phys
, int *new)
472 static sector_t last_block
;
473 struct buffer_head
*result
= NULL
;
474 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
];
475 struct extent_position prev_epos
, cur_epos
, next_epos
;
476 int count
= 0, startnum
= 0, endnum
= 0;
477 uint32_t elen
= 0, tmpelen
;
478 struct kernel_lb_addr eloc
, tmpeloc
;
480 loff_t lbcount
= 0, b_off
= 0;
481 uint32_t newblocknum
, newblock
;
484 struct udf_inode_info
*iinfo
= UDF_I(inode
);
485 int goal
= 0, pgoal
= iinfo
->i_location
.logicalBlockNum
;
488 prev_epos
.offset
= udf_file_entry_alloc_offset(inode
);
489 prev_epos
.block
= iinfo
->i_location
;
491 cur_epos
= next_epos
= prev_epos
;
492 b_off
= (loff_t
)block
<< inode
->i_sb
->s_blocksize_bits
;
494 /* find the extent which contains the block we are looking for.
495 alternate between laarr[0] and laarr[1] for locations of the
496 current extent, and the previous extent */
498 if (prev_epos
.bh
!= cur_epos
.bh
) {
499 brelse(prev_epos
.bh
);
501 prev_epos
.bh
= cur_epos
.bh
;
503 if (cur_epos
.bh
!= next_epos
.bh
) {
505 get_bh(next_epos
.bh
);
506 cur_epos
.bh
= next_epos
.bh
;
511 prev_epos
.block
= cur_epos
.block
;
512 cur_epos
.block
= next_epos
.block
;
514 prev_epos
.offset
= cur_epos
.offset
;
515 cur_epos
.offset
= next_epos
.offset
;
517 etype
= udf_next_aext(inode
, &next_epos
, &eloc
, &elen
, 1);
523 laarr
[c
].extLength
= (etype
<< 30) | elen
;
524 laarr
[c
].extLocation
= eloc
;
526 if (etype
!= (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))
527 pgoal
= eloc
.logicalBlockNum
+
528 ((elen
+ inode
->i_sb
->s_blocksize
- 1) >>
529 inode
->i_sb
->s_blocksize_bits
);
532 } while (lbcount
+ elen
<= b_off
);
535 offset
= b_off
>> inode
->i_sb
->s_blocksize_bits
;
537 * Move prev_epos and cur_epos into indirect extent if we are at
540 udf_next_aext(inode
, &prev_epos
, &tmpeloc
, &tmpelen
, 0);
541 udf_next_aext(inode
, &cur_epos
, &tmpeloc
, &tmpelen
, 0);
543 /* if the extent is allocated and recorded, return the block
544 if the extent is not a multiple of the blocksize, round up */
546 if (etype
== (EXT_RECORDED_ALLOCATED
>> 30)) {
547 if (elen
& (inode
->i_sb
->s_blocksize
- 1)) {
548 elen
= EXT_RECORDED_ALLOCATED
|
549 ((elen
+ inode
->i_sb
->s_blocksize
- 1) &
550 ~(inode
->i_sb
->s_blocksize
- 1));
551 etype
= udf_write_aext(inode
, &cur_epos
, &eloc
, elen
, 1);
553 brelse(prev_epos
.bh
);
555 brelse(next_epos
.bh
);
556 newblock
= udf_get_lb_pblock(inode
->i_sb
, &eloc
, offset
);
562 /* Are we beyond EOF? */
571 /* Create a fake extent when there's not one */
572 memset(&laarr
[0].extLocation
, 0x00,
573 sizeof(struct kernel_lb_addr
));
574 laarr
[0].extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
;
575 /* Will udf_extend_file() create real extent from
577 startnum
= (offset
> 0);
579 /* Create extents for the hole between EOF and offset */
580 ret
= udf_extend_file(inode
, &prev_epos
, laarr
, offset
);
582 brelse(prev_epos
.bh
);
584 brelse(next_epos
.bh
);
585 /* We don't really know the error here so we just make
593 /* We are not covered by a preallocated extent? */
594 if ((laarr
[0].extLength
& UDF_EXTENT_FLAG_MASK
) !=
595 EXT_NOT_RECORDED_ALLOCATED
) {
596 /* Is there any real extent? - otherwise we overwrite
600 laarr
[c
].extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
601 inode
->i_sb
->s_blocksize
;
602 memset(&laarr
[c
].extLocation
, 0x00,
603 sizeof(struct kernel_lb_addr
));
610 endnum
= startnum
= ((count
> 2) ? 2 : count
);
612 /* if the current extent is in position 0,
613 swap it with the previous */
614 if (!c
&& count
!= 1) {
621 /* if the current block is located in an extent,
622 read the next extent */
623 etype
= udf_next_aext(inode
, &next_epos
, &eloc
, &elen
, 0);
625 laarr
[c
+ 1].extLength
= (etype
<< 30) | elen
;
626 laarr
[c
+ 1].extLocation
= eloc
;
634 /* if the current extent is not recorded but allocated, get the
635 * block in the extent corresponding to the requested block */
636 if ((laarr
[c
].extLength
>> 30) == (EXT_NOT_RECORDED_ALLOCATED
>> 30))
637 newblocknum
= laarr
[c
].extLocation
.logicalBlockNum
+ offset
;
638 else { /* otherwise, allocate a new block */
639 if (iinfo
->i_next_alloc_block
== block
)
640 goal
= iinfo
->i_next_alloc_goal
;
643 if (!(goal
= pgoal
)) /* XXX: what was intended here? */
644 goal
= iinfo
->i_location
.logicalBlockNum
+ 1;
647 newblocknum
= udf_new_block(inode
->i_sb
, inode
,
648 iinfo
->i_location
.partitionReferenceNum
,
651 brelse(prev_epos
.bh
);
655 iinfo
->i_lenExtents
+= inode
->i_sb
->s_blocksize
;
658 /* if the extent the requsted block is located in contains multiple
659 * blocks, split the extent into at most three extents. blocks prior
660 * to requested block, requested block, and blocks after requested
662 udf_split_extents(inode
, &c
, offset
, newblocknum
, laarr
, &endnum
);
664 #ifdef UDF_PREALLOCATE
665 /* We preallocate blocks only for regular files. It also makes sense
666 * for directories but there's a problem when to drop the
667 * preallocation. We might use some delayed work for that but I feel
668 * it's overengineering for a filesystem like UDF. */
669 if (S_ISREG(inode
->i_mode
))
670 udf_prealloc_extents(inode
, c
, lastblock
, laarr
, &endnum
);
673 /* merge any continuous blocks in laarr */
674 udf_merge_extents(inode
, laarr
, &endnum
);
676 /* write back the new extents, inserting new extents if the new number
677 * of extents is greater than the old number, and deleting extents if
678 * the new number of extents is less than the old number */
679 udf_update_extents(inode
, laarr
, startnum
, endnum
, &prev_epos
);
681 brelse(prev_epos
.bh
);
683 newblock
= udf_get_pblock(inode
->i_sb
, newblocknum
,
684 iinfo
->i_location
.partitionReferenceNum
, 0);
690 iinfo
->i_next_alloc_block
= block
;
691 iinfo
->i_next_alloc_goal
= newblocknum
;
692 inode
->i_ctime
= current_fs_time(inode
->i_sb
);
695 udf_sync_inode(inode
);
697 mark_inode_dirty(inode
);
702 static void udf_split_extents(struct inode
*inode
, int *c
, int offset
,
704 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
707 unsigned long blocksize
= inode
->i_sb
->s_blocksize
;
708 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
710 if ((laarr
[*c
].extLength
>> 30) == (EXT_NOT_RECORDED_ALLOCATED
>> 30) ||
711 (laarr
[*c
].extLength
>> 30) ==
712 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) {
714 int blen
= ((laarr
[curr
].extLength
& UDF_EXTENT_LENGTH_MASK
) +
715 blocksize
- 1) >> blocksize_bits
;
716 int8_t etype
= (laarr
[curr
].extLength
>> 30);
720 else if (!offset
|| blen
== offset
+ 1) {
721 laarr
[curr
+ 2] = laarr
[curr
+ 1];
722 laarr
[curr
+ 1] = laarr
[curr
];
724 laarr
[curr
+ 3] = laarr
[curr
+ 1];
725 laarr
[curr
+ 2] = laarr
[curr
+ 1] = laarr
[curr
];
729 if (etype
== (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
730 udf_free_blocks(inode
->i_sb
, inode
,
731 &laarr
[curr
].extLocation
,
733 laarr
[curr
].extLength
=
734 EXT_NOT_RECORDED_NOT_ALLOCATED
|
735 (offset
<< blocksize_bits
);
736 laarr
[curr
].extLocation
.logicalBlockNum
= 0;
737 laarr
[curr
].extLocation
.
738 partitionReferenceNum
= 0;
740 laarr
[curr
].extLength
= (etype
<< 30) |
741 (offset
<< blocksize_bits
);
747 laarr
[curr
].extLocation
.logicalBlockNum
= newblocknum
;
748 if (etype
== (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))
749 laarr
[curr
].extLocation
.partitionReferenceNum
=
750 UDF_I(inode
)->i_location
.partitionReferenceNum
;
751 laarr
[curr
].extLength
= EXT_RECORDED_ALLOCATED
|
755 if (blen
!= offset
+ 1) {
756 if (etype
== (EXT_NOT_RECORDED_ALLOCATED
>> 30))
757 laarr
[curr
].extLocation
.logicalBlockNum
+=
759 laarr
[curr
].extLength
= (etype
<< 30) |
760 ((blen
- (offset
+ 1)) << blocksize_bits
);
767 static void udf_prealloc_extents(struct inode
*inode
, int c
, int lastblock
,
768 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
771 int start
, length
= 0, currlength
= 0, i
;
773 if (*endnum
>= (c
+ 1)) {
779 if ((laarr
[c
+ 1].extLength
>> 30) ==
780 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
782 length
= currlength
=
783 (((laarr
[c
+ 1].extLength
&
784 UDF_EXTENT_LENGTH_MASK
) +
785 inode
->i_sb
->s_blocksize
- 1) >>
786 inode
->i_sb
->s_blocksize_bits
);
791 for (i
= start
+ 1; i
<= *endnum
; i
++) {
794 length
+= UDF_DEFAULT_PREALLOC_BLOCKS
;
795 } else if ((laarr
[i
].extLength
>> 30) ==
796 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) {
797 length
+= (((laarr
[i
].extLength
&
798 UDF_EXTENT_LENGTH_MASK
) +
799 inode
->i_sb
->s_blocksize
- 1) >>
800 inode
->i_sb
->s_blocksize_bits
);
806 int next
= laarr
[start
].extLocation
.logicalBlockNum
+
807 (((laarr
[start
].extLength
& UDF_EXTENT_LENGTH_MASK
) +
808 inode
->i_sb
->s_blocksize
- 1) >>
809 inode
->i_sb
->s_blocksize_bits
);
810 int numalloc
= udf_prealloc_blocks(inode
->i_sb
, inode
,
811 laarr
[start
].extLocation
.partitionReferenceNum
,
812 next
, (UDF_DEFAULT_PREALLOC_BLOCKS
> length
?
813 length
: UDF_DEFAULT_PREALLOC_BLOCKS
) -
816 if (start
== (c
+ 1))
817 laarr
[start
].extLength
+=
819 inode
->i_sb
->s_blocksize_bits
);
821 memmove(&laarr
[c
+ 2], &laarr
[c
+ 1],
822 sizeof(struct long_ad
) * (*endnum
- (c
+ 1)));
824 laarr
[c
+ 1].extLocation
.logicalBlockNum
= next
;
825 laarr
[c
+ 1].extLocation
.partitionReferenceNum
=
826 laarr
[c
].extLocation
.
827 partitionReferenceNum
;
828 laarr
[c
+ 1].extLength
=
829 EXT_NOT_RECORDED_ALLOCATED
|
831 inode
->i_sb
->s_blocksize_bits
);
835 for (i
= start
+ 1; numalloc
&& i
< *endnum
; i
++) {
836 int elen
= ((laarr
[i
].extLength
&
837 UDF_EXTENT_LENGTH_MASK
) +
838 inode
->i_sb
->s_blocksize
- 1) >>
839 inode
->i_sb
->s_blocksize_bits
;
841 if (elen
> numalloc
) {
842 laarr
[i
].extLength
-=
844 inode
->i_sb
->s_blocksize_bits
);
848 if (*endnum
> (i
+ 1))
851 sizeof(struct long_ad
) *
852 (*endnum
- (i
+ 1)));
857 UDF_I(inode
)->i_lenExtents
+=
858 numalloc
<< inode
->i_sb
->s_blocksize_bits
;
863 static void udf_merge_extents(struct inode
*inode
,
864 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
868 unsigned long blocksize
= inode
->i_sb
->s_blocksize
;
869 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
871 for (i
= 0; i
< (*endnum
- 1); i
++) {
872 struct kernel_long_ad
*li
/*l[i]*/ = &laarr
[i
];
873 struct kernel_long_ad
*lip1
/*l[i plus 1]*/ = &laarr
[i
+ 1];
875 if (((li
->extLength
>> 30) == (lip1
->extLength
>> 30)) &&
876 (((li
->extLength
>> 30) ==
877 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) ||
878 ((lip1
->extLocation
.logicalBlockNum
-
879 li
->extLocation
.logicalBlockNum
) ==
880 (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
881 blocksize
- 1) >> blocksize_bits
)))) {
883 if (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
884 (lip1
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
885 blocksize
- 1) & ~UDF_EXTENT_LENGTH_MASK
) {
886 lip1
->extLength
= (lip1
->extLength
-
888 UDF_EXTENT_LENGTH_MASK
) +
889 UDF_EXTENT_LENGTH_MASK
) &
891 li
->extLength
= (li
->extLength
&
892 UDF_EXTENT_FLAG_MASK
) +
893 (UDF_EXTENT_LENGTH_MASK
+ 1) -
895 lip1
->extLocation
.logicalBlockNum
=
896 li
->extLocation
.logicalBlockNum
+
898 UDF_EXTENT_LENGTH_MASK
) >>
901 li
->extLength
= lip1
->extLength
+
903 UDF_EXTENT_LENGTH_MASK
) +
904 blocksize
- 1) & ~(blocksize
- 1));
905 if (*endnum
> (i
+ 2))
906 memmove(&laarr
[i
+ 1], &laarr
[i
+ 2],
907 sizeof(struct long_ad
) *
908 (*endnum
- (i
+ 2)));
912 } else if (((li
->extLength
>> 30) ==
913 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) &&
914 ((lip1
->extLength
>> 30) ==
915 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))) {
916 udf_free_blocks(inode
->i_sb
, inode
, &li
->extLocation
, 0,
918 UDF_EXTENT_LENGTH_MASK
) +
919 blocksize
- 1) >> blocksize_bits
);
920 li
->extLocation
.logicalBlockNum
= 0;
921 li
->extLocation
.partitionReferenceNum
= 0;
923 if (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
924 (lip1
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
925 blocksize
- 1) & ~UDF_EXTENT_LENGTH_MASK
) {
926 lip1
->extLength
= (lip1
->extLength
-
928 UDF_EXTENT_LENGTH_MASK
) +
929 UDF_EXTENT_LENGTH_MASK
) &
931 li
->extLength
= (li
->extLength
&
932 UDF_EXTENT_FLAG_MASK
) +
933 (UDF_EXTENT_LENGTH_MASK
+ 1) -
936 li
->extLength
= lip1
->extLength
+
938 UDF_EXTENT_LENGTH_MASK
) +
939 blocksize
- 1) & ~(blocksize
- 1));
940 if (*endnum
> (i
+ 2))
941 memmove(&laarr
[i
+ 1], &laarr
[i
+ 2],
942 sizeof(struct long_ad
) *
943 (*endnum
- (i
+ 2)));
947 } else if ((li
->extLength
>> 30) ==
948 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
949 udf_free_blocks(inode
->i_sb
, inode
,
952 UDF_EXTENT_LENGTH_MASK
) +
953 blocksize
- 1) >> blocksize_bits
);
954 li
->extLocation
.logicalBlockNum
= 0;
955 li
->extLocation
.partitionReferenceNum
= 0;
956 li
->extLength
= (li
->extLength
&
957 UDF_EXTENT_LENGTH_MASK
) |
958 EXT_NOT_RECORDED_NOT_ALLOCATED
;
963 static void udf_update_extents(struct inode
*inode
,
964 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
965 int startnum
, int endnum
,
966 struct extent_position
*epos
)
969 struct kernel_lb_addr tmploc
;
972 if (startnum
> endnum
) {
973 for (i
= 0; i
< (startnum
- endnum
); i
++)
974 udf_delete_aext(inode
, *epos
, laarr
[i
].extLocation
,
976 } else if (startnum
< endnum
) {
977 for (i
= 0; i
< (endnum
- startnum
); i
++) {
978 udf_insert_aext(inode
, *epos
, laarr
[i
].extLocation
,
980 udf_next_aext(inode
, epos
, &laarr
[i
].extLocation
,
981 &laarr
[i
].extLength
, 1);
986 for (i
= start
; i
< endnum
; i
++) {
987 udf_next_aext(inode
, epos
, &tmploc
, &tmplen
, 0);
988 udf_write_aext(inode
, epos
, &laarr
[i
].extLocation
,
989 laarr
[i
].extLength
, 1);
993 struct buffer_head
*udf_bread(struct inode
*inode
, int block
,
994 int create
, int *err
)
996 struct buffer_head
*bh
= NULL
;
998 bh
= udf_getblk(inode
, block
, create
, err
);
1002 if (buffer_uptodate(bh
))
1005 ll_rw_block(READ
, 1, &bh
);
1008 if (buffer_uptodate(bh
))
1016 void udf_truncate(struct inode
*inode
)
1020 struct udf_inode_info
*iinfo
;
1022 if (!(S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1023 S_ISLNK(inode
->i_mode
)))
1025 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
1029 iinfo
= UDF_I(inode
);
1030 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
1031 if (inode
->i_sb
->s_blocksize
<
1032 (udf_file_entry_alloc_offset(inode
) +
1034 udf_expand_file_adinicb(inode
, inode
->i_size
, &err
);
1035 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
1036 inode
->i_size
= iinfo
->i_lenAlloc
;
1040 udf_truncate_extents(inode
);
1042 offset
= inode
->i_size
& (inode
->i_sb
->s_blocksize
- 1);
1043 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
+ offset
,
1044 0x00, inode
->i_sb
->s_blocksize
-
1045 offset
- udf_file_entry_alloc_offset(inode
));
1046 iinfo
->i_lenAlloc
= inode
->i_size
;
1049 block_truncate_page(inode
->i_mapping
, inode
->i_size
,
1051 udf_truncate_extents(inode
);
1054 inode
->i_mtime
= inode
->i_ctime
= current_fs_time(inode
->i_sb
);
1056 udf_sync_inode(inode
);
1058 mark_inode_dirty(inode
);
1062 static void __udf_read_inode(struct inode
*inode
)
1064 struct buffer_head
*bh
= NULL
;
1065 struct fileEntry
*fe
;
1067 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1070 * Set defaults, but the inode is still incomplete!
1071 * Note: get_new_inode() sets the following on a new inode:
1074 * i_flags = sb->s_flags
1076 * clean_inode(): zero fills and sets
1081 bh
= udf_read_ptagged(inode
->i_sb
, &iinfo
->i_location
, 0, &ident
);
1083 printk(KERN_ERR
"udf: udf_read_inode(ino %ld) failed !bh\n",
1085 make_bad_inode(inode
);
1089 if (ident
!= TAG_IDENT_FE
&& ident
!= TAG_IDENT_EFE
&&
1090 ident
!= TAG_IDENT_USE
) {
1091 printk(KERN_ERR
"udf: udf_read_inode(ino %ld) "
1092 "failed ident=%d\n", inode
->i_ino
, ident
);
1094 make_bad_inode(inode
);
1098 fe
= (struct fileEntry
*)bh
->b_data
;
1100 if (fe
->icbTag
.strategyType
== cpu_to_le16(4096)) {
1101 struct buffer_head
*ibh
;
1103 ibh
= udf_read_ptagged(inode
->i_sb
, &iinfo
->i_location
, 1,
1105 if (ident
== TAG_IDENT_IE
&& ibh
) {
1106 struct buffer_head
*nbh
= NULL
;
1107 struct kernel_lb_addr loc
;
1108 struct indirectEntry
*ie
;
1110 ie
= (struct indirectEntry
*)ibh
->b_data
;
1111 loc
= lelb_to_cpu(ie
->indirectICB
.extLocation
);
1113 if (ie
->indirectICB
.extLength
&&
1114 (nbh
= udf_read_ptagged(inode
->i_sb
, &loc
, 0,
1116 if (ident
== TAG_IDENT_FE
||
1117 ident
== TAG_IDENT_EFE
) {
1118 memcpy(&iinfo
->i_location
,
1120 sizeof(struct kernel_lb_addr
));
1124 __udf_read_inode(inode
);
1131 } else if (fe
->icbTag
.strategyType
!= cpu_to_le16(4)) {
1132 printk(KERN_ERR
"udf: unsupported strategy type: %d\n",
1133 le16_to_cpu(fe
->icbTag
.strategyType
));
1135 make_bad_inode(inode
);
1138 udf_fill_inode(inode
, bh
);
1143 static void udf_fill_inode(struct inode
*inode
, struct buffer_head
*bh
)
1145 struct fileEntry
*fe
;
1146 struct extendedFileEntry
*efe
;
1148 struct udf_sb_info
*sbi
= UDF_SB(inode
->i_sb
);
1149 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1151 fe
= (struct fileEntry
*)bh
->b_data
;
1152 efe
= (struct extendedFileEntry
*)bh
->b_data
;
1154 if (fe
->icbTag
.strategyType
== cpu_to_le16(4))
1155 iinfo
->i_strat4096
= 0;
1156 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
1157 iinfo
->i_strat4096
= 1;
1159 iinfo
->i_alloc_type
= le16_to_cpu(fe
->icbTag
.flags
) &
1160 ICBTAG_FLAG_AD_MASK
;
1161 iinfo
->i_unique
= 0;
1162 iinfo
->i_lenEAttr
= 0;
1163 iinfo
->i_lenExtents
= 0;
1164 iinfo
->i_lenAlloc
= 0;
1165 iinfo
->i_next_alloc_block
= 0;
1166 iinfo
->i_next_alloc_goal
= 0;
1167 if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_EFE
)) {
1170 if (udf_alloc_i_data(inode
, inode
->i_sb
->s_blocksize
-
1171 sizeof(struct extendedFileEntry
))) {
1172 make_bad_inode(inode
);
1175 memcpy(iinfo
->i_ext
.i_data
,
1176 bh
->b_data
+ sizeof(struct extendedFileEntry
),
1177 inode
->i_sb
->s_blocksize
-
1178 sizeof(struct extendedFileEntry
));
1179 } else if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_FE
)) {
1182 if (udf_alloc_i_data(inode
, inode
->i_sb
->s_blocksize
-
1183 sizeof(struct fileEntry
))) {
1184 make_bad_inode(inode
);
1187 memcpy(iinfo
->i_ext
.i_data
,
1188 bh
->b_data
+ sizeof(struct fileEntry
),
1189 inode
->i_sb
->s_blocksize
- sizeof(struct fileEntry
));
1190 } else if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_USE
)) {
1193 iinfo
->i_lenAlloc
= le32_to_cpu(
1194 ((struct unallocSpaceEntry
*)bh
->b_data
)->
1196 if (udf_alloc_i_data(inode
, inode
->i_sb
->s_blocksize
-
1197 sizeof(struct unallocSpaceEntry
))) {
1198 make_bad_inode(inode
);
1201 memcpy(iinfo
->i_ext
.i_data
,
1202 bh
->b_data
+ sizeof(struct unallocSpaceEntry
),
1203 inode
->i_sb
->s_blocksize
-
1204 sizeof(struct unallocSpaceEntry
));
1208 inode
->i_uid
= le32_to_cpu(fe
->uid
);
1209 if (inode
->i_uid
== -1 ||
1210 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_IGNORE
) ||
1211 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_SET
))
1212 inode
->i_uid
= UDF_SB(inode
->i_sb
)->s_uid
;
1214 inode
->i_gid
= le32_to_cpu(fe
->gid
);
1215 if (inode
->i_gid
== -1 ||
1216 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_IGNORE
) ||
1217 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_SET
))
1218 inode
->i_gid
= UDF_SB(inode
->i_sb
)->s_gid
;
1220 inode
->i_nlink
= le16_to_cpu(fe
->fileLinkCount
);
1221 if (!inode
->i_nlink
)
1224 inode
->i_size
= le64_to_cpu(fe
->informationLength
);
1225 iinfo
->i_lenExtents
= inode
->i_size
;
1227 if (fe
->icbTag
.fileType
!= ICBTAG_FILE_TYPE_DIRECTORY
&&
1228 sbi
->s_fmode
!= UDF_INVALID_MODE
)
1229 inode
->i_mode
= sbi
->s_fmode
;
1230 else if (fe
->icbTag
.fileType
== ICBTAG_FILE_TYPE_DIRECTORY
&&
1231 sbi
->s_dmode
!= UDF_INVALID_MODE
)
1232 inode
->i_mode
= sbi
->s_dmode
;
1234 inode
->i_mode
= udf_convert_permissions(fe
);
1235 inode
->i_mode
&= ~sbi
->s_umask
;
1237 if (iinfo
->i_efe
== 0) {
1238 inode
->i_blocks
= le64_to_cpu(fe
->logicalBlocksRecorded
) <<
1239 (inode
->i_sb
->s_blocksize_bits
- 9);
1241 if (!udf_disk_stamp_to_time(&inode
->i_atime
, fe
->accessTime
))
1242 inode
->i_atime
= sbi
->s_record_time
;
1244 if (!udf_disk_stamp_to_time(&inode
->i_mtime
,
1245 fe
->modificationTime
))
1246 inode
->i_mtime
= sbi
->s_record_time
;
1248 if (!udf_disk_stamp_to_time(&inode
->i_ctime
, fe
->attrTime
))
1249 inode
->i_ctime
= sbi
->s_record_time
;
1251 iinfo
->i_unique
= le64_to_cpu(fe
->uniqueID
);
1252 iinfo
->i_lenEAttr
= le32_to_cpu(fe
->lengthExtendedAttr
);
1253 iinfo
->i_lenAlloc
= le32_to_cpu(fe
->lengthAllocDescs
);
1254 offset
= sizeof(struct fileEntry
) + iinfo
->i_lenEAttr
;
1256 inode
->i_blocks
= le64_to_cpu(efe
->logicalBlocksRecorded
) <<
1257 (inode
->i_sb
->s_blocksize_bits
- 9);
1259 if (!udf_disk_stamp_to_time(&inode
->i_atime
, efe
->accessTime
))
1260 inode
->i_atime
= sbi
->s_record_time
;
1262 if (!udf_disk_stamp_to_time(&inode
->i_mtime
,
1263 efe
->modificationTime
))
1264 inode
->i_mtime
= sbi
->s_record_time
;
1266 if (!udf_disk_stamp_to_time(&iinfo
->i_crtime
, efe
->createTime
))
1267 iinfo
->i_crtime
= sbi
->s_record_time
;
1269 if (!udf_disk_stamp_to_time(&inode
->i_ctime
, efe
->attrTime
))
1270 inode
->i_ctime
= sbi
->s_record_time
;
1272 iinfo
->i_unique
= le64_to_cpu(efe
->uniqueID
);
1273 iinfo
->i_lenEAttr
= le32_to_cpu(efe
->lengthExtendedAttr
);
1274 iinfo
->i_lenAlloc
= le32_to_cpu(efe
->lengthAllocDescs
);
1275 offset
= sizeof(struct extendedFileEntry
) +
1279 switch (fe
->icbTag
.fileType
) {
1280 case ICBTAG_FILE_TYPE_DIRECTORY
:
1281 inode
->i_op
= &udf_dir_inode_operations
;
1282 inode
->i_fop
= &udf_dir_operations
;
1283 inode
->i_mode
|= S_IFDIR
;
1286 case ICBTAG_FILE_TYPE_REALTIME
:
1287 case ICBTAG_FILE_TYPE_REGULAR
:
1288 case ICBTAG_FILE_TYPE_UNDEF
:
1289 case ICBTAG_FILE_TYPE_VAT20
:
1290 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
)
1291 inode
->i_data
.a_ops
= &udf_adinicb_aops
;
1293 inode
->i_data
.a_ops
= &udf_aops
;
1294 inode
->i_op
= &udf_file_inode_operations
;
1295 inode
->i_fop
= &udf_file_operations
;
1296 inode
->i_mode
|= S_IFREG
;
1298 case ICBTAG_FILE_TYPE_BLOCK
:
1299 inode
->i_mode
|= S_IFBLK
;
1301 case ICBTAG_FILE_TYPE_CHAR
:
1302 inode
->i_mode
|= S_IFCHR
;
1304 case ICBTAG_FILE_TYPE_FIFO
:
1305 init_special_inode(inode
, inode
->i_mode
| S_IFIFO
, 0);
1307 case ICBTAG_FILE_TYPE_SOCKET
:
1308 init_special_inode(inode
, inode
->i_mode
| S_IFSOCK
, 0);
1310 case ICBTAG_FILE_TYPE_SYMLINK
:
1311 inode
->i_data
.a_ops
= &udf_symlink_aops
;
1312 inode
->i_op
= &udf_symlink_inode_operations
;
1313 inode
->i_mode
= S_IFLNK
| S_IRWXUGO
;
1315 case ICBTAG_FILE_TYPE_MAIN
:
1316 udf_debug("METADATA FILE-----\n");
1318 case ICBTAG_FILE_TYPE_MIRROR
:
1319 udf_debug("METADATA MIRROR FILE-----\n");
1321 case ICBTAG_FILE_TYPE_BITMAP
:
1322 udf_debug("METADATA BITMAP FILE-----\n");
1325 printk(KERN_ERR
"udf: udf_fill_inode(ino %ld) failed unknown "
1326 "file type=%d\n", inode
->i_ino
,
1327 fe
->icbTag
.fileType
);
1328 make_bad_inode(inode
);
1331 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
)) {
1332 struct deviceSpec
*dsea
=
1333 (struct deviceSpec
*)udf_get_extendedattr(inode
, 12, 1);
1335 init_special_inode(inode
, inode
->i_mode
,
1336 MKDEV(le32_to_cpu(dsea
->majorDeviceIdent
),
1337 le32_to_cpu(dsea
->minorDeviceIdent
)));
1338 /* Developer ID ??? */
1340 make_bad_inode(inode
);
1344 static int udf_alloc_i_data(struct inode
*inode
, size_t size
)
1346 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1347 iinfo
->i_ext
.i_data
= kmalloc(size
, GFP_KERNEL
);
1349 if (!iinfo
->i_ext
.i_data
) {
1350 printk(KERN_ERR
"udf:udf_alloc_i_data (ino %ld) "
1351 "no free memory\n", inode
->i_ino
);
1358 static mode_t
udf_convert_permissions(struct fileEntry
*fe
)
1361 uint32_t permissions
;
1364 permissions
= le32_to_cpu(fe
->permissions
);
1365 flags
= le16_to_cpu(fe
->icbTag
.flags
);
1367 mode
= ((permissions
) & S_IRWXO
) |
1368 ((permissions
>> 2) & S_IRWXG
) |
1369 ((permissions
>> 4) & S_IRWXU
) |
1370 ((flags
& ICBTAG_FLAG_SETUID
) ? S_ISUID
: 0) |
1371 ((flags
& ICBTAG_FLAG_SETGID
) ? S_ISGID
: 0) |
1372 ((flags
& ICBTAG_FLAG_STICKY
) ? S_ISVTX
: 0);
1377 int udf_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1382 ret
= udf_update_inode(inode
, wbc
->sync_mode
== WB_SYNC_ALL
);
1388 int udf_sync_inode(struct inode
*inode
)
1390 return udf_update_inode(inode
, 1);
1393 static int udf_update_inode(struct inode
*inode
, int do_sync
)
1395 struct buffer_head
*bh
= NULL
;
1396 struct fileEntry
*fe
;
1397 struct extendedFileEntry
*efe
;
1402 struct udf_sb_info
*sbi
= UDF_SB(inode
->i_sb
);
1403 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
1404 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1406 bh
= udf_tgetblk(inode
->i_sb
,
1407 udf_get_lb_pblock(inode
->i_sb
, &iinfo
->i_location
, 0));
1409 udf_debug("getblk failure\n");
1414 memset(bh
->b_data
, 0, inode
->i_sb
->s_blocksize
);
1415 fe
= (struct fileEntry
*)bh
->b_data
;
1416 efe
= (struct extendedFileEntry
*)bh
->b_data
;
1419 struct unallocSpaceEntry
*use
=
1420 (struct unallocSpaceEntry
*)bh
->b_data
;
1422 use
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1423 memcpy(bh
->b_data
+ sizeof(struct unallocSpaceEntry
),
1424 iinfo
->i_ext
.i_data
, inode
->i_sb
->s_blocksize
-
1425 sizeof(struct unallocSpaceEntry
));
1426 use
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_USE
);
1427 use
->descTag
.tagLocation
=
1428 cpu_to_le32(iinfo
->i_location
.logicalBlockNum
);
1429 crclen
= sizeof(struct unallocSpaceEntry
) +
1430 iinfo
->i_lenAlloc
- sizeof(struct tag
);
1431 use
->descTag
.descCRCLength
= cpu_to_le16(crclen
);
1432 use
->descTag
.descCRC
= cpu_to_le16(crc_itu_t(0, (char *)use
+
1435 use
->descTag
.tagChecksum
= udf_tag_checksum(&use
->descTag
);
1440 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_FORGET
))
1441 fe
->uid
= cpu_to_le32(-1);
1443 fe
->uid
= cpu_to_le32(inode
->i_uid
);
1445 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_FORGET
))
1446 fe
->gid
= cpu_to_le32(-1);
1448 fe
->gid
= cpu_to_le32(inode
->i_gid
);
1450 udfperms
= ((inode
->i_mode
& S_IRWXO
)) |
1451 ((inode
->i_mode
& S_IRWXG
) << 2) |
1452 ((inode
->i_mode
& S_IRWXU
) << 4);
1454 udfperms
|= (le32_to_cpu(fe
->permissions
) &
1455 (FE_PERM_O_DELETE
| FE_PERM_O_CHATTR
|
1456 FE_PERM_G_DELETE
| FE_PERM_G_CHATTR
|
1457 FE_PERM_U_DELETE
| FE_PERM_U_CHATTR
));
1458 fe
->permissions
= cpu_to_le32(udfperms
);
1460 if (S_ISDIR(inode
->i_mode
))
1461 fe
->fileLinkCount
= cpu_to_le16(inode
->i_nlink
- 1);
1463 fe
->fileLinkCount
= cpu_to_le16(inode
->i_nlink
);
1465 fe
->informationLength
= cpu_to_le64(inode
->i_size
);
1467 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
)) {
1469 struct deviceSpec
*dsea
=
1470 (struct deviceSpec
*)udf_get_extendedattr(inode
, 12, 1);
1472 dsea
= (struct deviceSpec
*)
1473 udf_add_extendedattr(inode
,
1474 sizeof(struct deviceSpec
) +
1475 sizeof(struct regid
), 12, 0x3);
1476 dsea
->attrType
= cpu_to_le32(12);
1477 dsea
->attrSubtype
= 1;
1478 dsea
->attrLength
= cpu_to_le32(
1479 sizeof(struct deviceSpec
) +
1480 sizeof(struct regid
));
1481 dsea
->impUseLength
= cpu_to_le32(sizeof(struct regid
));
1483 eid
= (struct regid
*)dsea
->impUse
;
1484 memset(eid
, 0, sizeof(struct regid
));
1485 strcpy(eid
->ident
, UDF_ID_DEVELOPER
);
1486 eid
->identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1487 eid
->identSuffix
[1] = UDF_OS_ID_LINUX
;
1488 dsea
->majorDeviceIdent
= cpu_to_le32(imajor(inode
));
1489 dsea
->minorDeviceIdent
= cpu_to_le32(iminor(inode
));
1492 if (iinfo
->i_efe
== 0) {
1493 memcpy(bh
->b_data
+ sizeof(struct fileEntry
),
1494 iinfo
->i_ext
.i_data
,
1495 inode
->i_sb
->s_blocksize
- sizeof(struct fileEntry
));
1496 fe
->logicalBlocksRecorded
= cpu_to_le64(
1497 (inode
->i_blocks
+ (1 << (blocksize_bits
- 9)) - 1) >>
1498 (blocksize_bits
- 9));
1500 udf_time_to_disk_stamp(&fe
->accessTime
, inode
->i_atime
);
1501 udf_time_to_disk_stamp(&fe
->modificationTime
, inode
->i_mtime
);
1502 udf_time_to_disk_stamp(&fe
->attrTime
, inode
->i_ctime
);
1503 memset(&(fe
->impIdent
), 0, sizeof(struct regid
));
1504 strcpy(fe
->impIdent
.ident
, UDF_ID_DEVELOPER
);
1505 fe
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1506 fe
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1507 fe
->uniqueID
= cpu_to_le64(iinfo
->i_unique
);
1508 fe
->lengthExtendedAttr
= cpu_to_le32(iinfo
->i_lenEAttr
);
1509 fe
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1510 fe
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_FE
);
1511 crclen
= sizeof(struct fileEntry
);
1513 memcpy(bh
->b_data
+ sizeof(struct extendedFileEntry
),
1514 iinfo
->i_ext
.i_data
,
1515 inode
->i_sb
->s_blocksize
-
1516 sizeof(struct extendedFileEntry
));
1517 efe
->objectSize
= cpu_to_le64(inode
->i_size
);
1518 efe
->logicalBlocksRecorded
= cpu_to_le64(
1519 (inode
->i_blocks
+ (1 << (blocksize_bits
- 9)) - 1) >>
1520 (blocksize_bits
- 9));
1522 if (iinfo
->i_crtime
.tv_sec
> inode
->i_atime
.tv_sec
||
1523 (iinfo
->i_crtime
.tv_sec
== inode
->i_atime
.tv_sec
&&
1524 iinfo
->i_crtime
.tv_nsec
> inode
->i_atime
.tv_nsec
))
1525 iinfo
->i_crtime
= inode
->i_atime
;
1527 if (iinfo
->i_crtime
.tv_sec
> inode
->i_mtime
.tv_sec
||
1528 (iinfo
->i_crtime
.tv_sec
== inode
->i_mtime
.tv_sec
&&
1529 iinfo
->i_crtime
.tv_nsec
> inode
->i_mtime
.tv_nsec
))
1530 iinfo
->i_crtime
= inode
->i_mtime
;
1532 if (iinfo
->i_crtime
.tv_sec
> inode
->i_ctime
.tv_sec
||
1533 (iinfo
->i_crtime
.tv_sec
== inode
->i_ctime
.tv_sec
&&
1534 iinfo
->i_crtime
.tv_nsec
> inode
->i_ctime
.tv_nsec
))
1535 iinfo
->i_crtime
= inode
->i_ctime
;
1537 udf_time_to_disk_stamp(&efe
->accessTime
, inode
->i_atime
);
1538 udf_time_to_disk_stamp(&efe
->modificationTime
, inode
->i_mtime
);
1539 udf_time_to_disk_stamp(&efe
->createTime
, iinfo
->i_crtime
);
1540 udf_time_to_disk_stamp(&efe
->attrTime
, inode
->i_ctime
);
1542 memset(&(efe
->impIdent
), 0, sizeof(struct regid
));
1543 strcpy(efe
->impIdent
.ident
, UDF_ID_DEVELOPER
);
1544 efe
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1545 efe
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1546 efe
->uniqueID
= cpu_to_le64(iinfo
->i_unique
);
1547 efe
->lengthExtendedAttr
= cpu_to_le32(iinfo
->i_lenEAttr
);
1548 efe
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1549 efe
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_EFE
);
1550 crclen
= sizeof(struct extendedFileEntry
);
1552 if (iinfo
->i_strat4096
) {
1553 fe
->icbTag
.strategyType
= cpu_to_le16(4096);
1554 fe
->icbTag
.strategyParameter
= cpu_to_le16(1);
1555 fe
->icbTag
.numEntries
= cpu_to_le16(2);
1557 fe
->icbTag
.strategyType
= cpu_to_le16(4);
1558 fe
->icbTag
.numEntries
= cpu_to_le16(1);
1561 if (S_ISDIR(inode
->i_mode
))
1562 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_DIRECTORY
;
1563 else if (S_ISREG(inode
->i_mode
))
1564 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_REGULAR
;
1565 else if (S_ISLNK(inode
->i_mode
))
1566 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_SYMLINK
;
1567 else if (S_ISBLK(inode
->i_mode
))
1568 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_BLOCK
;
1569 else if (S_ISCHR(inode
->i_mode
))
1570 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_CHAR
;
1571 else if (S_ISFIFO(inode
->i_mode
))
1572 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_FIFO
;
1573 else if (S_ISSOCK(inode
->i_mode
))
1574 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_SOCKET
;
1576 icbflags
= iinfo
->i_alloc_type
|
1577 ((inode
->i_mode
& S_ISUID
) ? ICBTAG_FLAG_SETUID
: 0) |
1578 ((inode
->i_mode
& S_ISGID
) ? ICBTAG_FLAG_SETGID
: 0) |
1579 ((inode
->i_mode
& S_ISVTX
) ? ICBTAG_FLAG_STICKY
: 0) |
1580 (le16_to_cpu(fe
->icbTag
.flags
) &
1581 ~(ICBTAG_FLAG_AD_MASK
| ICBTAG_FLAG_SETUID
|
1582 ICBTAG_FLAG_SETGID
| ICBTAG_FLAG_STICKY
));
1584 fe
->icbTag
.flags
= cpu_to_le16(icbflags
);
1585 if (sbi
->s_udfrev
>= 0x0200)
1586 fe
->descTag
.descVersion
= cpu_to_le16(3);
1588 fe
->descTag
.descVersion
= cpu_to_le16(2);
1589 fe
->descTag
.tagSerialNum
= cpu_to_le16(sbi
->s_serial_number
);
1590 fe
->descTag
.tagLocation
= cpu_to_le32(
1591 iinfo
->i_location
.logicalBlockNum
);
1592 crclen
+= iinfo
->i_lenEAttr
+ iinfo
->i_lenAlloc
- sizeof(struct tag
);
1593 fe
->descTag
.descCRCLength
= cpu_to_le16(crclen
);
1594 fe
->descTag
.descCRC
= cpu_to_le16(crc_itu_t(0, (char *)fe
+ sizeof(struct tag
),
1596 fe
->descTag
.tagChecksum
= udf_tag_checksum(&fe
->descTag
);
1599 set_buffer_uptodate(bh
);
1602 /* write the data blocks */
1603 mark_buffer_dirty(bh
);
1605 sync_dirty_buffer(bh
);
1606 if (buffer_write_io_error(bh
)) {
1607 printk(KERN_WARNING
"IO error syncing udf inode "
1608 "[%s:%08lx]\n", inode
->i_sb
->s_id
,
1618 struct inode
*udf_iget(struct super_block
*sb
, struct kernel_lb_addr
*ino
)
1620 unsigned long block
= udf_get_lb_pblock(sb
, ino
, 0);
1621 struct inode
*inode
= iget_locked(sb
, block
);
1626 if (inode
->i_state
& I_NEW
) {
1627 memcpy(&UDF_I(inode
)->i_location
, ino
, sizeof(struct kernel_lb_addr
));
1628 __udf_read_inode(inode
);
1629 unlock_new_inode(inode
);
1632 if (is_bad_inode(inode
))
1635 if (ino
->logicalBlockNum
>= UDF_SB(sb
)->
1636 s_partmaps
[ino
->partitionReferenceNum
].s_partition_len
) {
1637 udf_debug("block=%d, partition=%d out of range\n",
1638 ino
->logicalBlockNum
, ino
->partitionReferenceNum
);
1639 make_bad_inode(inode
);
1650 int8_t udf_add_aext(struct inode
*inode
, struct extent_position
*epos
,
1651 struct kernel_lb_addr
*eloc
, uint32_t elen
, int inc
)
1654 struct short_ad
*sad
= NULL
;
1655 struct long_ad
*lad
= NULL
;
1656 struct allocExtDesc
*aed
;
1659 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1662 ptr
= iinfo
->i_ext
.i_data
+ epos
->offset
-
1663 udf_file_entry_alloc_offset(inode
) +
1666 ptr
= epos
->bh
->b_data
+ epos
->offset
;
1668 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
1669 adsize
= sizeof(struct short_ad
);
1670 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
1671 adsize
= sizeof(struct long_ad
);
1675 if (epos
->offset
+ (2 * adsize
) > inode
->i_sb
->s_blocksize
) {
1676 unsigned char *sptr
, *dptr
;
1677 struct buffer_head
*nbh
;
1679 struct kernel_lb_addr obloc
= epos
->block
;
1681 epos
->block
.logicalBlockNum
= udf_new_block(inode
->i_sb
, NULL
,
1682 obloc
.partitionReferenceNum
,
1683 obloc
.logicalBlockNum
, &err
);
1684 if (!epos
->block
.logicalBlockNum
)
1686 nbh
= udf_tgetblk(inode
->i_sb
, udf_get_lb_pblock(inode
->i_sb
,
1692 memset(nbh
->b_data
, 0x00, inode
->i_sb
->s_blocksize
);
1693 set_buffer_uptodate(nbh
);
1695 mark_buffer_dirty_inode(nbh
, inode
);
1697 aed
= (struct allocExtDesc
*)(nbh
->b_data
);
1698 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
))
1699 aed
->previousAllocExtLocation
=
1700 cpu_to_le32(obloc
.logicalBlockNum
);
1701 if (epos
->offset
+ adsize
> inode
->i_sb
->s_blocksize
) {
1702 loffset
= epos
->offset
;
1703 aed
->lengthAllocDescs
= cpu_to_le32(adsize
);
1704 sptr
= ptr
- adsize
;
1705 dptr
= nbh
->b_data
+ sizeof(struct allocExtDesc
);
1706 memcpy(dptr
, sptr
, adsize
);
1707 epos
->offset
= sizeof(struct allocExtDesc
) + adsize
;
1709 loffset
= epos
->offset
+ adsize
;
1710 aed
->lengthAllocDescs
= cpu_to_le32(0);
1712 epos
->offset
= sizeof(struct allocExtDesc
);
1715 aed
= (struct allocExtDesc
*)epos
->bh
->b_data
;
1716 le32_add_cpu(&aed
->lengthAllocDescs
, adsize
);
1718 iinfo
->i_lenAlloc
+= adsize
;
1719 mark_inode_dirty(inode
);
1722 if (UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0200)
1723 udf_new_tag(nbh
->b_data
, TAG_IDENT_AED
, 3, 1,
1724 epos
->block
.logicalBlockNum
, sizeof(struct tag
));
1726 udf_new_tag(nbh
->b_data
, TAG_IDENT_AED
, 2, 1,
1727 epos
->block
.logicalBlockNum
, sizeof(struct tag
));
1728 switch (iinfo
->i_alloc_type
) {
1729 case ICBTAG_FLAG_AD_SHORT
:
1730 sad
= (struct short_ad
*)sptr
;
1731 sad
->extLength
= cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS
|
1732 inode
->i_sb
->s_blocksize
);
1734 cpu_to_le32(epos
->block
.logicalBlockNum
);
1736 case ICBTAG_FLAG_AD_LONG
:
1737 lad
= (struct long_ad
*)sptr
;
1738 lad
->extLength
= cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS
|
1739 inode
->i_sb
->s_blocksize
);
1740 lad
->extLocation
= cpu_to_lelb(epos
->block
);
1741 memset(lad
->impUse
, 0x00, sizeof(lad
->impUse
));
1745 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1746 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
1747 udf_update_tag(epos
->bh
->b_data
, loffset
);
1749 udf_update_tag(epos
->bh
->b_data
,
1750 sizeof(struct allocExtDesc
));
1751 mark_buffer_dirty_inode(epos
->bh
, inode
);
1754 mark_inode_dirty(inode
);
1759 etype
= udf_write_aext(inode
, epos
, eloc
, elen
, inc
);
1762 iinfo
->i_lenAlloc
+= adsize
;
1763 mark_inode_dirty(inode
);
1765 aed
= (struct allocExtDesc
*)epos
->bh
->b_data
;
1766 le32_add_cpu(&aed
->lengthAllocDescs
, adsize
);
1767 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1768 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
1769 udf_update_tag(epos
->bh
->b_data
,
1770 epos
->offset
+ (inc
? 0 : adsize
));
1772 udf_update_tag(epos
->bh
->b_data
,
1773 sizeof(struct allocExtDesc
));
1774 mark_buffer_dirty_inode(epos
->bh
, inode
);
1780 int8_t udf_write_aext(struct inode
*inode
, struct extent_position
*epos
,
1781 struct kernel_lb_addr
*eloc
, uint32_t elen
, int inc
)
1785 struct short_ad
*sad
;
1786 struct long_ad
*lad
;
1787 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1790 ptr
= iinfo
->i_ext
.i_data
+ epos
->offset
-
1791 udf_file_entry_alloc_offset(inode
) +
1794 ptr
= epos
->bh
->b_data
+ epos
->offset
;
1796 switch (iinfo
->i_alloc_type
) {
1797 case ICBTAG_FLAG_AD_SHORT
:
1798 sad
= (struct short_ad
*)ptr
;
1799 sad
->extLength
= cpu_to_le32(elen
);
1800 sad
->extPosition
= cpu_to_le32(eloc
->logicalBlockNum
);
1801 adsize
= sizeof(struct short_ad
);
1803 case ICBTAG_FLAG_AD_LONG
:
1804 lad
= (struct long_ad
*)ptr
;
1805 lad
->extLength
= cpu_to_le32(elen
);
1806 lad
->extLocation
= cpu_to_lelb(*eloc
);
1807 memset(lad
->impUse
, 0x00, sizeof(lad
->impUse
));
1808 adsize
= sizeof(struct long_ad
);
1815 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1816 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201) {
1817 struct allocExtDesc
*aed
=
1818 (struct allocExtDesc
*)epos
->bh
->b_data
;
1819 udf_update_tag(epos
->bh
->b_data
,
1820 le32_to_cpu(aed
->lengthAllocDescs
) +
1821 sizeof(struct allocExtDesc
));
1823 mark_buffer_dirty_inode(epos
->bh
, inode
);
1825 mark_inode_dirty(inode
);
1829 epos
->offset
+= adsize
;
1831 return (elen
>> 30);
1834 int8_t udf_next_aext(struct inode
*inode
, struct extent_position
*epos
,
1835 struct kernel_lb_addr
*eloc
, uint32_t *elen
, int inc
)
1839 while ((etype
= udf_current_aext(inode
, epos
, eloc
, elen
, inc
)) ==
1840 (EXT_NEXT_EXTENT_ALLOCDECS
>> 30)) {
1842 epos
->block
= *eloc
;
1843 epos
->offset
= sizeof(struct allocExtDesc
);
1845 block
= udf_get_lb_pblock(inode
->i_sb
, &epos
->block
, 0);
1846 epos
->bh
= udf_tread(inode
->i_sb
, block
);
1848 udf_debug("reading block %d failed!\n", block
);
1856 int8_t udf_current_aext(struct inode
*inode
, struct extent_position
*epos
,
1857 struct kernel_lb_addr
*eloc
, uint32_t *elen
, int inc
)
1862 struct short_ad
*sad
;
1863 struct long_ad
*lad
;
1864 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1868 epos
->offset
= udf_file_entry_alloc_offset(inode
);
1869 ptr
= iinfo
->i_ext
.i_data
+ epos
->offset
-
1870 udf_file_entry_alloc_offset(inode
) +
1872 alen
= udf_file_entry_alloc_offset(inode
) +
1876 epos
->offset
= sizeof(struct allocExtDesc
);
1877 ptr
= epos
->bh
->b_data
+ epos
->offset
;
1878 alen
= sizeof(struct allocExtDesc
) +
1879 le32_to_cpu(((struct allocExtDesc
*)epos
->bh
->b_data
)->
1883 switch (iinfo
->i_alloc_type
) {
1884 case ICBTAG_FLAG_AD_SHORT
:
1885 sad
= udf_get_fileshortad(ptr
, alen
, &epos
->offset
, inc
);
1888 etype
= le32_to_cpu(sad
->extLength
) >> 30;
1889 eloc
->logicalBlockNum
= le32_to_cpu(sad
->extPosition
);
1890 eloc
->partitionReferenceNum
=
1891 iinfo
->i_location
.partitionReferenceNum
;
1892 *elen
= le32_to_cpu(sad
->extLength
) & UDF_EXTENT_LENGTH_MASK
;
1894 case ICBTAG_FLAG_AD_LONG
:
1895 lad
= udf_get_filelongad(ptr
, alen
, &epos
->offset
, inc
);
1898 etype
= le32_to_cpu(lad
->extLength
) >> 30;
1899 *eloc
= lelb_to_cpu(lad
->extLocation
);
1900 *elen
= le32_to_cpu(lad
->extLength
) & UDF_EXTENT_LENGTH_MASK
;
1903 udf_debug("alloc_type = %d unsupported\n",
1904 iinfo
->i_alloc_type
);
1911 static int8_t udf_insert_aext(struct inode
*inode
, struct extent_position epos
,
1912 struct kernel_lb_addr neloc
, uint32_t nelen
)
1914 struct kernel_lb_addr oeloc
;
1921 while ((etype
= udf_next_aext(inode
, &epos
, &oeloc
, &oelen
, 0)) != -1) {
1922 udf_write_aext(inode
, &epos
, &neloc
, nelen
, 1);
1924 nelen
= (etype
<< 30) | oelen
;
1926 udf_add_aext(inode
, &epos
, &neloc
, nelen
, 1);
1929 return (nelen
>> 30);
1932 int8_t udf_delete_aext(struct inode
*inode
, struct extent_position epos
,
1933 struct kernel_lb_addr eloc
, uint32_t elen
)
1935 struct extent_position oepos
;
1938 struct allocExtDesc
*aed
;
1939 struct udf_inode_info
*iinfo
;
1946 iinfo
= UDF_I(inode
);
1947 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
1948 adsize
= sizeof(struct short_ad
);
1949 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
1950 adsize
= sizeof(struct long_ad
);
1955 if (udf_next_aext(inode
, &epos
, &eloc
, &elen
, 1) == -1)
1958 while ((etype
= udf_next_aext(inode
, &epos
, &eloc
, &elen
, 1)) != -1) {
1959 udf_write_aext(inode
, &oepos
, &eloc
, (etype
<< 30) | elen
, 1);
1960 if (oepos
.bh
!= epos
.bh
) {
1961 oepos
.block
= epos
.block
;
1965 oepos
.offset
= epos
.offset
- adsize
;
1968 memset(&eloc
, 0x00, sizeof(struct kernel_lb_addr
));
1971 if (epos
.bh
!= oepos
.bh
) {
1972 udf_free_blocks(inode
->i_sb
, inode
, &epos
.block
, 0, 1);
1973 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
1974 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
1976 iinfo
->i_lenAlloc
-= (adsize
* 2);
1977 mark_inode_dirty(inode
);
1979 aed
= (struct allocExtDesc
*)oepos
.bh
->b_data
;
1980 le32_add_cpu(&aed
->lengthAllocDescs
, -(2 * adsize
));
1981 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1982 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
1983 udf_update_tag(oepos
.bh
->b_data
,
1984 oepos
.offset
- (2 * adsize
));
1986 udf_update_tag(oepos
.bh
->b_data
,
1987 sizeof(struct allocExtDesc
));
1988 mark_buffer_dirty_inode(oepos
.bh
, inode
);
1991 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
1993 iinfo
->i_lenAlloc
-= adsize
;
1994 mark_inode_dirty(inode
);
1996 aed
= (struct allocExtDesc
*)oepos
.bh
->b_data
;
1997 le32_add_cpu(&aed
->lengthAllocDescs
, -adsize
);
1998 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1999 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
2000 udf_update_tag(oepos
.bh
->b_data
,
2001 epos
.offset
- adsize
);
2003 udf_update_tag(oepos
.bh
->b_data
,
2004 sizeof(struct allocExtDesc
));
2005 mark_buffer_dirty_inode(oepos
.bh
, inode
);
2012 return (elen
>> 30);
2015 int8_t inode_bmap(struct inode
*inode
, sector_t block
,
2016 struct extent_position
*pos
, struct kernel_lb_addr
*eloc
,
2017 uint32_t *elen
, sector_t
*offset
)
2019 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
2020 loff_t lbcount
= 0, bcount
=
2021 (loff_t
) block
<< blocksize_bits
;
2023 struct udf_inode_info
*iinfo
;
2025 iinfo
= UDF_I(inode
);
2027 pos
->block
= iinfo
->i_location
;
2032 etype
= udf_next_aext(inode
, pos
, eloc
, elen
, 1);
2034 *offset
= (bcount
- lbcount
) >> blocksize_bits
;
2035 iinfo
->i_lenExtents
= lbcount
;
2039 } while (lbcount
<= bcount
);
2041 *offset
= (bcount
+ *elen
- lbcount
) >> blocksize_bits
;
2046 long udf_block_map(struct inode
*inode
, sector_t block
)
2048 struct kernel_lb_addr eloc
;
2051 struct extent_position epos
= {};
2056 if (inode_bmap(inode
, block
, &epos
, &eloc
, &elen
, &offset
) ==
2057 (EXT_RECORDED_ALLOCATED
>> 30))
2058 ret
= udf_get_lb_pblock(inode
->i_sb
, &eloc
, offset
);
2065 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_VARCONV
))
2066 return udf_fixed_to_variable(ret
);