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