blob: 329e7a108ab7eeb3649b86cf0d44e01e135f2a78 [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>
Namjae Jeonbc112322011-10-03 14:02:59 +090040#include <linux/mpage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "udf_i.h"
43#include "udf_sb.h"
44
45MODULE_AUTHOR("Ben Fennema");
46MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47MODULE_LICENSE("GPL");
48
49#define EXTENT_MERGE_SIZE 5
50
51static mode_t udf_convert_permissions(struct fileEntry *);
52static int udf_update_inode(struct inode *, int);
53static void udf_fill_inode(struct inode *, struct buffer_head *);
Jan Kara49521de2010-10-20 17:42:44 +020054static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070055static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070056static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080057 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070058static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020059 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020061 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020063 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020065 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020067 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070068 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
70
Christoph Hellwigb1e32122008-02-22 12:38:48 +010071
Al Viro3aac2b62010-06-07 00:43:39 -040072void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Jan Kara2c948b32009-12-03 13:39:28 +010074 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040075 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010076
Al Viro3aac2b62010-06-07 00:43:39 -040077 if (!inode->i_nlink && !is_bad_inode(inode)) {
78 want_delete = 1;
Jan Kara7e49b6f2010-10-22 00:30:26 +020079 udf_setsize(inode, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040080 udf_update_inode(inode, IS_SYNC(inode));
Jan Kara7e49b6f2010-10-22 00:30:26 +020081 } else
82 truncate_inode_pages(&inode->i_data, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040083 invalidate_inode_buffers(inode);
84 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010085 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
86 inode->i_size != iinfo->i_lenExtents) {
Joe Perches78ace702011-10-10 01:08:05 -070087 udf_warn(inode->i_sb, "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n",
88 inode->i_ino, inode->i_mode,
89 (unsigned long long)inode->i_size,
90 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080092 kfree(iinfo->i_ext.i_data);
93 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040094 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -040095 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static int udf_writepage(struct page *page, struct writeback_control *wbc)
100{
101 return block_write_full_page(page, udf_get_block, wbc);
102}
103
104static int udf_readpage(struct file *file, struct page *page)
105{
Namjae Jeonbc112322011-10-03 14:02:59 +0900106 return mpage_readpage(page, udf_get_block);
107}
108
109static int udf_readpages(struct file *file, struct address_space *mapping,
110 struct list_head *pages, unsigned nr_pages)
111{
112 return mpage_readpages(mapping, pages, nr_pages, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Nick Pigginbe021ee2007-10-16 01:25:20 -0700115static int udf_write_begin(struct file *file, struct address_space *mapping,
116 loff_t pos, unsigned len, unsigned flags,
117 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200119 int ret;
120
121 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
122 if (unlikely(ret)) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200123 struct inode *inode = mapping->host;
124 struct udf_inode_info *iinfo = UDF_I(inode);
125 loff_t isize = inode->i_size;
126
127 if (pos + len > isize) {
128 truncate_pagecache(inode, pos + len, isize);
129 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
130 down_write(&iinfo->i_data_sem);
131 udf_truncate_extents(inode);
132 up_write(&iinfo->i_data_sem);
133 }
134 }
Christoph Hellwig155130a2010-06-04 11:29:58 +0200135 }
136
137 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140static sector_t udf_bmap(struct address_space *mapping, sector_t block)
141{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700142 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700145const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700146 .readpage = udf_readpage,
Namjae Jeonbc112322011-10-03 14:02:59 +0900147 .readpages = udf_readpages,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700148 .writepage = udf_writepage,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700149 .write_begin = udf_write_begin,
150 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700151 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
Jan Kara7e49b6f2010-10-22 00:30:26 +0200154int udf_expand_file_adinicb(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct page *page;
157 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800158 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200159 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct writeback_control udf_wbc = {
161 .sync_mode = WB_SYNC_NONE,
162 .nr_to_write = 1,
163 };
164
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800165 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800167 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800169 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200170 /* from now on we have normal address_space methods */
171 inode->i_data.a_ops = &udf_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
Jan Kara7e49b6f2010-10-22 00:30:26 +0200176 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
177 if (!page)
178 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700179
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700180 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800182 memset(kaddr + iinfo->i_lenAlloc, 0x00,
183 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
184 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
185 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 flush_dcache_page(page);
187 SetPageUptodate(page);
188 kunmap(page);
189 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800190 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
191 iinfo->i_lenAlloc);
192 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800194 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800196 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200197 /* from now on we have normal address_space methods */
198 inode->i_data.a_ops = &udf_aops;
199 err = inode->i_data.a_ops->writepage(page, &udf_wbc);
200 if (err) {
201 /* Restore everything back so that we don't lose data... */
202 lock_page(page);
203 kaddr = kmap(page);
204 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
205 inode->i_size);
206 kunmap(page);
207 unlock_page(page);
208 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
209 inode->i_data.a_ops = &udf_adinicb_aops;
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200213
214 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700217struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
218 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700221 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200222 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700224 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800227 loff_t f_pos = udf_ext0_offset(inode);
228 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800230 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
233 alloctype = ICBTAG_FLAG_AD_SHORT;
234 else
235 alloctype = ICBTAG_FLAG_AD_LONG;
236
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700237 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800238 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 mark_inode_dirty(inode);
240 return NULL;
241 }
242
243 /* alloc block, and copy data to it */
244 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800245 iinfo->i_location.partitionReferenceNum,
246 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!(*block))
248 return NULL;
249 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800250 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800251 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (!newblock)
253 return NULL;
254 dbh = udf_tgetblk(inode->i_sb, newblock);
255 if (!dbh)
256 return NULL;
257 lock_buffer(dbh);
258 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
259 set_buffer_uptodate(dbh);
260 unlock_buffer(dbh);
261 mark_buffer_dirty_inode(dbh, inode);
262
Marcin Slusarz4b111112008-02-08 04:20:36 -0800263 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800264 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700265 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 dfibh.soffset = dfibh.eoffset = 0;
267 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800268 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800269 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800270 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
271 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700272 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700273 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return NULL;
275 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800276 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 sfi->descTag.tagLocation = cpu_to_le32(*block);
278 dfibh.soffset = dfibh.eoffset;
279 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
280 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
281 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800282 sfi->fileIdent +
283 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800284 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700285 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return NULL;
287 }
288 }
289 mark_buffer_dirty_inode(dbh, inode);
290
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800291 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
292 iinfo->i_lenAlloc);
293 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800295 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800296 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100297 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700298 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800299 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700300 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100301 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* UniqueID stuff */
303
Jan Kara3bf25cb2007-05-08 00:35:16 -0700304 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 mark_inode_dirty(inode);
306 return dbh;
307}
308
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700309static int udf_get_block(struct inode *inode, sector_t block,
310 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 int err, new;
313 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800314 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800315 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700317 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 phys = udf_block_map(inode, block);
319 if (phys)
320 map_bh(bh_result, inode->i_sb, phys);
321 return 0;
322 }
323
324 err = -EIO;
325 new = 0;
326 bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800327 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100328
329 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800330 if (block == iinfo->i_next_alloc_block + 1) {
331 iinfo->i_next_alloc_block++;
332 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
335 err = 0;
336
337 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200338 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (err)
340 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200341 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 if (new)
344 set_buffer_new(bh_result);
345 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700346
347abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100348 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700352static struct buffer_head *udf_getblk(struct inode *inode, long block,
353 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700355 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct buffer_head dummy;
357
358 dummy.b_state = 0;
359 dummy.b_blocknr = -1000;
360 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700361 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700363 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 lock_buffer(bh);
365 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
366 set_buffer_uptodate(bh);
367 unlock_buffer(bh);
368 mark_buffer_dirty_inode(bh, inode);
369 }
370 return bh;
371 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return NULL;
374}
375
Jan Kara31170b62007-05-08 00:35:21 -0700376/* Extend the file by 'blocks' blocks, return the number of extents added */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200377static int udf_do_extend_file(struct inode *inode,
378 struct extent_position *last_pos,
379 struct kernel_long_ad *last_ext,
380 sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700381{
382 sector_t add;
383 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
384 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200385 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700386 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800387 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200388 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700389
390 /* The previous extent is fake and we should not extend by anything
391 * - there's nothing to do... */
392 if (!blocks && fake)
393 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700394
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800395 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700396 /* Round the last extent up to a multiple of block size */
397 if (last_ext->extLength & (sb->s_blocksize - 1)) {
398 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
400 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
401 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800402 iinfo->i_lenExtents =
403 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700404 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700405 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700406
Jan Kara31170b62007-05-08 00:35:21 -0700407 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800408 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
409 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700410 /* Save the extent so that we can reattach it to the end */
411 prealloc_loc = last_ext->extLocation;
412 prealloc_len = last_ext->extLength;
413 /* Mark the extent as a hole */
414 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700415 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700416 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800417 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700418 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700419
Jan Kara31170b62007-05-08 00:35:21 -0700420 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800421 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
422 EXT_NOT_RECORDED_NOT_ALLOCATED) {
423 add = ((1 << 30) - sb->s_blocksize -
424 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
425 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700426 if (add > blocks)
427 add = blocks;
428 blocks -= add;
429 last_ext->extLength += add << sb->s_blocksize_bits;
430 }
431
432 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200433 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700434 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700435 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800436 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200437 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800438 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700439
Jan Kara31170b62007-05-08 00:35:21 -0700440 /* Managed to do everything necessary? */
441 if (!blocks)
442 goto out;
443
444 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
445 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800446 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700447 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800448 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
449 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700450
Jan Kara31170b62007-05-08 00:35:21 -0700451 /* Create enough extents to cover the whole hole */
452 while (blocks > add) {
453 blocks -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200454 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
455 last_ext->extLength, 1);
456 if (err)
457 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700458 count++;
459 }
460 if (blocks) {
461 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700462 (blocks << sb->s_blocksize_bits);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200463 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
464 last_ext->extLength, 1);
465 if (err)
466 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700467 count++;
468 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700469
470out:
Jan Kara31170b62007-05-08 00:35:21 -0700471 /* Do we have some preallocated blocks saved? */
472 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200473 err = udf_add_aext(inode, last_pos, &prealloc_loc,
474 prealloc_len, 1);
475 if (err)
476 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700477 last_ext->extLocation = prealloc_loc;
478 last_ext->extLength = prealloc_len;
479 count++;
480 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700481
Jan Kara31170b62007-05-08 00:35:21 -0700482 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800483 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200484 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800485 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200486 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700487 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200488 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700489
Jan Kara31170b62007-05-08 00:35:21 -0700490 return count;
491}
492
Jan Kara7e49b6f2010-10-22 00:30:26 +0200493static int udf_extend_file(struct inode *inode, loff_t newsize)
494{
495
496 struct extent_position epos;
497 struct kernel_lb_addr eloc;
498 uint32_t elen;
499 int8_t etype;
500 struct super_block *sb = inode->i_sb;
501 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
502 int adsize;
503 struct udf_inode_info *iinfo = UDF_I(inode);
504 struct kernel_long_ad extent;
505 int err;
506
507 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
508 adsize = sizeof(struct short_ad);
509 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
510 adsize = sizeof(struct long_ad);
511 else
512 BUG();
513
514 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
515
516 /* File has extent covering the new size (could happen when extending
517 * inside a block)? */
518 if (etype != -1)
519 return 0;
520 if (newsize & (sb->s_blocksize - 1))
521 offset++;
522 /* Extended file just to the boundary of the last file block? */
523 if (offset == 0)
524 return 0;
525
526 /* Truncate is extending the file by 'offset' blocks */
527 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
528 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
529 /* File has no extents at all or has empty last
530 * indirect extent! Create a fake extent... */
531 extent.extLocation.logicalBlockNum = 0;
532 extent.extLocation.partitionReferenceNum = 0;
533 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
534 } else {
535 epos.offset -= adsize;
536 etype = udf_next_aext(inode, &epos, &extent.extLocation,
537 &extent.extLength, 0);
538 extent.extLength |= etype << 30;
539 }
540 err = udf_do_extend_file(inode, &epos, &extent, offset);
541 if (err < 0)
542 goto out;
543 err = 0;
544 iinfo->i_lenExtents = newsize;
545out:
546 brelse(epos.bh);
547 return err;
548}
549
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700550static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800551 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Jan Kara31170b62007-05-08 00:35:21 -0700553 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700554 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200555 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700556 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700558 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200559 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700561 loff_t lbcount = 0, b_off = 0;
562 uint32_t newblocknum, newblock;
563 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800565 struct udf_inode_info *iinfo = UDF_I(inode);
566 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700567 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Jan Karaff116fc2007-05-08 00:35:14 -0700569 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800570 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700571 prev_epos.bh = NULL;
572 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700573 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700576 alternate between laarr[0] and laarr[1] for locations of the
577 current extent, and the previous extent */
578 do {
579 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700580 brelse(prev_epos.bh);
581 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700582 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700584 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700585 brelse(cur_epos.bh);
586 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700587 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
590 lbcount += elen;
591
Jan Karaff116fc2007-05-08 00:35:14 -0700592 prev_epos.block = cur_epos.block;
593 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Jan Karaff116fc2007-05-08 00:35:14 -0700595 prev_epos.offset = cur_epos.offset;
596 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Marcin Slusarz4b111112008-02-08 04:20:36 -0800598 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
599 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
601
602 c = !c;
603
604 laarr[c].extLength = (etype << 30) | elen;
605 laarr[c].extLocation = eloc;
606
607 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
608 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700609 ((elen + inode->i_sb->s_blocksize - 1) >>
610 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700612 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 } while (lbcount + elen <= b_off);
614
615 b_off -= lbcount;
616 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700617 /*
618 * Move prev_epos and cur_epos into indirect extent if we are at
619 * the pointer to it
620 */
621 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
622 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700625 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700627 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
628 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700630 ((elen + inode->i_sb->s_blocksize - 1) &
631 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200632 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700634 brelse(prev_epos.bh);
635 brelse(cur_epos.bh);
636 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200637 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 *phys = newblock;
639 return NULL;
640 }
641
Jan Kara31170b62007-05-08 00:35:21 -0700642 last_block = block;
643 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700645 int ret;
646
647 if (count) {
648 if (c)
649 laarr[0] = laarr[1];
650 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700652 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800653 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200654 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700655 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200656 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800657 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700658 startnum = (offset > 0);
659 }
660 /* Create extents for the hole between EOF and offset */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200661 ret = udf_do_extend_file(inode, &prev_epos, laarr, offset);
662 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700663 brelse(prev_epos.bh);
664 brelse(cur_epos.bh);
665 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200666 *err = ret;
Jan Kara31170b62007-05-08 00:35:21 -0700667 return NULL;
668 }
669 c = 0;
670 offset = 0;
671 count += ret;
672 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800673 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
674 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700675 /* Is there any real extent? - otherwise we overwrite
676 * the fake one... */
677 if (count)
678 c = !c;
679 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700680 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800681 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200682 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700683 count++;
684 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700685 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700686 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700688 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 endnum = startnum = ((count > 2) ? 2 : count);
690
Marcin Slusarz4b111112008-02-08 04:20:36 -0800691 /* if the current extent is in position 0,
692 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700693 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700694 laarr[2] = laarr[0];
695 laarr[0] = laarr[1];
696 laarr[1] = laarr[2];
697 c = 1;
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Marcin Slusarz4b111112008-02-08 04:20:36 -0800700 /* if the current block is located in an extent,
701 read the next extent */
702 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
703 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700704 laarr[c + 1].extLength = (etype << 30) | elen;
705 laarr[c + 1].extLocation = eloc;
706 count++;
707 startnum++;
708 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800709 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 lastblock = 1;
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700714 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800715 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800717 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800718 if (iinfo->i_next_alloc_block == block)
719 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800722 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800723 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Marcin Slusarz4b111112008-02-08 04:20:36 -0800726 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800727 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800728 goal, err);
729 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700730 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 *err = -ENOSPC;
732 return NULL;
733 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800734 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Marcin Slusarz4b111112008-02-08 04:20:36 -0800737 /* if the extent the requsted block is located in contains multiple
738 * blocks, split the extent into at most three extents. blocks prior
739 * to requested block, requested block, and blocks after requested
740 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
742
743#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200744 /* We preallocate blocks only for regular files. It also makes sense
745 * for directories but there's a problem when to drop the
746 * preallocation. We might use some delayed work for that but I feel
747 * it's overengineering for a filesystem like UDF. */
748 if (S_ISREG(inode->i_mode))
749 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#endif
751
752 /* merge any continuous blocks in laarr */
753 udf_merge_extents(inode, laarr, &endnum);
754
755 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700756 * of extents is greater than the old number, and deleting extents if
757 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700758 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Jan Kara3bf25cb2007-05-08 00:35:16 -0700760 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Marcin Slusarz4b111112008-02-08 04:20:36 -0800762 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800763 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800764 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 *phys = newblock;
767 *err = 0;
768 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800769 iinfo->i_next_alloc_block = block;
770 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 inode->i_ctime = current_fs_time(inode->i_sb);
772
773 if (IS_SYNC(inode))
774 udf_sync_inode(inode);
775 else
776 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return result;
779}
780
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700781static void udf_split_extents(struct inode *inode, int *c, int offset,
782 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200783 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700784 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800786 unsigned long blocksize = inode->i_sb->s_blocksize;
787 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800790 (laarr[*c].extLength >> 30) ==
791 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int curr = *c;
793 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800794 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int8_t etype = (laarr[curr].extLength >> 30);
796
Marcin Slusarz4b111112008-02-08 04:20:36 -0800797 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700798 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800799 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700800 laarr[curr + 2] = laarr[curr + 1];
801 laarr[curr + 1] = laarr[curr];
802 } else {
803 laarr[curr + 3] = laarr[curr + 1];
804 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700807 if (offset) {
808 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800809 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200810 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800811 0, offset);
812 laarr[curr].extLength =
813 EXT_NOT_RECORDED_NOT_ALLOCATED |
814 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800816 laarr[curr].extLocation.
817 partitionReferenceNum = 0;
818 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800820 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700821 curr++;
822 (*c)++;
823 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 laarr[curr].extLocation.logicalBlockNum = newblocknum;
827 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
828 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800829 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800831 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700832 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700834 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800836 laarr[curr].extLocation.logicalBlockNum +=
837 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700838 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800839 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700840 curr++;
841 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843 }
844}
845
846static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200847 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700848 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 int start, length = 0, currlength = 0, i;
851
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700852 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (!lastblock)
854 return;
855 else
856 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700857 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800858 if ((laarr[c + 1].extLength >> 30) ==
859 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700860 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800861 length = currlength =
862 (((laarr[c + 1].extLength &
863 UDF_EXTENT_LENGTH_MASK) +
864 inode->i_sb->s_blocksize - 1) >>
865 inode->i_sb->s_blocksize_bits);
866 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 start = c;
868 }
869
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700870 for (i = start + 1; i <= *endnum; i++) {
871 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (lastblock)
873 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800874 } else if ((laarr[i].extLength >> 30) ==
875 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
876 length += (((laarr[i].extLength &
877 UDF_EXTENT_LENGTH_MASK) +
878 inode->i_sb->s_blocksize - 1) >>
879 inode->i_sb->s_blocksize_bits);
880 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 break;
882 }
883
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700884 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700886 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800887 inode->i_sb->s_blocksize - 1) >>
888 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800890 laarr[start].extLocation.partitionReferenceNum,
891 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
892 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
893 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700894 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800895 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800897 (numalloc <<
898 inode->i_sb->s_blocksize_bits);
899 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700900 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200901 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700902 (*endnum)++;
903 laarr[c + 1].extLocation.logicalBlockNum = next;
904 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800905 laarr[c].extLocation.
906 partitionReferenceNum;
907 laarr[c + 1].extLength =
908 EXT_NOT_RECORDED_ALLOCATED |
909 (numalloc <<
910 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700911 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700914 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800915 int elen = ((laarr[i].extLength &
916 UDF_EXTENT_LENGTH_MASK) +
917 inode->i_sb->s_blocksize - 1) >>
918 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700920 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800922 (numalloc <<
923 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700925 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700927 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800928 memmove(&laarr[i],
929 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200930 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800931 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700932 i--;
933 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800936 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800937 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 }
940}
941
942static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200943 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700944 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800947 unsigned long blocksize = inode->i_sb->s_blocksize;
948 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700950 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200951 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
952 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Marcin Slusarz4b111112008-02-08 04:20:36 -0800954 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
955 (((li->extLength >> 30) ==
956 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
957 ((lip1->extLocation.logicalBlockNum -
958 li->extLocation.logicalBlockNum) ==
959 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
960 blocksize - 1) >> blocksize_bits)))) {
961
962 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
963 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
964 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
965 lip1->extLength = (lip1->extLength -
966 (li->extLength &
967 UDF_EXTENT_LENGTH_MASK) +
968 UDF_EXTENT_LENGTH_MASK) &
969 ~(blocksize - 1);
970 li->extLength = (li->extLength &
971 UDF_EXTENT_FLAG_MASK) +
972 (UDF_EXTENT_LENGTH_MASK + 1) -
973 blocksize;
974 lip1->extLocation.logicalBlockNum =
975 li->extLocation.logicalBlockNum +
976 ((li->extLength &
977 UDF_EXTENT_LENGTH_MASK) >>
978 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700979 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800980 li->extLength = lip1->extLength +
981 (((li->extLength &
982 UDF_EXTENT_LENGTH_MASK) +
983 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700984 if (*endnum > (i + 2))
985 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200986 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800987 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988 i--;
989 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800991 } else if (((li->extLength >> 30) ==
992 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
993 ((lip1->extLength >> 30) ==
994 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200995 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800996 ((li->extLength &
997 UDF_EXTENT_LENGTH_MASK) +
998 blocksize - 1) >> blocksize_bits);
999 li->extLocation.logicalBlockNum = 0;
1000 li->extLocation.partitionReferenceNum = 0;
1001
1002 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1003 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1004 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1005 lip1->extLength = (lip1->extLength -
1006 (li->extLength &
1007 UDF_EXTENT_LENGTH_MASK) +
1008 UDF_EXTENT_LENGTH_MASK) &
1009 ~(blocksize - 1);
1010 li->extLength = (li->extLength &
1011 UDF_EXTENT_FLAG_MASK) +
1012 (UDF_EXTENT_LENGTH_MASK + 1) -
1013 blocksize;
1014 } else {
1015 li->extLength = lip1->extLength +
1016 (((li->extLength &
1017 UDF_EXTENT_LENGTH_MASK) +
1018 blocksize - 1) & ~(blocksize - 1));
1019 if (*endnum > (i + 2))
1020 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001021 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001022 (*endnum - (i + 2)));
1023 i--;
1024 (*endnum)--;
1025 }
1026 } else if ((li->extLength >> 30) ==
1027 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1028 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001029 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001030 ((li->extLength &
1031 UDF_EXTENT_LENGTH_MASK) +
1032 blocksize - 1) >> blocksize_bits);
1033 li->extLocation.logicalBlockNum = 0;
1034 li->extLocation.partitionReferenceNum = 0;
1035 li->extLength = (li->extLength &
1036 UDF_EXTENT_LENGTH_MASK) |
1037 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039 }
1040}
1041
1042static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001043 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001044 int startnum, int endnum,
1045 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001048 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 uint32_t tmplen;
1050
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001051 if (startnum > endnum) {
1052 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001053 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001054 laarr[i].extLength);
1055 } else if (startnum < endnum) {
1056 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001057 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001058 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001059 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001060 &laarr[i].extLength, 1);
1061 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063 }
1064
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001065 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001066 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001067 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001068 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070}
1071
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001072struct buffer_head *udf_bread(struct inode *inode, int block,
1073 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001075 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 bh = udf_getblk(inode, block, create, err);
1078 if (!bh)
1079 return NULL;
1080
1081 if (buffer_uptodate(bh))
1082 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 wait_on_buffer(bh);
1087 if (buffer_uptodate(bh))
1088 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 brelse(bh);
1091 *err = -EIO;
1092 return NULL;
1093}
1094
Jan Kara7e49b6f2010-10-22 00:30:26 +02001095int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001098 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +02001099 int bsize = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001102 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001103 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001105 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001107 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001108 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001109 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001110 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1111 if (bsize <
1112 (udf_file_entry_alloc_offset(inode) + newsize)) {
1113 err = udf_expand_file_adinicb(inode);
1114 if (err) {
1115 up_write(&iinfo->i_data_sem);
1116 return err;
1117 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001118 } else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001119 iinfo->i_lenAlloc = newsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001121 err = udf_extend_file(inode, newsize);
1122 if (err) {
1123 up_write(&iinfo->i_data_sem);
1124 return err;
1125 }
1126 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001127 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001128 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001129 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1130 down_write(&iinfo->i_data_sem);
1131 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1132 0x00, bsize - newsize -
1133 udf_file_entry_alloc_offset(inode));
1134 iinfo->i_lenAlloc = newsize;
1135 truncate_setsize(inode, newsize);
1136 up_write(&iinfo->i_data_sem);
1137 goto update_time;
1138 }
1139 err = block_truncate_page(inode->i_mapping, newsize,
1140 udf_get_block);
1141 if (err)
1142 return err;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001143 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001144 truncate_setsize(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001146 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001147 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001148update_time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1150 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001151 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 else
1153 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001157static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 struct buffer_head *bh = NULL;
1160 struct fileEntry *fe;
1161 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001162 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /*
1165 * Set defaults, but the inode is still incomplete!
1166 * Note: get_new_inode() sets the following on a new inode:
1167 * i_sb = sb
1168 * i_no = ino
1169 * i_flags = sb->s_flags
1170 * i_state = 0
1171 * clean_inode(): zero fills and sets
1172 * i_count = 1
1173 * i_nlink = 1
1174 * i_op = NULL;
1175 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001176 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001177 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001178 udf_err(inode->i_sb, "(ino %ld) failed !bh\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 make_bad_inode(inode);
1180 return;
1181 }
1182
1183 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001184 ident != TAG_IDENT_USE) {
Joe Perches78ace702011-10-10 01:08:05 -07001185 udf_err(inode->i_sb, "(ino %ld) failed ident=%d\n",
1186 inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001187 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 make_bad_inode(inode);
1189 return;
1190 }
1191
1192 fe = (struct fileEntry *)bh->b_data;
1193
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001194 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001195 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Pekka Enberg97e961f2008-10-15 12:29:03 +02001197 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001198 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001199 if (ident == TAG_IDENT_IE && ibh) {
1200 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001201 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001202 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001203
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001204 ie = (struct indirectEntry *)ibh->b_data;
1205 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001206
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001207 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001208 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001209 &ident))) {
1210 if (ident == TAG_IDENT_FE ||
1211 ident == TAG_IDENT_EFE) {
1212 memcpy(&iinfo->i_location,
1213 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001214 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001215 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001216 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001217 brelse(nbh);
1218 __udf_read_inode(inode);
1219 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001220 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001221 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001223 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001224 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001225 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Joe Perches78ace702011-10-10 01:08:05 -07001226 udf_err(inode->i_sb, "unsupported strategy type: %d\n",
1227 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001228 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 make_bad_inode(inode);
1230 return;
1231 }
1232 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001233
Jan Kara3bf25cb2007-05-08 00:35:16 -07001234 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1238{
1239 struct fileEntry *fe;
1240 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001242 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001243 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 fe = (struct fileEntry *)bh->b_data;
1246 efe = (struct extendedFileEntry *)bh->b_data;
1247
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001248 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001249 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001250 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001251 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001253 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001254 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001255 iinfo->i_unique = 0;
1256 iinfo->i_lenEAttr = 0;
1257 iinfo->i_lenExtents = 0;
1258 iinfo->i_lenAlloc = 0;
1259 iinfo->i_next_alloc_block = 0;
1260 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001261 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001262 iinfo->i_efe = 1;
1263 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001264 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1265 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001266 make_bad_inode(inode);
1267 return;
1268 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001269 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001270 bh->b_data + sizeof(struct extendedFileEntry),
1271 inode->i_sb->s_blocksize -
1272 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001273 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001274 iinfo->i_efe = 0;
1275 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001276 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1277 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001278 make_bad_inode(inode);
1279 return;
1280 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001281 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001282 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001283 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001284 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001285 iinfo->i_efe = 0;
1286 iinfo->i_use = 1;
1287 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001288 ((struct unallocSpaceEntry *)bh->b_data)->
1289 lengthAllocDescs);
1290 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1291 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001292 make_bad_inode(inode);
1293 return;
1294 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001295 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001296 bh->b_data + sizeof(struct unallocSpaceEntry),
1297 inode->i_sb->s_blocksize -
1298 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return;
1300 }
1301
Jan Karac03cad22010-10-20 22:17:28 +02001302 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001304 if (inode->i_uid == -1 ||
1305 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1306 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001307 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001310 if (inode->i_gid == -1 ||
1311 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1312 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001313 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001315 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001316 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001317 inode->i_mode = sbi->s_fmode;
1318 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001319 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001320 inode->i_mode = sbi->s_dmode;
1321 else
1322 inode->i_mode = udf_convert_permissions(fe);
1323 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001324 read_unlock(&sbi->s_cred_lock);
1325
1326 inode->i_nlink = le16_to_cpu(fe->fileLinkCount);
1327 if (!inode->i_nlink)
1328 inode->i_nlink = 1;
1329
1330 inode->i_size = le64_to_cpu(fe->informationLength);
1331 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001333 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001335 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Marcin Slusarz56774802008-02-10 11:25:31 +01001337 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001338 inode->i_atime = sbi->s_record_time;
1339
Marcin Slusarz56774802008-02-10 11:25:31 +01001340 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1341 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001342 inode->i_mtime = sbi->s_record_time;
1343
Marcin Slusarz56774802008-02-10 11:25:31 +01001344 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001345 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001347 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1348 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1349 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1350 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001351 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001352 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001353 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Marcin Slusarz56774802008-02-10 11:25:31 +01001355 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001356 inode->i_atime = sbi->s_record_time;
1357
Marcin Slusarz56774802008-02-10 11:25:31 +01001358 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1359 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001360 inode->i_mtime = sbi->s_record_time;
1361
Marcin Slusarz56774802008-02-10 11:25:31 +01001362 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001363 iinfo->i_crtime = sbi->s_record_time;
1364
Marcin Slusarz56774802008-02-10 11:25:31 +01001365 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001366 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001368 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1369 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1370 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001371 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001372 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001375 switch (fe->icbTag.fileType) {
1376 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001377 inode->i_op = &udf_dir_inode_operations;
1378 inode->i_fop = &udf_dir_operations;
1379 inode->i_mode |= S_IFDIR;
1380 inc_nlink(inode);
1381 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001382 case ICBTAG_FILE_TYPE_REALTIME:
1383 case ICBTAG_FILE_TYPE_REGULAR:
1384 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001385 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001386 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001387 inode->i_data.a_ops = &udf_adinicb_aops;
1388 else
1389 inode->i_data.a_ops = &udf_aops;
1390 inode->i_op = &udf_file_inode_operations;
1391 inode->i_fop = &udf_file_operations;
1392 inode->i_mode |= S_IFREG;
1393 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001394 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001395 inode->i_mode |= S_IFBLK;
1396 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001397 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001398 inode->i_mode |= S_IFCHR;
1399 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001400 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001401 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1402 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001403 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001404 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1405 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001406 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001407 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001408 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001409 inode->i_mode = S_IFLNK | S_IRWXUGO;
1410 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001411 case ICBTAG_FILE_TYPE_MAIN:
1412 udf_debug("METADATA FILE-----\n");
1413 break;
1414 case ICBTAG_FILE_TYPE_MIRROR:
1415 udf_debug("METADATA MIRROR FILE-----\n");
1416 break;
1417 case ICBTAG_FILE_TYPE_BITMAP:
1418 udf_debug("METADATA BITMAP FILE-----\n");
1419 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001420 default:
Joe Perches78ace702011-10-10 01:08:05 -07001421 udf_err(inode->i_sb, "(ino %ld) failed unknown file type=%d\n",
1422 inode->i_ino, fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001423 make_bad_inode(inode);
1424 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001426 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001427 struct deviceSpec *dsea =
1428 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001429 if (dsea) {
1430 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001431 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1432 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001434 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437}
1438
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001439static int udf_alloc_i_data(struct inode *inode, size_t size)
1440{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001441 struct udf_inode_info *iinfo = UDF_I(inode);
1442 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001443
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001444 if (!iinfo->i_ext.i_data) {
Joe Perches78ace702011-10-10 01:08:05 -07001445 udf_err(inode->i_sb, "(ino %ld) no free memory\n",
1446 inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001447 return -ENOMEM;
1448 }
1449
1450 return 0;
1451}
1452
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001453static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 mode_t mode;
1456 uint32_t permissions;
1457 uint32_t flags;
1458
1459 permissions = le32_to_cpu(fe->permissions);
1460 flags = le16_to_cpu(fe->icbTag.flags);
1461
Marcin Slusarz4b111112008-02-08 04:20:36 -08001462 mode = ((permissions) & S_IRWXO) |
1463 ((permissions >> 2) & S_IRWXG) |
1464 ((permissions >> 4) & S_IRWXU) |
1465 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1466 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1467 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 return mode;
1470}
1471
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001472int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Jan Kara49521de2010-10-20 17:42:44 +02001474 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Jan Kara49521de2010-10-20 17:42:44 +02001477static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 return udf_update_inode(inode, 1);
1480}
1481
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001482static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
1484 struct buffer_head *bh = NULL;
1485 struct fileEntry *fe;
1486 struct extendedFileEntry *efe;
1487 uint32_t udfperms;
1488 uint16_t icbflags;
1489 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001491 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001492 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001493 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Jan Kara5833ded2010-01-08 16:52:59 +01001495 bh = udf_tgetblk(inode->i_sb,
1496 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001497 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001498 udf_debug("getblk failure\n");
1499 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
Jan Karaaae917c2010-01-08 16:46:29 +01001502 lock_buffer(bh);
1503 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 fe = (struct fileEntry *)bh->b_data;
1505 efe = (struct extendedFileEntry *)bh->b_data;
1506
Jan Karaaae917c2010-01-08 16:46:29 +01001507 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001509 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001511 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001512 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001513 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001514 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001515 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1516 use->descTag.tagLocation =
1517 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001518 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001519 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001521 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001522 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001523 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001524 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Jan Karaaae917c2010-01-08 16:46:29 +01001526 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
Phillip Susi4d6660e2006-03-07 21:55:24 -08001529 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1530 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001531 else
1532 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Phillip Susi4d6660e2006-03-07 21:55:24 -08001534 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1535 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001536 else
1537 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Marcin Slusarz4b111112008-02-08 04:20:36 -08001539 udfperms = ((inode->i_mode & S_IRWXO)) |
1540 ((inode->i_mode & S_IRWXG) << 2) |
1541 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Marcin Slusarz4b111112008-02-08 04:20:36 -08001543 udfperms |= (le32_to_cpu(fe->permissions) &
1544 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1545 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1546 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 fe->permissions = cpu_to_le32(udfperms);
1548
1549 if (S_ISDIR(inode->i_mode))
1550 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1551 else
1552 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1553
1554 fe->informationLength = cpu_to_le64(inode->i_size);
1555
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001556 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001557 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001558 struct deviceSpec *dsea =
1559 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001560 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001562 udf_add_extendedattr(inode,
1563 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001564 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 dsea->attrType = cpu_to_le32(12);
1566 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001567 dsea->attrLength = cpu_to_le32(
1568 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001569 sizeof(struct regid));
1570 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001572 eid = (struct regid *)dsea->impUse;
1573 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 strcpy(eid->ident, UDF_ID_DEVELOPER);
1575 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1576 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1577 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1578 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1579 }
1580
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001581 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001582 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001583 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001584 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001585 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001586 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1587 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Marcin Slusarz56774802008-02-10 11:25:31 +01001589 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1590 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1591 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001592 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1594 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1595 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001596 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1597 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1598 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1600 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001601 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001602 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001603 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001604 inode->i_sb->s_blocksize -
1605 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001607 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001608 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1609 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001611 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1612 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1613 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1614 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001615
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001616 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1617 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1618 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1619 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001620
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001621 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1622 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1623 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1624 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Marcin Slusarz56774802008-02-10 11:25:31 +01001626 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1627 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1628 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1629 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001631 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1633 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1634 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001635 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1636 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1637 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1639 crclen = sizeof(struct extendedFileEntry);
1640 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001641 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 fe->icbTag.strategyType = cpu_to_le16(4096);
1643 fe->icbTag.strategyParameter = cpu_to_le16(1);
1644 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001645 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 fe->icbTag.strategyType = cpu_to_le16(4);
1647 fe->icbTag.numEntries = cpu_to_le16(1);
1648 }
1649
1650 if (S_ISDIR(inode->i_mode))
1651 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1652 else if (S_ISREG(inode->i_mode))
1653 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1654 else if (S_ISLNK(inode->i_mode))
1655 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1656 else if (S_ISBLK(inode->i_mode))
1657 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1658 else if (S_ISCHR(inode->i_mode))
1659 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1660 else if (S_ISFIFO(inode->i_mode))
1661 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1662 else if (S_ISSOCK(inode->i_mode))
1663 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1664
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001665 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001666 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1667 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1668 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1669 (le16_to_cpu(fe->icbTag.flags) &
1670 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1671 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001674 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 fe->descTag.descVersion = cpu_to_le16(3);
1676 else
1677 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001678 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001679 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001680 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001681 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001683 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001684 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001685 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Jan Karaaae917c2010-01-08 16:46:29 +01001687out:
Jan Kara5833ded2010-01-08 16:52:59 +01001688 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001689 unlock_buffer(bh);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 /* write the data blocks */
1692 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001693 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001695 if (buffer_write_io_error(bh)) {
Joe Perches78ace702011-10-10 01:08:05 -07001696 udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n",
1697 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 err = -EIO;
1699 }
1700 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001701 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return err;
1704}
1705
Pekka Enberg97e961f2008-10-15 12:29:03 +02001706struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1709 struct inode *inode = iget_locked(sb, block);
1710
1711 if (!inode)
1712 return NULL;
1713
1714 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001715 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 __udf_read_inode(inode);
1717 unlock_new_inode(inode);
1718 }
1719
1720 if (is_bad_inode(inode))
1721 goto out_iput;
1722
Pekka Enberg97e961f2008-10-15 12:29:03 +02001723 if (ino->logicalBlockNum >= UDF_SB(sb)->
1724 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001726 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 make_bad_inode(inode);
1728 goto out_iput;
1729 }
1730
1731 return inode;
1732
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001733 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 iput(inode);
1735 return NULL;
1736}
1737
Jan Kara7e49b6f2010-10-22 00:30:26 +02001738int udf_add_aext(struct inode *inode, struct extent_position *epos,
1739 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
1741 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001742 struct short_ad *sad = NULL;
1743 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 struct allocExtDesc *aed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001746 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Jan Karaff116fc2007-05-08 00:35:14 -07001748 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001749 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001750 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001751 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 else
Jan Karaff116fc2007-05-08 00:35:14 -07001753 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001755 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001756 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001757 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001758 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001760 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001762 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001763 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 struct buffer_head *nbh;
1765 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001766 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Marcin Slusarz4b111112008-02-08 04:20:36 -08001768 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1769 obloc.partitionReferenceNum,
1770 obloc.logicalBlockNum, &err);
1771 if (!epos->block.logicalBlockNum)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001772 return -ENOSPC;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001773 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001774 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001775 0));
1776 if (!nbh)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001777 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 lock_buffer(nbh);
1779 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1780 set_buffer_uptodate(nbh);
1781 unlock_buffer(nbh);
1782 mark_buffer_dirty_inode(nbh, inode);
1783
1784 aed = (struct allocExtDesc *)(nbh->b_data);
1785 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001786 aed->previousAllocExtLocation =
1787 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001788 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001789 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 aed->lengthAllocDescs = cpu_to_le32(adsize);
1791 sptr = ptr - adsize;
1792 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1793 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001794 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001795 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001796 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 aed->lengthAllocDescs = cpu_to_le32(0);
1798 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001799 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001801 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001802 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001803 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001804 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001805 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 mark_inode_dirty(inode);
1807 }
1808 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001809 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001811 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 else
1813 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001814 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001815 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001816 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001817 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001818 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1819 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001820 sad->extPosition =
1821 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001822 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001823 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001824 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001825 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1826 inode->i_sb->s_blocksize);
1827 lad->extLocation = cpu_to_lelb(epos->block);
1828 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1829 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001831 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001832 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001833 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001834 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001836 udf_update_tag(epos->bh->b_data,
1837 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001838 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001839 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001840 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001842 }
Jan Karaff116fc2007-05-08 00:35:14 -07001843 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845
Jan Kara7e49b6f2010-10-22 00:30:26 +02001846 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001848 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001849 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001851 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001852 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001853 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001854 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1855 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1856 udf_update_tag(epos->bh->b_data,
1857 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001859 udf_update_tag(epos->bh->b_data,
1860 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001861 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863
Jan Kara7e49b6f2010-10-22 00:30:26 +02001864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
Jan Kara7e49b6f2010-10-22 00:30:26 +02001867void udf_write_aext(struct inode *inode, struct extent_position *epos,
1868 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 int adsize;
1871 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001872 struct short_ad *sad;
1873 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001874 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Jan Karaff116fc2007-05-08 00:35:14 -07001876 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001877 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001878 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001879 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 else
Jan Karaff116fc2007-05-08 00:35:14 -07001881 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001883 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001884 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001885 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001886 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001887 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001888 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001889 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001890 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001891 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001892 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001893 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001894 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001895 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001896 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001897 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001898 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001901 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001902 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001903 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001904 struct allocExtDesc *aed =
1905 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001906 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001907 le32_to_cpu(aed->lengthAllocDescs) +
1908 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Jan Karaff116fc2007-05-08 00:35:14 -07001910 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001911 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001916 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
Marcin Slusarz4b111112008-02-08 04:20:36 -08001919int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001920 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
1922 int8_t etype;
1923
Jan Karaff116fc2007-05-08 00:35:14 -07001924 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001925 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001926 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001927 epos->block = *eloc;
1928 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001929 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001930 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001931 epos->bh = udf_tread(inode->i_sb, block);
1932 if (!epos->bh) {
1933 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return -1;
1935 }
1936 }
1937
1938 return etype;
1939}
1940
Marcin Slusarz4b111112008-02-08 04:20:36 -08001941int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001942 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 int alen;
1945 int8_t etype;
1946 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001947 struct short_ad *sad;
1948 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001949 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001950
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001951 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001952 if (!epos->offset)
1953 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001954 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001955 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001956 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001957 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001958 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001959 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001960 if (!epos->offset)
1961 epos->offset = sizeof(struct allocExtDesc);
1962 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001963 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001964 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1965 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001968 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001969 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001970 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1971 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001973 etype = le32_to_cpu(sad->extLength) >> 30;
1974 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001975 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001976 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001977 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1978 break;
1979 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001980 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1981 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001982 return -1;
1983 etype = le32_to_cpu(lad->extLength) >> 30;
1984 *eloc = lelb_to_cpu(lad->extLocation);
1985 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1986 break;
1987 default:
Joe Perchesa983f362011-10-10 01:08:07 -07001988 udf_debug("alloc_type = %d unsupported\n", iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001989 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
1991
1992 return etype;
1993}
1994
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001995static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001996 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001998 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 uint32_t oelen;
2000 int8_t etype;
2001
Jan Karaff116fc2007-05-08 00:35:14 -07002002 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07002003 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002005 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002006 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 neloc = oeloc;
2008 nelen = (etype << 30) | oelen;
2009 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02002010 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002011 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return (nelen >> 30);
2014}
2015
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002017 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
Jan Karaff116fc2007-05-08 00:35:14 -07002019 struct extent_position oepos;
2020 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int8_t etype;
2022 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002023 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002025 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002026 get_bh(epos.bh);
2027 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002030 iinfo = UDF_I(inode);
2031 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002032 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002033 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002034 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 else
2036 adsize = 0;
2037
Jan Karaff116fc2007-05-08 00:35:14 -07002038 oepos = epos;
2039 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return -1;
2041
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002042 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002043 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002044 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002045 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07002046 brelse(oepos.bh);
2047 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07002048 oepos.bh = epos.bh;
2049 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002052 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 elen = 0;
2054
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002055 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002056 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
2057 udf_write_aext(inode, &oepos, &eloc, elen, 1);
2058 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002059 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002060 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002062 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002063 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002064 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002065 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002066 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002067 udf_update_tag(oepos.bh->b_data,
2068 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002070 udf_update_tag(oepos.bh->b_data,
2071 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002072 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002074 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002075 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002076 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002077 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002079 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002080 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002081 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002082 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002083 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002084 udf_update_tag(oepos.bh->b_data,
2085 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002087 udf_update_tag(oepos.bh->b_data,
2088 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002089 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002092
Jan Kara3bf25cb2007-05-08 00:35:16 -07002093 brelse(epos.bh);
2094 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return (elen >> 30);
2097}
2098
Marcin Slusarz4b111112008-02-08 04:20:36 -08002099int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002100 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002101 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002103 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002104 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002105 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002107 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002109 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002110 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002111 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002112 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002115 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002116 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2117 if (etype == -1) {
2118 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002119 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return -1;
2121 }
2122 lbcount += *elen;
2123 } while (lbcount <= bcount);
2124
Marcin Slusarz4b111112008-02-08 04:20:36 -08002125 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 return etype;
2128}
2129
Jan Kara60448b12007-05-08 00:35:13 -07002130long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002132 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002133 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002134 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002135 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 int ret;
2137
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002138 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Marcin Slusarz4b111112008-02-08 04:20:36 -08002140 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2141 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002142 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 else
2144 ret = 0;
2145
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002146 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002147 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2150 return udf_fixed_to_variable(ret);
2151 else
2152 return ret;
2153}