blob: 1652b2c665bb08f1df27eb51d6029ac06fb14d64 [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
22 * 12/06/98 blf partition support in udf_iget, udf_block_map and udf_read_inode
23 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
24 * block boundaries (which is not actually allowed)
25 * 12/20/98 added support for strategy 4096
26 * 03/07/99 rewrote udf_block_map (again)
27 * New funcs, inode_bmap, udf_next_aext
28 * 04/19/99 Support for writing device EA's for major/minor #
29 */
30
31#include "udfdecl.h"
32#include <linux/mm.h>
33#include <linux/smp_lock.h>
34#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>
39
40#include "udf_i.h"
41#include "udf_sb.h"
42
43MODULE_AUTHOR("Ben Fennema");
44MODULE_DESCRIPTION("Universal Disk Format Filesystem");
45MODULE_LICENSE("GPL");
46
47#define EXTENT_MERGE_SIZE 5
48
49static mode_t udf_convert_permissions(struct fileEntry *);
50static int udf_update_inode(struct inode *, int);
51static void udf_fill_inode(struct inode *, struct buffer_head *);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070052static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070053static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070054 long *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070055static int8_t udf_insert_aext(struct inode *, struct extent_position,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070056 kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void udf_split_extents(struct inode *, int *, int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070058 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_prealloc_extents(struct inode *, int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070060 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_merge_extents(struct inode *,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070062 kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_update_extents(struct inode *,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070064 kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
65 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
67
68/*
69 * udf_delete_inode
70 *
71 * PURPOSE
72 * Clean-up before the specified inode is destroyed.
73 *
74 * DESCRIPTION
75 * This routine is called when the kernel destroys an inode structure
76 * ie. when iput() finds i_count == 0.
77 *
78 * HISTORY
79 * July 1, 1997 - Andrew E. Mileski
80 * Written, tested, and released.
81 *
82 * Called at the last iput() if i_nlink is zero.
83 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070084void udf_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Mark Fashehfef26652005-09-09 13:01:31 -070086 truncate_inode_pages(&inode->i_data, 0);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (is_bad_inode(inode))
89 goto no_delete;
90
91 inode->i_size = 0;
92 udf_truncate(inode);
93 lock_kernel();
94
95 udf_update_inode(inode, IS_SYNC(inode));
96 udf_free_inode(inode);
97
98 unlock_kernel();
99 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700100
101no_delete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 clear_inode(inode);
103}
104
Jan Kara74584ae2007-06-16 10:16:14 -0700105/*
106 * If we are going to release inode from memory, we discard preallocation and
107 * truncate last inode extent to proper length. We could use drop_inode() but
108 * it's called under inode_lock and thus we cannot mark inode dirty there. We
109 * use clear_inode() but we have to make sure to write inode as it's not written
110 * automatically.
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112void udf_clear_inode(struct inode *inode)
113{
114 if (!(inode->i_sb->s_flags & MS_RDONLY)) {
115 lock_kernel();
Jan Kara74584ae2007-06-16 10:16:14 -0700116 /* Discard preallocation for directories, symlinks, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 udf_discard_prealloc(inode);
Jan Kara74584ae2007-06-16 10:16:14 -0700118 udf_truncate_tail_extent(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unlock_kernel();
Jan Kara74584ae2007-06-16 10:16:14 -0700120 write_inode_now(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 kfree(UDF_I_DATA(inode));
123 UDF_I_DATA(inode) = NULL;
124}
125
126static int udf_writepage(struct page *page, struct writeback_control *wbc)
127{
128 return block_write_full_page(page, udf_get_block, wbc);
129}
130
131static int udf_readpage(struct file *file, struct page *page)
132{
133 return block_read_full_page(page, udf_get_block);
134}
135
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700136static int udf_prepare_write(struct file *file, struct page *page,
137 unsigned from, unsigned to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 return block_prepare_write(page, from, to, udf_get_block);
140}
141
142static sector_t udf_bmap(struct address_space *mapping, sector_t block)
143{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700144 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700147const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700148 .readpage = udf_readpage,
149 .writepage = udf_writepage,
150 .sync_page = block_sync_page,
151 .prepare_write = udf_prepare_write,
152 .commit_write = generic_commit_write,
153 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700156void udf_expand_file_adinicb(struct inode *inode, int newsize, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct page *page;
159 char *kaddr;
160 struct writeback_control udf_wbc = {
161 .sync_mode = WB_SYNC_NONE,
162 .nr_to_write = 1,
163 };
164
165 /* from now on we have normal address_space methods */
166 inode->i_data.a_ops = &udf_aops;
167
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700168 if (!UDF_I_LENALLOC(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
170 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_SHORT;
171 else
172 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_LONG;
173 mark_inode_dirty(inode);
174 return;
175 }
176
177 page = grab_cache_page(inode->i_mapping, 0);
Matt Mackallcd7619d2005-05-01 08:59:01 -0700178 BUG_ON(!PageLocked(page));
179
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700180 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kaddr = kmap(page);
182 memset(kaddr + UDF_I_LENALLOC(inode), 0x00,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700183 PAGE_CACHE_SIZE - UDF_I_LENALLOC(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 memcpy(kaddr, UDF_I_DATA(inode) + UDF_I_LENEATTR(inode),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700185 UDF_I_LENALLOC(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 flush_dcache_page(page);
187 SetPageUptodate(page);
188 kunmap(page);
189 }
190 memset(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), 0x00,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191 UDF_I_LENALLOC(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 UDF_I_LENALLOC(inode) = 0;
193 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
194 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_SHORT;
195 else
196 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_LONG;
197
198 inode->i_data.a_ops->writepage(page, &udf_wbc);
199 page_cache_release(page);
200
201 mark_inode_dirty(inode);
202}
203
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700204struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
205 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700208 struct buffer_head *dbh = NULL;
209 kernel_lb_addr eloc;
210 uint32_t elen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700212 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 struct udf_fileident_bh sfibh, dfibh;
215 loff_t f_pos = udf_ext0_offset(inode) >> 2;
216 int size = (udf_ext0_offset(inode) + inode->i_size) >> 2;
217 struct fileIdentDesc cfi, *sfi, *dfi;
218
219 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
220 alloctype = ICBTAG_FLAG_AD_SHORT;
221 else
222 alloctype = ICBTAG_FLAG_AD_LONG;
223
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700224 if (!inode->i_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 UDF_I_ALLOCTYPE(inode) = alloctype;
226 mark_inode_dirty(inode);
227 return NULL;
228 }
229
230 /* alloc block, and copy data to it */
231 *block = udf_new_block(inode->i_sb, inode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700232 UDF_I_LOCATION(inode).partitionReferenceNum,
233 UDF_I_LOCATION(inode).logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!(*block))
235 return NULL;
236 newblock = udf_get_pblock(inode->i_sb, *block,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700237 UDF_I_LOCATION(inode).partitionReferenceNum, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (!newblock)
239 return NULL;
240 dbh = udf_tgetblk(inode->i_sb, newblock);
241 if (!dbh)
242 return NULL;
243 lock_buffer(dbh);
244 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
245 set_buffer_uptodate(dbh);
246 unlock_buffer(dbh);
247 mark_buffer_dirty_inode(dbh, inode);
248
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700249 sfibh.soffset = sfibh.eoffset = (f_pos & ((inode->i_sb->s_blocksize - 1) >> 2)) << 2;
Jan Karaff116fc2007-05-08 00:35:14 -0700250 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 dfibh.soffset = dfibh.eoffset = 0;
252 dfibh.sbh = dfibh.ebh = dbh;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700253 while ((f_pos < size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_IN_ICB;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700255 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL, NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700256 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700257 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return NULL;
259 }
260 UDF_I_ALLOCTYPE(inode) = alloctype;
261 sfi->descTag.tagLocation = cpu_to_le32(*block);
262 dfibh.soffset = dfibh.eoffset;
263 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
264 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
265 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700266 sfi->fileIdent + le16_to_cpu(sfi->lengthOfImpUse))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 UDF_I_ALLOCTYPE(inode) = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700268 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return NULL;
270 }
271 }
272 mark_buffer_dirty_inode(dbh, inode);
273
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700274 memset(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), 0, UDF_I_LENALLOC(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 UDF_I_LENALLOC(inode) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 eloc.logicalBlockNum = *block;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700277 eloc.partitionReferenceNum = UDF_I_LOCATION(inode).partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 elen = inode->i_size;
279 UDF_I_LENEXTENTS(inode) = elen;
Jan Karaff116fc2007-05-08 00:35:14 -0700280 epos.bh = NULL;
281 epos.block = UDF_I_LOCATION(inode);
282 epos.offset = udf_file_entry_alloc_offset(inode);
283 udf_add_aext(inode, &epos, eloc, elen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* UniqueID stuff */
285
Jan Kara3bf25cb2007-05-08 00:35:16 -0700286 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 mark_inode_dirty(inode);
288 return dbh;
289}
290
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700291static int udf_get_block(struct inode *inode, sector_t block,
292 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 int err, new;
295 struct buffer_head *bh;
296 unsigned long phys;
297
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700298 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 phys = udf_block_map(inode, block);
300 if (phys)
301 map_bh(bh_result, inode->i_sb, phys);
302 return 0;
303 }
304
305 err = -EIO;
306 new = 0;
307 bh = NULL;
308
309 lock_kernel();
310
311 if (block < 0)
312 goto abort_negative;
313
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700314 if (block == UDF_I_NEXT_ALLOC_BLOCK(inode) + 1) {
315 UDF_I_NEXT_ALLOC_BLOCK(inode)++;
316 UDF_I_NEXT_ALLOC_GOAL(inode)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 err = 0;
320
321 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200322 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (err)
324 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200325 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (new)
328 set_buffer_new(bh_result);
329 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700330
331abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 unlock_kernel();
333 return err;
334
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700335abort_negative:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 udf_warning(inode->i_sb, "udf_get_block", "block < 0");
337 goto abort;
338}
339
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700340static struct buffer_head *udf_getblk(struct inode *inode, long block,
341 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700343 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct buffer_head dummy;
345
346 dummy.b_state = 0;
347 dummy.b_blocknr = -1000;
348 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700349 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700351 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 lock_buffer(bh);
353 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
354 set_buffer_uptodate(bh);
355 unlock_buffer(bh);
356 mark_buffer_dirty_inode(bh, inode);
357 }
358 return bh;
359 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return NULL;
362}
363
Jan Kara31170b62007-05-08 00:35:21 -0700364/* Extend the file by 'blocks' blocks, return the number of extents added */
365int udf_extend_file(struct inode *inode, struct extent_position *last_pos,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700366 kernel_long_ad * last_ext, sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700367{
368 sector_t add;
369 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
370 struct super_block *sb = inode->i_sb;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700371 kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700372 int prealloc_len = 0;
373
374 /* The previous extent is fake and we should not extend by anything
375 * - there's nothing to do... */
376 if (!blocks && fake)
377 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700378
Jan Kara31170b62007-05-08 00:35:21 -0700379 /* Round the last extent up to a multiple of block size */
380 if (last_ext->extLength & (sb->s_blocksize - 1)) {
381 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
383 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
384 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Jan Kara31170b62007-05-08 00:35:21 -0700385 UDF_I_LENEXTENTS(inode) =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700386 (UDF_I_LENEXTENTS(inode) + sb->s_blocksize - 1) &
387 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700388 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700389
Jan Kara31170b62007-05-08 00:35:21 -0700390 /* Last extent are just preallocated blocks? */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700391 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) == EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700392 /* Save the extent so that we can reattach it to the end */
393 prealloc_loc = last_ext->extLocation;
394 prealloc_len = last_ext->extLength;
395 /* Mark the extent as a hole */
396 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700397 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700398 last_ext->extLocation.logicalBlockNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700400 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700401
Jan Kara31170b62007-05-08 00:35:21 -0700402 /* Can we merge with the previous extent? */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700403 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) == EXT_NOT_RECORDED_NOT_ALLOCATED) {
404 add = ((1 << 30) - sb->s_blocksize - (last_ext->extLength &
405 UDF_EXTENT_LENGTH_MASK)) >> sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700406 if (add > blocks)
407 add = blocks;
408 blocks -= add;
409 last_ext->extLength += add << sb->s_blocksize_bits;
410 }
411
412 if (fake) {
413 udf_add_aext(inode, last_pos, last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700414 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700415 count++;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700416 } else {
417 udf_write_aext(inode, last_pos, last_ext->extLocation, last_ext->extLength, 1);
418 }
419
Jan Kara31170b62007-05-08 00:35:21 -0700420 /* Managed to do everything necessary? */
421 if (!blocks)
422 goto out;
423
424 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
425 last_ext->extLocation.logicalBlockNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700426 last_ext->extLocation.partitionReferenceNum = 0;
427 add = (1 << (30-sb->s_blocksize_bits)) - 1;
428 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | (add << sb->s_blocksize_bits);
429
Jan Kara31170b62007-05-08 00:35:21 -0700430 /* Create enough extents to cover the whole hole */
431 while (blocks > add) {
432 blocks -= add;
433 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 }
438 if (blocks) {
439 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700440 (blocks << sb->s_blocksize_bits);
Jan Kara31170b62007-05-08 00:35:21 -0700441 if (udf_add_aext(inode, last_pos, last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700442 last_ext->extLength, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700443 return -1;
444 count++;
445 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700446
447out:
Jan Kara31170b62007-05-08 00:35:21 -0700448 /* Do we have some preallocated blocks saved? */
449 if (prealloc_len) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700450 if (udf_add_aext(inode, last_pos, prealloc_loc, prealloc_len, 1) == -1)
Jan Kara31170b62007-05-08 00:35:21 -0700451 return -1;
452 last_ext->extLocation = prealloc_loc;
453 last_ext->extLength = prealloc_len;
454 count++;
455 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700456
Jan Kara31170b62007-05-08 00:35:21 -0700457 /* last_pos should point to the last written extent... */
458 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_SHORT)
459 last_pos->offset -= sizeof(short_ad);
460 else if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_LONG)
461 last_pos->offset -= sizeof(long_ad);
462 else
463 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700464
Jan Kara31170b62007-05-08 00:35:21 -0700465 return count;
466}
467
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
469 int *err, long *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Jan Kara31170b62007-05-08 00:35:21 -0700471 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700472 struct buffer_head *result = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700474 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700476 uint32_t elen = 0, tmpelen;
477 kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700479 loff_t lbcount = 0, b_off = 0;
480 uint32_t newblocknum, newblock;
481 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int8_t etype;
483 int goal = 0, pgoal = UDF_I_LOCATION(inode).logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700484 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Jan Karaff116fc2007-05-08 00:35:14 -0700486 prev_epos.offset = udf_file_entry_alloc_offset(inode);
487 prev_epos.block = UDF_I_LOCATION(inode);
488 prev_epos.bh = NULL;
489 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700490 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700493 alternate between laarr[0] and laarr[1] for locations of the
494 current extent, and the previous extent */
495 do {
496 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700497 brelse(prev_epos.bh);
498 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700499 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700501 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700502 brelse(cur_epos.bh);
503 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700504 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 lbcount += elen;
508
Jan Karaff116fc2007-05-08 00:35:14 -0700509 prev_epos.block = cur_epos.block;
510 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Jan Karaff116fc2007-05-08 00:35:14 -0700512 prev_epos.offset = cur_epos.offset;
513 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700515 if ((etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1)) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517
518 c = !c;
519
520 laarr[c].extLength = (etype << 30) | elen;
521 laarr[c].extLocation = eloc;
522
523 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
524 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700525 ((elen + inode->i_sb->s_blocksize - 1) >>
526 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700528 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 } while (lbcount + elen <= b_off);
530
531 b_off -= lbcount;
532 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700533 /*
534 * Move prev_epos and cur_epos into indirect extent if we are at
535 * the pointer to it
536 */
537 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
538 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700543 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
544 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700546 ((elen + inode->i_sb->s_blocksize - 1) &
547 ~(inode->i_sb->s_blocksize - 1));
Jan Karaff116fc2007-05-08 00:35:14 -0700548 etype = udf_write_aext(inode, &cur_epos, eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700550 brelse(prev_epos.bh);
551 brelse(cur_epos.bh);
552 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 newblock = udf_get_lb_pblock(inode->i_sb, eloc, offset);
554 *phys = newblock;
555 return NULL;
556 }
557
Jan Kara31170b62007-05-08 00:35:21 -0700558 last_block = block;
559 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700560 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700561 int ret;
562
563 if (count) {
564 if (c)
565 laarr[0] = laarr[1];
566 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700567 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700568 /* Create a fake extent when there's not one */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700569 memset(&laarr[0].extLocation, 0x00, sizeof(kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700570 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
571 /* Will udf_extend_file() create real extent from a fake one? */
572 startnum = (offset > 0);
573 }
574 /* Create extents for the hole between EOF and offset */
575 ret = udf_extend_file(inode, &prev_epos, laarr, offset);
576 if (ret == -1) {
577 brelse(prev_epos.bh);
578 brelse(cur_epos.bh);
579 brelse(next_epos.bh);
580 /* We don't really know the error here so we just make
581 * something up */
582 *err = -ENOSPC;
583 return NULL;
584 }
585 c = 0;
586 offset = 0;
587 count += ret;
588 /* We are not covered by a preallocated extent? */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700589 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) != EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700590 /* Is there any real extent? - otherwise we overwrite
591 * the fake one... */
592 if (count)
593 c = !c;
594 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700595 inode->i_sb->s_blocksize;
596 memset(&laarr[c].extLocation, 0x00, sizeof(kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700597 count++;
598 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700599 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700600 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700602 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 endnum = startnum = ((count > 2) ? 2 : count);
604
Jan Kara31170b62007-05-08 00:35:21 -0700605 /* if the current extent is in position 0, 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
Jan Kara31170b62007-05-08 00:35:21 -0700613 /* if the current block is located in an extent, read the next extent */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700614 if ((etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0)) != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700615 laarr[c + 1].extLength = (etype << 30) | elen;
616 laarr[c + 1].extLocation = eloc;
617 count++;
618 startnum++;
619 endnum++;
620 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 lastblock = 1;
Jan Kara31170b62007-05-08 00:35:21 -0700622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700626 * block in the extent corresponding to the requested block */
627 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700629 } else { /* otherwise, allocate a new block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (UDF_I_NEXT_ALLOC_BLOCK(inode) == block)
631 goal = UDF_I_NEXT_ALLOC_GOAL(inode);
632
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700633 if (!goal) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!(goal = pgoal))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700635 goal = UDF_I_LOCATION(inode).logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637
638 if (!(newblocknum = udf_new_block(inode->i_sb, inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700639 UDF_I_LOCATION(inode).partitionReferenceNum,
640 goal, err))) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700641 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 *err = -ENOSPC;
643 return NULL;
644 }
645 UDF_I_LENEXTENTS(inode) += inode->i_sb->s_blocksize;
646 }
647
648 /* if the extent the requsted block is located in contains multiple blocks,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700649 * split the extent into at most three extents. blocks prior to requested
650 * block, requested block, and blocks after requested block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
652
653#ifdef UDF_PREALLOCATE
654 /* preallocate blocks */
655 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
656#endif
657
658 /* merge any continuous blocks in laarr */
659 udf_merge_extents(inode, laarr, &endnum);
660
661 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700662 * of extents is greater than the old number, and deleting extents if
663 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700664 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jan Kara3bf25cb2007-05-08 00:35:16 -0700666 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 if (!(newblock = udf_get_pblock(inode->i_sb, newblocknum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700669 UDF_I_LOCATION(inode).partitionReferenceNum, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return NULL;
671 }
672 *phys = newblock;
673 *err = 0;
674 *new = 1;
675 UDF_I_NEXT_ALLOC_BLOCK(inode) = block;
676 UDF_I_NEXT_ALLOC_GOAL(inode) = newblocknum;
677 inode->i_ctime = current_fs_time(inode->i_sb);
678
679 if (IS_SYNC(inode))
680 udf_sync_inode(inode);
681 else
682 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return result;
685}
686
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700687static void udf_split_extents(struct inode *inode, int *c, int offset,
688 int newblocknum,
689 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
690 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700693 (laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int curr = *c;
695 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700696 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int8_t etype = (laarr[curr].extLength >> 30);
698
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700699 if (blen == 1) {
700 ;
701 } else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700702 laarr[curr + 2] = laarr[curr + 1];
703 laarr[curr + 1] = laarr[curr];
704 } else {
705 laarr[curr + 3] = laarr[curr + 1];
706 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700709 if (offset) {
710 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700711 udf_free_blocks(inode->i_sb, inode, laarr[curr].extLocation, 0, offset);
712 laarr[curr].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
713 (offset << inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 laarr[curr].extLocation.logicalBlockNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700715 laarr[curr].extLocation.partitionReferenceNum = 0;
716 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 laarr[curr].extLength = (etype << 30) |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718 (offset << inode->i_sb->s_blocksize_bits);
719 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 curr++;
721 (*c)++;
722 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 laarr[curr].extLocation.logicalBlockNum = newblocknum;
726 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
727 laarr[curr].extLocation.partitionReferenceNum =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700728 UDF_I_LOCATION(inode).partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700730 inode->i_sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700731 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700733 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700735 laarr[curr].extLocation.logicalBlockNum += (offset + 1);
736 laarr[curr].extLength = (etype << 30) |
737 ((blen - (offset + 1)) << inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700738 curr++;
739 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 }
742}
743
744static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700745 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
746 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 int start, length = 0, currlength = 0, i;
749
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700750 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!lastblock)
752 return;
753 else
754 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700755 } else {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700756 if ((laarr[c + 1].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700757 start = c + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700758 length = currlength = (((laarr[c + 1].extLength & UDF_EXTENT_LENGTH_MASK) +
759 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits);
760 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 start = c;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 for (i = start + 1; i <= *endnum; i++) {
766 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (lastblock)
768 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700769 } else if ((laarr[i].extLength >> 30) == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
770 length += (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
771 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits);
772 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700777 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700779 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
780 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700782 laarr[start].extLocation.partitionReferenceNum,
783 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ? length :
784 UDF_DEFAULT_PREALLOC_BLOCKS) - currlength);
785 if (numalloc) {
786 if (start == (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 laarr[start].extLength +=
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700788 (numalloc << inode->i_sb->s_blocksize_bits);
789 } else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790 memmove(&laarr[c + 2], &laarr[c + 1],
791 sizeof(long_ad) * (*endnum - (c + 1)));
792 (*endnum)++;
793 laarr[c + 1].extLocation.logicalBlockNum = next;
794 laarr[c + 1].extLocation.partitionReferenceNum =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700795 laarr[c].extLocation.partitionReferenceNum;
796 laarr[c + 1].extLength = EXT_NOT_RECORDED_ALLOCATED |
797 (numalloc << inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700798 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700801 for (i = start + 1; numalloc && i < *endnum; i++) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700802 int elen = ((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
803 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700805 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 laarr[i].extLength -=
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700807 (numalloc << inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700809 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700811 if (*endnum > (i + 1))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700812 memmove(&laarr[i], &laarr[i + 1],
813 sizeof(long_ad) * (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700814 i--;
815 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700818 UDF_I_LENEXTENTS(inode) += numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820 }
821}
822
823static void udf_merge_extents(struct inode *inode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700824 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
825 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 int i;
828
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700829 for (i = 0; i < (*endnum - 1); i++) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700830 if ((laarr[i].extLength >> 30) == (laarr[i + 1].extLength >> 30)) {
831 if (((laarr[i].extLength >> 30) == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
832 ((laarr[i + 1].extLocation.logicalBlockNum - laarr[i].extLocation.logicalBlockNum) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700833 (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700834 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits))) {
835 if (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
836 (laarr[i + 1].extLength & UDF_EXTENT_LENGTH_MASK) +
837 inode->i_sb->s_blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
838 laarr[i + 1].extLength = (laarr[i + 1].extLength -
839 (laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
840 UDF_EXTENT_LENGTH_MASK) & ~(inode->i_sb->s_blocksize - 1);
841 laarr[i].extLength = (laarr[i].extLength & UDF_EXTENT_FLAG_MASK) +
842 (UDF_EXTENT_LENGTH_MASK + 1) - inode->i_sb->s_blocksize;
843 laarr[i + 1].extLocation.logicalBlockNum =
844 laarr[i].extLocation.logicalBlockNum +
845 ((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) >>
846 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700847 } else {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700848 laarr[i].extLength = laarr[i + 1].extLength +
849 (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
850 inode->i_sb->s_blocksize - 1) & ~(inode->i_sb->s_blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851 if (*endnum > (i + 2))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700852 memmove(&laarr[i + 1], &laarr[i + 2],
853 sizeof(long_ad) * (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700854 i--;
855 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700858 } else if (((laarr[i].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
859 ((laarr[i + 1].extLength >> 30) == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
860 udf_free_blocks(inode->i_sb, inode, laarr[i].extLocation, 0,
861 ((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
862 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 laarr[i].extLocation.logicalBlockNum = 0;
864 laarr[i].extLocation.partitionReferenceNum = 0;
865
866 if (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700867 (laarr[i + 1].extLength & UDF_EXTENT_LENGTH_MASK) +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700868 inode->i_sb->s_blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
869 laarr[i + 1].extLength = (laarr[i + 1].extLength -
870 (laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
871 UDF_EXTENT_LENGTH_MASK) & ~(inode->i_sb->s_blocksize - 1);
872 laarr[i].extLength = (laarr[i].extLength & UDF_EXTENT_FLAG_MASK) +
873 (UDF_EXTENT_LENGTH_MASK + 1) - inode->i_sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700874 } else {
875 laarr[i].extLength = laarr[i + 1].extLength +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700876 (((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
877 inode->i_sb->s_blocksize - 1) & ~(inode->i_sb->s_blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700878 if (*endnum > (i + 2))
879 memmove(&laarr[i + 1], &laarr[i + 2],
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700880 sizeof(long_ad) * (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700881 i--;
882 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700884 } else if ((laarr[i].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
885 udf_free_blocks(inode->i_sb, inode, laarr[i].extLocation, 0,
886 ((laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) +
887 inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 laarr[i].extLocation.logicalBlockNum = 0;
889 laarr[i].extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700890 laarr[i].extLength = (laarr[i].extLength & UDF_EXTENT_LENGTH_MASK) |
891 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893 }
894}
895
896static void udf_update_extents(struct inode *inode,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700897 kernel_long_ad laarr[EXTENT_MERGE_SIZE],
898 int startnum, int endnum,
899 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 int start = 0, i;
902 kernel_lb_addr tmploc;
903 uint32_t tmplen;
904
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700905 if (startnum > endnum) {
906 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -0700907 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700908 laarr[i].extLength);
909 } else if (startnum < endnum) {
910 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700911 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700912 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -0700913 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700914 &laarr[i].extLength, 1);
915 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917 }
918
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700919 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -0700920 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
921 udf_write_aext(inode, epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700922 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924}
925
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700926struct buffer_head *udf_bread(struct inode *inode, int block,
927 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700929 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 bh = udf_getblk(inode, block, create, err);
932 if (!bh)
933 return NULL;
934
935 if (buffer_uptodate(bh))
936 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 wait_on_buffer(bh);
941 if (buffer_uptodate(bh))
942 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 brelse(bh);
945 *err = -EIO;
946 return NULL;
947}
948
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700949void udf_truncate(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 int offset;
952 int err;
953
954 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700955 S_ISLNK(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return;
957 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
958 return;
959
960 lock_kernel();
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700961 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700962 if (inode->i_sb->s_blocksize < (udf_file_entry_alloc_offset(inode) +
963 inode->i_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 udf_expand_file_adinicb(inode, inode->i_size, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700965 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 inode->i_size = UDF_I_LENALLOC(inode);
967 unlock_kernel();
968 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700969 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 udf_truncate_extents(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700971 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700972 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 offset = inode->i_size & (inode->i_sb->s_blocksize - 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700974 memset(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset, 0x00,
975 inode->i_sb->s_blocksize - offset - udf_file_entry_alloc_offset(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 UDF_I_LENALLOC(inode) = inode->i_size;
977 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700978 } else {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700979 block_truncate_page(inode->i_mapping, inode->i_size, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 udf_truncate_extents(inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
984 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700985 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 else
987 mark_inode_dirty(inode);
988 unlock_kernel();
989}
990
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700991static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 struct buffer_head *bh = NULL;
994 struct fileEntry *fe;
995 uint16_t ident;
996
997 /*
998 * Set defaults, but the inode is still incomplete!
999 * Note: get_new_inode() sets the following on a new inode:
1000 * i_sb = sb
1001 * i_no = ino
1002 * i_flags = sb->s_flags
1003 * i_state = 0
1004 * clean_inode(): zero fills and sets
1005 * i_count = 1
1006 * i_nlink = 1
1007 * i_op = NULL;
1008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 bh = udf_read_ptagged(inode->i_sb, UDF_I_LOCATION(inode), 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001010 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001012 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 make_bad_inode(inode);
1014 return;
1015 }
1016
1017 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001018 ident != TAG_IDENT_USE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001019 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed ident=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001020 inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001021 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 make_bad_inode(inode);
1023 return;
1024 }
1025
1026 fe = (struct fileEntry *)bh->b_data;
1027
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001028 if (le16_to_cpu(fe->icbTag.strategyType) == 4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 struct buffer_head *ibh = NULL, *nbh = NULL;
1030 struct indirectEntry *ie;
1031
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001032 ibh = udf_read_ptagged(inode->i_sb, UDF_I_LOCATION(inode), 1, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001033 if (ident == TAG_IDENT_IE) {
1034 if (ibh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 kernel_lb_addr loc;
1036 ie = (struct indirectEntry *)ibh->b_data;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001039
1040 if (ie->indirectICB.extLength &&
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001041 (nbh = udf_read_ptagged(inode->i_sb, loc, 0, &ident))) {
1042 if (ident == TAG_IDENT_FE ||
1043 ident == TAG_IDENT_EFE) {
1044 memcpy(&UDF_I_LOCATION(inode), &loc,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001045 sizeof(kernel_lb_addr));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001046 brelse(bh);
1047 brelse(ibh);
1048 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 __udf_read_inode(inode);
1050 return;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001051 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001052 brelse(nbh);
1053 brelse(ibh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001055 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001056 brelse(ibh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001059 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001060 brelse(ibh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001061 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001062 } else if (le16_to_cpu(fe->icbTag.strategyType) != 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001064 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001065 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 make_bad_inode(inode);
1067 return;
1068 }
1069 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001070
Jan Kara3bf25cb2007-05-08 00:35:16 -07001071 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
1074static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1075{
1076 struct fileEntry *fe;
1077 struct extendedFileEntry *efe;
1078 time_t convtime;
1079 long convtime_usec;
1080 int offset;
1081
1082 fe = (struct fileEntry *)bh->b_data;
1083 efe = (struct extendedFileEntry *)bh->b_data;
1084
1085 if (le16_to_cpu(fe->icbTag.strategyType) == 4)
1086 UDF_I_STRAT4096(inode) = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001087 else /* if (le16_to_cpu(fe->icbTag.strategyType) == 4096) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 UDF_I_STRAT4096(inode) = 1;
1089
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001090 UDF_I_ALLOCTYPE(inode) = le16_to_cpu(fe->icbTag.flags) & ICBTAG_FLAG_AD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 UDF_I_UNIQUE(inode) = 0;
1092 UDF_I_LENEATTR(inode) = 0;
1093 UDF_I_LENEXTENTS(inode) = 0;
1094 UDF_I_LENALLOC(inode) = 0;
1095 UDF_I_NEXT_ALLOC_BLOCK(inode) = 0;
1096 UDF_I_NEXT_ALLOC_GOAL(inode) = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001097 if (le16_to_cpu(fe->descTag.tagIdent) == TAG_IDENT_EFE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 UDF_I_EFE(inode) = 1;
1099 UDF_I_USE(inode) = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001100 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize - sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001101 make_bad_inode(inode);
1102 return;
1103 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001104 memcpy(UDF_I_DATA(inode), bh->b_data + sizeof(struct extendedFileEntry),
1105 inode->i_sb->s_blocksize - sizeof(struct extendedFileEntry));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001106 } else if (le16_to_cpu(fe->descTag.tagIdent) == TAG_IDENT_FE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 UDF_I_EFE(inode) = 0;
1108 UDF_I_USE(inode) = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001109 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize - sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001110 make_bad_inode(inode);
1111 return;
1112 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001113 memcpy(UDF_I_DATA(inode), bh->b_data + sizeof(struct fileEntry),
1114 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
1115 } else if (le16_to_cpu(fe->descTag.tagIdent) == TAG_IDENT_USE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 UDF_I_EFE(inode) = 0;
1117 UDF_I_USE(inode) = 1;
1118 UDF_I_LENALLOC(inode) =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001119 le32_to_cpu(((struct unallocSpaceEntry *)bh->b_data)->lengthAllocDescs);
1120 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize - sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001121 make_bad_inode(inode);
1122 return;
1123 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001124 memcpy(UDF_I_DATA(inode), bh->b_data + sizeof(struct unallocSpaceEntry),
1125 inode->i_sb->s_blocksize - sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
1127 }
1128
1129 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001130 if (inode->i_uid == -1 ||
1131 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1132 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001133 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001136 if (inode->i_gid == -1 ||
1137 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1138 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001139 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1142 if (!inode->i_nlink)
1143 inode->i_nlink = 1;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 inode->i_size = le64_to_cpu(fe->informationLength);
1146 UDF_I_LENEXTENTS(inode) = inode->i_size;
1147
1148 inode->i_mode = udf_convert_permissions(fe);
1149 inode->i_mode &= ~UDF_SB(inode->i_sb)->s_umask;
1150
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001151 if (UDF_I_EFE(inode) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001153 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001155 if (udf_stamp_to_time(&convtime, &convtime_usec,
1156 lets_to_cpu(fe->accessTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 inode->i_atime.tv_sec = convtime;
1158 inode->i_atime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001159 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 inode->i_atime = UDF_SB_RECORDTIME(inode->i_sb);
1161 }
1162
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001163 if (udf_stamp_to_time(&convtime, &convtime_usec,
1164 lets_to_cpu(fe->modificationTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 inode->i_mtime.tv_sec = convtime;
1166 inode->i_mtime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001167 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 inode->i_mtime = UDF_SB_RECORDTIME(inode->i_sb);
1169 }
1170
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001171 if (udf_stamp_to_time(&convtime, &convtime_usec,
1172 lets_to_cpu(fe->attrTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 inode->i_ctime.tv_sec = convtime;
1174 inode->i_ctime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001175 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 inode->i_ctime = UDF_SB_RECORDTIME(inode->i_sb);
1177 }
1178
1179 UDF_I_UNIQUE(inode) = le64_to_cpu(fe->uniqueID);
1180 UDF_I_LENEATTR(inode) = le32_to_cpu(fe->lengthExtendedAttr);
1181 UDF_I_LENALLOC(inode) = le32_to_cpu(fe->lengthAllocDescs);
1182 offset = sizeof(struct fileEntry) + UDF_I_LENEATTR(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001183 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001184 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001185 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001187 if (udf_stamp_to_time(&convtime, &convtime_usec,
1188 lets_to_cpu(efe->accessTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 inode->i_atime.tv_sec = convtime;
1190 inode->i_atime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001191 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 inode->i_atime = UDF_SB_RECORDTIME(inode->i_sb);
1193 }
1194
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001195 if (udf_stamp_to_time(&convtime, &convtime_usec,
1196 lets_to_cpu(efe->modificationTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 inode->i_mtime.tv_sec = convtime;
1198 inode->i_mtime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001199 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 inode->i_mtime = UDF_SB_RECORDTIME(inode->i_sb);
1201 }
1202
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001203 if (udf_stamp_to_time(&convtime, &convtime_usec,
1204 lets_to_cpu(efe->createTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 UDF_I_CRTIME(inode).tv_sec = convtime;
1206 UDF_I_CRTIME(inode).tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001207 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 UDF_I_CRTIME(inode) = UDF_SB_RECORDTIME(inode->i_sb);
1209 }
1210
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001211 if (udf_stamp_to_time(&convtime, &convtime_usec,
1212 lets_to_cpu(efe->attrTime))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 inode->i_ctime.tv_sec = convtime;
1214 inode->i_ctime.tv_nsec = convtime_usec * 1000;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001215 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 inode->i_ctime = UDF_SB_RECORDTIME(inode->i_sb);
1217 }
1218
1219 UDF_I_UNIQUE(inode) = le64_to_cpu(efe->uniqueID);
1220 UDF_I_LENEATTR(inode) = le32_to_cpu(efe->lengthExtendedAttr);
1221 UDF_I_LENALLOC(inode) = le32_to_cpu(efe->lengthAllocDescs);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001222 offset = sizeof(struct extendedFileEntry) + UDF_I_LENEATTR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001225 switch (fe->icbTag.fileType) {
1226 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001227 inode->i_op = &udf_dir_inode_operations;
1228 inode->i_fop = &udf_dir_operations;
1229 inode->i_mode |= S_IFDIR;
1230 inc_nlink(inode);
1231 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001232 case ICBTAG_FILE_TYPE_REALTIME:
1233 case ICBTAG_FILE_TYPE_REGULAR:
1234 case ICBTAG_FILE_TYPE_UNDEF:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001235 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
1236 inode->i_data.a_ops = &udf_adinicb_aops;
1237 else
1238 inode->i_data.a_ops = &udf_aops;
1239 inode->i_op = &udf_file_inode_operations;
1240 inode->i_fop = &udf_file_operations;
1241 inode->i_mode |= S_IFREG;
1242 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001243 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001244 inode->i_mode |= S_IFBLK;
1245 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001246 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001247 inode->i_mode |= S_IFCHR;
1248 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001249 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001250 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1251 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001252 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001253 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1254 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001255 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001256 inode->i_data.a_ops = &udf_symlink_aops;
1257 inode->i_op = &page_symlink_inode_operations;
1258 inode->i_mode = S_IFLNK | S_IRWXUGO;
1259 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001260 default:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001261 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown file type=%d\n",
1262 inode->i_ino, fe->icbTag.fileType);
1263 make_bad_inode(inode);
1264 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001266 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001267 struct deviceSpec *dsea = (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001268 if (dsea) {
1269 init_special_inode(inode, inode->i_mode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001270 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1271 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /* Developer ID ??? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001273 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 make_bad_inode(inode);
1275 }
1276 }
1277}
1278
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001279static int udf_alloc_i_data(struct inode *inode, size_t size)
1280{
1281 UDF_I_DATA(inode) = kmalloc(size, GFP_KERNEL);
1282
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001283 if (!UDF_I_DATA(inode)) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001284 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) no free memory\n",
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001285 inode->i_ino);
1286 return -ENOMEM;
1287 }
1288
1289 return 0;
1290}
1291
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001292static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
1294 mode_t mode;
1295 uint32_t permissions;
1296 uint32_t flags;
1297
1298 permissions = le32_to_cpu(fe->permissions);
1299 flags = le16_to_cpu(fe->icbTag.flags);
1300
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001301 mode = (( permissions ) & S_IRWXO) |
1302 (( permissions >> 2 ) & S_IRWXG) |
1303 (( permissions >> 4 ) & S_IRWXU) |
1304 (( flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1305 (( flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1306 (( flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 return mode;
1309}
1310
1311/*
1312 * udf_write_inode
1313 *
1314 * PURPOSE
1315 * Write out the specified inode.
1316 *
1317 * DESCRIPTION
1318 * This routine is called whenever an inode is synced.
1319 * Currently this routine is just a placeholder.
1320 *
1321 * HISTORY
1322 * July 1, 1997 - Andrew E. Mileski
1323 * Written, tested, and released.
1324 */
1325
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001326int udf_write_inode(struct inode *inode, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 int ret;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 lock_kernel();
1331 ret = udf_update_inode(inode, sync);
1332 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return ret;
1335}
1336
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001337int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 return udf_update_inode(inode, 1);
1340}
1341
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001342static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct buffer_head *bh = NULL;
1345 struct fileEntry *fe;
1346 struct extendedFileEntry *efe;
1347 uint32_t udfperms;
1348 uint16_t icbflags;
1349 uint16_t crclen;
1350 int i;
1351 kernel_timestamp cpu_time;
1352 int err = 0;
1353
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001354 bh = udf_tread(inode->i_sb, udf_get_lb_pblock(inode->i_sb, UDF_I_LOCATION(inode), 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001355 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 udf_debug("bread failure\n");
1357 return -EIO;
1358 }
1359
1360 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
1361
1362 fe = (struct fileEntry *)bh->b_data;
1363 efe = (struct extendedFileEntry *)bh->b_data;
1364
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001365 if (le16_to_cpu(fe->descTag.tagIdent) == TAG_IDENT_USE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001367 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 use->lengthAllocDescs = cpu_to_le32(UDF_I_LENALLOC(inode));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001370 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry), UDF_I_DATA(inode),
1371 inode->i_sb->s_blocksize - sizeof(struct unallocSpaceEntry));
1372 crclen = sizeof(struct unallocSpaceEntry) + UDF_I_LENALLOC(inode) - sizeof(tag);
1373 use->descTag.tagLocation = cpu_to_le32(UDF_I_LOCATION(inode).logicalBlockNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 use->descTag.descCRCLength = cpu_to_le16(crclen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001375 use->descTag.descCRC = cpu_to_le16(udf_crc((char *)use + sizeof(tag), crclen, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 use->descTag.tagChecksum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001378 for (i = 0; i < 16; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (i != 4)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001380 use->descTag.tagChecksum += ((uint8_t *)&(use->descTag))[i];
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 mark_buffer_dirty(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001384 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return err;
1386 }
1387
Phillip Susi4d6660e2006-03-07 21:55:24 -08001388 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1389 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001390 else
1391 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Phillip Susi4d6660e2006-03-07 21:55:24 -08001393 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1394 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001395 else
1396 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001398 udfperms = ((inode->i_mode & S_IRWXO) ) |
1399 ((inode->i_mode & S_IRWXG) << 2) |
1400 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001402 udfperms |= (le32_to_cpu(fe->permissions) &
1403 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1404 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1405 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 fe->permissions = cpu_to_le32(udfperms);
1407
1408 if (S_ISDIR(inode->i_mode))
1409 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1410 else
1411 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1412
1413 fe->informationLength = cpu_to_le64(inode->i_size);
1414
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001415 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001417 struct deviceSpec *dsea =
1418 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001419 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001421 udf_add_extendedattr(inode,
1422 sizeof(struct deviceSpec) +
1423 sizeof(regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 dsea->attrType = cpu_to_le32(12);
1425 dsea->attrSubtype = 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001426 dsea->attrLength = cpu_to_le32(sizeof(struct deviceSpec) +
1427 sizeof(regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 dsea->impUseLength = cpu_to_le32(sizeof(regid));
1429 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001430 eid = (regid *)dsea->impUse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 memset(eid, 0, sizeof(regid));
1432 strcpy(eid->ident, UDF_ID_DEVELOPER);
1433 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1434 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1435 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1436 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1437 }
1438
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001439 if (UDF_I_EFE(inode) == 0) {
1440 memcpy(bh->b_data + sizeof(struct fileEntry), UDF_I_DATA(inode),
1441 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001442 fe->logicalBlocksRecorded = cpu_to_le64(
1443 (inode->i_blocks + (1 << (inode->i_sb->s_blocksize_bits - 9)) - 1) >>
1444 (inode->i_sb->s_blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (udf_time_to_stamp(&cpu_time, inode->i_atime))
1447 fe->accessTime = cpu_to_lets(cpu_time);
1448 if (udf_time_to_stamp(&cpu_time, inode->i_mtime))
1449 fe->modificationTime = cpu_to_lets(cpu_time);
1450 if (udf_time_to_stamp(&cpu_time, inode->i_ctime))
1451 fe->attrTime = cpu_to_lets(cpu_time);
1452 memset(&(fe->impIdent), 0, sizeof(regid));
1453 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1454 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1455 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1456 fe->uniqueID = cpu_to_le64(UDF_I_UNIQUE(inode));
1457 fe->lengthExtendedAttr = cpu_to_le32(UDF_I_LENEATTR(inode));
1458 fe->lengthAllocDescs = cpu_to_le32(UDF_I_LENALLOC(inode));
1459 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1460 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001461 } else {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001462 memcpy(bh->b_data + sizeof(struct extendedFileEntry), UDF_I_DATA(inode),
1463 inode->i_sb->s_blocksize - sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001465 efe->logicalBlocksRecorded = cpu_to_le64(
1466 (inode->i_blocks + (1 << (inode->i_sb->s_blocksize_bits - 9)) - 1) >>
1467 (inode->i_sb->s_blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 if (UDF_I_CRTIME(inode).tv_sec > inode->i_atime.tv_sec ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001470 (UDF_I_CRTIME(inode).tv_sec == inode->i_atime.tv_sec &&
1471 UDF_I_CRTIME(inode).tv_nsec > inode->i_atime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 UDF_I_CRTIME(inode) = inode->i_atime;
1473 }
1474 if (UDF_I_CRTIME(inode).tv_sec > inode->i_mtime.tv_sec ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001475 (UDF_I_CRTIME(inode).tv_sec == inode->i_mtime.tv_sec &&
1476 UDF_I_CRTIME(inode).tv_nsec > inode->i_mtime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 UDF_I_CRTIME(inode) = inode->i_mtime;
1478 }
1479 if (UDF_I_CRTIME(inode).tv_sec > inode->i_ctime.tv_sec ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001480 (UDF_I_CRTIME(inode).tv_sec == inode->i_ctime.tv_sec &&
1481 UDF_I_CRTIME(inode).tv_nsec > inode->i_ctime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 UDF_I_CRTIME(inode) = inode->i_ctime;
1483 }
1484
1485 if (udf_time_to_stamp(&cpu_time, inode->i_atime))
1486 efe->accessTime = cpu_to_lets(cpu_time);
1487 if (udf_time_to_stamp(&cpu_time, inode->i_mtime))
1488 efe->modificationTime = cpu_to_lets(cpu_time);
1489 if (udf_time_to_stamp(&cpu_time, UDF_I_CRTIME(inode)))
1490 efe->createTime = cpu_to_lets(cpu_time);
1491 if (udf_time_to_stamp(&cpu_time, inode->i_ctime))
1492 efe->attrTime = cpu_to_lets(cpu_time);
1493
1494 memset(&(efe->impIdent), 0, sizeof(regid));
1495 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1496 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1497 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1498 efe->uniqueID = cpu_to_le64(UDF_I_UNIQUE(inode));
1499 efe->lengthExtendedAttr = cpu_to_le32(UDF_I_LENEATTR(inode));
1500 efe->lengthAllocDescs = cpu_to_le32(UDF_I_LENALLOC(inode));
1501 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1502 crclen = sizeof(struct extendedFileEntry);
1503 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 if (UDF_I_STRAT4096(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 fe->icbTag.strategyType = cpu_to_le16(4096);
1506 fe->icbTag.strategyParameter = cpu_to_le16(1);
1507 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001508 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 fe->icbTag.strategyType = cpu_to_le16(4);
1510 fe->icbTag.numEntries = cpu_to_le16(1);
1511 }
1512
1513 if (S_ISDIR(inode->i_mode))
1514 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1515 else if (S_ISREG(inode->i_mode))
1516 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1517 else if (S_ISLNK(inode->i_mode))
1518 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1519 else if (S_ISBLK(inode->i_mode))
1520 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1521 else if (S_ISCHR(inode->i_mode))
1522 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1523 else if (S_ISFIFO(inode->i_mode))
1524 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1525 else if (S_ISSOCK(inode->i_mode))
1526 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1527
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001528 icbflags = UDF_I_ALLOCTYPE(inode) |
1529 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1530 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1531 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1532 (le16_to_cpu(fe->icbTag.flags) &
1533 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1534 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 fe->icbTag.flags = cpu_to_le16(icbflags);
1537 if (UDF_SB_UDFREV(inode->i_sb) >= 0x0200)
1538 fe->descTag.descVersion = cpu_to_le16(3);
1539 else
1540 fe->descTag.descVersion = cpu_to_le16(2);
1541 fe->descTag.tagSerialNum = cpu_to_le16(UDF_SB_SERIALNUM(inode->i_sb));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001542 fe->descTag.tagLocation = cpu_to_le32(UDF_I_LOCATION(inode).logicalBlockNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 crclen += UDF_I_LENEATTR(inode) + UDF_I_LENALLOC(inode) - sizeof(tag);
1544 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001545 fe->descTag.descCRC = cpu_to_le16(udf_crc((char *)fe + sizeof(tag), crclen, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 fe->descTag.tagChecksum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001548 for (i = 0; i < 16; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (i != 4)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001550 fe->descTag.tagChecksum += ((uint8_t *)&(fe->descTag))[i];
1551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /* write the data blocks */
1554 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001555 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 sync_dirty_buffer(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001557 if (buffer_req(bh) && !buffer_uptodate(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 printk("IO error syncing udf inode [%s:%08lx]\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001559 inode->i_sb->s_id, inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 err = -EIO;
1561 }
1562 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001563 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return err;
1566}
1567
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001568struct inode *udf_iget(struct super_block *sb, kernel_lb_addr ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1571 struct inode *inode = iget_locked(sb, block);
1572
1573 if (!inode)
1574 return NULL;
1575
1576 if (inode->i_state & I_NEW) {
1577 memcpy(&UDF_I_LOCATION(inode), &ino, sizeof(kernel_lb_addr));
1578 __udf_read_inode(inode);
1579 unlock_new_inode(inode);
1580 }
1581
1582 if (is_bad_inode(inode))
1583 goto out_iput;
1584
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001585 if (ino.logicalBlockNum >= UDF_SB_PARTLEN(sb, ino.partitionReferenceNum)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 udf_debug("block=%d, partition=%d out of range\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001587 ino.logicalBlockNum, ino.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 make_bad_inode(inode);
1589 goto out_iput;
1590 }
1591
1592 return inode;
1593
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001594 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 iput(inode);
1596 return NULL;
1597}
1598
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001599int8_t udf_add_aext(struct inode * inode, struct extent_position * epos,
1600 kernel_lb_addr eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 int adsize;
1603 short_ad *sad = NULL;
1604 long_ad *lad = NULL;
1605 struct allocExtDesc *aed;
1606 int8_t etype;
1607 uint8_t *ptr;
1608
Jan Karaff116fc2007-05-08 00:35:14 -07001609 if (!epos->bh)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001610 ptr = UDF_I_DATA(inode) + epos->offset - udf_file_entry_alloc_offset(inode) + UDF_I_LENEATTR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 else
Jan Karaff116fc2007-05-08 00:35:14 -07001612 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_SHORT)
1615 adsize = sizeof(short_ad);
1616 else if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_LONG)
1617 adsize = sizeof(long_ad);
1618 else
1619 return -1;
1620
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001621 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 char *sptr, *dptr;
1623 struct buffer_head *nbh;
1624 int err, loffset;
Jan Karaff116fc2007-05-08 00:35:14 -07001625 kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001627 if (!(epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1628 obloc.partitionReferenceNum,
1629 obloc.logicalBlockNum, &err))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return -1;
1631 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001632 if (!(nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
1633 epos->block, 0)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return -1;
1635 }
1636 lock_buffer(nbh);
1637 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1638 set_buffer_uptodate(nbh);
1639 unlock_buffer(nbh);
1640 mark_buffer_dirty_inode(nbh, inode);
1641
1642 aed = (struct allocExtDesc *)(nbh->b_data);
1643 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001644 aed->previousAllocExtLocation = cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001645 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001646 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 aed->lengthAllocDescs = cpu_to_le32(adsize);
1648 sptr = ptr - adsize;
1649 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1650 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001651 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001652 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001653 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 aed->lengthAllocDescs = cpu_to_le32(0);
1655 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001656 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001658 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001659 aed = (struct allocExtDesc *)epos->bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 aed->lengthAllocDescs =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001661 cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) + adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001662 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 UDF_I_LENALLOC(inode) += adsize;
1664 mark_inode_dirty(inode);
1665 }
1666 }
1667 if (UDF_SB_UDFREV(inode->i_sb) >= 0x0200)
1668 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001669 epos->block.logicalBlockNum, sizeof(tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 else
1671 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001672 epos->block.logicalBlockNum, sizeof(tag));
1673 switch (UDF_I_ALLOCTYPE(inode)) {
1674 case ICBTAG_FLAG_AD_SHORT:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001675 sad = (short_ad *)sptr;
1676 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1677 inode->i_sb->s_blocksize);
1678 sad->extPosition = cpu_to_le32(epos->block.logicalBlockNum);
1679 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001680 case ICBTAG_FLAG_AD_LONG:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001681 lad = (long_ad *)sptr;
1682 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1683 inode->i_sb->s_blocksize);
1684 lad->extLocation = cpu_to_lelb(epos->block);
1685 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1686 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001688 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001689 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1690 UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001691 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001693 udf_update_tag(epos->bh->b_data, sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001694 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001695 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001696 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001698 }
Jan Karaff116fc2007-05-08 00:35:14 -07001699 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
1701
Jan Karaff116fc2007-05-08 00:35:14 -07001702 etype = udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001704 if (!epos->bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 UDF_I_LENALLOC(inode) += adsize;
1706 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001707 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001708 aed = (struct allocExtDesc *)epos->bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 aed->lengthAllocDescs =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001710 cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) + adsize);
1711 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
1712 udf_update_tag(epos->bh->b_data, epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001714 udf_update_tag(epos->bh->b_data, sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001715 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
1718 return etype;
1719}
1720
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001721int8_t udf_write_aext(struct inode * inode, struct extent_position * epos,
1722 kernel_lb_addr eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 int adsize;
1725 uint8_t *ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001726 short_ad *sad;
1727 long_ad *lad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Jan Karaff116fc2007-05-08 00:35:14 -07001729 if (!epos->bh)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001730 ptr = UDF_I_DATA(inode) + epos->offset - udf_file_entry_alloc_offset(inode) + UDF_I_LENEATTR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 else
Jan Karaff116fc2007-05-08 00:35:14 -07001732 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001734 switch (UDF_I_ALLOCTYPE(inode)) {
1735 case ICBTAG_FLAG_AD_SHORT:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001736 sad = (short_ad *)ptr;
1737 sad->extLength = cpu_to_le32(elen);
1738 sad->extPosition = cpu_to_le32(eloc.logicalBlockNum);
1739 adsize = sizeof(short_ad);
1740 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001741 case ICBTAG_FLAG_AD_LONG:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001742 lad = (long_ad *)ptr;
1743 lad->extLength = cpu_to_le32(elen);
1744 lad->extLocation = cpu_to_lelb(eloc);
1745 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1746 adsize = sizeof(long_ad);
1747 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001748 default:
1749 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
1751
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001752 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001753 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1754 UDF_SB_UDFREV(inode->i_sb) >= 0x0201) {
1755 struct allocExtDesc *aed = (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001756 udf_update_tag(epos->bh->b_data,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001757 le32_to_cpu(aed->lengthAllocDescs) + sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
Jan Karaff116fc2007-05-08 00:35:14 -07001759 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001760 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001765 epos->offset += adsize;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return (elen >> 30);
1768}
1769
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001770int8_t udf_next_aext(struct inode * inode, struct extent_position * epos,
1771 kernel_lb_addr * eloc, uint32_t * elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 int8_t etype;
1774
Jan Karaff116fc2007-05-08 00:35:14 -07001775 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001776 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Jan Karaff116fc2007-05-08 00:35:14 -07001777 epos->block = *eloc;
1778 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001779 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001780 if (!(epos->bh = udf_tread(inode->i_sb, udf_get_lb_pblock(inode->i_sb, epos->block, 0)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 udf_debug("reading block %d failed!\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001782 udf_get_lb_pblock(inode->i_sb, epos->block, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return -1;
1784 }
1785 }
1786
1787 return etype;
1788}
1789
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001790int8_t udf_current_aext(struct inode * inode, struct extent_position * epos,
1791 kernel_lb_addr * eloc, uint32_t * elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
1793 int alen;
1794 int8_t etype;
1795 uint8_t *ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001796 short_ad *sad;
1797 long_ad *lad;
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001800 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001801 if (!epos->offset)
1802 epos->offset = udf_file_entry_alloc_offset(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001803 ptr = UDF_I_DATA(inode) + epos->offset - udf_file_entry_alloc_offset(inode) + UDF_I_LENEATTR(inode);
1804 alen = udf_file_entry_alloc_offset(inode) + UDF_I_LENALLOC(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001805 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001806 if (!epos->offset)
1807 epos->offset = sizeof(struct allocExtDesc);
1808 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001809 alen = sizeof(struct allocExtDesc) +
1810 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001813 switch (UDF_I_ALLOCTYPE(inode)) {
1814 case ICBTAG_FLAG_AD_SHORT:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001815 if (!(sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001817 etype = le32_to_cpu(sad->extLength) >> 30;
1818 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
1819 eloc->partitionReferenceNum = UDF_I_LOCATION(inode).partitionReferenceNum;
1820 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1821 break;
1822 case ICBTAG_FLAG_AD_LONG:
1823 if (!(lad = udf_get_filelongad(ptr, alen, &epos->offset, inc)))
1824 return -1;
1825 etype = le32_to_cpu(lad->extLength) >> 30;
1826 *eloc = lelb_to_cpu(lad->extLocation);
1827 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1828 break;
1829 default:
1830 udf_debug("alloc_type = %d unsupported\n", UDF_I_ALLOCTYPE(inode));
1831 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833
1834 return etype;
1835}
1836
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001837static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
1838 kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 kernel_lb_addr oeloc;
1841 uint32_t oelen;
1842 int8_t etype;
1843
Jan Karaff116fc2007-05-08 00:35:14 -07001844 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001845 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001847 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Jan Karaff116fc2007-05-08 00:35:14 -07001848 udf_write_aext(inode, &epos, neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 neloc = oeloc;
1850 nelen = (etype << 30) | oelen;
1851 }
Jan Karaff116fc2007-05-08 00:35:14 -07001852 udf_add_aext(inode, &epos, neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001853 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return (nelen >> 30);
1856}
1857
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001858int8_t udf_delete_aext(struct inode * inode, struct extent_position epos,
1859 kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Jan Karaff116fc2007-05-08 00:35:14 -07001861 struct extent_position oepos;
1862 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int8_t etype;
1864 struct allocExtDesc *aed;
1865
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001866 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07001867 get_bh(epos.bh);
1868 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870
1871 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_SHORT)
1872 adsize = sizeof(short_ad);
1873 else if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_LONG)
1874 adsize = sizeof(long_ad);
1875 else
1876 adsize = 0;
1877
Jan Karaff116fc2007-05-08 00:35:14 -07001878 oepos = epos;
1879 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return -1;
1881
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001882 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Jan Karaff116fc2007-05-08 00:35:14 -07001883 udf_write_aext(inode, &oepos, eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001884 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001885 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07001886 brelse(oepos.bh);
1887 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07001888 oepos.bh = epos.bh;
1889 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
1891 }
1892 memset(&eloc, 0x00, sizeof(kernel_lb_addr));
1893 elen = 0;
1894
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001895 if (epos.bh != oepos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001896 udf_free_blocks(inode->i_sb, inode, epos.block, 0, 1);
1897 udf_write_aext(inode, &oepos, eloc, elen, 1);
1898 udf_write_aext(inode, &oepos, eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001899 if (!oepos.bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 UDF_I_LENALLOC(inode) -= (adsize * 2);
1901 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001902 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001903 aed = (struct allocExtDesc *)oepos.bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 aed->lengthAllocDescs =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001905 cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) - (2 * adsize));
1906 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1907 UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
1908 udf_update_tag(oepos.bh->b_data, oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001910 udf_update_tag(oepos.bh->b_data, sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001911 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001913 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001914 udf_write_aext(inode, &oepos, eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001915 if (!oepos.bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 UDF_I_LENALLOC(inode) -= adsize;
1917 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001918 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001919 aed = (struct allocExtDesc *)oepos.bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 aed->lengthAllocDescs =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001921 cpu_to_le32(le32_to_cpu(aed->lengthAllocDescs) - adsize);
1922 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1923 UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
1924 udf_update_tag(oepos.bh->b_data, epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 else
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001926 udf_update_tag(oepos.bh->b_data, sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001927 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001930
Jan Kara3bf25cb2007-05-08 00:35:16 -07001931 brelse(epos.bh);
1932 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return (elen >> 30);
1935}
1936
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001937int8_t inode_bmap(struct inode * inode, sector_t block,
1938 struct extent_position * pos, kernel_lb_addr * eloc,
1939 uint32_t * elen, sector_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001941 loff_t lbcount = 0, bcount =
1942 (loff_t) block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 int8_t etype;
1944
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001945 if (block < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 printk(KERN_ERR "udf: inode_bmap: block < 0\n");
1947 return -1;
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Jan Karaff116fc2007-05-08 00:35:14 -07001950 pos->offset = 0;
1951 pos->block = UDF_I_LOCATION(inode);
1952 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001955 do {
1956 if ((etype = udf_next_aext(inode, pos, eloc, elen, 1)) == -1) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001957 *offset = (bcount - lbcount) >> inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 UDF_I_LENEXTENTS(inode) = lbcount;
1959 return -1;
1960 }
1961 lbcount += *elen;
1962 } while (lbcount <= bcount);
1963
Jan Kara60448b12007-05-08 00:35:13 -07001964 *offset = (bcount + *elen - lbcount) >> inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 return etype;
1967}
1968
Jan Kara60448b12007-05-08 00:35:13 -07001969long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
Jan Karaff116fc2007-05-08 00:35:14 -07001971 kernel_lb_addr eloc;
1972 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07001973 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001974 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 int ret;
1976
1977 lock_kernel();
1978
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001979 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) == (EXT_RECORDED_ALLOCATED >> 30))
Jan Kara60448b12007-05-08 00:35:13 -07001980 ret = udf_get_lb_pblock(inode->i_sb, eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 else
1982 ret = 0;
1983
1984 unlock_kernel();
Jan Kara3bf25cb2007-05-08 00:35:16 -07001985 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
1988 return udf_fixed_to_variable(ret);
1989 else
1990 return ret;
1991}