blob: b020892472960faa9ec1e8d6982697efec26e93b [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/*
Jan Kara81056dd2009-07-16 18:02:25 +020093 * If we are going to release inode from memory, we truncate last inode extent
94 * to proper length. We could use drop_inode() but it's called under inode_lock
95 * and thus we cannot mark inode dirty there. We use clear_inode() but we have
96 * to make sure to write inode as it's not written automatically.
Jan Kara74584ae2007-06-16 10:16:14 -070097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void udf_clear_inode(struct inode *inode)
99{
Jan Kara2c948b32009-12-03 13:39:28 +0100100 struct udf_inode_info *iinfo = UDF_I(inode);
101
102 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
103 inode->i_size != iinfo->i_lenExtents) {
104 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
105 "inode size %llu different from extent lenght %llu. "
106 "Filesystem need not be standards compliant.\n",
107 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
108 (unsigned long long)inode->i_size,
109 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800111 kfree(iinfo->i_ext.i_data);
112 iinfo->i_ext.i_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static int udf_writepage(struct page *page, struct writeback_control *wbc)
116{
117 return block_write_full_page(page, udf_get_block, wbc);
118}
119
120static int udf_readpage(struct file *file, struct page *page)
121{
122 return block_read_full_page(page, udf_get_block);
123}
124
Nick Pigginbe021ee2007-10-16 01:25:20 -0700125static int udf_write_begin(struct file *file, struct address_space *mapping,
126 loff_t pos, unsigned len, unsigned flags,
127 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Nick Pigginbe021ee2007-10-16 01:25:20 -0700129 *pagep = NULL;
130 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
131 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static sector_t udf_bmap(struct address_space *mapping, sector_t block)
135{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700136 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700139const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700140 .readpage = udf_readpage,
141 .writepage = udf_writepage,
142 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700143 .write_begin = udf_write_begin,
144 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700145 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700148void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct page *page;
151 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800152 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct writeback_control udf_wbc = {
154 .sync_mode = WB_SYNC_NONE,
155 .nr_to_write = 1,
156 };
157
158 /* from now on we have normal address_space methods */
159 inode->i_data.a_ops = &udf_aops;
160
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800163 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800165 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 mark_inode_dirty(inode);
167 return;
168 }
169
170 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700171 BUG_ON(!PageLocked(page));
172
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700173 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800175 memset(kaddr + iinfo->i_lenAlloc, 0x00,
176 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
177 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
178 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 flush_dcache_page(page);
180 SetPageUptodate(page);
181 kunmap(page);
182 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800183 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
184 iinfo->i_lenAlloc);
185 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800187 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800189 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 inode->i_data.a_ops->writepage(page, &udf_wbc);
192 page_cache_release(page);
193
194 mark_inode_dirty(inode);
195}
196
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700197struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
198 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700201 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200202 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700204 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800207 loff_t f_pos = udf_ext0_offset(inode);
208 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800210 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
213 alloctype = ICBTAG_FLAG_AD_SHORT;
214 else
215 alloctype = ICBTAG_FLAG_AD_LONG;
216
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700217 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800218 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 mark_inode_dirty(inode);
220 return NULL;
221 }
222
223 /* alloc block, and copy data to it */
224 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800225 iinfo->i_location.partitionReferenceNum,
226 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!(*block))
228 return NULL;
229 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800230 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800231 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!newblock)
233 return NULL;
234 dbh = udf_tgetblk(inode->i_sb, newblock);
235 if (!dbh)
236 return NULL;
237 lock_buffer(dbh);
238 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
239 set_buffer_uptodate(dbh);
240 unlock_buffer(dbh);
241 mark_buffer_dirty_inode(dbh, inode);
242
Marcin Slusarz4b111112008-02-08 04:20:36 -0800243 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800244 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700245 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 dfibh.soffset = dfibh.eoffset = 0;
247 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800248 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800249 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800250 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
251 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700252 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700253 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return NULL;
255 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800256 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 sfi->descTag.tagLocation = cpu_to_le32(*block);
258 dfibh.soffset = dfibh.eoffset;
259 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
260 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
261 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800262 sfi->fileIdent +
263 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800264 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700265 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return NULL;
267 }
268 }
269 mark_buffer_dirty_inode(dbh, inode);
270
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800271 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
272 iinfo->i_lenAlloc);
273 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800275 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800276 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100277 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700278 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800279 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700280 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100281 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* UniqueID stuff */
283
Jan Kara3bf25cb2007-05-08 00:35:16 -0700284 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 mark_inode_dirty(inode);
286 return dbh;
287}
288
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700289static int udf_get_block(struct inode *inode, sector_t block,
290 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 int err, new;
293 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800294 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800295 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700297 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 phys = udf_block_map(inode, block);
299 if (phys)
300 map_bh(bh_result, inode->i_sb, phys);
301 return 0;
302 }
303
304 err = -EIO;
305 new = 0;
306 bh = NULL;
307
308 lock_kernel();
309
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800310 iinfo = UDF_I(inode);
311 if (block == iinfo->i_next_alloc_block + 1) {
312 iinfo->i_next_alloc_block++;
313 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315
316 err = 0;
317
318 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200319 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (err)
321 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200322 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (new)
325 set_buffer_new(bh_result);
326 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700327
328abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 unlock_kernel();
330 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700333static struct buffer_head *udf_getblk(struct inode *inode, long block,
334 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700336 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct buffer_head dummy;
338
339 dummy.b_state = 0;
340 dummy.b_blocknr = -1000;
341 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700342 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700344 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 lock_buffer(bh);
346 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
347 set_buffer_uptodate(bh);
348 unlock_buffer(bh);
349 mark_buffer_dirty_inode(bh, inode);
350 }
351 return bh;
352 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return NULL;
355}
356
Jan Kara31170b62007-05-08 00:35:21 -0700357/* Extend the file by 'blocks' blocks, return the number of extents added */
358int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200359 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700360{
361 sector_t add;
362 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
363 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200364 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700365 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800366 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700367
368 /* The previous extent is fake and we should not extend by anything
369 * - there's nothing to do... */
370 if (!blocks && fake)
371 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700372
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800373 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700374 /* Round the last extent up to a multiple of block size */
375 if (last_ext->extLength & (sb->s_blocksize - 1)) {
376 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700377 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
378 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
379 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800380 iinfo->i_lenExtents =
381 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700383 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700384
Jan Kara31170b62007-05-08 00:35:21 -0700385 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800386 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
387 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700388 /* Save the extent so that we can reattach it to the end */
389 prealloc_loc = last_ext->extLocation;
390 prealloc_len = last_ext->extLength;
391 /* Mark the extent as a hole */
392 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700393 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700394 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800395 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700396 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700397
Jan Kara31170b62007-05-08 00:35:21 -0700398 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800399 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
400 EXT_NOT_RECORDED_NOT_ALLOCATED) {
401 add = ((1 << 30) - sb->s_blocksize -
402 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
403 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700404 if (add > blocks)
405 add = blocks;
406 blocks -= add;
407 last_ext->extLength += add << sb->s_blocksize_bits;
408 }
409
410 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200411 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700412 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700413 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800414 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200415 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800416 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700417
Jan Kara31170b62007-05-08 00:35:21 -0700418 /* Managed to do everything necessary? */
419 if (!blocks)
420 goto out;
421
422 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
423 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800424 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700425 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800426 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
427 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700428
Jan Kara31170b62007-05-08 00:35:21 -0700429 /* Create enough extents to cover the whole hole */
430 while (blocks > add) {
431 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200432 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700433 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700434 return -1;
435 count++;
436 }
437 if (blocks) {
438 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700439 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200440 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700441 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700442 return -1;
443 count++;
444 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700445
446out:
Jan Kara31170b62007-05-08 00:35:21 -0700447 /* Do we have some preallocated blocks saved? */
448 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200449 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800450 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700451 return -1;
452 last_ext->extLocation = prealloc_loc;
453 last_ext->extLength = prealloc_len;
454 count++;
455 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700456
Jan Kara31170b62007-05-08 00:35:21 -0700457 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800458 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200459 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800460 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200461 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700462 else
463 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700464
Jan Kara31170b62007-05-08 00:35:21 -0700465 return count;
466}
467
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800469 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Jan Kara31170b62007-05-08 00:35:21 -0700471 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700472 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200473 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700474 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700476 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200477 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700479 loff_t lbcount = 0, b_off = 0;
480 uint32_t newblocknum, newblock;
481 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800483 struct udf_inode_info *iinfo = UDF_I(inode);
484 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700485 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Jan Karaff116fc2007-05-08 00:35:14 -0700487 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800488 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700489 prev_epos.bh = NULL;
490 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700491 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700494 alternate between laarr[0] and laarr[1] for locations of the
495 current extent, and the previous extent */
496 do {
497 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700498 brelse(prev_epos.bh);
499 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700500 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700502 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700503 brelse(cur_epos.bh);
504 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700505 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
508 lbcount += elen;
509
Jan Karaff116fc2007-05-08 00:35:14 -0700510 prev_epos.block = cur_epos.block;
511 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Jan Karaff116fc2007-05-08 00:35:14 -0700513 prev_epos.offset = cur_epos.offset;
514 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Marcin Slusarz4b111112008-02-08 04:20:36 -0800516 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
517 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519
520 c = !c;
521
522 laarr[c].extLength = (etype << 30) | elen;
523 laarr[c].extLocation = eloc;
524
525 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
526 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700527 ((elen + inode->i_sb->s_blocksize - 1) >>
528 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700530 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 } while (lbcount + elen <= b_off);
532
533 b_off -= lbcount;
534 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700535 /*
536 * Move prev_epos and cur_epos into indirect extent if we are at
537 * the pointer to it
538 */
539 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
540 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700543 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700545 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
546 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700548 ((elen + inode->i_sb->s_blocksize - 1) &
549 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200550 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700552 brelse(prev_epos.bh);
553 brelse(cur_epos.bh);
554 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200555 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *phys = newblock;
557 return NULL;
558 }
559
Jan Kara31170b62007-05-08 00:35:21 -0700560 last_block = block;
561 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700562 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700563 int ret;
564
565 if (count) {
566 if (c)
567 laarr[0] = laarr[1];
568 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700569 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700570 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800571 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200572 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700573 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800574 /* Will udf_extend_file() create real extent from
575 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700576 startnum = (offset > 0);
577 }
578 /* Create extents for the hole between EOF and offset */
579 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
580 if (ret == -1) {
581 brelse(prev_epos.bh);
582 brelse(cur_epos.bh);
583 brelse(next_epos.bh);
584 /* We don't really know the error here so we just make
585 * something up */
586 *err = -ENOSPC;
587 return NULL;
588 }
589 c = 0;
590 offset = 0;
591 count += ret;
592 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800593 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
594 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700595 /* Is there any real extent? - otherwise we overwrite
596 * the fake one... */
597 if (count)
598 c = !c;
599 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700600 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800601 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200602 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700603 count++;
604 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700605 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700608 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 endnum = startnum = ((count > 2) ? 2 : count);
610
Marcin Slusarz4b111112008-02-08 04:20:36 -0800611 /* if the current extent is in position 0,
612 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700613 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700614 laarr[2] = laarr[0];
615 laarr[0] = laarr[1];
616 laarr[1] = laarr[2];
617 c = 1;
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Marcin Slusarz4b111112008-02-08 04:20:36 -0800620 /* if the current block is located in an extent,
621 read the next extent */
622 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
623 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700624 laarr[c + 1].extLength = (etype << 30) | elen;
625 laarr[c + 1].extLocation = eloc;
626 count++;
627 startnum++;
628 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800629 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 lastblock = 1;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700634 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800635 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800637 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800638 if (iinfo->i_next_alloc_block == block)
639 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700641 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800642 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800643 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Marcin Slusarz4b111112008-02-08 04:20:36 -0800646 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800647 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800648 goal, err);
649 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700650 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *err = -ENOSPC;
652 return NULL;
653 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800654 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Marcin Slusarz4b111112008-02-08 04:20:36 -0800657 /* if the extent the requsted block is located in contains multiple
658 * blocks, split the extent into at most three extents. blocks prior
659 * to requested block, requested block, and blocks after requested
660 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
662
663#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200664 /* We preallocate blocks only for regular files. It also makes sense
665 * for directories but there's a problem when to drop the
666 * preallocation. We might use some delayed work for that but I feel
667 * it's overengineering for a filesystem like UDF. */
668 if (S_ISREG(inode->i_mode))
669 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#endif
671
672 /* merge any continuous blocks in laarr */
673 udf_merge_extents(inode, laarr, &endnum);
674
675 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700676 * of extents is greater than the old number, and deleting extents if
677 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700678 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jan Kara3bf25cb2007-05-08 00:35:16 -0700680 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Marcin Slusarz4b111112008-02-08 04:20:36 -0800682 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800683 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800684 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *phys = newblock;
687 *err = 0;
688 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800689 iinfo->i_next_alloc_block = block;
690 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 inode->i_ctime = current_fs_time(inode->i_sb);
692
693 if (IS_SYNC(inode))
694 udf_sync_inode(inode);
695 else
696 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return result;
699}
700
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700701static void udf_split_extents(struct inode *inode, int *c, int offset,
702 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200703 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700704 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800706 unsigned long blocksize = inode->i_sb->s_blocksize;
707 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800710 (laarr[*c].extLength >> 30) ==
711 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int curr = *c;
713 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800714 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int8_t etype = (laarr[curr].extLength >> 30);
716
Marcin Slusarz4b111112008-02-08 04:20:36 -0800717 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800719 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 laarr[curr + 2] = laarr[curr + 1];
721 laarr[curr + 1] = laarr[curr];
722 } else {
723 laarr[curr + 3] = laarr[curr + 1];
724 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700727 if (offset) {
728 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800729 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200730 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800731 0, offset);
732 laarr[curr].extLength =
733 EXT_NOT_RECORDED_NOT_ALLOCATED |
734 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800736 laarr[curr].extLocation.
737 partitionReferenceNum = 0;
738 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800740 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700741 curr++;
742 (*c)++;
743 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 laarr[curr].extLocation.logicalBlockNum = newblocknum;
747 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
748 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800749 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800751 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700752 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700754 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800756 laarr[curr].extLocation.logicalBlockNum +=
757 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700758 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800759 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700760 curr++;
761 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764}
765
766static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200767 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 int start, length = 0, currlength = 0, i;
771
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700772 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (!lastblock)
774 return;
775 else
776 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700777 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800778 if ((laarr[c + 1].extLength >> 30) ==
779 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700780 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800781 length = currlength =
782 (((laarr[c + 1].extLength &
783 UDF_EXTENT_LENGTH_MASK) +
784 inode->i_sb->s_blocksize - 1) >>
785 inode->i_sb->s_blocksize_bits);
786 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 start = c;
788 }
789
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790 for (i = start + 1; i <= *endnum; i++) {
791 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (lastblock)
793 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800794 } else if ((laarr[i].extLength >> 30) ==
795 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
796 length += (((laarr[i].extLength &
797 UDF_EXTENT_LENGTH_MASK) +
798 inode->i_sb->s_blocksize - 1) >>
799 inode->i_sb->s_blocksize_bits);
800 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 break;
802 }
803
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700804 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700806 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800807 inode->i_sb->s_blocksize - 1) >>
808 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800810 laarr[start].extLocation.partitionReferenceNum,
811 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
812 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
813 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700814 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800815 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800817 (numalloc <<
818 inode->i_sb->s_blocksize_bits);
819 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700820 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200821 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700822 (*endnum)++;
823 laarr[c + 1].extLocation.logicalBlockNum = next;
824 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800825 laarr[c].extLocation.
826 partitionReferenceNum;
827 laarr[c + 1].extLength =
828 EXT_NOT_RECORDED_ALLOCATED |
829 (numalloc <<
830 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700831 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700834 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800835 int elen = ((laarr[i].extLength &
836 UDF_EXTENT_LENGTH_MASK) +
837 inode->i_sb->s_blocksize - 1) >>
838 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700840 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800842 (numalloc <<
843 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700845 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700847 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800848 memmove(&laarr[i],
849 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200850 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800851 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700852 i--;
853 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800856 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800857 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 }
860}
861
862static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200863 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700864 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800867 unsigned long blocksize = inode->i_sb->s_blocksize;
868 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700870 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200871 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
872 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Marcin Slusarz4b111112008-02-08 04:20:36 -0800874 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
875 (((li->extLength >> 30) ==
876 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
877 ((lip1->extLocation.logicalBlockNum -
878 li->extLocation.logicalBlockNum) ==
879 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
880 blocksize - 1) >> blocksize_bits)))) {
881
882 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
883 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
884 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
885 lip1->extLength = (lip1->extLength -
886 (li->extLength &
887 UDF_EXTENT_LENGTH_MASK) +
888 UDF_EXTENT_LENGTH_MASK) &
889 ~(blocksize - 1);
890 li->extLength = (li->extLength &
891 UDF_EXTENT_FLAG_MASK) +
892 (UDF_EXTENT_LENGTH_MASK + 1) -
893 blocksize;
894 lip1->extLocation.logicalBlockNum =
895 li->extLocation.logicalBlockNum +
896 ((li->extLength &
897 UDF_EXTENT_LENGTH_MASK) >>
898 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700899 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800900 li->extLength = lip1->extLength +
901 (((li->extLength &
902 UDF_EXTENT_LENGTH_MASK) +
903 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700904 if (*endnum > (i + 2))
905 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200906 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800907 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700908 i--;
909 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800911 } else if (((li->extLength >> 30) ==
912 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
913 ((lip1->extLength >> 30) ==
914 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200915 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800916 ((li->extLength &
917 UDF_EXTENT_LENGTH_MASK) +
918 blocksize - 1) >> blocksize_bits);
919 li->extLocation.logicalBlockNum = 0;
920 li->extLocation.partitionReferenceNum = 0;
921
922 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
923 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
924 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
925 lip1->extLength = (lip1->extLength -
926 (li->extLength &
927 UDF_EXTENT_LENGTH_MASK) +
928 UDF_EXTENT_LENGTH_MASK) &
929 ~(blocksize - 1);
930 li->extLength = (li->extLength &
931 UDF_EXTENT_FLAG_MASK) +
932 (UDF_EXTENT_LENGTH_MASK + 1) -
933 blocksize;
934 } else {
935 li->extLength = lip1->extLength +
936 (((li->extLength &
937 UDF_EXTENT_LENGTH_MASK) +
938 blocksize - 1) & ~(blocksize - 1));
939 if (*endnum > (i + 2))
940 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200941 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800942 (*endnum - (i + 2)));
943 i--;
944 (*endnum)--;
945 }
946 } else if ((li->extLength >> 30) ==
947 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
948 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200949 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800950 ((li->extLength &
951 UDF_EXTENT_LENGTH_MASK) +
952 blocksize - 1) >> blocksize_bits);
953 li->extLocation.logicalBlockNum = 0;
954 li->extLocation.partitionReferenceNum = 0;
955 li->extLength = (li->extLength &
956 UDF_EXTENT_LENGTH_MASK) |
957 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959 }
960}
961
962static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200963 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700964 int startnum, int endnum,
965 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200968 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 uint32_t tmplen;
970
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700971 if (startnum > endnum) {
972 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700973 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700974 laarr[i].extLength);
975 } else if (startnum < endnum) {
976 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700977 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700978 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700979 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700980 &laarr[i].extLength, 1);
981 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700985 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700986 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200987 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990}
991
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700992struct buffer_head *udf_bread(struct inode *inode, int block,
993 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700995 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 bh = udf_getblk(inode, block, create, err);
998 if (!bh)
999 return NULL;
1000
1001 if (buffer_uptodate(bh))
1002 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 wait_on_buffer(bh);
1007 if (buffer_uptodate(bh))
1008 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 brelse(bh);
1011 *err = -EIO;
1012 return NULL;
1013}
1014
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001015void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
1017 int offset;
1018 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001019 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001022 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return;
1024 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1025 return;
1026
1027 lock_kernel();
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001028 iinfo = UDF_I(inode);
1029 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001030 if (inode->i_sb->s_blocksize <
1031 (udf_file_entry_alloc_offset(inode) +
1032 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001034 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1035 inode->i_size = iinfo->i_lenAlloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 unlock_kernel();
1037 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001038 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001040 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001042 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001043 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001044 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001045 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001047 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001048 block_truncate_page(inode->i_mapping, inode->i_size,
1049 udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 udf_truncate_extents(inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1054 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001055 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 else
1057 mark_inode_dirty(inode);
1058 unlock_kernel();
1059}
1060
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001061static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 struct buffer_head *bh = NULL;
1064 struct fileEntry *fe;
1065 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001066 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 /*
1069 * Set defaults, but the inode is still incomplete!
1070 * Note: get_new_inode() sets the following on a new inode:
1071 * i_sb = sb
1072 * i_no = ino
1073 * i_flags = sb->s_flags
1074 * i_state = 0
1075 * clean_inode(): zero fills and sets
1076 * i_count = 1
1077 * i_nlink = 1
1078 * i_op = NULL;
1079 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001080 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001081 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001083 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 make_bad_inode(inode);
1085 return;
1086 }
1087
1088 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001089 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001090 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1091 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001092 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 make_bad_inode(inode);
1094 return;
1095 }
1096
1097 fe = (struct fileEntry *)bh->b_data;
1098
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001099 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001100 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Pekka Enberg97e961f2008-10-15 12:29:03 +02001102 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001103 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001104 if (ident == TAG_IDENT_IE && ibh) {
1105 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001106 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001107 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001108
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001109 ie = (struct indirectEntry *)ibh->b_data;
1110 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001111
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001112 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001113 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001114 &ident))) {
1115 if (ident == TAG_IDENT_FE ||
1116 ident == TAG_IDENT_EFE) {
1117 memcpy(&iinfo->i_location,
1118 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001119 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001120 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001121 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001122 brelse(nbh);
1123 __udf_read_inode(inode);
1124 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001125 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001126 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001128 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001129 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001130 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001132 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001133 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 make_bad_inode(inode);
1135 return;
1136 }
1137 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001138
Jan Kara3bf25cb2007-05-08 00:35:16 -07001139 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
1141
1142static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1143{
1144 struct fileEntry *fe;
1145 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001147 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001148 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 fe = (struct fileEntry *)bh->b_data;
1151 efe = (struct extendedFileEntry *)bh->b_data;
1152
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001153 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001154 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001155 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001156 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001158 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001159 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001160 iinfo->i_unique = 0;
1161 iinfo->i_lenEAttr = 0;
1162 iinfo->i_lenExtents = 0;
1163 iinfo->i_lenAlloc = 0;
1164 iinfo->i_next_alloc_block = 0;
1165 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001166 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001167 iinfo->i_efe = 1;
1168 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001169 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1170 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001171 make_bad_inode(inode);
1172 return;
1173 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001174 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001175 bh->b_data + sizeof(struct extendedFileEntry),
1176 inode->i_sb->s_blocksize -
1177 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001178 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001179 iinfo->i_efe = 0;
1180 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001181 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1182 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001183 make_bad_inode(inode);
1184 return;
1185 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001186 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001187 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001188 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001189 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001190 iinfo->i_efe = 0;
1191 iinfo->i_use = 1;
1192 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001193 ((struct unallocSpaceEntry *)bh->b_data)->
1194 lengthAllocDescs);
1195 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1196 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001197 make_bad_inode(inode);
1198 return;
1199 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001200 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001201 bh->b_data + sizeof(struct unallocSpaceEntry),
1202 inode->i_sb->s_blocksize -
1203 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return;
1205 }
1206
1207 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001208 if (inode->i_uid == -1 ||
1209 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1210 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001211 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001214 if (inode->i_gid == -1 ||
1215 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1216 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001217 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1220 if (!inode->i_nlink)
1221 inode->i_nlink = 1;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 inode->i_size = le64_to_cpu(fe->informationLength);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001224 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001226 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001227 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001228 inode->i_mode = sbi->s_fmode;
1229 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001230 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001231 inode->i_mode = sbi->s_dmode;
1232 else
1233 inode->i_mode = udf_convert_permissions(fe);
1234 inode->i_mode &= ~sbi->s_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001236 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001238 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Marcin Slusarz56774802008-02-10 11:25:31 +01001240 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001241 inode->i_atime = sbi->s_record_time;
1242
Marcin Slusarz56774802008-02-10 11:25:31 +01001243 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1244 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001245 inode->i_mtime = sbi->s_record_time;
1246
Marcin Slusarz56774802008-02-10 11:25:31 +01001247 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001248 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001250 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1251 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1252 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1253 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001254 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001255 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001256 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Marcin Slusarz56774802008-02-10 11:25:31 +01001258 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001259 inode->i_atime = sbi->s_record_time;
1260
Marcin Slusarz56774802008-02-10 11:25:31 +01001261 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1262 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001263 inode->i_mtime = sbi->s_record_time;
1264
Marcin Slusarz56774802008-02-10 11:25:31 +01001265 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001266 iinfo->i_crtime = sbi->s_record_time;
1267
Marcin Slusarz56774802008-02-10 11:25:31 +01001268 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001269 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001271 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1272 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1273 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001274 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001275 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001278 switch (fe->icbTag.fileType) {
1279 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001280 inode->i_op = &udf_dir_inode_operations;
1281 inode->i_fop = &udf_dir_operations;
1282 inode->i_mode |= S_IFDIR;
1283 inc_nlink(inode);
1284 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001285 case ICBTAG_FILE_TYPE_REALTIME:
1286 case ICBTAG_FILE_TYPE_REGULAR:
1287 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001288 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001289 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001290 inode->i_data.a_ops = &udf_adinicb_aops;
1291 else
1292 inode->i_data.a_ops = &udf_aops;
1293 inode->i_op = &udf_file_inode_operations;
1294 inode->i_fop = &udf_file_operations;
1295 inode->i_mode |= S_IFREG;
1296 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001297 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001298 inode->i_mode |= S_IFBLK;
1299 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001300 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001301 inode->i_mode |= S_IFCHR;
1302 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001304 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1305 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001306 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001307 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1308 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001309 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001310 inode->i_data.a_ops = &udf_symlink_aops;
1311 inode->i_op = &page_symlink_inode_operations;
1312 inode->i_mode = S_IFLNK | S_IRWXUGO;
1313 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001314 case ICBTAG_FILE_TYPE_MAIN:
1315 udf_debug("METADATA FILE-----\n");
1316 break;
1317 case ICBTAG_FILE_TYPE_MIRROR:
1318 udf_debug("METADATA MIRROR FILE-----\n");
1319 break;
1320 case ICBTAG_FILE_TYPE_BITMAP:
1321 udf_debug("METADATA BITMAP FILE-----\n");
1322 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001323 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001324 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1325 "file type=%d\n", inode->i_ino,
1326 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001327 make_bad_inode(inode);
1328 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001330 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001331 struct deviceSpec *dsea =
1332 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001333 if (dsea) {
1334 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001335 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1336 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001338 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341}
1342
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001343static int udf_alloc_i_data(struct inode *inode, size_t size)
1344{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001345 struct udf_inode_info *iinfo = UDF_I(inode);
1346 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001347
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001348 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001349 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1350 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001351 return -ENOMEM;
1352 }
1353
1354 return 0;
1355}
1356
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001357static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 mode_t mode;
1360 uint32_t permissions;
1361 uint32_t flags;
1362
1363 permissions = le32_to_cpu(fe->permissions);
1364 flags = le16_to_cpu(fe->icbTag.flags);
1365
Marcin Slusarz4b111112008-02-08 04:20:36 -08001366 mode = ((permissions) & S_IRWXO) |
1367 ((permissions >> 2) & S_IRWXG) |
1368 ((permissions >> 4) & S_IRWXU) |
1369 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1370 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1371 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 return mode;
1374}
1375
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001376int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 int ret;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 lock_kernel();
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001381 ret = udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return ret;
1385}
1386
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001387int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
1389 return udf_update_inode(inode, 1);
1390}
1391
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001392static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct buffer_head *bh = NULL;
1395 struct fileEntry *fe;
1396 struct extendedFileEntry *efe;
1397 uint32_t udfperms;
1398 uint16_t icbflags;
1399 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001401 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001402 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001403 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Marcin Slusarz4b111112008-02-08 04:20:36 -08001405 bh = udf_tread(inode->i_sb,
1406 udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001407 &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001408 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 udf_debug("bread failure\n");
1410 return -EIO;
1411 }
1412
1413 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
1414
1415 fe = (struct fileEntry *)bh->b_data;
1416 efe = (struct extendedFileEntry *)bh->b_data;
1417
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001418 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001420 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001422 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001423 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001424 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001425 sizeof(struct unallocSpaceEntry));
1426 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001427 iinfo->i_lenAlloc - sizeof(struct tag);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001428 use->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001429 iinfo->i_location.
Marcin Slusarz4b111112008-02-08 04:20:36 -08001430 logicalBlockNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001432 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001433 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001434 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001435 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 mark_buffer_dirty(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001438 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return err;
1440 }
1441
Phillip Susi4d6660e2006-03-07 21:55:24 -08001442 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1443 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001444 else
1445 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Phillip Susi4d6660e2006-03-07 21:55:24 -08001447 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1448 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001449 else
1450 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Marcin Slusarz4b111112008-02-08 04:20:36 -08001452 udfperms = ((inode->i_mode & S_IRWXO)) |
1453 ((inode->i_mode & S_IRWXG) << 2) |
1454 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Marcin Slusarz4b111112008-02-08 04:20:36 -08001456 udfperms |= (le32_to_cpu(fe->permissions) &
1457 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1458 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1459 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 fe->permissions = cpu_to_le32(udfperms);
1461
1462 if (S_ISDIR(inode->i_mode))
1463 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1464 else
1465 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1466
1467 fe->informationLength = cpu_to_le64(inode->i_size);
1468
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001469 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001470 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001471 struct deviceSpec *dsea =
1472 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001473 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001475 udf_add_extendedattr(inode,
1476 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001477 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 dsea->attrType = cpu_to_le32(12);
1479 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001480 dsea->attrLength = cpu_to_le32(
1481 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001482 sizeof(struct regid));
1483 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001485 eid = (struct regid *)dsea->impUse;
1486 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 strcpy(eid->ident, UDF_ID_DEVELOPER);
1488 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1489 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1490 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1491 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1492 }
1493
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001494 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001495 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001496 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001497 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001498 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001499 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1500 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Marcin Slusarz56774802008-02-10 11:25:31 +01001502 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1503 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1504 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001505 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1507 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1508 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001509 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1510 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1511 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1513 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001514 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001515 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001516 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001517 inode->i_sb->s_blocksize -
1518 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001520 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001521 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1522 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001524 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1525 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1526 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1527 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001528
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001529 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1530 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1531 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1532 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001533
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001534 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1535 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1536 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1537 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Marcin Slusarz56774802008-02-10 11:25:31 +01001539 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1540 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1541 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1542 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001544 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1546 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1547 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001548 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1549 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1550 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1552 crclen = sizeof(struct extendedFileEntry);
1553 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001554 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 fe->icbTag.strategyType = cpu_to_le16(4096);
1556 fe->icbTag.strategyParameter = cpu_to_le16(1);
1557 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001558 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 fe->icbTag.strategyType = cpu_to_le16(4);
1560 fe->icbTag.numEntries = cpu_to_le16(1);
1561 }
1562
1563 if (S_ISDIR(inode->i_mode))
1564 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1565 else if (S_ISREG(inode->i_mode))
1566 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1567 else if (S_ISLNK(inode->i_mode))
1568 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1569 else if (S_ISBLK(inode->i_mode))
1570 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1571 else if (S_ISCHR(inode->i_mode))
1572 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1573 else if (S_ISFIFO(inode->i_mode))
1574 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1575 else if (S_ISSOCK(inode->i_mode))
1576 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1577
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001578 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001579 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1580 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1581 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1582 (le16_to_cpu(fe->icbTag.flags) &
1583 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1584 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001587 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 fe->descTag.descVersion = cpu_to_le16(3);
1589 else
1590 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001591 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001592 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001593 iinfo->i_location.logicalBlockNum);
1594 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc -
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001595 sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001597 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001598 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001599 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /* write the data blocks */
1602 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001603 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 sync_dirty_buffer(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001605 if (buffer_req(bh) && !buffer_uptodate(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001606 printk(KERN_WARNING "IO error syncing udf inode "
1607 "[%s:%08lx]\n", inode->i_sb->s_id,
1608 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 err = -EIO;
1610 }
1611 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001612 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return err;
1615}
1616
Pekka Enberg97e961f2008-10-15 12:29:03 +02001617struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1620 struct inode *inode = iget_locked(sb, block);
1621
1622 if (!inode)
1623 return NULL;
1624
1625 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001626 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 __udf_read_inode(inode);
1628 unlock_new_inode(inode);
1629 }
1630
1631 if (is_bad_inode(inode))
1632 goto out_iput;
1633
Pekka Enberg97e961f2008-10-15 12:29:03 +02001634 if (ino->logicalBlockNum >= UDF_SB(sb)->
1635 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001637 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 make_bad_inode(inode);
1639 goto out_iput;
1640 }
1641
1642 return inode;
1643
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001644 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 iput(inode);
1646 return NULL;
1647}
1648
Marcin Slusarz4b111112008-02-08 04:20:36 -08001649int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001650 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001653 struct short_ad *sad = NULL;
1654 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 struct allocExtDesc *aed;
1656 int8_t etype;
1657 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001658 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Jan Karaff116fc2007-05-08 00:35:14 -07001660 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001661 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001662 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001663 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 else
Jan Karaff116fc2007-05-08 00:35:14 -07001665 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001667 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001668 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001669 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001670 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 else
1672 return -1;
1673
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001674 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001675 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 struct buffer_head *nbh;
1677 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001678 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Marcin Slusarz4b111112008-02-08 04:20:36 -08001680 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1681 obloc.partitionReferenceNum,
1682 obloc.logicalBlockNum, &err);
1683 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001685 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001686 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001687 0));
1688 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 lock_buffer(nbh);
1691 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1692 set_buffer_uptodate(nbh);
1693 unlock_buffer(nbh);
1694 mark_buffer_dirty_inode(nbh, inode);
1695
1696 aed = (struct allocExtDesc *)(nbh->b_data);
1697 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001698 aed->previousAllocExtLocation =
1699 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001700 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001701 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 aed->lengthAllocDescs = cpu_to_le32(adsize);
1703 sptr = ptr - adsize;
1704 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1705 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001706 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001707 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001708 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 aed->lengthAllocDescs = cpu_to_le32(0);
1710 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001711 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001713 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001714 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001715 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001716 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001717 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 mark_inode_dirty(inode);
1719 }
1720 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001721 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001723 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 else
1725 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001726 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001727 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001728 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001729 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001730 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1731 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001732 sad->extPosition =
1733 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001734 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001735 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001736 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001737 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1738 inode->i_sb->s_blocksize);
1739 lad->extLocation = cpu_to_lelb(epos->block);
1740 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1741 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001743 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001744 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001745 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001746 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001748 udf_update_tag(epos->bh->b_data,
1749 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001750 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001751 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001752 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001754 }
Jan Karaff116fc2007-05-08 00:35:14 -07001755 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757
Jan Karaff116fc2007-05-08 00:35:14 -07001758 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001760 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001761 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001763 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001764 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001765 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001766 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1767 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1768 udf_update_tag(epos->bh->b_data,
1769 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001771 udf_update_tag(epos->bh->b_data,
1772 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001773 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775
1776 return etype;
1777}
1778
Marcin Slusarz4b111112008-02-08 04:20:36 -08001779int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001780 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
1782 int adsize;
1783 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001784 struct short_ad *sad;
1785 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001786 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Jan Karaff116fc2007-05-08 00:35:14 -07001788 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001789 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001790 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001791 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 else
Jan Karaff116fc2007-05-08 00:35:14 -07001793 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001795 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001796 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001797 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001798 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001799 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001800 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001801 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001802 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001803 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001804 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001805 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001806 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001807 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001808 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001809 default:
1810 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001813 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001814 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001815 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001816 struct allocExtDesc *aed =
1817 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001818 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001819 le32_to_cpu(aed->lengthAllocDescs) +
1820 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
Jan Karaff116fc2007-05-08 00:35:14 -07001822 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001823 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001828 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return (elen >> 30);
1831}
1832
Marcin Slusarz4b111112008-02-08 04:20:36 -08001833int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001834 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 int8_t etype;
1837
Jan Karaff116fc2007-05-08 00:35:14 -07001838 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001839 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001840 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001841 epos->block = *eloc;
1842 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001843 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001844 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001845 epos->bh = udf_tread(inode->i_sb, block);
1846 if (!epos->bh) {
1847 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return -1;
1849 }
1850 }
1851
1852 return etype;
1853}
1854
Marcin Slusarz4b111112008-02-08 04:20:36 -08001855int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001856 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 int alen;
1859 int8_t etype;
1860 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001861 struct short_ad *sad;
1862 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001863 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001864
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001865 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001866 if (!epos->offset)
1867 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001868 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001869 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001870 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001871 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001872 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001873 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001874 if (!epos->offset)
1875 epos->offset = sizeof(struct allocExtDesc);
1876 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001877 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001878 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1879 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
1881
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001882 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001883 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001884 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1885 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001887 etype = le32_to_cpu(sad->extLength) >> 30;
1888 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001889 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001890 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001891 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1892 break;
1893 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001894 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1895 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001896 return -1;
1897 etype = le32_to_cpu(lad->extLength) >> 30;
1898 *eloc = lelb_to_cpu(lad->extLocation);
1899 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1900 break;
1901 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001902 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001903 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001904 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
1907 return etype;
1908}
1909
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001910static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001911 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001913 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 uint32_t oelen;
1915 int8_t etype;
1916
Jan Karaff116fc2007-05-08 00:35:14 -07001917 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001918 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001920 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001921 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 neloc = oeloc;
1923 nelen = (etype << 30) | oelen;
1924 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001925 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001926 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 return (nelen >> 30);
1929}
1930
Marcin Slusarz4b111112008-02-08 04:20:36 -08001931int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001932 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Jan Karaff116fc2007-05-08 00:35:14 -07001934 struct extent_position oepos;
1935 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 int8_t etype;
1937 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001938 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001940 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001941 get_bh(epos.bh);
1942 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001945 iinfo = UDF_I(inode);
1946 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001947 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001948 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001949 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 else
1951 adsize = 0;
1952
Jan Karaff116fc2007-05-08 00:35:14 -07001953 oepos = epos;
1954 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return -1;
1956
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001957 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001958 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001959 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001960 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001961 brelse(oepos.bh);
1962 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001963 oepos.bh = epos.bh;
1964 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001967 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 elen = 0;
1969
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001970 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001971 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1972 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1973 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001974 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001975 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001977 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001978 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001979 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001980 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001981 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001982 udf_update_tag(oepos.bh->b_data,
1983 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001985 udf_update_tag(oepos.bh->b_data,
1986 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001987 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001989 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001990 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001991 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001992 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001994 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001995 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001996 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001997 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001998 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001999 udf_update_tag(oepos.bh->b_data,
2000 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002002 udf_update_tag(oepos.bh->b_data,
2003 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002004 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002007
Jan Kara3bf25cb2007-05-08 00:35:16 -07002008 brelse(epos.bh);
2009 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return (elen >> 30);
2012}
2013
Marcin Slusarz4b111112008-02-08 04:20:36 -08002014int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002015 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002018 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002019 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002020 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002022 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002024 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002025 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002026 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002027 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002030 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2032 if (etype == -1) {
2033 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002034 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return -1;
2036 }
2037 lbcount += *elen;
2038 } while (lbcount <= bcount);
2039
Marcin Slusarz4b111112008-02-08 04:20:36 -08002040 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 return etype;
2043}
2044
Jan Kara60448b12007-05-08 00:35:13 -07002045long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002047 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002048 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002049 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002050 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 int ret;
2052
2053 lock_kernel();
2054
Marcin Slusarz4b111112008-02-08 04:20:36 -08002055 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2056 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002057 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 else
2059 ret = 0;
2060
2061 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07002062 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2065 return udf_fixed_to_variable(ret);
2066 else
2067 return ret;
2068}