blob: fc48f37aa2dd02dd4d10c281c77dee0f58fee98a [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,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020058 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020060 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020062 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020064 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020066 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070067 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
Al Viro3aac2b62010-06-07 00:43:39 -040071void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Jan Kara2c948b32009-12-03 13:39:28 +010073 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040074 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010075
Al Viro3aac2b62010-06-07 00:43:39 -040076 truncate_inode_pages(&inode->i_data, 0);
77
78 if (!inode->i_nlink && !is_bad_inode(inode)) {
79 want_delete = 1;
80 inode->i_size = 0;
81 udf_truncate(inode);
82 lock_kernel();
83 udf_update_inode(inode, IS_SYNC(inode));
84 unlock_kernel();
85 }
86 invalidate_inode_buffers(inode);
87 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010088 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
89 inode->i_size != iinfo->i_lenExtents) {
90 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
Daniel Mack1537a362010-01-29 15:57:49 +080091 "inode size %llu different from extent length %llu. "
Jan Kara2c948b32009-12-03 13:39:28 +010092 "Filesystem need not be standards compliant.\n",
93 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
94 (unsigned long long)inode->i_size,
95 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080097 kfree(iinfo->i_ext.i_data);
98 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040099 if (want_delete) {
100 lock_kernel();
101 udf_free_inode(inode);
102 unlock_kernel();
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106static int udf_writepage(struct page *page, struct writeback_control *wbc)
107{
108 return block_write_full_page(page, udf_get_block, wbc);
109}
110
111static int udf_readpage(struct file *file, struct page *page)
112{
113 return block_read_full_page(page, udf_get_block);
114}
115
Nick Pigginbe021ee2007-10-16 01:25:20 -0700116static int udf_write_begin(struct file *file, struct address_space *mapping,
117 loff_t pos, unsigned len, unsigned flags,
118 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200120 int ret;
121
122 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
123 if (unlikely(ret)) {
124 loff_t isize = mapping->host->i_size;
125 if (pos + len > isize)
126 vmtruncate(mapping->host, isize);
127 }
128
129 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static sector_t udf_bmap(struct address_space *mapping, sector_t block)
133{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700134 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700137const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700138 .readpage = udf_readpage,
139 .writepage = udf_writepage,
140 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700141 .write_begin = udf_write_begin,
142 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700143 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700146void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct page *page;
149 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800150 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct writeback_control udf_wbc = {
152 .sync_mode = WB_SYNC_NONE,
153 .nr_to_write = 1,
154 };
155
156 /* from now on we have normal address_space methods */
157 inode->i_data.a_ops = &udf_aops;
158
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800159 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800163 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 mark_inode_dirty(inode);
165 return;
166 }
167
168 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700169 BUG_ON(!PageLocked(page));
170
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700171 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800173 memset(kaddr + iinfo->i_lenAlloc, 0x00,
174 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
175 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
176 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 flush_dcache_page(page);
178 SetPageUptodate(page);
179 kunmap(page);
180 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800181 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
182 iinfo->i_lenAlloc);
183 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800185 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800187 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 inode->i_data.a_ops->writepage(page, &udf_wbc);
190 page_cache_release(page);
191
192 mark_inode_dirty(inode);
193}
194
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700195struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
196 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700199 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200200 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700202 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800205 loff_t f_pos = udf_ext0_offset(inode);
206 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800208 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
211 alloctype = ICBTAG_FLAG_AD_SHORT;
212 else
213 alloctype = ICBTAG_FLAG_AD_LONG;
214
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700215 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800216 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 mark_inode_dirty(inode);
218 return NULL;
219 }
220
221 /* alloc block, and copy data to it */
222 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800223 iinfo->i_location.partitionReferenceNum,
224 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!(*block))
226 return NULL;
227 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800228 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800229 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (!newblock)
231 return NULL;
232 dbh = udf_tgetblk(inode->i_sb, newblock);
233 if (!dbh)
234 return NULL;
235 lock_buffer(dbh);
236 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
237 set_buffer_uptodate(dbh);
238 unlock_buffer(dbh);
239 mark_buffer_dirty_inode(dbh, inode);
240
Marcin Slusarz4b111112008-02-08 04:20:36 -0800241 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800242 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700243 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 dfibh.soffset = dfibh.eoffset = 0;
245 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800246 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800247 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800248 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
249 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700250 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700251 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return NULL;
253 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800254 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 sfi->descTag.tagLocation = cpu_to_le32(*block);
256 dfibh.soffset = dfibh.eoffset;
257 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
258 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
259 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800260 sfi->fileIdent +
261 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800262 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700263 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return NULL;
265 }
266 }
267 mark_buffer_dirty_inode(dbh, inode);
268
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800269 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
270 iinfo->i_lenAlloc);
271 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800273 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800274 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100275 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700276 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800277 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700278 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100279 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* UniqueID stuff */
281
Jan Kara3bf25cb2007-05-08 00:35:16 -0700282 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 mark_inode_dirty(inode);
284 return dbh;
285}
286
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700287static int udf_get_block(struct inode *inode, sector_t block,
288 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 int err, new;
291 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800292 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800293 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700295 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 phys = udf_block_map(inode, block);
297 if (phys)
298 map_bh(bh_result, inode->i_sb, phys);
299 return 0;
300 }
301
302 err = -EIO;
303 new = 0;
304 bh = NULL;
305
306 lock_kernel();
307
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800308 iinfo = UDF_I(inode);
309 if (block == iinfo->i_next_alloc_block + 1) {
310 iinfo->i_next_alloc_block++;
311 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 err = 0;
315
316 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200317 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (err)
319 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200320 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (new)
323 set_buffer_new(bh_result);
324 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700325
326abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 unlock_kernel();
328 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700331static struct buffer_head *udf_getblk(struct inode *inode, long block,
332 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700334 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct buffer_head dummy;
336
337 dummy.b_state = 0;
338 dummy.b_blocknr = -1000;
339 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700340 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700342 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 lock_buffer(bh);
344 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
345 set_buffer_uptodate(bh);
346 unlock_buffer(bh);
347 mark_buffer_dirty_inode(bh, inode);
348 }
349 return bh;
350 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return NULL;
353}
354
Jan Kara31170b62007-05-08 00:35:21 -0700355/* Extend the file by 'blocks' blocks, return the number of extents added */
356int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200357 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700358{
359 sector_t add;
360 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
361 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200362 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700363 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800364 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700365
366 /* The previous extent is fake and we should not extend by anything
367 * - there's nothing to do... */
368 if (!blocks && fake)
369 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700370
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800371 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700372 /* Round the last extent up to a multiple of block size */
373 if (last_ext->extLength & (sb->s_blocksize - 1)) {
374 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700375 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
376 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
377 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800378 iinfo->i_lenExtents =
379 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700380 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700381 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382
Jan Kara31170b62007-05-08 00:35:21 -0700383 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800384 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
385 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700386 /* Save the extent so that we can reattach it to the end */
387 prealloc_loc = last_ext->extLocation;
388 prealloc_len = last_ext->extLength;
389 /* Mark the extent as a hole */
390 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700391 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700392 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800393 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700394 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700395
Jan Kara31170b62007-05-08 00:35:21 -0700396 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800397 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
398 EXT_NOT_RECORDED_NOT_ALLOCATED) {
399 add = ((1 << 30) - sb->s_blocksize -
400 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
401 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700402 if (add > blocks)
403 add = blocks;
404 blocks -= add;
405 last_ext->extLength += add << sb->s_blocksize_bits;
406 }
407
408 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200409 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700410 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700411 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800412 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200413 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800414 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700415
Jan Kara31170b62007-05-08 00:35:21 -0700416 /* Managed to do everything necessary? */
417 if (!blocks)
418 goto out;
419
420 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
421 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800422 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700423 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800424 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
425 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700426
Jan Kara31170b62007-05-08 00:35:21 -0700427 /* Create enough extents to cover the whole hole */
428 while (blocks > add) {
429 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200430 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700431 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700432 return -1;
433 count++;
434 }
435 if (blocks) {
436 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700437 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200438 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700439 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700440 return -1;
441 count++;
442 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700443
444out:
Jan Kara31170b62007-05-08 00:35:21 -0700445 /* Do we have some preallocated blocks saved? */
446 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200447 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800448 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700449 return -1;
450 last_ext->extLocation = prealloc_loc;
451 last_ext->extLength = prealloc_len;
452 count++;
453 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700454
Jan Kara31170b62007-05-08 00:35:21 -0700455 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800456 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200457 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800458 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200459 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700460 else
461 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700462
Jan Kara31170b62007-05-08 00:35:21 -0700463 return count;
464}
465
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700466static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800467 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Jan Kara31170b62007-05-08 00:35:21 -0700469 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700470 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200471 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700472 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700474 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200475 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700477 loff_t lbcount = 0, b_off = 0;
478 uint32_t newblocknum, newblock;
479 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800481 struct udf_inode_info *iinfo = UDF_I(inode);
482 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700483 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Jan Karaff116fc2007-05-08 00:35:14 -0700485 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800486 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700487 prev_epos.bh = NULL;
488 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700489 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 alternate between laarr[0] and laarr[1] for locations of the
493 current extent, and the previous extent */
494 do {
495 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700496 brelse(prev_epos.bh);
497 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700498 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700500 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700501 brelse(cur_epos.bh);
502 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700503 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
506 lbcount += elen;
507
Jan Karaff116fc2007-05-08 00:35:14 -0700508 prev_epos.block = cur_epos.block;
509 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Jan Karaff116fc2007-05-08 00:35:14 -0700511 prev_epos.offset = cur_epos.offset;
512 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Marcin Slusarz4b111112008-02-08 04:20:36 -0800514 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
515 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517
518 c = !c;
519
520 laarr[c].extLength = (etype << 30) | elen;
521 laarr[c].extLocation = eloc;
522
523 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
524 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700525 ((elen + inode->i_sb->s_blocksize - 1) >>
526 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700528 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } while (lbcount + elen <= b_off);
530
531 b_off -= lbcount;
532 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700533 /*
534 * Move prev_epos and cur_epos into indirect extent if we are at
535 * the pointer to it
536 */
537 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
538 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700543 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
544 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700546 ((elen + inode->i_sb->s_blocksize - 1) &
547 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200548 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700550 brelse(prev_epos.bh);
551 brelse(cur_epos.bh);
552 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200553 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 *phys = newblock;
555 return NULL;
556 }
557
Jan Kara31170b62007-05-08 00:35:21 -0700558 last_block = block;
559 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700560 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700561 int ret;
562
563 if (count) {
564 if (c)
565 laarr[0] = laarr[1];
566 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700567 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700568 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800569 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200570 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700571 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800572 /* Will udf_extend_file() create real extent from
573 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700574 startnum = (offset > 0);
575 }
576 /* Create extents for the hole between EOF and offset */
577 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
578 if (ret == -1) {
579 brelse(prev_epos.bh);
580 brelse(cur_epos.bh);
581 brelse(next_epos.bh);
582 /* We don't really know the error here so we just make
583 * something up */
584 *err = -ENOSPC;
585 return NULL;
586 }
587 c = 0;
588 offset = 0;
589 count += ret;
590 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800591 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
592 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700593 /* Is there any real extent? - otherwise we overwrite
594 * the fake one... */
595 if (count)
596 c = !c;
597 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700598 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800599 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200600 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700601 count++;
602 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700603 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700604 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 endnum = startnum = ((count > 2) ? 2 : count);
608
Marcin Slusarz4b111112008-02-08 04:20:36 -0800609 /* if the current extent is in position 0,
610 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700611 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700612 laarr[2] = laarr[0];
613 laarr[0] = laarr[1];
614 laarr[1] = laarr[2];
615 c = 1;
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Marcin Slusarz4b111112008-02-08 04:20:36 -0800618 /* if the current block is located in an extent,
619 read the next extent */
620 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
621 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700622 laarr[c + 1].extLength = (etype << 30) | elen;
623 laarr[c + 1].extLocation = eloc;
624 count++;
625 startnum++;
626 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800627 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 lastblock = 1;
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700632 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800633 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800635 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800636 if (iinfo->i_next_alloc_block == block)
637 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700639 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800640 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800641 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Marcin Slusarz4b111112008-02-08 04:20:36 -0800644 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800645 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800646 goal, err);
647 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700648 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *err = -ENOSPC;
650 return NULL;
651 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800652 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
Marcin Slusarz4b111112008-02-08 04:20:36 -0800655 /* if the extent the requsted block is located in contains multiple
656 * blocks, split the extent into at most three extents. blocks prior
657 * to requested block, requested block, and blocks after requested
658 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
660
661#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200662 /* We preallocate blocks only for regular files. It also makes sense
663 * for directories but there's a problem when to drop the
664 * preallocation. We might use some delayed work for that but I feel
665 * it's overengineering for a filesystem like UDF. */
666 if (S_ISREG(inode->i_mode))
667 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#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,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200701 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700702 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,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200728 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800729 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,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200765 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766 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],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200819 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700820 (*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],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200848 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800849 (*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,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200861 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700862 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++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200869 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
870 struct 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],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200904 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800905 (*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))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200913 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800914 ((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],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200939 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800940 (*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,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200947 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800948 ((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,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200961 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700962 int startnum, int endnum,
963 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200966 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 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);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200985 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 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001078 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
Pekka Enberg97e961f2008-10-15 12:29:03 +02001100 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;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001104 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001105 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 &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001111 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001112 &ident))) {
1113 if (ident == TAG_IDENT_FE ||
1114 ident == TAG_IDENT_EFE) {
1115 memcpy(&iinfo->i_location,
1116 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001117 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001118 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
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001224 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001225 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001226 inode->i_mode = sbi->s_fmode;
1227 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001228 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001229 inode->i_mode = sbi->s_dmode;
1230 else
1231 inode->i_mode = udf_convert_permissions(fe);
1232 inode->i_mode &= ~sbi->s_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001234 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001236 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Marcin Slusarz56774802008-02-10 11:25:31 +01001238 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001239 inode->i_atime = sbi->s_record_time;
1240
Marcin Slusarz56774802008-02-10 11:25:31 +01001241 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1242 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001243 inode->i_mtime = sbi->s_record_time;
1244
Marcin Slusarz56774802008-02-10 11:25:31 +01001245 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001246 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001248 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1249 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1250 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1251 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001252 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001253 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001254 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Marcin Slusarz56774802008-02-10 11:25:31 +01001256 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001257 inode->i_atime = sbi->s_record_time;
1258
Marcin Slusarz56774802008-02-10 11:25:31 +01001259 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1260 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001261 inode->i_mtime = sbi->s_record_time;
1262
Marcin Slusarz56774802008-02-10 11:25:31 +01001263 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001264 iinfo->i_crtime = sbi->s_record_time;
1265
Marcin Slusarz56774802008-02-10 11:25:31 +01001266 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001267 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001269 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1270 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1271 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001272 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001273 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001276 switch (fe->icbTag.fileType) {
1277 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001278 inode->i_op = &udf_dir_inode_operations;
1279 inode->i_fop = &udf_dir_operations;
1280 inode->i_mode |= S_IFDIR;
1281 inc_nlink(inode);
1282 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001283 case ICBTAG_FILE_TYPE_REALTIME:
1284 case ICBTAG_FILE_TYPE_REGULAR:
1285 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001286 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001287 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001288 inode->i_data.a_ops = &udf_adinicb_aops;
1289 else
1290 inode->i_data.a_ops = &udf_aops;
1291 inode->i_op = &udf_file_inode_operations;
1292 inode->i_fop = &udf_file_operations;
1293 inode->i_mode |= S_IFREG;
1294 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001295 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001296 inode->i_mode |= S_IFBLK;
1297 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001298 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001299 inode->i_mode |= S_IFCHR;
1300 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001301 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001302 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1303 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001304 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001305 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1306 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001307 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001308 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001309 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001310 inode->i_mode = S_IFLNK | S_IRWXUGO;
1311 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001312 case ICBTAG_FILE_TYPE_MAIN:
1313 udf_debug("METADATA FILE-----\n");
1314 break;
1315 case ICBTAG_FILE_TYPE_MIRROR:
1316 udf_debug("METADATA MIRROR FILE-----\n");
1317 break;
1318 case ICBTAG_FILE_TYPE_BITMAP:
1319 udf_debug("METADATA BITMAP FILE-----\n");
1320 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001321 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001322 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1323 "file type=%d\n", inode->i_ino,
1324 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001325 make_bad_inode(inode);
1326 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001328 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001329 struct deviceSpec *dsea =
1330 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001331 if (dsea) {
1332 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001333 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1334 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001336 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339}
1340
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001341static int udf_alloc_i_data(struct inode *inode, size_t size)
1342{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001343 struct udf_inode_info *iinfo = UDF_I(inode);
1344 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001345
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001346 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001347 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1348 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001349 return -ENOMEM;
1350 }
1351
1352 return 0;
1353}
1354
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001355static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 mode_t mode;
1358 uint32_t permissions;
1359 uint32_t flags;
1360
1361 permissions = le32_to_cpu(fe->permissions);
1362 flags = le16_to_cpu(fe->icbTag.flags);
1363
Marcin Slusarz4b111112008-02-08 04:20:36 -08001364 mode = ((permissions) & S_IRWXO) |
1365 ((permissions >> 2) & S_IRWXG) |
1366 ((permissions >> 4) & S_IRWXU) |
1367 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1368 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1369 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 return mode;
1372}
1373
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001374int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 int ret;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 lock_kernel();
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001379 ret = udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return ret;
1383}
1384
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001385int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 return udf_update_inode(inode, 1);
1388}
1389
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001390static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 struct buffer_head *bh = NULL;
1393 struct fileEntry *fe;
1394 struct extendedFileEntry *efe;
1395 uint32_t udfperms;
1396 uint16_t icbflags;
1397 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001399 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001400 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001401 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Jan Kara5833ded2010-01-08 16:52:59 +01001403 bh = udf_tgetblk(inode->i_sb,
1404 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001405 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001406 udf_debug("getblk failure\n");
1407 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
Jan Karaaae917c2010-01-08 16:46:29 +01001410 lock_buffer(bh);
1411 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 fe = (struct fileEntry *)bh->b_data;
1413 efe = (struct extendedFileEntry *)bh->b_data;
1414
Jan Karaaae917c2010-01-08 16:46:29 +01001415 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001417 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001419 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001420 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001421 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001422 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001423 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1424 use->descTag.tagLocation =
1425 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001426 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001427 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001429 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001430 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001431 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001432 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Jan Karaaae917c2010-01-08 16:46:29 +01001434 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
Phillip Susi4d6660e2006-03-07 21:55:24 -08001437 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1438 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001439 else
1440 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Phillip Susi4d6660e2006-03-07 21:55:24 -08001442 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1443 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001444 else
1445 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Marcin Slusarz4b111112008-02-08 04:20:36 -08001447 udfperms = ((inode->i_mode & S_IRWXO)) |
1448 ((inode->i_mode & S_IRWXG) << 2) |
1449 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Marcin Slusarz4b111112008-02-08 04:20:36 -08001451 udfperms |= (le32_to_cpu(fe->permissions) &
1452 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1453 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1454 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 fe->permissions = cpu_to_le32(udfperms);
1456
1457 if (S_ISDIR(inode->i_mode))
1458 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1459 else
1460 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1461
1462 fe->informationLength = cpu_to_le64(inode->i_size);
1463
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001464 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001465 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001466 struct deviceSpec *dsea =
1467 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001468 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001470 udf_add_extendedattr(inode,
1471 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001472 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 dsea->attrType = cpu_to_le32(12);
1474 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001475 dsea->attrLength = cpu_to_le32(
1476 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001477 sizeof(struct regid));
1478 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001480 eid = (struct regid *)dsea->impUse;
1481 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 strcpy(eid->ident, UDF_ID_DEVELOPER);
1483 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1484 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1485 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1486 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1487 }
1488
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001489 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001490 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001491 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001493 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001494 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1495 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Marcin Slusarz56774802008-02-10 11:25:31 +01001497 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1498 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1499 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001500 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1502 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1503 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001504 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1505 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1506 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1508 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001509 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001510 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001511 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001512 inode->i_sb->s_blocksize -
1513 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001515 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1517 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001519 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1520 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1521 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1522 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001523
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001524 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1525 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1526 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1527 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001528
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001529 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1530 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1531 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1532 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Marcin Slusarz56774802008-02-10 11:25:31 +01001534 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1535 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1536 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1537 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001539 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1541 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1542 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001543 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1544 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1545 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1547 crclen = sizeof(struct extendedFileEntry);
1548 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001549 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 fe->icbTag.strategyType = cpu_to_le16(4096);
1551 fe->icbTag.strategyParameter = cpu_to_le16(1);
1552 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001553 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 fe->icbTag.strategyType = cpu_to_le16(4);
1555 fe->icbTag.numEntries = cpu_to_le16(1);
1556 }
1557
1558 if (S_ISDIR(inode->i_mode))
1559 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1560 else if (S_ISREG(inode->i_mode))
1561 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1562 else if (S_ISLNK(inode->i_mode))
1563 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1564 else if (S_ISBLK(inode->i_mode))
1565 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1566 else if (S_ISCHR(inode->i_mode))
1567 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1568 else if (S_ISFIFO(inode->i_mode))
1569 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1570 else if (S_ISSOCK(inode->i_mode))
1571 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1572
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001573 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001574 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1575 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1576 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1577 (le16_to_cpu(fe->icbTag.flags) &
1578 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1579 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001582 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 fe->descTag.descVersion = cpu_to_le16(3);
1584 else
1585 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001586 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001587 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001588 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001589 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001591 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001592 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001593 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Jan Karaaae917c2010-01-08 16:46:29 +01001595out:
Jan Kara5833ded2010-01-08 16:52:59 +01001596 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001597 unlock_buffer(bh);
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 /* write the data blocks */
1600 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001601 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001603 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001604 printk(KERN_WARNING "IO error syncing udf inode "
1605 "[%s:%08lx]\n", inode->i_sb->s_id,
1606 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 err = -EIO;
1608 }
1609 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001610 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return err;
1613}
1614
Pekka Enberg97e961f2008-10-15 12:29:03 +02001615struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1618 struct inode *inode = iget_locked(sb, block);
1619
1620 if (!inode)
1621 return NULL;
1622
1623 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001624 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 __udf_read_inode(inode);
1626 unlock_new_inode(inode);
1627 }
1628
1629 if (is_bad_inode(inode))
1630 goto out_iput;
1631
Pekka Enberg97e961f2008-10-15 12:29:03 +02001632 if (ino->logicalBlockNum >= UDF_SB(sb)->
1633 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001635 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 make_bad_inode(inode);
1637 goto out_iput;
1638 }
1639
1640 return inode;
1641
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001642 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 iput(inode);
1644 return NULL;
1645}
1646
Marcin Slusarz4b111112008-02-08 04:20:36 -08001647int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001648 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001651 struct short_ad *sad = NULL;
1652 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct allocExtDesc *aed;
1654 int8_t etype;
1655 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001656 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Jan Karaff116fc2007-05-08 00:35:14 -07001658 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001659 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001660 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001661 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 else
Jan Karaff116fc2007-05-08 00:35:14 -07001663 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001665 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001666 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001667 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001668 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 else
1670 return -1;
1671
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001672 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001673 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct buffer_head *nbh;
1675 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001676 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Marcin Slusarz4b111112008-02-08 04:20:36 -08001678 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1679 obloc.partitionReferenceNum,
1680 obloc.logicalBlockNum, &err);
1681 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001683 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001684 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001685 0));
1686 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 lock_buffer(nbh);
1689 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1690 set_buffer_uptodate(nbh);
1691 unlock_buffer(nbh);
1692 mark_buffer_dirty_inode(nbh, inode);
1693
1694 aed = (struct allocExtDesc *)(nbh->b_data);
1695 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001696 aed->previousAllocExtLocation =
1697 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001698 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001699 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 aed->lengthAllocDescs = cpu_to_le32(adsize);
1701 sptr = ptr - adsize;
1702 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1703 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001704 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001705 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001706 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 aed->lengthAllocDescs = cpu_to_le32(0);
1708 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001709 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001711 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001712 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001713 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001714 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001715 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 mark_inode_dirty(inode);
1717 }
1718 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001719 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001721 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 else
1723 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001724 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001725 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001726 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001727 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001728 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1729 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001730 sad->extPosition =
1731 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001732 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001733 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001734 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001735 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1736 inode->i_sb->s_blocksize);
1737 lad->extLocation = cpu_to_lelb(epos->block);
1738 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1739 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001741 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001742 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001743 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001744 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001746 udf_update_tag(epos->bh->b_data,
1747 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001748 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001749 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001750 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001752 }
Jan Karaff116fc2007-05-08 00:35:14 -07001753 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
Jan Karaff116fc2007-05-08 00:35:14 -07001756 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001758 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001759 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001761 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001762 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001763 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001764 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1765 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1766 udf_update_tag(epos->bh->b_data,
1767 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001769 udf_update_tag(epos->bh->b_data,
1770 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001771 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
1774 return etype;
1775}
1776
Marcin Slusarz4b111112008-02-08 04:20:36 -08001777int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001778 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 int adsize;
1781 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001782 struct short_ad *sad;
1783 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001784 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Jan Karaff116fc2007-05-08 00:35:14 -07001786 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001787 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001788 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001789 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 else
Jan Karaff116fc2007-05-08 00:35:14 -07001791 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001793 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001794 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001795 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001796 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001797 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001798 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001799 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001800 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001801 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001802 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001803 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001804 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001805 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001806 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001807 default:
1808 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001811 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001812 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001813 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001814 struct allocExtDesc *aed =
1815 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001816 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001817 le32_to_cpu(aed->lengthAllocDescs) +
1818 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
Jan Karaff116fc2007-05-08 00:35:14 -07001820 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001821 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001826 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return (elen >> 30);
1829}
1830
Marcin Slusarz4b111112008-02-08 04:20:36 -08001831int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001832 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 int8_t etype;
1835
Jan Karaff116fc2007-05-08 00:35:14 -07001836 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001837 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001838 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001839 epos->block = *eloc;
1840 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001841 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001842 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001843 epos->bh = udf_tread(inode->i_sb, block);
1844 if (!epos->bh) {
1845 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return -1;
1847 }
1848 }
1849
1850 return etype;
1851}
1852
Marcin Slusarz4b111112008-02-08 04:20:36 -08001853int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001854 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 int alen;
1857 int8_t etype;
1858 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001859 struct short_ad *sad;
1860 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001861 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001862
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001863 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001864 if (!epos->offset)
1865 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001866 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001867 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001868 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001869 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001870 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001871 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001872 if (!epos->offset)
1873 epos->offset = sizeof(struct allocExtDesc);
1874 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001875 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001876 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1877 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001880 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001881 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001882 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1883 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001885 etype = le32_to_cpu(sad->extLength) >> 30;
1886 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001887 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001888 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001889 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1890 break;
1891 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001892 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1893 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001894 return -1;
1895 etype = le32_to_cpu(lad->extLength) >> 30;
1896 *eloc = lelb_to_cpu(lad->extLocation);
1897 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1898 break;
1899 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001900 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001901 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001902 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904
1905 return etype;
1906}
1907
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001908static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001909 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001911 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 uint32_t oelen;
1913 int8_t etype;
1914
Jan Karaff116fc2007-05-08 00:35:14 -07001915 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001916 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001918 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001919 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 neloc = oeloc;
1921 nelen = (etype << 30) | oelen;
1922 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001923 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001924 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return (nelen >> 30);
1927}
1928
Marcin Slusarz4b111112008-02-08 04:20:36 -08001929int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001930 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
Jan Karaff116fc2007-05-08 00:35:14 -07001932 struct extent_position oepos;
1933 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int8_t etype;
1935 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001936 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001938 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001939 get_bh(epos.bh);
1940 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001943 iinfo = UDF_I(inode);
1944 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001945 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001946 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001947 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 else
1949 adsize = 0;
1950
Jan Karaff116fc2007-05-08 00:35:14 -07001951 oepos = epos;
1952 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return -1;
1954
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001955 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001956 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001957 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001958 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001959 brelse(oepos.bh);
1960 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001961 oepos.bh = epos.bh;
1962 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001965 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 elen = 0;
1967
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001968 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001969 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1970 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1971 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001972 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001973 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001975 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001976 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001977 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001978 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001979 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001980 udf_update_tag(oepos.bh->b_data,
1981 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001983 udf_update_tag(oepos.bh->b_data,
1984 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001985 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001987 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001988 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001989 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001990 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001992 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001993 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001994 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001995 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001996 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001997 udf_update_tag(oepos.bh->b_data,
1998 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002000 udf_update_tag(oepos.bh->b_data,
2001 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002002 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002005
Jan Kara3bf25cb2007-05-08 00:35:16 -07002006 brelse(epos.bh);
2007 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return (elen >> 30);
2010}
2011
Marcin Slusarz4b111112008-02-08 04:20:36 -08002012int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002013 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002014 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002017 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002018 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002020 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002022 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002023 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002024 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002025 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002028 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002029 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2030 if (etype == -1) {
2031 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002032 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return -1;
2034 }
2035 lbcount += *elen;
2036 } while (lbcount <= bcount);
2037
Marcin Slusarz4b111112008-02-08 04:20:36 -08002038 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 return etype;
2041}
2042
Jan Kara60448b12007-05-08 00:35:13 -07002043long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002045 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002046 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002047 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002048 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 int ret;
2050
2051 lock_kernel();
2052
Marcin Slusarz4b111112008-02-08 04:20:36 -08002053 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2054 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002055 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 else
2057 ret = 0;
2058
2059 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07002060 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2063 return udf_fixed_to_variable(ret);
2064 else
2065 return ret;
2066}