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