blob: fa3c1541151c114e856f32b2e1e187d689b3efb8 [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 *);
Jan Kara49521de2010-10-20 17:42:44 +020054static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070055static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070056static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080057 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070058static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020059 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020061 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020063 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020065 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020067 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070068 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
70
Christoph Hellwigb1e32122008-02-22 12:38:48 +010071
Al Viro3aac2b62010-06-07 00:43:39 -040072void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Jan Kara2c948b32009-12-03 13:39:28 +010074 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040075 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010076
Al Viro3aac2b62010-06-07 00:43:39 -040077 truncate_inode_pages(&inode->i_data, 0);
78
79 if (!inode->i_nlink && !is_bad_inode(inode)) {
80 want_delete = 1;
81 inode->i_size = 0;
82 udf_truncate(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040083 udf_update_inode(inode, IS_SYNC(inode));
Al Viro3aac2b62010-06-07 00:43:39 -040084 }
85 invalidate_inode_buffers(inode);
86 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010087 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
88 inode->i_size != iinfo->i_lenExtents) {
89 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
Daniel Mack1537a362010-01-29 15:57:49 +080090 "inode size %llu different from extent length %llu. "
Jan Kara2c948b32009-12-03 13:39:28 +010091 "Filesystem need not be standards compliant.\n",
92 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
93 (unsigned long long)inode->i_size,
94 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080096 kfree(iinfo->i_ext.i_data);
97 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040098 if (want_delete) {
99 lock_kernel();
100 udf_free_inode(inode);
101 unlock_kernel();
102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105static int udf_writepage(struct page *page, struct writeback_control *wbc)
106{
107 return block_write_full_page(page, udf_get_block, wbc);
108}
109
110static int udf_readpage(struct file *file, struct page *page)
111{
112 return block_read_full_page(page, udf_get_block);
113}
114
Nick Pigginbe021ee2007-10-16 01:25:20 -0700115static int udf_write_begin(struct file *file, struct address_space *mapping,
116 loff_t pos, unsigned len, unsigned flags,
117 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200119 int ret;
120
121 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
122 if (unlikely(ret)) {
123 loff_t isize = mapping->host->i_size;
124 if (pos + len > isize)
125 vmtruncate(mapping->host, isize);
126 }
127
128 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131static sector_t udf_bmap(struct address_space *mapping, sector_t block)
132{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700133 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700136const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700137 .readpage = udf_readpage,
138 .writepage = udf_writepage,
139 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700140 .write_begin = udf_write_begin,
141 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700142 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700145void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct page *page;
148 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800149 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct writeback_control udf_wbc = {
151 .sync_mode = WB_SYNC_NONE,
152 .nr_to_write = 1,
153 };
154
155 /* from now on we have normal address_space methods */
156 inode->i_data.a_ops = &udf_aops;
157
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800158 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800160 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800162 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 mark_inode_dirty(inode);
164 return;
165 }
166
167 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700168 BUG_ON(!PageLocked(page));
169
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700170 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800172 memset(kaddr + iinfo->i_lenAlloc, 0x00,
173 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
174 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
175 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 flush_dcache_page(page);
177 SetPageUptodate(page);
178 kunmap(page);
179 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800180 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
181 iinfo->i_lenAlloc);
182 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800184 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800186 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 inode->i_data.a_ops->writepage(page, &udf_wbc);
189 page_cache_release(page);
190
191 mark_inode_dirty(inode);
192}
193
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700194struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
195 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700198 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200199 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700201 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800204 loff_t f_pos = udf_ext0_offset(inode);
205 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800207 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
210 alloctype = ICBTAG_FLAG_AD_SHORT;
211 else
212 alloctype = ICBTAG_FLAG_AD_LONG;
213
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700214 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800215 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 mark_inode_dirty(inode);
217 return NULL;
218 }
219
220 /* alloc block, and copy data to it */
221 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800222 iinfo->i_location.partitionReferenceNum,
223 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (!(*block))
225 return NULL;
226 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800227 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800228 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!newblock)
230 return NULL;
231 dbh = udf_tgetblk(inode->i_sb, newblock);
232 if (!dbh)
233 return NULL;
234 lock_buffer(dbh);
235 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
236 set_buffer_uptodate(dbh);
237 unlock_buffer(dbh);
238 mark_buffer_dirty_inode(dbh, inode);
239
Marcin Slusarz4b111112008-02-08 04:20:36 -0800240 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800241 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700242 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 dfibh.soffset = dfibh.eoffset = 0;
244 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800245 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800246 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800247 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
248 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700249 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700250 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return NULL;
252 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800253 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 sfi->descTag.tagLocation = cpu_to_le32(*block);
255 dfibh.soffset = dfibh.eoffset;
256 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
257 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
258 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800259 sfi->fileIdent +
260 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800261 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700262 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return NULL;
264 }
265 }
266 mark_buffer_dirty_inode(dbh, inode);
267
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800268 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
269 iinfo->i_lenAlloc);
270 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800272 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800273 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100274 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700275 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800276 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700277 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100278 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* UniqueID stuff */
280
Jan Kara3bf25cb2007-05-08 00:35:16 -0700281 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 mark_inode_dirty(inode);
283 return dbh;
284}
285
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700286static int udf_get_block(struct inode *inode, sector_t block,
287 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 int err, new;
290 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800291 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800292 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700294 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 phys = udf_block_map(inode, block);
296 if (phys)
297 map_bh(bh_result, inode->i_sb, phys);
298 return 0;
299 }
300
301 err = -EIO;
302 new = 0;
303 bh = NULL;
304
305 lock_kernel();
306
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800307 iinfo = UDF_I(inode);
308 if (block == iinfo->i_next_alloc_block + 1) {
309 iinfo->i_next_alloc_block++;
310 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
313 err = 0;
314
315 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200316 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (err)
318 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200319 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 if (new)
322 set_buffer_new(bh_result);
323 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700324
325abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 unlock_kernel();
327 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700330static struct buffer_head *udf_getblk(struct inode *inode, long block,
331 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700333 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct buffer_head dummy;
335
336 dummy.b_state = 0;
337 dummy.b_blocknr = -1000;
338 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700339 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700341 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 lock_buffer(bh);
343 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
344 set_buffer_uptodate(bh);
345 unlock_buffer(bh);
346 mark_buffer_dirty_inode(bh, inode);
347 }
348 return bh;
349 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return NULL;
352}
353
Jan Kara31170b62007-05-08 00:35:21 -0700354/* Extend the file by 'blocks' blocks, return the number of extents added */
355int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200356 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700357{
358 sector_t add;
359 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
360 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200361 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700362 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800363 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700364
365 /* The previous extent is fake and we should not extend by anything
366 * - there's nothing to do... */
367 if (!blocks && fake)
368 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700369
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800370 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700371 /* Round the last extent up to a multiple of block size */
372 if (last_ext->extLength & (sb->s_blocksize - 1)) {
373 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700374 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
375 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
376 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800377 iinfo->i_lenExtents =
378 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700379 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700380 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700381
Jan Kara31170b62007-05-08 00:35:21 -0700382 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800383 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
384 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700385 /* Save the extent so that we can reattach it to the end */
386 prealloc_loc = last_ext->extLocation;
387 prealloc_len = last_ext->extLength;
388 /* Mark the extent as a hole */
389 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700390 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700391 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800392 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700393 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700394
Jan Kara31170b62007-05-08 00:35:21 -0700395 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800396 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
397 EXT_NOT_RECORDED_NOT_ALLOCATED) {
398 add = ((1 << 30) - sb->s_blocksize -
399 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
400 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700401 if (add > blocks)
402 add = blocks;
403 blocks -= add;
404 last_ext->extLength += add << sb->s_blocksize_bits;
405 }
406
407 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200408 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700409 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700410 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800411 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200412 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800413 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700414
Jan Kara31170b62007-05-08 00:35:21 -0700415 /* Managed to do everything necessary? */
416 if (!blocks)
417 goto out;
418
419 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
420 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800421 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700422 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800423 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
424 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700425
Jan Kara31170b62007-05-08 00:35:21 -0700426 /* Create enough extents to cover the whole hole */
427 while (blocks > add) {
428 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200429 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700430 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700431 return -1;
432 count++;
433 }
434 if (blocks) {
435 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700436 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200437 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700438 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700439 return -1;
440 count++;
441 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700442
443out:
Jan Kara31170b62007-05-08 00:35:21 -0700444 /* Do we have some preallocated blocks saved? */
445 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200446 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800447 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700448 return -1;
449 last_ext->extLocation = prealloc_loc;
450 last_ext->extLength = prealloc_len;
451 count++;
452 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700453
Jan Kara31170b62007-05-08 00:35:21 -0700454 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800455 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200456 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800457 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200458 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700459 else
460 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700461
Jan Kara31170b62007-05-08 00:35:21 -0700462 return count;
463}
464
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700465static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800466 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Jan Kara31170b62007-05-08 00:35:21 -0700468 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700469 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200470 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700471 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700473 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200474 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700476 loff_t lbcount = 0, b_off = 0;
477 uint32_t newblocknum, newblock;
478 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800480 struct udf_inode_info *iinfo = UDF_I(inode);
481 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700482 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Jan Karaff116fc2007-05-08 00:35:14 -0700484 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800485 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700486 prev_epos.bh = NULL;
487 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700488 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700491 alternate between laarr[0] and laarr[1] for locations of the
492 current extent, and the previous extent */
493 do {
494 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700495 brelse(prev_epos.bh);
496 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700497 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700499 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700500 brelse(cur_epos.bh);
501 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700502 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
505 lbcount += elen;
506
Jan Karaff116fc2007-05-08 00:35:14 -0700507 prev_epos.block = cur_epos.block;
508 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jan Karaff116fc2007-05-08 00:35:14 -0700510 prev_epos.offset = cur_epos.offset;
511 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Marcin Slusarz4b111112008-02-08 04:20:36 -0800513 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
514 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 break;
516
517 c = !c;
518
519 laarr[c].extLength = (etype << 30) | elen;
520 laarr[c].extLocation = eloc;
521
522 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
523 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700524 ((elen + inode->i_sb->s_blocksize - 1) >>
525 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700527 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } while (lbcount + elen <= b_off);
529
530 b_off -= lbcount;
531 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700532 /*
533 * Move prev_epos and cur_epos into indirect extent if we are at
534 * the pointer to it
535 */
536 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
537 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700540 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700542 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
543 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700545 ((elen + inode->i_sb->s_blocksize - 1) &
546 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200547 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700549 brelse(prev_epos.bh);
550 brelse(cur_epos.bh);
551 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200552 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *phys = newblock;
554 return NULL;
555 }
556
Jan Kara31170b62007-05-08 00:35:21 -0700557 last_block = block;
558 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700559 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700560 int ret;
561
562 if (count) {
563 if (c)
564 laarr[0] = laarr[1];
565 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700566 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700567 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800568 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200569 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700570 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800571 /* Will udf_extend_file() create real extent from
572 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700573 startnum = (offset > 0);
574 }
575 /* Create extents for the hole between EOF and offset */
576 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
577 if (ret == -1) {
578 brelse(prev_epos.bh);
579 brelse(cur_epos.bh);
580 brelse(next_epos.bh);
581 /* We don't really know the error here so we just make
582 * something up */
583 *err = -ENOSPC;
584 return NULL;
585 }
586 c = 0;
587 offset = 0;
588 count += ret;
589 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800590 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
591 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700592 /* Is there any real extent? - otherwise we overwrite
593 * the fake one... */
594 if (count)
595 c = !c;
596 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700597 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800598 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200599 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700600 count++;
601 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700602 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700603 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700605 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 endnum = startnum = ((count > 2) ? 2 : count);
607
Marcin Slusarz4b111112008-02-08 04:20:36 -0800608 /* if the current extent is in position 0,
609 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700610 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700611 laarr[2] = laarr[0];
612 laarr[0] = laarr[1];
613 laarr[1] = laarr[2];
614 c = 1;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Marcin Slusarz4b111112008-02-08 04:20:36 -0800617 /* if the current block is located in an extent,
618 read the next extent */
619 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
620 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700621 laarr[c + 1].extLength = (etype << 30) | elen;
622 laarr[c + 1].extLocation = eloc;
623 count++;
624 startnum++;
625 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800626 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 lastblock = 1;
628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700631 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800632 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800634 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800635 if (iinfo->i_next_alloc_block == block)
636 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800639 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800640 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Marcin Slusarz4b111112008-02-08 04:20:36 -0800643 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800644 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800645 goal, err);
646 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700647 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *err = -ENOSPC;
649 return NULL;
650 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800651 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
Marcin Slusarz4b111112008-02-08 04:20:36 -0800654 /* if the extent the requsted block is located in contains multiple
655 * blocks, split the extent into at most three extents. blocks prior
656 * to requested block, requested block, and blocks after requested
657 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
659
660#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200661 /* We preallocate blocks only for regular files. It also makes sense
662 * for directories but there's a problem when to drop the
663 * preallocation. We might use some delayed work for that but I feel
664 * it's overengineering for a filesystem like UDF. */
665 if (S_ISREG(inode->i_mode))
666 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
668
669 /* merge any continuous blocks in laarr */
670 udf_merge_extents(inode, laarr, &endnum);
671
672 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700673 * of extents is greater than the old number, and deleting extents if
674 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700675 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jan Kara3bf25cb2007-05-08 00:35:16 -0700677 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Marcin Slusarz4b111112008-02-08 04:20:36 -0800679 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800680 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800681 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 *phys = newblock;
684 *err = 0;
685 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800686 iinfo->i_next_alloc_block = block;
687 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 inode->i_ctime = current_fs_time(inode->i_sb);
689
690 if (IS_SYNC(inode))
691 udf_sync_inode(inode);
692 else
693 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return result;
696}
697
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700698static void udf_split_extents(struct inode *inode, int *c, int offset,
699 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200700 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700701 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800703 unsigned long blocksize = inode->i_sb->s_blocksize;
704 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800707 (laarr[*c].extLength >> 30) ==
708 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int curr = *c;
710 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800711 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int8_t etype = (laarr[curr].extLength >> 30);
713
Marcin Slusarz4b111112008-02-08 04:20:36 -0800714 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700715 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800716 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700717 laarr[curr + 2] = laarr[curr + 1];
718 laarr[curr + 1] = laarr[curr];
719 } else {
720 laarr[curr + 3] = laarr[curr + 1];
721 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700724 if (offset) {
725 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800726 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200727 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800728 0, offset);
729 laarr[curr].extLength =
730 EXT_NOT_RECORDED_NOT_ALLOCATED |
731 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800733 laarr[curr].extLocation.
734 partitionReferenceNum = 0;
735 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800737 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700738 curr++;
739 (*c)++;
740 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 laarr[curr].extLocation.logicalBlockNum = newblocknum;
744 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
745 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800746 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800748 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700749 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700751 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800753 laarr[curr].extLocation.logicalBlockNum +=
754 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700755 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800756 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700757 curr++;
758 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 }
761}
762
763static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200764 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 int start, length = 0, currlength = 0, i;
768
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700769 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!lastblock)
771 return;
772 else
773 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700774 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800775 if ((laarr[c + 1].extLength >> 30) ==
776 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700777 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800778 length = currlength =
779 (((laarr[c + 1].extLength &
780 UDF_EXTENT_LENGTH_MASK) +
781 inode->i_sb->s_blocksize - 1) >>
782 inode->i_sb->s_blocksize_bits);
783 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 start = c;
785 }
786
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700787 for (i = start + 1; i <= *endnum; i++) {
788 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (lastblock)
790 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800791 } else if ((laarr[i].extLength >> 30) ==
792 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
793 length += (((laarr[i].extLength &
794 UDF_EXTENT_LENGTH_MASK) +
795 inode->i_sb->s_blocksize - 1) >>
796 inode->i_sb->s_blocksize_bits);
797 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
799 }
800
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700801 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700803 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800804 inode->i_sb->s_blocksize - 1) >>
805 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800807 laarr[start].extLocation.partitionReferenceNum,
808 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
809 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
810 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700811 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800812 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800814 (numalloc <<
815 inode->i_sb->s_blocksize_bits);
816 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700817 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200818 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700819 (*endnum)++;
820 laarr[c + 1].extLocation.logicalBlockNum = next;
821 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800822 laarr[c].extLocation.
823 partitionReferenceNum;
824 laarr[c + 1].extLength =
825 EXT_NOT_RECORDED_ALLOCATED |
826 (numalloc <<
827 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700831 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800832 int elen = ((laarr[i].extLength &
833 UDF_EXTENT_LENGTH_MASK) +
834 inode->i_sb->s_blocksize - 1) >>
835 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700837 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800839 (numalloc <<
840 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700842 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700844 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800845 memmove(&laarr[i],
846 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200847 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800848 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700849 i--;
850 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800853 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800854 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856 }
857}
858
859static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200860 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800864 unsigned long blocksize = inode->i_sb->s_blocksize;
865 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700867 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200868 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
869 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Marcin Slusarz4b111112008-02-08 04:20:36 -0800871 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
872 (((li->extLength >> 30) ==
873 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
874 ((lip1->extLocation.logicalBlockNum -
875 li->extLocation.logicalBlockNum) ==
876 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
877 blocksize - 1) >> blocksize_bits)))) {
878
879 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
880 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
881 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
882 lip1->extLength = (lip1->extLength -
883 (li->extLength &
884 UDF_EXTENT_LENGTH_MASK) +
885 UDF_EXTENT_LENGTH_MASK) &
886 ~(blocksize - 1);
887 li->extLength = (li->extLength &
888 UDF_EXTENT_FLAG_MASK) +
889 (UDF_EXTENT_LENGTH_MASK + 1) -
890 blocksize;
891 lip1->extLocation.logicalBlockNum =
892 li->extLocation.logicalBlockNum +
893 ((li->extLength &
894 UDF_EXTENT_LENGTH_MASK) >>
895 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700896 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800897 li->extLength = lip1->extLength +
898 (((li->extLength &
899 UDF_EXTENT_LENGTH_MASK) +
900 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700901 if (*endnum > (i + 2))
902 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200903 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800904 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700905 i--;
906 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800908 } else if (((li->extLength >> 30) ==
909 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
910 ((lip1->extLength >> 30) ==
911 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200912 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800913 ((li->extLength &
914 UDF_EXTENT_LENGTH_MASK) +
915 blocksize - 1) >> blocksize_bits);
916 li->extLocation.logicalBlockNum = 0;
917 li->extLocation.partitionReferenceNum = 0;
918
919 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
920 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
921 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
922 lip1->extLength = (lip1->extLength -
923 (li->extLength &
924 UDF_EXTENT_LENGTH_MASK) +
925 UDF_EXTENT_LENGTH_MASK) &
926 ~(blocksize - 1);
927 li->extLength = (li->extLength &
928 UDF_EXTENT_FLAG_MASK) +
929 (UDF_EXTENT_LENGTH_MASK + 1) -
930 blocksize;
931 } else {
932 li->extLength = lip1->extLength +
933 (((li->extLength &
934 UDF_EXTENT_LENGTH_MASK) +
935 blocksize - 1) & ~(blocksize - 1));
936 if (*endnum > (i + 2))
937 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200938 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800939 (*endnum - (i + 2)));
940 i--;
941 (*endnum)--;
942 }
943 } else if ((li->extLength >> 30) ==
944 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
945 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200946 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800947 ((li->extLength &
948 UDF_EXTENT_LENGTH_MASK) +
949 blocksize - 1) >> blocksize_bits);
950 li->extLocation.logicalBlockNum = 0;
951 li->extLocation.partitionReferenceNum = 0;
952 li->extLength = (li->extLength &
953 UDF_EXTENT_LENGTH_MASK) |
954 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 }
957}
958
959static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200960 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700961 int startnum, int endnum,
962 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200965 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 uint32_t tmplen;
967
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700968 if (startnum > endnum) {
969 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700970 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700971 laarr[i].extLength);
972 } else if (startnum < endnum) {
973 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700974 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700975 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700976 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700977 &laarr[i].extLength, 1);
978 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 }
981
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700983 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200984 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700985 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987}
988
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700989struct buffer_head *udf_bread(struct inode *inode, int block,
990 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700992 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 bh = udf_getblk(inode, block, create, err);
995 if (!bh)
996 return NULL;
997
998 if (buffer_uptodate(bh))
999 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 wait_on_buffer(bh);
1004 if (buffer_uptodate(bh))
1005 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 brelse(bh);
1008 *err = -EIO;
1009 return NULL;
1010}
1011
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001012void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
1014 int offset;
1015 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001016 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001019 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return;
1021 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1022 return;
1023
1024 lock_kernel();
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001025 iinfo = UDF_I(inode);
1026 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001027 if (inode->i_sb->s_blocksize <
1028 (udf_file_entry_alloc_offset(inode) +
1029 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001031 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1032 inode->i_size = iinfo->i_lenAlloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 unlock_kernel();
1034 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001035 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001037 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001039 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001040 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001041 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001042 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001044 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001045 block_truncate_page(inode->i_mapping, inode->i_size,
1046 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 udf_truncate_extents(inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1051 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001052 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 else
1054 mark_inode_dirty(inode);
1055 unlock_kernel();
1056}
1057
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001058static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct buffer_head *bh = NULL;
1061 struct fileEntry *fe;
1062 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001063 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /*
1066 * Set defaults, but the inode is still incomplete!
1067 * Note: get_new_inode() sets the following on a new inode:
1068 * i_sb = sb
1069 * i_no = ino
1070 * i_flags = sb->s_flags
1071 * i_state = 0
1072 * clean_inode(): zero fills and sets
1073 * i_count = 1
1074 * i_nlink = 1
1075 * i_op = NULL;
1076 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001077 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001078 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001080 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 make_bad_inode(inode);
1082 return;
1083 }
1084
1085 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001086 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001087 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1088 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001089 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 make_bad_inode(inode);
1091 return;
1092 }
1093
1094 fe = (struct fileEntry *)bh->b_data;
1095
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001096 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001097 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Pekka Enberg97e961f2008-10-15 12:29:03 +02001099 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001100 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001101 if (ident == TAG_IDENT_IE && ibh) {
1102 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001103 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001104 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001105
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001106 ie = (struct indirectEntry *)ibh->b_data;
1107 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001108
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001109 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001110 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001111 &ident))) {
1112 if (ident == TAG_IDENT_FE ||
1113 ident == TAG_IDENT_EFE) {
1114 memcpy(&iinfo->i_location,
1115 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001116 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001117 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001118 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001119 brelse(nbh);
1120 __udf_read_inode(inode);
1121 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001122 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001123 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001125 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001126 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001127 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001129 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001130 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 make_bad_inode(inode);
1132 return;
1133 }
1134 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001135
Jan Kara3bf25cb2007-05-08 00:35:16 -07001136 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1140{
1141 struct fileEntry *fe;
1142 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001144 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001145 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 fe = (struct fileEntry *)bh->b_data;
1148 efe = (struct extendedFileEntry *)bh->b_data;
1149
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001150 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001151 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001152 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001153 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001155 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001156 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001157 iinfo->i_unique = 0;
1158 iinfo->i_lenEAttr = 0;
1159 iinfo->i_lenExtents = 0;
1160 iinfo->i_lenAlloc = 0;
1161 iinfo->i_next_alloc_block = 0;
1162 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001163 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001164 iinfo->i_efe = 1;
1165 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001166 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1167 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001168 make_bad_inode(inode);
1169 return;
1170 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001171 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001172 bh->b_data + sizeof(struct extendedFileEntry),
1173 inode->i_sb->s_blocksize -
1174 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001175 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001176 iinfo->i_efe = 0;
1177 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001178 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1179 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001180 make_bad_inode(inode);
1181 return;
1182 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001183 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001184 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001185 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001186 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001187 iinfo->i_efe = 0;
1188 iinfo->i_use = 1;
1189 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001190 ((struct unallocSpaceEntry *)bh->b_data)->
1191 lengthAllocDescs);
1192 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1193 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001194 make_bad_inode(inode);
1195 return;
1196 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001197 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001198 bh->b_data + sizeof(struct unallocSpaceEntry),
1199 inode->i_sb->s_blocksize -
1200 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return;
1202 }
1203
Jan Karac03cad22010-10-20 22:17:28 +02001204 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 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
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001217 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001218 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001219 inode->i_mode = sbi->s_fmode;
1220 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001221 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001222 inode->i_mode = sbi->s_dmode;
1223 else
1224 inode->i_mode = udf_convert_permissions(fe);
1225 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001226 read_unlock(&sbi->s_cred_lock);
1227
1228 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1229 if (!inode->i_nlink)
1230 inode->i_nlink = 1;
1231
1232 inode->i_size = le64_to_cpu(fe->informationLength);
1233 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001235 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001237 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Marcin Slusarz56774802008-02-10 11:25:31 +01001239 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001240 inode->i_atime = sbi->s_record_time;
1241
Marcin Slusarz56774802008-02-10 11:25:31 +01001242 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1243 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001244 inode->i_mtime = sbi->s_record_time;
1245
Marcin Slusarz56774802008-02-10 11:25:31 +01001246 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001247 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001249 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1250 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1251 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1252 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001253 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001254 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001255 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Marcin Slusarz56774802008-02-10 11:25:31 +01001257 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001258 inode->i_atime = sbi->s_record_time;
1259
Marcin Slusarz56774802008-02-10 11:25:31 +01001260 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1261 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001262 inode->i_mtime = sbi->s_record_time;
1263
Marcin Slusarz56774802008-02-10 11:25:31 +01001264 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001265 iinfo->i_crtime = sbi->s_record_time;
1266
Marcin Slusarz56774802008-02-10 11:25:31 +01001267 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001268 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001270 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1271 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1272 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001273 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001274 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001277 switch (fe->icbTag.fileType) {
1278 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001279 inode->i_op = &udf_dir_inode_operations;
1280 inode->i_fop = &udf_dir_operations;
1281 inode->i_mode |= S_IFDIR;
1282 inc_nlink(inode);
1283 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001284 case ICBTAG_FILE_TYPE_REALTIME:
1285 case ICBTAG_FILE_TYPE_REGULAR:
1286 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001287 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001288 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001289 inode->i_data.a_ops = &udf_adinicb_aops;
1290 else
1291 inode->i_data.a_ops = &udf_aops;
1292 inode->i_op = &udf_file_inode_operations;
1293 inode->i_fop = &udf_file_operations;
1294 inode->i_mode |= S_IFREG;
1295 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001296 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001297 inode->i_mode |= S_IFBLK;
1298 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001299 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001300 inode->i_mode |= S_IFCHR;
1301 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001302 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001303 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1304 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001305 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001306 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1307 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001308 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001309 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001310 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001311 inode->i_mode = S_IFLNK | S_IRWXUGO;
1312 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001313 case ICBTAG_FILE_TYPE_MAIN:
1314 udf_debug("METADATA FILE-----\n");
1315 break;
1316 case ICBTAG_FILE_TYPE_MIRROR:
1317 udf_debug("METADATA MIRROR FILE-----\n");
1318 break;
1319 case ICBTAG_FILE_TYPE_BITMAP:
1320 udf_debug("METADATA BITMAP FILE-----\n");
1321 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001322 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001323 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1324 "file type=%d\n", inode->i_ino,
1325 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001326 make_bad_inode(inode);
1327 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001329 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001330 struct deviceSpec *dsea =
1331 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001332 if (dsea) {
1333 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001334 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1335 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001337 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340}
1341
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001342static int udf_alloc_i_data(struct inode *inode, size_t size)
1343{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001344 struct udf_inode_info *iinfo = UDF_I(inode);
1345 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001346
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001347 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001348 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1349 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001350 return -ENOMEM;
1351 }
1352
1353 return 0;
1354}
1355
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001356static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 mode_t mode;
1359 uint32_t permissions;
1360 uint32_t flags;
1361
1362 permissions = le32_to_cpu(fe->permissions);
1363 flags = le16_to_cpu(fe->icbTag.flags);
1364
Marcin Slusarz4b111112008-02-08 04:20:36 -08001365 mode = ((permissions) & S_IRWXO) |
1366 ((permissions >> 2) & S_IRWXG) |
1367 ((permissions >> 4) & S_IRWXU) |
1368 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1369 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1370 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 return mode;
1373}
1374
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001375int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Jan Kara49521de2010-10-20 17:42:44 +02001377 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Jan Kara49521de2010-10-20 17:42:44 +02001380static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 return udf_update_inode(inode, 1);
1383}
1384
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001385static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct buffer_head *bh = NULL;
1388 struct fileEntry *fe;
1389 struct extendedFileEntry *efe;
1390 uint32_t udfperms;
1391 uint16_t icbflags;
1392 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001394 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001395 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001396 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Jan Kara5833ded2010-01-08 16:52:59 +01001398 bh = udf_tgetblk(inode->i_sb,
1399 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001400 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001401 udf_debug("getblk failure\n");
1402 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Jan Karaaae917c2010-01-08 16:46:29 +01001405 lock_buffer(bh);
1406 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 fe = (struct fileEntry *)bh->b_data;
1408 efe = (struct extendedFileEntry *)bh->b_data;
1409
Jan Karaaae917c2010-01-08 16:46:29 +01001410 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001412 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001414 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001415 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001416 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001417 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001418 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1419 use->descTag.tagLocation =
1420 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001421 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001422 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001424 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001425 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001426 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001427 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Jan Karaaae917c2010-01-08 16:46:29 +01001429 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
Phillip Susi4d6660e2006-03-07 21:55:24 -08001432 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1433 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001434 else
1435 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Phillip Susi4d6660e2006-03-07 21:55:24 -08001437 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1438 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001439 else
1440 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Marcin Slusarz4b111112008-02-08 04:20:36 -08001442 udfperms = ((inode->i_mode & S_IRWXO)) |
1443 ((inode->i_mode & S_IRWXG) << 2) |
1444 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Marcin Slusarz4b111112008-02-08 04:20:36 -08001446 udfperms |= (le32_to_cpu(fe->permissions) &
1447 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1448 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1449 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 fe->permissions = cpu_to_le32(udfperms);
1451
1452 if (S_ISDIR(inode->i_mode))
1453 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1454 else
1455 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1456
1457 fe->informationLength = cpu_to_le64(inode->i_size);
1458
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001459 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001460 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001461 struct deviceSpec *dsea =
1462 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001463 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001465 udf_add_extendedattr(inode,
1466 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001467 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 dsea->attrType = cpu_to_le32(12);
1469 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001470 dsea->attrLength = cpu_to_le32(
1471 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001472 sizeof(struct regid));
1473 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001475 eid = (struct regid *)dsea->impUse;
1476 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 strcpy(eid->ident, UDF_ID_DEVELOPER);
1478 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1479 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1480 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1481 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1482 }
1483
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001484 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001485 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001486 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001487 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001488 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001489 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1490 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Marcin Slusarz56774802008-02-10 11:25:31 +01001492 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1493 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1494 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001495 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1497 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1498 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001499 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1500 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1501 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1503 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001505 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001506 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001507 inode->i_sb->s_blocksize -
1508 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001510 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001511 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1512 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001514 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1515 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1516 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1517 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001518
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001519 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1520 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1521 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1522 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001523
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001524 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1525 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1526 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1527 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Marcin Slusarz56774802008-02-10 11:25:31 +01001529 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1530 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1531 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1532 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001534 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1536 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1537 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001538 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1539 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1540 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1542 crclen = sizeof(struct extendedFileEntry);
1543 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001544 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 fe->icbTag.strategyType = cpu_to_le16(4096);
1546 fe->icbTag.strategyParameter = cpu_to_le16(1);
1547 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001548 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 fe->icbTag.strategyType = cpu_to_le16(4);
1550 fe->icbTag.numEntries = cpu_to_le16(1);
1551 }
1552
1553 if (S_ISDIR(inode->i_mode))
1554 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1555 else if (S_ISREG(inode->i_mode))
1556 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1557 else if (S_ISLNK(inode->i_mode))
1558 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1559 else if (S_ISBLK(inode->i_mode))
1560 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1561 else if (S_ISCHR(inode->i_mode))
1562 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1563 else if (S_ISFIFO(inode->i_mode))
1564 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1565 else if (S_ISSOCK(inode->i_mode))
1566 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1567
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001568 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001569 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1570 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1571 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1572 (le16_to_cpu(fe->icbTag.flags) &
1573 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1574 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001577 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 fe->descTag.descVersion = cpu_to_le16(3);
1579 else
1580 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001581 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001582 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001583 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001584 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001586 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001587 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001588 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Jan Karaaae917c2010-01-08 16:46:29 +01001590out:
Jan Kara5833ded2010-01-08 16:52:59 +01001591 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001592 unlock_buffer(bh);
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* write the data blocks */
1595 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001596 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001598 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001599 printk(KERN_WARNING "IO error syncing udf inode "
1600 "[%s:%08lx]\n", inode->i_sb->s_id,
1601 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 err = -EIO;
1603 }
1604 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001605 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return err;
1608}
1609
Pekka Enberg97e961f2008-10-15 12:29:03 +02001610struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1613 struct inode *inode = iget_locked(sb, block);
1614
1615 if (!inode)
1616 return NULL;
1617
1618 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001619 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 __udf_read_inode(inode);
1621 unlock_new_inode(inode);
1622 }
1623
1624 if (is_bad_inode(inode))
1625 goto out_iput;
1626
Pekka Enberg97e961f2008-10-15 12:29:03 +02001627 if (ino->logicalBlockNum >= UDF_SB(sb)->
1628 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001630 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 make_bad_inode(inode);
1632 goto out_iput;
1633 }
1634
1635 return inode;
1636
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001637 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 iput(inode);
1639 return NULL;
1640}
1641
Marcin Slusarz4b111112008-02-08 04:20:36 -08001642int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001643 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
1645 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001646 struct short_ad *sad = NULL;
1647 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 struct allocExtDesc *aed;
1649 int8_t etype;
1650 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001651 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Jan Karaff116fc2007-05-08 00:35:14 -07001653 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001654 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001655 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001656 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 else
Jan Karaff116fc2007-05-08 00:35:14 -07001658 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001660 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001661 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001662 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001663 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 else
1665 return -1;
1666
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001667 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001668 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 struct buffer_head *nbh;
1670 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001671 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Marcin Slusarz4b111112008-02-08 04:20:36 -08001673 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1674 obloc.partitionReferenceNum,
1675 obloc.logicalBlockNum, &err);
1676 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001678 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001679 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001680 0));
1681 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 lock_buffer(nbh);
1684 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1685 set_buffer_uptodate(nbh);
1686 unlock_buffer(nbh);
1687 mark_buffer_dirty_inode(nbh, inode);
1688
1689 aed = (struct allocExtDesc *)(nbh->b_data);
1690 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001691 aed->previousAllocExtLocation =
1692 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001693 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001694 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 aed->lengthAllocDescs = cpu_to_le32(adsize);
1696 sptr = ptr - adsize;
1697 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1698 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001699 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001700 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001701 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 aed->lengthAllocDescs = cpu_to_le32(0);
1703 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001704 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001706 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001707 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001708 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001709 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001710 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 mark_inode_dirty(inode);
1712 }
1713 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001714 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001716 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 else
1718 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001719 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001720 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001721 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001722 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001723 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1724 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001725 sad->extPosition =
1726 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001727 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001728 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001729 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001730 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1731 inode->i_sb->s_blocksize);
1732 lad->extLocation = cpu_to_lelb(epos->block);
1733 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1734 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001736 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001737 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001738 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001739 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001741 udf_update_tag(epos->bh->b_data,
1742 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001743 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001744 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001745 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001747 }
Jan Karaff116fc2007-05-08 00:35:14 -07001748 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750
Jan Karaff116fc2007-05-08 00:35:14 -07001751 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001753 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001754 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001756 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001757 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001758 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001759 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1760 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1761 udf_update_tag(epos->bh->b_data,
1762 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001764 udf_update_tag(epos->bh->b_data,
1765 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001766 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
1769 return etype;
1770}
1771
Marcin Slusarz4b111112008-02-08 04:20:36 -08001772int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001773 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 int adsize;
1776 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001777 struct short_ad *sad;
1778 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001779 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Jan Karaff116fc2007-05-08 00:35:14 -07001781 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001782 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001783 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001784 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 else
Jan Karaff116fc2007-05-08 00:35:14 -07001786 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001788 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001789 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001790 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001791 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001792 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001793 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001794 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001795 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001796 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001797 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001798 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001799 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001800 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001801 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001802 default:
1803 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001806 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001807 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001808 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001809 struct allocExtDesc *aed =
1810 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001811 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001812 le32_to_cpu(aed->lengthAllocDescs) +
1813 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Jan Karaff116fc2007-05-08 00:35:14 -07001815 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001816 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001821 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return (elen >> 30);
1824}
1825
Marcin Slusarz4b111112008-02-08 04:20:36 -08001826int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001827 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 int8_t etype;
1830
Jan Karaff116fc2007-05-08 00:35:14 -07001831 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001832 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001833 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001834 epos->block = *eloc;
1835 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001836 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001837 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001838 epos->bh = udf_tread(inode->i_sb, block);
1839 if (!epos->bh) {
1840 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return -1;
1842 }
1843 }
1844
1845 return etype;
1846}
1847
Marcin Slusarz4b111112008-02-08 04:20:36 -08001848int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001849 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 int alen;
1852 int8_t etype;
1853 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001854 struct short_ad *sad;
1855 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001856 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001857
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001858 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001859 if (!epos->offset)
1860 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001861 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001862 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001863 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001864 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001865 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001866 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001867 if (!epos->offset)
1868 epos->offset = sizeof(struct allocExtDesc);
1869 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001870 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001871 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1872 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001875 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001876 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001877 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1878 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001880 etype = le32_to_cpu(sad->extLength) >> 30;
1881 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001882 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001883 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001884 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1885 break;
1886 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001887 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1888 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001889 return -1;
1890 etype = le32_to_cpu(lad->extLength) >> 30;
1891 *eloc = lelb_to_cpu(lad->extLocation);
1892 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1893 break;
1894 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001895 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001896 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001897 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
1900 return etype;
1901}
1902
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001903static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001904 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001906 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 uint32_t oelen;
1908 int8_t etype;
1909
Jan Karaff116fc2007-05-08 00:35:14 -07001910 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001911 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001913 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001914 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 neloc = oeloc;
1916 nelen = (etype << 30) | oelen;
1917 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001918 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001919 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return (nelen >> 30);
1922}
1923
Marcin Slusarz4b111112008-02-08 04:20:36 -08001924int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001925 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Jan Karaff116fc2007-05-08 00:35:14 -07001927 struct extent_position oepos;
1928 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 int8_t etype;
1930 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001931 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001933 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001934 get_bh(epos.bh);
1935 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001938 iinfo = UDF_I(inode);
1939 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001940 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001941 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001942 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 else
1944 adsize = 0;
1945
Jan Karaff116fc2007-05-08 00:35:14 -07001946 oepos = epos;
1947 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return -1;
1949
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001951 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001952 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001953 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001954 brelse(oepos.bh);
1955 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001956 oepos.bh = epos.bh;
1957 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001960 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 elen = 0;
1962
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001963 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001964 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1965 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1966 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001967 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001968 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001970 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001971 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001972 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001973 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001974 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001975 udf_update_tag(oepos.bh->b_data,
1976 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001978 udf_update_tag(oepos.bh->b_data,
1979 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001980 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001982 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001983 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001984 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001985 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001987 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001988 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001989 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001990 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001991 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001992 udf_update_tag(oepos.bh->b_data,
1993 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001995 udf_update_tag(oepos.bh->b_data,
1996 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001997 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
1999 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002000
Jan Kara3bf25cb2007-05-08 00:35:16 -07002001 brelse(epos.bh);
2002 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return (elen >> 30);
2005}
2006
Marcin Slusarz4b111112008-02-08 04:20:36 -08002007int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002008 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002009 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002011 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002012 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002013 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002015 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002017 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002018 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002019 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002020 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002023 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002024 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2025 if (etype == -1) {
2026 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002027 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return -1;
2029 }
2030 lbcount += *elen;
2031 } while (lbcount <= bcount);
2032
Marcin Slusarz4b111112008-02-08 04:20:36 -08002033 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 return etype;
2036}
2037
Jan Kara60448b12007-05-08 00:35:13 -07002038long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002040 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002041 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002042 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002043 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 int ret;
2045
2046 lock_kernel();
2047
Marcin Slusarz4b111112008-02-08 04:20:36 -08002048 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2049 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002050 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 else
2052 ret = 0;
2053
2054 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07002055 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2058 return udf_fixed_to_variable(ret);
2059 else
2060 return ret;
2061}