blob: 6e73f1d6e93c3e46d3a569ac74130105bfc58f22 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/04/98 dgb Added rudimentary directory functions
20 * 10/07/98 Fully working udf_block_map! It works!
21 * 11/25/98 bmap altered to better support extents
Marcin Slusarz4b111112008-02-08 04:20:36 -080022 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
25 * block boundaries (which is not actually allowed)
26 * 12/20/98 added support for strategy 4096
27 * 03/07/99 rewrote udf_block_map (again)
28 * New funcs, inode_bmap, udf_next_aext
29 * 04/19/99 Support for writing device EA's for major/minor #
30 */
31
32#include "udfdecl.h"
33#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
37#include <linux/writeback.h>
38#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020039#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "udf_i.h"
42#include "udf_sb.h"
43
44MODULE_AUTHOR("Ben Fennema");
45MODULE_DESCRIPTION("Universal Disk Format Filesystem");
46MODULE_LICENSE("GPL");
47
48#define EXTENT_MERGE_SIZE 5
49
50static mode_t udf_convert_permissions(struct fileEntry *);
51static int udf_update_inode(struct inode *, int);
52static void udf_fill_inode(struct inode *, struct buffer_head *);
Jan Kara49521de2010-10-20 17:42:44 +020053static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara60448b12007-05-08 00:35:13 -070055static struct buffer_head *inode_getblk(struct inode *, sector_t, int *,
Marcin Slusarz1ed16172008-02-08 04:20:48 -080056 sector_t *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070057static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020058 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020060 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020062 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020064 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020066 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070067 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
69
Christoph Hellwigb1e32122008-02-22 12:38:48 +010070
Al Viro3aac2b62010-06-07 00:43:39 -040071void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Jan Kara2c948b32009-12-03 13:39:28 +010073 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040074 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +010075
Al Viro3aac2b62010-06-07 00:43:39 -040076 if (!inode->i_nlink && !is_bad_inode(inode)) {
77 want_delete = 1;
Jan Kara7e49b6f2010-10-22 00:30:26 +020078 udf_setsize(inode, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040079 udf_update_inode(inode, IS_SYNC(inode));
Jan Kara7e49b6f2010-10-22 00:30:26 +020080 } else
81 truncate_inode_pages(&inode->i_data, 0);
Al Viro3aac2b62010-06-07 00:43:39 -040082 invalidate_inode_buffers(inode);
83 end_writeback(inode);
Jan Kara2c948b32009-12-03 13:39:28 +010084 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
85 inode->i_size != iinfo->i_lenExtents) {
86 printk(KERN_WARNING "UDF-fs (%s): Inode %lu (mode %o) has "
Daniel Mack1537a362010-01-29 15:57:49 +080087 "inode size %llu different from extent length %llu. "
Jan Kara2c948b32009-12-03 13:39:28 +010088 "Filesystem need not be standards compliant.\n",
89 inode->i_sb->s_id, inode->i_ino, inode->i_mode,
90 (unsigned long long)inode->i_size,
91 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080093 kfree(iinfo->i_ext.i_data);
94 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040095 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -040096 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static int udf_writepage(struct page *page, struct writeback_control *wbc)
101{
102 return block_write_full_page(page, udf_get_block, wbc);
103}
104
105static int udf_readpage(struct file *file, struct page *page)
106{
107 return block_read_full_page(page, udf_get_block);
108}
109
Nick Pigginbe021ee2007-10-16 01:25:20 -0700110static int udf_write_begin(struct file *file, struct address_space *mapping,
111 loff_t pos, unsigned len, unsigned flags,
112 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200114 int ret;
115
116 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
117 if (unlikely(ret)) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200118 struct inode *inode = mapping->host;
119 struct udf_inode_info *iinfo = UDF_I(inode);
120 loff_t isize = inode->i_size;
121
122 if (pos + len > isize) {
123 truncate_pagecache(inode, pos + len, isize);
124 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
125 down_write(&iinfo->i_data_sem);
126 udf_truncate_extents(inode);
127 up_write(&iinfo->i_data_sem);
128 }
129 }
Christoph Hellwig155130a2010-06-04 11:29:58 +0200130 }
131
132 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static sector_t udf_bmap(struct address_space *mapping, sector_t block)
136{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700137 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700140const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700141 .readpage = udf_readpage,
142 .writepage = udf_writepage,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700143 .write_begin = udf_write_begin,
144 .write_end = generic_write_end,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700145 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Jan Kara7e49b6f2010-10-22 00:30:26 +0200148int udf_expand_file_adinicb(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct page *page;
151 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800152 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200153 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct writeback_control udf_wbc = {
155 .sync_mode = WB_SYNC_NONE,
156 .nr_to_write = 1,
157 };
158
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800159 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800163 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200164 /* from now on we have normal address_space methods */
165 inode->i_data.a_ops = &udf_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
Jan Kara7e49b6f2010-10-22 00:30:26 +0200170 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
171 if (!page)
172 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700173
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700174 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800176 memset(kaddr + iinfo->i_lenAlloc, 0x00,
177 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
178 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
179 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 flush_dcache_page(page);
181 SetPageUptodate(page);
182 kunmap(page);
183 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800184 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
185 iinfo->i_lenAlloc);
186 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800188 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800190 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200191 /* from now on we have normal address_space methods */
192 inode->i_data.a_ops = &udf_aops;
193 err = inode->i_data.a_ops->writepage(page, &udf_wbc);
194 if (err) {
195 /* Restore everything back so that we don't lose data... */
196 lock_page(page);
197 kaddr = kmap(page);
198 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
199 inode->i_size);
200 kunmap(page);
201 unlock_page(page);
202 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
203 inode->i_data.a_ops = &udf_adinicb_aops;
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200207
208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700211struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
212 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700215 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200216 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700218 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800221 loff_t f_pos = udf_ext0_offset(inode);
222 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800224 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
227 alloctype = ICBTAG_FLAG_AD_SHORT;
228 else
229 alloctype = ICBTAG_FLAG_AD_LONG;
230
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700231 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800232 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 mark_inode_dirty(inode);
234 return NULL;
235 }
236
237 /* alloc block, and copy data to it */
238 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800239 iinfo->i_location.partitionReferenceNum,
240 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!(*block))
242 return NULL;
243 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800244 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800245 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!newblock)
247 return NULL;
248 dbh = udf_tgetblk(inode->i_sb, newblock);
249 if (!dbh)
250 return NULL;
251 lock_buffer(dbh);
252 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
253 set_buffer_uptodate(dbh);
254 unlock_buffer(dbh);
255 mark_buffer_dirty_inode(dbh, inode);
256
Marcin Slusarz4b111112008-02-08 04:20:36 -0800257 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800258 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700259 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 dfibh.soffset = dfibh.eoffset = 0;
261 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800262 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800263 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800264 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
265 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700266 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700267 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return NULL;
269 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800270 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 sfi->descTag.tagLocation = cpu_to_le32(*block);
272 dfibh.soffset = dfibh.eoffset;
273 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
274 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
275 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800276 sfi->fileIdent +
277 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800278 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700279 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return NULL;
281 }
282 }
283 mark_buffer_dirty_inode(dbh, inode);
284
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800285 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
286 iinfo->i_lenAlloc);
287 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800289 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800290 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100291 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700292 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800293 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700294 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100295 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* UniqueID stuff */
297
Jan Kara3bf25cb2007-05-08 00:35:16 -0700298 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 mark_inode_dirty(inode);
300 return dbh;
301}
302
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700303static int udf_get_block(struct inode *inode, sector_t block,
304 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 int err, new;
307 struct buffer_head *bh;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800308 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800309 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700311 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 phys = udf_block_map(inode, block);
313 if (phys)
314 map_bh(bh_result, inode->i_sb, phys);
315 return 0;
316 }
317
318 err = -EIO;
319 new = 0;
320 bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800321 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100322
323 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800324 if (block == iinfo->i_next_alloc_block + 1) {
325 iinfo->i_next_alloc_block++;
326 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
329 err = 0;
330
331 bh = inode_getblk(inode, block, &err, &phys, &new);
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200332 BUG_ON(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (err)
334 goto abort;
Eric Sesterhenn2c2111c2006-04-02 13:40:13 +0200335 BUG_ON(!phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 if (new)
338 set_buffer_new(bh_result);
339 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700340
341abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100342 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700346static struct buffer_head *udf_getblk(struct inode *inode, long block,
347 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700349 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct buffer_head dummy;
351
352 dummy.b_state = 0;
353 dummy.b_blocknr = -1000;
354 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700355 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700357 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 lock_buffer(bh);
359 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
360 set_buffer_uptodate(bh);
361 unlock_buffer(bh);
362 mark_buffer_dirty_inode(bh, inode);
363 }
364 return bh;
365 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return NULL;
368}
369
Jan Kara31170b62007-05-08 00:35:21 -0700370/* Extend the file by 'blocks' blocks, return the number of extents added */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200371static int udf_do_extend_file(struct inode *inode,
372 struct extent_position *last_pos,
373 struct kernel_long_ad *last_ext,
374 sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700375{
376 sector_t add;
377 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
378 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200379 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700380 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800381 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200382 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700383
384 /* The previous extent is fake and we should not extend by anything
385 * - there's nothing to do... */
386 if (!blocks && fake)
387 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700388
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800389 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700390 /* Round the last extent up to a multiple of block size */
391 if (last_ext->extLength & (sb->s_blocksize - 1)) {
392 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700393 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
394 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
395 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800396 iinfo->i_lenExtents =
397 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700398 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700399 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700400
Jan Kara31170b62007-05-08 00:35:21 -0700401 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800402 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
403 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700404 /* Save the extent so that we can reattach it to the end */
405 prealloc_loc = last_ext->extLocation;
406 prealloc_len = last_ext->extLength;
407 /* Mark the extent as a hole */
408 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700409 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700410 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800411 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700412 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700413
Jan Kara31170b62007-05-08 00:35:21 -0700414 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800415 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
416 EXT_NOT_RECORDED_NOT_ALLOCATED) {
417 add = ((1 << 30) - sb->s_blocksize -
418 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
419 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700420 if (add > blocks)
421 add = blocks;
422 blocks -= add;
423 last_ext->extLength += add << sb->s_blocksize_bits;
424 }
425
426 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200427 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700429 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800430 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200431 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800432 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700433
Jan Kara31170b62007-05-08 00:35:21 -0700434 /* Managed to do everything necessary? */
435 if (!blocks)
436 goto out;
437
438 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
439 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800440 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700441 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800442 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
443 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700444
Jan Kara31170b62007-05-08 00:35:21 -0700445 /* Create enough extents to cover the whole hole */
446 while (blocks > add) {
447 blocks -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200448 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
449 last_ext->extLength, 1);
450 if (err)
451 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700452 count++;
453 }
454 if (blocks) {
455 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700456 (blocks << sb->s_blocksize_bits);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200457 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
458 last_ext->extLength, 1);
459 if (err)
460 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700461 count++;
462 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700463
464out:
Jan Kara31170b62007-05-08 00:35:21 -0700465 /* Do we have some preallocated blocks saved? */
466 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200467 err = udf_add_aext(inode, last_pos, &prealloc_loc,
468 prealloc_len, 1);
469 if (err)
470 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700471 last_ext->extLocation = prealloc_loc;
472 last_ext->extLength = prealloc_len;
473 count++;
474 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700475
Jan Kara31170b62007-05-08 00:35:21 -0700476 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800477 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200478 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800479 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200480 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700481 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200482 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700483
Jan Kara31170b62007-05-08 00:35:21 -0700484 return count;
485}
486
Jan Kara7e49b6f2010-10-22 00:30:26 +0200487static int udf_extend_file(struct inode *inode, loff_t newsize)
488{
489
490 struct extent_position epos;
491 struct kernel_lb_addr eloc;
492 uint32_t elen;
493 int8_t etype;
494 struct super_block *sb = inode->i_sb;
495 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
496 int adsize;
497 struct udf_inode_info *iinfo = UDF_I(inode);
498 struct kernel_long_ad extent;
499 int err;
500
501 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
502 adsize = sizeof(struct short_ad);
503 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
504 adsize = sizeof(struct long_ad);
505 else
506 BUG();
507
508 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
509
510 /* File has extent covering the new size (could happen when extending
511 * inside a block)? */
512 if (etype != -1)
513 return 0;
514 if (newsize & (sb->s_blocksize - 1))
515 offset++;
516 /* Extended file just to the boundary of the last file block? */
517 if (offset == 0)
518 return 0;
519
520 /* Truncate is extending the file by 'offset' blocks */
521 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
522 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
523 /* File has no extents at all or has empty last
524 * indirect extent! Create a fake extent... */
525 extent.extLocation.logicalBlockNum = 0;
526 extent.extLocation.partitionReferenceNum = 0;
527 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
528 } else {
529 epos.offset -= adsize;
530 etype = udf_next_aext(inode, &epos, &extent.extLocation,
531 &extent.extLength, 0);
532 extent.extLength |= etype << 30;
533 }
534 err = udf_do_extend_file(inode, &epos, &extent, offset);
535 if (err < 0)
536 goto out;
537 err = 0;
538 iinfo->i_lenExtents = newsize;
539out:
540 brelse(epos.bh);
541 return err;
542}
543
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700544static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800545 int *err, sector_t *phys, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Jan Kara31170b62007-05-08 00:35:21 -0700547 static sector_t last_block;
Jan Karaff116fc2007-05-08 00:35:14 -0700548 struct buffer_head *result = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200549 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700550 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700552 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200553 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700555 loff_t lbcount = 0, b_off = 0;
556 uint32_t newblocknum, newblock;
557 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800559 struct udf_inode_info *iinfo = UDF_I(inode);
560 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700561 int lastblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Jan Karaff116fc2007-05-08 00:35:14 -0700563 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800564 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700565 prev_epos.bh = NULL;
566 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700567 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700570 alternate between laarr[0] and laarr[1] for locations of the
571 current extent, and the previous extent */
572 do {
573 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700574 brelse(prev_epos.bh);
575 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700576 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700578 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700579 brelse(cur_epos.bh);
580 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700581 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
584 lbcount += elen;
585
Jan Karaff116fc2007-05-08 00:35:14 -0700586 prev_epos.block = cur_epos.block;
587 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Jan Karaff116fc2007-05-08 00:35:14 -0700589 prev_epos.offset = cur_epos.offset;
590 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Marcin Slusarz4b111112008-02-08 04:20:36 -0800592 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
593 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595
596 c = !c;
597
598 laarr[c].extLength = (etype << 30) | elen;
599 laarr[c].extLocation = eloc;
600
601 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
602 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700603 ((elen + inode->i_sb->s_blocksize - 1) >>
604 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 } while (lbcount + elen <= b_off);
608
609 b_off -= lbcount;
610 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700611 /*
612 * Move prev_epos and cur_epos into indirect extent if we are at
613 * the pointer to it
614 */
615 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
616 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700619 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700621 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
622 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700624 ((elen + inode->i_sb->s_blocksize - 1) &
625 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200626 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700628 brelse(prev_epos.bh);
629 brelse(cur_epos.bh);
630 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200631 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *phys = newblock;
633 return NULL;
634 }
635
Jan Kara31170b62007-05-08 00:35:21 -0700636 last_block = block;
637 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700639 int ret;
640
641 if (count) {
642 if (c)
643 laarr[0] = laarr[1];
644 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700645 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700646 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800647 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200648 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700649 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200650 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800651 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700652 startnum = (offset > 0);
653 }
654 /* Create extents for the hole between EOF and offset */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200655 ret = udf_do_extend_file(inode, &prev_epos, laarr, offset);
656 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700657 brelse(prev_epos.bh);
658 brelse(cur_epos.bh);
659 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200660 *err = ret;
Jan Kara31170b62007-05-08 00:35:21 -0700661 return NULL;
662 }
663 c = 0;
664 offset = 0;
665 count += ret;
666 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800667 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
668 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700669 /* Is there any real extent? - otherwise we overwrite
670 * the fake one... */
671 if (count)
672 c = !c;
673 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700674 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800675 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200676 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700677 count++;
678 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700679 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700680 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700682 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 endnum = startnum = ((count > 2) ? 2 : count);
684
Marcin Slusarz4b111112008-02-08 04:20:36 -0800685 /* if the current extent is in position 0,
686 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700687 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700688 laarr[2] = laarr[0];
689 laarr[0] = laarr[1];
690 laarr[1] = laarr[2];
691 c = 1;
692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Marcin Slusarz4b111112008-02-08 04:20:36 -0800694 /* if the current block is located in an extent,
695 read the next extent */
696 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
697 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700698 laarr[c + 1].extLength = (etype << 30) | elen;
699 laarr[c + 1].extLocation = eloc;
700 count++;
701 startnum++;
702 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800703 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 lastblock = 1;
705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700708 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800709 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800711 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800712 if (iinfo->i_next_alloc_block == block)
713 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700715 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800716 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800717 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Marcin Slusarz4b111112008-02-08 04:20:36 -0800720 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800721 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800722 goal, err);
723 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700724 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 *err = -ENOSPC;
726 return NULL;
727 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800728 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Marcin Slusarz4b111112008-02-08 04:20:36 -0800731 /* if the extent the requsted block is located in contains multiple
732 * blocks, split the extent into at most three extents. blocks prior
733 * to requested block, requested block, and blocks after requested
734 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
736
737#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200738 /* We preallocate blocks only for regular files. It also makes sense
739 * for directories but there's a problem when to drop the
740 * preallocation. We might use some delayed work for that but I feel
741 * it's overengineering for a filesystem like UDF. */
742 if (S_ISREG(inode->i_mode))
743 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744#endif
745
746 /* merge any continuous blocks in laarr */
747 udf_merge_extents(inode, laarr, &endnum);
748
749 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700750 * of extents is greater than the old number, and deleting extents if
751 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700752 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Jan Kara3bf25cb2007-05-08 00:35:16 -0700754 brelse(prev_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Marcin Slusarz4b111112008-02-08 04:20:36 -0800756 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800757 iinfo->i_location.partitionReferenceNum, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800758 if (!newblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *phys = newblock;
761 *err = 0;
762 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800763 iinfo->i_next_alloc_block = block;
764 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 inode->i_ctime = current_fs_time(inode->i_sb);
766
767 if (IS_SYNC(inode))
768 udf_sync_inode(inode);
769 else
770 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return result;
773}
774
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700775static void udf_split_extents(struct inode *inode, int *c, int offset,
776 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200777 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700778 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800780 unsigned long blocksize = inode->i_sb->s_blocksize;
781 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800784 (laarr[*c].extLength >> 30) ==
785 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 int curr = *c;
787 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800788 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 int8_t etype = (laarr[curr].extLength >> 30);
790
Marcin Slusarz4b111112008-02-08 04:20:36 -0800791 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700792 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800793 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700794 laarr[curr + 2] = laarr[curr + 1];
795 laarr[curr + 1] = laarr[curr];
796 } else {
797 laarr[curr + 3] = laarr[curr + 1];
798 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700801 if (offset) {
802 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800803 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200804 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800805 0, offset);
806 laarr[curr].extLength =
807 EXT_NOT_RECORDED_NOT_ALLOCATED |
808 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800810 laarr[curr].extLocation.
811 partitionReferenceNum = 0;
812 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800814 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700815 curr++;
816 (*c)++;
817 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 laarr[curr].extLocation.logicalBlockNum = newblocknum;
821 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
822 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800823 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800825 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700826 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800830 laarr[curr].extLocation.logicalBlockNum +=
831 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700832 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800833 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700834 curr++;
835 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 }
838}
839
840static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200841 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700842 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 int start, length = 0, currlength = 0, i;
845
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700846 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (!lastblock)
848 return;
849 else
850 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800852 if ((laarr[c + 1].extLength >> 30) ==
853 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700854 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800855 length = currlength =
856 (((laarr[c + 1].extLength &
857 UDF_EXTENT_LENGTH_MASK) +
858 inode->i_sb->s_blocksize - 1) >>
859 inode->i_sb->s_blocksize_bits);
860 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 start = c;
862 }
863
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700864 for (i = start + 1; i <= *endnum; i++) {
865 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (lastblock)
867 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800868 } else if ((laarr[i].extLength >> 30) ==
869 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
870 length += (((laarr[i].extLength &
871 UDF_EXTENT_LENGTH_MASK) +
872 inode->i_sb->s_blocksize - 1) >>
873 inode->i_sb->s_blocksize_bits);
874 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
876 }
877
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700878 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700880 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800881 inode->i_sb->s_blocksize - 1) >>
882 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800884 laarr[start].extLocation.partitionReferenceNum,
885 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
886 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
887 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700888 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800889 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800891 (numalloc <<
892 inode->i_sb->s_blocksize_bits);
893 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700894 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200895 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700896 (*endnum)++;
897 laarr[c + 1].extLocation.logicalBlockNum = next;
898 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800899 laarr[c].extLocation.
900 partitionReferenceNum;
901 laarr[c + 1].extLength =
902 EXT_NOT_RECORDED_ALLOCATED |
903 (numalloc <<
904 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700905 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700908 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800909 int elen = ((laarr[i].extLength &
910 UDF_EXTENT_LENGTH_MASK) +
911 inode->i_sb->s_blocksize - 1) >>
912 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700914 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800916 (numalloc <<
917 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700919 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700921 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800922 memmove(&laarr[i],
923 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200924 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800925 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700926 i--;
927 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800930 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800931 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 }
934}
935
936static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200937 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700938 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800941 unsigned long blocksize = inode->i_sb->s_blocksize;
942 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700944 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200945 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
946 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Marcin Slusarz4b111112008-02-08 04:20:36 -0800948 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
949 (((li->extLength >> 30) ==
950 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
951 ((lip1->extLocation.logicalBlockNum -
952 li->extLocation.logicalBlockNum) ==
953 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
954 blocksize - 1) >> blocksize_bits)))) {
955
956 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
957 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
958 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
959 lip1->extLength = (lip1->extLength -
960 (li->extLength &
961 UDF_EXTENT_LENGTH_MASK) +
962 UDF_EXTENT_LENGTH_MASK) &
963 ~(blocksize - 1);
964 li->extLength = (li->extLength &
965 UDF_EXTENT_FLAG_MASK) +
966 (UDF_EXTENT_LENGTH_MASK + 1) -
967 blocksize;
968 lip1->extLocation.logicalBlockNum =
969 li->extLocation.logicalBlockNum +
970 ((li->extLength &
971 UDF_EXTENT_LENGTH_MASK) >>
972 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700973 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800974 li->extLength = lip1->extLength +
975 (((li->extLength &
976 UDF_EXTENT_LENGTH_MASK) +
977 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700978 if (*endnum > (i + 2))
979 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200980 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800981 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 i--;
983 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800985 } else if (((li->extLength >> 30) ==
986 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
987 ((lip1->extLength >> 30) ==
988 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200989 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800990 ((li->extLength &
991 UDF_EXTENT_LENGTH_MASK) +
992 blocksize - 1) >> blocksize_bits);
993 li->extLocation.logicalBlockNum = 0;
994 li->extLocation.partitionReferenceNum = 0;
995
996 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
997 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
998 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
999 lip1->extLength = (lip1->extLength -
1000 (li->extLength &
1001 UDF_EXTENT_LENGTH_MASK) +
1002 UDF_EXTENT_LENGTH_MASK) &
1003 ~(blocksize - 1);
1004 li->extLength = (li->extLength &
1005 UDF_EXTENT_FLAG_MASK) +
1006 (UDF_EXTENT_LENGTH_MASK + 1) -
1007 blocksize;
1008 } else {
1009 li->extLength = lip1->extLength +
1010 (((li->extLength &
1011 UDF_EXTENT_LENGTH_MASK) +
1012 blocksize - 1) & ~(blocksize - 1));
1013 if (*endnum > (i + 2))
1014 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001015 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001016 (*endnum - (i + 2)));
1017 i--;
1018 (*endnum)--;
1019 }
1020 } else if ((li->extLength >> 30) ==
1021 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1022 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001023 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001024 ((li->extLength &
1025 UDF_EXTENT_LENGTH_MASK) +
1026 blocksize - 1) >> blocksize_bits);
1027 li->extLocation.logicalBlockNum = 0;
1028 li->extLocation.partitionReferenceNum = 0;
1029 li->extLength = (li->extLength &
1030 UDF_EXTENT_LENGTH_MASK) |
1031 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 }
1034}
1035
1036static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001037 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001038 int startnum, int endnum,
1039 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001042 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 uint32_t tmplen;
1044
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001045 if (startnum > endnum) {
1046 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001047 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001048 laarr[i].extLength);
1049 } else if (startnum < endnum) {
1050 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001051 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001052 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001053 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001054 &laarr[i].extLength, 1);
1055 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 }
1058
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001059 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001060 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001061 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001062 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064}
1065
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001066struct buffer_head *udf_bread(struct inode *inode, int block,
1067 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001069 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 bh = udf_getblk(inode, block, create, err);
1072 if (!bh)
1073 return NULL;
1074
1075 if (buffer_uptodate(bh))
1076 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 wait_on_buffer(bh);
1081 if (buffer_uptodate(bh))
1082 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 brelse(bh);
1085 *err = -EIO;
1086 return NULL;
1087}
1088
Jan Kara7e49b6f2010-10-22 00:30:26 +02001089int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001092 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +02001093 int bsize = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001096 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001097 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001099 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001101 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001102 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001103 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001104 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1105 if (bsize <
1106 (udf_file_entry_alloc_offset(inode) + newsize)) {
1107 err = udf_expand_file_adinicb(inode);
1108 if (err) {
1109 up_write(&iinfo->i_data_sem);
1110 return err;
1111 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001112 } else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001113 iinfo->i_lenAlloc = newsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001115 err = udf_extend_file(inode, newsize);
1116 if (err) {
1117 up_write(&iinfo->i_data_sem);
1118 return err;
1119 }
1120 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001121 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001122 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001123 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1124 down_write(&iinfo->i_data_sem);
1125 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1126 0x00, bsize - newsize -
1127 udf_file_entry_alloc_offset(inode));
1128 iinfo->i_lenAlloc = newsize;
1129 truncate_setsize(inode, newsize);
1130 up_write(&iinfo->i_data_sem);
1131 goto update_time;
1132 }
1133 err = block_truncate_page(inode->i_mapping, newsize,
1134 udf_get_block);
1135 if (err)
1136 return err;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001137 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001138 truncate_setsize(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001140 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001141 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001142update_time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1144 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001145 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 else
1147 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001151static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 struct buffer_head *bh = NULL;
1154 struct fileEntry *fe;
1155 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001156 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /*
1159 * Set defaults, but the inode is still incomplete!
1160 * Note: get_new_inode() sets the following on a new inode:
1161 * i_sb = sb
1162 * i_no = ino
1163 * i_flags = sb->s_flags
1164 * i_state = 0
1165 * clean_inode(): zero fills and sets
1166 * i_count = 1
1167 * i_nlink = 1
1168 * i_op = NULL;
1169 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001170 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001171 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 printk(KERN_ERR "udf: udf_read_inode(ino %ld) failed !bh\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001173 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 make_bad_inode(inode);
1175 return;
1176 }
1177
1178 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001179 ident != TAG_IDENT_USE) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001180 printk(KERN_ERR "udf: udf_read_inode(ino %ld) "
1181 "failed ident=%d\n", inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001182 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 make_bad_inode(inode);
1184 return;
1185 }
1186
1187 fe = (struct fileEntry *)bh->b_data;
1188
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001189 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001190 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Pekka Enberg97e961f2008-10-15 12:29:03 +02001192 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001193 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001194 if (ident == TAG_IDENT_IE && ibh) {
1195 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001196 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001197 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001198
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001199 ie = (struct indirectEntry *)ibh->b_data;
1200 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001201
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001202 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001203 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001204 &ident))) {
1205 if (ident == TAG_IDENT_FE ||
1206 ident == TAG_IDENT_EFE) {
1207 memcpy(&iinfo->i_location,
1208 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001209 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001210 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001211 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001212 brelse(nbh);
1213 __udf_read_inode(inode);
1214 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001215 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001216 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001218 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001219 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001220 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 printk(KERN_ERR "udf: unsupported strategy type: %d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001222 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001223 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 make_bad_inode(inode);
1225 return;
1226 }
1227 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001228
Jan Kara3bf25cb2007-05-08 00:35:16 -07001229 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
1232static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1233{
1234 struct fileEntry *fe;
1235 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 int offset;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001237 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001238 struct udf_inode_info *iinfo = UDF_I(inode);
Miklos Szeredibfe86842011-10-28 14:13:29 +02001239 unsigned int link_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 fe = (struct fileEntry *)bh->b_data;
1242 efe = (struct extendedFileEntry *)bh->b_data;
1243
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001244 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001245 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001246 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001247 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001249 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001250 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001251 iinfo->i_unique = 0;
1252 iinfo->i_lenEAttr = 0;
1253 iinfo->i_lenExtents = 0;
1254 iinfo->i_lenAlloc = 0;
1255 iinfo->i_next_alloc_block = 0;
1256 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001257 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001258 iinfo->i_efe = 1;
1259 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001260 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1261 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001262 make_bad_inode(inode);
1263 return;
1264 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001265 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001266 bh->b_data + sizeof(struct extendedFileEntry),
1267 inode->i_sb->s_blocksize -
1268 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001269 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001270 iinfo->i_efe = 0;
1271 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001272 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1273 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001274 make_bad_inode(inode);
1275 return;
1276 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001277 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001278 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001279 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001280 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001281 iinfo->i_efe = 0;
1282 iinfo->i_use = 1;
1283 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001284 ((struct unallocSpaceEntry *)bh->b_data)->
1285 lengthAllocDescs);
1286 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1287 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001288 make_bad_inode(inode);
1289 return;
1290 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001291 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001292 bh->b_data + sizeof(struct unallocSpaceEntry),
1293 inode->i_sb->s_blocksize -
1294 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return;
1296 }
1297
Jan Karac03cad22010-10-20 22:17:28 +02001298 read_lock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 inode->i_uid = le32_to_cpu(fe->uid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001300 if (inode->i_uid == -1 ||
1301 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1302 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001303 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 inode->i_gid = le32_to_cpu(fe->gid);
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001306 if (inode->i_gid == -1 ||
1307 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1308 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001309 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001311 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001312 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001313 inode->i_mode = sbi->s_fmode;
1314 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001315 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001316 inode->i_mode = sbi->s_dmode;
1317 else
1318 inode->i_mode = udf_convert_permissions(fe);
1319 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001320 read_unlock(&sbi->s_cred_lock);
1321
Miklos Szeredibfe86842011-10-28 14:13:29 +02001322 link_count = le16_to_cpu(fe->fileLinkCount);
1323 if (!link_count)
1324 link_count = 1;
1325 set_nlink(inode, link_count);
Jan Karac03cad22010-10-20 22:17:28 +02001326
1327 inode->i_size = le64_to_cpu(fe->informationLength);
1328 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001330 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001332 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Marcin Slusarz56774802008-02-10 11:25:31 +01001334 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001335 inode->i_atime = sbi->s_record_time;
1336
Marcin Slusarz56774802008-02-10 11:25:31 +01001337 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1338 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001339 inode->i_mtime = sbi->s_record_time;
1340
Marcin Slusarz56774802008-02-10 11:25:31 +01001341 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001342 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001344 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1345 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1346 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
1347 offset = sizeof(struct fileEntry) + iinfo->i_lenEAttr;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001348 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001349 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001350 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Marcin Slusarz56774802008-02-10 11:25:31 +01001352 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001353 inode->i_atime = sbi->s_record_time;
1354
Marcin Slusarz56774802008-02-10 11:25:31 +01001355 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1356 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001357 inode->i_mtime = sbi->s_record_time;
1358
Marcin Slusarz56774802008-02-10 11:25:31 +01001359 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001360 iinfo->i_crtime = sbi->s_record_time;
1361
Marcin Slusarz56774802008-02-10 11:25:31 +01001362 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001363 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001365 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1366 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1367 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001368 offset = sizeof(struct extendedFileEntry) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001369 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001372 switch (fe->icbTag.fileType) {
1373 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001374 inode->i_op = &udf_dir_inode_operations;
1375 inode->i_fop = &udf_dir_operations;
1376 inode->i_mode |= S_IFDIR;
1377 inc_nlink(inode);
1378 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001379 case ICBTAG_FILE_TYPE_REALTIME:
1380 case ICBTAG_FILE_TYPE_REGULAR:
1381 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001382 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001383 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001384 inode->i_data.a_ops = &udf_adinicb_aops;
1385 else
1386 inode->i_data.a_ops = &udf_aops;
1387 inode->i_op = &udf_file_inode_operations;
1388 inode->i_fop = &udf_file_operations;
1389 inode->i_mode |= S_IFREG;
1390 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001391 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001392 inode->i_mode |= S_IFBLK;
1393 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001394 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001395 inode->i_mode |= S_IFCHR;
1396 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001397 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001398 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1399 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001400 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001401 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1402 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001403 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001404 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001405 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001406 inode->i_mode = S_IFLNK | S_IRWXUGO;
1407 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001408 case ICBTAG_FILE_TYPE_MAIN:
1409 udf_debug("METADATA FILE-----\n");
1410 break;
1411 case ICBTAG_FILE_TYPE_MIRROR:
1412 udf_debug("METADATA MIRROR FILE-----\n");
1413 break;
1414 case ICBTAG_FILE_TYPE_BITMAP:
1415 udf_debug("METADATA BITMAP FILE-----\n");
1416 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001417 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001418 printk(KERN_ERR "udf: udf_fill_inode(ino %ld) failed unknown "
1419 "file type=%d\n", inode->i_ino,
1420 fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001421 make_bad_inode(inode);
1422 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001424 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001425 struct deviceSpec *dsea =
1426 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001427 if (dsea) {
1428 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001429 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1430 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001432 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435}
1436
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001437static int udf_alloc_i_data(struct inode *inode, size_t size)
1438{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001439 struct udf_inode_info *iinfo = UDF_I(inode);
1440 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001441
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001442 if (!iinfo->i_ext.i_data) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001443 printk(KERN_ERR "udf:udf_alloc_i_data (ino %ld) "
1444 "no free memory\n", inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001445 return -ENOMEM;
1446 }
1447
1448 return 0;
1449}
1450
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001451static mode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 mode_t mode;
1454 uint32_t permissions;
1455 uint32_t flags;
1456
1457 permissions = le32_to_cpu(fe->permissions);
1458 flags = le16_to_cpu(fe->icbTag.flags);
1459
Marcin Slusarz4b111112008-02-08 04:20:36 -08001460 mode = ((permissions) & S_IRWXO) |
1461 ((permissions >> 2) & S_IRWXG) |
1462 ((permissions >> 4) & S_IRWXU) |
1463 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1464 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1465 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 return mode;
1468}
1469
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001470int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Jan Kara49521de2010-10-20 17:42:44 +02001472 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
Jan Kara49521de2010-10-20 17:42:44 +02001475static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 return udf_update_inode(inode, 1);
1478}
1479
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001480static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 struct buffer_head *bh = NULL;
1483 struct fileEntry *fe;
1484 struct extendedFileEntry *efe;
1485 uint32_t udfperms;
1486 uint16_t icbflags;
1487 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001489 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001490 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001491 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Jan Kara5833ded2010-01-08 16:52:59 +01001493 bh = udf_tgetblk(inode->i_sb,
1494 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001495 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001496 udf_debug("getblk failure\n");
1497 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499
Jan Karaaae917c2010-01-08 16:46:29 +01001500 lock_buffer(bh);
1501 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 fe = (struct fileEntry *)bh->b_data;
1503 efe = (struct extendedFileEntry *)bh->b_data;
1504
Jan Karaaae917c2010-01-08 16:46:29 +01001505 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001507 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001509 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001510 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001511 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001512 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001513 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1514 use->descTag.tagLocation =
1515 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001517 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001519 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001520 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001521 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001522 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Jan Karaaae917c2010-01-08 16:46:29 +01001524 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526
Phillip Susi4d6660e2006-03-07 21:55:24 -08001527 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1528 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001529 else
1530 fe->uid = cpu_to_le32(inode->i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Phillip Susi4d6660e2006-03-07 21:55:24 -08001532 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1533 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001534 else
1535 fe->gid = cpu_to_le32(inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Marcin Slusarz4b111112008-02-08 04:20:36 -08001537 udfperms = ((inode->i_mode & S_IRWXO)) |
1538 ((inode->i_mode & S_IRWXG) << 2) |
1539 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Marcin Slusarz4b111112008-02-08 04:20:36 -08001541 udfperms |= (le32_to_cpu(fe->permissions) &
1542 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1543 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1544 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 fe->permissions = cpu_to_le32(udfperms);
1546
1547 if (S_ISDIR(inode->i_mode))
1548 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1549 else
1550 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1551
1552 fe->informationLength = cpu_to_le64(inode->i_size);
1553
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001554 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001555 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001556 struct deviceSpec *dsea =
1557 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001558 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001560 udf_add_extendedattr(inode,
1561 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001562 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 dsea->attrType = cpu_to_le32(12);
1564 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001565 dsea->attrLength = cpu_to_le32(
1566 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001567 sizeof(struct regid));
1568 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001570 eid = (struct regid *)dsea->impUse;
1571 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 strcpy(eid->ident, UDF_ID_DEVELOPER);
1573 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1574 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1575 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1576 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1577 }
1578
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001579 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001580 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001581 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001582 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001583 fe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001584 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1585 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Marcin Slusarz56774802008-02-10 11:25:31 +01001587 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1588 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1589 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001590 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1592 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1593 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001594 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1595 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1596 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1598 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001599 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001600 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001601 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001602 inode->i_sb->s_blocksize -
1603 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 efe->objectSize = cpu_to_le64(inode->i_size);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001605 efe->logicalBlocksRecorded = cpu_to_le64(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001606 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1607 (blocksize_bits - 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001609 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1610 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1611 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1612 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001613
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001614 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1615 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1616 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1617 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001618
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001619 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1620 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1621 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1622 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Marcin Slusarz56774802008-02-10 11:25:31 +01001624 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1625 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1626 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1627 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001629 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1631 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1632 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001633 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1634 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1635 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1637 crclen = sizeof(struct extendedFileEntry);
1638 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001639 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 fe->icbTag.strategyType = cpu_to_le16(4096);
1641 fe->icbTag.strategyParameter = cpu_to_le16(1);
1642 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001643 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 fe->icbTag.strategyType = cpu_to_le16(4);
1645 fe->icbTag.numEntries = cpu_to_le16(1);
1646 }
1647
1648 if (S_ISDIR(inode->i_mode))
1649 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1650 else if (S_ISREG(inode->i_mode))
1651 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1652 else if (S_ISLNK(inode->i_mode))
1653 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1654 else if (S_ISBLK(inode->i_mode))
1655 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1656 else if (S_ISCHR(inode->i_mode))
1657 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1658 else if (S_ISFIFO(inode->i_mode))
1659 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1660 else if (S_ISSOCK(inode->i_mode))
1661 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1662
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001663 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001664 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1665 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1666 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1667 (le16_to_cpu(fe->icbTag.flags) &
1668 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1669 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001672 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 fe->descTag.descVersion = cpu_to_le16(3);
1674 else
1675 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001676 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001677 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001678 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001679 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001681 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001682 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001683 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Jan Karaaae917c2010-01-08 16:46:29 +01001685out:
Jan Kara5833ded2010-01-08 16:52:59 +01001686 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001687 unlock_buffer(bh);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /* write the data blocks */
1690 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001691 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001693 if (buffer_write_io_error(bh)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001694 printk(KERN_WARNING "IO error syncing udf inode "
1695 "[%s:%08lx]\n", inode->i_sb->s_id,
1696 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 err = -EIO;
1698 }
1699 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001700 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return err;
1703}
1704
Pekka Enberg97e961f2008-10-15 12:29:03 +02001705struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1708 struct inode *inode = iget_locked(sb, block);
1709
1710 if (!inode)
1711 return NULL;
1712
1713 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001714 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 __udf_read_inode(inode);
1716 unlock_new_inode(inode);
1717 }
1718
1719 if (is_bad_inode(inode))
1720 goto out_iput;
1721
Pekka Enberg97e961f2008-10-15 12:29:03 +02001722 if (ino->logicalBlockNum >= UDF_SB(sb)->
1723 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001725 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 make_bad_inode(inode);
1727 goto out_iput;
1728 }
1729
1730 return inode;
1731
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001732 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 iput(inode);
1734 return NULL;
1735}
1736
Jan Kara7e49b6f2010-10-22 00:30:26 +02001737int udf_add_aext(struct inode *inode, struct extent_position *epos,
1738 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001741 struct short_ad *sad = NULL;
1742 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct allocExtDesc *aed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001745 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Jan Karaff116fc2007-05-08 00:35:14 -07001747 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001748 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001749 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001750 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 else
Jan Karaff116fc2007-05-08 00:35:14 -07001752 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001754 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001755 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001756 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001757 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001759 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001761 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001762 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct buffer_head *nbh;
1764 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001765 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Marcin Slusarz4b111112008-02-08 04:20:36 -08001767 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1768 obloc.partitionReferenceNum,
1769 obloc.logicalBlockNum, &err);
1770 if (!epos->block.logicalBlockNum)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001771 return -ENOSPC;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001772 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001773 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001774 0));
1775 if (!nbh)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001776 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 lock_buffer(nbh);
1778 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1779 set_buffer_uptodate(nbh);
1780 unlock_buffer(nbh);
1781 mark_buffer_dirty_inode(nbh, inode);
1782
1783 aed = (struct allocExtDesc *)(nbh->b_data);
1784 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001785 aed->previousAllocExtLocation =
1786 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001787 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001788 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 aed->lengthAllocDescs = cpu_to_le32(adsize);
1790 sptr = ptr - adsize;
1791 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1792 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001793 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001794 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001795 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 aed->lengthAllocDescs = cpu_to_le32(0);
1797 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001798 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001800 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001801 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001802 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001803 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001804 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 mark_inode_dirty(inode);
1806 }
1807 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001808 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001810 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 else
1812 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001813 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001814 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001815 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001816 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001817 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1818 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001819 sad->extPosition =
1820 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001821 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001822 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001823 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001824 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1825 inode->i_sb->s_blocksize);
1826 lad->extLocation = cpu_to_lelb(epos->block);
1827 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1828 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001830 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001831 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001832 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001833 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001835 udf_update_tag(epos->bh->b_data,
1836 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001837 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001838 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001839 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001841 }
Jan Karaff116fc2007-05-08 00:35:14 -07001842 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Jan Kara7e49b6f2010-10-22 00:30:26 +02001845 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001847 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001848 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001850 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001851 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001852 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001853 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1854 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1855 udf_update_tag(epos->bh->b_data,
1856 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001858 udf_update_tag(epos->bh->b_data,
1859 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001860 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
1862
Jan Kara7e49b6f2010-10-22 00:30:26 +02001863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
Jan Kara7e49b6f2010-10-22 00:30:26 +02001866void udf_write_aext(struct inode *inode, struct extent_position *epos,
1867 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
1869 int adsize;
1870 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001871 struct short_ad *sad;
1872 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001873 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Jan Karaff116fc2007-05-08 00:35:14 -07001875 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001876 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001877 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001878 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 else
Jan Karaff116fc2007-05-08 00:35:14 -07001880 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001882 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001883 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001884 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001885 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001886 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001887 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001888 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001889 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001890 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001891 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001892 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001893 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001894 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001895 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001896 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001897 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001900 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001901 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001902 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001903 struct allocExtDesc *aed =
1904 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001905 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001906 le32_to_cpu(aed->lengthAllocDescs) +
1907 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Jan Karaff116fc2007-05-08 00:35:14 -07001909 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001910 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001915 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
Marcin Slusarz4b111112008-02-08 04:20:36 -08001918int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001919 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 int8_t etype;
1922
Jan Karaff116fc2007-05-08 00:35:14 -07001923 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001924 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001925 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001926 epos->block = *eloc;
1927 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001928 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001929 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001930 epos->bh = udf_tread(inode->i_sb, block);
1931 if (!epos->bh) {
1932 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return -1;
1934 }
1935 }
1936
1937 return etype;
1938}
1939
Marcin Slusarz4b111112008-02-08 04:20:36 -08001940int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001941 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
1943 int alen;
1944 int8_t etype;
1945 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001946 struct short_ad *sad;
1947 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001948 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001949
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001951 if (!epos->offset)
1952 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001953 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001954 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001955 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001956 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001957 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001958 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001959 if (!epos->offset)
1960 epos->offset = sizeof(struct allocExtDesc);
1961 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001962 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001963 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
1964 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001967 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001968 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001969 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
1970 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001972 etype = le32_to_cpu(sad->extLength) >> 30;
1973 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001974 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001975 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001976 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
1977 break;
1978 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001979 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
1980 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001981 return -1;
1982 etype = le32_to_cpu(lad->extLength) >> 30;
1983 *eloc = lelb_to_cpu(lad->extLocation);
1984 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
1985 break;
1986 default:
Marcin Slusarz4b111112008-02-08 04:20:36 -08001987 udf_debug("alloc_type = %d unsupported\n",
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001988 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}