blob: 68cc7b144c260b432db070f324ab4443f143266d [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>
Kent Overstreeta27bb332013-05-07 16:19:08 -070041#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "udf_i.h"
44#include "udf_sb.h"
45
46MODULE_AUTHOR("Ben Fennema");
47MODULE_DESCRIPTION("Universal Disk Format Filesystem");
48MODULE_LICENSE("GPL");
49
50#define EXTENT_MERGE_SIZE 5
51
Al Virofaa17292011-07-26 03:18:29 -040052static umode_t udf_convert_permissions(struct fileEntry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static int udf_update_inode(struct inode *, int);
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
Namjae Jeon99600052013-01-19 11:17:14 +090070static void __udf_clear_extent_cache(struct inode *inode)
71{
72 struct udf_inode_info *iinfo = UDF_I(inode);
73
74 if (iinfo->cached_extent.lstart != -1) {
75 brelse(iinfo->cached_extent.epos.bh);
76 iinfo->cached_extent.lstart = -1;
77 }
78}
79
80/* Invalidate extent cache */
81static void udf_clear_extent_cache(struct inode *inode)
82{
83 struct udf_inode_info *iinfo = UDF_I(inode);
84
85 spin_lock(&iinfo->i_extent_cache_lock);
86 __udf_clear_extent_cache(inode);
87 spin_unlock(&iinfo->i_extent_cache_lock);
88}
89
90/* Return contents of extent cache */
91static int udf_read_extent_cache(struct inode *inode, loff_t bcount,
92 loff_t *lbcount, struct extent_position *pos)
93{
94 struct udf_inode_info *iinfo = UDF_I(inode);
95 int ret = 0;
96
97 spin_lock(&iinfo->i_extent_cache_lock);
98 if ((iinfo->cached_extent.lstart <= bcount) &&
99 (iinfo->cached_extent.lstart != -1)) {
100 /* Cache hit */
101 *lbcount = iinfo->cached_extent.lstart;
102 memcpy(pos, &iinfo->cached_extent.epos,
103 sizeof(struct extent_position));
104 if (pos->bh)
105 get_bh(pos->bh);
106 ret = 1;
107 }
108 spin_unlock(&iinfo->i_extent_cache_lock);
109 return ret;
110}
111
112/* Add extent to extent cache */
113static void udf_update_extent_cache(struct inode *inode, loff_t estart,
114 struct extent_position *pos, int next_epos)
115{
116 struct udf_inode_info *iinfo = UDF_I(inode);
117
118 spin_lock(&iinfo->i_extent_cache_lock);
119 /* Invalidate previously cached extent */
120 __udf_clear_extent_cache(inode);
121 if (pos->bh)
122 get_bh(pos->bh);
123 memcpy(&iinfo->cached_extent.epos, pos,
124 sizeof(struct extent_position));
125 iinfo->cached_extent.lstart = estart;
126 if (next_epos)
127 switch (iinfo->i_alloc_type) {
128 case ICBTAG_FLAG_AD_SHORT:
129 iinfo->cached_extent.epos.offset -=
130 sizeof(struct short_ad);
131 break;
132 case ICBTAG_FLAG_AD_LONG:
133 iinfo->cached_extent.epos.offset -=
134 sizeof(struct long_ad);
135 }
136 spin_unlock(&iinfo->i_extent_cache_lock);
137}
Christoph Hellwigb1e32122008-02-22 12:38:48 +0100138
Al Viro3aac2b62010-06-07 00:43:39 -0400139void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Jan Kara2c948b32009-12-03 13:39:28 +0100141 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400142 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +0100143
Al Viro3aac2b62010-06-07 00:43:39 -0400144 if (!inode->i_nlink && !is_bad_inode(inode)) {
145 want_delete = 1;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200146 udf_setsize(inode, 0);
Al Viro3aac2b62010-06-07 00:43:39 -0400147 udf_update_inode(inode, IS_SYNC(inode));
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700148 }
149 truncate_inode_pages_final(&inode->i_data);
Al Viro3aac2b62010-06-07 00:43:39 -0400150 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200151 clear_inode(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100152 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
153 inode->i_size != iinfo->i_lenExtents) {
Joe Perches78ace702011-10-10 01:08:05 -0700154 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",
155 inode->i_ino, inode->i_mode,
156 (unsigned long long)inode->i_size,
157 (unsigned long long)iinfo->i_lenExtents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800159 kfree(iinfo->i_ext.i_data);
160 iinfo->i_ext.i_data = NULL;
Namjae Jeon99600052013-01-19 11:17:14 +0900161 udf_clear_extent_cache(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400162 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -0400163 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Ian Abbott5eec54f2012-09-05 17:44:31 +0100167static void udf_write_failed(struct address_space *mapping, loff_t to)
168{
169 struct inode *inode = mapping->host;
170 struct udf_inode_info *iinfo = UDF_I(inode);
171 loff_t isize = inode->i_size;
172
173 if (to > isize) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700174 truncate_pagecache(inode, isize);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100175 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
176 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +0900177 udf_clear_extent_cache(inode);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100178 udf_truncate_extents(inode);
179 up_write(&iinfo->i_data_sem);
180 }
181 }
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int udf_writepage(struct page *page, struct writeback_control *wbc)
185{
186 return block_write_full_page(page, udf_get_block, wbc);
187}
188
Namjae Jeon378b8e12012-08-31 12:49:07 -0400189static int udf_writepages(struct address_space *mapping,
190 struct writeback_control *wbc)
191{
192 return mpage_writepages(mapping, wbc, udf_get_block);
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int udf_readpage(struct file *file, struct page *page)
196{
Namjae Jeonbc112322011-10-03 14:02:59 +0900197 return mpage_readpage(page, udf_get_block);
198}
199
200static int udf_readpages(struct file *file, struct address_space *mapping,
201 struct list_head *pages, unsigned nr_pages)
202{
203 return mpage_readpages(mapping, pages, nr_pages, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Nick Pigginbe021ee2007-10-16 01:25:20 -0700206static int udf_write_begin(struct file *file, struct address_space *mapping,
207 loff_t pos, unsigned len, unsigned flags,
208 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200210 int ret;
211
212 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100213 if (unlikely(ret))
214 udf_write_failed(mapping, pos + len);
215 return ret;
216}
Jan Kara7e49b6f2010-10-22 00:30:26 +0200217
Ian Abbott5eec54f2012-09-05 17:44:31 +0100218static ssize_t udf_direct_IO(int rw, struct kiocb *iocb,
Al Virod8d3d942014-03-04 21:27:34 -0500219 struct iov_iter *iter,
220 loff_t offset)
Ian Abbott5eec54f2012-09-05 17:44:31 +0100221{
222 struct file *file = iocb->ki_filp;
223 struct address_space *mapping = file->f_mapping;
224 struct inode *inode = mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -0500225 size_t count = iov_iter_count(iter);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100226 ssize_t ret;
Christoph Hellwig155130a2010-06-04 11:29:58 +0200227
Al Viro31b14032014-03-05 01:33:16 -0500228 ret = blockdev_direct_IO(rw, iocb, inode, iter, offset, udf_get_block);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100229 if (unlikely(ret < 0 && (rw & WRITE)))
Al Viroa6cbcd42014-03-04 22:38:00 -0500230 udf_write_failed(mapping, offset + count);
Christoph Hellwig155130a2010-06-04 11:29:58 +0200231 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234static sector_t udf_bmap(struct address_space *mapping, sector_t block)
235{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700236 return generic_block_bmap(mapping, block, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700239const struct address_space_operations udf_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700240 .readpage = udf_readpage,
Namjae Jeonbc112322011-10-03 14:02:59 +0900241 .readpages = udf_readpages,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700242 .writepage = udf_writepage,
Namjae Jeon378b8e12012-08-31 12:49:07 -0400243 .writepages = udf_writepages,
Ian Abbott5eec54f2012-09-05 17:44:31 +0100244 .write_begin = udf_write_begin,
245 .write_end = generic_write_end,
246 .direct_IO = udf_direct_IO,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700247 .bmap = udf_bmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
Jan Karad2eb8c32011-12-10 02:30:48 +0100250/*
251 * Expand file stored in ICB to a normal one-block-file
252 *
253 * This function requires i_data_sem for writing and releases it.
254 * This function requires i_mutex held
255 */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200256int udf_expand_file_adinicb(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct page *page;
259 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800260 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200261 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct writeback_control udf_wbc = {
263 .sync_mode = WB_SYNC_NONE,
264 .nr_to_write = 1,
265 };
266
Jan Kara09ebb172014-02-18 12:00:21 +0100267 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800268 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800270 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800272 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200273 /* from now on we have normal address_space methods */
274 inode->i_data.a_ops = &udf_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100275 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100279 /*
280 * Release i_data_sem so that we can lock a page - page lock ranks
281 * above i_data_sem. i_mutex still protects us against file changes.
282 */
283 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Jan Kara7e49b6f2010-10-22 00:30:26 +0200285 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
286 if (!page)
287 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700288
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700289 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800291 memset(kaddr + iinfo->i_lenAlloc, 0x00,
292 PAGE_CACHE_SIZE - iinfo->i_lenAlloc);
293 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
294 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 flush_dcache_page(page);
296 SetPageUptodate(page);
297 kunmap(page);
298 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100299 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800300 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
301 iinfo->i_lenAlloc);
302 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800304 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800306 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200307 /* from now on we have normal address_space methods */
308 inode->i_data.a_ops = &udf_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100309 up_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200310 err = inode->i_data.a_ops->writepage(page, &udf_wbc);
311 if (err) {
312 /* Restore everything back so that we don't lose data... */
313 lock_page(page);
314 kaddr = kmap(page);
Jan Karad2eb8c32011-12-10 02:30:48 +0100315 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200316 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
317 inode->i_size);
318 kunmap(page);
319 unlock_page(page);
320 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
321 inode->i_data.a_ops = &udf_adinicb_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100322 up_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200326
327 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700330struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
331 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700334 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200335 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700337 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800340 loff_t f_pos = udf_ext0_offset(inode);
341 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800343 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
346 alloctype = ICBTAG_FLAG_AD_SHORT;
347 else
348 alloctype = ICBTAG_FLAG_AD_LONG;
349
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700350 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800351 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 mark_inode_dirty(inode);
353 return NULL;
354 }
355
356 /* alloc block, and copy data to it */
357 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800358 iinfo->i_location.partitionReferenceNum,
359 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!(*block))
361 return NULL;
362 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800363 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800364 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (!newblock)
366 return NULL;
367 dbh = udf_tgetblk(inode->i_sb, newblock);
368 if (!dbh)
369 return NULL;
370 lock_buffer(dbh);
371 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
372 set_buffer_uptodate(dbh);
373 unlock_buffer(dbh);
374 mark_buffer_dirty_inode(dbh, inode);
375
Marcin Slusarz4b111112008-02-08 04:20:36 -0800376 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800377 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700378 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 dfibh.soffset = dfibh.eoffset = 0;
380 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800381 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800382 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800383 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
384 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700385 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700386 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return NULL;
388 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800389 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 sfi->descTag.tagLocation = cpu_to_le32(*block);
391 dfibh.soffset = dfibh.eoffset;
392 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
393 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
394 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800395 sfi->fileIdent +
396 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800397 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700398 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return NULL;
400 }
401 }
402 mark_buffer_dirty_inode(dbh, inode);
403
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800404 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
405 iinfo->i_lenAlloc);
406 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800408 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800409 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100410 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700411 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800412 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700413 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100414 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* UniqueID stuff */
416
Jan Kara3bf25cb2007-05-08 00:35:16 -0700417 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 mark_inode_dirty(inode);
419 return dbh;
420}
421
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700422static int udf_get_block(struct inode *inode, sector_t block,
423 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 int err, new;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800426 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800427 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700429 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 phys = udf_block_map(inode, block);
431 if (phys)
432 map_bh(bh_result, inode->i_sb, phys);
433 return 0;
434 }
435
436 err = -EIO;
437 new = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800438 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100439
440 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800441 if (block == iinfo->i_next_alloc_block + 1) {
442 iinfo->i_next_alloc_block++;
443 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Namjae Jeon99600052013-01-19 11:17:14 +0900446 udf_clear_extent_cache(inode);
Jan Kara7b0b0932011-12-10 01:43:33 +0100447 phys = inode_getblk(inode, block, &err, &new);
448 if (!phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (new)
452 set_buffer_new(bh_result);
453 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700454
455abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100456 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700460static struct buffer_head *udf_getblk(struct inode *inode, long block,
461 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700463 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct buffer_head dummy;
465
466 dummy.b_state = 0;
467 dummy.b_blocknr = -1000;
468 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700469 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700471 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 lock_buffer(bh);
473 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
474 set_buffer_uptodate(bh);
475 unlock_buffer(bh);
476 mark_buffer_dirty_inode(bh, inode);
477 }
478 return bh;
479 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return NULL;
482}
483
Jan Kara31170b62007-05-08 00:35:21 -0700484/* Extend the file by 'blocks' blocks, return the number of extents added */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200485static int udf_do_extend_file(struct inode *inode,
486 struct extent_position *last_pos,
487 struct kernel_long_ad *last_ext,
488 sector_t blocks)
Jan Kara31170b62007-05-08 00:35:21 -0700489{
490 sector_t add;
491 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
492 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200493 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700494 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800495 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200496 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700497
498 /* The previous extent is fake and we should not extend by anything
499 * - there's nothing to do... */
500 if (!blocks && fake)
501 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700502
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800503 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700504 /* Round the last extent up to a multiple of block size */
505 if (last_ext->extLength & (sb->s_blocksize - 1)) {
506 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700507 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
508 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
509 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800510 iinfo->i_lenExtents =
511 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700512 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700513 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700514
Jan Kara31170b62007-05-08 00:35:21 -0700515 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800516 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
517 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700518 /* Save the extent so that we can reattach it to the end */
519 prealloc_loc = last_ext->extLocation;
520 prealloc_len = last_ext->extLength;
521 /* Mark the extent as a hole */
522 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700523 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700524 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800525 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700526 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700527
Jan Kara31170b62007-05-08 00:35:21 -0700528 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800529 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
530 EXT_NOT_RECORDED_NOT_ALLOCATED) {
531 add = ((1 << 30) - sb->s_blocksize -
532 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK)) >>
533 sb->s_blocksize_bits;
Jan Kara31170b62007-05-08 00:35:21 -0700534 if (add > blocks)
535 add = blocks;
536 blocks -= add;
537 last_ext->extLength += add << sb->s_blocksize_bits;
538 }
539
540 if (fake) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200541 udf_add_aext(inode, last_pos, &last_ext->extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700542 last_ext->extLength, 1);
Jan Kara31170b62007-05-08 00:35:21 -0700543 count++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800544 } else
Pekka Enberg97e961f2008-10-15 12:29:03 +0200545 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800546 last_ext->extLength, 1);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700547
Jan Kara31170b62007-05-08 00:35:21 -0700548 /* Managed to do everything necessary? */
549 if (!blocks)
550 goto out;
551
552 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
553 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800554 last_ext->extLocation.partitionReferenceNum = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700555 add = (1 << (30-sb->s_blocksize_bits)) - 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800556 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
557 (add << sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700558
Jan Kara31170b62007-05-08 00:35:21 -0700559 /* Create enough extents to cover the whole hole */
560 while (blocks > add) {
561 blocks -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200562 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
563 last_ext->extLength, 1);
564 if (err)
565 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700566 count++;
567 }
568 if (blocks) {
569 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700570 (blocks << sb->s_blocksize_bits);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200571 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
572 last_ext->extLength, 1);
573 if (err)
574 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700575 count++;
576 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700577
578out:
Jan Kara31170b62007-05-08 00:35:21 -0700579 /* Do we have some preallocated blocks saved? */
580 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200581 err = udf_add_aext(inode, last_pos, &prealloc_loc,
582 prealloc_len, 1);
583 if (err)
584 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700585 last_ext->extLocation = prealloc_loc;
586 last_ext->extLength = prealloc_len;
587 count++;
588 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700589
Jan Kara31170b62007-05-08 00:35:21 -0700590 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800591 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200592 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800593 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200594 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700595 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200596 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700597
Jan Kara31170b62007-05-08 00:35:21 -0700598 return count;
599}
600
Jan Kara7e49b6f2010-10-22 00:30:26 +0200601static int udf_extend_file(struct inode *inode, loff_t newsize)
602{
603
604 struct extent_position epos;
605 struct kernel_lb_addr eloc;
606 uint32_t elen;
607 int8_t etype;
608 struct super_block *sb = inode->i_sb;
609 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
610 int adsize;
611 struct udf_inode_info *iinfo = UDF_I(inode);
612 struct kernel_long_ad extent;
613 int err;
614
615 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
616 adsize = sizeof(struct short_ad);
617 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
618 adsize = sizeof(struct long_ad);
619 else
620 BUG();
621
622 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
623
624 /* File has extent covering the new size (could happen when extending
625 * inside a block)? */
626 if (etype != -1)
627 return 0;
628 if (newsize & (sb->s_blocksize - 1))
629 offset++;
630 /* Extended file just to the boundary of the last file block? */
631 if (offset == 0)
632 return 0;
633
634 /* Truncate is extending the file by 'offset' blocks */
635 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
636 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
637 /* File has no extents at all or has empty last
638 * indirect extent! Create a fake extent... */
639 extent.extLocation.logicalBlockNum = 0;
640 extent.extLocation.partitionReferenceNum = 0;
641 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
642 } else {
643 epos.offset -= adsize;
644 etype = udf_next_aext(inode, &epos, &extent.extLocation,
645 &extent.extLength, 0);
646 extent.extLength |= etype << 30;
647 }
648 err = udf_do_extend_file(inode, &epos, &extent, offset);
649 if (err < 0)
650 goto out;
651 err = 0;
652 iinfo->i_lenExtents = newsize;
653out:
654 brelse(epos.bh);
655 return err;
656}
657
Jan Kara7b0b0932011-12-10 01:43:33 +0100658static sector_t inode_getblk(struct inode *inode, sector_t block,
659 int *err, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200661 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700662 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700664 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200665 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700667 loff_t lbcount = 0, b_off = 0;
668 uint32_t newblocknum, newblock;
669 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800671 struct udf_inode_info *iinfo = UDF_I(inode);
672 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700673 int lastblock = 0;
Namjae Jeonfb719c52012-10-10 00:09:12 +0900674 bool isBeyondEOF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Jan Kara7b0b0932011-12-10 01:43:33 +0100676 *err = 0;
677 *new = 0;
Jan Karaff116fc2007-05-08 00:35:14 -0700678 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800679 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700680 prev_epos.bh = NULL;
681 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700682 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700685 alternate between laarr[0] and laarr[1] for locations of the
686 current extent, and the previous extent */
687 do {
688 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700689 brelse(prev_epos.bh);
690 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700691 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700693 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700694 brelse(cur_epos.bh);
695 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700696 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
699 lbcount += elen;
700
Jan Karaff116fc2007-05-08 00:35:14 -0700701 prev_epos.block = cur_epos.block;
702 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jan Karaff116fc2007-05-08 00:35:14 -0700704 prev_epos.offset = cur_epos.offset;
705 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Marcin Slusarz4b111112008-02-08 04:20:36 -0800707 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
708 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 break;
710
711 c = !c;
712
713 laarr[c].extLength = (etype << 30) | elen;
714 laarr[c].extLocation = eloc;
715
716 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
717 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718 ((elen + inode->i_sb->s_blocksize - 1) >>
719 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 } while (lbcount + elen <= b_off);
723
724 b_off -= lbcount;
725 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700726 /*
727 * Move prev_epos and cur_epos into indirect extent if we are at
728 * the pointer to it
729 */
730 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
731 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700734 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700736 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
737 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700739 ((elen + inode->i_sb->s_blocksize - 1) &
740 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200741 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700743 brelse(prev_epos.bh);
744 brelse(cur_epos.bh);
745 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200746 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Jan Kara7b0b0932011-12-10 01:43:33 +0100747 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Jan Kara31170b62007-05-08 00:35:21 -0700750 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700751 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700752 int ret;
Namjae Jeonfb719c52012-10-10 00:09:12 +0900753 isBeyondEOF = 1;
Jan Kara31170b62007-05-08 00:35:21 -0700754 if (count) {
755 if (c)
756 laarr[0] = laarr[1];
757 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700758 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700759 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800760 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200761 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700762 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200763 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800764 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700765 startnum = (offset > 0);
766 }
767 /* Create extents for the hole between EOF and offset */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200768 ret = udf_do_extend_file(inode, &prev_epos, laarr, offset);
769 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700770 brelse(prev_epos.bh);
771 brelse(cur_epos.bh);
772 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200773 *err = ret;
Jan Kara7b0b0932011-12-10 01:43:33 +0100774 return 0;
Jan Kara31170b62007-05-08 00:35:21 -0700775 }
776 c = 0;
777 offset = 0;
778 count += ret;
779 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800780 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
781 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700782 /* Is there any real extent? - otherwise we overwrite
783 * the fake one... */
784 if (count)
785 c = !c;
786 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700787 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800788 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200789 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790 count++;
Jan Kara31170b62007-05-08 00:35:21 -0700791 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700792 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700794 } else {
Namjae Jeonfb719c52012-10-10 00:09:12 +0900795 isBeyondEOF = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 endnum = startnum = ((count > 2) ? 2 : count);
797
Marcin Slusarz4b111112008-02-08 04:20:36 -0800798 /* if the current extent is in position 0,
799 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700800 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700801 laarr[2] = laarr[0];
802 laarr[0] = laarr[1];
803 laarr[1] = laarr[2];
804 c = 1;
805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Marcin Slusarz4b111112008-02-08 04:20:36 -0800807 /* if the current block is located in an extent,
808 read the next extent */
809 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
810 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700811 laarr[c + 1].extLength = (etype << 30) | elen;
812 laarr[c + 1].extLocation = eloc;
813 count++;
814 startnum++;
815 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800816 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 lastblock = 1;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700821 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800822 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800824 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800825 if (iinfo->i_next_alloc_block == block)
826 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800829 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800830 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
Marcin Slusarz4b111112008-02-08 04:20:36 -0800833 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800834 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800835 goal, err);
836 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700837 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900838 brelse(cur_epos.bh);
839 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 *err = -ENOSPC;
Jan Kara7b0b0932011-12-10 01:43:33 +0100841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Namjae Jeonfb719c52012-10-10 00:09:12 +0900843 if (isBeyondEOF)
844 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846
Marcin Slusarz4b111112008-02-08 04:20:36 -0800847 /* if the extent the requsted block is located in contains multiple
848 * blocks, split the extent into at most three extents. blocks prior
849 * to requested block, requested block, and blocks after requested
850 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
852
853#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200854 /* We preallocate blocks only for regular files. It also makes sense
855 * for directories but there's a problem when to drop the
856 * preallocation. We might use some delayed work for that but I feel
857 * it's overengineering for a filesystem like UDF. */
858 if (S_ISREG(inode->i_mode))
859 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860#endif
861
862 /* merge any continuous blocks in laarr */
863 udf_merge_extents(inode, laarr, &endnum);
864
865 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700866 * of extents is greater than the old number, and deleting extents if
867 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700868 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Jan Kara3bf25cb2007-05-08 00:35:16 -0700870 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900871 brelse(cur_epos.bh);
872 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Marcin Slusarz4b111112008-02-08 04:20:36 -0800874 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800875 iinfo->i_location.partitionReferenceNum, 0);
Jan Kara7b0b0932011-12-10 01:43:33 +0100876 if (!newblock) {
877 *err = -EIO;
878 return 0;
879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800881 iinfo->i_next_alloc_block = block;
882 iinfo->i_next_alloc_goal = newblocknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 inode->i_ctime = current_fs_time(inode->i_sb);
884
885 if (IS_SYNC(inode))
886 udf_sync_inode(inode);
887 else
888 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700889
Jan Kara7b0b0932011-12-10 01:43:33 +0100890 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700893static void udf_split_extents(struct inode *inode, int *c, int offset,
894 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200895 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700896 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800898 unsigned long blocksize = inode->i_sb->s_blocksize;
899 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800902 (laarr[*c].extLength >> 30) ==
903 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 int curr = *c;
905 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800906 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 int8_t etype = (laarr[curr].extLength >> 30);
908
Marcin Slusarz4b111112008-02-08 04:20:36 -0800909 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700910 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800911 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700912 laarr[curr + 2] = laarr[curr + 1];
913 laarr[curr + 1] = laarr[curr];
914 } else {
915 laarr[curr + 3] = laarr[curr + 1];
916 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700919 if (offset) {
920 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800921 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200922 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800923 0, offset);
924 laarr[curr].extLength =
925 EXT_NOT_RECORDED_NOT_ALLOCATED |
926 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800928 laarr[curr].extLocation.
929 partitionReferenceNum = 0;
930 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800932 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700933 curr++;
934 (*c)++;
935 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 laarr[curr].extLocation.logicalBlockNum = newblocknum;
939 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
940 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800941 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800943 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700944 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700946 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800948 laarr[curr].extLocation.logicalBlockNum +=
949 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700950 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800951 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700952 curr++;
953 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955 }
956}
957
958static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200959 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700960 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
962 int start, length = 0, currlength = 0, i;
963
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700964 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (!lastblock)
966 return;
967 else
968 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700969 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800970 if ((laarr[c + 1].extLength >> 30) ==
971 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700972 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800973 length = currlength =
974 (((laarr[c + 1].extLength &
975 UDF_EXTENT_LENGTH_MASK) +
976 inode->i_sb->s_blocksize - 1) >>
977 inode->i_sb->s_blocksize_bits);
978 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 start = c;
980 }
981
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 for (i = start + 1; i <= *endnum; i++) {
983 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (lastblock)
985 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800986 } else if ((laarr[i].extLength >> 30) ==
987 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
988 length += (((laarr[i].extLength &
989 UDF_EXTENT_LENGTH_MASK) +
990 inode->i_sb->s_blocksize - 1) >>
991 inode->i_sb->s_blocksize_bits);
992 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 break;
994 }
995
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700996 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700998 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800999 inode->i_sb->s_blocksize - 1) >>
1000 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001002 laarr[start].extLocation.partitionReferenceNum,
1003 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
1004 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
1005 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001006 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001007 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001009 (numalloc <<
1010 inode->i_sb->s_blocksize_bits);
1011 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001012 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001013 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001014 (*endnum)++;
1015 laarr[c + 1].extLocation.logicalBlockNum = next;
1016 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -08001017 laarr[c].extLocation.
1018 partitionReferenceNum;
1019 laarr[c + 1].extLength =
1020 EXT_NOT_RECORDED_ALLOCATED |
1021 (numalloc <<
1022 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001023 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001026 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001027 int elen = ((laarr[i].extLength &
1028 UDF_EXTENT_LENGTH_MASK) +
1029 inode->i_sb->s_blocksize - 1) >>
1030 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001032 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001034 (numalloc <<
1035 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001037 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001039 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001040 memmove(&laarr[i],
1041 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001042 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001043 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001044 i--;
1045 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001048 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001049 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 }
1052}
1053
1054static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001055 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001056 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001059 unsigned long blocksize = inode->i_sb->s_blocksize;
1060 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001062 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001063 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
1064 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Marcin Slusarz4b111112008-02-08 04:20:36 -08001066 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
1067 (((li->extLength >> 30) ==
1068 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
1069 ((lip1->extLocation.logicalBlockNum -
1070 li->extLocation.logicalBlockNum) ==
1071 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1072 blocksize - 1) >> blocksize_bits)))) {
1073
1074 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1075 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1076 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1077 lip1->extLength = (lip1->extLength -
1078 (li->extLength &
1079 UDF_EXTENT_LENGTH_MASK) +
1080 UDF_EXTENT_LENGTH_MASK) &
1081 ~(blocksize - 1);
1082 li->extLength = (li->extLength &
1083 UDF_EXTENT_FLAG_MASK) +
1084 (UDF_EXTENT_LENGTH_MASK + 1) -
1085 blocksize;
1086 lip1->extLocation.logicalBlockNum =
1087 li->extLocation.logicalBlockNum +
1088 ((li->extLength &
1089 UDF_EXTENT_LENGTH_MASK) >>
1090 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001091 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001092 li->extLength = lip1->extLength +
1093 (((li->extLength &
1094 UDF_EXTENT_LENGTH_MASK) +
1095 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001096 if (*endnum > (i + 2))
1097 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001098 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001099 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001100 i--;
1101 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001103 } else if (((li->extLength >> 30) ==
1104 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
1105 ((lip1->extLength >> 30) ==
1106 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001107 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001108 ((li->extLength &
1109 UDF_EXTENT_LENGTH_MASK) +
1110 blocksize - 1) >> blocksize_bits);
1111 li->extLocation.logicalBlockNum = 0;
1112 li->extLocation.partitionReferenceNum = 0;
1113
1114 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1115 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1116 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1117 lip1->extLength = (lip1->extLength -
1118 (li->extLength &
1119 UDF_EXTENT_LENGTH_MASK) +
1120 UDF_EXTENT_LENGTH_MASK) &
1121 ~(blocksize - 1);
1122 li->extLength = (li->extLength &
1123 UDF_EXTENT_FLAG_MASK) +
1124 (UDF_EXTENT_LENGTH_MASK + 1) -
1125 blocksize;
1126 } else {
1127 li->extLength = lip1->extLength +
1128 (((li->extLength &
1129 UDF_EXTENT_LENGTH_MASK) +
1130 blocksize - 1) & ~(blocksize - 1));
1131 if (*endnum > (i + 2))
1132 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001133 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001134 (*endnum - (i + 2)));
1135 i--;
1136 (*endnum)--;
1137 }
1138 } else if ((li->extLength >> 30) ==
1139 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1140 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001141 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001142 ((li->extLength &
1143 UDF_EXTENT_LENGTH_MASK) +
1144 blocksize - 1) >> blocksize_bits);
1145 li->extLocation.logicalBlockNum = 0;
1146 li->extLocation.partitionReferenceNum = 0;
1147 li->extLength = (li->extLength &
1148 UDF_EXTENT_LENGTH_MASK) |
1149 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151 }
1152}
1153
1154static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001155 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001156 int startnum, int endnum,
1157 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001160 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 uint32_t tmplen;
1162
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001163 if (startnum > endnum) {
1164 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001165 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001166 laarr[i].extLength);
1167 } else if (startnum < endnum) {
1168 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001169 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001170 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001171 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001172 &laarr[i].extLength, 1);
1173 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 }
1176
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001177 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001178 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001179 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001180 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182}
1183
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001184struct buffer_head *udf_bread(struct inode *inode, int block,
1185 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001187 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 bh = udf_getblk(inode, block, create, err);
1190 if (!bh)
1191 return NULL;
1192
1193 if (buffer_uptodate(bh))
1194 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 ll_rw_block(READ, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 wait_on_buffer(bh);
1199 if (buffer_uptodate(bh))
1200 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 brelse(bh);
1203 *err = -EIO;
1204 return NULL;
1205}
1206
Jan Kara7e49b6f2010-10-22 00:30:26 +02001207int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001210 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +02001211 int bsize = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001214 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001217 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001219 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001220 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001221 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001222 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1223 if (bsize <
1224 (udf_file_entry_alloc_offset(inode) + newsize)) {
1225 err = udf_expand_file_adinicb(inode);
Jan Karad2eb8c32011-12-10 02:30:48 +01001226 if (err)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001227 return err;
Jan Karad2eb8c32011-12-10 02:30:48 +01001228 down_write(&iinfo->i_data_sem);
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001229 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001230 iinfo->i_lenAlloc = newsize;
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001231 goto set_size;
1232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001234 err = udf_extend_file(inode, newsize);
1235 if (err) {
1236 up_write(&iinfo->i_data_sem);
1237 return err;
1238 }
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001239set_size:
Jan Kara7e49b6f2010-10-22 00:30:26 +02001240 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001241 up_write(&iinfo->i_data_sem);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001242 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001243 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1244 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +09001245 udf_clear_extent_cache(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001246 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1247 0x00, bsize - newsize -
1248 udf_file_entry_alloc_offset(inode));
1249 iinfo->i_lenAlloc = newsize;
1250 truncate_setsize(inode, newsize);
1251 up_write(&iinfo->i_data_sem);
1252 goto update_time;
1253 }
1254 err = block_truncate_page(inode->i_mapping, newsize,
1255 udf_get_block);
1256 if (err)
1257 return err;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001258 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +09001259 udf_clear_extent_cache(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001260 truncate_setsize(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001262 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001263 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001264update_time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 inode->i_mtime = inode->i_ctime = current_fs_time(inode->i_sb);
1266 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001267 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 else
1269 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001273static void __udf_read_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 struct buffer_head *bh = NULL;
1276 struct fileEntry *fe;
Jan Karabb7720a02014-09-04 13:32:50 +02001277 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001279 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Karabb7720a02014-09-04 13:32:50 +02001280 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
1281 unsigned int link_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 /*
1284 * Set defaults, but the inode is still incomplete!
1285 * Note: get_new_inode() sets the following on a new inode:
1286 * i_sb = sb
1287 * i_no = ino
1288 * i_flags = sb->s_flags
1289 * i_state = 0
1290 * clean_inode(): zero fills and sets
1291 * i_count = 1
1292 * i_nlink = 1
1293 * i_op = NULL;
1294 */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001295 bh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001296 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001297 udf_err(inode->i_sb, "(ino %ld) failed !bh\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 make_bad_inode(inode);
1299 return;
1300 }
1301
1302 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 ident != TAG_IDENT_USE) {
Joe Perches78ace702011-10-10 01:08:05 -07001304 udf_err(inode->i_sb, "(ino %ld) failed ident=%d\n",
1305 inode->i_ino, ident);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001306 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 make_bad_inode(inode);
1308 return;
1309 }
1310
1311 fe = (struct fileEntry *)bh->b_data;
Jan Karabb7720a02014-09-04 13:32:50 +02001312 efe = (struct extendedFileEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001314 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001315 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Pekka Enberg97e961f2008-10-15 12:29:03 +02001317 ibh = udf_read_ptagged(inode->i_sb, &iinfo->i_location, 1,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001318 &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001319 if (ident == TAG_IDENT_IE && ibh) {
1320 struct buffer_head *nbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001321 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001322 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001323
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001324 ie = (struct indirectEntry *)ibh->b_data;
1325 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001326
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001327 if (ie->indirectICB.extLength &&
Pekka Enberg97e961f2008-10-15 12:29:03 +02001328 (nbh = udf_read_ptagged(inode->i_sb, &loc, 0,
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001329 &ident))) {
1330 if (ident == TAG_IDENT_FE ||
1331 ident == TAG_IDENT_EFE) {
1332 memcpy(&iinfo->i_location,
1333 &loc,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001334 sizeof(struct kernel_lb_addr));
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001335 brelse(bh);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001336 brelse(ibh);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001337 brelse(nbh);
1338 __udf_read_inode(inode);
1339 return;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001340 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001341 brelse(nbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001343 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001344 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001345 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Joe Perches78ace702011-10-10 01:08:05 -07001346 udf_err(inode->i_sb, "unsupported strategy type: %d\n",
1347 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara3bf25cb2007-05-08 00:35:16 -07001348 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 make_bad_inode(inode);
1350 return;
1351 }
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001352 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001353 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001354 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001355 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001357 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001358 ICBTAG_FLAG_AD_MASK;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001359 iinfo->i_unique = 0;
1360 iinfo->i_lenEAttr = 0;
1361 iinfo->i_lenExtents = 0;
1362 iinfo->i_lenAlloc = 0;
1363 iinfo->i_next_alloc_block = 0;
1364 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001365 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001366 iinfo->i_efe = 1;
1367 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001368 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1369 sizeof(struct extendedFileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001370 make_bad_inode(inode);
1371 return;
1372 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001373 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001374 bh->b_data + sizeof(struct extendedFileEntry),
1375 inode->i_sb->s_blocksize -
1376 sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001377 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001378 iinfo->i_efe = 0;
1379 iinfo->i_use = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001380 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1381 sizeof(struct fileEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001382 make_bad_inode(inode);
1383 return;
1384 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001385 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001386 bh->b_data + sizeof(struct fileEntry),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001387 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001388 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001389 iinfo->i_efe = 0;
1390 iinfo->i_use = 1;
1391 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001392 ((struct unallocSpaceEntry *)bh->b_data)->
1393 lengthAllocDescs);
1394 if (udf_alloc_i_data(inode, inode->i_sb->s_blocksize -
1395 sizeof(struct unallocSpaceEntry))) {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001396 make_bad_inode(inode);
1397 return;
1398 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001399 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001400 bh->b_data + sizeof(struct unallocSpaceEntry),
1401 inode->i_sb->s_blocksize -
1402 sizeof(struct unallocSpaceEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return;
1404 }
1405
Jan Karac03cad22010-10-20 22:17:28 +02001406 read_lock(&sbi->s_cred_lock);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001407 i_uid_write(inode, le32_to_cpu(fe->uid));
1408 if (!uid_valid(inode->i_uid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001409 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1410 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001411 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001413 i_gid_write(inode, le32_to_cpu(fe->gid));
1414 if (!gid_valid(inode->i_gid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001415 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1416 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001417 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001419 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001420 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001421 inode->i_mode = sbi->s_fmode;
1422 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001423 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001424 inode->i_mode = sbi->s_dmode;
1425 else
1426 inode->i_mode = udf_convert_permissions(fe);
1427 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001428 read_unlock(&sbi->s_cred_lock);
1429
Miklos Szeredibfe86842011-10-28 14:13:29 +02001430 link_count = le16_to_cpu(fe->fileLinkCount);
1431 if (!link_count)
1432 link_count = 1;
1433 set_nlink(inode, link_count);
Jan Karac03cad22010-10-20 22:17:28 +02001434
1435 inode->i_size = le64_to_cpu(fe->informationLength);
1436 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001438 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001440 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Marcin Slusarz56774802008-02-10 11:25:31 +01001442 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001443 inode->i_atime = sbi->s_record_time;
1444
Marcin Slusarz56774802008-02-10 11:25:31 +01001445 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1446 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001447 inode->i_mtime = sbi->s_record_time;
1448
Marcin Slusarz56774802008-02-10 11:25:31 +01001449 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001450 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001452 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1453 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1454 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001455 iinfo->i_checkpoint = le32_to_cpu(fe->checkpoint);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001456 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001457 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001458 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Marcin Slusarz56774802008-02-10 11:25:31 +01001460 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001461 inode->i_atime = sbi->s_record_time;
1462
Marcin Slusarz56774802008-02-10 11:25:31 +01001463 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1464 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001465 inode->i_mtime = sbi->s_record_time;
1466
Marcin Slusarz56774802008-02-10 11:25:31 +01001467 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001468 iinfo->i_crtime = sbi->s_record_time;
1469
Marcin Slusarz56774802008-02-10 11:25:31 +01001470 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001471 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001473 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1474 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1475 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001476 iinfo->i_checkpoint = le32_to_cpu(efe->checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001479 switch (fe->icbTag.fileType) {
1480 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001481 inode->i_op = &udf_dir_inode_operations;
1482 inode->i_fop = &udf_dir_operations;
1483 inode->i_mode |= S_IFDIR;
1484 inc_nlink(inode);
1485 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001486 case ICBTAG_FILE_TYPE_REALTIME:
1487 case ICBTAG_FILE_TYPE_REGULAR:
1488 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001489 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001490 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001491 inode->i_data.a_ops = &udf_adinicb_aops;
1492 else
1493 inode->i_data.a_ops = &udf_aops;
1494 inode->i_op = &udf_file_inode_operations;
1495 inode->i_fop = &udf_file_operations;
1496 inode->i_mode |= S_IFREG;
1497 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001498 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001499 inode->i_mode |= S_IFBLK;
1500 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001501 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001502 inode->i_mode |= S_IFCHR;
1503 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001505 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1506 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001507 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001508 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1509 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001510 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001511 inode->i_data.a_ops = &udf_symlink_aops;
Dmitry Monakhovc15d0fc2010-03-29 11:05:21 +04001512 inode->i_op = &udf_symlink_inode_operations;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001513 inode->i_mode = S_IFLNK | S_IRWXUGO;
1514 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001515 case ICBTAG_FILE_TYPE_MAIN:
1516 udf_debug("METADATA FILE-----\n");
1517 break;
1518 case ICBTAG_FILE_TYPE_MIRROR:
1519 udf_debug("METADATA MIRROR FILE-----\n");
1520 break;
1521 case ICBTAG_FILE_TYPE_BITMAP:
1522 udf_debug("METADATA BITMAP FILE-----\n");
1523 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001524 default:
Joe Perches78ace702011-10-10 01:08:05 -07001525 udf_err(inode->i_sb, "(ino %ld) failed unknown file type=%d\n",
1526 inode->i_ino, fe->icbTag.fileType);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001527 make_bad_inode(inode);
1528 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001530 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001531 struct deviceSpec *dsea =
1532 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001533 if (dsea) {
1534 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001535 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1536 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001538 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
Jan Karabb7720a02014-09-04 13:32:50 +02001541 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001544static int udf_alloc_i_data(struct inode *inode, size_t size)
1545{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001546 struct udf_inode_info *iinfo = UDF_I(inode);
1547 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001548
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001549 if (!iinfo->i_ext.i_data) {
Joe Perches78ace702011-10-10 01:08:05 -07001550 udf_err(inode->i_sb, "(ino %ld) no free memory\n",
1551 inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001552 return -ENOMEM;
1553 }
1554
1555 return 0;
1556}
1557
Al Virofaa17292011-07-26 03:18:29 -04001558static umode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Al Virofaa17292011-07-26 03:18:29 -04001560 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 uint32_t permissions;
1562 uint32_t flags;
1563
1564 permissions = le32_to_cpu(fe->permissions);
1565 flags = le16_to_cpu(fe->icbTag.flags);
1566
Marcin Slusarz4b111112008-02-08 04:20:36 -08001567 mode = ((permissions) & S_IRWXO) |
1568 ((permissions >> 2) & S_IRWXG) |
1569 ((permissions >> 4) & S_IRWXU) |
1570 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1571 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1572 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 return mode;
1575}
1576
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001577int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Jan Kara49521de2010-10-20 17:42:44 +02001579 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Jan Kara49521de2010-10-20 17:42:44 +02001582static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 return udf_update_inode(inode, 1);
1585}
1586
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001587static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 struct buffer_head *bh = NULL;
1590 struct fileEntry *fe;
1591 struct extendedFileEntry *efe;
Steve Nickelb2527bf2012-02-16 12:53:53 -05001592 uint64_t lb_recorded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 uint32_t udfperms;
1594 uint16_t icbflags;
1595 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001597 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001598 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001599 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Jan Kara5833ded2010-01-08 16:52:59 +01001601 bh = udf_tgetblk(inode->i_sb,
1602 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001603 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001604 udf_debug("getblk failure\n");
1605 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607
Jan Karaaae917c2010-01-08 16:46:29 +01001608 lock_buffer(bh);
1609 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 fe = (struct fileEntry *)bh->b_data;
1611 efe = (struct extendedFileEntry *)bh->b_data;
1612
Jan Karaaae917c2010-01-08 16:46:29 +01001613 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001615 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001617 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001618 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001619 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001620 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001621 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
1622 use->descTag.tagLocation =
1623 cpu_to_le32(iinfo->i_location.logicalBlockNum);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001624 crclen = sizeof(struct unallocSpaceEntry) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001625 iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 use->descTag.descCRCLength = cpu_to_le16(crclen);
Bob Copelandf845fce2008-04-17 09:47:48 +02001627 use->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)use +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001628 sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001629 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001630 use->descTag.tagChecksum = udf_tag_checksum(&use->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Jan Karaaae917c2010-01-08 16:46:29 +01001632 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
Phillip Susi4d6660e2006-03-07 21:55:24 -08001635 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1636 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001637 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001638 fe->uid = cpu_to_le32(i_uid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Phillip Susi4d6660e2006-03-07 21:55:24 -08001640 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1641 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001642 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001643 fe->gid = cpu_to_le32(i_gid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Marcin Slusarz4b111112008-02-08 04:20:36 -08001645 udfperms = ((inode->i_mode & S_IRWXO)) |
1646 ((inode->i_mode & S_IRWXG) << 2) |
1647 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Marcin Slusarz4b111112008-02-08 04:20:36 -08001649 udfperms |= (le32_to_cpu(fe->permissions) &
1650 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1651 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1652 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 fe->permissions = cpu_to_le32(udfperms);
1654
Jan Kara8a70ee32014-09-04 11:47:51 +02001655 if (S_ISDIR(inode->i_mode) && inode->i_nlink > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1657 else
1658 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1659
1660 fe->informationLength = cpu_to_le64(inode->i_size);
1661
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001662 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001663 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001664 struct deviceSpec *dsea =
1665 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001666 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001668 udf_add_extendedattr(inode,
1669 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001670 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 dsea->attrType = cpu_to_le32(12);
1672 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001673 dsea->attrLength = cpu_to_le32(
1674 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001675 sizeof(struct regid));
1676 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001678 eid = (struct regid *)dsea->impUse;
1679 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 strcpy(eid->ident, UDF_ID_DEVELOPER);
1681 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1682 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1683 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1684 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1685 }
1686
Steve Nickelb2527bf2012-02-16 12:53:53 -05001687 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1688 lb_recorded = 0; /* No extents => no blocks! */
1689 else
1690 lb_recorded =
1691 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1692 (blocksize_bits - 9);
1693
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001694 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001695 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001696 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001697 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Steve Nickelb2527bf2012-02-16 12:53:53 -05001698 fe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Marcin Slusarz56774802008-02-10 11:25:31 +01001700 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1701 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1702 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001703 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1705 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1706 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001707 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1708 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1709 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001710 fe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1712 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001713 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001714 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001715 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001716 inode->i_sb->s_blocksize -
1717 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 efe->objectSize = cpu_to_le64(inode->i_size);
Steve Nickelb2527bf2012-02-16 12:53:53 -05001719 efe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001721 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1722 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1723 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1724 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001725
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001726 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1727 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1728 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1729 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001730
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001731 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1732 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1733 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1734 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Marcin Slusarz56774802008-02-10 11:25:31 +01001736 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1737 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1738 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1739 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001741 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1743 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1744 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001745 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1746 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1747 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001748 efe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1750 crclen = sizeof(struct extendedFileEntry);
1751 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001752 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 fe->icbTag.strategyType = cpu_to_le16(4096);
1754 fe->icbTag.strategyParameter = cpu_to_le16(1);
1755 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001756 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 fe->icbTag.strategyType = cpu_to_le16(4);
1758 fe->icbTag.numEntries = cpu_to_le16(1);
1759 }
1760
1761 if (S_ISDIR(inode->i_mode))
1762 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1763 else if (S_ISREG(inode->i_mode))
1764 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1765 else if (S_ISLNK(inode->i_mode))
1766 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1767 else if (S_ISBLK(inode->i_mode))
1768 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1769 else if (S_ISCHR(inode->i_mode))
1770 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1771 else if (S_ISFIFO(inode->i_mode))
1772 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1773 else if (S_ISSOCK(inode->i_mode))
1774 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1775
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001776 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001777 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1778 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1779 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1780 (le16_to_cpu(fe->icbTag.flags) &
1781 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1782 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001785 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 fe->descTag.descVersion = cpu_to_le16(3);
1787 else
1788 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001789 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001790 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001791 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001792 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001794 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001795 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001796 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Jan Karaaae917c2010-01-08 16:46:29 +01001798out:
Jan Kara5833ded2010-01-08 16:52:59 +01001799 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001800 unlock_buffer(bh);
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 /* write the data blocks */
1803 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001804 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001806 if (buffer_write_io_error(bh)) {
Joe Perches78ace702011-10-10 01:08:05 -07001807 udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n",
1808 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 err = -EIO;
1810 }
1811 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001812 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return err;
1815}
1816
Pekka Enberg97e961f2008-10-15 12:29:03 +02001817struct inode *udf_iget(struct super_block *sb, struct kernel_lb_addr *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
1819 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1820 struct inode *inode = iget_locked(sb, block);
1821
1822 if (!inode)
1823 return NULL;
1824
1825 if (inode->i_state & I_NEW) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001826 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 __udf_read_inode(inode);
1828 unlock_new_inode(inode);
1829 }
1830
1831 if (is_bad_inode(inode))
1832 goto out_iput;
1833
Pekka Enberg97e961f2008-10-15 12:29:03 +02001834 if (ino->logicalBlockNum >= UDF_SB(sb)->
1835 s_partmaps[ino->partitionReferenceNum].s_partition_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 udf_debug("block=%d, partition=%d out of range\n",
Pekka Enberg97e961f2008-10-15 12:29:03 +02001837 ino->logicalBlockNum, ino->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 make_bad_inode(inode);
1839 goto out_iput;
1840 }
1841
1842 return inode;
1843
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001844 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 iput(inode);
1846 return NULL;
1847}
1848
Jan Kara7e49b6f2010-10-22 00:30:26 +02001849int udf_add_aext(struct inode *inode, struct extent_position *epos,
1850 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 int adsize;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001853 struct short_ad *sad = NULL;
1854 struct long_ad *lad = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 struct allocExtDesc *aed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 uint8_t *ptr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001857 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Jan Karaff116fc2007-05-08 00:35:14 -07001859 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001860 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001861 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001862 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 else
Jan Karaff116fc2007-05-08 00:35:14 -07001864 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001866 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001867 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001868 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001869 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02001871 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001873 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
Al Viro391e8bb2010-01-31 21:28:48 -05001874 unsigned char *sptr, *dptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct buffer_head *nbh;
1876 int err, loffset;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001877 struct kernel_lb_addr obloc = epos->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Marcin Slusarz4b111112008-02-08 04:20:36 -08001879 epos->block.logicalBlockNum = udf_new_block(inode->i_sb, NULL,
1880 obloc.partitionReferenceNum,
1881 obloc.logicalBlockNum, &err);
1882 if (!epos->block.logicalBlockNum)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001883 return -ENOSPC;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001884 nbh = udf_tgetblk(inode->i_sb, udf_get_lb_pblock(inode->i_sb,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001885 &epos->block,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001886 0));
1887 if (!nbh)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001888 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 lock_buffer(nbh);
1890 memset(nbh->b_data, 0x00, inode->i_sb->s_blocksize);
1891 set_buffer_uptodate(nbh);
1892 unlock_buffer(nbh);
1893 mark_buffer_dirty_inode(nbh, inode);
1894
1895 aed = (struct allocExtDesc *)(nbh->b_data);
1896 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001897 aed->previousAllocExtLocation =
1898 cpu_to_le32(obloc.logicalBlockNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001899 if (epos->offset + adsize > inode->i_sb->s_blocksize) {
Jan Karaff116fc2007-05-08 00:35:14 -07001900 loffset = epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 aed->lengthAllocDescs = cpu_to_le32(adsize);
1902 sptr = ptr - adsize;
1903 dptr = nbh->b_data + sizeof(struct allocExtDesc);
1904 memcpy(dptr, sptr, adsize);
Jan Karaff116fc2007-05-08 00:35:14 -07001905 epos->offset = sizeof(struct allocExtDesc) + adsize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001906 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001907 loffset = epos->offset + adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 aed->lengthAllocDescs = cpu_to_le32(0);
1909 sptr = ptr;
Jan Karaff116fc2007-05-08 00:35:14 -07001910 epos->offset = sizeof(struct allocExtDesc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001912 if (epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07001913 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001914 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001915 } else {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001916 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 mark_inode_dirty(inode);
1918 }
1919 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001920 if (UDF_SB(inode->i_sb)->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 3, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001922 epos->block.logicalBlockNum, sizeof(struct tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 else
1924 udf_new_tag(nbh->b_data, TAG_IDENT_AED, 2, 1,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001925 epos->block.logicalBlockNum, sizeof(struct tag));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001926 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001927 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001928 sad = (struct short_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001929 sad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1930 inode->i_sb->s_blocksize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001931 sad->extPosition =
1932 cpu_to_le32(epos->block.logicalBlockNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001933 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001934 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001935 lad = (struct long_ad *)sptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001936 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS |
1937 inode->i_sb->s_blocksize);
1938 lad->extLocation = cpu_to_lelb(epos->block);
1939 memset(lad->impUse, 0x00, sizeof(lad->impUse));
1940 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001942 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001943 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001944 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Jan Karaff116fc2007-05-08 00:35:14 -07001945 udf_update_tag(epos->bh->b_data, loffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001947 udf_update_tag(epos->bh->b_data,
1948 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001949 mark_buffer_dirty_inode(epos->bh, inode);
Jan Kara3bf25cb2007-05-08 00:35:16 -07001950 brelse(epos->bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001951 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001953 }
Jan Karaff116fc2007-05-08 00:35:14 -07001954 epos->bh = nbh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
Jan Kara7e49b6f2010-10-22 00:30:26 +02001957 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001959 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001960 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001962 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07001963 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01001964 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001965 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
1966 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
1967 udf_update_tag(epos->bh->b_data,
1968 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08001970 udf_update_tag(epos->bh->b_data,
1971 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07001972 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974
Jan Kara7e49b6f2010-10-22 00:30:26 +02001975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Jan Kara7e49b6f2010-10-22 00:30:26 +02001978void udf_write_aext(struct inode *inode, struct extent_position *epos,
1979 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
1981 int adsize;
1982 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001983 struct short_ad *sad;
1984 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001985 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Jan Karaff116fc2007-05-08 00:35:14 -07001987 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001988 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001989 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001990 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 else
Jan Karaff116fc2007-05-08 00:35:14 -07001992 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001994 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001995 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001996 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001997 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001998 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001999 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002000 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002001 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002002 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002003 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002004 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002005 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002006 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002007 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002008 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02002009 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002012 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002013 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002014 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002015 struct allocExtDesc *aed =
2016 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07002017 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002018 le32_to_cpu(aed->lengthAllocDescs) +
2019 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
Jan Karaff116fc2007-05-08 00:35:14 -07002021 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002022 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07002027 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Marcin Slusarz4b111112008-02-08 04:20:36 -08002030int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002031 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
2033 int8_t etype;
2034
Jan Karaff116fc2007-05-08 00:35:14 -07002035 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002036 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002037 int block;
Jan Karaff116fc2007-05-08 00:35:14 -07002038 epos->block = *eloc;
2039 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002040 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002041 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002042 epos->bh = udf_tread(inode->i_sb, block);
2043 if (!epos->bh) {
2044 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return -1;
2046 }
2047 }
2048
2049 return etype;
2050}
2051
Marcin Slusarz4b111112008-02-08 04:20:36 -08002052int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002053 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
2055 int alen;
2056 int8_t etype;
2057 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002058 struct short_ad *sad;
2059 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002060 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002061
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002062 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002063 if (!epos->offset)
2064 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002065 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08002066 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002067 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002068 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002069 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002070 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002071 if (!epos->offset)
2072 epos->offset = sizeof(struct allocExtDesc);
2073 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002074 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08002075 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
2076 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
2078
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002079 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002080 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002081 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
2082 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002084 etype = le32_to_cpu(sad->extLength) >> 30;
2085 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002086 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002087 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002088 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
2089 break;
2090 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002091 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
2092 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002093 return -1;
2094 etype = le32_to_cpu(lad->extLength) >> 30;
2095 *eloc = lelb_to_cpu(lad->extLocation);
2096 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
2097 break;
2098 default:
Joe Perchesa983f362011-10-10 01:08:07 -07002099 udf_debug("alloc_type = %d unsupported\n", iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002100 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102
2103 return etype;
2104}
2105
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002106static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002107 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002109 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 uint32_t oelen;
2111 int8_t etype;
2112
Jan Karaff116fc2007-05-08 00:35:14 -07002113 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07002114 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002116 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002117 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 neloc = oeloc;
2119 nelen = (etype << 30) | oelen;
2120 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02002121 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002122 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return (nelen >> 30);
2125}
2126
Marcin Slusarz4b111112008-02-08 04:20:36 -08002127int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002128 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Jan Karaff116fc2007-05-08 00:35:14 -07002130 struct extent_position oepos;
2131 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 int8_t etype;
2133 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002134 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002136 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002137 get_bh(epos.bh);
2138 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002141 iinfo = UDF_I(inode);
2142 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002143 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002144 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002145 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 else
2147 adsize = 0;
2148
Jan Karaff116fc2007-05-08 00:35:14 -07002149 oepos = epos;
2150 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return -1;
2152
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002153 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002154 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002155 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002156 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07002157 brelse(oepos.bh);
2158 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07002159 oepos.bh = epos.bh;
2160 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002163 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 elen = 0;
2165
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002166 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002167 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
2168 udf_write_aext(inode, &oepos, &eloc, elen, 1);
2169 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002170 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002171 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002173 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002174 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002175 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002176 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002177 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002178 udf_update_tag(oepos.bh->b_data,
2179 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002181 udf_update_tag(oepos.bh->b_data,
2182 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002183 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002185 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002186 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002187 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002188 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002190 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002191 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002192 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002193 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002194 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002195 udf_update_tag(oepos.bh->b_data,
2196 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002198 udf_update_tag(oepos.bh->b_data,
2199 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002200 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
2202 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002203
Jan Kara3bf25cb2007-05-08 00:35:16 -07002204 brelse(epos.bh);
2205 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return (elen >> 30);
2208}
2209
Marcin Slusarz4b111112008-02-08 04:20:36 -08002210int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002211 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002212 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002214 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002215 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002216 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002218 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002220 iinfo = UDF_I(inode);
Namjae Jeon99600052013-01-19 11:17:14 +09002221 if (!udf_read_extent_cache(inode, bcount, &lbcount, pos)) {
2222 pos->offset = 0;
2223 pos->block = iinfo->i_location;
2224 pos->bh = NULL;
2225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 *elen = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002227 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002228 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2229 if (etype == -1) {
2230 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002231 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return -1;
2233 }
2234 lbcount += *elen;
2235 } while (lbcount <= bcount);
Namjae Jeon99600052013-01-19 11:17:14 +09002236 /* update extent cache */
2237 udf_update_extent_cache(inode, lbcount - *elen, pos, 1);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002238 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 return etype;
2241}
2242
Jan Kara60448b12007-05-08 00:35:13 -07002243long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002245 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002246 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002247 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002248 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 int ret;
2250
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002251 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Marcin Slusarz4b111112008-02-08 04:20:36 -08002253 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2254 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002255 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 else
2257 ret = 0;
2258
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002259 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002260 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2263 return udf_fixed_to_variable(ret);
2264 else
2265 return ret;
2266}