blob: e7533f7856368d17a15728c5113e816546cff4e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/04/98 dgb Added rudimentary directory functions
20 * 10/07/98 Fully working udf_block_map! It works!
21 * 11/25/98 bmap altered to better support extents
Marcin Slusarz4b111112008-02-08 04:20:36 -080022 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
25 * block boundaries (which is not actually allowed)
26 * 12/20/98 added support for strategy 4096
27 * 03/07/99 rewrote udf_block_map (again)
28 * New funcs, inode_bmap, udf_next_aext
29 * 04/19/99 Support for writing device EA's for major/minor #
30 */
31
32#include "udfdecl.h"
33#include <linux/mm.h>
34#include <linux/smp_lock.h>
35#include <linux/module.h>
36#include <linux/pagemap.h>
37#include <linux/buffer_head.h>
38#include <linux/writeback.h>
39#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020040#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "udf_i.h"
43#include "udf_sb.h"
44
45MODULE_AUTHOR("Ben Fennema");
46MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47MODULE_LICENSE("GPL");
48
49#define EXTENT_MERGE_SIZE 5
50
51static mode_t udf_convert_permissions(struct fileEntry *);
52static int udf_update_inode(struct inode *, int);
53static void udf_fill_inode(struct inode *, struct buffer_head *);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070055static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080056 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070057static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020058 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020060 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020062 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020064 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020066 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070067 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
Christoph Hellwigb1e32122008-02-22 12:38:48 +010070
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070071void udf_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Mark Fashehfef26652005-09-09 13:01:31 -070073 truncate_inode_pages(&inode->i_data, 0);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (is_bad_inode(inode))
76 goto no_delete;
77
78 inode->i_size = 0;
79 udf_truncate(inode);
80 lock_kernel();
81
82 udf_update_inode(inode, IS_SYNC(inode));
83 udf_free_inode(inode);
84
85 unlock_kernel();
86 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070087
88no_delete:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 clear_inode(inode);
90}
91
Jan Kara74584ae2007-06-16 10:16:14 -070092/*
93 * If we are going to release inode from memory, we discard preallocation and
94 * truncate last inode extent to proper length. We could use drop_inode() but
95 * it's called under inode_lock and thus we cannot mark inode dirty there. We
96 * use clear_inode() but we have to make sure to write inode as it's not written
97 * automatically.
98 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099void udf_clear_inode(struct inode *inode)
100{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800101 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!(inode->i_sb->s_flags & MS_RDONLY)) {
103 lock_kernel();
Jan Kara74584ae2007-06-16 10:16:14 -0700104 /* Discard preallocation for directories, symlinks, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 udf_discard_prealloc(inode);
Jan Kara74584ae2007-06-16 10:16:14 -0700106 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unlock_kernel();
Mike Galbraith32a8f242008-02-08 04:20:49 -0800108 write_inode_now(inode, 0);
Jan Kara52b19ac2008-09-23 18:24:08 +0200109 invalidate_inode_buffers(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800111 iinfo = UDF_I(inode);
112 kfree(iinfo->i_ext.i_data);
113 iinfo->i_ext.i_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static int udf_writepage(struct page *page, struct writeback_control *wbc)
117{
118 return block_write_full_page(page, udf_get_block, wbc);
119}
120
121static int udf_readpage(struct file *file, struct page *page)
122{
123 return block_read_full_page(page, udf_get_block);
124}
125
Nick Pigginbe021ee2007-10-16 01:25:20 -0700126static int udf_write_begin(struct file *file, struct address_space *mapping,
127 loff_t pos, unsigned len, unsigned flags,
128 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Nick Pigginbe021ee2007-10-16 01:25:20 -0700130 *pagep = NULL;
131 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
132 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static sector_t udf_bmap(struct address_space *mapping, sector_t block)
136{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700137 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700140const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700141 .readpage = udf_readpage,
142 .writepage = udf_writepage,
143 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700144 .write_begin = udf_write_begin,
145 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700146 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700149void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct page *page;
152 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800153 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct writeback_control udf_wbc = {
155 .sync_mode = WB_SYNC_NONE,
156 .nr_to_write = 1,
157 };
158
159 /* from now on we have normal address_space methods */
160 inode->i_data.a_ops = &udf_aops;
161
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800162 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800164 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800166 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 mark_inode_dirty(inode);
168 return;
169 }
170
171 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700172 BUG_ON(!PageLocked(page));
173
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700174 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800176 memset(kaddr + iinfo->i_lenAlloc, 0x00,
177 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
178 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
179 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 flush_dcache_page(page);
181 SetPageUptodate(page);
182 kunmap(page);
183 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800184 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
185 iinfo->i_lenAlloc);
186 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800188 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800190 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 inode->i_data.a_ops->writepage(page, &udf_wbc);
193 page_cache_release(page);
194
195 mark_inode_dirty(inode);
196}
197
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700198struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
199 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700202 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200203 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -0700204 uint32_t elen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700206 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800209 loff_t f_pos = udf_ext0_offset(inode);
210 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800212 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
215 alloctype = ICBTAG_FLAG_AD_SHORT;
216 else
217 alloctype = ICBTAG_FLAG_AD_LONG;
218
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700219 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800220 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mark_inode_dirty(inode);
222 return NULL;
223 }
224
225 /* alloc block, and copy data to it */
226 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800227 iinfo->i_location.partitionReferenceNum,
228 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!(*block))
230 return NULL;
231 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800232 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800233 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!newblock)
235 return NULL;
236 dbh = udf_tgetblk(inode->i_sb, newblock);
237 if (!dbh)
238 return NULL;
239 lock_buffer(dbh);
240 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
241 set_buffer_uptodate(dbh);
242 unlock_buffer(dbh);
243 mark_buffer_dirty_inode(dbh, inode);
244
Marcin Slusarz4b111112008-02-08 04:20:36 -0800245 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800246 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700247 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 dfibh.soffset = dfibh.eoffset = 0;
249 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800250 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800251 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800252 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
253 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700254 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700255 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return NULL;
257 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800258 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 sfi->descTag.tagLocation = cpu_to_le32(*block);
260 dfibh.soffset = dfibh.eoffset;
261 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
262 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
263 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800264 sfi->fileIdent +
265 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800266 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700267 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return NULL;
269 }
270 }
271 mark_buffer_dirty_inode(dbh, inode);
272
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800273 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
274 iinfo->i_lenAlloc);
275 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800277 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800278 iinfo->i_location.partitionReferenceNum;
Jan Kara05343c42008-02-08 04:20:51 -0800279 elen = inode->i_sb->s_blocksize;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800280 iinfo->i_lenExtents = elen;
Jan Karaff116fc2007-05-08 00:35:14 -0700281 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800282 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700283 epos.offset = udf_file_entry_alloc_offset(inode);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200284 udf_add_aext(inode, &epos, &eloc, elen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* UniqueID stuff */
286
Jan Kara3bf25cb2007-05-08 00:35:16 -0700287 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 mark_inode_dirty(inode);
289 return dbh;
290}
291
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700292static int udf_get_block(struct inode *inode, sector_t block,
293 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 int err, new;
296 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800297 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800298 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700300 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 phys = udf_block_map(inode, block);
302 if (phys)
303 map_bh(bh_result, inode->i_sb, phys);
304 return 0;
305 }
306
307 err = -EIO;
308 new = 0;
309 bh = NULL;
310
311 lock_kernel();
312
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800313 iinfo = UDF_I(inode);
314 if (block == iinfo->i_next_alloc_block + 1) {
315 iinfo->i_next_alloc_block++;
316 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 err = 0;
320
321 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200322 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (err)
324 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200325 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (new)
328 set_buffer_new(bh_result);
329 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700330
331abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 unlock_kernel();
333 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700336static struct buffer_head *udf_getblk(struct inode *inode, long block,
337 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700339 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct buffer_head dummy;
341
342 dummy.b_state = 0;
343 dummy.b_blocknr = -1000;
344 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700345 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700347 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 lock_buffer(bh);
349 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
350 set_buffer_uptodate(bh);
351 unlock_buffer(bh);
352 mark_buffer_dirty_inode(bh, inode);
353 }
354 return bh;
355 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return NULL;
358}
359
Jan Kara31170b62007-05-08 00:35:21 -0700360/* Extend the file by 'blocks' blocks, return the number of extents added */
361int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200362 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700363{
364 sector_t add;
365 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
366 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200367 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700368 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800369 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700370
371 /* The previous extent is fake and we should not extend by anything
372 * - there's nothing to do... */
373 if (!blocks && fake)
374 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700375
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800376 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700377 /* Round the last extent up to a multiple of block size */
378 if (last_ext->extLength & (sb->s_blocksize - 1)) {
379 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700380 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
381 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
382 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800383 iinfo->i_lenExtents =
384 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700385 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700386 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700387
Jan Kara31170b62007-05-08 00:35:21 -0700388 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800389 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
390 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700391 /* Save the extent so that we can reattach it to the end */
392 prealloc_loc = last_ext->extLocation;
393 prealloc_len = last_ext->extLength;
394 /* Mark the extent as a hole */
395 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700396 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700397 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800398 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700399 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700400
Jan Kara31170b62007-05-08 00:35:21 -0700401 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800402 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
403 EXT_NOT_RECORDED_NOT_ALLOCATED) {
404 add = ((1 << 30) - sb->s_blocksize -
405 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
406 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700407 if (add > blocks)
408 add = blocks;
409 blocks -= add;
410 last_ext->extLength += add << sb->s_blocksize_bits;
411 }
412
413 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200414 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700415 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700416 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800417 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200418 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800419 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700420
Jan Kara31170b62007-05-08 00:35:21 -0700421 /* Managed to do everything necessary? */
422 if (!blocks)
423 goto out;
424
425 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
426 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800427 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700428 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800429 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
430 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700431
Jan Kara31170b62007-05-08 00:35:21 -0700432 /* Create enough extents to cover the whole hole */
433 while (blocks > add) {
434 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200435 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700436 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700437 return -1;
438 count++;
439 }
440 if (blocks) {
441 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700442 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200443 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700444 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700445 return -1;
446 count++;
447 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700448
449out:
Jan Kara31170b62007-05-08 00:35:21 -0700450 /* Do we have some preallocated blocks saved? */
451 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200452 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800453 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700454 return -1;
455 last_ext->extLocation = prealloc_loc;
456 last_ext->extLength = prealloc_len;
457 count++;
458 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700459
Jan Kara31170b62007-05-08 00:35:21 -0700460 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800461 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200462 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800463 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200464 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700465 else
466 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700467
Jan Kara31170b62007-05-08 00:35:21 -0700468 return count;
469}
470
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700471static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800472 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Jan Kara31170b62007-05-08 00:35:21 -0700474 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700475 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200476 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700477 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700479 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200480 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700482 loff_t lbcount = 0, b_off = 0;
483 uint32_t newblocknum, newblock;
484 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800486 struct udf_inode_info *iinfo = UDF_I(inode);
487 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700488 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Jan Karaff116fc2007-05-08 00:35:14 -0700490 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800491 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700492 prev_epos.bh = NULL;
493 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700494 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700497 alternate between laarr[0] and laarr[1] for locations of the
498 current extent, and the previous extent */
499 do {
500 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700501 brelse(prev_epos.bh);
502 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700503 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700505 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700506 brelse(cur_epos.bh);
507 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700508 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 lbcount += elen;
512
Jan Karaff116fc2007-05-08 00:35:14 -0700513 prev_epos.block = cur_epos.block;
514 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jan Karaff116fc2007-05-08 00:35:14 -0700516 prev_epos.offset = cur_epos.offset;
517 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Marcin Slusarz4b111112008-02-08 04:20:36 -0800519 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
520 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 break;
522
523 c = !c;
524
525 laarr[c].extLength = (etype << 30) | elen;
526 laarr[c].extLocation = eloc;
527
528 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
529 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700530 ((elen + inode->i_sb->s_blocksize - 1) >>
531 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700533 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 } while (lbcount + elen <= b_off);
535
536 b_off -= lbcount;
537 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700538 /*
539 * Move prev_epos and cur_epos into indirect extent if we are at
540 * the pointer to it
541 */
542 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
543 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700546 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700548 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
549 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700551 ((elen + inode->i_sb->s_blocksize - 1) &
552 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200553 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700555 brelse(prev_epos.bh);
556 brelse(cur_epos.bh);
557 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200558 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 *phys = newblock;
560 return NULL;
561 }
562
Jan Kara31170b62007-05-08 00:35:21 -0700563 last_block = block;
564 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700565 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700566 int ret;
567
568 if (count) {
569 if (c)
570 laarr[0] = laarr[1];
571 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700572 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700573 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800574 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200575 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700576 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800577 /* Will udf_extend_file() create real extent from
578 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700579 startnum = (offset > 0);
580 }
581 /* Create extents for the hole between EOF and offset */
582 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
583 if (ret == -1) {
584 brelse(prev_epos.bh);
585 brelse(cur_epos.bh);
586 brelse(next_epos.bh);
587 /* We don't really know the error here so we just make
588 * something up */
589 *err = -ENOSPC;
590 return NULL;
591 }
592 c = 0;
593 offset = 0;
594 count += ret;
595 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800596 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
597 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700598 /* Is there any real extent? - otherwise we overwrite
599 * the fake one... */
600 if (count)
601 c = !c;
602 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700603 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800604 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200605 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 count++;
607 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700608 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700609 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700611 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 endnum = startnum = ((count > 2) ? 2 : count);
613
Marcin Slusarz4b111112008-02-08 04:20:36 -0800614 /* if the current extent is in position 0,
615 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700616 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700617 laarr[2] = laarr[0];
618 laarr[0] = laarr[1];
619 laarr[1] = laarr[2];
620 c = 1;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Marcin Slusarz4b111112008-02-08 04:20:36 -0800623 /* if the current block is located in an extent,
624 read the next extent */
625 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
626 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700627 laarr[c + 1].extLength = (etype << 30) | elen;
628 laarr[c + 1].extLocation = eloc;
629 count++;
630 startnum++;
631 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800632 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 lastblock = 1;
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700637 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800638 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800640 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800641 if (iinfo->i_next_alloc_block == block)
642 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800645 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800646 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Marcin Slusarz4b111112008-02-08 04:20:36 -0800649 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800650 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800651 goal, err);
652 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700653 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *err = -ENOSPC;
655 return NULL;
656 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800657 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659
Marcin Slusarz4b111112008-02-08 04:20:36 -0800660 /* if the extent the requsted block is located in contains multiple
661 * blocks, split the extent into at most three extents. blocks prior
662 * to requested block, requested block, and blocks after requested
663 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
665
666#ifdef UDF_PREALLOCATE
667 /* preallocate blocks */
668 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
669#endif
670
671 /* merge any continuous blocks in laarr */
672 udf_merge_extents(inode, laarr, &endnum);
673
674 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700675 * of extents is greater than the old number, and deleting extents if
676 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700677 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Jan Kara3bf25cb2007-05-08 00:35:16 -0700679 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Marcin Slusarz4b111112008-02-08 04:20:36 -0800681 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800682 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800683 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 *phys = newblock;
686 *err = 0;
687 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800688 iinfo->i_next_alloc_block = block;
689 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 inode->i_ctime = current_fs_time(inode->i_sb);
691
692 if (IS_SYNC(inode))
693 udf_sync_inode(inode);
694 else
695 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return result;
698}
699
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700700static void udf_split_extents(struct inode *inode, int *c, int offset,
701 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200702 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700703 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800705 unsigned long blocksize = inode->i_sb->s_blocksize;
706 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800709 (laarr[*c].extLength >> 30) ==
710 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int curr = *c;
712 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800713 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int8_t etype = (laarr[curr].extLength >> 30);
715
Marcin Slusarz4b111112008-02-08 04:20:36 -0800716 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700717 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800718 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700719 laarr[curr + 2] = laarr[curr + 1];
720 laarr[curr + 1] = laarr[curr];
721 } else {
722 laarr[curr + 3] = laarr[curr + 1];
723 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700726 if (offset) {
727 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800728 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200729 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800730 0, offset);
731 laarr[curr].extLength =
732 EXT_NOT_RECORDED_NOT_ALLOCATED |
733 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800735 laarr[curr].extLocation.
736 partitionReferenceNum = 0;
737 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800739 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700740 curr++;
741 (*c)++;
742 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 laarr[curr].extLocation.logicalBlockNum = newblocknum;
746 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
747 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800748 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800750 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700751 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700753 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800755 laarr[curr].extLocation.logicalBlockNum +=
756 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700757 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800758 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700759 curr++;
760 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762 }
763}
764
765static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200766 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700767 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int start, length = 0, currlength = 0, i;
770
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700771 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (!lastblock)
773 return;
774 else
775 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700776 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800777 if ((laarr[c + 1].extLength >> 30) ==
778 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700779 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800780 length = currlength =
781 (((laarr[c + 1].extLength &
782 UDF_EXTENT_LENGTH_MASK) +
783 inode->i_sb->s_blocksize - 1) >>
784 inode->i_sb->s_blocksize_bits);
785 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 start = c;
787 }
788
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700789 for (i = start + 1; i <= *endnum; i++) {
790 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (lastblock)
792 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800793 } else if ((laarr[i].extLength >> 30) ==
794 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
795 length += (((laarr[i].extLength &
796 UDF_EXTENT_LENGTH_MASK) +
797 inode->i_sb->s_blocksize - 1) >>
798 inode->i_sb->s_blocksize_bits);
799 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 break;
801 }
802
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700803 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700805 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800806 inode->i_sb->s_blocksize - 1) >>
807 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800809 laarr[start].extLocation.partitionReferenceNum,
810 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
811 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
812 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700813 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800814 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800816 (numalloc <<
817 inode->i_sb->s_blocksize_bits);
818 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700819 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200820 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700821 (*endnum)++;
822 laarr[c + 1].extLocation.logicalBlockNum = next;
823 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800824 laarr[c].extLocation.
825 partitionReferenceNum;
826 laarr[c + 1].extLength =
827 EXT_NOT_RECORDED_ALLOCATED |
828 (numalloc <<
829 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700830 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700833 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800834 int elen = ((laarr[i].extLength &
835 UDF_EXTENT_LENGTH_MASK) +
836 inode->i_sb->s_blocksize - 1) >>
837 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700839 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800841 (numalloc <<
842 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700844 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700846 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800847 memmove(&laarr[i],
848 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200849 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800850 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851 i--;
852 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800855 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800856 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 }
859}
860
861static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200862 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700863 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800866 unsigned long blocksize = inode->i_sb->s_blocksize;
867 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700869 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200870 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
871 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Marcin Slusarz4b111112008-02-08 04:20:36 -0800873 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
874 (((li->extLength >> 30) ==
875 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
876 ((lip1->extLocation.logicalBlockNum -
877 li->extLocation.logicalBlockNum) ==
878 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
879 blocksize - 1) >> blocksize_bits)))) {
880
881 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
882 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
883 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
884 lip1->extLength = (lip1->extLength -
885 (li->extLength &
886 UDF_EXTENT_LENGTH_MASK) +
887 UDF_EXTENT_LENGTH_MASK) &
888 ~(blocksize - 1);
889 li->extLength = (li->extLength &
890 UDF_EXTENT_FLAG_MASK) +
891 (UDF_EXTENT_LENGTH_MASK + 1) -
892 blocksize;
893 lip1->extLocation.logicalBlockNum =
894 li->extLocation.logicalBlockNum +
895 ((li->extLength &
896 UDF_EXTENT_LENGTH_MASK) >>
897 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700898 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800899 li->extLength = lip1->extLength +
900 (((li->extLength &
901 UDF_EXTENT_LENGTH_MASK) +
902 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700903 if (*endnum > (i + 2))
904 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200905 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800906 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700907 i--;
908 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800910 } else if (((li->extLength >> 30) ==
911 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
912 ((lip1->extLength >> 30) ==
913 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200914 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800915 ((li->extLength &
916 UDF_EXTENT_LENGTH_MASK) +
917 blocksize - 1) >> blocksize_bits);
918 li->extLocation.logicalBlockNum = 0;
919 li->extLocation.partitionReferenceNum = 0;
920
921 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
922 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
923 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
924 lip1->extLength = (lip1->extLength -
925 (li->extLength &
926 UDF_EXTENT_LENGTH_MASK) +
927 UDF_EXTENT_LENGTH_MASK) &
928 ~(blocksize - 1);
929 li->extLength = (li->extLength &
930 UDF_EXTENT_FLAG_MASK) +
931 (UDF_EXTENT_LENGTH_MASK + 1) -
932 blocksize;
933 } else {
934 li->extLength = lip1->extLength +
935 (((li->extLength &
936 UDF_EXTENT_LENGTH_MASK) +
937 blocksize - 1) & ~(blocksize - 1));
938 if (*endnum > (i + 2))
939 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200940 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800941 (*endnum - (i + 2)));
942 i--;
943 (*endnum)--;
944 }
945 } else if ((li->extLength >> 30) ==
946 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
947 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200948 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800949 ((li->extLength &
950 UDF_EXTENT_LENGTH_MASK) +
951 blocksize - 1) >> blocksize_bits);
952 li->extLocation.logicalBlockNum = 0;
953 li->extLocation.partitionReferenceNum = 0;
954 li->extLength = (li->extLength &
955 UDF_EXTENT_LENGTH_MASK) |
956 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 }
959}
960
961static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200962 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700963 int startnum, int endnum,
964 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200967 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 uint32_t tmplen;
969
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700970 if (startnum > endnum) {
971 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700972 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700973 laarr[i].extLength);
974 } else if (startnum < endnum) {
975 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700976 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700977 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700978 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700979 &laarr[i].extLength, 1);
980 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982 }
983
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700984 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700985 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200986 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700987 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989}
990
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700991struct buffer_head *udf_bread(struct inode *inode, int block,
992 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700994 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 bh = udf_getblk(inode, block, create, err);
997 if (!bh)
998 return NULL;
999
1000 if (buffer_uptodate(bh))
1001 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 wait_on_buffer(bh);
1006 if (buffer_uptodate(bh))
1007 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 brelse(bh);
1010 *err = -EIO;
1011 return NULL;
1012}
1013
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001014void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 int offset;
1017 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001018 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001021 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return;
1023 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1024 return;
1025
1026 lock_kernel();
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001027 iinfo = UDF_I(inode);
1028 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001029 if (inode->i_sb->s_blocksize <
1030 (udf_file_entry_alloc_offset(inode) +
1031 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001033 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1034 inode->i_size = iinfo->i_lenAlloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 unlock_kernel();
1036 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001037 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001039 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001041 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001042 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001043 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001044 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001046 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001047 block_truncate_page(inode->i_mapping, inode->i_size,
1048 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 udf_truncate_extents(inode);
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);
1057 unlock_kernel();
1058}
1059
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001060static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 struct buffer_head *bh = NULL;
1063 struct fileEntry *fe;
1064 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001065 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /*
1068 * Set defaults, but the inode is still incomplete!
1069 * Note: get_new_inode() sets the following on a new inode:
1070 * i_sb = sb
1071 * i_no = ino
1072 * i_flags = sb->s_flags
1073 * i_state = 0
1074 * clean_inode(): zero fills and sets
1075 * i_count = 1
1076 * i_nlink = 1
1077 * i_op = NULL;
1078 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001079 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001080 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001082 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 make_bad_inode(inode);
1084 return;
1085 }
1086
1087 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001088 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001089 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1090 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001091 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 make_bad_inode(inode);
1093 return;
1094 }
1095
1096 fe = (struct fileEntry *)bh->b_data;
1097
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001098 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001099 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Pekka Enberg97e961f2008-10-15 12:29:03 +02001101 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001102 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001103 if (ident == TAG_IDENT_IE && ibh) {
1104 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001105 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001106 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001107
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001108 ie = (struct indirectEntry *)ibh->b_data;
1109 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001110
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001111 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001112 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001113 &ident))) {
1114 if (ident == TAG_IDENT_FE ||
1115 ident == TAG_IDENT_EFE) {
1116 memcpy(&iinfo->i_location,
1117 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001118 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001119 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001120 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001121 brelse(nbh);
1122 __udf_read_inode(inode);
1123 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001124 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001125 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001127 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001128 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001129 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001131 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001132 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 make_bad_inode(inode);
1134 return;
1135 }
1136 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001137
Jan Kara3bf25cb2007-05-08 00:35:16 -07001138 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1142{
1143 struct fileEntry *fe;
1144 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001146 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001147 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 fe = (struct fileEntry *)bh->b_data;
1150 efe = (struct extendedFileEntry *)bh->b_data;
1151
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001152 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001153 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001154 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001155 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001157 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001158 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001159 iinfo->i_unique = 0;
1160 iinfo->i_lenEAttr = 0;
1161 iinfo->i_lenExtents = 0;
1162 iinfo->i_lenAlloc = 0;
1163 iinfo->i_next_alloc_block = 0;
1164 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001165 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001166 iinfo->i_efe = 1;
1167 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001168 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1169 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001170 make_bad_inode(inode);
1171 return;
1172 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001173 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001174 bh->b_data + sizeof(struct extendedFileEntry),
1175 inode->i_sb->s_blocksize -
1176 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001177 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001178 iinfo->i_efe = 0;
1179 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001180 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1181 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001182 make_bad_inode(inode);
1183 return;
1184 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001185 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001186 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001187 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001188 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001189 iinfo->i_efe = 0;
1190 iinfo->i_use = 1;
1191 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001192 ((struct unallocSpaceEntry *)bh->b_data)->
1193 lengthAllocDescs);
1194 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1195 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001196 make_bad_inode(inode);
1197 return;
1198 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001199 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001200 bh->b_data + sizeof(struct unallocSpaceEntry),
1201 inode->i_sb->s_blocksize -
1202 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return;
1204 }
1205
1206 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
1218 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1219 if (!inode->i_nlink)
1220 inode->i_nlink = 1;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 inode->i_size = le64_to_cpu(fe->informationLength);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001223 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001225 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001226 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001227 inode->i_mode = sbi->s_fmode;
1228 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001229 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001230 inode->i_mode = sbi->s_dmode;
1231 else
1232 inode->i_mode = udf_convert_permissions(fe);
1233 inode->i_mode &= ~sbi->s_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001235 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001237 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Marcin Slusarz56774802008-02-10 11:25:31 +01001239 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001240 inode->i_atime = sbi->s_record_time;
1241
Marcin Slusarz56774802008-02-10 11:25:31 +01001242 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1243 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001244 inode->i_mtime = sbi->s_record_time;
1245
Marcin Slusarz56774802008-02-10 11:25:31 +01001246 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001247 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001249 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1250 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1251 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1252 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001253 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001254 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001255 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Marcin Slusarz56774802008-02-10 11:25:31 +01001257 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001258 inode->i_atime = sbi->s_record_time;
1259
Marcin Slusarz56774802008-02-10 11:25:31 +01001260 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1261 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001262 inode->i_mtime = sbi->s_record_time;
1263
Marcin Slusarz56774802008-02-10 11:25:31 +01001264 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001265 iinfo->i_crtime = sbi->s_record_time;
1266
Marcin Slusarz56774802008-02-10 11:25:31 +01001267 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001268 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001270 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1271 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1272 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001273 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001274 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001277 switch (fe->icbTag.fileType) {
1278 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001279 inode->i_op = &udf_dir_inode_operations;
1280 inode->i_fop = &udf_dir_operations;
1281 inode->i_mode |= S_IFDIR;
1282 inc_nlink(inode);
1283 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001284 case ICBTAG_FILE_TYPE_REALTIME:
1285 case ICBTAG_FILE_TYPE_REGULAR:
1286 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001287 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001288 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001289 inode->i_data.a_ops = &udf_adinicb_aops;
1290 else
1291 inode->i_data.a_ops = &udf_aops;
1292 inode->i_op = &udf_file_inode_operations;
1293 inode->i_fop = &udf_file_operations;
1294 inode->i_mode |= S_IFREG;
1295 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001296 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001297 inode->i_mode |= S_IFBLK;
1298 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001299 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001300 inode->i_mode |= S_IFCHR;
1301 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001302 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001303 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1304 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001305 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001306 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1307 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001308 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001309 inode->i_data.a_ops = &udf_symlink_aops;
1310 inode->i_op = &page_symlink_inode_operations;
1311 inode->i_mode = S_IFLNK | S_IRWXUGO;
1312 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001313 case ICBTAG_FILE_TYPE_MAIN:
1314 udf_debug("METADATA FILE-----\n");
1315 break;
1316 case ICBTAG_FILE_TYPE_MIRROR:
1317 udf_debug("METADATA MIRROR FILE-----\n");
1318 break;
1319 case ICBTAG_FILE_TYPE_BITMAP:
1320 udf_debug("METADATA BITMAP FILE-----\n");
1321 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001322 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001323 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1324 "file type=%d\n", inode->i_ino,
1325 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001326 make_bad_inode(inode);
1327 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001329 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001330 struct deviceSpec *dsea =
1331 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001332 if (dsea) {
1333 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001334 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1335 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001337 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340}
1341
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001342static int udf_alloc_i_data(struct inode *inode, size_t size)
1343{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001344 struct udf_inode_info *iinfo = UDF_I(inode);
1345 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001346
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001347 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001348 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1349 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001350 return -ENOMEM;
1351 }
1352
1353 return 0;
1354}
1355
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001356static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 mode_t mode;
1359 uint32_t permissions;
1360 uint32_t flags;
1361
1362 permissions = le32_to_cpu(fe->permissions);
1363 flags = le16_to_cpu(fe->icbTag.flags);
1364
Marcin Slusarz4b111112008-02-08 04:20:36 -08001365 mode = ((permissions) & S_IRWXO) |
1366 ((permissions >> 2) & S_IRWXG) |
1367 ((permissions >> 4) & S_IRWXU) |
1368 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1369 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1370 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 return mode;
1373}
1374
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001375int udf_write_inode(struct inode *inode, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 int ret;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 lock_kernel();
1380 ret = udf_update_inode(inode, sync);
1381 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return ret;
1384}
1385
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001386int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 return udf_update_inode(inode, 1);
1389}
1390
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001391static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 struct buffer_head *bh = NULL;
1394 struct fileEntry *fe;
1395 struct extendedFileEntry *efe;
1396 uint32_t udfperms;
1397 uint16_t icbflags;
1398 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001400 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001401 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001402 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Marcin Slusarz4b111112008-02-08 04:20:36 -08001404 bh = udf_tread(inode->i_sb,
1405 udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001406 &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001407 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 udf_debug("bread failure\n");
1409 return -EIO;
1410 }
1411
1412 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
1413
1414 fe = (struct fileEntry *)bh->b_data;
1415 efe = (struct extendedFileEntry *)bh->b_data;
1416
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001417 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001419 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001421 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001422 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001423 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001424 sizeof(struct unallocSpaceEntry));
1425 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001426 iinfo->i_lenAlloc - sizeof(struct tag);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001427 use->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001428 iinfo->i_location.
Marcin Slusarz4b111112008-02-08 04:20:36 -08001429 logicalBlockNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001431 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001432 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001433 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001434 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 mark_buffer_dirty(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001437 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return err;
1439 }
1440
Phillip Susi4d6660e2006-03-07 21:55:24 -08001441 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1442 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001443 else
1444 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Phillip Susi4d6660e2006-03-07 21:55:24 -08001446 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1447 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001448 else
1449 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Marcin Slusarz4b111112008-02-08 04:20:36 -08001451 udfperms = ((inode->i_mode & S_IRWXO)) |
1452 ((inode->i_mode & S_IRWXG) << 2) |
1453 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Marcin Slusarz4b111112008-02-08 04:20:36 -08001455 udfperms |= (le32_to_cpu(fe->permissions) &
1456 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1457 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1458 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 fe->permissions = cpu_to_le32(udfperms);
1460
1461 if (S_ISDIR(inode->i_mode))
1462 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1463 else
1464 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1465
1466 fe->informationLength = cpu_to_le64(inode->i_size);
1467
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001468 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001469 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001470 struct deviceSpec *dsea =
1471 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001472 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001474 udf_add_extendedattr(inode,
1475 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001476 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 dsea->attrType = cpu_to_le32(12);
1478 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001479 dsea->attrLength = cpu_to_le32(
1480 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001481 sizeof(struct regid));
1482 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001484 eid = (struct regid *)dsea->impUse;
1485 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 strcpy(eid->ident, UDF_ID_DEVELOPER);
1487 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1488 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1489 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1490 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1491 }
1492
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001493 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001494 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001495 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001496 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001497 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001498 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1499 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Marcin Slusarz56774802008-02-10 11:25:31 +01001501 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1502 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1503 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001504 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1506 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1507 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001508 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1509 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1510 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1512 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001513 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001514 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001515 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516 inode->i_sb->s_blocksize -
1517 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001519 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001520 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1521 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001523 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1524 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1525 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1526 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001527
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001528 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1529 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1530 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1531 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001532
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001533 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1534 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1535 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1536 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Marcin Slusarz56774802008-02-10 11:25:31 +01001538 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1539 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1540 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1541 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001543 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1545 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1546 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001547 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1548 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1549 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1551 crclen = sizeof(struct extendedFileEntry);
1552 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001553 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 fe->icbTag.strategyType = cpu_to_le16(4096);
1555 fe->icbTag.strategyParameter = cpu_to_le16(1);
1556 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001557 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 fe->icbTag.strategyType = cpu_to_le16(4);
1559 fe->icbTag.numEntries = cpu_to_le16(1);
1560 }
1561
1562 if (S_ISDIR(inode->i_mode))
1563 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1564 else if (S_ISREG(inode->i_mode))
1565 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1566 else if (S_ISLNK(inode->i_mode))
1567 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1568 else if (S_ISBLK(inode->i_mode))
1569 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1570 else if (S_ISCHR(inode->i_mode))
1571 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1572 else if (S_ISFIFO(inode->i_mode))
1573 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1574 else if (S_ISSOCK(inode->i_mode))
1575 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1576
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001577 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001578 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1579 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1580 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1581 (le16_to_cpu(fe->icbTag.flags) &
1582 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1583 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001586 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 fe->descTag.descVersion = cpu_to_le16(3);
1588 else
1589 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001590 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001591 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001592 iinfo->i_location.logicalBlockNum);
1593 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc -
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001594 sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001596 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001597 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001598 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /* write the data blocks */
1601 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001602 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 sync_dirty_buffer(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001604 if (buffer_req(bh) && !buffer_uptodate(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001605 printk(KERN_WARNING "IO error syncing udf inode "
1606 "[%s:%08lx]\n", inode->i_sb->s_id,
1607 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 err = -EIO;
1609 }
1610 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001611 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return err;
1614}
1615
Pekka Enberg97e961f2008-10-15 12:29:03 +02001616struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
1618 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1619 struct inode *inode = iget_locked(sb, block);
1620
1621 if (!inode)
1622 return NULL;
1623
1624 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001625 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 __udf_read_inode(inode);
1627 unlock_new_inode(inode);
1628 }
1629
1630 if (is_bad_inode(inode))
1631 goto out_iput;
1632
Pekka Enberg97e961f2008-10-15 12:29:03 +02001633 if (ino->logicalBlockNum >= UDF_SB(sb)->
1634 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001636 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 make_bad_inode(inode);
1638 goto out_iput;
1639 }
1640
1641 return inode;
1642
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001643 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 iput(inode);
1645 return NULL;
1646}
1647
Marcin Slusarz4b111112008-02-08 04:20:36 -08001648int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001649 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001652 struct short_ad *sad = NULL;
1653 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 struct allocExtDesc *aed;
1655 int8_t etype;
1656 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001657 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Jan Karaff116fc2007-05-08 00:35:14 -07001659 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001660 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001661 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001662 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 else
Jan Karaff116fc2007-05-08 00:35:14 -07001664 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001666 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001667 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001668 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001669 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 else
1671 return -1;
1672
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001673 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 char *sptr, *dptr;
1675 struct buffer_head *nbh;
1676 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001677 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Marcin Slusarz4b111112008-02-08 04:20:36 -08001679 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1680 obloc.partitionReferenceNum,
1681 obloc.logicalBlockNum, &err);
1682 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001684 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001685 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001686 0));
1687 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 lock_buffer(nbh);
1690 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1691 set_buffer_uptodate(nbh);
1692 unlock_buffer(nbh);
1693 mark_buffer_dirty_inode(nbh, inode);
1694
1695 aed = (struct allocExtDesc *)(nbh->b_data);
1696 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001697 aed->previousAllocExtLocation =
1698 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001699 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001700 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 aed->lengthAllocDescs = cpu_to_le32(adsize);
1702 sptr = ptr - adsize;
1703 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1704 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001705 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001706 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001707 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 aed->lengthAllocDescs = cpu_to_le32(0);
1709 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001710 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001712 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001713 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001714 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001715 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001716 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 mark_inode_dirty(inode);
1718 }
1719 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001720 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001722 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 else
1724 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001725 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001726 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001727 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001728 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001729 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1730 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001731 sad->extPosition =
1732 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001733 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001734 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001735 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001736 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1737 inode->i_sb->s_blocksize);
1738 lad->extLocation = cpu_to_lelb(epos->block);
1739 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1740 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001742 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001743 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001744 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001745 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001747 udf_update_tag(epos->bh->b_data,
1748 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001749 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001750 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001751 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001753 }
Jan Karaff116fc2007-05-08 00:35:14 -07001754 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
1756
Jan Karaff116fc2007-05-08 00:35:14 -07001757 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001759 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001760 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001762 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001763 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001764 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001765 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1766 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1767 udf_update_tag(epos->bh->b_data,
1768 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001770 udf_update_tag(epos->bh->b_data,
1771 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001772 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774
1775 return etype;
1776}
1777
Marcin Slusarz4b111112008-02-08 04:20:36 -08001778int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001779 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 int adsize;
1782 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001783 struct short_ad *sad;
1784 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001785 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Jan Karaff116fc2007-05-08 00:35:14 -07001787 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001788 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001789 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001790 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 else
Jan Karaff116fc2007-05-08 00:35:14 -07001792 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001794 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001795 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001796 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001797 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001798 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001799 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001800 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001801 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001802 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001803 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001804 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001805 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001806 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001807 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001808 default:
1809 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001812 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001813 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001814 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001815 struct allocExtDesc *aed =
1816 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001817 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001818 le32_to_cpu(aed->lengthAllocDescs) +
1819 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
Jan Karaff116fc2007-05-08 00:35:14 -07001821 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001822 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001827 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return (elen >> 30);
1830}
1831
Marcin Slusarz4b111112008-02-08 04:20:36 -08001832int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001833 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
1835 int8_t etype;
1836
Jan Karaff116fc2007-05-08 00:35:14 -07001837 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001838 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001839 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001840 epos->block = *eloc;
1841 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001842 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001843 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001844 epos->bh = udf_tread(inode->i_sb, block);
1845 if (!epos->bh) {
1846 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -1;
1848 }
1849 }
1850
1851 return etype;
1852}
1853
Marcin Slusarz4b111112008-02-08 04:20:36 -08001854int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001855 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 int alen;
1858 int8_t etype;
1859 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001860 struct short_ad *sad;
1861 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001862 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001863
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001864 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001865 if (!epos->offset)
1866 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001867 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001868 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001869 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001870 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001871 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001872 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001873 if (!epos->offset)
1874 epos->offset = sizeof(struct allocExtDesc);
1875 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001876 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001877 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1878 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001881 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001882 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001883 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1884 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001886 etype = le32_to_cpu(sad->extLength) >> 30;
1887 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001888 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001889 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001890 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1891 break;
1892 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001893 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1894 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001895 return -1;
1896 etype = le32_to_cpu(lad->extLength) >> 30;
1897 *eloc = lelb_to_cpu(lad->extLocation);
1898 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1899 break;
1900 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001901 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001902 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001903 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
1906 return etype;
1907}
1908
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001909static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001910 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001912 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 uint32_t oelen;
1914 int8_t etype;
1915
Jan Karaff116fc2007-05-08 00:35:14 -07001916 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001917 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001919 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001920 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 neloc = oeloc;
1922 nelen = (etype << 30) | oelen;
1923 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001924 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001925 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return (nelen >> 30);
1928}
1929
Marcin Slusarz4b111112008-02-08 04:20:36 -08001930int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001931 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Jan Karaff116fc2007-05-08 00:35:14 -07001933 struct extent_position oepos;
1934 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 int8_t etype;
1936 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001937 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001939 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001940 get_bh(epos.bh);
1941 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001944 iinfo = UDF_I(inode);
1945 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001946 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001947 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001948 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 else
1950 adsize = 0;
1951
Jan Karaff116fc2007-05-08 00:35:14 -07001952 oepos = epos;
1953 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return -1;
1955
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001956 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001957 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001958 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001959 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001960 brelse(oepos.bh);
1961 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001962 oepos.bh = epos.bh;
1963 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001966 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 elen = 0;
1968
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001969 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001970 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1971 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1972 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001973 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001974 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001976 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001977 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001978 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001979 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001980 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001981 udf_update_tag(oepos.bh->b_data,
1982 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001984 udf_update_tag(oepos.bh->b_data,
1985 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001986 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001988 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001989 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001990 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001991 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001993 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001994 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001995 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001996 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001997 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001998 udf_update_tag(oepos.bh->b_data,
1999 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002001 udf_update_tag(oepos.bh->b_data,
2002 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002003 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002006
Jan Kara3bf25cb2007-05-08 00:35:16 -07002007 brelse(epos.bh);
2008 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return (elen >> 30);
2011}
2012
Marcin Slusarz4b111112008-02-08 04:20:36 -08002013int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002014 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002015 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002017 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002018 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002019 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002021 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002023 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002024 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002025 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002026 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002029 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002030 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2031 if (etype == -1) {
2032 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002033 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return -1;
2035 }
2036 lbcount += *elen;
2037 } while (lbcount <= bcount);
2038
Marcin Slusarz4b111112008-02-08 04:20:36 -08002039 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 return etype;
2042}
2043
Jan Kara60448b12007-05-08 00:35:13 -07002044long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002046 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002047 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002048 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002049 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 int ret;
2051
2052 lock_kernel();
2053
Marcin Slusarz4b111112008-02-08 04:20:36 -08002054 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2055 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002056 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 else
2058 ret = 0;
2059
2060 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07002061 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2064 return udf_fixed_to_variable(ret);
2065 else
2066 return ret;
2067}