blob: 8266f2ed7fc4b0b8fa4f09858db25b73b2135218 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c
3 *
4 * PURPOSE
5 * Inode handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1998 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/04/98 dgb Added rudimentary directory functions
20 * 10/07/98 Fully working udf_block_map! It works!
21 * 11/25/98 bmap altered to better support extents
Marcin Slusarz4b111112008-02-08 04:20:36 -080022 * 12/06/98 blf partition support in udf_iget, udf_block_map
23 * and udf_read_inode
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 12/12/98 rewrote udf_block_map to handle next extents and descs across
25 * block boundaries (which is not actually allowed)
26 * 12/20/98 added support for strategy 4096
27 * 03/07/99 rewrote udf_block_map (again)
28 * New funcs, inode_bmap, udf_next_aext
29 * 04/19/99 Support for writing device EA's for major/minor #
30 */
31
32#include "udfdecl.h"
33#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
37#include <linux/writeback.h>
38#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020039#include <linux/crc-itu-t.h>
Namjae Jeonbc112322011-10-03 14:02:59 +090040#include <linux/mpage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "udf_i.h"
43#include "udf_sb.h"
44
45MODULE_AUTHOR("Ben Fennema");
46MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47MODULE_LICENSE("GPL");
48
49#define EXTENT_MERGE_SIZE 5
50
Al Virofaa17292011-07-26 03:18:29 -040051static umode_t udf_convert_permissions(struct fileEntry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static int udf_update_inode(struct inode *, int);
53static void udf_fill_inode(struct inode *, struct buffer_head *);
Jan Kara49521de2010-10-20 17:42:44 +020054static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070055static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara7b0b0932011-12-10 01:43:33 +010056static sector_t inode_getblk(struct inode *, sector_t, int *, 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);
Jan Karadbd57682012-05-03 14:48:02 +020083 clear_inode(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) {
Joe Perches78ace702011-10-10 01:08:05 -070086 udf_warn(inode->i_sb, "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n",
87 inode->i_ino, inode->i_mode,
88 (unsigned long long)inode->i_size,
89 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080091 kfree(iinfo->i_ext.i_data);
92 iinfo->i_ext.i_data = NULL;
Al Viro3aac2b62010-06-07 00:43:39 -040093 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -040094 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -040095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Ian Abbott5eec54f2012-09-05 17:44:31 +010098static void udf_write_failed(struct address_space *mapping, loff_t to)
99{
100 struct inode *inode = mapping->host;
101 struct udf_inode_info *iinfo = UDF_I(inode);
102 loff_t isize = inode->i_size;
103
104 if (to > isize) {
105 truncate_pagecache(inode, to, isize);
106 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
107 down_write(&iinfo->i_data_sem);
108 udf_truncate_extents(inode);
109 up_write(&iinfo->i_data_sem);
110 }
111 }
112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int udf_writepage(struct page *page, struct writeback_control *wbc)
115{
116 return block_write_full_page(page, udf_get_block, wbc);
117}
118
Namjae Jeon378b8e12012-08-31 12:49:07 -0400119static int udf_writepages(struct address_space *mapping,
120 struct writeback_control *wbc)
121{
122 return mpage_writepages(mapping, wbc, udf_get_block);
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static int udf_readpage(struct file *file, struct page *page)
126{
Namjae Jeonbc112322011-10-03 14:02:59 +0900127 return mpage_readpage(page, udf_get_block);
128}
129
130static int udf_readpages(struct file *file, struct address_space *mapping,
131 struct list_head *pages, unsigned nr_pages)
132{
133 return mpage_readpages(mapping, pages, nr_pages, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Nick Pigginbe021ee2007-10-16 01:25:20 -0700136static int udf_write_begin(struct file *file, struct address_space *mapping,
137 loff_t pos, unsigned len, unsigned flags,
138 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200140 int ret;
141
142 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100143 if (unlikely(ret))
144 udf_write_failed(mapping, pos + len);
145 return ret;
146}
Jan Kara7e49b6f2010-10-22 00:30:26 +0200147
Ian Abbott5eec54f2012-09-05 17:44:31 +0100148static ssize_t udf_direct_IO(int rw, struct kiocb *iocb,
149 const struct iovec *iov,
150 loff_t offset, unsigned long nr_segs)
151{
152 struct file *file = iocb->ki_filp;
153 struct address_space *mapping = file->f_mapping;
154 struct inode *inode = mapping->host;
155 ssize_t ret;
Christoph Hellwig155130a2010-06-04 11:29:58 +0200156
Ian Abbott5eec54f2012-09-05 17:44:31 +0100157 ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
158 udf_get_block);
159 if (unlikely(ret < 0 && (rw & WRITE)))
160 udf_write_failed(mapping, offset + iov_length(iov, nr_segs));
Christoph Hellwig155130a2010-06-04 11:29:58 +0200161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164static sector_t udf_bmap(struct address_space *mapping, sector_t block)
165{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700166 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700169const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700170 .readpage = udf_readpage,
Namjae Jeonbc112322011-10-03 14:02:59 +0900171 .readpages = udf_readpages,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700172 .writepage = udf_writepage,
Namjae Jeon378b8e12012-08-31 12:49:07 -0400173 .writepages = udf_writepages,
Ian Abbott5eec54f2012-09-05 17:44:31 +0100174 .write_begin = udf_write_begin,
175 .write_end = generic_write_end,
176 .direct_IO = udf_direct_IO,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700177 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Jan Karad2eb8c32011-12-10 02:30:48 +0100180/*
181 * Expand file stored in ICB to a normal one-block-file
182 *
183 * This function requires i_data_sem for writing and releases it.
184 * This function requires i_mutex held
185 */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200186int udf_expand_file_adinicb(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 struct page *page;
189 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800190 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200191 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct writeback_control udf_wbc = {
193 .sync_mode = WB_SYNC_NONE,
194 .nr_to_write = 1,
195 };
196
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800197 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800199 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800201 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200202 /* from now on we have normal address_space methods */
203 inode->i_data.a_ops = &udf_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100204 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100208 /*
209 * Release i_data_sem so that we can lock a page - page lock ranks
210 * above i_data_sem. i_mutex still protects us against file changes.
211 */
212 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Jan Kara7e49b6f2010-10-22 00:30:26 +0200214 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
215 if (!page)
216 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700217
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700218 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800220 memset(kaddr + iinfo->i_lenAlloc, 0x00,
221 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
222 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
223 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 flush_dcache_page(page);
225 SetPageUptodate(page);
226 kunmap(page);
227 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100228 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800229 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
230 iinfo->i_lenAlloc);
231 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800233 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800235 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200236 /* from now on we have normal address_space methods */
237 inode->i_data.a_ops = &udf_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100238 up_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200239 err = inode->i_data.a_ops->writepage(page, &udf_wbc);
240 if (err) {
241 /* Restore everything back so that we don't lose data... */
242 lock_page(page);
243 kaddr = kmap(page);
Jan Karad2eb8c32011-12-10 02:30:48 +0100244 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200245 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
246 inode->i_size);
247 kunmap(page);
248 unlock_page(page);
249 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
250 inode->i_data.a_ops = &udf_adinicb_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100251 up_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200255
256 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700259struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
260 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700263 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200264 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700266 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800269 loff_t f_pos = udf_ext0_offset(inode);
270 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800272 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
275 alloctype = ICBTAG_FLAG_AD_SHORT;
276 else
277 alloctype = ICBTAG_FLAG_AD_LONG;
278
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700279 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800280 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 mark_inode_dirty(inode);
282 return NULL;
283 }
284
285 /* alloc block, and copy data to it */
286 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800287 iinfo->i_location.partitionReferenceNum,
288 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!(*block))
290 return NULL;
291 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800292 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800293 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!newblock)
295 return NULL;
296 dbh = udf_tgetblk(inode->i_sb, newblock);
297 if (!dbh)
298 return NULL;
299 lock_buffer(dbh);
300 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
301 set_buffer_uptodate(dbh);
302 unlock_buffer(dbh);
303 mark_buffer_dirty_inode(dbh, inode);
304
Marcin Slusarz4b111112008-02-08 04:20:36 -0800305 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800306 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700307 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 dfibh.soffset = dfibh.eoffset = 0;
309 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800310 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800311 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800312 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
313 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700314 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700315 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return NULL;
317 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800318 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 sfi->descTag.tagLocation = cpu_to_le32(*block);
320 dfibh.soffset = dfibh.eoffset;
321 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
322 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
323 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800324 sfi->fileIdent +
325 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800326 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700327 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return NULL;
329 }
330 }
331 mark_buffer_dirty_inode(dbh, inode);
332
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800333 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
334 iinfo->i_lenAlloc);
335 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800337 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800338 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100339 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700340 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800341 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700342 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100343 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* UniqueID stuff */
345
Jan Kara3bf25cb2007-05-08 00:35:16 -0700346 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 mark_inode_dirty(inode);
348 return dbh;
349}
350
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700351static int udf_get_block(struct inode *inode, sector_t block,
352 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 int err, new;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800355 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800356 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700358 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 phys = udf_block_map(inode, block);
360 if (phys)
361 map_bh(bh_result, inode->i_sb, phys);
362 return 0;
363 }
364
365 err = -EIO;
366 new = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800367 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100368
369 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800370 if (block == iinfo->i_next_alloc_block + 1) {
371 iinfo->i_next_alloc_block++;
372 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jan Kara7b0b0932011-12-10 01:43:33 +0100376 phys = inode_getblk(inode, block, &err, &new);
377 if (!phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (new)
381 set_buffer_new(bh_result);
382 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700383
384abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100385 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700389static struct buffer_head *udf_getblk(struct inode *inode, long block,
390 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700392 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct buffer_head dummy;
394
395 dummy.b_state = 0;
396 dummy.b_blocknr = -1000;
397 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700398 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700400 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 lock_buffer(bh);
402 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
403 set_buffer_uptodate(bh);
404 unlock_buffer(bh);
405 mark_buffer_dirty_inode(bh, inode);
406 }
407 return bh;
408 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return NULL;
411}
412
Jan Kara31170b62007-05-08 00:35:21 -0700413/* Extend the file by 'blocks' blocks, return the number of extents added */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200414static int udf_do_extend_file(struct inode *inode,
415 struct extent_position *last_pos,
416 struct kernel_long_ad *last_ext,
417 sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700418{
419 sector_t add;
420 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
421 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200422 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700423 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800424 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200425 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700426
427 /* The previous extent is fake and we should not extend by anything
428 * - there's nothing to do... */
429 if (!blocks && fake)
430 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700431
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800432 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700433 /* Round the last extent up to a multiple of block size */
434 if (last_ext->extLength & (sb->s_blocksize - 1)) {
435 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700436 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
437 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
438 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800439 iinfo->i_lenExtents =
440 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700441 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700442 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700443
Jan Kara31170b62007-05-08 00:35:21 -0700444 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800445 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
446 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700447 /* Save the extent so that we can reattach it to the end */
448 prealloc_loc = last_ext->extLocation;
449 prealloc_len = last_ext->extLength;
450 /* Mark the extent as a hole */
451 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700452 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700453 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800454 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700455 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700456
Jan Kara31170b62007-05-08 00:35:21 -0700457 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800458 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
459 EXT_NOT_RECORDED_NOT_ALLOCATED) {
460 add = ((1 << 30) - sb->s_blocksize -
461 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
462 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700463 if (add > blocks)
464 add = blocks;
465 blocks -= add;
466 last_ext->extLength += add << sb->s_blocksize_bits;
467 }
468
469 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200470 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700471 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700472 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800473 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200474 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800475 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700476
Jan Kara31170b62007-05-08 00:35:21 -0700477 /* Managed to do everything necessary? */
478 if (!blocks)
479 goto out;
480
481 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
482 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800483 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700484 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800485 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
486 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700487
Jan Kara31170b62007-05-08 00:35:21 -0700488 /* Create enough extents to cover the whole hole */
489 while (blocks > add) {
490 blocks -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200491 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
492 last_ext->extLength, 1);
493 if (err)
494 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700495 count++;
496 }
497 if (blocks) {
498 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700499 (blocks << sb->s_blocksize_bits);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200500 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
501 last_ext->extLength, 1);
502 if (err)
503 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700504 count++;
505 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700506
507out:
Jan Kara31170b62007-05-08 00:35:21 -0700508 /* Do we have some preallocated blocks saved? */
509 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200510 err = udf_add_aext(inode, last_pos, &prealloc_loc,
511 prealloc_len, 1);
512 if (err)
513 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700514 last_ext->extLocation = prealloc_loc;
515 last_ext->extLength = prealloc_len;
516 count++;
517 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700518
Jan Kara31170b62007-05-08 00:35:21 -0700519 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800520 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200521 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800522 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200523 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700524 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200525 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700526
Jan Kara31170b62007-05-08 00:35:21 -0700527 return count;
528}
529
Jan Kara7e49b6f2010-10-22 00:30:26 +0200530static int udf_extend_file(struct inode *inode, loff_t newsize)
531{
532
533 struct extent_position epos;
534 struct kernel_lb_addr eloc;
535 uint32_t elen;
536 int8_t etype;
537 struct super_block *sb = inode->i_sb;
538 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
539 int adsize;
540 struct udf_inode_info *iinfo = UDF_I(inode);
541 struct kernel_long_ad extent;
542 int err;
543
544 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
545 adsize = sizeof(struct short_ad);
546 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
547 adsize = sizeof(struct long_ad);
548 else
549 BUG();
550
551 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
552
553 /* File has extent covering the new size (could happen when extending
554 * inside a block)? */
555 if (etype != -1)
556 return 0;
557 if (newsize & (sb->s_blocksize - 1))
558 offset++;
559 /* Extended file just to the boundary of the last file block? */
560 if (offset == 0)
561 return 0;
562
563 /* Truncate is extending the file by 'offset' blocks */
564 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
565 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
566 /* File has no extents at all or has empty last
567 * indirect extent! Create a fake extent... */
568 extent.extLocation.logicalBlockNum = 0;
569 extent.extLocation.partitionReferenceNum = 0;
570 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
571 } else {
572 epos.offset -= adsize;
573 etype = udf_next_aext(inode, &epos, &extent.extLocation,
574 &extent.extLength, 0);
575 extent.extLength |= etype << 30;
576 }
577 err = udf_do_extend_file(inode, &epos, &extent, offset);
578 if (err < 0)
579 goto out;
580 err = 0;
581 iinfo->i_lenExtents = newsize;
582out:
583 brelse(epos.bh);
584 return err;
585}
586
Jan Kara7b0b0932011-12-10 01:43:33 +0100587static sector_t inode_getblk(struct inode *inode, sector_t block,
588 int *err, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Jan Kara31170b62007-05-08 00:35:21 -0700590 static sector_t last_block;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200591 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700592 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700594 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200595 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700597 loff_t lbcount = 0, b_off = 0;
598 uint32_t newblocknum, newblock;
599 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800601 struct udf_inode_info *iinfo = UDF_I(inode);
602 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700603 int lastblock = 0;
Namjae Jeonfb719c52012-10-10 00:09:12 +0900604 bool isBeyondEOF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Jan Kara7b0b0932011-12-10 01:43:33 +0100606 *err = 0;
607 *new = 0;
Jan Karaff116fc2007-05-08 00:35:14 -0700608 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800609 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700610 prev_epos.bh = NULL;
611 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700612 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700615 alternate between laarr[0] and laarr[1] for locations of the
616 current extent, and the previous extent */
617 do {
618 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700619 brelse(prev_epos.bh);
620 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700621 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700623 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700624 brelse(cur_epos.bh);
625 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700626 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
629 lbcount += elen;
630
Jan Karaff116fc2007-05-08 00:35:14 -0700631 prev_epos.block = cur_epos.block;
632 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jan Karaff116fc2007-05-08 00:35:14 -0700634 prev_epos.offset = cur_epos.offset;
635 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Marcin Slusarz4b111112008-02-08 04:20:36 -0800637 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
638 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 break;
640
641 c = !c;
642
643 laarr[c].extLength = (etype << 30) | elen;
644 laarr[c].extLocation = eloc;
645
646 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
647 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700648 ((elen + inode->i_sb->s_blocksize - 1) >>
649 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 } while (lbcount + elen <= b_off);
653
654 b_off -= lbcount;
655 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700656 /*
657 * Move prev_epos and cur_epos into indirect extent if we are at
658 * the pointer to it
659 */
660 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
661 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700664 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700666 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
667 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700669 ((elen + inode->i_sb->s_blocksize - 1) &
670 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200671 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700673 brelse(prev_epos.bh);
674 brelse(cur_epos.bh);
675 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200676 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Jan Kara7b0b0932011-12-10 01:43:33 +0100677 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
Jan Kara31170b62007-05-08 00:35:21 -0700680 last_block = block;
681 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700682 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700683 int ret;
Namjae Jeonfb719c52012-10-10 00:09:12 +0900684 isBeyondEOF = 1;
Jan Kara31170b62007-05-08 00:35:21 -0700685 if (count) {
686 if (c)
687 laarr[0] = laarr[1];
688 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700689 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700690 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800691 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200692 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700693 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200694 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800695 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700696 startnum = (offset > 0);
697 }
698 /* Create extents for the hole between EOF and offset */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200699 ret = udf_do_extend_file(inode, &prev_epos, laarr, offset);
700 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700701 brelse(prev_epos.bh);
702 brelse(cur_epos.bh);
703 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200704 *err = ret;
Jan Kara7b0b0932011-12-10 01:43:33 +0100705 return 0;
Jan Kara31170b62007-05-08 00:35:21 -0700706 }
707 c = 0;
708 offset = 0;
709 count += ret;
710 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800711 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
712 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700713 /* Is there any real extent? - otherwise we overwrite
714 * the fake one... */
715 if (count)
716 c = !c;
717 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800719 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200720 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 count++;
722 endnum++;
Jan Kara31170b62007-05-08 00:35:21 -0700723 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700724 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700726 } else {
Namjae Jeonfb719c52012-10-10 00:09:12 +0900727 isBeyondEOF = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 endnum = startnum = ((count > 2) ? 2 : count);
729
Marcin Slusarz4b111112008-02-08 04:20:36 -0800730 /* if the current extent is in position 0,
731 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700732 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700733 laarr[2] = laarr[0];
734 laarr[0] = laarr[1];
735 laarr[1] = laarr[2];
736 c = 1;
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Marcin Slusarz4b111112008-02-08 04:20:36 -0800739 /* if the current block is located in an extent,
740 read the next extent */
741 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
742 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700743 laarr[c + 1].extLength = (etype << 30) | elen;
744 laarr[c + 1].extLocation = eloc;
745 count++;
746 startnum++;
747 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800748 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 lastblock = 1;
750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700753 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800754 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800756 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800757 if (iinfo->i_next_alloc_block == block)
758 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700760 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800761 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800762 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Marcin Slusarz4b111112008-02-08 04:20:36 -0800765 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800766 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800767 goal, err);
768 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700769 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900770 brelse(cur_epos.bh);
771 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 *err = -ENOSPC;
Jan Kara7b0b0932011-12-10 01:43:33 +0100773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Namjae Jeonfb719c52012-10-10 00:09:12 +0900775 if (isBeyondEOF)
776 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Marcin Slusarz4b111112008-02-08 04:20:36 -0800779 /* if the extent the requsted block is located in contains multiple
780 * blocks, split the extent into at most three extents. blocks prior
781 * to requested block, requested block, and blocks after requested
782 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
784
785#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200786 /* We preallocate blocks only for regular files. It also makes sense
787 * for directories but there's a problem when to drop the
788 * preallocation. We might use some delayed work for that but I feel
789 * it's overengineering for a filesystem like UDF. */
790 if (S_ISREG(inode->i_mode))
791 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#endif
793
794 /* merge any continuous blocks in laarr */
795 udf_merge_extents(inode, laarr, &endnum);
796
797 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700798 * of extents is greater than the old number, and deleting extents if
799 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700800 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jan Kara3bf25cb2007-05-08 00:35:16 -0700802 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900803 brelse(cur_epos.bh);
804 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Marcin Slusarz4b111112008-02-08 04:20:36 -0800806 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800807 iinfo->i_location.partitionReferenceNum, 0);
Jan Kara7b0b0932011-12-10 01:43:33 +0100808 if (!newblock) {
809 *err = -EIO;
810 return 0;
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800813 iinfo->i_next_alloc_block = block;
814 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 inode->i_ctime = current_fs_time(inode->i_sb);
816
817 if (IS_SYNC(inode))
818 udf_sync_inode(inode);
819 else
820 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700821
Jan Kara7b0b0932011-12-10 01:43:33 +0100822 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700825static void udf_split_extents(struct inode *inode, int *c, int offset,
826 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200827 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800830 unsigned long blocksize = inode->i_sb->s_blocksize;
831 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800834 (laarr[*c].extLength >> 30) ==
835 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 int curr = *c;
837 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800838 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 int8_t etype = (laarr[curr].extLength >> 30);
840
Marcin Slusarz4b111112008-02-08 04:20:36 -0800841 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700842 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800843 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700844 laarr[curr + 2] = laarr[curr + 1];
845 laarr[curr + 1] = laarr[curr];
846 } else {
847 laarr[curr + 3] = laarr[curr + 1];
848 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851 if (offset) {
852 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800853 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200854 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800855 0, offset);
856 laarr[curr].extLength =
857 EXT_NOT_RECORDED_NOT_ALLOCATED |
858 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800860 laarr[curr].extLocation.
861 partitionReferenceNum = 0;
862 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800864 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700865 curr++;
866 (*c)++;
867 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 laarr[curr].extLocation.logicalBlockNum = newblocknum;
871 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
872 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800873 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800875 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700876 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700878 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800880 laarr[curr].extLocation.logicalBlockNum +=
881 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700882 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800883 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700884 curr++;
885 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 }
888}
889
890static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200891 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700892 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 int start, length = 0, currlength = 0, i;
895
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700896 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (!lastblock)
898 return;
899 else
900 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700901 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800902 if ((laarr[c + 1].extLength >> 30) ==
903 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700904 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800905 length = currlength =
906 (((laarr[c + 1].extLength &
907 UDF_EXTENT_LENGTH_MASK) +
908 inode->i_sb->s_blocksize - 1) >>
909 inode->i_sb->s_blocksize_bits);
910 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 start = c;
912 }
913
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700914 for (i = start + 1; i <= *endnum; i++) {
915 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (lastblock)
917 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800918 } else if ((laarr[i].extLength >> 30) ==
919 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
920 length += (((laarr[i].extLength &
921 UDF_EXTENT_LENGTH_MASK) +
922 inode->i_sb->s_blocksize - 1) >>
923 inode->i_sb->s_blocksize_bits);
924 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 break;
926 }
927
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700928 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700930 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800931 inode->i_sb->s_blocksize - 1) >>
932 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800934 laarr[start].extLocation.partitionReferenceNum,
935 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
936 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
937 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700938 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800939 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800941 (numalloc <<
942 inode->i_sb->s_blocksize_bits);
943 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700944 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200945 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700946 (*endnum)++;
947 laarr[c + 1].extLocation.logicalBlockNum = next;
948 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -0800949 laarr[c].extLocation.
950 partitionReferenceNum;
951 laarr[c + 1].extLength =
952 EXT_NOT_RECORDED_ALLOCATED |
953 (numalloc <<
954 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700955 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700958 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800959 int elen = ((laarr[i].extLength &
960 UDF_EXTENT_LENGTH_MASK) +
961 inode->i_sb->s_blocksize - 1) >>
962 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700964 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800966 (numalloc <<
967 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700969 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700971 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800972 memmove(&laarr[i],
973 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200974 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -0800975 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700976 i--;
977 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800980 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -0800981 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984}
985
986static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200987 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800991 unsigned long blocksize = inode->i_sb->s_blocksize;
992 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700994 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200995 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
996 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Marcin Slusarz4b111112008-02-08 04:20:36 -0800998 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
999 (((li->extLength >> 30) ==
1000 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
1001 ((lip1->extLocation.logicalBlockNum -
1002 li->extLocation.logicalBlockNum) ==
1003 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1004 blocksize - 1) >> blocksize_bits)))) {
1005
1006 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1007 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1008 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1009 lip1->extLength = (lip1->extLength -
1010 (li->extLength &
1011 UDF_EXTENT_LENGTH_MASK) +
1012 UDF_EXTENT_LENGTH_MASK) &
1013 ~(blocksize - 1);
1014 li->extLength = (li->extLength &
1015 UDF_EXTENT_FLAG_MASK) +
1016 (UDF_EXTENT_LENGTH_MASK + 1) -
1017 blocksize;
1018 lip1->extLocation.logicalBlockNum =
1019 li->extLocation.logicalBlockNum +
1020 ((li->extLength &
1021 UDF_EXTENT_LENGTH_MASK) >>
1022 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001023 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001024 li->extLength = lip1->extLength +
1025 (((li->extLength &
1026 UDF_EXTENT_LENGTH_MASK) +
1027 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001028 if (*endnum > (i + 2))
1029 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001030 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001031 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001032 i--;
1033 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001035 } else if (((li->extLength >> 30) ==
1036 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
1037 ((lip1->extLength >> 30) ==
1038 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001039 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001040 ((li->extLength &
1041 UDF_EXTENT_LENGTH_MASK) +
1042 blocksize - 1) >> blocksize_bits);
1043 li->extLocation.logicalBlockNum = 0;
1044 li->extLocation.partitionReferenceNum = 0;
1045
1046 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1047 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1048 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1049 lip1->extLength = (lip1->extLength -
1050 (li->extLength &
1051 UDF_EXTENT_LENGTH_MASK) +
1052 UDF_EXTENT_LENGTH_MASK) &
1053 ~(blocksize - 1);
1054 li->extLength = (li->extLength &
1055 UDF_EXTENT_FLAG_MASK) +
1056 (UDF_EXTENT_LENGTH_MASK + 1) -
1057 blocksize;
1058 } else {
1059 li->extLength = lip1->extLength +
1060 (((li->extLength &
1061 UDF_EXTENT_LENGTH_MASK) +
1062 blocksize - 1) & ~(blocksize - 1));
1063 if (*endnum > (i + 2))
1064 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001065 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001066 (*endnum - (i + 2)));
1067 i--;
1068 (*endnum)--;
1069 }
1070 } else if ((li->extLength >> 30) ==
1071 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1072 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001073 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001074 ((li->extLength &
1075 UDF_EXTENT_LENGTH_MASK) +
1076 blocksize - 1) >> blocksize_bits);
1077 li->extLocation.logicalBlockNum = 0;
1078 li->extLocation.partitionReferenceNum = 0;
1079 li->extLength = (li->extLength &
1080 UDF_EXTENT_LENGTH_MASK) |
1081 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 }
1084}
1085
1086static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001087 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001088 int startnum, int endnum,
1089 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001092 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 uint32_t tmplen;
1094
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001095 if (startnum > endnum) {
1096 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001097 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001098 laarr[i].extLength);
1099 } else if (startnum < endnum) {
1100 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001101 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001102 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001103 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001104 &laarr[i].extLength, 1);
1105 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107 }
1108
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001109 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001110 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001111 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001112 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114}
1115
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001116struct buffer_head *udf_bread(struct inode *inode, int block,
1117 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001119 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 bh = udf_getblk(inode, block, create, err);
1122 if (!bh)
1123 return NULL;
1124
1125 if (buffer_uptodate(bh))
1126 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 wait_on_buffer(bh);
1131 if (buffer_uptodate(bh))
1132 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 brelse(bh);
1135 *err = -EIO;
1136 return NULL;
1137}
1138
Jan Kara7e49b6f2010-10-22 00:30:26 +02001139int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001142 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +02001143 int bsize = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001146 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001147 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001149 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001151 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001152 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001153 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001154 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1155 if (bsize <
1156 (udf_file_entry_alloc_offset(inode) + newsize)) {
1157 err = udf_expand_file_adinicb(inode);
Jan Karad2eb8c32011-12-10 02:30:48 +01001158 if (err)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001159 return err;
Jan Karad2eb8c32011-12-10 02:30:48 +01001160 down_write(&iinfo->i_data_sem);
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001161 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001162 iinfo->i_lenAlloc = newsize;
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001163 goto set_size;
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001166 err = udf_extend_file(inode, newsize);
1167 if (err) {
1168 up_write(&iinfo->i_data_sem);
1169 return err;
1170 }
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001171set_size:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001172 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001173 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001174 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001175 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1176 down_write(&iinfo->i_data_sem);
1177 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1178 0x00, bsize - newsize -
1179 udf_file_entry_alloc_offset(inode));
1180 iinfo->i_lenAlloc = newsize;
1181 truncate_setsize(inode, newsize);
1182 up_write(&iinfo->i_data_sem);
1183 goto update_time;
1184 }
1185 err = block_truncate_page(inode->i_mapping, newsize,
1186 udf_get_block);
1187 if (err)
1188 return err;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001189 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001190 truncate_setsize(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001192 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001193 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001194update_time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1196 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001197 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 else
1199 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001203static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 struct buffer_head *bh = NULL;
1206 struct fileEntry *fe;
1207 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001208 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 /*
1211 * Set defaults, but the inode is still incomplete!
1212 * Note: get_new_inode() sets the following on a new inode:
1213 * i_sb = sb
1214 * i_no = ino
1215 * i_flags = sb->s_flags
1216 * i_state = 0
1217 * clean_inode(): zero fills and sets
1218 * i_count = 1
1219 * i_nlink = 1
1220 * i_op = NULL;
1221 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001222 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001223 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001224 udf_err(inode->i_sb, "(ino %ld) failed !bh\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 make_bad_inode(inode);
1226 return;
1227 }
1228
1229 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001230 ident != TAG_IDENT_USE) {
Joe Perches78ace702011-10-10 01:08:05 -07001231 udf_err(inode->i_sb, "(ino %ld) failed ident=%d\n",
1232 inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001233 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 make_bad_inode(inode);
1235 return;
1236 }
1237
1238 fe = (struct fileEntry *)bh->b_data;
1239
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001240 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001241 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Pekka Enberg97e961f2008-10-15 12:29:03 +02001243 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001244 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001245 if (ident == TAG_IDENT_IE && ibh) {
1246 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001247 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001248 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001249
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001250 ie = (struct indirectEntry *)ibh->b_data;
1251 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001252
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001253 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001254 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001255 &ident))) {
1256 if (ident == TAG_IDENT_FE ||
1257 ident == TAG_IDENT_EFE) {
1258 memcpy(&iinfo->i_location,
1259 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001260 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001261 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001262 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001263 brelse(nbh);
1264 __udf_read_inode(inode);
1265 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001266 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001267 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001269 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001270 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001271 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Joe Perches78ace702011-10-10 01:08:05 -07001272 udf_err(inode->i_sb, "unsupported strategy type: %d\n",
1273 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001274 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 make_bad_inode(inode);
1276 return;
1277 }
1278 udf_fill_inode(inode, bh);
Jan Kara31170b62007-05-08 00:35:21 -07001279
Jan Kara3bf25cb2007-05-08 00:35:16 -07001280 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
1284{
1285 struct fileEntry *fe;
1286 struct extendedFileEntry *efe;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001287 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001288 struct udf_inode_info *iinfo = UDF_I(inode);
Miklos Szeredibfe86842011-10-28 14:13:29 +02001289 unsigned int link_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 fe = (struct fileEntry *)bh->b_data;
1292 efe = (struct extendedFileEntry *)bh->b_data;
1293
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001294 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001295 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001296 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001297 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001299 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001300 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001301 iinfo->i_unique = 0;
1302 iinfo->i_lenEAttr = 0;
1303 iinfo->i_lenExtents = 0;
1304 iinfo->i_lenAlloc = 0;
1305 iinfo->i_next_alloc_block = 0;
1306 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001307 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001308 iinfo->i_efe = 1;
1309 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001310 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1311 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001312 make_bad_inode(inode);
1313 return;
1314 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001315 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001316 bh->b_data + sizeof(struct extendedFileEntry),
1317 inode->i_sb->s_blocksize -
1318 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001319 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001320 iinfo->i_efe = 0;
1321 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001322 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1323 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001324 make_bad_inode(inode);
1325 return;
1326 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001327 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001328 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001329 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001330 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001331 iinfo->i_efe = 0;
1332 iinfo->i_use = 1;
1333 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001334 ((struct unallocSpaceEntry *)bh->b_data)->
1335 lengthAllocDescs);
1336 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1337 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001338 make_bad_inode(inode);
1339 return;
1340 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001341 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001342 bh->b_data + sizeof(struct unallocSpaceEntry),
1343 inode->i_sb->s_blocksize -
1344 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return;
1346 }
1347
Jan Karac03cad22010-10-20 22:17:28 +02001348 read_lock(&sbi->s_cred_lock);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001349 i_uid_write(inode, le32_to_cpu(fe->uid));
1350 if (!uid_valid(inode->i_uid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001351 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1352 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001353 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001355 i_gid_write(inode, le32_to_cpu(fe->gid));
1356 if (!gid_valid(inode->i_gid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001357 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1358 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001359 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001361 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001362 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001363 inode->i_mode = sbi->s_fmode;
1364 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001365 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001366 inode->i_mode = sbi->s_dmode;
1367 else
1368 inode->i_mode = udf_convert_permissions(fe);
1369 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001370 read_unlock(&sbi->s_cred_lock);
1371
Miklos Szeredibfe86842011-10-28 14:13:29 +02001372 link_count = le16_to_cpu(fe->fileLinkCount);
1373 if (!link_count)
1374 link_count = 1;
1375 set_nlink(inode, link_count);
Jan Karac03cad22010-10-20 22:17:28 +02001376
1377 inode->i_size = le64_to_cpu(fe->informationLength);
1378 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001380 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001382 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Marcin Slusarz56774802008-02-10 11:25:31 +01001384 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001385 inode->i_atime = sbi->s_record_time;
1386
Marcin Slusarz56774802008-02-10 11:25:31 +01001387 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1388 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001389 inode->i_mtime = sbi->s_record_time;
1390
Marcin Slusarz56774802008-02-10 11:25:31 +01001391 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001392 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001394 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1395 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1396 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001397 iinfo->i_checkpoint = le32_to_cpu(fe->checkpoint);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001398 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001399 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001400 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Marcin Slusarz56774802008-02-10 11:25:31 +01001402 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001403 inode->i_atime = sbi->s_record_time;
1404
Marcin Slusarz56774802008-02-10 11:25:31 +01001405 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1406 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001407 inode->i_mtime = sbi->s_record_time;
1408
Marcin Slusarz56774802008-02-10 11:25:31 +01001409 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001410 iinfo->i_crtime = sbi->s_record_time;
1411
Marcin Slusarz56774802008-02-10 11:25:31 +01001412 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001413 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001415 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1416 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1417 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001418 iinfo->i_checkpoint = le32_to_cpu(efe->checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001421 switch (fe->icbTag.fileType) {
1422 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001423 inode->i_op = &udf_dir_inode_operations;
1424 inode->i_fop = &udf_dir_operations;
1425 inode->i_mode |= S_IFDIR;
1426 inc_nlink(inode);
1427 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001428 case ICBTAG_FILE_TYPE_REALTIME:
1429 case ICBTAG_FILE_TYPE_REGULAR:
1430 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001431 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001432 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001433 inode->i_data.a_ops = &udf_adinicb_aops;
1434 else
1435 inode->i_data.a_ops = &udf_aops;
1436 inode->i_op = &udf_file_inode_operations;
1437 inode->i_fop = &udf_file_operations;
1438 inode->i_mode |= S_IFREG;
1439 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001440 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001441 inode->i_mode |= S_IFBLK;
1442 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001443 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001444 inode->i_mode |= S_IFCHR;
1445 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001446 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001447 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1448 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001449 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001450 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1451 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001452 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001453 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001454 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001455 inode->i_mode = S_IFLNK | S_IRWXUGO;
1456 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001457 case ICBTAG_FILE_TYPE_MAIN:
1458 udf_debug("METADATA FILE-----\n");
1459 break;
1460 case ICBTAG_FILE_TYPE_MIRROR:
1461 udf_debug("METADATA MIRROR FILE-----\n");
1462 break;
1463 case ICBTAG_FILE_TYPE_BITMAP:
1464 udf_debug("METADATA BITMAP FILE-----\n");
1465 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001466 default:
Joe Perches78ace702011-10-10 01:08:05 -07001467 udf_err(inode->i_sb, "(ino %ld) failed unknown file type=%d\n",
1468 inode->i_ino, fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001469 make_bad_inode(inode);
1470 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001472 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001473 struct deviceSpec *dsea =
1474 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001475 if (dsea) {
1476 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001477 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1478 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001480 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483}
1484
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001485static int udf_alloc_i_data(struct inode *inode, size_t size)
1486{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001487 struct udf_inode_info *iinfo = UDF_I(inode);
1488 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001489
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001490 if (!iinfo->i_ext.i_data) {
Joe Perches78ace702011-10-10 01:08:05 -07001491 udf_err(inode->i_sb, "(ino %ld) no free memory\n",
1492 inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001493 return -ENOMEM;
1494 }
1495
1496 return 0;
1497}
1498
Al Virofaa17292011-07-26 03:18:29 -04001499static umode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Al Virofaa17292011-07-26 03:18:29 -04001501 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 uint32_t permissions;
1503 uint32_t flags;
1504
1505 permissions = le32_to_cpu(fe->permissions);
1506 flags = le16_to_cpu(fe->icbTag.flags);
1507
Marcin Slusarz4b111112008-02-08 04:20:36 -08001508 mode = ((permissions) & S_IRWXO) |
1509 ((permissions >> 2) & S_IRWXG) |
1510 ((permissions >> 4) & S_IRWXU) |
1511 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1512 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1513 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 return mode;
1516}
1517
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001518int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Jan Kara49521de2010-10-20 17:42:44 +02001520 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Jan Kara49521de2010-10-20 17:42:44 +02001523static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 return udf_update_inode(inode, 1);
1526}
1527
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001528static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 struct buffer_head *bh = NULL;
1531 struct fileEntry *fe;
1532 struct extendedFileEntry *efe;
Steve Nickelb2527bf2012-02-16 12:53:53 -05001533 uint64_t lb_recorded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 uint32_t udfperms;
1535 uint16_t icbflags;
1536 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001538 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001539 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001540 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Jan Kara5833ded2010-01-08 16:52:59 +01001542 bh = udf_tgetblk(inode->i_sb,
1543 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001544 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001545 udf_debug("getblk failure\n");
1546 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
1548
Jan Karaaae917c2010-01-08 16:46:29 +01001549 lock_buffer(bh);
1550 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 fe = (struct fileEntry *)bh->b_data;
1552 efe = (struct extendedFileEntry *)bh->b_data;
1553
Jan Karaaae917c2010-01-08 16:46:29 +01001554 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001556 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001558 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001559 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001560 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001561 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001562 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1563 use->descTag.tagLocation =
1564 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001565 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001566 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001568 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001569 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001570 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001571 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Jan Karaaae917c2010-01-08 16:46:29 +01001573 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
Phillip Susi4d6660e2006-03-07 21:55:24 -08001576 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1577 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001578 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001579 fe->uid = cpu_to_le32(i_uid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Phillip Susi4d6660e2006-03-07 21:55:24 -08001581 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1582 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001583 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001584 fe->gid = cpu_to_le32(i_gid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Marcin Slusarz4b111112008-02-08 04:20:36 -08001586 udfperms = ((inode->i_mode & S_IRWXO)) |
1587 ((inode->i_mode & S_IRWXG) << 2) |
1588 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Marcin Slusarz4b111112008-02-08 04:20:36 -08001590 udfperms |= (le32_to_cpu(fe->permissions) &
1591 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1592 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1593 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 fe->permissions = cpu_to_le32(udfperms);
1595
1596 if (S_ISDIR(inode->i_mode))
1597 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1598 else
1599 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1600
1601 fe->informationLength = cpu_to_le64(inode->i_size);
1602
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001603 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001604 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001605 struct deviceSpec *dsea =
1606 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001607 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001609 udf_add_extendedattr(inode,
1610 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001611 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 dsea->attrType = cpu_to_le32(12);
1613 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001614 dsea->attrLength = cpu_to_le32(
1615 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001616 sizeof(struct regid));
1617 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001619 eid = (struct regid *)dsea->impUse;
1620 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 strcpy(eid->ident, UDF_ID_DEVELOPER);
1622 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1623 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1624 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1625 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1626 }
1627
Steve Nickelb2527bf2012-02-16 12:53:53 -05001628 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1629 lb_recorded = 0; /* No extents => no blocks! */
1630 else
1631 lb_recorded =
1632 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1633 (blocksize_bits - 9);
1634
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001635 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001636 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001637 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001638 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Steve Nickelb2527bf2012-02-16 12:53:53 -05001639 fe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Marcin Slusarz56774802008-02-10 11:25:31 +01001641 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1642 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1643 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001644 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1646 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1647 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001648 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1649 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1650 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001651 fe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1653 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001654 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001655 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001656 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001657 inode->i_sb->s_blocksize -
1658 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 efe->objectSize = cpu_to_le64(inode->i_size);
Steve Nickelb2527bf2012-02-16 12:53:53 -05001660 efe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001662 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1663 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1664 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1665 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001666
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001667 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1668 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1669 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1670 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001671
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001672 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1673 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1674 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1675 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Marcin Slusarz56774802008-02-10 11:25:31 +01001677 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1678 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1679 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1680 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001682 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1684 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1685 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001686 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1687 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1688 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001689 efe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1691 crclen = sizeof(struct extendedFileEntry);
1692 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001693 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 fe->icbTag.strategyType = cpu_to_le16(4096);
1695 fe->icbTag.strategyParameter = cpu_to_le16(1);
1696 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001697 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 fe->icbTag.strategyType = cpu_to_le16(4);
1699 fe->icbTag.numEntries = cpu_to_le16(1);
1700 }
1701
1702 if (S_ISDIR(inode->i_mode))
1703 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1704 else if (S_ISREG(inode->i_mode))
1705 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1706 else if (S_ISLNK(inode->i_mode))
1707 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1708 else if (S_ISBLK(inode->i_mode))
1709 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1710 else if (S_ISCHR(inode->i_mode))
1711 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1712 else if (S_ISFIFO(inode->i_mode))
1713 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1714 else if (S_ISSOCK(inode->i_mode))
1715 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1716
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001717 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001718 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1719 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1720 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1721 (le16_to_cpu(fe->icbTag.flags) &
1722 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1723 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001726 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 fe->descTag.descVersion = cpu_to_le16(3);
1728 else
1729 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001730 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001731 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001732 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001733 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001735 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001736 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001737 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Jan Karaaae917c2010-01-08 16:46:29 +01001739out:
Jan Kara5833ded2010-01-08 16:52:59 +01001740 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001741 unlock_buffer(bh);
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 /* write the data blocks */
1744 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001745 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001747 if (buffer_write_io_error(bh)) {
Joe Perches78ace702011-10-10 01:08:05 -07001748 udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n",
1749 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 err = -EIO;
1751 }
1752 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001753 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return err;
1756}
1757
Pekka Enberg97e961f2008-10-15 12:29:03 +02001758struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1761 struct inode *inode = iget_locked(sb, block);
1762
1763 if (!inode)
1764 return NULL;
1765
1766 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001767 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 __udf_read_inode(inode);
1769 unlock_new_inode(inode);
1770 }
1771
1772 if (is_bad_inode(inode))
1773 goto out_iput;
1774
Pekka Enberg97e961f2008-10-15 12:29:03 +02001775 if (ino->logicalBlockNum >= UDF_SB(sb)->
1776 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001778 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 make_bad_inode(inode);
1780 goto out_iput;
1781 }
1782
1783 return inode;
1784
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001785 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 iput(inode);
1787 return NULL;
1788}
1789
Jan Kara7e49b6f2010-10-22 00:30:26 +02001790int udf_add_aext(struct inode *inode, struct extent_position *epos,
1791 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
1793 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001794 struct short_ad *sad = NULL;
1795 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct allocExtDesc *aed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001798 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Jan Karaff116fc2007-05-08 00:35:14 -07001800 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001801 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001802 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001803 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 else
Jan Karaff116fc2007-05-08 00:35:14 -07001805 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001807 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001808 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001809 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001810 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001812 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001814 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001815 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 struct buffer_head *nbh;
1817 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001818 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Marcin Slusarz4b111112008-02-08 04:20:36 -08001820 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1821 obloc.partitionReferenceNum,
1822 obloc.logicalBlockNum, &err);
1823 if (!epos->block.logicalBlockNum)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001824 return -ENOSPC;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001825 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001826 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001827 0));
1828 if (!nbh)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001829 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 lock_buffer(nbh);
1831 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1832 set_buffer_uptodate(nbh);
1833 unlock_buffer(nbh);
1834 mark_buffer_dirty_inode(nbh, inode);
1835
1836 aed = (struct allocExtDesc *)(nbh->b_data);
1837 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001838 aed->previousAllocExtLocation =
1839 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001840 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001841 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 aed->lengthAllocDescs = cpu_to_le32(adsize);
1843 sptr = ptr - adsize;
1844 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1845 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001846 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001847 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001848 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 aed->lengthAllocDescs = cpu_to_le32(0);
1850 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001851 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001853 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001854 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001855 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001856 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001857 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 mark_inode_dirty(inode);
1859 }
1860 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001861 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001863 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 else
1865 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001866 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001867 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001868 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001869 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001870 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1871 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001872 sad->extPosition =
1873 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001874 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001875 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001876 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001877 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1878 inode->i_sb->s_blocksize);
1879 lad->extLocation = cpu_to_lelb(epos->block);
1880 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1881 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001883 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001884 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001885 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001886 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001888 udf_update_tag(epos->bh->b_data,
1889 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001890 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001891 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001892 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001894 }
Jan Karaff116fc2007-05-08 00:35:14 -07001895 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
Jan Kara7e49b6f2010-10-22 00:30:26 +02001898 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001900 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001901 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001903 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001904 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001905 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001906 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1907 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1908 udf_update_tag(epos->bh->b_data,
1909 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001911 udf_update_tag(epos->bh->b_data,
1912 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001913 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
Jan Kara7e49b6f2010-10-22 00:30:26 +02001916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
Jan Kara7e49b6f2010-10-22 00:30:26 +02001919void udf_write_aext(struct inode *inode, struct extent_position *epos,
1920 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
1922 int adsize;
1923 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001924 struct short_ad *sad;
1925 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001926 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Jan Karaff116fc2007-05-08 00:35:14 -07001928 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001929 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001930 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001931 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 else
Jan Karaff116fc2007-05-08 00:35:14 -07001933 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001935 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001936 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001937 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001938 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001939 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001940 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001941 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001942 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001943 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001944 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001945 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001946 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001947 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001948 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001949 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001950 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001953 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001954 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001955 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001956 struct allocExtDesc *aed =
1957 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07001958 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001959 le32_to_cpu(aed->lengthAllocDescs) +
1960 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
Jan Karaff116fc2007-05-08 00:35:14 -07001962 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001963 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07001968 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Marcin Slusarz4b111112008-02-08 04:20:36 -08001971int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001972 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 int8_t etype;
1975
Jan Karaff116fc2007-05-08 00:35:14 -07001976 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001977 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001978 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07001979 epos->block = *eloc;
1980 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001981 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001982 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001983 epos->bh = udf_tread(inode->i_sb, block);
1984 if (!epos->bh) {
1985 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return -1;
1987 }
1988 }
1989
1990 return etype;
1991}
1992
Marcin Slusarz4b111112008-02-08 04:20:36 -08001993int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001994 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 int alen;
1997 int8_t etype;
1998 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001999 struct short_ad *sad;
2000 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002001 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002002
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002003 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002004 if (!epos->offset)
2005 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002006 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08002007 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002008 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002009 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002010 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002011 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002012 if (!epos->offset)
2013 epos->offset = sizeof(struct allocExtDesc);
2014 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002015 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
2017 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002020 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002021 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002022 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
2023 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002025 etype = le32_to_cpu(sad->extLength) >> 30;
2026 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002027 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002028 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002029 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
2030 break;
2031 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002032 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
2033 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002034 return -1;
2035 etype = le32_to_cpu(lad->extLength) >> 30;
2036 *eloc = lelb_to_cpu(lad->extLocation);
2037 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
2038 break;
2039 default:
Joe Perchesa983f362011-10-10 01:08:07 -07002040 udf_debug("alloc_type = %d unsupported\n", iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002041 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 return etype;
2045}
2046
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002047static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002048 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002050 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 uint32_t oelen;
2052 int8_t etype;
2053
Jan Karaff116fc2007-05-08 00:35:14 -07002054 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07002055 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002057 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002058 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 neloc = oeloc;
2060 nelen = (etype << 30) | oelen;
2061 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02002062 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002063 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return (nelen >> 30);
2066}
2067
Marcin Slusarz4b111112008-02-08 04:20:36 -08002068int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002069 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Jan Karaff116fc2007-05-08 00:35:14 -07002071 struct extent_position oepos;
2072 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 int8_t etype;
2074 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002075 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002077 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002078 get_bh(epos.bh);
2079 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002082 iinfo = UDF_I(inode);
2083 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002084 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002085 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002086 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 else
2088 adsize = 0;
2089
Jan Karaff116fc2007-05-08 00:35:14 -07002090 oepos = epos;
2091 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return -1;
2093
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002094 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002095 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002096 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002097 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07002098 brelse(oepos.bh);
2099 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07002100 oepos.bh = epos.bh;
2101 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
2103 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002104 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 elen = 0;
2106
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002107 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002108 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
2109 udf_write_aext(inode, &oepos, &eloc, elen, 1);
2110 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002111 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002112 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002114 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002115 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002116 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002117 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002118 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002119 udf_update_tag(oepos.bh->b_data,
2120 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002122 udf_update_tag(oepos.bh->b_data,
2123 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002124 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002126 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002127 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002128 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002129 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002131 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002132 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002133 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002134 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002135 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002136 udf_update_tag(oepos.bh->b_data,
2137 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002139 udf_update_tag(oepos.bh->b_data,
2140 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002141 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002144
Jan Kara3bf25cb2007-05-08 00:35:16 -07002145 brelse(epos.bh);
2146 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return (elen >> 30);
2149}
2150
Marcin Slusarz4b111112008-02-08 04:20:36 -08002151int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002152 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002153 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002155 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002156 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002157 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002159 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002161 iinfo = UDF_I(inode);
Jan Karaff116fc2007-05-08 00:35:14 -07002162 pos->offset = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002163 pos->block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002164 pos->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 *elen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002167 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002168 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2169 if (etype == -1) {
2170 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002171 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 return -1;
2173 }
2174 lbcount += *elen;
2175 } while (lbcount <= bcount);
2176
Marcin Slusarz4b111112008-02-08 04:20:36 -08002177 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 return etype;
2180}
2181
Jan Kara60448b12007-05-08 00:35:13 -07002182long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002184 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002185 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002186 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002187 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 int ret;
2189
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002190 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Marcin Slusarz4b111112008-02-08 04:20:36 -08002192 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2193 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002194 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 else
2196 ret = 0;
2197
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002198 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002199 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2202 return udf_fixed_to_variable(ret);
2203 else
2204 return ret;
2205}