blob: c6a2e782b97b17d881fb7db61d798c51adf738d3 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
37#include <linux/writeback.h>
38#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020039#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "udf_i.h"
42#include "udf_sb.h"
43
44MODULE_AUTHOR("Ben Fennema");
45MODULE_DESCRIPTION("Universal Disk Format Filesystem");
46MODULE_LICENSE("GPL");
47
48#define EXTENT_MERGE_SIZE 5
49
50static mode_t udf_convert_permissions(struct fileEntry *);
51static int udf_update_inode(struct inode *, int);
52static void udf_fill_inode(struct inode *, struct buffer_head *);
Jan Kara49521de2010-10-20 17:42:44 +020053static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070055static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080056 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070057static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020058 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020060 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020062 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020064 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020066 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070067 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
Christoph Hellwigb1e32122008-02-22 12:38:48 +010070
Al Viro3aac2b62010-06-07 00:43:39 -040071void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Jan Kara2c948b32009-12-03 13:39:28 +010073 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040074 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010075
Al Viro3aac2b62010-06-07 00:43:39 -040076 truncate_inode_pages(&inode->i_data, 0);
77
78 if (!inode->i_nlink && !is_bad_inode(inode)) {
79 want_delete = 1;
80 inode->i_size = 0;
81 udf_truncate(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040082 udf_update_inode(inode, IS_SYNC(inode));
Al Viro3aac2b62010-06-07 00:43:39 -040083 }
84 invalidate_inode_buffers(inode);
85 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010086 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
87 inode->i_size != iinfo->i_lenExtents) {
88 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
Daniel Mack1537a362010-01-29 15:57:49 +080089 "inode size %llu different from extent length %llu. "
Jan Kara2c948b32009-12-03 13:39:28 +010090 "Filesystem need not be standards compliant.\n",
91 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
92 (unsigned long long)inode->i_size,
93 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080095 kfree(iinfo->i_ext.i_data);
96 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040097 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -040098 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static int udf_writepage(struct page *page, struct writeback_control *wbc)
103{
104 return block_write_full_page(page, udf_get_block, wbc);
105}
106
107static int udf_readpage(struct file *file, struct page *page)
108{
109 return block_read_full_page(page, udf_get_block);
110}
111
Nick Pigginbe021ee2007-10-16 01:25:20 -0700112static int udf_write_begin(struct file *file, struct address_space *mapping,
113 loff_t pos, unsigned len, unsigned flags,
114 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200116 int ret;
117
118 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
119 if (unlikely(ret)) {
120 loff_t isize = mapping->host->i_size;
121 if (pos + len > isize)
122 vmtruncate(mapping->host, isize);
123 }
124
125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static sector_t udf_bmap(struct address_space *mapping, sector_t block)
129{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700130 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700133const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700134 .readpage = udf_readpage,
135 .writepage = udf_writepage,
136 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700137 .write_begin = udf_write_begin,
138 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700139 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700142void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct page *page;
145 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800146 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 struct writeback_control udf_wbc = {
148 .sync_mode = WB_SYNC_NONE,
149 .nr_to_write = 1,
150 };
151
152 /* from now on we have normal address_space methods */
153 inode->i_data.a_ops = &udf_aops;
154
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800155 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800157 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800159 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 mark_inode_dirty(inode);
161 return;
162 }
163
164 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700165 BUG_ON(!PageLocked(page));
166
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700167 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800169 memset(kaddr + iinfo->i_lenAlloc, 0x00,
170 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
171 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
172 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 flush_dcache_page(page);
174 SetPageUptodate(page);
175 kunmap(page);
176 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800177 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
178 iinfo->i_lenAlloc);
179 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800181 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800183 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 inode->i_data.a_ops->writepage(page, &udf_wbc);
186 page_cache_release(page);
187
188 mark_inode_dirty(inode);
189}
190
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
192 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700195 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200196 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700198 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800201 loff_t f_pos = udf_ext0_offset(inode);
202 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800204 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
207 alloctype = ICBTAG_FLAG_AD_SHORT;
208 else
209 alloctype = ICBTAG_FLAG_AD_LONG;
210
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700211 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800212 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 mark_inode_dirty(inode);
214 return NULL;
215 }
216
217 /* alloc block, and copy data to it */
218 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800219 iinfo->i_location.partitionReferenceNum,
220 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!(*block))
222 return NULL;
223 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800224 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800225 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!newblock)
227 return NULL;
228 dbh = udf_tgetblk(inode->i_sb, newblock);
229 if (!dbh)
230 return NULL;
231 lock_buffer(dbh);
232 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
233 set_buffer_uptodate(dbh);
234 unlock_buffer(dbh);
235 mark_buffer_dirty_inode(dbh, inode);
236
Marcin Slusarz4b111112008-02-08 04:20:36 -0800237 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800238 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700239 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 dfibh.soffset = dfibh.eoffset = 0;
241 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800242 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800243 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800244 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
245 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700246 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700247 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return NULL;
249 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800250 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 sfi->descTag.tagLocation = cpu_to_le32(*block);
252 dfibh.soffset = dfibh.eoffset;
253 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
254 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
255 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800256 sfi->fileIdent +
257 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800258 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700259 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return NULL;
261 }
262 }
263 mark_buffer_dirty_inode(dbh, inode);
264
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800265 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
266 iinfo->i_lenAlloc);
267 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800269 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800270 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100271 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700272 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800273 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700274 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100275 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* UniqueID stuff */
277
Jan Kara3bf25cb2007-05-08 00:35:16 -0700278 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 mark_inode_dirty(inode);
280 return dbh;
281}
282
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700283static int udf_get_block(struct inode *inode, sector_t block,
284 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 int err, new;
287 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800288 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800289 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700291 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 phys = udf_block_map(inode, block);
293 if (phys)
294 map_bh(bh_result, inode->i_sb, phys);
295 return 0;
296 }
297
298 err = -EIO;
299 new = 0;
300 bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800301 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100302
303 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800304 if (block == iinfo->i_next_alloc_block + 1) {
305 iinfo->i_next_alloc_block++;
306 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
309 err = 0;
310
311 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200312 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (err)
314 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200315 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (new)
318 set_buffer_new(bh_result);
319 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700320
321abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100322 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700326static struct buffer_head *udf_getblk(struct inode *inode, long block,
327 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700329 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct buffer_head dummy;
331
332 dummy.b_state = 0;
333 dummy.b_blocknr = -1000;
334 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700335 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700337 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 lock_buffer(bh);
339 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
340 set_buffer_uptodate(bh);
341 unlock_buffer(bh);
342 mark_buffer_dirty_inode(bh, inode);
343 }
344 return bh;
345 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return NULL;
348}
349
Jan Kara31170b62007-05-08 00:35:21 -0700350/* Extend the file by 'blocks' blocks, return the number of extents added */
351int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200352 struct kernel_long_ad *last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700353{
354 sector_t add;
355 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
356 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200357 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700358 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800359 struct udf_inode_info *iinfo;
Jan Kara31170b62007-05-08 00:35:21 -0700360
361 /* The previous extent is fake and we should not extend by anything
362 * - there's nothing to do... */
363 if (!blocks && fake)
364 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700365
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800366 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700367 /* Round the last extent up to a multiple of block size */
368 if (last_ext->extLength & (sb->s_blocksize - 1)) {
369 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700370 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
371 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
372 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800373 iinfo->i_lenExtents =
374 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700375 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700376 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700377
Jan Kara31170b62007-05-08 00:35:21 -0700378 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800379 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
380 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700381 /* Save the extent so that we can reattach it to the end */
382 prealloc_loc = last_ext->extLocation;
383 prealloc_len = last_ext->extLength;
384 /* Mark the extent as a hole */
385 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700386 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700387 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800388 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700389 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700390
Jan Kara31170b62007-05-08 00:35:21 -0700391 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800392 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
393 EXT_NOT_RECORDED_NOT_ALLOCATED) {
394 add = ((1 << 30) - sb->s_blocksize -
395 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
396 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700397 if (add > blocks)
398 add = blocks;
399 blocks -= add;
400 last_ext->extLength += add << sb->s_blocksize_bits;
401 }
402
403 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200404 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700405 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700406 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800407 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200408 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800409 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700410
Jan Kara31170b62007-05-08 00:35:21 -0700411 /* Managed to do everything necessary? */
412 if (!blocks)
413 goto out;
414
415 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
416 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800417 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700418 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800419 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
420 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700421
Jan Kara31170b62007-05-08 00:35:21 -0700422 /* Create enough extents to cover the whole hole */
423 while (blocks > add) {
424 blocks -= add;
Pekka Enberg97e961f2008-10-15 12:29:03 +0200425 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700426 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700427 return -1;
428 count++;
429 }
430 if (blocks) {
431 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700432 (blocks << sb->s_blocksize_bits);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200433 if (udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700434 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700435 return -1;
436 count++;
437 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700438
439out:
Jan Kara31170b62007-05-08 00:35:21 -0700440 /* Do we have some preallocated blocks saved? */
441 if (prealloc_len) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200442 if (udf_add_aext(inode, last_pos, &prealloc_loc,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800443 prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700444 return -1;
445 last_ext->extLocation = prealloc_loc;
446 last_ext->extLength = prealloc_len;
447 count++;
448 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700449
Jan Kara31170b62007-05-08 00:35:21 -0700450 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800451 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200452 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800453 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200454 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700455 else
456 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700457
Jan Kara31170b62007-05-08 00:35:21 -0700458 return count;
459}
460
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700461static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800462 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Jan Kara31170b62007-05-08 00:35:21 -0700464 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700465 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200466 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700467 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700469 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200470 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700472 loff_t lbcount = 0, b_off = 0;
473 uint32_t newblocknum, newblock;
474 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800476 struct udf_inode_info *iinfo = UDF_I(inode);
477 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700478 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Jan Karaff116fc2007-05-08 00:35:14 -0700480 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800481 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700482 prev_epos.bh = NULL;
483 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700484 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700487 alternate between laarr[0] and laarr[1] for locations of the
488 current extent, and the previous extent */
489 do {
490 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700491 brelse(prev_epos.bh);
492 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700493 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700495 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700496 brelse(cur_epos.bh);
497 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700498 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
501 lbcount += elen;
502
Jan Karaff116fc2007-05-08 00:35:14 -0700503 prev_epos.block = cur_epos.block;
504 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Jan Karaff116fc2007-05-08 00:35:14 -0700506 prev_epos.offset = cur_epos.offset;
507 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Marcin Slusarz4b111112008-02-08 04:20:36 -0800509 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
510 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512
513 c = !c;
514
515 laarr[c].extLength = (etype << 30) | elen;
516 laarr[c].extLocation = eloc;
517
518 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
519 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700520 ((elen + inode->i_sb->s_blocksize - 1) >>
521 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700523 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 } while (lbcount + elen <= b_off);
525
526 b_off -= lbcount;
527 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700528 /*
529 * Move prev_epos and cur_epos into indirect extent if we are at
530 * the pointer to it
531 */
532 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
533 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700536 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700538 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
539 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700541 ((elen + inode->i_sb->s_blocksize - 1) &
542 ~(inode->i_sb->s_blocksize - 1));
Pekka Enberg97e961f2008-10-15 12:29:03 +0200543 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700545 brelse(prev_epos.bh);
546 brelse(cur_epos.bh);
547 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200548 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *phys = newblock;
550 return NULL;
551 }
552
Jan Kara31170b62007-05-08 00:35:21 -0700553 last_block = block;
554 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700555 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700556 int ret;
557
558 if (count) {
559 if (c)
560 laarr[0] = laarr[1];
561 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700562 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700563 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800564 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200565 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700566 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800567 /* Will udf_extend_file() create real extent from
568 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700569 startnum = (offset > 0);
570 }
571 /* Create extents for the hole between EOF and offset */
572 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
573 if (ret == -1) {
574 brelse(prev_epos.bh);
575 brelse(cur_epos.bh);
576 brelse(next_epos.bh);
577 /* We don't really know the error here so we just make
578 * something up */
579 *err = -ENOSPC;
580 return NULL;
581 }
582 c = 0;
583 offset = 0;
584 count += ret;
585 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800586 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
587 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700588 /* Is there any real extent? - otherwise we overwrite
589 * the fake one... */
590 if (count)
591 c = !c;
592 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700593 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800594 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200595 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700596 count++;
597 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700598 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700599 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700601 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 endnum = startnum = ((count > 2) ? 2 : count);
603
Marcin Slusarz4b111112008-02-08 04:20:36 -0800604 /* if the current extent is in position 0,
605 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700607 laarr[2] = laarr[0];
608 laarr[0] = laarr[1];
609 laarr[1] = laarr[2];
610 c = 1;
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Marcin Slusarz4b111112008-02-08 04:20:36 -0800613 /* if the current block is located in an extent,
614 read the next extent */
615 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
616 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700617 laarr[c + 1].extLength = (etype << 30) | elen;
618 laarr[c + 1].extLocation = eloc;
619 count++;
620 startnum++;
621 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800622 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 lastblock = 1;
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700627 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800628 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800630 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800631 if (iinfo->i_next_alloc_block == block)
632 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700634 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800635 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800636 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Marcin Slusarz4b111112008-02-08 04:20:36 -0800639 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800640 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800641 goal, err);
642 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700643 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 *err = -ENOSPC;
645 return NULL;
646 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800647 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Marcin Slusarz4b111112008-02-08 04:20:36 -0800650 /* if the extent the requsted block is located in contains multiple
651 * blocks, split the extent into at most three extents. blocks prior
652 * to requested block, requested block, and blocks after requested
653 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
655
656#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200657 /* We preallocate blocks only for regular files. It also makes sense
658 * for directories but there's a problem when to drop the
659 * preallocation. We might use some delayed work for that but I feel
660 * it's overengineering for a filesystem like UDF. */
661 if (S_ISREG(inode->i_mode))
662 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#endif
664
665 /* merge any continuous blocks in laarr */
666 udf_merge_extents(inode, laarr, &endnum);
667
668 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700669 * of extents is greater than the old number, and deleting extents if
670 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700671 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jan Kara3bf25cb2007-05-08 00:35:16 -0700673 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Marcin Slusarz4b111112008-02-08 04:20:36 -0800675 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800676 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800677 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *phys = newblock;
680 *err = 0;
681 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800682 iinfo->i_next_alloc_block = block;
683 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 inode->i_ctime = current_fs_time(inode->i_sb);
685
686 if (IS_SYNC(inode))
687 udf_sync_inode(inode);
688 else
689 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return result;
692}
693
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700694static void udf_split_extents(struct inode *inode, int *c, int offset,
695 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200696 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700697 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800699 unsigned long blocksize = inode->i_sb->s_blocksize;
700 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800703 (laarr[*c].extLength >> 30) ==
704 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int curr = *c;
706 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800707 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int8_t etype = (laarr[curr].extLength >> 30);
709
Marcin Slusarz4b111112008-02-08 04:20:36 -0800710 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700711 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800712 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700713 laarr[curr + 2] = laarr[curr + 1];
714 laarr[curr + 1] = laarr[curr];
715 } else {
716 laarr[curr + 3] = laarr[curr + 1];
717 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 if (offset) {
721 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800722 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200723 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800724 0, offset);
725 laarr[curr].extLength =
726 EXT_NOT_RECORDED_NOT_ALLOCATED |
727 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800729 laarr[curr].extLocation.
730 partitionReferenceNum = 0;
731 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800733 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700734 curr++;
735 (*c)++;
736 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 laarr[curr].extLocation.logicalBlockNum = newblocknum;
740 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
741 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800742 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800744 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700745 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700747 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800749 laarr[curr].extLocation.logicalBlockNum +=
750 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700751 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800752 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700753 curr++;
754 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756 }
757}
758
759static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200760 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700761 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 int start, length = 0, currlength = 0, i;
764
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!lastblock)
767 return;
768 else
769 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700770 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800771 if ((laarr[c + 1].extLength >> 30) ==
772 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700773 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800774 length = currlength =
775 (((laarr[c + 1].extLength &
776 UDF_EXTENT_LENGTH_MASK) +
777 inode->i_sb->s_blocksize - 1) >>
778 inode->i_sb->s_blocksize_bits);
779 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 start = c;
781 }
782
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700783 for (i = start + 1; i <= *endnum; i++) {
784 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (lastblock)
786 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800787 } else if ((laarr[i].extLength >> 30) ==
788 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
789 length += (((laarr[i].extLength &
790 UDF_EXTENT_LENGTH_MASK) +
791 inode->i_sb->s_blocksize - 1) >>
792 inode->i_sb->s_blocksize_bits);
793 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 }
796
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700797 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700799 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800800 inode->i_sb->s_blocksize - 1) >>
801 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800803 laarr[start].extLocation.partitionReferenceNum,
804 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
805 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
806 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700807 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800808 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800810 (numalloc <<
811 inode->i_sb->s_blocksize_bits);
812 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700813 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200814 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700815 (*endnum)++;
816 laarr[c + 1].extLocation.logicalBlockNum = next;
817 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800818 laarr[c].extLocation.
819 partitionReferenceNum;
820 laarr[c + 1].extLength =
821 EXT_NOT_RECORDED_ALLOCATED |
822 (numalloc <<
823 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700824 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700827 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800828 int elen = ((laarr[i].extLength &
829 UDF_EXTENT_LENGTH_MASK) +
830 inode->i_sb->s_blocksize - 1) >>
831 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700833 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800835 (numalloc <<
836 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700838 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700840 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800841 memmove(&laarr[i],
842 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200843 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800844 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700845 i--;
846 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800849 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800850 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 }
853}
854
855static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200856 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700857 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800860 unsigned long blocksize = inode->i_sb->s_blocksize;
861 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700863 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200864 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
865 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Marcin Slusarz4b111112008-02-08 04:20:36 -0800867 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
868 (((li->extLength >> 30) ==
869 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
870 ((lip1->extLocation.logicalBlockNum -
871 li->extLocation.logicalBlockNum) ==
872 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
873 blocksize - 1) >> blocksize_bits)))) {
874
875 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
876 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
877 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
878 lip1->extLength = (lip1->extLength -
879 (li->extLength &
880 UDF_EXTENT_LENGTH_MASK) +
881 UDF_EXTENT_LENGTH_MASK) &
882 ~(blocksize - 1);
883 li->extLength = (li->extLength &
884 UDF_EXTENT_FLAG_MASK) +
885 (UDF_EXTENT_LENGTH_MASK + 1) -
886 blocksize;
887 lip1->extLocation.logicalBlockNum =
888 li->extLocation.logicalBlockNum +
889 ((li->extLength &
890 UDF_EXTENT_LENGTH_MASK) >>
891 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700892 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800893 li->extLength = lip1->extLength +
894 (((li->extLength &
895 UDF_EXTENT_LENGTH_MASK) +
896 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700897 if (*endnum > (i + 2))
898 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200899 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800900 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700901 i--;
902 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800904 } else if (((li->extLength >> 30) ==
905 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
906 ((lip1->extLength >> 30) ==
907 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200908 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800909 ((li->extLength &
910 UDF_EXTENT_LENGTH_MASK) +
911 blocksize - 1) >> blocksize_bits);
912 li->extLocation.logicalBlockNum = 0;
913 li->extLocation.partitionReferenceNum = 0;
914
915 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
916 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
917 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
918 lip1->extLength = (lip1->extLength -
919 (li->extLength &
920 UDF_EXTENT_LENGTH_MASK) +
921 UDF_EXTENT_LENGTH_MASK) &
922 ~(blocksize - 1);
923 li->extLength = (li->extLength &
924 UDF_EXTENT_FLAG_MASK) +
925 (UDF_EXTENT_LENGTH_MASK + 1) -
926 blocksize;
927 } else {
928 li->extLength = lip1->extLength +
929 (((li->extLength &
930 UDF_EXTENT_LENGTH_MASK) +
931 blocksize - 1) & ~(blocksize - 1));
932 if (*endnum > (i + 2))
933 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200934 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800935 (*endnum - (i + 2)));
936 i--;
937 (*endnum)--;
938 }
939 } else if ((li->extLength >> 30) ==
940 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
941 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200942 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800943 ((li->extLength &
944 UDF_EXTENT_LENGTH_MASK) +
945 blocksize - 1) >> blocksize_bits);
946 li->extLocation.logicalBlockNum = 0;
947 li->extLocation.partitionReferenceNum = 0;
948 li->extLength = (li->extLength &
949 UDF_EXTENT_LENGTH_MASK) |
950 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 }
953}
954
955static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200956 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700957 int startnum, int endnum,
958 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200961 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 uint32_t tmplen;
963
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700964 if (startnum > endnum) {
965 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700966 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700967 laarr[i].extLength);
968 } else if (startnum < endnum) {
969 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700970 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700971 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700972 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700973 &laarr[i].extLength, 1);
974 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976 }
977
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700978 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700979 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200980 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700981 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983}
984
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700985struct buffer_head *udf_bread(struct inode *inode, int block,
986 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 bh = udf_getblk(inode, block, create, err);
991 if (!bh)
992 return NULL;
993
994 if (buffer_uptodate(bh))
995 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 wait_on_buffer(bh);
1000 if (buffer_uptodate(bh))
1001 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 brelse(bh);
1004 *err = -EIO;
1005 return NULL;
1006}
1007
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001008void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 int offset;
1011 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001012 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001015 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return;
1017 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1018 return;
1019
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001020 iinfo = UDF_I(inode);
1021 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001022 down_write(&iinfo->i_data_sem);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001023 if (inode->i_sb->s_blocksize <
1024 (udf_file_entry_alloc_offset(inode) +
1025 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 udf_expand_file_adinicb(inode, inode->i_size, &err);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001027 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1028 inode->i_size = iinfo->i_lenAlloc;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001029 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001031 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 udf_truncate_extents(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001033 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001035 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001036 0x00, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001037 offset - udf_file_entry_alloc_offset(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001038 iinfo->i_lenAlloc = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001040 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001041 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001042 block_truncate_page(inode->i_mapping, inode->i_size,
1043 udf_get_block);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001044 down_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001046 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1050 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001051 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 else
1053 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001056static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 struct buffer_head *bh = NULL;
1059 struct fileEntry *fe;
1060 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001061 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /*
1064 * Set defaults, but the inode is still incomplete!
1065 * Note: get_new_inode() sets the following on a new inode:
1066 * i_sb = sb
1067 * i_no = ino
1068 * i_flags = sb->s_flags
1069 * i_state = 0
1070 * clean_inode(): zero fills and sets
1071 * i_count = 1
1072 * i_nlink = 1
1073 * i_op = NULL;
1074 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001075 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001076 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001078 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 make_bad_inode(inode);
1080 return;
1081 }
1082
1083 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001084 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001085 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1086 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001087 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 make_bad_inode(inode);
1089 return;
1090 }
1091
1092 fe = (struct fileEntry *)bh->b_data;
1093
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001094 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001095 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Pekka Enberg97e961f2008-10-15 12:29:03 +02001097 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001098 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001099 if (ident == TAG_IDENT_IE && ibh) {
1100 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001101 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001102 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001103
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001104 ie = (struct indirectEntry *)ibh->b_data;
1105 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001106
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001107 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001108 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001109 &ident))) {
1110 if (ident == TAG_IDENT_FE ||
1111 ident == TAG_IDENT_EFE) {
1112 memcpy(&iinfo->i_location,
1113 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001114 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001115 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001116 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001117 brelse(nbh);
1118 __udf_read_inode(inode);
1119 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001120 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001121 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001123 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001124 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001125 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001127 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001128 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 make_bad_inode(inode);
1130 return;
1131 }
1132 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001133
Jan Kara3bf25cb2007-05-08 00:35:16 -07001134 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1138{
1139 struct fileEntry *fe;
1140 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001142 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001143 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 fe = (struct fileEntry *)bh->b_data;
1146 efe = (struct extendedFileEntry *)bh->b_data;
1147
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001148 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001149 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001150 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001151 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001153 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001154 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001155 iinfo->i_unique = 0;
1156 iinfo->i_lenEAttr = 0;
1157 iinfo->i_lenExtents = 0;
1158 iinfo->i_lenAlloc = 0;
1159 iinfo->i_next_alloc_block = 0;
1160 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001161 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001162 iinfo->i_efe = 1;
1163 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001164 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1165 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001166 make_bad_inode(inode);
1167 return;
1168 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001169 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001170 bh->b_data + sizeof(struct extendedFileEntry),
1171 inode->i_sb->s_blocksize -
1172 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001173 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001174 iinfo->i_efe = 0;
1175 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001176 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1177 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001178 make_bad_inode(inode);
1179 return;
1180 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001181 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001182 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001183 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001184 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001185 iinfo->i_efe = 0;
1186 iinfo->i_use = 1;
1187 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001188 ((struct unallocSpaceEntry *)bh->b_data)->
1189 lengthAllocDescs);
1190 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1191 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001192 make_bad_inode(inode);
1193 return;
1194 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001195 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001196 bh->b_data + sizeof(struct unallocSpaceEntry),
1197 inode->i_sb->s_blocksize -
1198 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return;
1200 }
1201
Jan Karac03cad22010-10-20 22:17:28 +02001202 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001204 if (inode->i_uid == -1 ||
1205 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1206 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001207 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001210 if (inode->i_gid == -1 ||
1211 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1212 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001213 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001215 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001216 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001217 inode->i_mode = sbi->s_fmode;
1218 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001219 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001220 inode->i_mode = sbi->s_dmode;
1221 else
1222 inode->i_mode = udf_convert_permissions(fe);
1223 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001224 read_unlock(&sbi->s_cred_lock);
1225
1226 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1227 if (!inode->i_nlink)
1228 inode->i_nlink = 1;
1229
1230 inode->i_size = le64_to_cpu(fe->informationLength);
1231 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001233 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001235 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Marcin Slusarz56774802008-02-10 11:25:31 +01001237 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001238 inode->i_atime = sbi->s_record_time;
1239
Marcin Slusarz56774802008-02-10 11:25:31 +01001240 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1241 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001242 inode->i_mtime = sbi->s_record_time;
1243
Marcin Slusarz56774802008-02-10 11:25:31 +01001244 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001245 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001247 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1248 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1249 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1250 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001251 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001252 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001253 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Marcin Slusarz56774802008-02-10 11:25:31 +01001255 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001256 inode->i_atime = sbi->s_record_time;
1257
Marcin Slusarz56774802008-02-10 11:25:31 +01001258 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1259 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001260 inode->i_mtime = sbi->s_record_time;
1261
Marcin Slusarz56774802008-02-10 11:25:31 +01001262 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001263 iinfo->i_crtime = sbi->s_record_time;
1264
Marcin Slusarz56774802008-02-10 11:25:31 +01001265 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001266 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001268 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1269 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1270 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001271 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001272 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001275 switch (fe->icbTag.fileType) {
1276 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001277 inode->i_op = &udf_dir_inode_operations;
1278 inode->i_fop = &udf_dir_operations;
1279 inode->i_mode |= S_IFDIR;
1280 inc_nlink(inode);
1281 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001282 case ICBTAG_FILE_TYPE_REALTIME:
1283 case ICBTAG_FILE_TYPE_REGULAR:
1284 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001285 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001286 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001287 inode->i_data.a_ops = &udf_adinicb_aops;
1288 else
1289 inode->i_data.a_ops = &udf_aops;
1290 inode->i_op = &udf_file_inode_operations;
1291 inode->i_fop = &udf_file_operations;
1292 inode->i_mode |= S_IFREG;
1293 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001294 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001295 inode->i_mode |= S_IFBLK;
1296 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001297 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001298 inode->i_mode |= S_IFCHR;
1299 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001300 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001301 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1302 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001304 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1305 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001306 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001307 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001308 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001309 inode->i_mode = S_IFLNK | S_IRWXUGO;
1310 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001311 case ICBTAG_FILE_TYPE_MAIN:
1312 udf_debug("METADATA FILE-----\n");
1313 break;
1314 case ICBTAG_FILE_TYPE_MIRROR:
1315 udf_debug("METADATA MIRROR FILE-----\n");
1316 break;
1317 case ICBTAG_FILE_TYPE_BITMAP:
1318 udf_debug("METADATA BITMAP FILE-----\n");
1319 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001320 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001321 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1322 "file type=%d\n", inode->i_ino,
1323 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001324 make_bad_inode(inode);
1325 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001327 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001328 struct deviceSpec *dsea =
1329 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001330 if (dsea) {
1331 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001332 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1333 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001335 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338}
1339
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001340static int udf_alloc_i_data(struct inode *inode, size_t size)
1341{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001342 struct udf_inode_info *iinfo = UDF_I(inode);
1343 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001344
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001345 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001346 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1347 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001348 return -ENOMEM;
1349 }
1350
1351 return 0;
1352}
1353
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001354static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 mode_t mode;
1357 uint32_t permissions;
1358 uint32_t flags;
1359
1360 permissions = le32_to_cpu(fe->permissions);
1361 flags = le16_to_cpu(fe->icbTag.flags);
1362
Marcin Slusarz4b111112008-02-08 04:20:36 -08001363 mode = ((permissions) & S_IRWXO) |
1364 ((permissions >> 2) & S_IRWXG) |
1365 ((permissions >> 4) & S_IRWXU) |
1366 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1367 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1368 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 return mode;
1371}
1372
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001373int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Jan Kara49521de2010-10-20 17:42:44 +02001375 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Jan Kara49521de2010-10-20 17:42:44 +02001378static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 return udf_update_inode(inode, 1);
1381}
1382
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001383static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct buffer_head *bh = NULL;
1386 struct fileEntry *fe;
1387 struct extendedFileEntry *efe;
1388 uint32_t udfperms;
1389 uint16_t icbflags;
1390 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001392 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001393 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001394 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Jan Kara5833ded2010-01-08 16:52:59 +01001396 bh = udf_tgetblk(inode->i_sb,
1397 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001398 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001399 udf_debug("getblk failure\n");
1400 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
Jan Karaaae917c2010-01-08 16:46:29 +01001403 lock_buffer(bh);
1404 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 fe = (struct fileEntry *)bh->b_data;
1406 efe = (struct extendedFileEntry *)bh->b_data;
1407
Jan Karaaae917c2010-01-08 16:46:29 +01001408 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001410 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001412 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001413 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001414 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001415 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001416 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1417 use->descTag.tagLocation =
1418 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001419 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001420 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001422 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001423 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001424 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001425 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jan Karaaae917c2010-01-08 16:46:29 +01001427 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429
Phillip Susi4d6660e2006-03-07 21:55:24 -08001430 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1431 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001432 else
1433 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Phillip Susi4d6660e2006-03-07 21:55:24 -08001435 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1436 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001437 else
1438 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Marcin Slusarz4b111112008-02-08 04:20:36 -08001440 udfperms = ((inode->i_mode & S_IRWXO)) |
1441 ((inode->i_mode & S_IRWXG) << 2) |
1442 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Marcin Slusarz4b111112008-02-08 04:20:36 -08001444 udfperms |= (le32_to_cpu(fe->permissions) &
1445 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1446 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1447 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 fe->permissions = cpu_to_le32(udfperms);
1449
1450 if (S_ISDIR(inode->i_mode))
1451 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1452 else
1453 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1454
1455 fe->informationLength = cpu_to_le64(inode->i_size);
1456
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001457 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001458 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001459 struct deviceSpec *dsea =
1460 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001461 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001463 udf_add_extendedattr(inode,
1464 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001465 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 dsea->attrType = cpu_to_le32(12);
1467 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001468 dsea->attrLength = cpu_to_le32(
1469 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001470 sizeof(struct regid));
1471 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001473 eid = (struct regid *)dsea->impUse;
1474 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 strcpy(eid->ident, UDF_ID_DEVELOPER);
1476 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1477 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1478 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1479 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1480 }
1481
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001482 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001483 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001484 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001485 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001486 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001487 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1488 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Marcin Slusarz56774802008-02-10 11:25:31 +01001490 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1491 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1492 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001493 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1495 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1496 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001497 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1498 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1499 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1501 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001502 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001503 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001504 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001505 inode->i_sb->s_blocksize -
1506 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001508 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001509 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1510 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001512 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1513 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1514 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1515 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001517 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1518 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1519 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1520 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001521
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001522 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1523 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1524 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1525 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Marcin Slusarz56774802008-02-10 11:25:31 +01001527 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1528 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1529 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1530 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001532 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1534 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1535 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001536 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1537 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1538 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1540 crclen = sizeof(struct extendedFileEntry);
1541 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001542 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 fe->icbTag.strategyType = cpu_to_le16(4096);
1544 fe->icbTag.strategyParameter = cpu_to_le16(1);
1545 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001546 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 fe->icbTag.strategyType = cpu_to_le16(4);
1548 fe->icbTag.numEntries = cpu_to_le16(1);
1549 }
1550
1551 if (S_ISDIR(inode->i_mode))
1552 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1553 else if (S_ISREG(inode->i_mode))
1554 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1555 else if (S_ISLNK(inode->i_mode))
1556 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1557 else if (S_ISBLK(inode->i_mode))
1558 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1559 else if (S_ISCHR(inode->i_mode))
1560 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1561 else if (S_ISFIFO(inode->i_mode))
1562 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1563 else if (S_ISSOCK(inode->i_mode))
1564 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1565
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001566 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001567 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1568 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1569 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1570 (le16_to_cpu(fe->icbTag.flags) &
1571 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1572 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001575 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 fe->descTag.descVersion = cpu_to_le16(3);
1577 else
1578 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001579 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001580 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001581 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001582 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001584 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001585 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001586 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Jan Karaaae917c2010-01-08 16:46:29 +01001588out:
Jan Kara5833ded2010-01-08 16:52:59 +01001589 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001590 unlock_buffer(bh);
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 /* write the data blocks */
1593 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001594 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001596 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001597 printk(KERN_WARNING "IO error syncing udf inode "
1598 "[%s:%08lx]\n", inode->i_sb->s_id,
1599 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 err = -EIO;
1601 }
1602 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001603 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return err;
1606}
1607
Pekka Enberg97e961f2008-10-15 12:29:03 +02001608struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1611 struct inode *inode = iget_locked(sb, block);
1612
1613 if (!inode)
1614 return NULL;
1615
1616 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001617 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 __udf_read_inode(inode);
1619 unlock_new_inode(inode);
1620 }
1621
1622 if (is_bad_inode(inode))
1623 goto out_iput;
1624
Pekka Enberg97e961f2008-10-15 12:29:03 +02001625 if (ino->logicalBlockNum >= UDF_SB(sb)->
1626 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001628 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 make_bad_inode(inode);
1630 goto out_iput;
1631 }
1632
1633 return inode;
1634
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001635 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 iput(inode);
1637 return NULL;
1638}
1639
Marcin Slusarz4b111112008-02-08 04:20:36 -08001640int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001641 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001644 struct short_ad *sad = NULL;
1645 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 struct allocExtDesc *aed;
1647 int8_t etype;
1648 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001649 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Jan Karaff116fc2007-05-08 00:35:14 -07001651 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001652 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001653 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001654 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 else
Jan Karaff116fc2007-05-08 00:35:14 -07001656 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001658 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001659 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001660 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001661 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 else
1663 return -1;
1664
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001665 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001666 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 struct buffer_head *nbh;
1668 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001669 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Marcin Slusarz4b111112008-02-08 04:20:36 -08001671 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1672 obloc.partitionReferenceNum,
1673 obloc.logicalBlockNum, &err);
1674 if (!epos->block.logicalBlockNum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return -1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001676 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001677 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001678 0));
1679 if (!nbh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 lock_buffer(nbh);
1682 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1683 set_buffer_uptodate(nbh);
1684 unlock_buffer(nbh);
1685 mark_buffer_dirty_inode(nbh, inode);
1686
1687 aed = (struct allocExtDesc *)(nbh->b_data);
1688 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001689 aed->previousAllocExtLocation =
1690 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001691 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001692 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 aed->lengthAllocDescs = cpu_to_le32(adsize);
1694 sptr = ptr - adsize;
1695 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1696 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001697 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001698 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001699 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 aed->lengthAllocDescs = cpu_to_le32(0);
1701 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001702 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001704 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001705 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001706 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001707 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001708 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 mark_inode_dirty(inode);
1710 }
1711 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001712 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001714 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 else
1716 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001717 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001718 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001719 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001720 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001721 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1722 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001723 sad->extPosition =
1724 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001725 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001726 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001727 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001728 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1729 inode->i_sb->s_blocksize);
1730 lad->extLocation = cpu_to_lelb(epos->block);
1731 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1732 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001734 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001735 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001736 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001737 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001739 udf_update_tag(epos->bh->b_data,
1740 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001741 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001742 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001743 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001745 }
Jan Karaff116fc2007-05-08 00:35:14 -07001746 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
Jan Karaff116fc2007-05-08 00:35:14 -07001749 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001751 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001752 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001754 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001755 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001756 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001757 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1758 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1759 udf_update_tag(epos->bh->b_data,
1760 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001762 udf_update_tag(epos->bh->b_data,
1763 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001764 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766
1767 return etype;
1768}
1769
Marcin Slusarz4b111112008-02-08 04:20:36 -08001770int8_t udf_write_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001771 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 int adsize;
1774 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001775 struct short_ad *sad;
1776 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001777 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Jan Karaff116fc2007-05-08 00:35:14 -07001779 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001780 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001781 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001782 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 else
Jan Karaff116fc2007-05-08 00:35:14 -07001784 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001786 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001787 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001788 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001789 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001790 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001791 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001792 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001793 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001794 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001795 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001796 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001797 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001798 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001799 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001800 default:
1801 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001804 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001805 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001806 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001807 struct allocExtDesc *aed =
1808 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001809 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001810 le32_to_cpu(aed->lengthAllocDescs) +
1811 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
Jan Karaff116fc2007-05-08 00:35:14 -07001813 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001814 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001819 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return (elen >> 30);
1822}
1823
Marcin Slusarz4b111112008-02-08 04:20:36 -08001824int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001825 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 int8_t etype;
1828
Jan Karaff116fc2007-05-08 00:35:14 -07001829 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001830 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001831 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001832 epos->block = *eloc;
1833 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001834 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001835 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001836 epos->bh = udf_tread(inode->i_sb, block);
1837 if (!epos->bh) {
1838 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return -1;
1840 }
1841 }
1842
1843 return etype;
1844}
1845
Marcin Slusarz4b111112008-02-08 04:20:36 -08001846int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001847 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 int alen;
1850 int8_t etype;
1851 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001852 struct short_ad *sad;
1853 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001854 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001855
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001856 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001857 if (!epos->offset)
1858 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001859 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001860 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001861 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001862 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001863 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001864 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001865 if (!epos->offset)
1866 epos->offset = sizeof(struct allocExtDesc);
1867 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001868 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001869 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1870 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001873 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001874 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001875 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1876 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001878 etype = le32_to_cpu(sad->extLength) >> 30;
1879 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001880 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001881 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001882 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1883 break;
1884 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001885 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1886 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001887 return -1;
1888 etype = le32_to_cpu(lad->extLength) >> 30;
1889 *eloc = lelb_to_cpu(lad->extLocation);
1890 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1891 break;
1892 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001893 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001894 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001895 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
1898 return etype;
1899}
1900
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001901static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001902 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001904 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 uint32_t oelen;
1906 int8_t etype;
1907
Jan Karaff116fc2007-05-08 00:35:14 -07001908 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001909 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001911 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001912 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 neloc = oeloc;
1914 nelen = (etype << 30) | oelen;
1915 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02001916 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001917 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return (nelen >> 30);
1920}
1921
Marcin Slusarz4b111112008-02-08 04:20:36 -08001922int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001923 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Jan Karaff116fc2007-05-08 00:35:14 -07001925 struct extent_position oepos;
1926 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 int8_t etype;
1928 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001929 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001931 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001932 get_bh(epos.bh);
1933 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001936 iinfo = UDF_I(inode);
1937 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001938 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001939 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001940 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 else
1942 adsize = 0;
1943
Jan Karaff116fc2007-05-08 00:35:14 -07001944 oepos = epos;
1945 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return -1;
1947
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001948 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001949 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001951 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001952 brelse(oepos.bh);
1953 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001954 oepos.bh = epos.bh;
1955 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001958 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 elen = 0;
1960
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001961 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001962 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
1963 udf_write_aext(inode, &oepos, &eloc, elen, 1);
1964 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001965 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001966 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001968 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001969 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001970 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001971 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001972 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001973 udf_update_tag(oepos.bh->b_data,
1974 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001976 udf_update_tag(oepos.bh->b_data,
1977 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001978 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001980 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001981 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001982 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001983 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001985 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001986 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001987 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001988 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001989 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08001990 udf_update_tag(oepos.bh->b_data,
1991 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001993 udf_update_tag(oepos.bh->b_data,
1994 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001995 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001998
Jan Kara3bf25cb2007-05-08 00:35:16 -07001999 brelse(epos.bh);
2000 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return (elen >> 30);
2003}
2004
Marcin Slusarz4b111112008-02-08 04:20:36 -08002005int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002006 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002007 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002009 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002010 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002011 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002013 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002015 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002016 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002017 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002018 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002021 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002022 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2023 if (etype == -1) {
2024 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002025 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return -1;
2027 }
2028 lbcount += *elen;
2029 } while (lbcount <= bcount);
2030
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 return etype;
2034}
2035
Jan Kara60448b12007-05-08 00:35:13 -07002036long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002038 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002039 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002040 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002041 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 int ret;
2043
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002044 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Marcin Slusarz4b111112008-02-08 04:20:36 -08002046 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2047 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002048 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 else
2050 ret = 0;
2051
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002052 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002053 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2056 return udf_fixed_to_variable(ret);
2057 else
2058 return ret;
2059}