blob: 6e74b117aaf0e58d078e59d88817562de8379a1d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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
Marcin Slusarz4b111112008-02-08 04:20:36 -080022 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 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/smp_lock.h>
35#include <linux/module.h>
36#include <linux/pagemap.h>
37#include <linux/buffer_head.h>
38#include <linux/writeback.h>
39#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020040#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "udf_i.h"
43#include "udf_sb.h"
44
45MODULE_AUTHOR("Ben Fennema");
46MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47MODULE_LICENSE("GPL");
48
49#define EXTENT_MERGE_SIZE 5
50
51static mode_t udf_convert_permissions(struct fileEntry *);
52static int udf_update_inode(struct inode *, int);
53static void udf_fill_inode(struct inode *, struct buffer_head *);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070055static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080056 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070057static int8_t udf_insert_aext(struct inode *, struct extent_position,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070058 kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070060 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070062 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070064 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070066 kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
67 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
Christoph Hellwigb1e32122008-02-22 12:38:48 +010070
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070071void udf_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Mark Fashehfef26652005-09-09 13:01:31 -070073 truncate_inode_pages(&inode->i_data, 0);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (is_bad_inode(inode))
76 goto no_delete;
77
78 inode->i_size = 0;
79 udf_truncate(inode);
80 lock_kernel();
81
82 udf_update_inode(inode, IS_SYNC(inode));
83 udf_free_inode(inode);
84
85 unlock_kernel();
86 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070087
88no_delete:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 clear_inode(inode);
90}
91
Jan Kara74584ae2007-06-16 10:16:14 -070092/*
93 * If we are going to release inode from memory, we discard preallocation and
94 * truncate last inode extent to proper length. We could use drop_inode() but
95 * it's called under inode_lock and thus we cannot mark inode dirty there. We
96 * use clear_inode() but we have to make sure to write inode as it's not written
97 * automatically.
98 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099void udf_clear_inode(struct inode *inode)
100{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800101 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!(inode->i_sb->s_flags & MS_RDONLY)) {
103 lock_kernel();
Jan Kara74584ae2007-06-16 10:16:14 -0700104 /* Discard preallocation for directories, symlinks, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 udf_discard_prealloc(inode);
Jan Kara74584ae2007-06-16 10:16:14 -0700106 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unlock_kernel();
Mike Galbraith32a8f242008-02-08 04:20:49 -0800108 write_inode_now(inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800110 iinfo = UDF_I(inode);
111 kfree(iinfo->i_ext.i_data);
112 iinfo->i_ext.i_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static int udf_writepage(struct page *page, struct writeback_control *wbc)
116{
117 return block_write_full_page(page, udf_get_block, wbc);
118}
119
120static int udf_readpage(struct file *file, struct page *page)
121{
122 return block_read_full_page(page, udf_get_block);
123}
124
Nick Pigginbe021ee2007-10-16 01:25:20 -0700125static int udf_write_begin(struct file *file, struct address_space *mapping,
126 loff_t pos, unsigned len, unsigned flags,
127 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Nick Pigginbe021ee2007-10-16 01:25:20 -0700129 *pagep = NULL;
130 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
131 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static sector_t udf_bmap(struct address_space *mapping, sector_t block)
135{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700136 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700139const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700140 .readpage = udf_readpage,
141 .writepage = udf_writepage,
142 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700143 .write_begin = udf_write_begin,
144 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700145 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700148void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct page *page;
151 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800152 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct writeback_control udf_wbc = {
154 .sync_mode = WB_SYNC_NONE,
155 .nr_to_write = 1,
156 };
157
158 /* from now on we have normal address_space methods */
159 inode->i_data.a_ops = &udf_aops;
160
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800163 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800165 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 mark_inode_dirty(inode);
167 return;
168 }
169
170 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700171 BUG_ON(!PageLocked(page));
172
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700173 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800175 memset(kaddr + iinfo->i_lenAlloc, 0x00,
176 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
177 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
178 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 flush_dcache_page(page);
180 SetPageUptodate(page);
181 kunmap(page);
182 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800183 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
184 iinfo->i_lenAlloc);
185 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800187 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800189 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 inode->i_data.a_ops->writepage(page, &udf_wbc);
192 page_cache_release(page);
193
194 mark_inode_dirty(inode);
195}
196
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700197struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
198 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700201 struct buffer_head *dbh = NULL;
202 kernel_lb_addr eloc;
203 uint32_t elen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700205 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800208 loff_t f_pos = udf_ext0_offset(inode);
209 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800211 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
214 alloctype = ICBTAG_FLAG_AD_SHORT;
215 else
216 alloctype = ICBTAG_FLAG_AD_LONG;
217
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700218 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800219 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 mark_inode_dirty(inode);
221 return NULL;
222 }
223
224 /* alloc block, and copy data to it */
225 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800226 iinfo->i_location.partitionReferenceNum,
227 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (!(*block))
229 return NULL;
230 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800231 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800232 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!newblock)
234 return NULL;
235 dbh = udf_tgetblk(inode->i_sb, newblock);
236 if (!dbh)
237 return NULL;
238 lock_buffer(dbh);
239 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
240 set_buffer_uptodate(dbh);
241 unlock_buffer(dbh);
242 mark_buffer_dirty_inode(dbh, inode);
243
Marcin Slusarz4b111112008-02-08 04:20:36 -0800244 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800245 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700246 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 dfibh.soffset = dfibh.eoffset = 0;
248 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800249 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800250 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800251 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
252 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700253 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700254 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return NULL;
256 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800257 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 sfi->descTag.tagLocation = cpu_to_le32(*block);
259 dfibh.soffset = dfibh.eoffset;
260 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
261 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
262 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800263 sfi->fileIdent +
264 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800265 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700266 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return NULL;
268 }
269 }
270 mark_buffer_dirty_inode(dbh, inode);
271
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800272 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
273 iinfo->i_lenAlloc);
274 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800276 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800277 iinfo->i_location.partitionReferenceNum;
Jan Kara05343c42008-02-08 04:20:51 -0800278 elen = inode->i_sb->s_blocksize;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800279 iinfo->i_lenExtents = elen;
Jan Karaff116fc2007-05-08 00:35:14 -0700280 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800281 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700282 epos.offset = udf_file_entry_alloc_offset(inode);
283 udf_add_aext(inode, &epos, eloc, elen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* UniqueID stuff */
285
Jan Kara3bf25cb2007-05-08 00:35:16 -0700286 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 mark_inode_dirty(inode);
288 return dbh;
289}
290
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700291static int udf_get_block(struct inode *inode, sector_t block,
292 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 int err, new;
295 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800296 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800297 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700299 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 phys = udf_block_map(inode, block);
301 if (phys)
302 map_bh(bh_result, inode->i_sb, phys);
303 return 0;
304 }
305
306 err = -EIO;
307 new = 0;
308 bh = NULL;
309
310 lock_kernel();
311
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800312 iinfo = UDF_I(inode);
313 if (block == iinfo->i_next_alloc_block + 1) {
314 iinfo->i_next_alloc_block++;
315 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 err = 0;
319
320 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200321 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (err)
323 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200324 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (new)
327 set_buffer_new(bh_result);
328 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700329
330abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 unlock_kernel();
332 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700335static struct buffer_head *udf_getblk(struct inode *inode, long block,
336 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700338 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 struct buffer_head dummy;
340
341 dummy.b_state = 0;
342 dummy.b_blocknr = -1000;
343 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700344 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700346 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 lock_buffer(bh);
348 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
349 set_buffer_uptodate(bh);
350 unlock_buffer(bh);
351 mark_buffer_dirty_inode(bh, inode);
352 }
353 return bh;
354 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return NULL;
357}
358
Jan Kara31170b62007-05-08 00:35:21 -0700359/* Extend the file by 'blocks' blocks, return the number of extents added */
360int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800361 kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700362{
363 sector_t add;
364 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
365 struct super_block *sb = inode->i_sb;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700366 kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700367 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800368 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700369
370 /* The previous extent is fake and we should not extend by anything
371 * - there's nothing to do... */
372 if (!blocks && fake)
373 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700374
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800375 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700376 /* Round the last extent up to a multiple of block size */
377 if (last_ext->extLength & (sb->s_blocksize - 1)) {
378 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700379 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
380 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
381 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800382 iinfo->i_lenExtents =
383 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700384 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700385 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700386
Jan Kara31170b62007-05-08 00:35:21 -0700387 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800388 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
389 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700390 /* Save the extent so that we can reattach it to the end */
391 prealloc_loc = last_ext->extLocation;
392 prealloc_len = last_ext->extLength;
393 /* Mark the extent as a hole */
394 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700395 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700396 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800397 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700398 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399
Jan Kara31170b62007-05-08 00:35:21 -0700400 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800401 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
402 EXT_NOT_RECORDED_NOT_ALLOCATED) {
403 add = ((1 << 30) - sb->s_blocksize -
404 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
405 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700406 if (add > blocks)
407 add = blocks;
408 blocks -= add;
409 last_ext->extLength += add << sb->s_blocksize_bits;
410 }
411
412 if (fake) {
413 udf_add_aext(inode, last_pos, last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700414 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700415 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800416 } else
417 udf_write_aext(inode, last_pos, last_ext->extLocation,
418 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700419
Jan Kara31170b62007-05-08 00:35:21 -0700420 /* Managed to do everything necessary? */
421 if (!blocks)
422 goto out;
423
424 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
425 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800426 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700427 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800428 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
429 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700430
Jan Kara31170b62007-05-08 00:35:21 -0700431 /* Create enough extents to cover the whole hole */
432 while (blocks > add) {
433 blocks -= add;
434 if (udf_add_aext(inode, last_pos, last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700435 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700436 return -1;
437 count++;
438 }
439 if (blocks) {
440 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700441 (blocks << sb->s_blocksize_bits);
Jan Kara31170b62007-05-08 00:35:21 -0700442 if (udf_add_aext(inode, last_pos, last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700443 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700444 return -1;
445 count++;
446 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700447
448out:
Jan Kara31170b62007-05-08 00:35:21 -0700449 /* Do we have some preallocated blocks saved? */
450 if (prealloc_len) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800451 if (udf_add_aext(inode, last_pos, prealloc_loc,
452 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700453 return -1;
454 last_ext->extLocation = prealloc_loc;
455 last_ext->extLength = prealloc_len;
456 count++;
457 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700458
Jan Kara31170b62007-05-08 00:35:21 -0700459 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800460 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Jan Kara31170b62007-05-08 00:35:21 -0700461 last_pos->offset -= sizeof(short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800462 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Jan Kara31170b62007-05-08 00:35:21 -0700463 last_pos->offset -= sizeof(long_ad);
464 else
465 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700466
Jan Kara31170b62007-05-08 00:35:21 -0700467 return count;
468}
469
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700470static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800471 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Jan Kara31170b62007-05-08 00:35:21 -0700473 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700474 struct buffer_head *result = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700476 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700478 uint32_t elen = 0, tmpelen;
479 kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700481 loff_t lbcount = 0, b_off = 0;
482 uint32_t newblocknum, newblock;
483 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800485 struct udf_inode_info *iinfo = UDF_I(inode);
486 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700487 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Jan Karaff116fc2007-05-08 00:35:14 -0700489 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800490 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700491 prev_epos.bh = NULL;
492 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700493 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700496 alternate between laarr[0] and laarr[1] for locations of the
497 current extent, and the previous extent */
498 do {
499 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700500 brelse(prev_epos.bh);
501 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700502 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700504 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700505 brelse(cur_epos.bh);
506 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700507 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
510 lbcount += elen;
511
Jan Karaff116fc2007-05-08 00:35:14 -0700512 prev_epos.block = cur_epos.block;
513 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Jan Karaff116fc2007-05-08 00:35:14 -0700515 prev_epos.offset = cur_epos.offset;
516 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Marcin Slusarz4b111112008-02-08 04:20:36 -0800518 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
519 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521
522 c = !c;
523
524 laarr[c].extLength = (etype << 30) | elen;
525 laarr[c].extLocation = eloc;
526
527 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
528 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700529 ((elen + inode->i_sb->s_blocksize - 1) >>
530 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700532 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } while (lbcount + elen <= b_off);
534
535 b_off -= lbcount;
536 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700537 /*
538 * Move prev_epos and cur_epos into indirect extent if we are at
539 * the pointer to it
540 */
541 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
542 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700545 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700547 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
548 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700550 ((elen + inode->i_sb->s_blocksize - 1) &
551 ~(inode->i_sb->s_blocksize - 1));
Jan Karaff116fc2007-05-08 00:35:14 -0700552 etype = udf_write_aext(inode, &cur_epos, eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700554 brelse(prev_epos.bh);
555 brelse(cur_epos.bh);
556 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 newblock = udf_get_lb_pblock(inode->i_sb, eloc, offset);
558 *phys = newblock;
559 return NULL;
560 }
561
Jan Kara31170b62007-05-08 00:35:21 -0700562 last_block = block;
563 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700564 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700565 int ret;
566
567 if (count) {
568 if (c)
569 laarr[0] = laarr[1];
570 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700571 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700572 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800573 memset(&laarr[0].extLocation, 0x00,
574 sizeof(kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700575 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800576 /* Will udf_extend_file() create real extent from
577 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700578 startnum = (offset > 0);
579 }
580 /* Create extents for the hole between EOF and offset */
581 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
582 if (ret == -1) {
583 brelse(prev_epos.bh);
584 brelse(cur_epos.bh);
585 brelse(next_epos.bh);
586 /* We don't really know the error here so we just make
587 * something up */
588 *err = -ENOSPC;
589 return NULL;
590 }
591 c = 0;
592 offset = 0;
593 count += ret;
594 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800595 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
596 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700597 /* Is there any real extent? - otherwise we overwrite
598 * the fake one... */
599 if (count)
600 c = !c;
601 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700602 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800603 memset(&laarr[c].extLocation, 0x00,
604 sizeof(kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700605 count++;
606 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700607 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700608 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700610 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 endnum = startnum = ((count > 2) ? 2 : count);
612
Marcin Slusarz4b111112008-02-08 04:20:36 -0800613 /* if the current extent is in position 0,
614 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700615 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700616 laarr[2] = laarr[0];
617 laarr[0] = laarr[1];
618 laarr[1] = laarr[2];
619 c = 1;
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Marcin Slusarz4b111112008-02-08 04:20:36 -0800622 /* if the current block is located in an extent,
623 read the next extent */
624 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
625 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700626 laarr[c + 1].extLength = (etype << 30) | elen;
627 laarr[c + 1].extLocation = eloc;
628 count++;
629 startnum++;
630 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800631 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 lastblock = 1;
633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700636 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800637 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800639 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800640 if (iinfo->i_next_alloc_block == block)
641 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700643 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800644 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800645 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
Marcin Slusarz4b111112008-02-08 04:20:36 -0800648 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800649 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800650 goal, err);
651 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700652 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *err = -ENOSPC;
654 return NULL;
655 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800656 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
Marcin Slusarz4b111112008-02-08 04:20:36 -0800659 /* if the extent the requsted block is located in contains multiple
660 * blocks, split the extent into at most three extents. blocks prior
661 * to requested block, requested block, and blocks after requested
662 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
664
665#ifdef UDF_PREALLOCATE
666 /* preallocate blocks */
667 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
668#endif
669
670 /* merge any continuous blocks in laarr */
671 udf_merge_extents(inode, laarr, &endnum);
672
673 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700674 * of extents is greater than the old number, and deleting extents if
675 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700676 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Jan Kara3bf25cb2007-05-08 00:35:16 -0700678 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Marcin Slusarz4b111112008-02-08 04:20:36 -0800680 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800681 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800682 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 *phys = newblock;
685 *err = 0;
686 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800687 iinfo->i_next_alloc_block = block;
688 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 inode->i_ctime = current_fs_time(inode->i_sb);
690
691 if (IS_SYNC(inode))
692 udf_sync_inode(inode);
693 else
694 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return result;
697}
698
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700699static void udf_split_extents(struct inode *inode, int *c, int offset,
700 int newblocknum,
701 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
702 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800704 unsigned long blocksize = inode->i_sb->s_blocksize;
705 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800708 (laarr[*c].extLength >> 30) ==
709 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int curr = *c;
711 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800712 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 int8_t etype = (laarr[curr].extLength >> 30);
714
Marcin Slusarz4b111112008-02-08 04:20:36 -0800715 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700716 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800717 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700718 laarr[curr + 2] = laarr[curr + 1];
719 laarr[curr + 1] = laarr[curr];
720 } else {
721 laarr[curr + 3] = laarr[curr + 1];
722 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700725 if (offset) {
726 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800727 udf_free_blocks(inode->i_sb, inode,
728 laarr[curr].extLocation,
729 0, offset);
730 laarr[curr].extLength =
731 EXT_NOT_RECORDED_NOT_ALLOCATED |
732 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800734 laarr[curr].extLocation.
735 partitionReferenceNum = 0;
736 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800738 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700739 curr++;
740 (*c)++;
741 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 laarr[curr].extLocation.logicalBlockNum = newblocknum;
745 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
746 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800747 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800749 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700750 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700752 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800754 laarr[curr].extLocation.logicalBlockNum +=
755 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700756 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800757 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700758 curr++;
759 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761 }
762}
763
764static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
766 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 int start, length = 0, currlength = 0, i;
769
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700770 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!lastblock)
772 return;
773 else
774 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700775 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800776 if ((laarr[c + 1].extLength >> 30) ==
777 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700778 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800779 length = currlength =
780 (((laarr[c + 1].extLength &
781 UDF_EXTENT_LENGTH_MASK) +
782 inode->i_sb->s_blocksize - 1) >>
783 inode->i_sb->s_blocksize_bits);
784 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 start = c;
786 }
787
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700788 for (i = start + 1; i <= *endnum; i++) {
789 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (lastblock)
791 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800792 } else if ((laarr[i].extLength >> 30) ==
793 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
794 length += (((laarr[i].extLength &
795 UDF_EXTENT_LENGTH_MASK) +
796 inode->i_sb->s_blocksize - 1) >>
797 inode->i_sb->s_blocksize_bits);
798 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
800 }
801
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700802 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700804 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800805 inode->i_sb->s_blocksize - 1) >>
806 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800808 laarr[start].extLocation.partitionReferenceNum,
809 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
810 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
811 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700812 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800813 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800815 (numalloc <<
816 inode->i_sb->s_blocksize_bits);
817 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700818 memmove(&laarr[c + 2], &laarr[c + 1],
819 sizeof(long_ad) * (*endnum - (c + 1)));
820 (*endnum)++;
821 laarr[c + 1].extLocation.logicalBlockNum = next;
822 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800823 laarr[c].extLocation.
824 partitionReferenceNum;
825 laarr[c + 1].extLength =
826 EXT_NOT_RECORDED_ALLOCATED |
827 (numalloc <<
828 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700829 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700832 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800833 int elen = ((laarr[i].extLength &
834 UDF_EXTENT_LENGTH_MASK) +
835 inode->i_sb->s_blocksize - 1) >>
836 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700838 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800840 (numalloc <<
841 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700843 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700845 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800846 memmove(&laarr[i],
847 &laarr[i + 1],
848 sizeof(long_ad) *
849 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700850 i--;
851 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800854 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800855 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 }
858}
859
860static void udf_merge_extents(struct inode *inode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
862 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800865 unsigned long blocksize = inode->i_sb->s_blocksize;
866 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700868 for (i = 0; i < (*endnum - 1); i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800869 kernel_long_ad *li /*l[i]*/ = &laarr[i];
870 kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Marcin Slusarz4b111112008-02-08 04:20:36 -0800872 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
873 (((li->extLength >> 30) ==
874 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
875 ((lip1->extLocation.logicalBlockNum -
876 li->extLocation.logicalBlockNum) ==
877 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
878 blocksize - 1) >> blocksize_bits)))) {
879
880 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
881 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
882 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
883 lip1->extLength = (lip1->extLength -
884 (li->extLength &
885 UDF_EXTENT_LENGTH_MASK) +
886 UDF_EXTENT_LENGTH_MASK) &
887 ~(blocksize - 1);
888 li->extLength = (li->extLength &
889 UDF_EXTENT_FLAG_MASK) +
890 (UDF_EXTENT_LENGTH_MASK + 1) -
891 blocksize;
892 lip1->extLocation.logicalBlockNum =
893 li->extLocation.logicalBlockNum +
894 ((li->extLength &
895 UDF_EXTENT_LENGTH_MASK) >>
896 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700897 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800898 li->extLength = lip1->extLength +
899 (((li->extLength &
900 UDF_EXTENT_LENGTH_MASK) +
901 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700902 if (*endnum > (i + 2))
903 memmove(&laarr[i + 1], &laarr[i + 2],
Marcin Slusarz4b111112008-02-08 04:20:36 -0800904 sizeof(long_ad) *
905 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700906 i--;
907 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800909 } else if (((li->extLength >> 30) ==
910 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
911 ((lip1->extLength >> 30) ==
912 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
913 udf_free_blocks(inode->i_sb, inode, li->extLocation, 0,
914 ((li->extLength &
915 UDF_EXTENT_LENGTH_MASK) +
916 blocksize - 1) >> blocksize_bits);
917 li->extLocation.logicalBlockNum = 0;
918 li->extLocation.partitionReferenceNum = 0;
919
920 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
921 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
922 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
923 lip1->extLength = (lip1->extLength -
924 (li->extLength &
925 UDF_EXTENT_LENGTH_MASK) +
926 UDF_EXTENT_LENGTH_MASK) &
927 ~(blocksize - 1);
928 li->extLength = (li->extLength &
929 UDF_EXTENT_FLAG_MASK) +
930 (UDF_EXTENT_LENGTH_MASK + 1) -
931 blocksize;
932 } else {
933 li->extLength = lip1->extLength +
934 (((li->extLength &
935 UDF_EXTENT_LENGTH_MASK) +
936 blocksize - 1) & ~(blocksize - 1));
937 if (*endnum > (i + 2))
938 memmove(&laarr[i + 1], &laarr[i + 2],
939 sizeof(long_ad) *
940 (*endnum - (i + 2)));
941 i--;
942 (*endnum)--;
943 }
944 } else if ((li->extLength >> 30) ==
945 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
946 udf_free_blocks(inode->i_sb, inode,
947 li->extLocation, 0,
948 ((li->extLength &
949 UDF_EXTENT_LENGTH_MASK) +
950 blocksize - 1) >> blocksize_bits);
951 li->extLocation.logicalBlockNum = 0;
952 li->extLocation.partitionReferenceNum = 0;
953 li->extLength = (li->extLength &
954 UDF_EXTENT_LENGTH_MASK) |
955 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957 }
958}
959
960static void udf_update_extents(struct inode *inode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700961 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
962 int startnum, int endnum,
963 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 int start = 0, i;
966 kernel_lb_addr tmploc;
967 uint32_t tmplen;
968
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700969 if (startnum > endnum) {
970 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700971 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700972 laarr[i].extLength);
973 } else if (startnum < endnum) {
974 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700975 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700976 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700977 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700978 &laarr[i].extLength, 1);
979 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 }
982
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700983 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700984 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
985 udf_write_aext(inode, epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700986 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988}
989
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700990struct buffer_head *udf_bread(struct inode *inode, int block,
991 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700993 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 bh = udf_getblk(inode, block, create, err);
996 if (!bh)
997 return NULL;
998
999 if (buffer_uptodate(bh))
1000 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 wait_on_buffer(bh);
1005 if (buffer_uptodate(bh))
1006 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 brelse(bh);
1009 *err = -EIO;
1010 return NULL;
1011}
1012
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001013void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 int offset;
1016 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001017 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001020 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return;
1022 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1023 return;
1024
1025 lock_kernel();
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001026 iinfo = UDF_I(inode);
1027 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001028 if (inode->i_sb->s_blocksize <
1029 (udf_file_entry_alloc_offset(inode) +
1030 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001032 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1033 inode->i_size = iinfo->i_lenAlloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 unlock_kernel();
1035 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001036 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001038 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001040 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001041 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001042 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001043 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001045 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001046 block_truncate_page(inode->i_mapping, inode->i_size,
1047 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 udf_truncate_extents(inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1052 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001053 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 else
1055 mark_inode_dirty(inode);
1056 unlock_kernel();
1057}
1058
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001059static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct buffer_head *bh = NULL;
1062 struct fileEntry *fe;
1063 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001064 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /*
1067 * Set defaults, but the inode is still incomplete!
1068 * Note: get_new_inode() sets the following on a new inode:
1069 * i_sb = sb
1070 * i_no = ino
1071 * i_flags = sb->s_flags
1072 * i_state = 0
1073 * clean_inode(): zero fills and sets
1074 * i_count = 1
1075 * i_nlink = 1
1076 * i_op = NULL;
1077 */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001078 bh = udf_read_ptagged(inode->i_sb, iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001079 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001081 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 make_bad_inode(inode);
1083 return;
1084 }
1085
1086 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001087 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001088 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1089 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001090 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 make_bad_inode(inode);
1092 return;
1093 }
1094
1095 fe = (struct fileEntry *)bh->b_data;
1096
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001097 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001098 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001100 ibh = udf_read_ptagged(inode->i_sb, iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001101 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001102 if (ident == TAG_IDENT_IE && ibh) {
1103 struct buffer_head *nbh = NULL;
1104 kernel_lb_addr loc;
1105 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001106
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001107 ie = (struct indirectEntry *)ibh->b_data;
1108 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001109
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001110 if (ie->indirectICB.extLength &&
1111 (nbh = udf_read_ptagged(inode->i_sb, loc, 0,
1112 &ident))) {
1113 if (ident == TAG_IDENT_FE ||
1114 ident == TAG_IDENT_EFE) {
1115 memcpy(&iinfo->i_location,
1116 &loc,
1117 sizeof(kernel_lb_addr));
1118 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001119 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001120 brelse(nbh);
1121 __udf_read_inode(inode);
1122 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001123 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001124 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001126 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001127 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001128 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001130 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001131 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 make_bad_inode(inode);
1133 return;
1134 }
1135 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001136
Jan Kara3bf25cb2007-05-08 00:35:16 -07001137 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1141{
1142 struct fileEntry *fe;
1143 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001145 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001146 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 fe = (struct fileEntry *)bh->b_data;
1149 efe = (struct extendedFileEntry *)bh->b_data;
1150
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001151 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001152 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001153 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001154 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001156 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001157 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001158 iinfo->i_unique = 0;
1159 iinfo->i_lenEAttr = 0;
1160 iinfo->i_lenExtents = 0;
1161 iinfo->i_lenAlloc = 0;
1162 iinfo->i_next_alloc_block = 0;
1163 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001164 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001165 iinfo->i_efe = 1;
1166 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001167 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1168 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001169 make_bad_inode(inode);
1170 return;
1171 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001172 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001173 bh->b_data + sizeof(struct extendedFileEntry),
1174 inode->i_sb->s_blocksize -
1175 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001176 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001177 iinfo->i_efe = 0;
1178 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001179 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1180 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001181 make_bad_inode(inode);
1182 return;
1183 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001184 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001185 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001186 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001187 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001188 iinfo->i_efe = 0;
1189 iinfo->i_use = 1;
1190 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001191 ((struct unallocSpaceEntry *)bh->b_data)->
1192 lengthAllocDescs);
1193 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1194 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001195 make_bad_inode(inode);
1196 return;
1197 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001198 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001199 bh->b_data + sizeof(struct unallocSpaceEntry),
1200 inode->i_sb->s_blocksize -
1201 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return;
1203 }
1204
1205 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001206 if (inode->i_uid == -1 ||
1207 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1208 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001209 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001212 if (inode->i_gid == -1 ||
1213 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1214 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001215 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1218 if (!inode->i_nlink)
1219 inode->i_nlink = 1;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 inode->i_size = le64_to_cpu(fe->informationLength);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001222 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 inode->i_mode = udf_convert_permissions(fe);
1225 inode->i_mode &= ~UDF_SB(inode->i_sb)->s_umask;
1226
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001227 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001229 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Marcin Slusarz56774802008-02-10 11:25:31 +01001231 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001232 inode->i_atime = sbi->s_record_time;
1233
Marcin Slusarz56774802008-02-10 11:25:31 +01001234 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1235 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001236 inode->i_mtime = sbi->s_record_time;
1237
Marcin Slusarz56774802008-02-10 11:25:31 +01001238 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001239 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001241 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1242 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1243 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1244 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001245 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001246 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001247 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcin Slusarz56774802008-02-10 11:25:31 +01001249 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001250 inode->i_atime = sbi->s_record_time;
1251
Marcin Slusarz56774802008-02-10 11:25:31 +01001252 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1253 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001254 inode->i_mtime = sbi->s_record_time;
1255
Marcin Slusarz56774802008-02-10 11:25:31 +01001256 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001257 iinfo->i_crtime = sbi->s_record_time;
1258
Marcin Slusarz56774802008-02-10 11:25:31 +01001259 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001260 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001262 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1263 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1264 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001265 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001266 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001269 switch (fe->icbTag.fileType) {
1270 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001271 inode->i_op = &udf_dir_inode_operations;
1272 inode->i_fop = &udf_dir_operations;
1273 inode->i_mode |= S_IFDIR;
1274 inc_nlink(inode);
1275 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001276 case ICBTAG_FILE_TYPE_REALTIME:
1277 case ICBTAG_FILE_TYPE_REGULAR:
1278 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001279 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001280 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001281 inode->i_data.a_ops = &udf_adinicb_aops;
1282 else
1283 inode->i_data.a_ops = &udf_aops;
1284 inode->i_op = &udf_file_inode_operations;
1285 inode->i_fop = &udf_file_operations;
1286 inode->i_mode |= S_IFREG;
1287 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001288 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001289 inode->i_mode |= S_IFBLK;
1290 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001291 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001292 inode->i_mode |= S_IFCHR;
1293 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001294 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001295 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1296 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001297 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001298 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1299 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001300 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001301 inode->i_data.a_ops = &udf_symlink_aops;
1302 inode->i_op = &page_symlink_inode_operations;
1303 inode->i_mode = S_IFLNK | S_IRWXUGO;
1304 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001305 case ICBTAG_FILE_TYPE_MAIN:
1306 udf_debug("METADATA FILE-----\n");
1307 break;
1308 case ICBTAG_FILE_TYPE_MIRROR:
1309 udf_debug("METADATA MIRROR FILE-----\n");
1310 break;
1311 case ICBTAG_FILE_TYPE_BITMAP:
1312 udf_debug("METADATA BITMAP FILE-----\n");
1313 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001314 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001315 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1316 "file type=%d\n", inode->i_ino,
1317 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001318 make_bad_inode(inode);
1319 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001321 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001322 struct deviceSpec *dsea =
1323 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001324 if (dsea) {
1325 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001326 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1327 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001329 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332}
1333
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001334static int udf_alloc_i_data(struct inode *inode, size_t size)
1335{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001336 struct udf_inode_info *iinfo = UDF_I(inode);
1337 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001338
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001339 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001340 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1341 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001342 return -ENOMEM;
1343 }
1344
1345 return 0;
1346}
1347
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001348static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 mode_t mode;
1351 uint32_t permissions;
1352 uint32_t flags;
1353
1354 permissions = le32_to_cpu(fe->permissions);
1355 flags = le16_to_cpu(fe->icbTag.flags);
1356
Marcin Slusarz4b111112008-02-08 04:20:36 -08001357 mode = ((permissions) & S_IRWXO) |
1358 ((permissions >> 2) & S_IRWXG) |
1359 ((permissions >> 4) & S_IRWXU) |
1360 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1361 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1362 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 return mode;
1365}
1366
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001367int udf_write_inode(struct inode *inode, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 int ret;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 lock_kernel();
1372 ret = udf_update_inode(inode, sync);
1373 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return ret;
1376}
1377
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001378int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 return udf_update_inode(inode, 1);
1381}
1382
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001383static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct buffer_head *bh = NULL;
1386 struct fileEntry *fe;
1387 struct extendedFileEntry *efe;
1388 uint32_t udfperms;
1389 uint16_t icbflags;
1390 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001392 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001393 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001394 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Marcin Slusarz4b111112008-02-08 04:20:36 -08001396 bh = udf_tread(inode->i_sb,
1397 udf_get_lb_pblock(inode->i_sb,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001398 iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001399 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 udf_debug("bread failure\n");
1401 return -EIO;
1402 }
1403
1404 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
1405
1406 fe = (struct fileEntry *)bh->b_data;
1407 efe = (struct extendedFileEntry *)bh->b_data;
1408
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001409 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001411 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001413 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001414 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001415 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001416 sizeof(struct unallocSpaceEntry));
1417 crclen = sizeof(struct unallocSpaceEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001418 iinfo->i_lenAlloc - sizeof(tag);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001419 use->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001420 iinfo->i_location.
Marcin Slusarz4b111112008-02-08 04:20:36 -08001421 logicalBlockNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001423 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
1424 sizeof(tag),
1425 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001426 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 mark_buffer_dirty(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001429 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return err;
1431 }
1432
Phillip Susi4d6660e2006-03-07 21:55:24 -08001433 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1434 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001435 else
1436 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Phillip Susi4d6660e2006-03-07 21:55:24 -08001438 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1439 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001440 else
1441 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Marcin Slusarz4b111112008-02-08 04:20:36 -08001443 udfperms = ((inode->i_mode & S_IRWXO)) |
1444 ((inode->i_mode & S_IRWXG) << 2) |
1445 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Marcin Slusarz4b111112008-02-08 04:20:36 -08001447 udfperms |= (le32_to_cpu(fe->permissions) &
1448 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1449 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1450 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 fe->permissions = cpu_to_le32(udfperms);
1452
1453 if (S_ISDIR(inode->i_mode))
1454 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1455 else
1456 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1457
1458 fe->informationLength = cpu_to_le64(inode->i_size);
1459
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001460 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001462 struct deviceSpec *dsea =
1463 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001464 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001466 udf_add_extendedattr(inode,
1467 sizeof(struct deviceSpec) +
1468 sizeof(regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 dsea->attrType = cpu_to_le32(12);
1470 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001471 dsea->attrLength = cpu_to_le32(
1472 sizeof(struct deviceSpec) +
1473 sizeof(regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 dsea->impUseLength = cpu_to_le32(sizeof(regid));
1475 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001476 eid = (regid *)dsea->impUse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 memset(eid, 0, sizeof(regid));
1478 strcpy(eid->ident, UDF_ID_DEVELOPER);
1479 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1480 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1481 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1482 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1483 }
1484
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001485 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001486 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001487 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001488 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001489 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001490 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1491 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Marcin Slusarz56774802008-02-10 11:25:31 +01001493 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1494 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1495 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 memset(&(fe->impIdent), 0, sizeof(regid));
1497 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1498 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1499 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001500 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1501 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1502 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1504 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001505 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001506 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001507 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001508 inode->i_sb->s_blocksize -
1509 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001511 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001512 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1513 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001515 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1516 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1517 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1518 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001519
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001520 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1521 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1522 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1523 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001524
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001525 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1526 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1527 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1528 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Marcin Slusarz56774802008-02-10 11:25:31 +01001530 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1531 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1532 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1533 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 memset(&(efe->impIdent), 0, sizeof(regid));
1536 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1537 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1538 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001539 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1540 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1541 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1543 crclen = sizeof(struct extendedFileEntry);
1544 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001545 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 fe->icbTag.strategyType = cpu_to_le16(4096);
1547 fe->icbTag.strategyParameter = cpu_to_le16(1);
1548 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001549 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 fe->icbTag.strategyType = cpu_to_le16(4);
1551 fe->icbTag.numEntries = cpu_to_le16(1);
1552 }
1553
1554 if (S_ISDIR(inode->i_mode))
1555 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1556 else if (S_ISREG(inode->i_mode))
1557 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1558 else if (S_ISLNK(inode->i_mode))
1559 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1560 else if (S_ISBLK(inode->i_mode))
1561 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1562 else if (S_ISCHR(inode->i_mode))
1563 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1564 else if (S_ISFIFO(inode->i_mode))
1565 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1566 else if (S_ISSOCK(inode->i_mode))
1567 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1568
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001569 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001570 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1571 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1572 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1573 (le16_to_cpu(fe->icbTag.flags) &
1574 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1575 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001578 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 fe->descTag.descVersion = cpu_to_le16(3);
1580 else
1581 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001582 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001583 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001584 iinfo->i_location.logicalBlockNum);
1585 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc -
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001586 sizeof(tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001588 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(tag),
1589 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001590 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 /* write the data blocks */
1593 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001594 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 sync_dirty_buffer(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001596 if (buffer_req(bh) && !buffer_uptodate(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001597 printk(KERN_WARNING "IO error syncing udf inode "
1598 "[%s:%08lx]\n", inode->i_sb->s_id,
1599 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 err = -EIO;
1601 }
1602 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001603 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return err;
1606}
1607
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001608struct inode *udf_iget(struct super_block *sb, kernel_lb_addr ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1611 struct inode *inode = iget_locked(sb, block);
1612
1613 if (!inode)
1614 return NULL;
1615
1616 if (inode->i_state & I_NEW) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001617 memcpy(&UDF_I(inode)->i_location, &ino, sizeof(kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 __udf_read_inode(inode);
1619 unlock_new_inode(inode);
1620 }
1621
1622 if (is_bad_inode(inode))
1623 goto out_iput;
1624
Marcin Slusarz4b111112008-02-08 04:20:36 -08001625 if (ino.logicalBlockNum >= UDF_SB(sb)->
1626 s_partmaps[ino.partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 udf_debug("block=%d, partition=%d out of range\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001628 ino.logicalBlockNum, ino.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 make_bad_inode(inode);
1630 goto out_iput;
1631 }
1632
1633 return inode;
1634
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001635 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 iput(inode);
1637 return NULL;
1638}
1639
Marcin Slusarz4b111112008-02-08 04:20:36 -08001640int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001641 kernel_lb_addr eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 int adsize;
1644 short_ad *sad = NULL;
1645 long_ad *lad = NULL;
1646 struct allocExtDesc *aed;
1647 int8_t etype;
1648 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001649 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Jan Karaff116fc2007-05-08 00:35:14 -07001651 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001652 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001653 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001654 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 else
Jan Karaff116fc2007-05-08 00:35:14 -07001656 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001658 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 adsize = sizeof(short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001660 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 adsize = sizeof(long_ad);
1662 else
1663 return -1;
1664
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001665 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 char *sptr, *dptr;
1667 struct buffer_head *nbh;
1668 int err, loffset;
Jan Karaff116fc2007-05-08 00:35:14 -07001669 kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Marcin Slusarz4b111112008-02-08 04:20:36 -08001671 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1672 obloc.partitionReferenceNum,
1673 obloc.logicalBlockNum, &err);
1674 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001676 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
1677 epos->block,
1678 0));
1679 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 lock_buffer(nbh);
1682 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1683 set_buffer_uptodate(nbh);
1684 unlock_buffer(nbh);
1685 mark_buffer_dirty_inode(nbh, inode);
1686
1687 aed = (struct allocExtDesc *)(nbh->b_data);
1688 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001689 aed->previousAllocExtLocation =
1690 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001691 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001692 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 aed->lengthAllocDescs = cpu_to_le32(adsize);
1694 sptr = ptr - adsize;
1695 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1696 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001697 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001698 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001699 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 aed->lengthAllocDescs = cpu_to_le32(0);
1701 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001702 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001704 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001705 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001706 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001707 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001708 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 mark_inode_dirty(inode);
1710 }
1711 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001712 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001714 epos->block.logicalBlockNum, sizeof(tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 else
1716 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001717 epos->block.logicalBlockNum, sizeof(tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001718 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001719 case ICBTAG_FLAG_AD_SHORT:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001720 sad = (short_ad *)sptr;
1721 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1722 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001723 sad->extPosition =
1724 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001725 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001726 case ICBTAG_FLAG_AD_LONG:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001727 lad = (long_ad *)sptr;
1728 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1729 inode->i_sb->s_blocksize);
1730 lad->extLocation = cpu_to_lelb(epos->block);
1731 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1732 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001734 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001735 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001736 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001737 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001739 udf_update_tag(epos->bh->b_data,
1740 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001741 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001742 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001743 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001745 }
Jan Karaff116fc2007-05-08 00:35:14 -07001746 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
Jan Karaff116fc2007-05-08 00:35:14 -07001749 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001751 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001752 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001754 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001755 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001756 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001757 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1758 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1759 udf_update_tag(epos->bh->b_data,
1760 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001762 udf_update_tag(epos->bh->b_data,
1763 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001764 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766
1767 return etype;
1768}
1769
Marcin Slusarz4b111112008-02-08 04:20:36 -08001770int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001771 kernel_lb_addr eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 int adsize;
1774 uint8_t *ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001775 short_ad *sad;
1776 long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001777 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Jan Karaff116fc2007-05-08 00:35:14 -07001779 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001780 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001781 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001782 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 else
Jan Karaff116fc2007-05-08 00:35:14 -07001784 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001786 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001787 case ICBTAG_FLAG_AD_SHORT:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001788 sad = (short_ad *)ptr;
1789 sad->extLength = cpu_to_le32(elen);
1790 sad->extPosition = cpu_to_le32(eloc.logicalBlockNum);
1791 adsize = sizeof(short_ad);
1792 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001793 case ICBTAG_FLAG_AD_LONG:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001794 lad = (long_ad *)ptr;
1795 lad->extLength = cpu_to_le32(elen);
1796 lad->extLocation = cpu_to_lelb(eloc);
1797 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1798 adsize = sizeof(long_ad);
1799 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001800 default:
1801 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001804 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001805 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001806 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001807 struct allocExtDesc *aed =
1808 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001809 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001810 le32_to_cpu(aed->lengthAllocDescs) +
1811 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
Jan Karaff116fc2007-05-08 00:35:14 -07001813 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001814 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001819 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return (elen >> 30);
1822}
1823
Marcin Slusarz4b111112008-02-08 04:20:36 -08001824int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
1825 kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 int8_t etype;
1828
Jan Karaff116fc2007-05-08 00:35:14 -07001829 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001830 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001831 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001832 epos->block = *eloc;
1833 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001834 brelse(epos->bh);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001835 block = udf_get_lb_pblock(inode->i_sb, epos->block, 0);
1836 epos->bh = udf_tread(inode->i_sb, block);
1837 if (!epos->bh) {
1838 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return -1;
1840 }
1841 }
1842
1843 return etype;
1844}
1845
Marcin Slusarz4b111112008-02-08 04:20:36 -08001846int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
1847 kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 int alen;
1850 int8_t etype;
1851 uint8_t *ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001852 short_ad *sad;
1853 long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001854 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001855
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001856 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001857 if (!epos->offset)
1858 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001859 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001860 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001861 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001862 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001863 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001864 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001865 if (!epos->offset)
1866 epos->offset = sizeof(struct allocExtDesc);
1867 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001868 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001869 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1870 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001873 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001874 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001875 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1876 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001878 etype = le32_to_cpu(sad->extLength) >> 30;
1879 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001880 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001881 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001882 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1883 break;
1884 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001885 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1886 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001887 return -1;
1888 etype = le32_to_cpu(lad->extLength) >> 30;
1889 *eloc = lelb_to_cpu(lad->extLocation);
1890 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1891 break;
1892 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001893 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001894 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001895 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
1898 return etype;
1899}
1900
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001901static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
1902 kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
1904 kernel_lb_addr oeloc;
1905 uint32_t oelen;
1906 int8_t etype;
1907
Jan Karaff116fc2007-05-08 00:35:14 -07001908 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001909 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001911 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Jan Karaff116fc2007-05-08 00:35:14 -07001912 udf_write_aext(inode, &epos, neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 neloc = oeloc;
1914 nelen = (etype << 30) | oelen;
1915 }
Jan Karaff116fc2007-05-08 00:35:14 -07001916 udf_add_aext(inode, &epos, neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001917 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return (nelen >> 30);
1920}
1921
Marcin Slusarz4b111112008-02-08 04:20:36 -08001922int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001923 kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Jan Karaff116fc2007-05-08 00:35:14 -07001925 struct extent_position oepos;
1926 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 int8_t etype;
1928 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001929 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001931 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001932 get_bh(epos.bh);
1933 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001936 iinfo = UDF_I(inode);
1937 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 adsize = sizeof(short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001939 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 adsize = sizeof(long_ad);
1941 else
1942 adsize = 0;
1943
Jan Karaff116fc2007-05-08 00:35:14 -07001944 oepos = epos;
1945 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return -1;
1947
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001948 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Jan Karaff116fc2007-05-08 00:35:14 -07001949 udf_write_aext(inode, &oepos, eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001951 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001952 brelse(oepos.bh);
1953 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001954 oepos.bh = epos.bh;
1955 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957 }
1958 memset(&eloc, 0x00, sizeof(kernel_lb_addr));
1959 elen = 0;
1960
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001961 if (epos.bh != oepos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001962 udf_free_blocks(inode->i_sb, inode, epos.block, 0, 1);
1963 udf_write_aext(inode, &oepos, eloc, elen, 1);
1964 udf_write_aext(inode, &oepos, eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001965 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001966 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001968 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001969 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001970 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001971 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001972 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001973 udf_update_tag(oepos.bh->b_data,
1974 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001976 udf_update_tag(oepos.bh->b_data,
1977 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001978 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001980 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001981 udf_write_aext(inode, &oepos, eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001982 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001983 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001985 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001986 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001987 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001988 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001989 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001990 udf_update_tag(oepos.bh->b_data,
1991 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001993 udf_update_tag(oepos.bh->b_data,
1994 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001995 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001998
Jan Kara3bf25cb2007-05-08 00:35:16 -07001999 brelse(epos.bh);
2000 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return (elen >> 30);
2003}
2004
Marcin Slusarz4b111112008-02-08 04:20:36 -08002005int8_t inode_bmap(struct inode *inode, sector_t block,
2006 struct extent_position *pos, kernel_lb_addr *eloc,
2007 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002009 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002010 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002011 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002013 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002015 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002016 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002017 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002018 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002021 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002022 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2023 if (etype == -1) {
2024 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002025 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return -1;
2027 }
2028 lbcount += *elen;
2029 } while (lbcount <= bcount);
2030
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 return etype;
2034}
2035
Jan Kara60448b12007-05-08 00:35:13 -07002036long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Jan Karaff116fc2007-05-08 00:35:14 -07002038 kernel_lb_addr eloc;
2039 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002040 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002041 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 int ret;
2043
2044 lock_kernel();
2045
Marcin Slusarz4b111112008-02-08 04:20:36 -08002046 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2047 (EXT_RECORDED_ALLOCATED >> 30))
Jan Kara60448b12007-05-08 00:35:13 -07002048 ret = udf_get_lb_pblock(inode->i_sb, eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 else
2050 ret = 0;
2051
2052 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07002053 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2056 return udf_fixed_to_variable(ret);
2057 else
2058 return ret;
2059}