blob: b2fe4d7f20eb90eb9df9833480e586b78e3bfb3c [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;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800304 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100305
306 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800307 if (block == iinfo->i_next_alloc_block + 1) {
308 iinfo->i_next_alloc_block++;
309 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 err = 0;
313
314 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200315 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (err)
317 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200318 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (new)
321 set_buffer_new(bh_result);
322 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700323
324abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100325 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700329static struct buffer_head *udf_getblk(struct inode *inode, long block,
330 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700332 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct buffer_head dummy;
334
335 dummy.b_state = 0;
336 dummy.b_blocknr = -1000;
337 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700338 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700340 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 lock_buffer(bh);
342 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
343 set_buffer_uptodate(bh);
344 unlock_buffer(bh);
345 mark_buffer_dirty_inode(bh, inode);
346 }
347 return bh;
348 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return NULL;
351}
352
Jan Kara31170b62007-05-08 00:35:21 -0700353/* Extend the file by 'blocks' blocks, return the number of extents added */
354int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200355 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700356{
357 sector_t add;
358 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
359 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200360 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700361 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800362 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700363
364 /* The previous extent is fake and we should not extend by anything
365 * - there's nothing to do... */
366 if (!blocks && fake)
367 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700368
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800369 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700370 /* Round the last extent up to a multiple of block size */
371 if (last_ext->extLength & (sb->s_blocksize - 1)) {
372 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700373 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
374 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
375 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800376 iinfo->i_lenExtents =
377 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700378 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700379 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700380
Jan Kara31170b62007-05-08 00:35:21 -0700381 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800382 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
383 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700384 /* Save the extent so that we can reattach it to the end */
385 prealloc_loc = last_ext->extLocation;
386 prealloc_len = last_ext->extLength;
387 /* Mark the extent as a hole */
388 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700389 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700390 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800391 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700392 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700393
Jan Kara31170b62007-05-08 00:35:21 -0700394 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800395 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
396 EXT_NOT_RECORDED_NOT_ALLOCATED) {
397 add = ((1 << 30) - sb->s_blocksize -
398 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
399 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700400 if (add > blocks)
401 add = blocks;
402 blocks -= add;
403 last_ext->extLength += add << sb->s_blocksize_bits;
404 }
405
406 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200407 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700408 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700409 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800410 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200411 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800412 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700413
Jan Kara31170b62007-05-08 00:35:21 -0700414 /* Managed to do everything necessary? */
415 if (!blocks)
416 goto out;
417
418 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
419 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800420 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700421 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800422 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
423 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700424
Jan Kara31170b62007-05-08 00:35:21 -0700425 /* Create enough extents to cover the whole hole */
426 while (blocks > add) {
427 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200428 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700429 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700430 return -1;
431 count++;
432 }
433 if (blocks) {
434 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700435 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200436 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700437 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700438 return -1;
439 count++;
440 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700441
442out:
Jan Kara31170b62007-05-08 00:35:21 -0700443 /* Do we have some preallocated blocks saved? */
444 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200445 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800446 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700447 return -1;
448 last_ext->extLocation = prealloc_loc;
449 last_ext->extLength = prealloc_len;
450 count++;
451 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700452
Jan Kara31170b62007-05-08 00:35:21 -0700453 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800454 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200455 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800456 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200457 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700458 else
459 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700460
Jan Kara31170b62007-05-08 00:35:21 -0700461 return count;
462}
463
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700464static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800465 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Jan Kara31170b62007-05-08 00:35:21 -0700467 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700468 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200469 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700470 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700472 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200473 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700475 loff_t lbcount = 0, b_off = 0;
476 uint32_t newblocknum, newblock;
477 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800479 struct udf_inode_info *iinfo = UDF_I(inode);
480 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700481 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jan Karaff116fc2007-05-08 00:35:14 -0700483 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800484 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700485 prev_epos.bh = NULL;
486 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700487 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700490 alternate between laarr[0] and laarr[1] for locations of the
491 current extent, and the previous extent */
492 do {
493 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700494 brelse(prev_epos.bh);
495 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700496 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700498 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700499 brelse(cur_epos.bh);
500 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700501 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
504 lbcount += elen;
505
Jan Karaff116fc2007-05-08 00:35:14 -0700506 prev_epos.block = cur_epos.block;
507 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jan Karaff116fc2007-05-08 00:35:14 -0700509 prev_epos.offset = cur_epos.offset;
510 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Marcin Slusarz4b111112008-02-08 04:20:36 -0800512 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
513 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515
516 c = !c;
517
518 laarr[c].extLength = (etype << 30) | elen;
519 laarr[c].extLocation = eloc;
520
521 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
522 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700523 ((elen + inode->i_sb->s_blocksize - 1) >>
524 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700526 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } while (lbcount + elen <= b_off);
528
529 b_off -= lbcount;
530 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700531 /*
532 * Move prev_epos and cur_epos into indirect extent if we are at
533 * the pointer to it
534 */
535 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
536 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700539 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
542 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700544 ((elen + inode->i_sb->s_blocksize - 1) &
545 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200546 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700548 brelse(prev_epos.bh);
549 brelse(cur_epos.bh);
550 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200551 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *phys = newblock;
553 return NULL;
554 }
555
Jan Kara31170b62007-05-08 00:35:21 -0700556 last_block = block;
557 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700558 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700559 int ret;
560
561 if (count) {
562 if (c)
563 laarr[0] = laarr[1];
564 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700565 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700566 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800567 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200568 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700569 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800570 /* Will udf_extend_file() create real extent from
571 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700572 startnum = (offset > 0);
573 }
574 /* Create extents for the hole between EOF and offset */
575 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
576 if (ret == -1) {
577 brelse(prev_epos.bh);
578 brelse(cur_epos.bh);
579 brelse(next_epos.bh);
580 /* We don't really know the error here so we just make
581 * something up */
582 *err = -ENOSPC;
583 return NULL;
584 }
585 c = 0;
586 offset = 0;
587 count += ret;
588 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800589 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
590 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700591 /* Is there any real extent? - otherwise we overwrite
592 * the fake one... */
593 if (count)
594 c = !c;
595 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700596 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800597 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200598 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700599 count++;
600 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700601 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700602 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700604 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 endnum = startnum = ((count > 2) ? 2 : count);
606
Marcin Slusarz4b111112008-02-08 04:20:36 -0800607 /* if the current extent is in position 0,
608 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700609 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700610 laarr[2] = laarr[0];
611 laarr[0] = laarr[1];
612 laarr[1] = laarr[2];
613 c = 1;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Marcin Slusarz4b111112008-02-08 04:20:36 -0800616 /* if the current block is located in an extent,
617 read the next extent */
618 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
619 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700620 laarr[c + 1].extLength = (etype << 30) | elen;
621 laarr[c + 1].extLocation = eloc;
622 count++;
623 startnum++;
624 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800625 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 lastblock = 1;
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700630 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800631 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800633 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800634 if (iinfo->i_next_alloc_block == block)
635 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700637 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800638 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800639 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Marcin Slusarz4b111112008-02-08 04:20:36 -0800642 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800643 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800644 goal, err);
645 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700646 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 *err = -ENOSPC;
648 return NULL;
649 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800650 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
Marcin Slusarz4b111112008-02-08 04:20:36 -0800653 /* if the extent the requsted block is located in contains multiple
654 * blocks, split the extent into at most three extents. blocks prior
655 * to requested block, requested block, and blocks after requested
656 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
658
659#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200660 /* We preallocate blocks only for regular files. It also makes sense
661 * for directories but there's a problem when to drop the
662 * preallocation. We might use some delayed work for that but I feel
663 * it's overengineering for a filesystem like UDF. */
664 if (S_ISREG(inode->i_mode))
665 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#endif
667
668 /* merge any continuous blocks in laarr */
669 udf_merge_extents(inode, laarr, &endnum);
670
671 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700672 * of extents is greater than the old number, and deleting extents if
673 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700674 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Jan Kara3bf25cb2007-05-08 00:35:16 -0700676 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Marcin Slusarz4b111112008-02-08 04:20:36 -0800678 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800679 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800680 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *phys = newblock;
683 *err = 0;
684 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800685 iinfo->i_next_alloc_block = block;
686 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 inode->i_ctime = current_fs_time(inode->i_sb);
688
689 if (IS_SYNC(inode))
690 udf_sync_inode(inode);
691 else
692 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return result;
695}
696
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700697static void udf_split_extents(struct inode *inode, int *c, int offset,
698 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200699 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700700 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800702 unsigned long blocksize = inode->i_sb->s_blocksize;
703 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800706 (laarr[*c].extLength >> 30) ==
707 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int curr = *c;
709 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800710 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int8_t etype = (laarr[curr].extLength >> 30);
712
Marcin Slusarz4b111112008-02-08 04:20:36 -0800713 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700714 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800715 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700716 laarr[curr + 2] = laarr[curr + 1];
717 laarr[curr + 1] = laarr[curr];
718 } else {
719 laarr[curr + 3] = laarr[curr + 1];
720 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700723 if (offset) {
724 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800725 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200726 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800727 0, offset);
728 laarr[curr].extLength =
729 EXT_NOT_RECORDED_NOT_ALLOCATED |
730 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800732 laarr[curr].extLocation.
733 partitionReferenceNum = 0;
734 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800736 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700737 curr++;
738 (*c)++;
739 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 laarr[curr].extLocation.logicalBlockNum = newblocknum;
743 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
744 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800745 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800747 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700748 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700750 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800752 laarr[curr].extLocation.logicalBlockNum +=
753 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700754 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800755 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700756 curr++;
757 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 }
760}
761
762static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200763 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700764 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 int start, length = 0, currlength = 0, i;
767
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (!lastblock)
770 return;
771 else
772 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700773 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800774 if ((laarr[c + 1].extLength >> 30) ==
775 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700776 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800777 length = currlength =
778 (((laarr[c + 1].extLength &
779 UDF_EXTENT_LENGTH_MASK) +
780 inode->i_sb->s_blocksize - 1) >>
781 inode->i_sb->s_blocksize_bits);
782 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 start = c;
784 }
785
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700786 for (i = start + 1; i <= *endnum; i++) {
787 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (lastblock)
789 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800790 } else if ((laarr[i].extLength >> 30) ==
791 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
792 length += (((laarr[i].extLength &
793 UDF_EXTENT_LENGTH_MASK) +
794 inode->i_sb->s_blocksize - 1) >>
795 inode->i_sb->s_blocksize_bits);
796 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
798 }
799
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700800 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700802 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800803 inode->i_sb->s_blocksize - 1) >>
804 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800806 laarr[start].extLocation.partitionReferenceNum,
807 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
808 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
809 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700810 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800811 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800813 (numalloc <<
814 inode->i_sb->s_blocksize_bits);
815 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700816 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200817 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700818 (*endnum)++;
819 laarr[c + 1].extLocation.logicalBlockNum = next;
820 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800821 laarr[c].extLocation.
822 partitionReferenceNum;
823 laarr[c + 1].extLength =
824 EXT_NOT_RECORDED_ALLOCATED |
825 (numalloc <<
826 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700827 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700830 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800831 int elen = ((laarr[i].extLength &
832 UDF_EXTENT_LENGTH_MASK) +
833 inode->i_sb->s_blocksize - 1) >>
834 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700836 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800838 (numalloc <<
839 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700841 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700843 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800844 memmove(&laarr[i],
845 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200846 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800847 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700848 i--;
849 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800852 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800853 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 }
856}
857
858static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200859 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700860 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800863 unsigned long blocksize = inode->i_sb->s_blocksize;
864 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700866 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200867 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
868 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Marcin Slusarz4b111112008-02-08 04:20:36 -0800870 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
871 (((li->extLength >> 30) ==
872 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
873 ((lip1->extLocation.logicalBlockNum -
874 li->extLocation.logicalBlockNum) ==
875 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
876 blocksize - 1) >> blocksize_bits)))) {
877
878 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
879 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
880 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
881 lip1->extLength = (lip1->extLength -
882 (li->extLength &
883 UDF_EXTENT_LENGTH_MASK) +
884 UDF_EXTENT_LENGTH_MASK) &
885 ~(blocksize - 1);
886 li->extLength = (li->extLength &
887 UDF_EXTENT_FLAG_MASK) +
888 (UDF_EXTENT_LENGTH_MASK + 1) -
889 blocksize;
890 lip1->extLocation.logicalBlockNum =
891 li->extLocation.logicalBlockNum +
892 ((li->extLength &
893 UDF_EXTENT_LENGTH_MASK) >>
894 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700895 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800896 li->extLength = lip1->extLength +
897 (((li->extLength &
898 UDF_EXTENT_LENGTH_MASK) +
899 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700900 if (*endnum > (i + 2))
901 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200902 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800903 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700904 i--;
905 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800907 } else if (((li->extLength >> 30) ==
908 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
909 ((lip1->extLength >> 30) ==
910 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200911 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800912 ((li->extLength &
913 UDF_EXTENT_LENGTH_MASK) +
914 blocksize - 1) >> blocksize_bits);
915 li->extLocation.logicalBlockNum = 0;
916 li->extLocation.partitionReferenceNum = 0;
917
918 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
919 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
920 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
921 lip1->extLength = (lip1->extLength -
922 (li->extLength &
923 UDF_EXTENT_LENGTH_MASK) +
924 UDF_EXTENT_LENGTH_MASK) &
925 ~(blocksize - 1);
926 li->extLength = (li->extLength &
927 UDF_EXTENT_FLAG_MASK) +
928 (UDF_EXTENT_LENGTH_MASK + 1) -
929 blocksize;
930 } else {
931 li->extLength = lip1->extLength +
932 (((li->extLength &
933 UDF_EXTENT_LENGTH_MASK) +
934 blocksize - 1) & ~(blocksize - 1));
935 if (*endnum > (i + 2))
936 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200937 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800938 (*endnum - (i + 2)));
939 i--;
940 (*endnum)--;
941 }
942 } else if ((li->extLength >> 30) ==
943 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
944 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200945 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800946 ((li->extLength &
947 UDF_EXTENT_LENGTH_MASK) +
948 blocksize - 1) >> blocksize_bits);
949 li->extLocation.logicalBlockNum = 0;
950 li->extLocation.partitionReferenceNum = 0;
951 li->extLength = (li->extLength &
952 UDF_EXTENT_LENGTH_MASK) |
953 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955 }
956}
957
958static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200959 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700960 int startnum, int endnum,
961 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200964 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 uint32_t tmplen;
966
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700967 if (startnum > endnum) {
968 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700969 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700970 laarr[i].extLength);
971 } else if (startnum < endnum) {
972 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700973 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700974 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700975 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700976 &laarr[i].extLength, 1);
977 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979 }
980
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700981 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700982 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200983 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700984 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986}
987
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988struct buffer_head *udf_bread(struct inode *inode, int block,
989 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700991 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 bh = udf_getblk(inode, block, create, err);
994 if (!bh)
995 return NULL;
996
997 if (buffer_uptodate(bh))
998 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 wait_on_buffer(bh);
1003 if (buffer_uptodate(bh))
1004 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 brelse(bh);
1007 *err = -EIO;
1008 return NULL;
1009}
1010
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001011void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 int offset;
1014 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001015 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001018 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1021 return;
1022
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001023 iinfo = UDF_I(inode);
1024 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001025 down_write(&iinfo->i_data_sem);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001026 if (inode->i_sb->s_blocksize <
1027 (udf_file_entry_alloc_offset(inode) +
1028 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001030 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1031 inode->i_size = iinfo->i_lenAlloc;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001032 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001034 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001036 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001038 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001039 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001040 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001041 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001043 up_write(&iinfo->i_data_sem);
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);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001047 down_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001049 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1053 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001054 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 else
1056 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001059static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct buffer_head *bh = NULL;
1062 struct fileEntry *fe;
1063 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001064 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /*
1067 * Set defaults, but the inode is still incomplete!
1068 * Note: get_new_inode() sets the following on a new inode:
1069 * i_sb = sb
1070 * i_no = ino
1071 * i_flags = sb->s_flags
1072 * i_state = 0
1073 * clean_inode(): zero fills and sets
1074 * i_count = 1
1075 * i_nlink = 1
1076 * i_op = NULL;
1077 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001078 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001079 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001081 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 make_bad_inode(inode);
1083 return;
1084 }
1085
1086 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001087 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001088 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1089 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001090 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 make_bad_inode(inode);
1092 return;
1093 }
1094
1095 fe = (struct fileEntry *)bh->b_data;
1096
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001097 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001098 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Pekka Enberg97e961f2008-10-15 12:29:03 +02001100 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001101 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001102 if (ident == TAG_IDENT_IE && ibh) {
1103 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001104 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001105 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001106
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001107 ie = (struct indirectEntry *)ibh->b_data;
1108 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001109
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001110 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001111 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001112 &ident))) {
1113 if (ident == TAG_IDENT_FE ||
1114 ident == TAG_IDENT_EFE) {
1115 memcpy(&iinfo->i_location,
1116 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001117 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001118 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001119 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001120 brelse(nbh);
1121 __udf_read_inode(inode);
1122 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001123 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001124 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001126 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001127 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001128 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001130 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001131 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 make_bad_inode(inode);
1133 return;
1134 }
1135 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001136
Jan Kara3bf25cb2007-05-08 00:35:16 -07001137 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1141{
1142 struct fileEntry *fe;
1143 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001145 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001146 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 fe = (struct fileEntry *)bh->b_data;
1149 efe = (struct extendedFileEntry *)bh->b_data;
1150
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001151 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001152 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001153 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001154 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001156 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001157 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001158 iinfo->i_unique = 0;
1159 iinfo->i_lenEAttr = 0;
1160 iinfo->i_lenExtents = 0;
1161 iinfo->i_lenAlloc = 0;
1162 iinfo->i_next_alloc_block = 0;
1163 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001164 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001165 iinfo->i_efe = 1;
1166 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001167 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1168 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001169 make_bad_inode(inode);
1170 return;
1171 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001172 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001173 bh->b_data + sizeof(struct extendedFileEntry),
1174 inode->i_sb->s_blocksize -
1175 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001176 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001177 iinfo->i_efe = 0;
1178 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001179 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1180 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001181 make_bad_inode(inode);
1182 return;
1183 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001184 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001185 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001186 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001187 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001188 iinfo->i_efe = 0;
1189 iinfo->i_use = 1;
1190 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001191 ((struct unallocSpaceEntry *)bh->b_data)->
1192 lengthAllocDescs);
1193 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1194 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001195 make_bad_inode(inode);
1196 return;
1197 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001198 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001199 bh->b_data + sizeof(struct unallocSpaceEntry),
1200 inode->i_sb->s_blocksize -
1201 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return;
1203 }
1204
Jan Karac03cad22010-10-20 22:17:28 +02001205 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001207 if (inode->i_uid == -1 ||
1208 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1209 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001210 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001213 if (inode->i_gid == -1 ||
1214 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1215 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001216 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001218 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001219 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001220 inode->i_mode = sbi->s_fmode;
1221 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001222 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001223 inode->i_mode = sbi->s_dmode;
1224 else
1225 inode->i_mode = udf_convert_permissions(fe);
1226 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001227 read_unlock(&sbi->s_cred_lock);
1228
1229 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1230 if (!inode->i_nlink)
1231 inode->i_nlink = 1;
1232
1233 inode->i_size = le64_to_cpu(fe->informationLength);
1234 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001236 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001238 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Marcin Slusarz56774802008-02-10 11:25:31 +01001240 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001241 inode->i_atime = sbi->s_record_time;
1242
Marcin Slusarz56774802008-02-10 11:25:31 +01001243 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1244 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001245 inode->i_mtime = sbi->s_record_time;
1246
Marcin Slusarz56774802008-02-10 11:25:31 +01001247 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001248 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001250 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1251 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1252 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1253 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001254 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001255 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001256 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Marcin Slusarz56774802008-02-10 11:25:31 +01001258 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001259 inode->i_atime = sbi->s_record_time;
1260
Marcin Slusarz56774802008-02-10 11:25:31 +01001261 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1262 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001263 inode->i_mtime = sbi->s_record_time;
1264
Marcin Slusarz56774802008-02-10 11:25:31 +01001265 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001266 iinfo->i_crtime = sbi->s_record_time;
1267
Marcin Slusarz56774802008-02-10 11:25:31 +01001268 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001269 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001271 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1272 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1273 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001274 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001275 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001278 switch (fe->icbTag.fileType) {
1279 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001280 inode->i_op = &udf_dir_inode_operations;
1281 inode->i_fop = &udf_dir_operations;
1282 inode->i_mode |= S_IFDIR;
1283 inc_nlink(inode);
1284 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001285 case ICBTAG_FILE_TYPE_REALTIME:
1286 case ICBTAG_FILE_TYPE_REGULAR:
1287 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001288 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001289 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001290 inode->i_data.a_ops = &udf_adinicb_aops;
1291 else
1292 inode->i_data.a_ops = &udf_aops;
1293 inode->i_op = &udf_file_inode_operations;
1294 inode->i_fop = &udf_file_operations;
1295 inode->i_mode |= S_IFREG;
1296 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001297 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001298 inode->i_mode |= S_IFBLK;
1299 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001300 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001301 inode->i_mode |= S_IFCHR;
1302 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001304 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1305 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001306 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001307 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1308 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001309 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001310 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001311 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001312 inode->i_mode = S_IFLNK | S_IRWXUGO;
1313 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001314 case ICBTAG_FILE_TYPE_MAIN:
1315 udf_debug("METADATA FILE-----\n");
1316 break;
1317 case ICBTAG_FILE_TYPE_MIRROR:
1318 udf_debug("METADATA MIRROR FILE-----\n");
1319 break;
1320 case ICBTAG_FILE_TYPE_BITMAP:
1321 udf_debug("METADATA BITMAP FILE-----\n");
1322 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001323 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001324 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1325 "file type=%d\n", inode->i_ino,
1326 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001327 make_bad_inode(inode);
1328 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001330 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001331 struct deviceSpec *dsea =
1332 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001333 if (dsea) {
1334 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001335 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1336 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001338 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341}
1342
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001343static int udf_alloc_i_data(struct inode *inode, size_t size)
1344{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001345 struct udf_inode_info *iinfo = UDF_I(inode);
1346 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001347
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001348 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001349 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1350 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001351 return -ENOMEM;
1352 }
1353
1354 return 0;
1355}
1356
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001357static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 mode_t mode;
1360 uint32_t permissions;
1361 uint32_t flags;
1362
1363 permissions = le32_to_cpu(fe->permissions);
1364 flags = le16_to_cpu(fe->icbTag.flags);
1365
Marcin Slusarz4b111112008-02-08 04:20:36 -08001366 mode = ((permissions) & S_IRWXO) |
1367 ((permissions >> 2) & S_IRWXG) |
1368 ((permissions >> 4) & S_IRWXU) |
1369 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1370 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1371 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 return mode;
1374}
1375
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001376int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Jan Kara49521de2010-10-20 17:42:44 +02001378 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Jan Kara49521de2010-10-20 17:42:44 +02001381static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 return udf_update_inode(inode, 1);
1384}
1385
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001386static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 struct buffer_head *bh = NULL;
1389 struct fileEntry *fe;
1390 struct extendedFileEntry *efe;
1391 uint32_t udfperms;
1392 uint16_t icbflags;
1393 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001395 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001396 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001397 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Jan Kara5833ded2010-01-08 16:52:59 +01001399 bh = udf_tgetblk(inode->i_sb,
1400 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001401 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001402 udf_debug("getblk failure\n");
1403 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405
Jan Karaaae917c2010-01-08 16:46:29 +01001406 lock_buffer(bh);
1407 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 fe = (struct fileEntry *)bh->b_data;
1409 efe = (struct extendedFileEntry *)bh->b_data;
1410
Jan Karaaae917c2010-01-08 16:46:29 +01001411 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001413 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001415 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001416 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001417 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001418 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001419 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1420 use->descTag.tagLocation =
1421 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001422 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001423 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001425 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001426 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001427 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001428 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Jan Karaaae917c2010-01-08 16:46:29 +01001430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
Phillip Susi4d6660e2006-03-07 21:55:24 -08001433 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1434 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001435 else
1436 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Phillip Susi4d6660e2006-03-07 21:55:24 -08001438 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1439 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001440 else
1441 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Marcin Slusarz4b111112008-02-08 04:20:36 -08001443 udfperms = ((inode->i_mode & S_IRWXO)) |
1444 ((inode->i_mode & S_IRWXG) << 2) |
1445 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Marcin Slusarz4b111112008-02-08 04:20:36 -08001447 udfperms |= (le32_to_cpu(fe->permissions) &
1448 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1449 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1450 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 fe->permissions = cpu_to_le32(udfperms);
1452
1453 if (S_ISDIR(inode->i_mode))
1454 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1455 else
1456 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1457
1458 fe->informationLength = cpu_to_le64(inode->i_size);
1459
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001460 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001461 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001462 struct deviceSpec *dsea =
1463 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001464 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001466 udf_add_extendedattr(inode,
1467 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001468 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 dsea->attrType = cpu_to_le32(12);
1470 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001471 dsea->attrLength = cpu_to_le32(
1472 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001473 sizeof(struct regid));
1474 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001476 eid = (struct regid *)dsea->impUse;
1477 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 strcpy(eid->ident, UDF_ID_DEVELOPER);
1479 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1480 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1481 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1482 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1483 }
1484
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001485 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001486 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001487 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001488 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001489 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001490 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1491 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Marcin Slusarz56774802008-02-10 11:25:31 +01001493 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1494 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1495 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001496 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1498 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1499 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001500 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1501 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1502 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1504 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001505 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001506 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001507 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001508 inode->i_sb->s_blocksize -
1509 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001511 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001512 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1513 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001515 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1516 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1517 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1518 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001519
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001520 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1521 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1522 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1523 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001524
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001525 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1526 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1527 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1528 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Marcin Slusarz56774802008-02-10 11:25:31 +01001530 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1531 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1532 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1533 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001535 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1537 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1538 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001539 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1540 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1541 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1543 crclen = sizeof(struct extendedFileEntry);
1544 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001545 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 fe->icbTag.strategyType = cpu_to_le16(4096);
1547 fe->icbTag.strategyParameter = cpu_to_le16(1);
1548 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001549 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 fe->icbTag.strategyType = cpu_to_le16(4);
1551 fe->icbTag.numEntries = cpu_to_le16(1);
1552 }
1553
1554 if (S_ISDIR(inode->i_mode))
1555 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1556 else if (S_ISREG(inode->i_mode))
1557 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1558 else if (S_ISLNK(inode->i_mode))
1559 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1560 else if (S_ISBLK(inode->i_mode))
1561 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1562 else if (S_ISCHR(inode->i_mode))
1563 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1564 else if (S_ISFIFO(inode->i_mode))
1565 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1566 else if (S_ISSOCK(inode->i_mode))
1567 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1568
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001569 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001570 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1571 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1572 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1573 (le16_to_cpu(fe->icbTag.flags) &
1574 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1575 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001578 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 fe->descTag.descVersion = cpu_to_le16(3);
1580 else
1581 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001582 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001583 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001584 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001585 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001587 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001588 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001589 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Jan Karaaae917c2010-01-08 16:46:29 +01001591out:
Jan Kara5833ded2010-01-08 16:52:59 +01001592 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001593 unlock_buffer(bh);
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 /* write the data blocks */
1596 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001597 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001599 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001600 printk(KERN_WARNING "IO error syncing udf inode "
1601 "[%s:%08lx]\n", inode->i_sb->s_id,
1602 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 err = -EIO;
1604 }
1605 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001606 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return err;
1609}
1610
Pekka Enberg97e961f2008-10-15 12:29:03 +02001611struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1614 struct inode *inode = iget_locked(sb, block);
1615
1616 if (!inode)
1617 return NULL;
1618
1619 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001620 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 __udf_read_inode(inode);
1622 unlock_new_inode(inode);
1623 }
1624
1625 if (is_bad_inode(inode))
1626 goto out_iput;
1627
Pekka Enberg97e961f2008-10-15 12:29:03 +02001628 if (ino->logicalBlockNum >= UDF_SB(sb)->
1629 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001631 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 make_bad_inode(inode);
1633 goto out_iput;
1634 }
1635
1636 return inode;
1637
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001638 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 iput(inode);
1640 return NULL;
1641}
1642
Marcin Slusarz4b111112008-02-08 04:20:36 -08001643int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001644 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001647 struct short_ad *sad = NULL;
1648 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 struct allocExtDesc *aed;
1650 int8_t etype;
1651 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001652 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Jan Karaff116fc2007-05-08 00:35:14 -07001654 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001655 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001656 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001657 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 else
Jan Karaff116fc2007-05-08 00:35:14 -07001659 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001661 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001662 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001663 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001664 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 else
1666 return -1;
1667
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001668 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001669 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 struct buffer_head *nbh;
1671 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001672 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Marcin Slusarz4b111112008-02-08 04:20:36 -08001674 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1675 obloc.partitionReferenceNum,
1676 obloc.logicalBlockNum, &err);
1677 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001679 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001680 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001681 0));
1682 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 lock_buffer(nbh);
1685 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1686 set_buffer_uptodate(nbh);
1687 unlock_buffer(nbh);
1688 mark_buffer_dirty_inode(nbh, inode);
1689
1690 aed = (struct allocExtDesc *)(nbh->b_data);
1691 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001692 aed->previousAllocExtLocation =
1693 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001694 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001695 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 aed->lengthAllocDescs = cpu_to_le32(adsize);
1697 sptr = ptr - adsize;
1698 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1699 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001700 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001701 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001702 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 aed->lengthAllocDescs = cpu_to_le32(0);
1704 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001705 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001707 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001708 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001709 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001710 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001711 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 mark_inode_dirty(inode);
1713 }
1714 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001715 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001717 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 else
1719 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001720 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001721 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001722 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001723 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001724 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1725 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001726 sad->extPosition =
1727 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001728 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001729 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001730 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001731 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1732 inode->i_sb->s_blocksize);
1733 lad->extLocation = cpu_to_lelb(epos->block);
1734 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001737 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001738 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001739 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001740 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001742 udf_update_tag(epos->bh->b_data,
1743 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001744 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001745 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001746 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001748 }
Jan Karaff116fc2007-05-08 00:35:14 -07001749 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
1751
Jan Karaff116fc2007-05-08 00:35:14 -07001752 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001754 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001755 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001757 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001758 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001759 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001760 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1761 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1762 udf_update_tag(epos->bh->b_data,
1763 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001765 udf_update_tag(epos->bh->b_data,
1766 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001767 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769
1770 return etype;
1771}
1772
Marcin Slusarz4b111112008-02-08 04:20:36 -08001773int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001774 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 int adsize;
1777 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001778 struct short_ad *sad;
1779 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001780 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jan Karaff116fc2007-05-08 00:35:14 -07001782 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001783 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001784 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001785 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 else
Jan Karaff116fc2007-05-08 00:35:14 -07001787 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001789 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001790 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001791 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001792 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001793 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001794 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001795 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001796 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001797 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001798 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001799 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001800 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001801 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001802 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001803 default:
1804 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001807 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001808 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001809 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001810 struct allocExtDesc *aed =
1811 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001812 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001813 le32_to_cpu(aed->lengthAllocDescs) +
1814 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
Jan Karaff116fc2007-05-08 00:35:14 -07001816 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001817 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001822 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return (elen >> 30);
1825}
1826
Marcin Slusarz4b111112008-02-08 04:20:36 -08001827int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001828 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 int8_t etype;
1831
Jan Karaff116fc2007-05-08 00:35:14 -07001832 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001833 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001834 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001835 epos->block = *eloc;
1836 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001837 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001838 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001839 epos->bh = udf_tread(inode->i_sb, block);
1840 if (!epos->bh) {
1841 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return -1;
1843 }
1844 }
1845
1846 return etype;
1847}
1848
Marcin Slusarz4b111112008-02-08 04:20:36 -08001849int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001850 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 int alen;
1853 int8_t etype;
1854 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001855 struct short_ad *sad;
1856 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001857 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001858
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001859 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001860 if (!epos->offset)
1861 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001862 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001863 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001864 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001865 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001866 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001867 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001868 if (!epos->offset)
1869 epos->offset = sizeof(struct allocExtDesc);
1870 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001871 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001872 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1873 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001876 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001877 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001878 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1879 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001881 etype = le32_to_cpu(sad->extLength) >> 30;
1882 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001883 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001884 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001885 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1886 break;
1887 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001888 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1889 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001890 return -1;
1891 etype = le32_to_cpu(lad->extLength) >> 30;
1892 *eloc = lelb_to_cpu(lad->extLocation);
1893 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1894 break;
1895 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001896 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001897 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001898 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
1901 return etype;
1902}
1903
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001904static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001905 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001907 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 uint32_t oelen;
1909 int8_t etype;
1910
Jan Karaff116fc2007-05-08 00:35:14 -07001911 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001912 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001914 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001915 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 neloc = oeloc;
1917 nelen = (etype << 30) | oelen;
1918 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001919 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001920 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return (nelen >> 30);
1923}
1924
Marcin Slusarz4b111112008-02-08 04:20:36 -08001925int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001926 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Jan Karaff116fc2007-05-08 00:35:14 -07001928 struct extent_position oepos;
1929 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 int8_t etype;
1931 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001932 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001934 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001935 get_bh(epos.bh);
1936 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001939 iinfo = UDF_I(inode);
1940 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001941 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001942 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001943 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 else
1945 adsize = 0;
1946
Jan Karaff116fc2007-05-08 00:35:14 -07001947 oepos = epos;
1948 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return -1;
1950
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001951 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001952 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001953 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001954 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001955 brelse(oepos.bh);
1956 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001957 oepos.bh = epos.bh;
1958 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001961 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 elen = 0;
1963
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001964 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001965 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1966 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1967 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001968 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001969 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001971 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001972 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001973 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001974 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001975 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001976 udf_update_tag(oepos.bh->b_data,
1977 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001979 udf_update_tag(oepos.bh->b_data,
1980 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001981 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001983 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001984 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001985 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001986 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001988 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001989 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001990 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001991 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001992 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001993 udf_update_tag(oepos.bh->b_data,
1994 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001996 udf_update_tag(oepos.bh->b_data,
1997 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001998 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002001
Jan Kara3bf25cb2007-05-08 00:35:16 -07002002 brelse(epos.bh);
2003 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return (elen >> 30);
2006}
2007
Marcin Slusarz4b111112008-02-08 04:20:36 -08002008int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002009 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002010 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002012 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002013 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002014 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002016 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002018 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002019 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002020 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002021 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002024 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002025 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2026 if (etype == -1) {
2027 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002028 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return -1;
2030 }
2031 lbcount += *elen;
2032 } while (lbcount <= bcount);
2033
Marcin Slusarz4b111112008-02-08 04:20:36 -08002034 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 return etype;
2037}
2038
Jan Kara60448b12007-05-08 00:35:13 -07002039long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002041 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002042 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002043 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002044 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 int ret;
2046
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002047 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Marcin Slusarz4b111112008-02-08 04:20:36 -08002049 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2050 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002051 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 else
2053 ret = 0;
2054
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002055 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002056 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2059 return udf_fixed_to_variable(ret);
2060 else
2061 return ret;
2062}