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/module.h>
35 #include <linux/pagemap.h>
36 #include <linux/writeback.h>
37 #include <linux/slab.h>
38 #include <linux/crc-itu-t.h>
39 #include <linux/mpage.h>
40 #include <linux/uio.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 umode_t
udf_convert_permissions(struct fileEntry
*);
52 static int udf_update_inode(struct inode
*, int);
53 static int udf_sync_inode(struct inode
*inode
);
54 static int udf_alloc_i_data(struct inode
*inode
, size_t size
);
55 static sector_t
inode_getblk(struct inode
*, sector_t
, int *, int *);
56 static int8_t udf_insert_aext(struct inode
*, struct extent_position
,
57 struct kernel_lb_addr
, uint32_t);
58 static void udf_split_extents(struct inode
*, int *, int, int,
59 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
60 static void udf_prealloc_extents(struct inode
*, int, int,
61 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
62 static void udf_merge_extents(struct inode
*,
63 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int *);
64 static void udf_update_extents(struct inode
*,
65 struct kernel_long_ad
[EXTENT_MERGE_SIZE
], int, int,
66 struct extent_position
*);
67 static int udf_get_block(struct inode
*, sector_t
, struct buffer_head
*, int);
69 static void __udf_clear_extent_cache(struct inode
*inode
)
71 struct udf_inode_info
*iinfo
= UDF_I(inode
);
73 if (iinfo
->cached_extent
.lstart
!= -1) {
74 brelse(iinfo
->cached_extent
.epos
.bh
);
75 iinfo
->cached_extent
.lstart
= -1;
79 /* Invalidate extent cache */
80 static void udf_clear_extent_cache(struct inode
*inode
)
82 struct udf_inode_info
*iinfo
= UDF_I(inode
);
84 spin_lock(&iinfo
->i_extent_cache_lock
);
85 __udf_clear_extent_cache(inode
);
86 spin_unlock(&iinfo
->i_extent_cache_lock
);
89 /* Return contents of extent cache */
90 static int udf_read_extent_cache(struct inode
*inode
, loff_t bcount
,
91 loff_t
*lbcount
, struct extent_position
*pos
)
93 struct udf_inode_info
*iinfo
= UDF_I(inode
);
96 spin_lock(&iinfo
->i_extent_cache_lock
);
97 if ((iinfo
->cached_extent
.lstart
<= bcount
) &&
98 (iinfo
->cached_extent
.lstart
!= -1)) {
100 *lbcount
= iinfo
->cached_extent
.lstart
;
101 memcpy(pos
, &iinfo
->cached_extent
.epos
,
102 sizeof(struct extent_position
));
107 spin_unlock(&iinfo
->i_extent_cache_lock
);
111 /* Add extent to extent cache */
112 static void udf_update_extent_cache(struct inode
*inode
, loff_t estart
,
113 struct extent_position
*pos
, int next_epos
)
115 struct udf_inode_info
*iinfo
= UDF_I(inode
);
117 spin_lock(&iinfo
->i_extent_cache_lock
);
118 /* Invalidate previously cached extent */
119 __udf_clear_extent_cache(inode
);
122 memcpy(&iinfo
->cached_extent
.epos
, pos
,
123 sizeof(struct extent_position
));
124 iinfo
->cached_extent
.lstart
= estart
;
126 switch (iinfo
->i_alloc_type
) {
127 case ICBTAG_FLAG_AD_SHORT
:
128 iinfo
->cached_extent
.epos
.offset
-=
129 sizeof(struct short_ad
);
131 case ICBTAG_FLAG_AD_LONG
:
132 iinfo
->cached_extent
.epos
.offset
-=
133 sizeof(struct long_ad
);
135 spin_unlock(&iinfo
->i_extent_cache_lock
);
138 void udf_evict_inode(struct inode
*inode
)
140 struct udf_inode_info
*iinfo
= UDF_I(inode
);
143 if (!inode
->i_nlink
&& !is_bad_inode(inode
)) {
145 udf_setsize(inode
, 0);
146 udf_update_inode(inode
, IS_SYNC(inode
));
148 truncate_inode_pages_final(&inode
->i_data
);
149 invalidate_inode_buffers(inode
);
151 if (iinfo
->i_alloc_type
!= ICBTAG_FLAG_AD_IN_ICB
&&
152 inode
->i_size
!= iinfo
->i_lenExtents
) {
153 udf_warn(inode
->i_sb
, "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n",
154 inode
->i_ino
, inode
->i_mode
,
155 (unsigned long long)inode
->i_size
,
156 (unsigned long long)iinfo
->i_lenExtents
);
158 kfree(iinfo
->i_ext
.i_data
);
159 iinfo
->i_ext
.i_data
= NULL
;
160 udf_clear_extent_cache(inode
);
162 udf_free_inode(inode
);
166 static void udf_write_failed(struct address_space
*mapping
, loff_t to
)
168 struct inode
*inode
= mapping
->host
;
169 struct udf_inode_info
*iinfo
= UDF_I(inode
);
170 loff_t isize
= inode
->i_size
;
173 truncate_pagecache(inode
, isize
);
174 if (iinfo
->i_alloc_type
!= ICBTAG_FLAG_AD_IN_ICB
) {
175 down_write(&iinfo
->i_data_sem
);
176 udf_clear_extent_cache(inode
);
177 udf_truncate_extents(inode
);
178 up_write(&iinfo
->i_data_sem
);
183 static int udf_writepage(struct page
*page
, struct writeback_control
*wbc
)
185 return block_write_full_page(page
, udf_get_block
, wbc
);
188 static int udf_writepages(struct address_space
*mapping
,
189 struct writeback_control
*wbc
)
191 return mpage_writepages(mapping
, wbc
, udf_get_block
);
194 static int udf_readpage(struct file
*file
, struct page
*page
)
196 return mpage_readpage(page
, udf_get_block
);
199 static int udf_readpages(struct file
*file
, struct address_space
*mapping
,
200 struct list_head
*pages
, unsigned nr_pages
)
202 return mpage_readpages(mapping
, pages
, nr_pages
, udf_get_block
);
205 static int udf_write_begin(struct file
*file
, struct address_space
*mapping
,
206 loff_t pos
, unsigned len
, unsigned flags
,
207 struct page
**pagep
, void **fsdata
)
211 ret
= block_write_begin(mapping
, pos
, len
, flags
, pagep
, udf_get_block
);
213 udf_write_failed(mapping
, pos
+ len
);
217 static ssize_t
udf_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
)
219 struct file
*file
= iocb
->ki_filp
;
220 struct address_space
*mapping
= file
->f_mapping
;
221 struct inode
*inode
= mapping
->host
;
222 size_t count
= iov_iter_count(iter
);
225 ret
= blockdev_direct_IO(iocb
, inode
, iter
, udf_get_block
);
226 if (unlikely(ret
< 0 && iov_iter_rw(iter
) == WRITE
))
227 udf_write_failed(mapping
, iocb
->ki_pos
+ count
);
231 static sector_t
udf_bmap(struct address_space
*mapping
, sector_t block
)
233 return generic_block_bmap(mapping
, block
, udf_get_block
);
236 const struct address_space_operations udf_aops
= {
237 .readpage
= udf_readpage
,
238 .readpages
= udf_readpages
,
239 .writepage
= udf_writepage
,
240 .writepages
= udf_writepages
,
241 .write_begin
= udf_write_begin
,
242 .write_end
= generic_write_end
,
243 .direct_IO
= udf_direct_IO
,
248 * Expand file stored in ICB to a normal one-block-file
250 * This function requires i_data_sem for writing and releases it.
251 * This function requires i_mutex held
253 int udf_expand_file_adinicb(struct inode
*inode
)
257 struct udf_inode_info
*iinfo
= UDF_I(inode
);
259 struct writeback_control udf_wbc
= {
260 .sync_mode
= WB_SYNC_NONE
,
264 WARN_ON_ONCE(!inode_is_locked(inode
));
265 if (!iinfo
->i_lenAlloc
) {
266 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
267 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_SHORT
;
269 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_LONG
;
270 /* from now on we have normal address_space methods */
271 inode
->i_data
.a_ops
= &udf_aops
;
272 up_write(&iinfo
->i_data_sem
);
273 mark_inode_dirty(inode
);
277 * Release i_data_sem so that we can lock a page - page lock ranks
278 * above i_data_sem. i_mutex still protects us against file changes.
280 up_write(&iinfo
->i_data_sem
);
282 page
= find_or_create_page(inode
->i_mapping
, 0, GFP_NOFS
);
286 if (!PageUptodate(page
)) {
288 memset(kaddr
+ iinfo
->i_lenAlloc
, 0x00,
289 PAGE_SIZE
- iinfo
->i_lenAlloc
);
290 memcpy(kaddr
, iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
,
292 flush_dcache_page(page
);
293 SetPageUptodate(page
);
296 down_write(&iinfo
->i_data_sem
);
297 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
, 0x00,
299 iinfo
->i_lenAlloc
= 0;
300 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
301 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_SHORT
;
303 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_LONG
;
304 /* from now on we have normal address_space methods */
305 inode
->i_data
.a_ops
= &udf_aops
;
306 up_write(&iinfo
->i_data_sem
);
307 err
= inode
->i_data
.a_ops
->writepage(page
, &udf_wbc
);
309 /* Restore everything back so that we don't lose data... */
312 down_write(&iinfo
->i_data_sem
);
313 memcpy(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
, kaddr
,
317 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_IN_ICB
;
318 inode
->i_data
.a_ops
= &udf_adinicb_aops
;
319 up_write(&iinfo
->i_data_sem
);
322 mark_inode_dirty(inode
);
327 struct buffer_head
*udf_expand_dir_adinicb(struct inode
*inode
, int *block
,
331 struct buffer_head
*dbh
= NULL
;
332 struct kernel_lb_addr eloc
;
334 struct extent_position epos
;
336 struct udf_fileident_bh sfibh
, dfibh
;
337 loff_t f_pos
= udf_ext0_offset(inode
);
338 int size
= udf_ext0_offset(inode
) + inode
->i_size
;
339 struct fileIdentDesc cfi
, *sfi
, *dfi
;
340 struct udf_inode_info
*iinfo
= UDF_I(inode
);
342 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_USE_SHORT_AD
))
343 alloctype
= ICBTAG_FLAG_AD_SHORT
;
345 alloctype
= ICBTAG_FLAG_AD_LONG
;
347 if (!inode
->i_size
) {
348 iinfo
->i_alloc_type
= alloctype
;
349 mark_inode_dirty(inode
);
353 /* alloc block, and copy data to it */
354 *block
= udf_new_block(inode
->i_sb
, inode
,
355 iinfo
->i_location
.partitionReferenceNum
,
356 iinfo
->i_location
.logicalBlockNum
, err
);
359 newblock
= udf_get_pblock(inode
->i_sb
, *block
,
360 iinfo
->i_location
.partitionReferenceNum
,
364 dbh
= udf_tgetblk(inode
->i_sb
, newblock
);
368 memset(dbh
->b_data
, 0x00, inode
->i_sb
->s_blocksize
);
369 set_buffer_uptodate(dbh
);
371 mark_buffer_dirty_inode(dbh
, inode
);
373 sfibh
.soffset
= sfibh
.eoffset
=
374 f_pos
& (inode
->i_sb
->s_blocksize
- 1);
375 sfibh
.sbh
= sfibh
.ebh
= NULL
;
376 dfibh
.soffset
= dfibh
.eoffset
= 0;
377 dfibh
.sbh
= dfibh
.ebh
= dbh
;
378 while (f_pos
< size
) {
379 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_IN_ICB
;
380 sfi
= udf_fileident_read(inode
, &f_pos
, &sfibh
, &cfi
, NULL
,
386 iinfo
->i_alloc_type
= alloctype
;
387 sfi
->descTag
.tagLocation
= cpu_to_le32(*block
);
388 dfibh
.soffset
= dfibh
.eoffset
;
389 dfibh
.eoffset
+= (sfibh
.eoffset
- sfibh
.soffset
);
390 dfi
= (struct fileIdentDesc
*)(dbh
->b_data
+ dfibh
.soffset
);
391 if (udf_write_fi(inode
, sfi
, dfi
, &dfibh
, sfi
->impUse
,
393 le16_to_cpu(sfi
->lengthOfImpUse
))) {
394 iinfo
->i_alloc_type
= ICBTAG_FLAG_AD_IN_ICB
;
399 mark_buffer_dirty_inode(dbh
, inode
);
401 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
, 0,
403 iinfo
->i_lenAlloc
= 0;
404 eloc
.logicalBlockNum
= *block
;
405 eloc
.partitionReferenceNum
=
406 iinfo
->i_location
.partitionReferenceNum
;
407 iinfo
->i_lenExtents
= inode
->i_size
;
409 epos
.block
= iinfo
->i_location
;
410 epos
.offset
= udf_file_entry_alloc_offset(inode
);
411 udf_add_aext(inode
, &epos
, &eloc
, inode
->i_size
, 0);
415 mark_inode_dirty(inode
);
419 static int udf_get_block(struct inode
*inode
, sector_t block
,
420 struct buffer_head
*bh_result
, int create
)
424 struct udf_inode_info
*iinfo
;
427 phys
= udf_block_map(inode
, block
);
429 map_bh(bh_result
, inode
->i_sb
, phys
);
435 iinfo
= UDF_I(inode
);
437 down_write(&iinfo
->i_data_sem
);
438 if (block
== iinfo
->i_next_alloc_block
+ 1) {
439 iinfo
->i_next_alloc_block
++;
440 iinfo
->i_next_alloc_goal
++;
443 udf_clear_extent_cache(inode
);
444 phys
= inode_getblk(inode
, block
, &err
, &new);
449 set_buffer_new(bh_result
);
450 map_bh(bh_result
, inode
->i_sb
, phys
);
453 up_write(&iinfo
->i_data_sem
);
457 static struct buffer_head
*udf_getblk(struct inode
*inode
, long block
,
458 int create
, int *err
)
460 struct buffer_head
*bh
;
461 struct buffer_head dummy
;
464 dummy
.b_blocknr
= -1000;
465 *err
= udf_get_block(inode
, block
, &dummy
, create
);
466 if (!*err
&& buffer_mapped(&dummy
)) {
467 bh
= sb_getblk(inode
->i_sb
, dummy
.b_blocknr
);
468 if (buffer_new(&dummy
)) {
470 memset(bh
->b_data
, 0x00, inode
->i_sb
->s_blocksize
);
471 set_buffer_uptodate(bh
);
473 mark_buffer_dirty_inode(bh
, inode
);
481 /* Extend the file by 'blocks' blocks, return the number of extents added */
482 static int udf_do_extend_file(struct inode
*inode
,
483 struct extent_position
*last_pos
,
484 struct kernel_long_ad
*last_ext
,
488 int count
= 0, fake
= !(last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
);
489 struct super_block
*sb
= inode
->i_sb
;
490 struct kernel_lb_addr prealloc_loc
= {};
491 int prealloc_len
= 0;
492 struct udf_inode_info
*iinfo
;
495 /* The previous extent is fake and we should not extend by anything
496 * - there's nothing to do... */
500 iinfo
= UDF_I(inode
);
501 /* Round the last extent up to a multiple of block size */
502 if (last_ext
->extLength
& (sb
->s_blocksize
- 1)) {
503 last_ext
->extLength
=
504 (last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) |
505 (((last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
506 sb
->s_blocksize
- 1) & ~(sb
->s_blocksize
- 1));
507 iinfo
->i_lenExtents
=
508 (iinfo
->i_lenExtents
+ sb
->s_blocksize
- 1) &
509 ~(sb
->s_blocksize
- 1);
512 /* Last extent are just preallocated blocks? */
513 if ((last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) ==
514 EXT_NOT_RECORDED_ALLOCATED
) {
515 /* Save the extent so that we can reattach it to the end */
516 prealloc_loc
= last_ext
->extLocation
;
517 prealloc_len
= last_ext
->extLength
;
518 /* Mark the extent as a hole */
519 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
520 (last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
);
521 last_ext
->extLocation
.logicalBlockNum
= 0;
522 last_ext
->extLocation
.partitionReferenceNum
= 0;
525 /* Can we merge with the previous extent? */
526 if ((last_ext
->extLength
& UDF_EXTENT_FLAG_MASK
) ==
527 EXT_NOT_RECORDED_NOT_ALLOCATED
) {
528 add
= ((1 << 30) - sb
->s_blocksize
-
529 (last_ext
->extLength
& UDF_EXTENT_LENGTH_MASK
)) >>
530 sb
->s_blocksize_bits
;
534 last_ext
->extLength
+= add
<< sb
->s_blocksize_bits
;
538 udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
539 last_ext
->extLength
, 1);
542 struct kernel_lb_addr tmploc
;
545 udf_write_aext(inode
, last_pos
, &last_ext
->extLocation
,
546 last_ext
->extLength
, 1);
548 * We've rewritten the last extent but there may be empty
549 * indirect extent after it - enter it.
551 udf_next_aext(inode
, last_pos
, &tmploc
, &tmplen
, 0);
554 /* Managed to do everything necessary? */
558 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
559 last_ext
->extLocation
.logicalBlockNum
= 0;
560 last_ext
->extLocation
.partitionReferenceNum
= 0;
561 add
= (1 << (30-sb
->s_blocksize_bits
)) - 1;
562 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
563 (add
<< sb
->s_blocksize_bits
);
565 /* Create enough extents to cover the whole hole */
566 while (blocks
> add
) {
568 err
= udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
569 last_ext
->extLength
, 1);
575 last_ext
->extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
576 (blocks
<< sb
->s_blocksize_bits
);
577 err
= udf_add_aext(inode
, last_pos
, &last_ext
->extLocation
,
578 last_ext
->extLength
, 1);
585 /* Do we have some preallocated blocks saved? */
587 err
= udf_add_aext(inode
, last_pos
, &prealloc_loc
,
591 last_ext
->extLocation
= prealloc_loc
;
592 last_ext
->extLength
= prealloc_len
;
596 /* last_pos should point to the last written extent... */
597 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
598 last_pos
->offset
-= sizeof(struct short_ad
);
599 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
600 last_pos
->offset
-= sizeof(struct long_ad
);
607 static int udf_extend_file(struct inode
*inode
, loff_t newsize
)
610 struct extent_position epos
;
611 struct kernel_lb_addr eloc
;
614 struct super_block
*sb
= inode
->i_sb
;
615 sector_t first_block
= newsize
>> sb
->s_blocksize_bits
, offset
;
617 struct udf_inode_info
*iinfo
= UDF_I(inode
);
618 struct kernel_long_ad extent
;
621 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
622 adsize
= sizeof(struct short_ad
);
623 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
624 adsize
= sizeof(struct long_ad
);
628 etype
= inode_bmap(inode
, first_block
, &epos
, &eloc
, &elen
, &offset
);
630 /* File has extent covering the new size (could happen when extending
631 * inside a block)? */
634 if (newsize
& (sb
->s_blocksize
- 1))
636 /* Extended file just to the boundary of the last file block? */
640 /* Truncate is extending the file by 'offset' blocks */
641 if ((!epos
.bh
&& epos
.offset
== udf_file_entry_alloc_offset(inode
)) ||
642 (epos
.bh
&& epos
.offset
== sizeof(struct allocExtDesc
))) {
643 /* File has no extents at all or has empty last
644 * indirect extent! Create a fake extent... */
645 extent
.extLocation
.logicalBlockNum
= 0;
646 extent
.extLocation
.partitionReferenceNum
= 0;
647 extent
.extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
;
649 epos
.offset
-= adsize
;
650 etype
= udf_next_aext(inode
, &epos
, &extent
.extLocation
,
651 &extent
.extLength
, 0);
652 extent
.extLength
|= etype
<< 30;
654 err
= udf_do_extend_file(inode
, &epos
, &extent
, offset
);
658 iinfo
->i_lenExtents
= newsize
;
664 static sector_t
inode_getblk(struct inode
*inode
, sector_t block
,
667 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
];
668 struct extent_position prev_epos
, cur_epos
, next_epos
;
669 int count
= 0, startnum
= 0, endnum
= 0;
670 uint32_t elen
= 0, tmpelen
;
671 struct kernel_lb_addr eloc
, tmpeloc
;
673 loff_t lbcount
= 0, b_off
= 0;
674 uint32_t newblocknum
, newblock
;
677 struct udf_inode_info
*iinfo
= UDF_I(inode
);
678 int goal
= 0, pgoal
= iinfo
->i_location
.logicalBlockNum
;
684 prev_epos
.offset
= udf_file_entry_alloc_offset(inode
);
685 prev_epos
.block
= iinfo
->i_location
;
687 cur_epos
= next_epos
= prev_epos
;
688 b_off
= (loff_t
)block
<< inode
->i_sb
->s_blocksize_bits
;
690 /* find the extent which contains the block we are looking for.
691 alternate between laarr[0] and laarr[1] for locations of the
692 current extent, and the previous extent */
694 if (prev_epos
.bh
!= cur_epos
.bh
) {
695 brelse(prev_epos
.bh
);
697 prev_epos
.bh
= cur_epos
.bh
;
699 if (cur_epos
.bh
!= next_epos
.bh
) {
701 get_bh(next_epos
.bh
);
702 cur_epos
.bh
= next_epos
.bh
;
707 prev_epos
.block
= cur_epos
.block
;
708 cur_epos
.block
= next_epos
.block
;
710 prev_epos
.offset
= cur_epos
.offset
;
711 cur_epos
.offset
= next_epos
.offset
;
713 etype
= udf_next_aext(inode
, &next_epos
, &eloc
, &elen
, 1);
719 laarr
[c
].extLength
= (etype
<< 30) | elen
;
720 laarr
[c
].extLocation
= eloc
;
722 if (etype
!= (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))
723 pgoal
= eloc
.logicalBlockNum
+
724 ((elen
+ inode
->i_sb
->s_blocksize
- 1) >>
725 inode
->i_sb
->s_blocksize_bits
);
728 } while (lbcount
+ elen
<= b_off
);
731 offset
= b_off
>> inode
->i_sb
->s_blocksize_bits
;
733 * Move prev_epos and cur_epos into indirect extent if we are at
736 udf_next_aext(inode
, &prev_epos
, &tmpeloc
, &tmpelen
, 0);
737 udf_next_aext(inode
, &cur_epos
, &tmpeloc
, &tmpelen
, 0);
739 /* if the extent is allocated and recorded, return the block
740 if the extent is not a multiple of the blocksize, round up */
742 if (etype
== (EXT_RECORDED_ALLOCATED
>> 30)) {
743 if (elen
& (inode
->i_sb
->s_blocksize
- 1)) {
744 elen
= EXT_RECORDED_ALLOCATED
|
745 ((elen
+ inode
->i_sb
->s_blocksize
- 1) &
746 ~(inode
->i_sb
->s_blocksize
- 1));
747 udf_write_aext(inode
, &cur_epos
, &eloc
, elen
, 1);
749 brelse(prev_epos
.bh
);
751 brelse(next_epos
.bh
);
752 newblock
= udf_get_lb_pblock(inode
->i_sb
, &eloc
, offset
);
756 /* Are we beyond EOF? */
765 /* Create a fake extent when there's not one */
766 memset(&laarr
[0].extLocation
, 0x00,
767 sizeof(struct kernel_lb_addr
));
768 laarr
[0].extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
;
769 /* Will udf_do_extend_file() create real extent from
771 startnum
= (offset
> 0);
773 /* Create extents for the hole between EOF and offset */
774 ret
= udf_do_extend_file(inode
, &prev_epos
, laarr
, offset
);
776 brelse(prev_epos
.bh
);
778 brelse(next_epos
.bh
);
785 /* We are not covered by a preallocated extent? */
786 if ((laarr
[0].extLength
& UDF_EXTENT_FLAG_MASK
) !=
787 EXT_NOT_RECORDED_ALLOCATED
) {
788 /* Is there any real extent? - otherwise we overwrite
792 laarr
[c
].extLength
= EXT_NOT_RECORDED_NOT_ALLOCATED
|
793 inode
->i_sb
->s_blocksize
;
794 memset(&laarr
[c
].extLocation
, 0x00,
795 sizeof(struct kernel_lb_addr
));
802 endnum
= startnum
= ((count
> 2) ? 2 : count
);
804 /* if the current extent is in position 0,
805 swap it with the previous */
806 if (!c
&& count
!= 1) {
813 /* if the current block is located in an extent,
814 read the next extent */
815 etype
= udf_next_aext(inode
, &next_epos
, &eloc
, &elen
, 0);
817 laarr
[c
+ 1].extLength
= (etype
<< 30) | elen
;
818 laarr
[c
+ 1].extLocation
= eloc
;
826 /* if the current extent is not recorded but allocated, get the
827 * block in the extent corresponding to the requested block */
828 if ((laarr
[c
].extLength
>> 30) == (EXT_NOT_RECORDED_ALLOCATED
>> 30))
829 newblocknum
= laarr
[c
].extLocation
.logicalBlockNum
+ offset
;
830 else { /* otherwise, allocate a new block */
831 if (iinfo
->i_next_alloc_block
== block
)
832 goal
= iinfo
->i_next_alloc_goal
;
835 if (!(goal
= pgoal
)) /* XXX: what was intended here? */
836 goal
= iinfo
->i_location
.logicalBlockNum
+ 1;
839 newblocknum
= udf_new_block(inode
->i_sb
, inode
,
840 iinfo
->i_location
.partitionReferenceNum
,
843 brelse(prev_epos
.bh
);
845 brelse(next_epos
.bh
);
850 iinfo
->i_lenExtents
+= inode
->i_sb
->s_blocksize
;
853 /* if the extent the requsted block is located in contains multiple
854 * blocks, split the extent into at most three extents. blocks prior
855 * to requested block, requested block, and blocks after requested
857 udf_split_extents(inode
, &c
, offset
, newblocknum
, laarr
, &endnum
);
859 #ifdef UDF_PREALLOCATE
860 /* We preallocate blocks only for regular files. It also makes sense
861 * for directories but there's a problem when to drop the
862 * preallocation. We might use some delayed work for that but I feel
863 * it's overengineering for a filesystem like UDF. */
864 if (S_ISREG(inode
->i_mode
))
865 udf_prealloc_extents(inode
, c
, lastblock
, laarr
, &endnum
);
868 /* merge any continuous blocks in laarr */
869 udf_merge_extents(inode
, laarr
, &endnum
);
871 /* write back the new extents, inserting new extents if the new number
872 * of extents is greater than the old number, and deleting extents if
873 * the new number of extents is less than the old number */
874 udf_update_extents(inode
, laarr
, startnum
, endnum
, &prev_epos
);
876 brelse(prev_epos
.bh
);
878 brelse(next_epos
.bh
);
880 newblock
= udf_get_pblock(inode
->i_sb
, newblocknum
,
881 iinfo
->i_location
.partitionReferenceNum
, 0);
887 iinfo
->i_next_alloc_block
= block
;
888 iinfo
->i_next_alloc_goal
= newblocknum
;
889 inode
->i_ctime
= current_fs_time(inode
->i_sb
);
892 udf_sync_inode(inode
);
894 mark_inode_dirty(inode
);
899 static void udf_split_extents(struct inode
*inode
, int *c
, int offset
,
901 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
904 unsigned long blocksize
= inode
->i_sb
->s_blocksize
;
905 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
907 if ((laarr
[*c
].extLength
>> 30) == (EXT_NOT_RECORDED_ALLOCATED
>> 30) ||
908 (laarr
[*c
].extLength
>> 30) ==
909 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) {
911 int blen
= ((laarr
[curr
].extLength
& UDF_EXTENT_LENGTH_MASK
) +
912 blocksize
- 1) >> blocksize_bits
;
913 int8_t etype
= (laarr
[curr
].extLength
>> 30);
917 else if (!offset
|| blen
== offset
+ 1) {
918 laarr
[curr
+ 2] = laarr
[curr
+ 1];
919 laarr
[curr
+ 1] = laarr
[curr
];
921 laarr
[curr
+ 3] = laarr
[curr
+ 1];
922 laarr
[curr
+ 2] = laarr
[curr
+ 1] = laarr
[curr
];
926 if (etype
== (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
927 udf_free_blocks(inode
->i_sb
, inode
,
928 &laarr
[curr
].extLocation
,
930 laarr
[curr
].extLength
=
931 EXT_NOT_RECORDED_NOT_ALLOCATED
|
932 (offset
<< blocksize_bits
);
933 laarr
[curr
].extLocation
.logicalBlockNum
= 0;
934 laarr
[curr
].extLocation
.
935 partitionReferenceNum
= 0;
937 laarr
[curr
].extLength
= (etype
<< 30) |
938 (offset
<< blocksize_bits
);
944 laarr
[curr
].extLocation
.logicalBlockNum
= newblocknum
;
945 if (etype
== (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))
946 laarr
[curr
].extLocation
.partitionReferenceNum
=
947 UDF_I(inode
)->i_location
.partitionReferenceNum
;
948 laarr
[curr
].extLength
= EXT_RECORDED_ALLOCATED
|
952 if (blen
!= offset
+ 1) {
953 if (etype
== (EXT_NOT_RECORDED_ALLOCATED
>> 30))
954 laarr
[curr
].extLocation
.logicalBlockNum
+=
956 laarr
[curr
].extLength
= (etype
<< 30) |
957 ((blen
- (offset
+ 1)) << blocksize_bits
);
964 static void udf_prealloc_extents(struct inode
*inode
, int c
, int lastblock
,
965 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
968 int start
, length
= 0, currlength
= 0, i
;
970 if (*endnum
>= (c
+ 1)) {
976 if ((laarr
[c
+ 1].extLength
>> 30) ==
977 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
979 length
= currlength
=
980 (((laarr
[c
+ 1].extLength
&
981 UDF_EXTENT_LENGTH_MASK
) +
982 inode
->i_sb
->s_blocksize
- 1) >>
983 inode
->i_sb
->s_blocksize_bits
);
988 for (i
= start
+ 1; i
<= *endnum
; i
++) {
991 length
+= UDF_DEFAULT_PREALLOC_BLOCKS
;
992 } else if ((laarr
[i
].extLength
>> 30) ==
993 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) {
994 length
+= (((laarr
[i
].extLength
&
995 UDF_EXTENT_LENGTH_MASK
) +
996 inode
->i_sb
->s_blocksize
- 1) >>
997 inode
->i_sb
->s_blocksize_bits
);
1003 int next
= laarr
[start
].extLocation
.logicalBlockNum
+
1004 (((laarr
[start
].extLength
& UDF_EXTENT_LENGTH_MASK
) +
1005 inode
->i_sb
->s_blocksize
- 1) >>
1006 inode
->i_sb
->s_blocksize_bits
);
1007 int numalloc
= udf_prealloc_blocks(inode
->i_sb
, inode
,
1008 laarr
[start
].extLocation
.partitionReferenceNum
,
1009 next
, (UDF_DEFAULT_PREALLOC_BLOCKS
> length
?
1010 length
: UDF_DEFAULT_PREALLOC_BLOCKS
) -
1013 if (start
== (c
+ 1))
1014 laarr
[start
].extLength
+=
1016 inode
->i_sb
->s_blocksize_bits
);
1018 memmove(&laarr
[c
+ 2], &laarr
[c
+ 1],
1019 sizeof(struct long_ad
) * (*endnum
- (c
+ 1)));
1021 laarr
[c
+ 1].extLocation
.logicalBlockNum
= next
;
1022 laarr
[c
+ 1].extLocation
.partitionReferenceNum
=
1023 laarr
[c
].extLocation
.
1024 partitionReferenceNum
;
1025 laarr
[c
+ 1].extLength
=
1026 EXT_NOT_RECORDED_ALLOCATED
|
1028 inode
->i_sb
->s_blocksize_bits
);
1032 for (i
= start
+ 1; numalloc
&& i
< *endnum
; i
++) {
1033 int elen
= ((laarr
[i
].extLength
&
1034 UDF_EXTENT_LENGTH_MASK
) +
1035 inode
->i_sb
->s_blocksize
- 1) >>
1036 inode
->i_sb
->s_blocksize_bits
;
1038 if (elen
> numalloc
) {
1039 laarr
[i
].extLength
-=
1041 inode
->i_sb
->s_blocksize_bits
);
1045 if (*endnum
> (i
+ 1))
1048 sizeof(struct long_ad
) *
1049 (*endnum
- (i
+ 1)));
1054 UDF_I(inode
)->i_lenExtents
+=
1055 numalloc
<< inode
->i_sb
->s_blocksize_bits
;
1060 static void udf_merge_extents(struct inode
*inode
,
1061 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
1065 unsigned long blocksize
= inode
->i_sb
->s_blocksize
;
1066 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
1068 for (i
= 0; i
< (*endnum
- 1); i
++) {
1069 struct kernel_long_ad
*li
/*l[i]*/ = &laarr
[i
];
1070 struct kernel_long_ad
*lip1
/*l[i plus 1]*/ = &laarr
[i
+ 1];
1072 if (((li
->extLength
>> 30) == (lip1
->extLength
>> 30)) &&
1073 (((li
->extLength
>> 30) ==
1074 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30)) ||
1075 ((lip1
->extLocation
.logicalBlockNum
-
1076 li
->extLocation
.logicalBlockNum
) ==
1077 (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
1078 blocksize
- 1) >> blocksize_bits
)))) {
1080 if (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
1081 (lip1
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
1082 blocksize
- 1) & ~UDF_EXTENT_LENGTH_MASK
) {
1083 lip1
->extLength
= (lip1
->extLength
-
1085 UDF_EXTENT_LENGTH_MASK
) +
1086 UDF_EXTENT_LENGTH_MASK
) &
1088 li
->extLength
= (li
->extLength
&
1089 UDF_EXTENT_FLAG_MASK
) +
1090 (UDF_EXTENT_LENGTH_MASK
+ 1) -
1092 lip1
->extLocation
.logicalBlockNum
=
1093 li
->extLocation
.logicalBlockNum
+
1095 UDF_EXTENT_LENGTH_MASK
) >>
1098 li
->extLength
= lip1
->extLength
+
1100 UDF_EXTENT_LENGTH_MASK
) +
1101 blocksize
- 1) & ~(blocksize
- 1));
1102 if (*endnum
> (i
+ 2))
1103 memmove(&laarr
[i
+ 1], &laarr
[i
+ 2],
1104 sizeof(struct long_ad
) *
1105 (*endnum
- (i
+ 2)));
1109 } else if (((li
->extLength
>> 30) ==
1110 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) &&
1111 ((lip1
->extLength
>> 30) ==
1112 (EXT_NOT_RECORDED_NOT_ALLOCATED
>> 30))) {
1113 udf_free_blocks(inode
->i_sb
, inode
, &li
->extLocation
, 0,
1115 UDF_EXTENT_LENGTH_MASK
) +
1116 blocksize
- 1) >> blocksize_bits
);
1117 li
->extLocation
.logicalBlockNum
= 0;
1118 li
->extLocation
.partitionReferenceNum
= 0;
1120 if (((li
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
1121 (lip1
->extLength
& UDF_EXTENT_LENGTH_MASK
) +
1122 blocksize
- 1) & ~UDF_EXTENT_LENGTH_MASK
) {
1123 lip1
->extLength
= (lip1
->extLength
-
1125 UDF_EXTENT_LENGTH_MASK
) +
1126 UDF_EXTENT_LENGTH_MASK
) &
1128 li
->extLength
= (li
->extLength
&
1129 UDF_EXTENT_FLAG_MASK
) +
1130 (UDF_EXTENT_LENGTH_MASK
+ 1) -
1133 li
->extLength
= lip1
->extLength
+
1135 UDF_EXTENT_LENGTH_MASK
) +
1136 blocksize
- 1) & ~(blocksize
- 1));
1137 if (*endnum
> (i
+ 2))
1138 memmove(&laarr
[i
+ 1], &laarr
[i
+ 2],
1139 sizeof(struct long_ad
) *
1140 (*endnum
- (i
+ 2)));
1144 } else if ((li
->extLength
>> 30) ==
1145 (EXT_NOT_RECORDED_ALLOCATED
>> 30)) {
1146 udf_free_blocks(inode
->i_sb
, inode
,
1147 &li
->extLocation
, 0,
1149 UDF_EXTENT_LENGTH_MASK
) +
1150 blocksize
- 1) >> blocksize_bits
);
1151 li
->extLocation
.logicalBlockNum
= 0;
1152 li
->extLocation
.partitionReferenceNum
= 0;
1153 li
->extLength
= (li
->extLength
&
1154 UDF_EXTENT_LENGTH_MASK
) |
1155 EXT_NOT_RECORDED_NOT_ALLOCATED
;
1160 static void udf_update_extents(struct inode
*inode
,
1161 struct kernel_long_ad laarr
[EXTENT_MERGE_SIZE
],
1162 int startnum
, int endnum
,
1163 struct extent_position
*epos
)
1166 struct kernel_lb_addr tmploc
;
1169 if (startnum
> endnum
) {
1170 for (i
= 0; i
< (startnum
- endnum
); i
++)
1171 udf_delete_aext(inode
, *epos
, laarr
[i
].extLocation
,
1172 laarr
[i
].extLength
);
1173 } else if (startnum
< endnum
) {
1174 for (i
= 0; i
< (endnum
- startnum
); i
++) {
1175 udf_insert_aext(inode
, *epos
, laarr
[i
].extLocation
,
1176 laarr
[i
].extLength
);
1177 udf_next_aext(inode
, epos
, &laarr
[i
].extLocation
,
1178 &laarr
[i
].extLength
, 1);
1183 for (i
= start
; i
< endnum
; i
++) {
1184 udf_next_aext(inode
, epos
, &tmploc
, &tmplen
, 0);
1185 udf_write_aext(inode
, epos
, &laarr
[i
].extLocation
,
1186 laarr
[i
].extLength
, 1);
1190 struct buffer_head
*udf_bread(struct inode
*inode
, int block
,
1191 int create
, int *err
)
1193 struct buffer_head
*bh
= NULL
;
1195 bh
= udf_getblk(inode
, block
, create
, err
);
1199 if (buffer_uptodate(bh
))
1202 ll_rw_block(REQ_OP_READ
, 0, 1, &bh
);
1205 if (buffer_uptodate(bh
))
1213 int udf_setsize(struct inode
*inode
, loff_t newsize
)
1216 struct udf_inode_info
*iinfo
;
1217 int bsize
= 1 << inode
->i_blkbits
;
1219 if (!(S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1220 S_ISLNK(inode
->i_mode
)))
1222 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
1225 iinfo
= UDF_I(inode
);
1226 if (newsize
> inode
->i_size
) {
1227 down_write(&iinfo
->i_data_sem
);
1228 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
1230 (udf_file_entry_alloc_offset(inode
) + newsize
)) {
1231 err
= udf_expand_file_adinicb(inode
);
1234 down_write(&iinfo
->i_data_sem
);
1236 iinfo
->i_lenAlloc
= newsize
;
1240 err
= udf_extend_file(inode
, newsize
);
1242 up_write(&iinfo
->i_data_sem
);
1246 truncate_setsize(inode
, newsize
);
1247 up_write(&iinfo
->i_data_sem
);
1249 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
1250 down_write(&iinfo
->i_data_sem
);
1251 udf_clear_extent_cache(inode
);
1252 memset(iinfo
->i_ext
.i_data
+ iinfo
->i_lenEAttr
+ newsize
,
1253 0x00, bsize
- newsize
-
1254 udf_file_entry_alloc_offset(inode
));
1255 iinfo
->i_lenAlloc
= newsize
;
1256 truncate_setsize(inode
, newsize
);
1257 up_write(&iinfo
->i_data_sem
);
1260 err
= block_truncate_page(inode
->i_mapping
, newsize
,
1264 down_write(&iinfo
->i_data_sem
);
1265 udf_clear_extent_cache(inode
);
1266 truncate_setsize(inode
, newsize
);
1267 udf_truncate_extents(inode
);
1268 up_write(&iinfo
->i_data_sem
);
1271 inode
->i_mtime
= inode
->i_ctime
= current_fs_time(inode
->i_sb
);
1273 udf_sync_inode(inode
);
1275 mark_inode_dirty(inode
);
1280 * Maximum length of linked list formed by ICB hierarchy. The chosen number is
1281 * arbitrary - just that we hopefully don't limit any real use of rewritten
1282 * inode on write-once media but avoid looping for too long on corrupted media.
1284 #define UDF_MAX_ICB_NESTING 1024
1286 static int udf_read_inode(struct inode
*inode
, bool hidden_inode
)
1288 struct buffer_head
*bh
= NULL
;
1289 struct fileEntry
*fe
;
1290 struct extendedFileEntry
*efe
;
1292 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1293 struct udf_sb_info
*sbi
= UDF_SB(inode
->i_sb
);
1294 struct kernel_lb_addr
*iloc
= &iinfo
->i_location
;
1295 unsigned int link_count
;
1296 unsigned int indirections
= 0;
1297 int bs
= inode
->i_sb
->s_blocksize
;
1301 if (iloc
->logicalBlockNum
>=
1302 sbi
->s_partmaps
[iloc
->partitionReferenceNum
].s_partition_len
) {
1303 udf_debug("block=%d, partition=%d out of range\n",
1304 iloc
->logicalBlockNum
, iloc
->partitionReferenceNum
);
1309 * Set defaults, but the inode is still incomplete!
1310 * Note: get_new_inode() sets the following on a new inode:
1313 * i_flags = sb->s_flags
1315 * clean_inode(): zero fills and sets
1320 bh
= udf_read_ptagged(inode
->i_sb
, iloc
, 0, &ident
);
1322 udf_err(inode
->i_sb
, "(ino %ld) failed !bh\n", inode
->i_ino
);
1326 if (ident
!= TAG_IDENT_FE
&& ident
!= TAG_IDENT_EFE
&&
1327 ident
!= TAG_IDENT_USE
) {
1328 udf_err(inode
->i_sb
, "(ino %ld) failed ident=%d\n",
1329 inode
->i_ino
, ident
);
1333 fe
= (struct fileEntry
*)bh
->b_data
;
1334 efe
= (struct extendedFileEntry
*)bh
->b_data
;
1336 if (fe
->icbTag
.strategyType
== cpu_to_le16(4096)) {
1337 struct buffer_head
*ibh
;
1339 ibh
= udf_read_ptagged(inode
->i_sb
, iloc
, 1, &ident
);
1340 if (ident
== TAG_IDENT_IE
&& ibh
) {
1341 struct kernel_lb_addr loc
;
1342 struct indirectEntry
*ie
;
1344 ie
= (struct indirectEntry
*)ibh
->b_data
;
1345 loc
= lelb_to_cpu(ie
->indirectICB
.extLocation
);
1347 if (ie
->indirectICB
.extLength
) {
1349 memcpy(&iinfo
->i_location
, &loc
,
1350 sizeof(struct kernel_lb_addr
));
1351 if (++indirections
> UDF_MAX_ICB_NESTING
) {
1352 udf_err(inode
->i_sb
,
1353 "too many ICBs in ICB hierarchy"
1354 " (max %d supported)\n",
1355 UDF_MAX_ICB_NESTING
);
1363 } else if (fe
->icbTag
.strategyType
!= cpu_to_le16(4)) {
1364 udf_err(inode
->i_sb
, "unsupported strategy type: %d\n",
1365 le16_to_cpu(fe
->icbTag
.strategyType
));
1368 if (fe
->icbTag
.strategyType
== cpu_to_le16(4))
1369 iinfo
->i_strat4096
= 0;
1370 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
1371 iinfo
->i_strat4096
= 1;
1373 iinfo
->i_alloc_type
= le16_to_cpu(fe
->icbTag
.flags
) &
1374 ICBTAG_FLAG_AD_MASK
;
1375 iinfo
->i_unique
= 0;
1376 iinfo
->i_lenEAttr
= 0;
1377 iinfo
->i_lenExtents
= 0;
1378 iinfo
->i_lenAlloc
= 0;
1379 iinfo
->i_next_alloc_block
= 0;
1380 iinfo
->i_next_alloc_goal
= 0;
1381 if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_EFE
)) {
1384 ret
= udf_alloc_i_data(inode
, bs
-
1385 sizeof(struct extendedFileEntry
));
1388 memcpy(iinfo
->i_ext
.i_data
,
1389 bh
->b_data
+ sizeof(struct extendedFileEntry
),
1390 bs
- sizeof(struct extendedFileEntry
));
1391 } else if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_FE
)) {
1394 ret
= udf_alloc_i_data(inode
, bs
- sizeof(struct fileEntry
));
1397 memcpy(iinfo
->i_ext
.i_data
,
1398 bh
->b_data
+ sizeof(struct fileEntry
),
1399 bs
- sizeof(struct fileEntry
));
1400 } else if (fe
->descTag
.tagIdent
== cpu_to_le16(TAG_IDENT_USE
)) {
1403 iinfo
->i_lenAlloc
= le32_to_cpu(
1404 ((struct unallocSpaceEntry
*)bh
->b_data
)->
1406 ret
= udf_alloc_i_data(inode
, bs
-
1407 sizeof(struct unallocSpaceEntry
));
1410 memcpy(iinfo
->i_ext
.i_data
,
1411 bh
->b_data
+ sizeof(struct unallocSpaceEntry
),
1412 bs
- sizeof(struct unallocSpaceEntry
));
1417 read_lock(&sbi
->s_cred_lock
);
1418 i_uid_write(inode
, le32_to_cpu(fe
->uid
));
1419 if (!uid_valid(inode
->i_uid
) ||
1420 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_IGNORE
) ||
1421 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_SET
))
1422 inode
->i_uid
= UDF_SB(inode
->i_sb
)->s_uid
;
1424 i_gid_write(inode
, le32_to_cpu(fe
->gid
));
1425 if (!gid_valid(inode
->i_gid
) ||
1426 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_IGNORE
) ||
1427 UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_SET
))
1428 inode
->i_gid
= UDF_SB(inode
->i_sb
)->s_gid
;
1430 if (fe
->icbTag
.fileType
!= ICBTAG_FILE_TYPE_DIRECTORY
&&
1431 sbi
->s_fmode
!= UDF_INVALID_MODE
)
1432 inode
->i_mode
= sbi
->s_fmode
;
1433 else if (fe
->icbTag
.fileType
== ICBTAG_FILE_TYPE_DIRECTORY
&&
1434 sbi
->s_dmode
!= UDF_INVALID_MODE
)
1435 inode
->i_mode
= sbi
->s_dmode
;
1437 inode
->i_mode
= udf_convert_permissions(fe
);
1438 inode
->i_mode
&= ~sbi
->s_umask
;
1439 read_unlock(&sbi
->s_cred_lock
);
1441 link_count
= le16_to_cpu(fe
->fileLinkCount
);
1443 if (!hidden_inode
) {
1449 set_nlink(inode
, link_count
);
1451 inode
->i_size
= le64_to_cpu(fe
->informationLength
);
1452 iinfo
->i_lenExtents
= inode
->i_size
;
1454 if (iinfo
->i_efe
== 0) {
1455 inode
->i_blocks
= le64_to_cpu(fe
->logicalBlocksRecorded
) <<
1456 (inode
->i_sb
->s_blocksize_bits
- 9);
1458 if (!udf_disk_stamp_to_time(&inode
->i_atime
, fe
->accessTime
))
1459 inode
->i_atime
= sbi
->s_record_time
;
1461 if (!udf_disk_stamp_to_time(&inode
->i_mtime
,
1462 fe
->modificationTime
))
1463 inode
->i_mtime
= sbi
->s_record_time
;
1465 if (!udf_disk_stamp_to_time(&inode
->i_ctime
, fe
->attrTime
))
1466 inode
->i_ctime
= sbi
->s_record_time
;
1468 iinfo
->i_unique
= le64_to_cpu(fe
->uniqueID
);
1469 iinfo
->i_lenEAttr
= le32_to_cpu(fe
->lengthExtendedAttr
);
1470 iinfo
->i_lenAlloc
= le32_to_cpu(fe
->lengthAllocDescs
);
1471 iinfo
->i_checkpoint
= le32_to_cpu(fe
->checkpoint
);
1473 inode
->i_blocks
= le64_to_cpu(efe
->logicalBlocksRecorded
) <<
1474 (inode
->i_sb
->s_blocksize_bits
- 9);
1476 if (!udf_disk_stamp_to_time(&inode
->i_atime
, efe
->accessTime
))
1477 inode
->i_atime
= sbi
->s_record_time
;
1479 if (!udf_disk_stamp_to_time(&inode
->i_mtime
,
1480 efe
->modificationTime
))
1481 inode
->i_mtime
= sbi
->s_record_time
;
1483 if (!udf_disk_stamp_to_time(&iinfo
->i_crtime
, efe
->createTime
))
1484 iinfo
->i_crtime
= sbi
->s_record_time
;
1486 if (!udf_disk_stamp_to_time(&inode
->i_ctime
, efe
->attrTime
))
1487 inode
->i_ctime
= sbi
->s_record_time
;
1489 iinfo
->i_unique
= le64_to_cpu(efe
->uniqueID
);
1490 iinfo
->i_lenEAttr
= le32_to_cpu(efe
->lengthExtendedAttr
);
1491 iinfo
->i_lenAlloc
= le32_to_cpu(efe
->lengthAllocDescs
);
1492 iinfo
->i_checkpoint
= le32_to_cpu(efe
->checkpoint
);
1494 inode
->i_generation
= iinfo
->i_unique
;
1497 * Sanity check length of allocation descriptors and extended attrs to
1498 * avoid integer overflows
1500 if (iinfo
->i_lenEAttr
> bs
|| iinfo
->i_lenAlloc
> bs
)
1502 /* Now do exact checks */
1503 if (udf_file_entry_alloc_offset(inode
) + iinfo
->i_lenAlloc
> bs
)
1505 /* Sanity checks for files in ICB so that we don't get confused later */
1506 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
1508 * For file in ICB data is stored in allocation descriptor
1509 * so sizes should match
1511 if (iinfo
->i_lenAlloc
!= inode
->i_size
)
1513 /* File in ICB has to fit in there... */
1514 if (inode
->i_size
> bs
- udf_file_entry_alloc_offset(inode
))
1518 switch (fe
->icbTag
.fileType
) {
1519 case ICBTAG_FILE_TYPE_DIRECTORY
:
1520 inode
->i_op
= &udf_dir_inode_operations
;
1521 inode
->i_fop
= &udf_dir_operations
;
1522 inode
->i_mode
|= S_IFDIR
;
1525 case ICBTAG_FILE_TYPE_REALTIME
:
1526 case ICBTAG_FILE_TYPE_REGULAR
:
1527 case ICBTAG_FILE_TYPE_UNDEF
:
1528 case ICBTAG_FILE_TYPE_VAT20
:
1529 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
)
1530 inode
->i_data
.a_ops
= &udf_adinicb_aops
;
1532 inode
->i_data
.a_ops
= &udf_aops
;
1533 inode
->i_op
= &udf_file_inode_operations
;
1534 inode
->i_fop
= &udf_file_operations
;
1535 inode
->i_mode
|= S_IFREG
;
1537 case ICBTAG_FILE_TYPE_BLOCK
:
1538 inode
->i_mode
|= S_IFBLK
;
1540 case ICBTAG_FILE_TYPE_CHAR
:
1541 inode
->i_mode
|= S_IFCHR
;
1543 case ICBTAG_FILE_TYPE_FIFO
:
1544 init_special_inode(inode
, inode
->i_mode
| S_IFIFO
, 0);
1546 case ICBTAG_FILE_TYPE_SOCKET
:
1547 init_special_inode(inode
, inode
->i_mode
| S_IFSOCK
, 0);
1549 case ICBTAG_FILE_TYPE_SYMLINK
:
1550 inode
->i_data
.a_ops
= &udf_symlink_aops
;
1551 inode
->i_op
= &page_symlink_inode_operations
;
1552 inode_nohighmem(inode
);
1553 inode
->i_mode
= S_IFLNK
| S_IRWXUGO
;
1555 case ICBTAG_FILE_TYPE_MAIN
:
1556 udf_debug("METADATA FILE-----\n");
1558 case ICBTAG_FILE_TYPE_MIRROR
:
1559 udf_debug("METADATA MIRROR FILE-----\n");
1561 case ICBTAG_FILE_TYPE_BITMAP
:
1562 udf_debug("METADATA BITMAP FILE-----\n");
1565 udf_err(inode
->i_sb
, "(ino %ld) failed unknown file type=%d\n",
1566 inode
->i_ino
, fe
->icbTag
.fileType
);
1569 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
)) {
1570 struct deviceSpec
*dsea
=
1571 (struct deviceSpec
*)udf_get_extendedattr(inode
, 12, 1);
1573 init_special_inode(inode
, inode
->i_mode
,
1574 MKDEV(le32_to_cpu(dsea
->majorDeviceIdent
),
1575 le32_to_cpu(dsea
->minorDeviceIdent
)));
1576 /* Developer ID ??? */
1586 static int udf_alloc_i_data(struct inode
*inode
, size_t size
)
1588 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1589 iinfo
->i_ext
.i_data
= kmalloc(size
, GFP_KERNEL
);
1591 if (!iinfo
->i_ext
.i_data
) {
1592 udf_err(inode
->i_sb
, "(ino %ld) no free memory\n",
1600 static umode_t
udf_convert_permissions(struct fileEntry
*fe
)
1603 uint32_t permissions
;
1606 permissions
= le32_to_cpu(fe
->permissions
);
1607 flags
= le16_to_cpu(fe
->icbTag
.flags
);
1609 mode
= ((permissions
) & S_IRWXO
) |
1610 ((permissions
>> 2) & S_IRWXG
) |
1611 ((permissions
>> 4) & S_IRWXU
) |
1612 ((flags
& ICBTAG_FLAG_SETUID
) ? S_ISUID
: 0) |
1613 ((flags
& ICBTAG_FLAG_SETGID
) ? S_ISGID
: 0) |
1614 ((flags
& ICBTAG_FLAG_STICKY
) ? S_ISVTX
: 0);
1619 int udf_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1621 return udf_update_inode(inode
, wbc
->sync_mode
== WB_SYNC_ALL
);
1624 static int udf_sync_inode(struct inode
*inode
)
1626 return udf_update_inode(inode
, 1);
1629 static int udf_update_inode(struct inode
*inode
, int do_sync
)
1631 struct buffer_head
*bh
= NULL
;
1632 struct fileEntry
*fe
;
1633 struct extendedFileEntry
*efe
;
1634 uint64_t lb_recorded
;
1639 struct udf_sb_info
*sbi
= UDF_SB(inode
->i_sb
);
1640 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
1641 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1643 bh
= udf_tgetblk(inode
->i_sb
,
1644 udf_get_lb_pblock(inode
->i_sb
, &iinfo
->i_location
, 0));
1646 udf_debug("getblk failure\n");
1651 memset(bh
->b_data
, 0, inode
->i_sb
->s_blocksize
);
1652 fe
= (struct fileEntry
*)bh
->b_data
;
1653 efe
= (struct extendedFileEntry
*)bh
->b_data
;
1656 struct unallocSpaceEntry
*use
=
1657 (struct unallocSpaceEntry
*)bh
->b_data
;
1659 use
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1660 memcpy(bh
->b_data
+ sizeof(struct unallocSpaceEntry
),
1661 iinfo
->i_ext
.i_data
, inode
->i_sb
->s_blocksize
-
1662 sizeof(struct unallocSpaceEntry
));
1663 use
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_USE
);
1664 crclen
= sizeof(struct unallocSpaceEntry
);
1669 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_UID_FORGET
))
1670 fe
->uid
= cpu_to_le32(-1);
1672 fe
->uid
= cpu_to_le32(i_uid_read(inode
));
1674 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_GID_FORGET
))
1675 fe
->gid
= cpu_to_le32(-1);
1677 fe
->gid
= cpu_to_le32(i_gid_read(inode
));
1679 udfperms
= ((inode
->i_mode
& S_IRWXO
)) |
1680 ((inode
->i_mode
& S_IRWXG
) << 2) |
1681 ((inode
->i_mode
& S_IRWXU
) << 4);
1683 udfperms
|= (le32_to_cpu(fe
->permissions
) &
1684 (FE_PERM_O_DELETE
| FE_PERM_O_CHATTR
|
1685 FE_PERM_G_DELETE
| FE_PERM_G_CHATTR
|
1686 FE_PERM_U_DELETE
| FE_PERM_U_CHATTR
));
1687 fe
->permissions
= cpu_to_le32(udfperms
);
1689 if (S_ISDIR(inode
->i_mode
) && inode
->i_nlink
> 0)
1690 fe
->fileLinkCount
= cpu_to_le16(inode
->i_nlink
- 1);
1692 fe
->fileLinkCount
= cpu_to_le16(inode
->i_nlink
);
1694 fe
->informationLength
= cpu_to_le64(inode
->i_size
);
1696 if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
)) {
1698 struct deviceSpec
*dsea
=
1699 (struct deviceSpec
*)udf_get_extendedattr(inode
, 12, 1);
1701 dsea
= (struct deviceSpec
*)
1702 udf_add_extendedattr(inode
,
1703 sizeof(struct deviceSpec
) +
1704 sizeof(struct regid
), 12, 0x3);
1705 dsea
->attrType
= cpu_to_le32(12);
1706 dsea
->attrSubtype
= 1;
1707 dsea
->attrLength
= cpu_to_le32(
1708 sizeof(struct deviceSpec
) +
1709 sizeof(struct regid
));
1710 dsea
->impUseLength
= cpu_to_le32(sizeof(struct regid
));
1712 eid
= (struct regid
*)dsea
->impUse
;
1713 memset(eid
, 0, sizeof(struct regid
));
1714 strcpy(eid
->ident
, UDF_ID_DEVELOPER
);
1715 eid
->identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1716 eid
->identSuffix
[1] = UDF_OS_ID_LINUX
;
1717 dsea
->majorDeviceIdent
= cpu_to_le32(imajor(inode
));
1718 dsea
->minorDeviceIdent
= cpu_to_le32(iminor(inode
));
1721 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
)
1722 lb_recorded
= 0; /* No extents => no blocks! */
1725 (inode
->i_blocks
+ (1 << (blocksize_bits
- 9)) - 1) >>
1726 (blocksize_bits
- 9);
1728 if (iinfo
->i_efe
== 0) {
1729 memcpy(bh
->b_data
+ sizeof(struct fileEntry
),
1730 iinfo
->i_ext
.i_data
,
1731 inode
->i_sb
->s_blocksize
- sizeof(struct fileEntry
));
1732 fe
->logicalBlocksRecorded
= cpu_to_le64(lb_recorded
);
1734 udf_time_to_disk_stamp(&fe
->accessTime
, inode
->i_atime
);
1735 udf_time_to_disk_stamp(&fe
->modificationTime
, inode
->i_mtime
);
1736 udf_time_to_disk_stamp(&fe
->attrTime
, inode
->i_ctime
);
1737 memset(&(fe
->impIdent
), 0, sizeof(struct regid
));
1738 strcpy(fe
->impIdent
.ident
, UDF_ID_DEVELOPER
);
1739 fe
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1740 fe
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1741 fe
->uniqueID
= cpu_to_le64(iinfo
->i_unique
);
1742 fe
->lengthExtendedAttr
= cpu_to_le32(iinfo
->i_lenEAttr
);
1743 fe
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1744 fe
->checkpoint
= cpu_to_le32(iinfo
->i_checkpoint
);
1745 fe
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_FE
);
1746 crclen
= sizeof(struct fileEntry
);
1748 memcpy(bh
->b_data
+ sizeof(struct extendedFileEntry
),
1749 iinfo
->i_ext
.i_data
,
1750 inode
->i_sb
->s_blocksize
-
1751 sizeof(struct extendedFileEntry
));
1752 efe
->objectSize
= cpu_to_le64(inode
->i_size
);
1753 efe
->logicalBlocksRecorded
= cpu_to_le64(lb_recorded
);
1755 if (iinfo
->i_crtime
.tv_sec
> inode
->i_atime
.tv_sec
||
1756 (iinfo
->i_crtime
.tv_sec
== inode
->i_atime
.tv_sec
&&
1757 iinfo
->i_crtime
.tv_nsec
> inode
->i_atime
.tv_nsec
))
1758 iinfo
->i_crtime
= inode
->i_atime
;
1760 if (iinfo
->i_crtime
.tv_sec
> inode
->i_mtime
.tv_sec
||
1761 (iinfo
->i_crtime
.tv_sec
== inode
->i_mtime
.tv_sec
&&
1762 iinfo
->i_crtime
.tv_nsec
> inode
->i_mtime
.tv_nsec
))
1763 iinfo
->i_crtime
= inode
->i_mtime
;
1765 if (iinfo
->i_crtime
.tv_sec
> inode
->i_ctime
.tv_sec
||
1766 (iinfo
->i_crtime
.tv_sec
== inode
->i_ctime
.tv_sec
&&
1767 iinfo
->i_crtime
.tv_nsec
> inode
->i_ctime
.tv_nsec
))
1768 iinfo
->i_crtime
= inode
->i_ctime
;
1770 udf_time_to_disk_stamp(&efe
->accessTime
, inode
->i_atime
);
1771 udf_time_to_disk_stamp(&efe
->modificationTime
, inode
->i_mtime
);
1772 udf_time_to_disk_stamp(&efe
->createTime
, iinfo
->i_crtime
);
1773 udf_time_to_disk_stamp(&efe
->attrTime
, inode
->i_ctime
);
1775 memset(&(efe
->impIdent
), 0, sizeof(struct regid
));
1776 strcpy(efe
->impIdent
.ident
, UDF_ID_DEVELOPER
);
1777 efe
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1778 efe
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1779 efe
->uniqueID
= cpu_to_le64(iinfo
->i_unique
);
1780 efe
->lengthExtendedAttr
= cpu_to_le32(iinfo
->i_lenEAttr
);
1781 efe
->lengthAllocDescs
= cpu_to_le32(iinfo
->i_lenAlloc
);
1782 efe
->checkpoint
= cpu_to_le32(iinfo
->i_checkpoint
);
1783 efe
->descTag
.tagIdent
= cpu_to_le16(TAG_IDENT_EFE
);
1784 crclen
= sizeof(struct extendedFileEntry
);
1788 if (iinfo
->i_strat4096
) {
1789 fe
->icbTag
.strategyType
= cpu_to_le16(4096);
1790 fe
->icbTag
.strategyParameter
= cpu_to_le16(1);
1791 fe
->icbTag
.numEntries
= cpu_to_le16(2);
1793 fe
->icbTag
.strategyType
= cpu_to_le16(4);
1794 fe
->icbTag
.numEntries
= cpu_to_le16(1);
1798 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_USE
;
1799 else if (S_ISDIR(inode
->i_mode
))
1800 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_DIRECTORY
;
1801 else if (S_ISREG(inode
->i_mode
))
1802 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_REGULAR
;
1803 else if (S_ISLNK(inode
->i_mode
))
1804 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_SYMLINK
;
1805 else if (S_ISBLK(inode
->i_mode
))
1806 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_BLOCK
;
1807 else if (S_ISCHR(inode
->i_mode
))
1808 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_CHAR
;
1809 else if (S_ISFIFO(inode
->i_mode
))
1810 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_FIFO
;
1811 else if (S_ISSOCK(inode
->i_mode
))
1812 fe
->icbTag
.fileType
= ICBTAG_FILE_TYPE_SOCKET
;
1814 icbflags
= iinfo
->i_alloc_type
|
1815 ((inode
->i_mode
& S_ISUID
) ? ICBTAG_FLAG_SETUID
: 0) |
1816 ((inode
->i_mode
& S_ISGID
) ? ICBTAG_FLAG_SETGID
: 0) |
1817 ((inode
->i_mode
& S_ISVTX
) ? ICBTAG_FLAG_STICKY
: 0) |
1818 (le16_to_cpu(fe
->icbTag
.flags
) &
1819 ~(ICBTAG_FLAG_AD_MASK
| ICBTAG_FLAG_SETUID
|
1820 ICBTAG_FLAG_SETGID
| ICBTAG_FLAG_STICKY
));
1822 fe
->icbTag
.flags
= cpu_to_le16(icbflags
);
1823 if (sbi
->s_udfrev
>= 0x0200)
1824 fe
->descTag
.descVersion
= cpu_to_le16(3);
1826 fe
->descTag
.descVersion
= cpu_to_le16(2);
1827 fe
->descTag
.tagSerialNum
= cpu_to_le16(sbi
->s_serial_number
);
1828 fe
->descTag
.tagLocation
= cpu_to_le32(
1829 iinfo
->i_location
.logicalBlockNum
);
1830 crclen
+= iinfo
->i_lenEAttr
+ iinfo
->i_lenAlloc
- sizeof(struct tag
);
1831 fe
->descTag
.descCRCLength
= cpu_to_le16(crclen
);
1832 fe
->descTag
.descCRC
= cpu_to_le16(crc_itu_t(0, (char *)fe
+ sizeof(struct tag
),
1834 fe
->descTag
.tagChecksum
= udf_tag_checksum(&fe
->descTag
);
1836 set_buffer_uptodate(bh
);
1839 /* write the data blocks */
1840 mark_buffer_dirty(bh
);
1842 sync_dirty_buffer(bh
);
1843 if (buffer_write_io_error(bh
)) {
1844 udf_warn(inode
->i_sb
, "IO error syncing udf inode [%08lx]\n",
1854 struct inode
*__udf_iget(struct super_block
*sb
, struct kernel_lb_addr
*ino
,
1857 unsigned long block
= udf_get_lb_pblock(sb
, ino
, 0);
1858 struct inode
*inode
= iget_locked(sb
, block
);
1862 return ERR_PTR(-ENOMEM
);
1864 if (!(inode
->i_state
& I_NEW
))
1867 memcpy(&UDF_I(inode
)->i_location
, ino
, sizeof(struct kernel_lb_addr
));
1868 err
= udf_read_inode(inode
, hidden_inode
);
1871 return ERR_PTR(err
);
1873 unlock_new_inode(inode
);
1878 int udf_setup_indirect_aext(struct inode
*inode
, int block
,
1879 struct extent_position
*epos
)
1881 struct super_block
*sb
= inode
->i_sb
;
1882 struct buffer_head
*bh
;
1883 struct allocExtDesc
*aed
;
1884 struct extent_position nepos
;
1885 struct kernel_lb_addr neloc
;
1888 if (UDF_I(inode
)->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
1889 adsize
= sizeof(struct short_ad
);
1890 else if (UDF_I(inode
)->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
1891 adsize
= sizeof(struct long_ad
);
1895 neloc
.logicalBlockNum
= block
;
1896 neloc
.partitionReferenceNum
= epos
->block
.partitionReferenceNum
;
1898 bh
= udf_tgetblk(sb
, udf_get_lb_pblock(sb
, &neloc
, 0));
1902 memset(bh
->b_data
, 0x00, sb
->s_blocksize
);
1903 set_buffer_uptodate(bh
);
1905 mark_buffer_dirty_inode(bh
, inode
);
1907 aed
= (struct allocExtDesc
*)(bh
->b_data
);
1908 if (!UDF_QUERY_FLAG(sb
, UDF_FLAG_STRICT
)) {
1909 aed
->previousAllocExtLocation
=
1910 cpu_to_le32(epos
->block
.logicalBlockNum
);
1912 aed
->lengthAllocDescs
= cpu_to_le32(0);
1913 if (UDF_SB(sb
)->s_udfrev
>= 0x0200)
1917 udf_new_tag(bh
->b_data
, TAG_IDENT_AED
, ver
, 1, block
,
1918 sizeof(struct tag
));
1920 nepos
.block
= neloc
;
1921 nepos
.offset
= sizeof(struct allocExtDesc
);
1925 * Do we have to copy current last extent to make space for indirect
1928 if (epos
->offset
+ adsize
> sb
->s_blocksize
) {
1929 struct kernel_lb_addr cp_loc
;
1933 epos
->offset
-= adsize
;
1934 cp_type
= udf_current_aext(inode
, epos
, &cp_loc
, &cp_len
, 0);
1935 cp_len
|= ((uint32_t)cp_type
) << 30;
1937 __udf_add_aext(inode
, &nepos
, &cp_loc
, cp_len
, 1);
1938 udf_write_aext(inode
, epos
, &nepos
.block
,
1939 sb
->s_blocksize
| EXT_NEXT_EXTENT_ALLOCDECS
, 0);
1941 __udf_add_aext(inode
, epos
, &nepos
.block
,
1942 sb
->s_blocksize
| EXT_NEXT_EXTENT_ALLOCDECS
, 0);
1952 * Append extent at the given position - should be the first free one in inode
1953 * / indirect extent. This function assumes there is enough space in the inode
1954 * or indirect extent. Use udf_add_aext() if you didn't check for this before.
1956 int __udf_add_aext(struct inode
*inode
, struct extent_position
*epos
,
1957 struct kernel_lb_addr
*eloc
, uint32_t elen
, int inc
)
1959 struct udf_inode_info
*iinfo
= UDF_I(inode
);
1960 struct allocExtDesc
*aed
;
1963 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
1964 adsize
= sizeof(struct short_ad
);
1965 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
1966 adsize
= sizeof(struct long_ad
);
1971 WARN_ON(iinfo
->i_lenAlloc
!=
1972 epos
->offset
- udf_file_entry_alloc_offset(inode
));
1974 aed
= (struct allocExtDesc
*)epos
->bh
->b_data
;
1975 WARN_ON(le32_to_cpu(aed
->lengthAllocDescs
) !=
1976 epos
->offset
- sizeof(struct allocExtDesc
));
1977 WARN_ON(epos
->offset
+ adsize
> inode
->i_sb
->s_blocksize
);
1980 udf_write_aext(inode
, epos
, eloc
, elen
, inc
);
1983 iinfo
->i_lenAlloc
+= adsize
;
1984 mark_inode_dirty(inode
);
1986 aed
= (struct allocExtDesc
*)epos
->bh
->b_data
;
1987 le32_add_cpu(&aed
->lengthAllocDescs
, adsize
);
1988 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
1989 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
1990 udf_update_tag(epos
->bh
->b_data
,
1991 epos
->offset
+ (inc
? 0 : adsize
));
1993 udf_update_tag(epos
->bh
->b_data
,
1994 sizeof(struct allocExtDesc
));
1995 mark_buffer_dirty_inode(epos
->bh
, inode
);
2002 * Append extent at given position - should be the first free one in inode
2003 * / indirect extent. Takes care of allocating and linking indirect blocks.
2005 int udf_add_aext(struct inode
*inode
, struct extent_position
*epos
,
2006 struct kernel_lb_addr
*eloc
, uint32_t elen
, int inc
)
2009 struct super_block
*sb
= inode
->i_sb
;
2011 if (UDF_I(inode
)->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
2012 adsize
= sizeof(struct short_ad
);
2013 else if (UDF_I(inode
)->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
2014 adsize
= sizeof(struct long_ad
);
2018 if (epos
->offset
+ (2 * adsize
) > sb
->s_blocksize
) {
2022 new_block
= udf_new_block(sb
, NULL
,
2023 epos
->block
.partitionReferenceNum
,
2024 epos
->block
.logicalBlockNum
, &err
);
2028 err
= udf_setup_indirect_aext(inode
, new_block
, epos
);
2033 return __udf_add_aext(inode
, epos
, eloc
, elen
, inc
);
2036 void udf_write_aext(struct inode
*inode
, struct extent_position
*epos
,
2037 struct kernel_lb_addr
*eloc
, uint32_t elen
, int inc
)
2041 struct short_ad
*sad
;
2042 struct long_ad
*lad
;
2043 struct udf_inode_info
*iinfo
= UDF_I(inode
);
2046 ptr
= iinfo
->i_ext
.i_data
+ epos
->offset
-
2047 udf_file_entry_alloc_offset(inode
) +
2050 ptr
= epos
->bh
->b_data
+ epos
->offset
;
2052 switch (iinfo
->i_alloc_type
) {
2053 case ICBTAG_FLAG_AD_SHORT
:
2054 sad
= (struct short_ad
*)ptr
;
2055 sad
->extLength
= cpu_to_le32(elen
);
2056 sad
->extPosition
= cpu_to_le32(eloc
->logicalBlockNum
);
2057 adsize
= sizeof(struct short_ad
);
2059 case ICBTAG_FLAG_AD_LONG
:
2060 lad
= (struct long_ad
*)ptr
;
2061 lad
->extLength
= cpu_to_le32(elen
);
2062 lad
->extLocation
= cpu_to_lelb(*eloc
);
2063 memset(lad
->impUse
, 0x00, sizeof(lad
->impUse
));
2064 adsize
= sizeof(struct long_ad
);
2071 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
2072 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201) {
2073 struct allocExtDesc
*aed
=
2074 (struct allocExtDesc
*)epos
->bh
->b_data
;
2075 udf_update_tag(epos
->bh
->b_data
,
2076 le32_to_cpu(aed
->lengthAllocDescs
) +
2077 sizeof(struct allocExtDesc
));
2079 mark_buffer_dirty_inode(epos
->bh
, inode
);
2081 mark_inode_dirty(inode
);
2085 epos
->offset
+= adsize
;
2089 * Only 1 indirect extent in a row really makes sense but allow upto 16 in case
2090 * someone does some weird stuff.
2092 #define UDF_MAX_INDIR_EXTS 16
2094 int8_t udf_next_aext(struct inode
*inode
, struct extent_position
*epos
,
2095 struct kernel_lb_addr
*eloc
, uint32_t *elen
, int inc
)
2098 unsigned int indirections
= 0;
2100 while ((etype
= udf_current_aext(inode
, epos
, eloc
, elen
, inc
)) ==
2101 (EXT_NEXT_EXTENT_ALLOCDECS
>> 30)) {
2104 if (++indirections
> UDF_MAX_INDIR_EXTS
) {
2105 udf_err(inode
->i_sb
,
2106 "too many indirect extents in inode %lu\n",
2111 epos
->block
= *eloc
;
2112 epos
->offset
= sizeof(struct allocExtDesc
);
2114 block
= udf_get_lb_pblock(inode
->i_sb
, &epos
->block
, 0);
2115 epos
->bh
= udf_tread(inode
->i_sb
, block
);
2117 udf_debug("reading block %d failed!\n", block
);
2125 int8_t udf_current_aext(struct inode
*inode
, struct extent_position
*epos
,
2126 struct kernel_lb_addr
*eloc
, uint32_t *elen
, int inc
)
2131 struct short_ad
*sad
;
2132 struct long_ad
*lad
;
2133 struct udf_inode_info
*iinfo
= UDF_I(inode
);
2137 epos
->offset
= udf_file_entry_alloc_offset(inode
);
2138 ptr
= iinfo
->i_ext
.i_data
+ epos
->offset
-
2139 udf_file_entry_alloc_offset(inode
) +
2141 alen
= udf_file_entry_alloc_offset(inode
) +
2145 epos
->offset
= sizeof(struct allocExtDesc
);
2146 ptr
= epos
->bh
->b_data
+ epos
->offset
;
2147 alen
= sizeof(struct allocExtDesc
) +
2148 le32_to_cpu(((struct allocExtDesc
*)epos
->bh
->b_data
)->
2152 switch (iinfo
->i_alloc_type
) {
2153 case ICBTAG_FLAG_AD_SHORT
:
2154 sad
= udf_get_fileshortad(ptr
, alen
, &epos
->offset
, inc
);
2157 etype
= le32_to_cpu(sad
->extLength
) >> 30;
2158 eloc
->logicalBlockNum
= le32_to_cpu(sad
->extPosition
);
2159 eloc
->partitionReferenceNum
=
2160 iinfo
->i_location
.partitionReferenceNum
;
2161 *elen
= le32_to_cpu(sad
->extLength
) & UDF_EXTENT_LENGTH_MASK
;
2163 case ICBTAG_FLAG_AD_LONG
:
2164 lad
= udf_get_filelongad(ptr
, alen
, &epos
->offset
, inc
);
2167 etype
= le32_to_cpu(lad
->extLength
) >> 30;
2168 *eloc
= lelb_to_cpu(lad
->extLocation
);
2169 *elen
= le32_to_cpu(lad
->extLength
) & UDF_EXTENT_LENGTH_MASK
;
2172 udf_debug("alloc_type = %d unsupported\n", iinfo
->i_alloc_type
);
2179 static int8_t udf_insert_aext(struct inode
*inode
, struct extent_position epos
,
2180 struct kernel_lb_addr neloc
, uint32_t nelen
)
2182 struct kernel_lb_addr oeloc
;
2189 while ((etype
= udf_next_aext(inode
, &epos
, &oeloc
, &oelen
, 0)) != -1) {
2190 udf_write_aext(inode
, &epos
, &neloc
, nelen
, 1);
2192 nelen
= (etype
<< 30) | oelen
;
2194 udf_add_aext(inode
, &epos
, &neloc
, nelen
, 1);
2197 return (nelen
>> 30);
2200 int8_t udf_delete_aext(struct inode
*inode
, struct extent_position epos
,
2201 struct kernel_lb_addr eloc
, uint32_t elen
)
2203 struct extent_position oepos
;
2206 struct allocExtDesc
*aed
;
2207 struct udf_inode_info
*iinfo
;
2214 iinfo
= UDF_I(inode
);
2215 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
2216 adsize
= sizeof(struct short_ad
);
2217 else if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_LONG
)
2218 adsize
= sizeof(struct long_ad
);
2223 if (udf_next_aext(inode
, &epos
, &eloc
, &elen
, 1) == -1)
2226 while ((etype
= udf_next_aext(inode
, &epos
, &eloc
, &elen
, 1)) != -1) {
2227 udf_write_aext(inode
, &oepos
, &eloc
, (etype
<< 30) | elen
, 1);
2228 if (oepos
.bh
!= epos
.bh
) {
2229 oepos
.block
= epos
.block
;
2233 oepos
.offset
= epos
.offset
- adsize
;
2236 memset(&eloc
, 0x00, sizeof(struct kernel_lb_addr
));
2239 if (epos
.bh
!= oepos
.bh
) {
2240 udf_free_blocks(inode
->i_sb
, inode
, &epos
.block
, 0, 1);
2241 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
2242 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
2244 iinfo
->i_lenAlloc
-= (adsize
* 2);
2245 mark_inode_dirty(inode
);
2247 aed
= (struct allocExtDesc
*)oepos
.bh
->b_data
;
2248 le32_add_cpu(&aed
->lengthAllocDescs
, -(2 * adsize
));
2249 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
2250 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
2251 udf_update_tag(oepos
.bh
->b_data
,
2252 oepos
.offset
- (2 * adsize
));
2254 udf_update_tag(oepos
.bh
->b_data
,
2255 sizeof(struct allocExtDesc
));
2256 mark_buffer_dirty_inode(oepos
.bh
, inode
);
2259 udf_write_aext(inode
, &oepos
, &eloc
, elen
, 1);
2261 iinfo
->i_lenAlloc
-= adsize
;
2262 mark_inode_dirty(inode
);
2264 aed
= (struct allocExtDesc
*)oepos
.bh
->b_data
;
2265 le32_add_cpu(&aed
->lengthAllocDescs
, -adsize
);
2266 if (!UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_STRICT
) ||
2267 UDF_SB(inode
->i_sb
)->s_udfrev
>= 0x0201)
2268 udf_update_tag(oepos
.bh
->b_data
,
2269 epos
.offset
- adsize
);
2271 udf_update_tag(oepos
.bh
->b_data
,
2272 sizeof(struct allocExtDesc
));
2273 mark_buffer_dirty_inode(oepos
.bh
, inode
);
2280 return (elen
>> 30);
2283 int8_t inode_bmap(struct inode
*inode
, sector_t block
,
2284 struct extent_position
*pos
, struct kernel_lb_addr
*eloc
,
2285 uint32_t *elen
, sector_t
*offset
)
2287 unsigned char blocksize_bits
= inode
->i_sb
->s_blocksize_bits
;
2288 loff_t lbcount
= 0, bcount
=
2289 (loff_t
) block
<< blocksize_bits
;
2291 struct udf_inode_info
*iinfo
;
2293 iinfo
= UDF_I(inode
);
2294 if (!udf_read_extent_cache(inode
, bcount
, &lbcount
, pos
)) {
2296 pos
->block
= iinfo
->i_location
;
2301 etype
= udf_next_aext(inode
, pos
, eloc
, elen
, 1);
2303 *offset
= (bcount
- lbcount
) >> blocksize_bits
;
2304 iinfo
->i_lenExtents
= lbcount
;
2308 } while (lbcount
<= bcount
);
2309 /* update extent cache */
2310 udf_update_extent_cache(inode
, lbcount
- *elen
, pos
, 1);
2311 *offset
= (bcount
+ *elen
- lbcount
) >> blocksize_bits
;
2316 long udf_block_map(struct inode
*inode
, sector_t block
)
2318 struct kernel_lb_addr eloc
;
2321 struct extent_position epos
= {};
2324 down_read(&UDF_I(inode
)->i_data_sem
);
2326 if (inode_bmap(inode
, block
, &epos
, &eloc
, &elen
, &offset
) ==
2327 (EXT_RECORDED_ALLOCATED
>> 30))
2328 ret
= udf_get_lb_pblock(inode
->i_sb
, &eloc
, offset
);
2332 up_read(&UDF_I(inode
)->i_data_sem
);
2335 if (UDF_QUERY_FLAG(inode
->i_sb
, UDF_FLAG_VARCONV
))
2336 return udf_fixed_to_variable(ret
);