blob: ccc81432141411aadb24aa10b076d82e376ae5c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/04/98 dgb Added rudimentary directory functions
20 * 10/07/98 Fully working udf_block_map! It works!
21 * 11/25/98 bmap altered to better support extents
Marcin Slusarz4b111112008-02-08 04:20:36 -080022 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
25 * block boundaries (which is not actually allowed)
26 * 12/20/98 added support for strategy 4096
27 * 03/07/99 rewrote udf_block_map (again)
28 * New funcs, inode_bmap, udf_next_aext
29 * 04/19/99 Support for writing device EA's for major/minor #
30 */
31
32#include "udfdecl.h"
33#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
37#include <linux/writeback.h>
38#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020039#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "udf_i.h"
42#include "udf_sb.h"
43
44MODULE_AUTHOR("Ben Fennema");
45MODULE_DESCRIPTION("Universal Disk Format Filesystem");
46MODULE_LICENSE("GPL");
47
48#define EXTENT_MERGE_SIZE 5
49
50static mode_t udf_convert_permissions(struct fileEntry *);
51static int udf_update_inode(struct inode *, int);
52static void udf_fill_inode(struct inode *, struct buffer_head *);
Jan Kara49521de2010-10-20 17:42:44 +020053static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070055static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080056 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070057static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020058 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020060 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020062 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020064 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020066 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070067 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
Christoph Hellwigb1e32122008-02-22 12:38:48 +010070
Al Viro3aac2b62010-06-07 00:43:39 -040071void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Jan Kara2c948b32009-12-03 13:39:28 +010073 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040074 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010075
Al Viro3aac2b62010-06-07 00:43:39 -040076 if (!inode->i_nlink && !is_bad_inode(inode)) {
77 want_delete = 1;
Jan Kara7e49b6f2010-10-22 00:30:26 +020078 udf_setsize(inode, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040079 udf_update_inode(inode, IS_SYNC(inode));
Jan Kara7e49b6f2010-10-22 00:30:26 +020080 } else
81 truncate_inode_pages(&inode->i_data, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040082 invalidate_inode_buffers(inode);
83 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010084 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
85 inode->i_size != iinfo->i_lenExtents) {
86 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
Daniel Mack1537a362010-01-29 15:57:49 +080087 "inode size %llu different from extent length %llu. "
Jan Kara2c948b32009-12-03 13:39:28 +010088 "Filesystem need not be standards compliant.\n",
89 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
90 (unsigned long long)inode->i_size,
91 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080093 kfree(iinfo->i_ext.i_data);
94 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040095 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -040096 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static int udf_writepage(struct page *page, struct writeback_control *wbc)
101{
102 return block_write_full_page(page, udf_get_block, wbc);
103}
104
105static int udf_readpage(struct file *file, struct page *page)
106{
107 return block_read_full_page(page, udf_get_block);
108}
109
Nick Pigginbe021ee2007-10-16 01:25:20 -0700110static int udf_write_begin(struct file *file, struct address_space *mapping,
111 loff_t pos, unsigned len, unsigned flags,
112 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200114 int ret;
115
116 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
117 if (unlikely(ret)) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200118 struct inode *inode = mapping->host;
119 struct udf_inode_info *iinfo = UDF_I(inode);
120 loff_t isize = inode->i_size;
121
122 if (pos + len > isize) {
123 truncate_pagecache(inode, pos + len, isize);
124 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
125 down_write(&iinfo->i_data_sem);
126 udf_truncate_extents(inode);
127 up_write(&iinfo->i_data_sem);
128 }
129 }
Christoph Hellwig155130a2010-06-04 11:29:58 +0200130 }
131
132 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static sector_t udf_bmap(struct address_space *mapping, sector_t block)
136{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700137 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700140const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700141 .readpage = udf_readpage,
142 .writepage = udf_writepage,
143 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700144 .write_begin = udf_write_begin,
145 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700146 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Jan Kara7e49b6f2010-10-22 00:30:26 +0200149int udf_expand_file_adinicb(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct page *page;
152 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800153 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200154 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct writeback_control udf_wbc = {
156 .sync_mode = WB_SYNC_NONE,
157 .nr_to_write = 1,
158 };
159
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800160 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800162 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800164 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200165 /* from now on we have normal address_space methods */
166 inode->i_data.a_ops = &udf_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
Jan Kara7e49b6f2010-10-22 00:30:26 +0200171 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
172 if (!page)
173 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700174
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700175 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800177 memset(kaddr + iinfo->i_lenAlloc, 0x00,
178 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
179 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
180 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 flush_dcache_page(page);
182 SetPageUptodate(page);
183 kunmap(page);
184 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800185 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
186 iinfo->i_lenAlloc);
187 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800189 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800191 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200192 /* from now on we have normal address_space methods */
193 inode->i_data.a_ops = &udf_aops;
194 err = inode->i_data.a_ops->writepage(page, &udf_wbc);
195 if (err) {
196 /* Restore everything back so that we don't lose data... */
197 lock_page(page);
198 kaddr = kmap(page);
199 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
200 inode->i_size);
201 kunmap(page);
202 unlock_page(page);
203 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
204 inode->i_data.a_ops = &udf_adinicb_aops;
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200208
209 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700212struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
213 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700216 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200217 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700219 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800222 loff_t f_pos = udf_ext0_offset(inode);
223 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800225 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
228 alloctype = ICBTAG_FLAG_AD_SHORT;
229 else
230 alloctype = ICBTAG_FLAG_AD_LONG;
231
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700232 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800233 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 mark_inode_dirty(inode);
235 return NULL;
236 }
237
238 /* alloc block, and copy data to it */
239 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800240 iinfo->i_location.partitionReferenceNum,
241 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (!(*block))
243 return NULL;
244 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800245 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800246 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!newblock)
248 return NULL;
249 dbh = udf_tgetblk(inode->i_sb, newblock);
250 if (!dbh)
251 return NULL;
252 lock_buffer(dbh);
253 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
254 set_buffer_uptodate(dbh);
255 unlock_buffer(dbh);
256 mark_buffer_dirty_inode(dbh, inode);
257
Marcin Slusarz4b111112008-02-08 04:20:36 -0800258 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800259 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700260 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 dfibh.soffset = dfibh.eoffset = 0;
262 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800263 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800264 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800265 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
266 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700267 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700268 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return NULL;
270 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800271 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 sfi->descTag.tagLocation = cpu_to_le32(*block);
273 dfibh.soffset = dfibh.eoffset;
274 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
275 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
276 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800277 sfi->fileIdent +
278 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800279 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700280 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return NULL;
282 }
283 }
284 mark_buffer_dirty_inode(dbh, inode);
285
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800286 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
287 iinfo->i_lenAlloc);
288 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800290 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800291 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100292 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700293 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800294 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700295 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100296 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* UniqueID stuff */
298
Jan Kara3bf25cb2007-05-08 00:35:16 -0700299 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 mark_inode_dirty(inode);
301 return dbh;
302}
303
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700304static int udf_get_block(struct inode *inode, sector_t block,
305 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int err, new;
308 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800309 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800310 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700312 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 phys = udf_block_map(inode, block);
314 if (phys)
315 map_bh(bh_result, inode->i_sb, phys);
316 return 0;
317 }
318
319 err = -EIO;
320 new = 0;
321 bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800322 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100323
324 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800325 if (block == iinfo->i_next_alloc_block + 1) {
326 iinfo->i_next_alloc_block++;
327 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
330 err = 0;
331
332 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200333 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (err)
335 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200336 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (new)
339 set_buffer_new(bh_result);
340 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700341
342abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100343 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700347static struct buffer_head *udf_getblk(struct inode *inode, long block,
348 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700350 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct buffer_head dummy;
352
353 dummy.b_state = 0;
354 dummy.b_blocknr = -1000;
355 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700356 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700358 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 lock_buffer(bh);
360 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
361 set_buffer_uptodate(bh);
362 unlock_buffer(bh);
363 mark_buffer_dirty_inode(bh, inode);
364 }
365 return bh;
366 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return NULL;
369}
370
Jan Kara31170b62007-05-08 00:35:21 -0700371/* Extend the file by 'blocks' blocks, return the number of extents added */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200372static int udf_do_extend_file(struct inode *inode,
373 struct extent_position *last_pos,
374 struct kernel_long_ad *last_ext,
375 sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700376{
377 sector_t add;
378 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
379 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200380 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700381 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800382 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200383 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700384
385 /* The previous extent is fake and we should not extend by anything
386 * - there's nothing to do... */
387 if (!blocks && fake)
388 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700389
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800390 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700391 /* Round the last extent up to a multiple of block size */
392 if (last_ext->extLength & (sb->s_blocksize - 1)) {
393 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700394 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
395 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
396 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800397 iinfo->i_lenExtents =
398 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700400 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700401
Jan Kara31170b62007-05-08 00:35:21 -0700402 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800403 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
404 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700405 /* Save the extent so that we can reattach it to the end */
406 prealloc_loc = last_ext->extLocation;
407 prealloc_len = last_ext->extLength;
408 /* Mark the extent as a hole */
409 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700410 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700411 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800412 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700413 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700414
Jan Kara31170b62007-05-08 00:35:21 -0700415 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800416 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
417 EXT_NOT_RECORDED_NOT_ALLOCATED) {
418 add = ((1 << 30) - sb->s_blocksize -
419 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
420 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700421 if (add > blocks)
422 add = blocks;
423 blocks -= add;
424 last_ext->extLength += add << sb->s_blocksize_bits;
425 }
426
427 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200428 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700429 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700430 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800431 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200432 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800433 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700434
Jan Kara31170b62007-05-08 00:35:21 -0700435 /* Managed to do everything necessary? */
436 if (!blocks)
437 goto out;
438
439 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
440 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800441 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700442 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800443 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
444 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700445
Jan Kara31170b62007-05-08 00:35:21 -0700446 /* Create enough extents to cover the whole hole */
447 while (blocks > add) {
448 blocks -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200449 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
450 last_ext->extLength, 1);
451 if (err)
452 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700453 count++;
454 }
455 if (blocks) {
456 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700457 (blocks << sb->s_blocksize_bits);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200458 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
459 last_ext->extLength, 1);
460 if (err)
461 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700462 count++;
463 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700464
465out:
Jan Kara31170b62007-05-08 00:35:21 -0700466 /* Do we have some preallocated blocks saved? */
467 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200468 err = udf_add_aext(inode, last_pos, &prealloc_loc,
469 prealloc_len, 1);
470 if (err)
471 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700472 last_ext->extLocation = prealloc_loc;
473 last_ext->extLength = prealloc_len;
474 count++;
475 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700476
Jan Kara31170b62007-05-08 00:35:21 -0700477 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800478 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200479 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800480 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200481 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700482 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200483 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700484
Jan Kara31170b62007-05-08 00:35:21 -0700485 return count;
486}
487
Jan Kara7e49b6f2010-10-22 00:30:26 +0200488static int udf_extend_file(struct inode *inode, loff_t newsize)
489{
490
491 struct extent_position epos;
492 struct kernel_lb_addr eloc;
493 uint32_t elen;
494 int8_t etype;
495 struct super_block *sb = inode->i_sb;
496 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
497 int adsize;
498 struct udf_inode_info *iinfo = UDF_I(inode);
499 struct kernel_long_ad extent;
500 int err;
501
502 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
503 adsize = sizeof(struct short_ad);
504 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
505 adsize = sizeof(struct long_ad);
506 else
507 BUG();
508
509 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
510
511 /* File has extent covering the new size (could happen when extending
512 * inside a block)? */
513 if (etype != -1)
514 return 0;
515 if (newsize & (sb->s_blocksize - 1))
516 offset++;
517 /* Extended file just to the boundary of the last file block? */
518 if (offset == 0)
519 return 0;
520
521 /* Truncate is extending the file by 'offset' blocks */
522 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
523 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
524 /* File has no extents at all or has empty last
525 * indirect extent! Create a fake extent... */
526 extent.extLocation.logicalBlockNum = 0;
527 extent.extLocation.partitionReferenceNum = 0;
528 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
529 } else {
530 epos.offset -= adsize;
531 etype = udf_next_aext(inode, &epos, &extent.extLocation,
532 &extent.extLength, 0);
533 extent.extLength |= etype << 30;
534 }
535 err = udf_do_extend_file(inode, &epos, &extent, offset);
536 if (err < 0)
537 goto out;
538 err = 0;
539 iinfo->i_lenExtents = newsize;
540out:
541 brelse(epos.bh);
542 return err;
543}
544
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700545static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800546 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Jan Kara31170b62007-05-08 00:35:21 -0700548 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700549 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200550 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700551 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700553 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200554 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700556 loff_t lbcount = 0, b_off = 0;
557 uint32_t newblocknum, newblock;
558 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800560 struct udf_inode_info *iinfo = UDF_I(inode);
561 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700562 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Jan Karaff116fc2007-05-08 00:35:14 -0700564 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800565 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700566 prev_epos.bh = NULL;
567 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700568 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700571 alternate between laarr[0] and laarr[1] for locations of the
572 current extent, and the previous extent */
573 do {
574 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700575 brelse(prev_epos.bh);
576 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700577 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700579 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700580 brelse(cur_epos.bh);
581 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700582 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
585 lbcount += elen;
586
Jan Karaff116fc2007-05-08 00:35:14 -0700587 prev_epos.block = cur_epos.block;
588 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Jan Karaff116fc2007-05-08 00:35:14 -0700590 prev_epos.offset = cur_epos.offset;
591 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Marcin Slusarz4b111112008-02-08 04:20:36 -0800593 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
594 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
596
597 c = !c;
598
599 laarr[c].extLength = (etype << 30) | elen;
600 laarr[c].extLocation = eloc;
601
602 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
603 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700604 ((elen + inode->i_sb->s_blocksize - 1) >>
605 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700607 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 } while (lbcount + elen <= b_off);
609
610 b_off -= lbcount;
611 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700612 /*
613 * Move prev_epos and cur_epos into indirect extent if we are at
614 * the pointer to it
615 */
616 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
617 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700620 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700622 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
623 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700625 ((elen + inode->i_sb->s_blocksize - 1) &
626 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200627 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700629 brelse(prev_epos.bh);
630 brelse(cur_epos.bh);
631 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200632 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *phys = newblock;
634 return NULL;
635 }
636
Jan Kara31170b62007-05-08 00:35:21 -0700637 last_block = block;
638 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700639 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700640 int ret;
641
642 if (count) {
643 if (c)
644 laarr[0] = laarr[1];
645 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700646 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700647 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800648 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200649 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700650 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200651 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800652 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700653 startnum = (offset > 0);
654 }
655 /* Create extents for the hole between EOF and offset */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200656 ret = udf_do_extend_file(inode, &prev_epos, laarr, offset);
657 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700658 brelse(prev_epos.bh);
659 brelse(cur_epos.bh);
660 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200661 *err = ret;
Jan Kara31170b62007-05-08 00:35:21 -0700662 return NULL;
663 }
664 c = 0;
665 offset = 0;
666 count += ret;
667 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800668 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
669 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700670 /* Is there any real extent? - otherwise we overwrite
671 * the fake one... */
672 if (count)
673 c = !c;
674 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700675 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800676 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200677 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700678 count++;
679 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700680 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700681 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700683 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 endnum = startnum = ((count > 2) ? 2 : count);
685
Marcin Slusarz4b111112008-02-08 04:20:36 -0800686 /* if the current extent is in position 0,
687 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700688 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700689 laarr[2] = laarr[0];
690 laarr[0] = laarr[1];
691 laarr[1] = laarr[2];
692 c = 1;
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Marcin Slusarz4b111112008-02-08 04:20:36 -0800695 /* if the current block is located in an extent,
696 read the next extent */
697 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
698 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700699 laarr[c + 1].extLength = (etype << 30) | elen;
700 laarr[c + 1].extLocation = eloc;
701 count++;
702 startnum++;
703 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800704 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 lastblock = 1;
706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700709 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800710 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800712 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800713 if (iinfo->i_next_alloc_block == block)
714 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700716 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800717 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800718 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Marcin Slusarz4b111112008-02-08 04:20:36 -0800721 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800722 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800723 goal, err);
724 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700725 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 *err = -ENOSPC;
727 return NULL;
728 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800729 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
Marcin Slusarz4b111112008-02-08 04:20:36 -0800732 /* if the extent the requsted block is located in contains multiple
733 * blocks, split the extent into at most three extents. blocks prior
734 * to requested block, requested block, and blocks after requested
735 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
737
738#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200739 /* We preallocate blocks only for regular files. It also makes sense
740 * for directories but there's a problem when to drop the
741 * preallocation. We might use some delayed work for that but I feel
742 * it's overengineering for a filesystem like UDF. */
743 if (S_ISREG(inode->i_mode))
744 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#endif
746
747 /* merge any continuous blocks in laarr */
748 udf_merge_extents(inode, laarr, &endnum);
749
750 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700751 * of extents is greater than the old number, and deleting extents if
752 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700753 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Jan Kara3bf25cb2007-05-08 00:35:16 -0700755 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Marcin Slusarz4b111112008-02-08 04:20:36 -0800757 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800758 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800759 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 *phys = newblock;
762 *err = 0;
763 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800764 iinfo->i_next_alloc_block = block;
765 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 inode->i_ctime = current_fs_time(inode->i_sb);
767
768 if (IS_SYNC(inode))
769 udf_sync_inode(inode);
770 else
771 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return result;
774}
775
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700776static void udf_split_extents(struct inode *inode, int *c, int offset,
777 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200778 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700779 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800781 unsigned long blocksize = inode->i_sb->s_blocksize;
782 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800785 (laarr[*c].extLength >> 30) ==
786 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int curr = *c;
788 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800789 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 int8_t etype = (laarr[curr].extLength >> 30);
791
Marcin Slusarz4b111112008-02-08 04:20:36 -0800792 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700793 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800794 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700795 laarr[curr + 2] = laarr[curr + 1];
796 laarr[curr + 1] = laarr[curr];
797 } else {
798 laarr[curr + 3] = laarr[curr + 1];
799 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700802 if (offset) {
803 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800804 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200805 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800806 0, offset);
807 laarr[curr].extLength =
808 EXT_NOT_RECORDED_NOT_ALLOCATED |
809 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800811 laarr[curr].extLocation.
812 partitionReferenceNum = 0;
813 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800815 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700816 curr++;
817 (*c)++;
818 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 laarr[curr].extLocation.logicalBlockNum = newblocknum;
822 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
823 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800824 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800826 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700827 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700829 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800831 laarr[curr].extLocation.logicalBlockNum +=
832 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700833 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800834 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700835 curr++;
836 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 }
839}
840
841static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200842 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700843 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 int start, length = 0, currlength = 0, i;
846
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700847 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!lastblock)
849 return;
850 else
851 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700852 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800853 if ((laarr[c + 1].extLength >> 30) ==
854 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700855 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800856 length = currlength =
857 (((laarr[c + 1].extLength &
858 UDF_EXTENT_LENGTH_MASK) +
859 inode->i_sb->s_blocksize - 1) >>
860 inode->i_sb->s_blocksize_bits);
861 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 start = c;
863 }
864
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700865 for (i = start + 1; i <= *endnum; i++) {
866 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (lastblock)
868 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800869 } else if ((laarr[i].extLength >> 30) ==
870 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
871 length += (((laarr[i].extLength &
872 UDF_EXTENT_LENGTH_MASK) +
873 inode->i_sb->s_blocksize - 1) >>
874 inode->i_sb->s_blocksize_bits);
875 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 break;
877 }
878
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700879 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700881 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800882 inode->i_sb->s_blocksize - 1) >>
883 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800885 laarr[start].extLocation.partitionReferenceNum,
886 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
887 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
888 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700889 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800890 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800892 (numalloc <<
893 inode->i_sb->s_blocksize_bits);
894 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700895 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200896 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700897 (*endnum)++;
898 laarr[c + 1].extLocation.logicalBlockNum = next;
899 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800900 laarr[c].extLocation.
901 partitionReferenceNum;
902 laarr[c + 1].extLength =
903 EXT_NOT_RECORDED_ALLOCATED |
904 (numalloc <<
905 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700906 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700909 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800910 int elen = ((laarr[i].extLength &
911 UDF_EXTENT_LENGTH_MASK) +
912 inode->i_sb->s_blocksize - 1) >>
913 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700915 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800917 (numalloc <<
918 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700920 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700922 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800923 memmove(&laarr[i],
924 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200925 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800926 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700927 i--;
928 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800931 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800932 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934 }
935}
936
937static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200938 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700939 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800942 unsigned long blocksize = inode->i_sb->s_blocksize;
943 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700945 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200946 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
947 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Marcin Slusarz4b111112008-02-08 04:20:36 -0800949 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
950 (((li->extLength >> 30) ==
951 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
952 ((lip1->extLocation.logicalBlockNum -
953 li->extLocation.logicalBlockNum) ==
954 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
955 blocksize - 1) >> blocksize_bits)))) {
956
957 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
958 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
959 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
960 lip1->extLength = (lip1->extLength -
961 (li->extLength &
962 UDF_EXTENT_LENGTH_MASK) +
963 UDF_EXTENT_LENGTH_MASK) &
964 ~(blocksize - 1);
965 li->extLength = (li->extLength &
966 UDF_EXTENT_FLAG_MASK) +
967 (UDF_EXTENT_LENGTH_MASK + 1) -
968 blocksize;
969 lip1->extLocation.logicalBlockNum =
970 li->extLocation.logicalBlockNum +
971 ((li->extLength &
972 UDF_EXTENT_LENGTH_MASK) >>
973 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700974 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800975 li->extLength = lip1->extLength +
976 (((li->extLength &
977 UDF_EXTENT_LENGTH_MASK) +
978 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700979 if (*endnum > (i + 2))
980 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200981 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800982 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700983 i--;
984 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800986 } else if (((li->extLength >> 30) ==
987 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
988 ((lip1->extLength >> 30) ==
989 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200990 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800991 ((li->extLength &
992 UDF_EXTENT_LENGTH_MASK) +
993 blocksize - 1) >> blocksize_bits);
994 li->extLocation.logicalBlockNum = 0;
995 li->extLocation.partitionReferenceNum = 0;
996
997 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
998 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
999 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1000 lip1->extLength = (lip1->extLength -
1001 (li->extLength &
1002 UDF_EXTENT_LENGTH_MASK) +
1003 UDF_EXTENT_LENGTH_MASK) &
1004 ~(blocksize - 1);
1005 li->extLength = (li->extLength &
1006 UDF_EXTENT_FLAG_MASK) +
1007 (UDF_EXTENT_LENGTH_MASK + 1) -
1008 blocksize;
1009 } else {
1010 li->extLength = lip1->extLength +
1011 (((li->extLength &
1012 UDF_EXTENT_LENGTH_MASK) +
1013 blocksize - 1) & ~(blocksize - 1));
1014 if (*endnum > (i + 2))
1015 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001016 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001017 (*endnum - (i + 2)));
1018 i--;
1019 (*endnum)--;
1020 }
1021 } else if ((li->extLength >> 30) ==
1022 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1023 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001024 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001025 ((li->extLength &
1026 UDF_EXTENT_LENGTH_MASK) +
1027 blocksize - 1) >> blocksize_bits);
1028 li->extLocation.logicalBlockNum = 0;
1029 li->extLocation.partitionReferenceNum = 0;
1030 li->extLength = (li->extLength &
1031 UDF_EXTENT_LENGTH_MASK) |
1032 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 }
1035}
1036
1037static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001038 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001039 int startnum, int endnum,
1040 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001043 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 uint32_t tmplen;
1045
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001046 if (startnum > endnum) {
1047 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001048 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001049 laarr[i].extLength);
1050 } else if (startnum < endnum) {
1051 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001052 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001053 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001054 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001055 &laarr[i].extLength, 1);
1056 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 }
1059
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001060 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001061 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001062 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001063 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065}
1066
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001067struct buffer_head *udf_bread(struct inode *inode, int block,
1068 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001070 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 bh = udf_getblk(inode, block, create, err);
1073 if (!bh)
1074 return NULL;
1075
1076 if (buffer_uptodate(bh))
1077 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 wait_on_buffer(bh);
1082 if (buffer_uptodate(bh))
1083 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 brelse(bh);
1086 *err = -EIO;
1087 return NULL;
1088}
1089
Jan Kara7e49b6f2010-10-22 00:30:26 +02001090int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001093 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +02001094 int bsize = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001097 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001098 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001100 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001102 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001103 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001104 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001105 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1106 if (bsize <
1107 (udf_file_entry_alloc_offset(inode) + newsize)) {
1108 err = udf_expand_file_adinicb(inode);
1109 if (err) {
1110 up_write(&iinfo->i_data_sem);
1111 return err;
1112 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001113 } else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001114 iinfo->i_lenAlloc = newsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001116 err = udf_extend_file(inode, newsize);
1117 if (err) {
1118 up_write(&iinfo->i_data_sem);
1119 return err;
1120 }
1121 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001122 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001123 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001124 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1125 down_write(&iinfo->i_data_sem);
1126 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1127 0x00, bsize - newsize -
1128 udf_file_entry_alloc_offset(inode));
1129 iinfo->i_lenAlloc = newsize;
1130 truncate_setsize(inode, newsize);
1131 up_write(&iinfo->i_data_sem);
1132 goto update_time;
1133 }
1134 err = block_truncate_page(inode->i_mapping, newsize,
1135 udf_get_block);
1136 if (err)
1137 return err;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001138 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001139 truncate_setsize(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001141 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001142 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001143update_time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1145 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001146 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 else
1148 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001152static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 struct buffer_head *bh = NULL;
1155 struct fileEntry *fe;
1156 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001157 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /*
1160 * Set defaults, but the inode is still incomplete!
1161 * Note: get_new_inode() sets the following on a new inode:
1162 * i_sb = sb
1163 * i_no = ino
1164 * i_flags = sb->s_flags
1165 * i_state = 0
1166 * clean_inode(): zero fills and sets
1167 * i_count = 1
1168 * i_nlink = 1
1169 * i_op = NULL;
1170 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001171 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001172 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001174 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 make_bad_inode(inode);
1176 return;
1177 }
1178
1179 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001180 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001181 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1182 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001183 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 make_bad_inode(inode);
1185 return;
1186 }
1187
1188 fe = (struct fileEntry *)bh->b_data;
1189
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001190 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001191 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Pekka Enberg97e961f2008-10-15 12:29:03 +02001193 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001194 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001195 if (ident == TAG_IDENT_IE && ibh) {
1196 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001197 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001198 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001199
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001200 ie = (struct indirectEntry *)ibh->b_data;
1201 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001202
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001203 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001204 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001205 &ident))) {
1206 if (ident == TAG_IDENT_FE ||
1207 ident == TAG_IDENT_EFE) {
1208 memcpy(&iinfo->i_location,
1209 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001210 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001211 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001212 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001213 brelse(nbh);
1214 __udf_read_inode(inode);
1215 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001216 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001217 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001219 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001220 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001221 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001223 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001224 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 make_bad_inode(inode);
1226 return;
1227 }
1228 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001229
Jan Kara3bf25cb2007-05-08 00:35:16 -07001230 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1234{
1235 struct fileEntry *fe;
1236 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001238 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001239 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 fe = (struct fileEntry *)bh->b_data;
1242 efe = (struct extendedFileEntry *)bh->b_data;
1243
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001244 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001245 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001246 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001247 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001249 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001250 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001251 iinfo->i_unique = 0;
1252 iinfo->i_lenEAttr = 0;
1253 iinfo->i_lenExtents = 0;
1254 iinfo->i_lenAlloc = 0;
1255 iinfo->i_next_alloc_block = 0;
1256 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001257 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001258 iinfo->i_efe = 1;
1259 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001260 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1261 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001262 make_bad_inode(inode);
1263 return;
1264 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001265 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001266 bh->b_data + sizeof(struct extendedFileEntry),
1267 inode->i_sb->s_blocksize -
1268 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001269 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001270 iinfo->i_efe = 0;
1271 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001272 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1273 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001274 make_bad_inode(inode);
1275 return;
1276 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001277 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001278 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001279 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001280 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001281 iinfo->i_efe = 0;
1282 iinfo->i_use = 1;
1283 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001284 ((struct unallocSpaceEntry *)bh->b_data)->
1285 lengthAllocDescs);
1286 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1287 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001288 make_bad_inode(inode);
1289 return;
1290 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001291 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001292 bh->b_data + sizeof(struct unallocSpaceEntry),
1293 inode->i_sb->s_blocksize -
1294 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return;
1296 }
1297
Jan Karac03cad22010-10-20 22:17:28 +02001298 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001300 if (inode->i_uid == -1 ||
1301 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1302 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001303 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001306 if (inode->i_gid == -1 ||
1307 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1308 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001309 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001311 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001312 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001313 inode->i_mode = sbi->s_fmode;
1314 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001315 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001316 inode->i_mode = sbi->s_dmode;
1317 else
1318 inode->i_mode = udf_convert_permissions(fe);
1319 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001320 read_unlock(&sbi->s_cred_lock);
1321
1322 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1323 if (!inode->i_nlink)
1324 inode->i_nlink = 1;
1325
1326 inode->i_size = le64_to_cpu(fe->informationLength);
1327 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001329 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001331 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Marcin Slusarz56774802008-02-10 11:25:31 +01001333 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001334 inode->i_atime = sbi->s_record_time;
1335
Marcin Slusarz56774802008-02-10 11:25:31 +01001336 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1337 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001338 inode->i_mtime = sbi->s_record_time;
1339
Marcin Slusarz56774802008-02-10 11:25:31 +01001340 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001341 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001343 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1344 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1345 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1346 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001347 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001348 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001349 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Marcin Slusarz56774802008-02-10 11:25:31 +01001351 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001352 inode->i_atime = sbi->s_record_time;
1353
Marcin Slusarz56774802008-02-10 11:25:31 +01001354 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1355 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001356 inode->i_mtime = sbi->s_record_time;
1357
Marcin Slusarz56774802008-02-10 11:25:31 +01001358 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001359 iinfo->i_crtime = sbi->s_record_time;
1360
Marcin Slusarz56774802008-02-10 11:25:31 +01001361 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001362 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001364 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1365 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1366 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001367 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001368 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001371 switch (fe->icbTag.fileType) {
1372 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001373 inode->i_op = &udf_dir_inode_operations;
1374 inode->i_fop = &udf_dir_operations;
1375 inode->i_mode |= S_IFDIR;
1376 inc_nlink(inode);
1377 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001378 case ICBTAG_FILE_TYPE_REALTIME:
1379 case ICBTAG_FILE_TYPE_REGULAR:
1380 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001381 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001382 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001383 inode->i_data.a_ops = &udf_adinicb_aops;
1384 else
1385 inode->i_data.a_ops = &udf_aops;
1386 inode->i_op = &udf_file_inode_operations;
1387 inode->i_fop = &udf_file_operations;
1388 inode->i_mode |= S_IFREG;
1389 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001390 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001391 inode->i_mode |= S_IFBLK;
1392 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001393 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001394 inode->i_mode |= S_IFCHR;
1395 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001396 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001397 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1398 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001399 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001400 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1401 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001402 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001403 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001404 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001405 inode->i_mode = S_IFLNK | S_IRWXUGO;
1406 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001407 case ICBTAG_FILE_TYPE_MAIN:
1408 udf_debug("METADATA FILE-----\n");
1409 break;
1410 case ICBTAG_FILE_TYPE_MIRROR:
1411 udf_debug("METADATA MIRROR FILE-----\n");
1412 break;
1413 case ICBTAG_FILE_TYPE_BITMAP:
1414 udf_debug("METADATA BITMAP FILE-----\n");
1415 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001416 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001417 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1418 "file type=%d\n", inode->i_ino,
1419 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001420 make_bad_inode(inode);
1421 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001423 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001424 struct deviceSpec *dsea =
1425 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001426 if (dsea) {
1427 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001428 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1429 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001431 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434}
1435
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001436static int udf_alloc_i_data(struct inode *inode, size_t size)
1437{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001438 struct udf_inode_info *iinfo = UDF_I(inode);
1439 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001440
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001441 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001442 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1443 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001444 return -ENOMEM;
1445 }
1446
1447 return 0;
1448}
1449
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001450static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 mode_t mode;
1453 uint32_t permissions;
1454 uint32_t flags;
1455
1456 permissions = le32_to_cpu(fe->permissions);
1457 flags = le16_to_cpu(fe->icbTag.flags);
1458
Marcin Slusarz4b111112008-02-08 04:20:36 -08001459 mode = ((permissions) & S_IRWXO) |
1460 ((permissions >> 2) & S_IRWXG) |
1461 ((permissions >> 4) & S_IRWXU) |
1462 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1463 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1464 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 return mode;
1467}
1468
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001469int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Jan Kara49521de2010-10-20 17:42:44 +02001471 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Jan Kara49521de2010-10-20 17:42:44 +02001474static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 return udf_update_inode(inode, 1);
1477}
1478
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001479static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 struct buffer_head *bh = NULL;
1482 struct fileEntry *fe;
1483 struct extendedFileEntry *efe;
1484 uint32_t udfperms;
1485 uint16_t icbflags;
1486 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001488 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001489 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001490 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Jan Kara5833ded2010-01-08 16:52:59 +01001492 bh = udf_tgetblk(inode->i_sb,
1493 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001494 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001495 udf_debug("getblk failure\n");
1496 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498
Jan Karaaae917c2010-01-08 16:46:29 +01001499 lock_buffer(bh);
1500 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 fe = (struct fileEntry *)bh->b_data;
1502 efe = (struct extendedFileEntry *)bh->b_data;
1503
Jan Karaaae917c2010-01-08 16:46:29 +01001504 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001506 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001508 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001509 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001510 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001511 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001512 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1513 use->descTag.tagLocation =
1514 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001515 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001516 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001518 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001519 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001520 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001521 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Jan Karaaae917c2010-01-08 16:46:29 +01001523 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
1525
Phillip Susi4d6660e2006-03-07 21:55:24 -08001526 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1527 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001528 else
1529 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Phillip Susi4d6660e2006-03-07 21:55:24 -08001531 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1532 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001533 else
1534 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Marcin Slusarz4b111112008-02-08 04:20:36 -08001536 udfperms = ((inode->i_mode & S_IRWXO)) |
1537 ((inode->i_mode & S_IRWXG) << 2) |
1538 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Marcin Slusarz4b111112008-02-08 04:20:36 -08001540 udfperms |= (le32_to_cpu(fe->permissions) &
1541 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1542 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1543 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 fe->permissions = cpu_to_le32(udfperms);
1545
1546 if (S_ISDIR(inode->i_mode))
1547 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1548 else
1549 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1550
1551 fe->informationLength = cpu_to_le64(inode->i_size);
1552
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001553 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001554 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001555 struct deviceSpec *dsea =
1556 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001557 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001559 udf_add_extendedattr(inode,
1560 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001561 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 dsea->attrType = cpu_to_le32(12);
1563 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001564 dsea->attrLength = cpu_to_le32(
1565 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001566 sizeof(struct regid));
1567 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001569 eid = (struct regid *)dsea->impUse;
1570 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 strcpy(eid->ident, UDF_ID_DEVELOPER);
1572 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1573 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1574 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1575 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1576 }
1577
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001578 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001579 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001580 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001581 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001582 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001583 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1584 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Marcin Slusarz56774802008-02-10 11:25:31 +01001586 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1587 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1588 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001589 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1591 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1592 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001593 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1594 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1595 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1597 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001598 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001599 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001600 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001601 inode->i_sb->s_blocksize -
1602 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001604 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001605 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1606 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001608 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1609 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1610 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1611 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001612
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001613 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1614 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1615 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1616 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001617
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001618 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1619 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1620 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1621 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Marcin Slusarz56774802008-02-10 11:25:31 +01001623 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1624 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1625 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1626 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001628 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1630 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1631 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001632 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1633 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1634 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1636 crclen = sizeof(struct extendedFileEntry);
1637 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001638 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 fe->icbTag.strategyType = cpu_to_le16(4096);
1640 fe->icbTag.strategyParameter = cpu_to_le16(1);
1641 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001642 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 fe->icbTag.strategyType = cpu_to_le16(4);
1644 fe->icbTag.numEntries = cpu_to_le16(1);
1645 }
1646
1647 if (S_ISDIR(inode->i_mode))
1648 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1649 else if (S_ISREG(inode->i_mode))
1650 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1651 else if (S_ISLNK(inode->i_mode))
1652 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1653 else if (S_ISBLK(inode->i_mode))
1654 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1655 else if (S_ISCHR(inode->i_mode))
1656 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1657 else if (S_ISFIFO(inode->i_mode))
1658 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1659 else if (S_ISSOCK(inode->i_mode))
1660 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1661
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001662 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001663 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1664 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1665 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1666 (le16_to_cpu(fe->icbTag.flags) &
1667 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1668 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001671 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 fe->descTag.descVersion = cpu_to_le16(3);
1673 else
1674 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001675 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001676 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001677 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001678 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001680 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001681 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001682 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Jan Karaaae917c2010-01-08 16:46:29 +01001684out:
Jan Kara5833ded2010-01-08 16:52:59 +01001685 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001686 unlock_buffer(bh);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 /* write the data blocks */
1689 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001690 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001692 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001693 printk(KERN_WARNING "IO error syncing udf inode "
1694 "[%s:%08lx]\n", inode->i_sb->s_id,
1695 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 err = -EIO;
1697 }
1698 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001699 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 return err;
1702}
1703
Pekka Enberg97e961f2008-10-15 12:29:03 +02001704struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1707 struct inode *inode = iget_locked(sb, block);
1708
1709 if (!inode)
1710 return NULL;
1711
1712 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001713 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 __udf_read_inode(inode);
1715 unlock_new_inode(inode);
1716 }
1717
1718 if (is_bad_inode(inode))
1719 goto out_iput;
1720
Pekka Enberg97e961f2008-10-15 12:29:03 +02001721 if (ino->logicalBlockNum >= UDF_SB(sb)->
1722 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001724 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 make_bad_inode(inode);
1726 goto out_iput;
1727 }
1728
1729 return inode;
1730
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001731 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 iput(inode);
1733 return NULL;
1734}
1735
Jan Kara7e49b6f2010-10-22 00:30:26 +02001736int udf_add_aext(struct inode *inode, struct extent_position *epos,
1737 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001740 struct short_ad *sad = NULL;
1741 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct allocExtDesc *aed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001744 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Jan Karaff116fc2007-05-08 00:35:14 -07001746 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001747 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001748 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001749 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 else
Jan Karaff116fc2007-05-08 00:35:14 -07001751 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001753 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001754 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001755 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001756 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001758 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001760 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001761 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct buffer_head *nbh;
1763 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001764 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Marcin Slusarz4b111112008-02-08 04:20:36 -08001766 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1767 obloc.partitionReferenceNum,
1768 obloc.logicalBlockNum, &err);
1769 if (!epos->block.logicalBlockNum)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001770 return -ENOSPC;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001771 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001772 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001773 0));
1774 if (!nbh)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001775 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 lock_buffer(nbh);
1777 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1778 set_buffer_uptodate(nbh);
1779 unlock_buffer(nbh);
1780 mark_buffer_dirty_inode(nbh, inode);
1781
1782 aed = (struct allocExtDesc *)(nbh->b_data);
1783 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001784 aed->previousAllocExtLocation =
1785 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001786 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001787 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 aed->lengthAllocDescs = cpu_to_le32(adsize);
1789 sptr = ptr - adsize;
1790 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1791 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001792 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001793 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001794 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 aed->lengthAllocDescs = cpu_to_le32(0);
1796 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001797 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001799 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001800 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001801 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001802 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001803 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 mark_inode_dirty(inode);
1805 }
1806 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001807 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001809 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 else
1811 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001812 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001813 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001814 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001815 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001816 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1817 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001818 sad->extPosition =
1819 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001820 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001821 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001822 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001823 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1824 inode->i_sb->s_blocksize);
1825 lad->extLocation = cpu_to_lelb(epos->block);
1826 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1827 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001829 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001830 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001831 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001832 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001834 udf_update_tag(epos->bh->b_data,
1835 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001836 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001837 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001838 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001840 }
Jan Karaff116fc2007-05-08 00:35:14 -07001841 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
Jan Kara7e49b6f2010-10-22 00:30:26 +02001844 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001846 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001847 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001849 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001850 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001851 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001852 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1853 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1854 udf_update_tag(epos->bh->b_data,
1855 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001857 udf_update_tag(epos->bh->b_data,
1858 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001859 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861
Jan Kara7e49b6f2010-10-22 00:30:26 +02001862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Jan Kara7e49b6f2010-10-22 00:30:26 +02001865void udf_write_aext(struct inode *inode, struct extent_position *epos,
1866 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
1868 int adsize;
1869 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001870 struct short_ad *sad;
1871 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001872 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jan Karaff116fc2007-05-08 00:35:14 -07001874 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001875 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001876 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001877 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 else
Jan Karaff116fc2007-05-08 00:35:14 -07001879 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001881 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001882 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001883 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001884 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001885 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001886 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001887 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001888 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001889 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001890 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001891 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001892 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001893 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001894 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001895 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001896 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001899 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001900 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001901 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001902 struct allocExtDesc *aed =
1903 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001904 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001905 le32_to_cpu(aed->lengthAllocDescs) +
1906 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
Jan Karaff116fc2007-05-08 00:35:14 -07001908 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001909 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001914 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
Marcin Slusarz4b111112008-02-08 04:20:36 -08001917int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001918 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 int8_t etype;
1921
Jan Karaff116fc2007-05-08 00:35:14 -07001922 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001923 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001924 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001925 epos->block = *eloc;
1926 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001927 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001928 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001929 epos->bh = udf_tread(inode->i_sb, block);
1930 if (!epos->bh) {
1931 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return -1;
1933 }
1934 }
1935
1936 return etype;
1937}
1938
Marcin Slusarz4b111112008-02-08 04:20:36 -08001939int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001940 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 int alen;
1943 int8_t etype;
1944 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001945 struct short_ad *sad;
1946 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001947 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001948
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001949 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001950 if (!epos->offset)
1951 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001952 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001953 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001954 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001955 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001956 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001957 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001958 if (!epos->offset)
1959 epos->offset = sizeof(struct allocExtDesc);
1960 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001961 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001962 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1963 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001966 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001967 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001968 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1969 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001971 etype = le32_to_cpu(sad->extLength) >> 30;
1972 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001973 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001974 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001975 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1976 break;
1977 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001978 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1979 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001980 return -1;
1981 etype = le32_to_cpu(lad->extLength) >> 30;
1982 *eloc = lelb_to_cpu(lad->extLocation);
1983 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1984 break;
1985 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001986 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001987 iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001988 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
1991 return etype;
1992}
1993
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001994static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001995 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001997 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 uint32_t oelen;
1999 int8_t etype;
2000
Jan Karaff116fc2007-05-08 00:35:14 -07002001 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07002002 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002004 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002005 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 neloc = oeloc;
2007 nelen = (etype << 30) | oelen;
2008 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02002009 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002010 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return (nelen >> 30);
2013}
2014
Marcin Slusarz4b111112008-02-08 04:20:36 -08002015int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002016 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Jan Karaff116fc2007-05-08 00:35:14 -07002018 struct extent_position oepos;
2019 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 int8_t etype;
2021 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002022 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002024 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002025 get_bh(epos.bh);
2026 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002029 iinfo = UDF_I(inode);
2030 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002031 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002032 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002033 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 else
2035 adsize = 0;
2036
Jan Karaff116fc2007-05-08 00:35:14 -07002037 oepos = epos;
2038 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return -1;
2040
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002041 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002042 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002043 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002044 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07002045 brelse(oepos.bh);
2046 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07002047 oepos.bh = epos.bh;
2048 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
2050 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002051 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 elen = 0;
2053
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002054 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002055 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
2056 udf_write_aext(inode, &oepos, &eloc, elen, 1);
2057 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002058 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002059 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002061 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002062 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002063 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002064 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002065 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002066 udf_update_tag(oepos.bh->b_data,
2067 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002069 udf_update_tag(oepos.bh->b_data,
2070 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002071 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002073 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002074 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002075 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002076 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002078 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002079 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002080 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002081 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002082 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002083 udf_update_tag(oepos.bh->b_data,
2084 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002086 udf_update_tag(oepos.bh->b_data,
2087 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002088 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002091
Jan Kara3bf25cb2007-05-08 00:35:16 -07002092 brelse(epos.bh);
2093 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return (elen >> 30);
2096}
2097
Marcin Slusarz4b111112008-02-08 04:20:36 -08002098int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002099 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002100 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002102 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002103 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002104 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002106 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002108 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002109 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002110 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002111 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002114 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002115 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2116 if (etype == -1) {
2117 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002118 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -1;
2120 }
2121 lbcount += *elen;
2122 } while (lbcount <= bcount);
2123
Marcin Slusarz4b111112008-02-08 04:20:36 -08002124 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 return etype;
2127}
2128
Jan Kara60448b12007-05-08 00:35:13 -07002129long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002131 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002132 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002133 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002134 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 int ret;
2136
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002137 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Marcin Slusarz4b111112008-02-08 04:20:36 -08002139 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2140 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002141 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 else
2143 ret = 0;
2144
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002145 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002146 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2149 return udf_fixed_to_variable(ret);
2150 else
2151 return ret;
2152}