blob: fab5a9506bcf2d326dd4bd8b0faa66eb3ba6fc1a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/writeback.h>
37#include <linux/slab.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020038#include <linux/crc-itu-t.h>
Namjae Jeonbc112322011-10-03 14:02:59 +090039#include <linux/mpage.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080040#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "udf_i.h"
43#include "udf_sb.h"
44
45MODULE_AUTHOR("Ben Fennema");
46MODULE_DESCRIPTION("Universal Disk Format Filesystem");
47MODULE_LICENSE("GPL");
48
49#define EXTENT_MERGE_SIZE 5
50
Al Virofaa17292011-07-26 03:18:29 -040051static umode_t udf_convert_permissions(struct fileEntry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static int udf_update_inode(struct inode *, int);
Jan Kara49521de2010-10-20 17:42:44 +020053static int udf_sync_inode(struct inode *inode);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -070054static int udf_alloc_i_data(struct inode *inode, size_t size);
Jan Kara7b0b0932011-12-10 01:43:33 +010055static sector_t inode_getblk(struct inode *, sector_t, int *, int *);
Jan Karaff116fc2007-05-08 00:35:14 -070056static int8_t udf_insert_aext(struct inode *, struct extent_position,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020057 struct kernel_lb_addr, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void udf_split_extents(struct inode *, int *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020059 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static void udf_prealloc_extents(struct inode *, int, int,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020061 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void udf_merge_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020063 struct kernel_long_ad[EXTENT_MERGE_SIZE], int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void udf_update_extents(struct inode *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020065 struct kernel_long_ad[EXTENT_MERGE_SIZE], int, int,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070066 struct extent_position *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
68
Namjae Jeon99600052013-01-19 11:17:14 +090069static void __udf_clear_extent_cache(struct inode *inode)
70{
71 struct udf_inode_info *iinfo = UDF_I(inode);
72
73 if (iinfo->cached_extent.lstart != -1) {
74 brelse(iinfo->cached_extent.epos.bh);
75 iinfo->cached_extent.lstart = -1;
76 }
77}
78
79/* Invalidate extent cache */
80static void udf_clear_extent_cache(struct inode *inode)
81{
82 struct udf_inode_info *iinfo = UDF_I(inode);
83
84 spin_lock(&iinfo->i_extent_cache_lock);
85 __udf_clear_extent_cache(inode);
86 spin_unlock(&iinfo->i_extent_cache_lock);
87}
88
89/* Return contents of extent cache */
90static int udf_read_extent_cache(struct inode *inode, loff_t bcount,
91 loff_t *lbcount, struct extent_position *pos)
92{
93 struct udf_inode_info *iinfo = UDF_I(inode);
94 int ret = 0;
95
96 spin_lock(&iinfo->i_extent_cache_lock);
97 if ((iinfo->cached_extent.lstart <= bcount) &&
98 (iinfo->cached_extent.lstart != -1)) {
99 /* Cache hit */
100 *lbcount = iinfo->cached_extent.lstart;
101 memcpy(pos, &iinfo->cached_extent.epos,
102 sizeof(struct extent_position));
103 if (pos->bh)
104 get_bh(pos->bh);
105 ret = 1;
106 }
107 spin_unlock(&iinfo->i_extent_cache_lock);
108 return ret;
109}
110
111/* Add extent to extent cache */
112static void udf_update_extent_cache(struct inode *inode, loff_t estart,
113 struct extent_position *pos, int next_epos)
114{
115 struct udf_inode_info *iinfo = UDF_I(inode);
116
117 spin_lock(&iinfo->i_extent_cache_lock);
118 /* Invalidate previously cached extent */
119 __udf_clear_extent_cache(inode);
120 if (pos->bh)
121 get_bh(pos->bh);
122 memcpy(&iinfo->cached_extent.epos, pos,
123 sizeof(struct extent_position));
124 iinfo->cached_extent.lstart = estart;
125 if (next_epos)
126 switch (iinfo->i_alloc_type) {
127 case ICBTAG_FLAG_AD_SHORT:
128 iinfo->cached_extent.epos.offset -=
129 sizeof(struct short_ad);
130 break;
131 case ICBTAG_FLAG_AD_LONG:
132 iinfo->cached_extent.epos.offset -=
133 sizeof(struct long_ad);
134 }
135 spin_unlock(&iinfo->i_extent_cache_lock);
136}
Christoph Hellwigb1e32122008-02-22 12:38:48 +0100137
Al Viro3aac2b62010-06-07 00:43:39 -0400138void udf_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Jan Kara2c948b32009-12-03 13:39:28 +0100140 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400141 int want_delete = 0;
Jan Kara2c948b32009-12-03 13:39:28 +0100142
Jan Karafcfd1db2020-09-25 12:14:03 +0200143 if (!is_bad_inode(inode)) {
144 if (!inode->i_nlink) {
145 want_delete = 1;
146 udf_setsize(inode, 0);
147 udf_update_inode(inode, IS_SYNC(inode));
148 }
149 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB &&
150 inode->i_size != iinfo->i_lenExtents) {
151 udf_warn(inode->i_sb,
152 "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n",
153 inode->i_ino, inode->i_mode,
154 (unsigned long long)inode->i_size,
155 (unsigned long long)iinfo->i_lenExtents);
156 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700157 }
158 truncate_inode_pages_final(&inode->i_data);
Al Viro3aac2b62010-06-07 00:43:39 -0400159 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200160 clear_inode(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800161 kfree(iinfo->i_ext.i_data);
162 iinfo->i_ext.i_data = NULL;
Namjae Jeon99600052013-01-19 11:17:14 +0900163 udf_clear_extent_cache(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400164 if (want_delete) {
Al Viro3aac2b62010-06-07 00:43:39 -0400165 udf_free_inode(inode);
Al Viro3aac2b62010-06-07 00:43:39 -0400166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Ian Abbott5eec54f2012-09-05 17:44:31 +0100169static void udf_write_failed(struct address_space *mapping, loff_t to)
170{
171 struct inode *inode = mapping->host;
172 struct udf_inode_info *iinfo = UDF_I(inode);
173 loff_t isize = inode->i_size;
174
175 if (to > isize) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700176 truncate_pagecache(inode, isize);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100177 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
178 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +0900179 udf_clear_extent_cache(inode);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100180 udf_truncate_extents(inode);
181 up_write(&iinfo->i_data_sem);
182 }
183 }
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int udf_writepage(struct page *page, struct writeback_control *wbc)
187{
188 return block_write_full_page(page, udf_get_block, wbc);
189}
190
Namjae Jeon378b8e12012-08-31 12:49:07 -0400191static int udf_writepages(struct address_space *mapping,
192 struct writeback_control *wbc)
193{
194 return mpage_writepages(mapping, wbc, udf_get_block);
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static int udf_readpage(struct file *file, struct page *page)
198{
Namjae Jeonbc112322011-10-03 14:02:59 +0900199 return mpage_readpage(page, udf_get_block);
200}
201
202static int udf_readpages(struct file *file, struct address_space *mapping,
203 struct list_head *pages, unsigned nr_pages)
204{
205 return mpage_readpages(mapping, pages, nr_pages, udf_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Nick Pigginbe021ee2007-10-16 01:25:20 -0700208static int udf_write_begin(struct file *file, struct address_space *mapping,
209 loff_t pos, unsigned len, unsigned flags,
210 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200212 int ret;
213
214 ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
Ian Abbott5eec54f2012-09-05 17:44:31 +0100215 if (unlikely(ret))
216 udf_write_failed(mapping, pos + len);
217 return ret;
218}
Jan Kara7e49b6f2010-10-22 00:30:26 +0200219
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700220static ssize_t udf_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
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
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700228 ret = blockdev_direct_IO(iocb, inode, iter, udf_get_block);
Omar Sandoval6f673762015-03-16 04:33:52 -0700229 if (unlikely(ret < 0 && iov_iter_rw(iter) == WRITE))
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700230 udf_write_failed(mapping, iocb->ki_pos + 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
Al Viro59551022016-01-22 15:40:57 -0500263 WARN_ON_ONCE(!inode_is_locked(inode));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800264 if (!iinfo->i_lenAlloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800266 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800268 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200269 /* from now on we have normal address_space methods */
270 inode->i_data.a_ops = &udf_aops;
Jan Karad2eb8c32011-12-10 02:30:48 +0100271 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100275 /*
276 * Release i_data_sem so that we can lock a page - page lock ranks
277 * above i_data_sem. i_mutex still protects us against file changes.
278 */
279 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jan Kara7e49b6f2010-10-22 00:30:26 +0200281 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
282 if (!page)
283 return -ENOMEM;
Matt Mackallcd7619d2005-05-01 08:59:01 -0700284
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700285 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800287 memset(kaddr + iinfo->i_lenAlloc, 0x00,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300288 PAGE_SIZE - iinfo->i_lenAlloc);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800289 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr,
290 iinfo->i_lenAlloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 flush_dcache_page(page);
292 SetPageUptodate(page);
293 kunmap(page);
294 }
Jan Karad2eb8c32011-12-10 02:30:48 +0100295 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800296 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00,
297 iinfo->i_lenAlloc);
298 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800300 iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 else
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800302 iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200303 /* from now on we have normal address_space methods */
304 inode->i_data.a_ops = &udf_aops;
Jan Karaf24454e2022-01-17 18:22:13 +0100305 set_page_dirty(page);
306 unlock_page(page);
Jan Karad2eb8c32011-12-10 02:30:48 +0100307 up_write(&iinfo->i_data_sem);
Jan Karaf24454e2022-01-17 18:22:13 +0100308 err = filemap_fdatawrite(inode->i_mapping);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200309 if (err) {
310 /* Restore everything back so that we don't lose data... */
311 lock_page(page);
312 kaddr = kmap(page);
Jan Karad2eb8c32011-12-10 02:30:48 +0100313 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200314 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr,
315 inode->i_size);
316 kunmap(page);
317 unlock_page(page);
318 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
319 inode->i_data.a_ops = &udf_adinicb_aops;
Jan Karade10d142022-01-18 09:57:25 +0100320 iinfo->i_lenAlloc = inode->i_size;
Jan Karad2eb8c32011-12-10 02:30:48 +0100321 up_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200322 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300323 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200325
326 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700329struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, int *block,
330 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 int newblock;
Jan Karaff116fc2007-05-08 00:35:14 -0700333 struct buffer_head *dbh = NULL;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200334 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 uint8_t alloctype;
Jan Karaff116fc2007-05-08 00:35:14 -0700336 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 struct udf_fileident_bh sfibh, dfibh;
Jan Karaaf793292008-02-08 04:20:50 -0800339 loff_t f_pos = udf_ext0_offset(inode);
340 int size = udf_ext0_offset(inode) + inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct fileIdentDesc cfi, *sfi, *dfi;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800342 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD))
345 alloctype = ICBTAG_FLAG_AD_SHORT;
346 else
347 alloctype = ICBTAG_FLAG_AD_LONG;
348
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700349 if (!inode->i_size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800350 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 mark_inode_dirty(inode);
352 return NULL;
353 }
354
355 /* alloc block, and copy data to it */
356 *block = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800357 iinfo->i_location.partitionReferenceNum,
358 iinfo->i_location.logicalBlockNum, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!(*block))
360 return NULL;
361 newblock = udf_get_pblock(inode->i_sb, *block,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800362 iinfo->i_location.partitionReferenceNum,
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800363 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!newblock)
365 return NULL;
366 dbh = udf_tgetblk(inode->i_sb, newblock);
367 if (!dbh)
368 return NULL;
369 lock_buffer(dbh);
370 memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize);
371 set_buffer_uptodate(dbh);
372 unlock_buffer(dbh);
373 mark_buffer_dirty_inode(dbh, inode);
374
Marcin Slusarz4b111112008-02-08 04:20:36 -0800375 sfibh.soffset = sfibh.eoffset =
Jan Karaaf793292008-02-08 04:20:50 -0800376 f_pos & (inode->i_sb->s_blocksize - 1);
Jan Karaff116fc2007-05-08 00:35:14 -0700377 sfibh.sbh = sfibh.ebh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 dfibh.soffset = dfibh.eoffset = 0;
379 dfibh.sbh = dfibh.ebh = dbh;
Jan Karaaf793292008-02-08 04:20:50 -0800380 while (f_pos < size) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800381 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800382 sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL,
383 NULL, NULL, NULL);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700384 if (!sfi) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700385 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return NULL;
387 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800388 iinfo->i_alloc_type = alloctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 sfi->descTag.tagLocation = cpu_to_le32(*block);
390 dfibh.soffset = dfibh.eoffset;
391 dfibh.eoffset += (sfibh.eoffset - sfibh.soffset);
392 dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset);
393 if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800394 sfi->fileIdent +
395 le16_to_cpu(sfi->lengthOfImpUse))) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800396 iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700397 brelse(dbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return NULL;
399 }
400 }
401 mark_buffer_dirty_inode(dbh, inode);
402
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800403 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0,
404 iinfo->i_lenAlloc);
405 iinfo->i_lenAlloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 eloc.logicalBlockNum = *block;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800407 eloc.partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800408 iinfo->i_location.partitionReferenceNum;
Jan Kara2c948b32009-12-03 13:39:28 +0100409 iinfo->i_lenExtents = inode->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -0700410 epos.bh = NULL;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800411 epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700412 epos.offset = udf_file_entry_alloc_offset(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100413 udf_add_aext(inode, &epos, &eloc, inode->i_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* UniqueID stuff */
415
Jan Kara3bf25cb2007-05-08 00:35:16 -0700416 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 mark_inode_dirty(inode);
418 return dbh;
419}
420
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700421static int udf_get_block(struct inode *inode, sector_t block,
422 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 int err, new;
Marcin Slusarz1ed16172008-02-08 04:20:48 -0800425 sector_t phys = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800426 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 if (!create) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 phys = udf_block_map(inode, block);
430 if (phys)
431 map_bh(bh_result, inode->i_sb, phys);
432 return 0;
433 }
434
435 err = -EIO;
436 new = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800437 iinfo = UDF_I(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100438
439 down_write(&iinfo->i_data_sem);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800440 if (block == iinfo->i_next_alloc_block + 1) {
441 iinfo->i_next_alloc_block++;
442 iinfo->i_next_alloc_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
Namjae Jeon99600052013-01-19 11:17:14 +0900445 udf_clear_extent_cache(inode);
Jan Kara7b0b0932011-12-10 01:43:33 +0100446 phys = inode_getblk(inode, block, &err, &new);
447 if (!phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (new)
451 set_buffer_new(bh_result);
452 map_bh(bh_result, inode->i_sb, phys);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700453
454abort:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100455 up_write(&iinfo->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700459static struct buffer_head *udf_getblk(struct inode *inode, long block,
460 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700462 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct buffer_head dummy;
464
465 dummy.b_state = 0;
466 dummy.b_blocknr = -1000;
467 *err = udf_get_block(inode, block, &dummy, create);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468 if (!*err && buffer_mapped(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700470 if (buffer_new(&dummy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 lock_buffer(bh);
472 memset(bh->b_data, 0x00, inode->i_sb->s_blocksize);
473 set_buffer_uptodate(bh);
474 unlock_buffer(bh);
475 mark_buffer_dirty_inode(bh, inode);
476 }
477 return bh;
478 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return NULL;
481}
482
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500483/* Extend the file with new blocks totaling 'new_block_bytes',
484 * return the number of extents added
485 */
Jan Kara7e49b6f2010-10-22 00:30:26 +0200486static int udf_do_extend_file(struct inode *inode,
487 struct extent_position *last_pos,
488 struct kernel_long_ad *last_ext,
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500489 loff_t new_block_bytes)
Jan Kara31170b62007-05-08 00:35:21 -0700490{
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500491 uint32_t add;
Jan Kara31170b62007-05-08 00:35:21 -0700492 int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
493 struct super_block *sb = inode->i_sb;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200494 struct kernel_lb_addr prealloc_loc = {};
Jan Kara31170b62007-05-08 00:35:21 -0700495 int prealloc_len = 0;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800496 struct udf_inode_info *iinfo;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200497 int err;
Jan Kara31170b62007-05-08 00:35:21 -0700498
499 /* The previous extent is fake and we should not extend by anything
500 * - there's nothing to do... */
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500501 if (!new_block_bytes && fake)
Jan Kara31170b62007-05-08 00:35:21 -0700502 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700503
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800504 iinfo = UDF_I(inode);
Jan Kara31170b62007-05-08 00:35:21 -0700505 /* Round the last extent up to a multiple of block size */
506 if (last_ext->extLength & (sb->s_blocksize - 1)) {
507 last_ext->extLength =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700508 (last_ext->extLength & UDF_EXTENT_FLAG_MASK) |
509 (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) +
510 sb->s_blocksize - 1) & ~(sb->s_blocksize - 1));
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800511 iinfo->i_lenExtents =
512 (iinfo->i_lenExtents + sb->s_blocksize - 1) &
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700513 ~(sb->s_blocksize - 1);
Jan Kara31170b62007-05-08 00:35:21 -0700514 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700515
Jan Kara31170b62007-05-08 00:35:21 -0700516 /* Last extent are just preallocated blocks? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800517 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
518 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700519 /* Save the extent so that we can reattach it to the end */
520 prealloc_loc = last_ext->extLocation;
521 prealloc_len = last_ext->extLength;
522 /* Mark the extent as a hole */
523 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700524 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
Jan Kara31170b62007-05-08 00:35:21 -0700525 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800526 last_ext->extLocation.partitionReferenceNum = 0;
Jan Kara31170b62007-05-08 00:35:21 -0700527 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700528
Jan Kara31170b62007-05-08 00:35:21 -0700529 /* Can we merge with the previous extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800530 if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) ==
531 EXT_NOT_RECORDED_NOT_ALLOCATED) {
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500532 add = (1 << 30) - sb->s_blocksize -
533 (last_ext->extLength & UDF_EXTENT_LENGTH_MASK);
534 if (add > new_block_bytes)
535 add = new_block_bytes;
536 new_block_bytes -= add;
537 last_ext->extLength += add;
Jan Kara31170b62007-05-08 00:35:21 -0700538 }
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++;
Jan Kara6c371572015-12-23 18:05:03 +0100544 } else {
545 struct kernel_lb_addr tmploc;
546 uint32_t tmplen;
547
Pekka Enberg97e961f2008-10-15 12:29:03 +0200548 udf_write_aext(inode, last_pos, &last_ext->extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800549 last_ext->extLength, 1);
Steven J. Magnani394c1602021-01-07 17:41:16 -0600550
Jan Kara6c371572015-12-23 18:05:03 +0100551 /*
Steven J. Magnani394c1602021-01-07 17:41:16 -0600552 * We've rewritten the last extent. If we are going to add
553 * more extents, we may need to enter possible following
554 * empty indirect extent.
Jan Kara6c371572015-12-23 18:05:03 +0100555 */
Steven J. Magnani394c1602021-01-07 17:41:16 -0600556 if (new_block_bytes || prealloc_len)
557 udf_next_aext(inode, last_pos, &tmploc, &tmplen, 0);
Jan Kara6c371572015-12-23 18:05:03 +0100558 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700559
Jan Kara31170b62007-05-08 00:35:21 -0700560 /* Managed to do everything necessary? */
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500561 if (!new_block_bytes)
Jan Kara31170b62007-05-08 00:35:21 -0700562 goto out;
563
564 /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */
565 last_ext->extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800566 last_ext->extLocation.partitionReferenceNum = 0;
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500567 add = (1 << 30) - sb->s_blocksize;
568 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | add;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700569
Jan Kara31170b62007-05-08 00:35:21 -0700570 /* Create enough extents to cover the whole hole */
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500571 while (new_block_bytes > add) {
572 new_block_bytes -= add;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200573 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
574 last_ext->extLength, 1);
575 if (err)
576 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700577 count++;
578 }
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500579 if (new_block_bytes) {
Jan Kara31170b62007-05-08 00:35:21 -0700580 last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500581 new_block_bytes;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200582 err = udf_add_aext(inode, last_pos, &last_ext->extLocation,
583 last_ext->extLength, 1);
584 if (err)
585 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700586 count++;
587 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700588
589out:
Jan Kara31170b62007-05-08 00:35:21 -0700590 /* Do we have some preallocated blocks saved? */
591 if (prealloc_len) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200592 err = udf_add_aext(inode, last_pos, &prealloc_loc,
593 prealloc_len, 1);
594 if (err)
595 return err;
Jan Kara31170b62007-05-08 00:35:21 -0700596 last_ext->extLocation = prealloc_loc;
597 last_ext->extLength = prealloc_len;
598 count++;
599 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700600
Jan Kara31170b62007-05-08 00:35:21 -0700601 /* last_pos should point to the last written extent... */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800602 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200603 last_pos->offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800604 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200605 last_pos->offset -= sizeof(struct long_ad);
Jan Kara31170b62007-05-08 00:35:21 -0700606 else
Jan Kara7e49b6f2010-10-22 00:30:26 +0200607 return -EIO;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700608
Jan Kara31170b62007-05-08 00:35:21 -0700609 return count;
610}
611
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500612/* Extend the final block of the file to final_block_len bytes */
613static void udf_do_extend_final_block(struct inode *inode,
614 struct extent_position *last_pos,
615 struct kernel_long_ad *last_ext,
616 uint32_t final_block_len)
617{
618 struct super_block *sb = inode->i_sb;
619 uint32_t added_bytes;
620
621 added_bytes = final_block_len -
622 (last_ext->extLength & (sb->s_blocksize - 1));
623 last_ext->extLength += added_bytes;
624 UDF_I(inode)->i_lenExtents += added_bytes;
625
626 udf_write_aext(inode, last_pos, &last_ext->extLocation,
627 last_ext->extLength, 1);
628}
629
Jan Kara7e49b6f2010-10-22 00:30:26 +0200630static int udf_extend_file(struct inode *inode, loff_t newsize)
631{
632
633 struct extent_position epos;
634 struct kernel_lb_addr eloc;
635 uint32_t elen;
636 int8_t etype;
637 struct super_block *sb = inode->i_sb;
638 sector_t first_block = newsize >> sb->s_blocksize_bits, offset;
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500639 unsigned long partial_final_block;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200640 int adsize;
641 struct udf_inode_info *iinfo = UDF_I(inode);
642 struct kernel_long_ad extent;
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500643 int err = 0;
644 int within_final_block;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200645
646 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
647 adsize = sizeof(struct short_ad);
648 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
649 adsize = sizeof(struct long_ad);
650 else
651 BUG();
652
653 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset);
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500654 within_final_block = (etype != -1);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200655
Jan Kara7e49b6f2010-10-22 00:30:26 +0200656 if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) ||
657 (epos.bh && epos.offset == sizeof(struct allocExtDesc))) {
658 /* File has no extents at all or has empty last
659 * indirect extent! Create a fake extent... */
660 extent.extLocation.logicalBlockNum = 0;
661 extent.extLocation.partitionReferenceNum = 0;
662 extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
663 } else {
664 epos.offset -= adsize;
665 etype = udf_next_aext(inode, &epos, &extent.extLocation,
666 &extent.extLength, 0);
667 extent.extLength |= etype << 30;
668 }
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500669
670 partial_final_block = newsize & (sb->s_blocksize - 1);
671
672 /* File has extent covering the new size (could happen when extending
673 * inside a block)?
674 */
675 if (within_final_block) {
676 /* Extending file within the last file block */
677 udf_do_extend_final_block(inode, &epos, &extent,
678 partial_final_block);
679 } else {
680 loff_t add = ((loff_t)offset << sb->s_blocksize_bits) |
681 partial_final_block;
682 err = udf_do_extend_file(inode, &epos, &extent, add);
683 }
684
Jan Kara7e49b6f2010-10-22 00:30:26 +0200685 if (err < 0)
686 goto out;
687 err = 0;
688 iinfo->i_lenExtents = newsize;
689out:
690 brelse(epos.bh);
691 return err;
692}
693
Jan Kara7b0b0932011-12-10 01:43:33 +0100694static sector_t inode_getblk(struct inode *inode, sector_t block,
695 int *err, int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200697 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE];
Jan Karaff116fc2007-05-08 00:35:14 -0700698 struct extent_position prev_epos, cur_epos, next_epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int count = 0, startnum = 0, endnum = 0;
Jan Kara85d71242007-06-01 00:46:29 -0700700 uint32_t elen = 0, tmpelen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200701 struct kernel_lb_addr eloc, tmpeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int c = 1;
Jan Kara60448b12007-05-08 00:35:13 -0700703 loff_t lbcount = 0, b_off = 0;
704 uint32_t newblocknum, newblock;
705 sector_t offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800707 struct udf_inode_info *iinfo = UDF_I(inode);
708 int goal = 0, pgoal = iinfo->i_location.logicalBlockNum;
Jan Kara31170b62007-05-08 00:35:21 -0700709 int lastblock = 0;
Namjae Jeonfb719c52012-10-10 00:09:12 +0900710 bool isBeyondEOF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Jan Kara7b0b0932011-12-10 01:43:33 +0100712 *err = 0;
713 *new = 0;
Jan Karaff116fc2007-05-08 00:35:14 -0700714 prev_epos.offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800715 prev_epos.block = iinfo->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -0700716 prev_epos.bh = NULL;
717 cur_epos = next_epos = prev_epos;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718 b_off = (loff_t)block << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* find the extent which contains the block we are looking for.
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 alternate between laarr[0] and laarr[1] for locations of the
722 current extent, and the previous extent */
723 do {
724 if (prev_epos.bh != cur_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700725 brelse(prev_epos.bh);
726 get_bh(cur_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700727 prev_epos.bh = cur_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700729 if (cur_epos.bh != next_epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700730 brelse(cur_epos.bh);
731 get_bh(next_epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -0700732 cur_epos.bh = next_epos.bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
735 lbcount += elen;
736
Jan Karaff116fc2007-05-08 00:35:14 -0700737 prev_epos.block = cur_epos.block;
738 cur_epos.block = next_epos.block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Jan Karaff116fc2007-05-08 00:35:14 -0700740 prev_epos.offset = cur_epos.offset;
741 cur_epos.offset = next_epos.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Marcin Slusarz4b111112008-02-08 04:20:36 -0800743 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
744 if (etype == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 break;
746
747 c = !c;
748
749 laarr[c].extLength = (etype << 30) | elen;
750 laarr[c].extLocation = eloc;
751
752 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
753 pgoal = eloc.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700754 ((elen + inode->i_sb->s_blocksize - 1) >>
755 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700757 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 } while (lbcount + elen <= b_off);
759
760 b_off -= lbcount;
761 offset = b_off >> inode->i_sb->s_blocksize_bits;
Jan Kara85d71242007-06-01 00:46:29 -0700762 /*
763 * Move prev_epos and cur_epos into indirect extent if we are at
764 * the pointer to it
765 */
766 udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0);
767 udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* if the extent is allocated and recorded, return the block
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700770 if the extent is not a multiple of the blocksize, round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700772 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
773 if (elen & (inode->i_sb->s_blocksize - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 elen = EXT_RECORDED_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700775 ((elen + inode->i_sb->s_blocksize - 1) &
776 ~(inode->i_sb->s_blocksize - 1));
Jan Kara7e49b6f2010-10-22 00:30:26 +0200777 udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700779 brelse(prev_epos.bh);
780 brelse(cur_epos.bh);
781 brelse(next_epos.bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +0200782 newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Jan Kara7b0b0932011-12-10 01:43:33 +0100783 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Jan Kara31170b62007-05-08 00:35:21 -0700786 /* Are we beyond EOF? */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700787 if (etype == -1) {
Jan Kara31170b62007-05-08 00:35:21 -0700788 int ret;
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500789 loff_t hole_len;
Fabian Frederick69814982015-02-04 18:26:27 +0100790 isBeyondEOF = true;
Jan Kara31170b62007-05-08 00:35:21 -0700791 if (count) {
792 if (c)
793 laarr[0] = laarr[1];
794 startnum = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700795 } else {
Jan Kara31170b62007-05-08 00:35:21 -0700796 /* Create a fake extent when there's not one */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800797 memset(&laarr[0].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200798 sizeof(struct kernel_lb_addr));
Jan Kara31170b62007-05-08 00:35:21 -0700799 laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED;
Jan Kara7e49b6f2010-10-22 00:30:26 +0200800 /* Will udf_do_extend_file() create real extent from
Marcin Slusarz4b111112008-02-08 04:20:36 -0800801 a fake one? */
Jan Kara31170b62007-05-08 00:35:21 -0700802 startnum = (offset > 0);
803 }
804 /* Create extents for the hole between EOF and offset */
Steven J. Magnani9be0a1a2019-06-30 21:39:35 -0500805 hole_len = (loff_t)offset << inode->i_blkbits;
806 ret = udf_do_extend_file(inode, &prev_epos, laarr, hole_len);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200807 if (ret < 0) {
Jan Kara31170b62007-05-08 00:35:21 -0700808 brelse(prev_epos.bh);
809 brelse(cur_epos.bh);
810 brelse(next_epos.bh);
Jan Kara7e49b6f2010-10-22 00:30:26 +0200811 *err = ret;
Jan Kara7b0b0932011-12-10 01:43:33 +0100812 return 0;
Jan Kara31170b62007-05-08 00:35:21 -0700813 }
814 c = 0;
815 offset = 0;
816 count += ret;
817 /* We are not covered by a preallocated extent? */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800818 if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) !=
819 EXT_NOT_RECORDED_ALLOCATED) {
Jan Kara31170b62007-05-08 00:35:21 -0700820 /* Is there any real extent? - otherwise we overwrite
821 * the fake one... */
822 if (count)
823 c = !c;
824 laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700825 inode->i_sb->s_blocksize;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800826 memset(&laarr[c].extLocation, 0x00,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200827 sizeof(struct kernel_lb_addr));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700828 count++;
Jan Kara31170b62007-05-08 00:35:21 -0700829 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700830 endnum = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 lastblock = 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700832 } else {
Fabian Frederick69814982015-02-04 18:26:27 +0100833 isBeyondEOF = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 endnum = startnum = ((count > 2) ? 2 : count);
835
Marcin Slusarz4b111112008-02-08 04:20:36 -0800836 /* if the current extent is in position 0,
837 swap it with the previous */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700838 if (!c && count != 1) {
Jan Kara31170b62007-05-08 00:35:21 -0700839 laarr[2] = laarr[0];
840 laarr[0] = laarr[1];
841 laarr[1] = laarr[2];
842 c = 1;
843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Marcin Slusarz4b111112008-02-08 04:20:36 -0800845 /* if the current block is located in an extent,
846 read the next extent */
847 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
848 if (etype != -1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700849 laarr[c + 1].extLength = (etype << 30) | elen;
850 laarr[c + 1].extLocation = eloc;
851 count++;
852 startnum++;
853 endnum++;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800854 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 lastblock = 1;
856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /* if the current extent is not recorded but allocated, get the
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700859 * block in the extent corresponding to the requested block */
Marcin Slusarz4b111112008-02-08 04:20:36 -0800860 if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 newblocknum = laarr[c].extLocation.logicalBlockNum + offset;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800862 else { /* otherwise, allocate a new block */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800863 if (iinfo->i_next_alloc_block == block)
864 goal = iinfo->i_next_alloc_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700866 if (!goal) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800867 if (!(goal = pgoal)) /* XXX: what was intended here? */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800868 goal = iinfo->i_location.logicalBlockNum + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870
Marcin Slusarz4b111112008-02-08 04:20:36 -0800871 newblocknum = udf_new_block(inode->i_sb, inode,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800872 iinfo->i_location.partitionReferenceNum,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800873 goal, err);
874 if (!newblocknum) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700875 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900876 brelse(cur_epos.bh);
877 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *err = -ENOSPC;
Jan Kara7b0b0932011-12-10 01:43:33 +0100879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Namjae Jeonfb719c52012-10-10 00:09:12 +0900881 if (isBeyondEOF)
882 iinfo->i_lenExtents += inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Marcin Slusarz4b111112008-02-08 04:20:36 -0800885 /* if the extent the requsted block is located in contains multiple
886 * blocks, split the extent into at most three extents. blocks prior
887 * to requested block, requested block, and blocks after requested
888 * block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum);
890
891#ifdef UDF_PREALLOCATE
Jan Kara81056dd2009-07-16 18:02:25 +0200892 /* We preallocate blocks only for regular files. It also makes sense
893 * for directories but there's a problem when to drop the
894 * preallocation. We might use some delayed work for that but I feel
895 * it's overengineering for a filesystem like UDF. */
896 if (S_ISREG(inode->i_mode))
897 udf_prealloc_extents(inode, c, lastblock, laarr, &endnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
899
900 /* merge any continuous blocks in laarr */
901 udf_merge_extents(inode, laarr, &endnum);
902
903 /* write back the new extents, inserting new extents if the new number
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700904 * of extents is greater than the old number, and deleting extents if
905 * the new number of extents is less than the old number */
Jan Karaff116fc2007-05-08 00:35:14 -0700906 udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Jan Kara3bf25cb2007-05-08 00:35:16 -0700908 brelse(prev_epos.bh);
Namjae Jeon2fb7d992012-10-10 00:08:56 +0900909 brelse(cur_epos.bh);
910 brelse(next_epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Marcin Slusarz4b111112008-02-08 04:20:36 -0800912 newblock = udf_get_pblock(inode->i_sb, newblocknum,
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800913 iinfo->i_location.partitionReferenceNum, 0);
Jan Kara7b0b0932011-12-10 01:43:33 +0100914 if (!newblock) {
915 *err = -EIO;
916 return 0;
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *new = 1;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800919 iinfo->i_next_alloc_block = block;
920 iinfo->i_next_alloc_goal = newblocknum;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700921 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (IS_SYNC(inode))
924 udf_sync_inode(inode);
925 else
926 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700927
Jan Kara7b0b0932011-12-10 01:43:33 +0100928 return newblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700931static void udf_split_extents(struct inode *inode, int *c, int offset,
932 int newblocknum,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200933 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700934 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800936 unsigned long blocksize = inode->i_sb->s_blocksize;
937 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) ||
Marcin Slusarz4b111112008-02-08 04:20:36 -0800940 (laarr[*c].extLength >> 30) ==
941 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 int curr = *c;
943 int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800944 blocksize - 1) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 int8_t etype = (laarr[curr].extLength >> 30);
946
Marcin Slusarz4b111112008-02-08 04:20:36 -0800947 if (blen == 1)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700948 ;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800949 else if (!offset || blen == offset + 1) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700950 laarr[curr + 2] = laarr[curr + 1];
951 laarr[curr + 1] = laarr[curr];
952 } else {
953 laarr[curr + 3] = laarr[curr + 1];
954 laarr[curr + 2] = laarr[curr + 1] = laarr[curr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700957 if (offset) {
958 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -0800959 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +0200960 &laarr[curr].extLocation,
Marcin Slusarz4b111112008-02-08 04:20:36 -0800961 0, offset);
962 laarr[curr].extLength =
963 EXT_NOT_RECORDED_NOT_ALLOCATED |
964 (offset << blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 laarr[curr].extLocation.logicalBlockNum = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800966 laarr[curr].extLocation.
967 partitionReferenceNum = 0;
968 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800970 (offset << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700971 curr++;
972 (*c)++;
973 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -0700975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 laarr[curr].extLocation.logicalBlockNum = newblocknum;
977 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
978 laarr[curr].extLocation.partitionReferenceNum =
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800979 UDF_I(inode)->i_location.partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 laarr[curr].extLength = EXT_RECORDED_ALLOCATED |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800981 blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700982 curr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700984 if (blen != offset + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
Marcin Slusarz4b111112008-02-08 04:20:36 -0800986 laarr[curr].extLocation.logicalBlockNum +=
987 offset + 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700988 laarr[curr].extLength = (etype << 30) |
Marcin Slusarz4b111112008-02-08 04:20:36 -0800989 ((blen - (offset + 1)) << blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700990 curr++;
991 (*endnum)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 }
994}
995
996static void udf_prealloc_extents(struct inode *inode, int c, int lastblock,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200997 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700998 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 int start, length = 0, currlength = 0, i;
1001
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001002 if (*endnum >= (c + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!lastblock)
1004 return;
1005 else
1006 start = c;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001007 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001008 if ((laarr[c + 1].extLength >> 30) ==
1009 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001010 start = c + 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001011 length = currlength =
1012 (((laarr[c + 1].extLength &
1013 UDF_EXTENT_LENGTH_MASK) +
1014 inode->i_sb->s_blocksize - 1) >>
1015 inode->i_sb->s_blocksize_bits);
1016 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 start = c;
1018 }
1019
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001020 for (i = start + 1; i <= *endnum; i++) {
1021 if (i == *endnum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (lastblock)
1023 length += UDF_DEFAULT_PREALLOC_BLOCKS;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001024 } else if ((laarr[i].extLength >> 30) ==
1025 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) {
1026 length += (((laarr[i].extLength &
1027 UDF_EXTENT_LENGTH_MASK) +
1028 inode->i_sb->s_blocksize - 1) >>
1029 inode->i_sb->s_blocksize_bits);
1030 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 break;
1032 }
1033
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001034 if (length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 int next = laarr[start].extLocation.logicalBlockNum +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001036 (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08001037 inode->i_sb->s_blocksize - 1) >>
1038 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 int numalloc = udf_prealloc_blocks(inode->i_sb, inode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001040 laarr[start].extLocation.partitionReferenceNum,
1041 next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ?
1042 length : UDF_DEFAULT_PREALLOC_BLOCKS) -
1043 currlength);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001044 if (numalloc) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001045 if (start == (c + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 laarr[start].extLength +=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001047 (numalloc <<
1048 inode->i_sb->s_blocksize_bits);
1049 else {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001050 memmove(&laarr[c + 2], &laarr[c + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001051 sizeof(struct long_ad) * (*endnum - (c + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001052 (*endnum)++;
1053 laarr[c + 1].extLocation.logicalBlockNum = next;
1054 laarr[c + 1].extLocation.partitionReferenceNum =
Marcin Slusarz4b111112008-02-08 04:20:36 -08001055 laarr[c].extLocation.
1056 partitionReferenceNum;
1057 laarr[c + 1].extLength =
1058 EXT_NOT_RECORDED_ALLOCATED |
1059 (numalloc <<
1060 inode->i_sb->s_blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001061 start = c + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001064 for (i = start + 1; numalloc && i < *endnum; i++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001065 int elen = ((laarr[i].extLength &
1066 UDF_EXTENT_LENGTH_MASK) +
1067 inode->i_sb->s_blocksize - 1) >>
1068 inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001070 if (elen > numalloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 laarr[i].extLength -=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001072 (numalloc <<
1073 inode->i_sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 numalloc = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001075 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 numalloc -= elen;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001077 if (*endnum > (i + 1))
Marcin Slusarz4b111112008-02-08 04:20:36 -08001078 memmove(&laarr[i],
1079 &laarr[i + 1],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001080 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001081 (*endnum - (i + 1)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001082 i--;
1083 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085 }
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001086 UDF_I(inode)->i_lenExtents +=
Marcin Slusarz4b111112008-02-08 04:20:36 -08001087 numalloc << inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089 }
1090}
1091
1092static void udf_merge_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001093 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001094 int *endnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 int i;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001097 unsigned long blocksize = inode->i_sb->s_blocksize;
1098 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001100 for (i = 0; i < (*endnum - 1); i++) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001101 struct kernel_long_ad *li /*l[i]*/ = &laarr[i];
1102 struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Marcin Slusarz4b111112008-02-08 04:20:36 -08001104 if (((li->extLength >> 30) == (lip1->extLength >> 30)) &&
1105 (((li->extLength >> 30) ==
1106 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) ||
1107 ((lip1->extLocation.logicalBlockNum -
1108 li->extLocation.logicalBlockNum) ==
1109 (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1110 blocksize - 1) >> blocksize_bits)))) {
1111
1112 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1113 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1114 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1115 lip1->extLength = (lip1->extLength -
1116 (li->extLength &
1117 UDF_EXTENT_LENGTH_MASK) +
1118 UDF_EXTENT_LENGTH_MASK) &
1119 ~(blocksize - 1);
1120 li->extLength = (li->extLength &
1121 UDF_EXTENT_FLAG_MASK) +
1122 (UDF_EXTENT_LENGTH_MASK + 1) -
1123 blocksize;
1124 lip1->extLocation.logicalBlockNum =
1125 li->extLocation.logicalBlockNum +
1126 ((li->extLength &
1127 UDF_EXTENT_LENGTH_MASK) >>
1128 blocksize_bits);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001129 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001130 li->extLength = lip1->extLength +
1131 (((li->extLength &
1132 UDF_EXTENT_LENGTH_MASK) +
1133 blocksize - 1) & ~(blocksize - 1));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001134 if (*endnum > (i + 2))
1135 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001136 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001137 (*endnum - (i + 2)));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001138 i--;
1139 (*endnum)--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001141 } else if (((li->extLength >> 30) ==
1142 (EXT_NOT_RECORDED_ALLOCATED >> 30)) &&
1143 ((lip1->extLength >> 30) ==
1144 (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02001145 udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001146 ((li->extLength &
1147 UDF_EXTENT_LENGTH_MASK) +
1148 blocksize - 1) >> blocksize_bits);
1149 li->extLocation.logicalBlockNum = 0;
1150 li->extLocation.partitionReferenceNum = 0;
1151
1152 if (((li->extLength & UDF_EXTENT_LENGTH_MASK) +
1153 (lip1->extLength & UDF_EXTENT_LENGTH_MASK) +
1154 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
1155 lip1->extLength = (lip1->extLength -
1156 (li->extLength &
1157 UDF_EXTENT_LENGTH_MASK) +
1158 UDF_EXTENT_LENGTH_MASK) &
1159 ~(blocksize - 1);
1160 li->extLength = (li->extLength &
1161 UDF_EXTENT_FLAG_MASK) +
1162 (UDF_EXTENT_LENGTH_MASK + 1) -
1163 blocksize;
1164 } else {
1165 li->extLength = lip1->extLength +
1166 (((li->extLength &
1167 UDF_EXTENT_LENGTH_MASK) +
1168 blocksize - 1) & ~(blocksize - 1));
1169 if (*endnum > (i + 2))
1170 memmove(&laarr[i + 1], &laarr[i + 2],
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001171 sizeof(struct long_ad) *
Marcin Slusarz4b111112008-02-08 04:20:36 -08001172 (*endnum - (i + 2)));
1173 i--;
1174 (*endnum)--;
1175 }
1176 } else if ((li->extLength >> 30) ==
1177 (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
1178 udf_free_blocks(inode->i_sb, inode,
Pekka Enberg97e961f2008-10-15 12:29:03 +02001179 &li->extLocation, 0,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001180 ((li->extLength &
1181 UDF_EXTENT_LENGTH_MASK) +
1182 blocksize - 1) >> blocksize_bits);
1183 li->extLocation.logicalBlockNum = 0;
1184 li->extLocation.partitionReferenceNum = 0;
1185 li->extLength = (li->extLength &
1186 UDF_EXTENT_LENGTH_MASK) |
1187 EXT_NOT_RECORDED_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189 }
1190}
1191
1192static void udf_update_extents(struct inode *inode,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001193 struct kernel_long_ad laarr[EXTENT_MERGE_SIZE],
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001194 int startnum, int endnum,
1195 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 int start = 0, i;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001198 struct kernel_lb_addr tmploc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 uint32_t tmplen;
1200
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001201 if (startnum > endnum) {
1202 for (i = 0; i < (startnum - endnum); i++)
Jan Karaff116fc2007-05-08 00:35:14 -07001203 udf_delete_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001204 laarr[i].extLength);
1205 } else if (startnum < endnum) {
1206 for (i = 0; i < (endnum - startnum); i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001207 udf_insert_aext(inode, *epos, laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001208 laarr[i].extLength);
Jan Karaff116fc2007-05-08 00:35:14 -07001209 udf_next_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001210 &laarr[i].extLength, 1);
1211 start++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 }
1214
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001215 for (i = start; i < endnum; i++) {
Jan Karaff116fc2007-05-08 00:35:14 -07001216 udf_next_aext(inode, epos, &tmploc, &tmplen, 0);
Pekka Enberg97e961f2008-10-15 12:29:03 +02001217 udf_write_aext(inode, epos, &laarr[i].extLocation,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001218 laarr[i].extLength, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220}
1221
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001222struct buffer_head *udf_bread(struct inode *inode, int block,
1223 int create, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001225 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 bh = udf_getblk(inode, block, create, err);
1228 if (!bh)
1229 return NULL;
1230
1231 if (buffer_uptodate(bh))
1232 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001233
Mike Christiedfec8a12016-06-05 14:31:44 -05001234 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 wait_on_buffer(bh);
1237 if (buffer_uptodate(bh))
1238 return bh;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 brelse(bh);
1241 *err = -EIO;
1242 return NULL;
1243}
1244
Jan Kara7e49b6f2010-10-22 00:30:26 +02001245int udf_setsize(struct inode *inode, loff_t newsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 int err;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001248 struct udf_inode_info *iinfo;
Fabian Frederick61604a22017-02-27 14:28:32 -08001249 int bsize = i_blocksize(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001252 S_ISLNK(inode->i_mode)))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001253 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Jan Kara7e49b6f2010-10-22 00:30:26 +02001255 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001257 iinfo = UDF_I(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001258 if (newsize > inode->i_size) {
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001259 down_write(&iinfo->i_data_sem);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001260 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1261 if (bsize <
1262 (udf_file_entry_alloc_offset(inode) + newsize)) {
1263 err = udf_expand_file_adinicb(inode);
Jan Karad2eb8c32011-12-10 02:30:48 +01001264 if (err)
Jan Kara7e49b6f2010-10-22 00:30:26 +02001265 return err;
Jan Karad2eb8c32011-12-10 02:30:48 +01001266 down_write(&iinfo->i_data_sem);
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001267 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001268 iinfo->i_lenAlloc = newsize;
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001269 goto set_size;
1270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001272 err = udf_extend_file(inode, newsize);
1273 if (err) {
1274 up_write(&iinfo->i_data_sem);
1275 return err;
1276 }
Ian Abbottbb2b6d12012-07-23 16:39:29 +00001277set_size:
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001278 up_write(&iinfo->i_data_sem);
Jan Karafa67ac12017-06-13 16:20:25 +02001279 truncate_setsize(inode, newsize);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001280 } else {
Jan Kara7e49b6f2010-10-22 00:30:26 +02001281 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1282 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +09001283 udf_clear_extent_cache(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001284 memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize,
1285 0x00, bsize - newsize -
1286 udf_file_entry_alloc_offset(inode));
1287 iinfo->i_lenAlloc = newsize;
1288 truncate_setsize(inode, newsize);
1289 up_write(&iinfo->i_data_sem);
1290 goto update_time;
1291 }
1292 err = block_truncate_page(inode->i_mapping, newsize,
1293 udf_get_block);
1294 if (err)
1295 return err;
Jan Karafa67ac12017-06-13 16:20:25 +02001296 truncate_setsize(inode, newsize);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001297 down_write(&iinfo->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +09001298 udf_clear_extent_cache(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 udf_truncate_extents(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01001300 up_write(&iinfo->i_data_sem);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001301 }
Jan Kara7e49b6f2010-10-22 00:30:26 +02001302update_time:
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001303 inode->i_mtime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (IS_SYNC(inode))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001305 udf_sync_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 else
1307 mark_inode_dirty(inode);
Jan Kara7e49b6f2010-10-22 00:30:26 +02001308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Jan Karac03aa9f2014-09-04 14:06:55 +02001311/*
1312 * Maximum length of linked list formed by ICB hierarchy. The chosen number is
1313 * arbitrary - just that we hopefully don't limit any real use of rewritten
1314 * inode on write-once media but avoid looping for too long on corrupted media.
1315 */
1316#define UDF_MAX_ICB_NESTING 1024
1317
Jan Kara6174c2e2014-10-09 12:52:16 +02001318static int udf_read_inode(struct inode *inode, bool hidden_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 struct buffer_head *bh = NULL;
1321 struct fileEntry *fe;
Jan Karabb7720a02014-09-04 13:32:50 +02001322 struct extendedFileEntry *efe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 uint16_t ident;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001324 struct udf_inode_info *iinfo = UDF_I(inode);
Jan Karabb7720a02014-09-04 13:32:50 +02001325 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001326 struct kernel_lb_addr *iloc = &iinfo->i_location;
Jan Karabb7720a02014-09-04 13:32:50 +02001327 unsigned int link_count;
Jan Karac03aa9f2014-09-04 14:06:55 +02001328 unsigned int indirections = 0;
Jan Kara79144952015-01-07 13:46:16 +01001329 int bs = inode->i_sb->s_blocksize;
Jan Kara6d3d5e82014-09-04 16:15:51 +02001330 int ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Jan Karac03aa9f2014-09-04 14:06:55 +02001332reread:
Jan Kara6d3d5e82014-09-04 16:15:51 +02001333 if (iloc->logicalBlockNum >=
1334 sbi->s_partmaps[iloc->partitionReferenceNum].s_partition_len) {
1335 udf_debug("block=%d, partition=%d out of range\n",
1336 iloc->logicalBlockNum, iloc->partitionReferenceNum);
1337 return -EIO;
1338 }
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /*
1341 * Set defaults, but the inode is still incomplete!
1342 * Note: get_new_inode() sets the following on a new inode:
1343 * i_sb = sb
1344 * i_no = ino
1345 * i_flags = sb->s_flags
1346 * i_state = 0
1347 * clean_inode(): zero fills and sets
1348 * i_count = 1
1349 * i_nlink = 1
1350 * i_op = NULL;
1351 */
Jan Kara6d3d5e82014-09-04 16:15:51 +02001352 bh = udf_read_ptagged(inode->i_sb, iloc, 0, &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001353 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001354 udf_err(inode->i_sb, "(ino %ld) failed !bh\n", inode->i_ino);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001355 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
1358 if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001359 ident != TAG_IDENT_USE) {
Joe Perches78ace702011-10-10 01:08:05 -07001360 udf_err(inode->i_sb, "(ino %ld) failed ident=%d\n",
1361 inode->i_ino, ident);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001362 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364
1365 fe = (struct fileEntry *)bh->b_data;
Jan Karabb7720a02014-09-04 13:32:50 +02001366 efe = (struct extendedFileEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001368 if (fe->icbTag.strategyType == cpu_to_le16(4096)) {
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001369 struct buffer_head *ibh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jan Kara6d3d5e82014-09-04 16:15:51 +02001371 ibh = udf_read_ptagged(inode->i_sb, iloc, 1, &ident);
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001372 if (ident == TAG_IDENT_IE && ibh) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001373 struct kernel_lb_addr loc;
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001374 struct indirectEntry *ie;
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001375
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001376 ie = (struct indirectEntry *)ibh->b_data;
1377 loc = lelb_to_cpu(ie->indirectICB.extLocation);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001378
Jan Karac03aa9f2014-09-04 14:06:55 +02001379 if (ie->indirectICB.extLength) {
Jan Karac03aa9f2014-09-04 14:06:55 +02001380 brelse(ibh);
1381 memcpy(&iinfo->i_location, &loc,
1382 sizeof(struct kernel_lb_addr));
1383 if (++indirections > UDF_MAX_ICB_NESTING) {
1384 udf_err(inode->i_sb,
1385 "too many ICBs in ICB hierarchy"
1386 " (max %d supported)\n",
1387 UDF_MAX_ICB_NESTING);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001388 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001389 }
Jan Kara6d3d5e82014-09-04 16:15:51 +02001390 brelse(bh);
Jan Karac03aa9f2014-09-04 14:06:55 +02001391 goto reread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001393 }
marcin.slusarz@gmail.com1ab92782008-01-30 22:03:58 +01001394 brelse(ibh);
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001395 } else if (fe->icbTag.strategyType != cpu_to_le16(4)) {
Joe Perches78ace702011-10-10 01:08:05 -07001396 udf_err(inode->i_sb, "unsupported strategy type: %d\n",
1397 le16_to_cpu(fe->icbTag.strategyType));
Jan Kara6d3d5e82014-09-04 16:15:51 +02001398 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001400 if (fe->icbTag.strategyType == cpu_to_le16(4))
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001401 iinfo->i_strat4096 = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001402 else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001403 iinfo->i_strat4096 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001405 iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) &
Marcin Slusarz4b111112008-02-08 04:20:36 -08001406 ICBTAG_FLAG_AD_MASK;
Jan Kara46171c32018-12-12 14:29:20 +01001407 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_SHORT &&
1408 iinfo->i_alloc_type != ICBTAG_FLAG_AD_LONG &&
1409 iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1410 ret = -EIO;
1411 goto out;
1412 }
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001413 iinfo->i_unique = 0;
1414 iinfo->i_lenEAttr = 0;
1415 iinfo->i_lenExtents = 0;
1416 iinfo->i_lenAlloc = 0;
1417 iinfo->i_next_alloc_block = 0;
1418 iinfo->i_next_alloc_goal = 0;
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001419 if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001420 iinfo->i_efe = 1;
1421 iinfo->i_use = 0;
Jan Kara79144952015-01-07 13:46:16 +01001422 ret = udf_alloc_i_data(inode, bs -
Jan Kara6d3d5e82014-09-04 16:15:51 +02001423 sizeof(struct extendedFileEntry));
1424 if (ret)
1425 goto out;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001426 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001427 bh->b_data + sizeof(struct extendedFileEntry),
Jan Kara79144952015-01-07 13:46:16 +01001428 bs - sizeof(struct extendedFileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001429 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001430 iinfo->i_efe = 0;
1431 iinfo->i_use = 0;
Jan Kara79144952015-01-07 13:46:16 +01001432 ret = udf_alloc_i_data(inode, bs - sizeof(struct fileEntry));
Jan Kara6d3d5e82014-09-04 16:15:51 +02001433 if (ret)
1434 goto out;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001435 memcpy(iinfo->i_ext.i_data,
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001436 bh->b_data + sizeof(struct fileEntry),
Jan Kara79144952015-01-07 13:46:16 +01001437 bs - sizeof(struct fileEntry));
Marcin Slusarz5e0f0012008-02-08 04:20:41 -08001438 } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001439 iinfo->i_efe = 0;
1440 iinfo->i_use = 1;
1441 iinfo->i_lenAlloc = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001442 ((struct unallocSpaceEntry *)bh->b_data)->
1443 lengthAllocDescs);
Jan Kara79144952015-01-07 13:46:16 +01001444 ret = udf_alloc_i_data(inode, bs -
Jan Kara6d3d5e82014-09-04 16:15:51 +02001445 sizeof(struct unallocSpaceEntry));
1446 if (ret)
1447 goto out;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001448 memcpy(iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001449 bh->b_data + sizeof(struct unallocSpaceEntry),
Jan Kara79144952015-01-07 13:46:16 +01001450 bs - sizeof(struct unallocSpaceEntry));
Jan Kara6d3d5e82014-09-04 16:15:51 +02001451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453
Jan Kara6d3d5e82014-09-04 16:15:51 +02001454 ret = -EIO;
Jan Karac03cad22010-10-20 22:17:28 +02001455 read_lock(&sbi->s_cred_lock);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001456 i_uid_write(inode, le32_to_cpu(fe->uid));
1457 if (!uid_valid(inode->i_uid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001458 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_IGNORE) ||
1459 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001460 inode->i_uid = UDF_SB(inode->i_sb)->s_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001462 i_gid_write(inode, le32_to_cpu(fe->gid));
1463 if (!gid_valid(inode->i_gid) ||
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -07001464 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_IGNORE) ||
1465 UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET))
Phillip Susi4d6660e2006-03-07 21:55:24 -08001466 inode->i_gid = UDF_SB(inode->i_sb)->s_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001468 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001469 sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001470 inode->i_mode = sbi->s_fmode;
1471 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY &&
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001472 sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001473 inode->i_mode = sbi->s_dmode;
1474 else
1475 inode->i_mode = udf_convert_permissions(fe);
1476 inode->i_mode &= ~sbi->s_umask;
Jan Karac03cad22010-10-20 22:17:28 +02001477 read_unlock(&sbi->s_cred_lock);
1478
Miklos Szeredibfe86842011-10-28 14:13:29 +02001479 link_count = le16_to_cpu(fe->fileLinkCount);
Jan Kara4071b912014-09-04 16:19:47 +02001480 if (!link_count) {
Jan Kara6174c2e2014-10-09 12:52:16 +02001481 if (!hidden_inode) {
1482 ret = -ESTALE;
1483 goto out;
1484 }
1485 link_count = 1;
Jan Kara4071b912014-09-04 16:19:47 +02001486 }
Miklos Szeredibfe86842011-10-28 14:13:29 +02001487 set_nlink(inode, link_count);
Jan Karac03cad22010-10-20 22:17:28 +02001488
1489 inode->i_size = le64_to_cpu(fe->informationLength);
1490 iinfo->i_lenExtents = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001492 if (iinfo->i_efe == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001494 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Marcin Slusarz56774802008-02-10 11:25:31 +01001496 if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001497 inode->i_atime = sbi->s_record_time;
1498
Marcin Slusarz56774802008-02-10 11:25:31 +01001499 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1500 fe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001501 inode->i_mtime = sbi->s_record_time;
1502
Marcin Slusarz56774802008-02-10 11:25:31 +01001503 if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001504 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001506 iinfo->i_unique = le64_to_cpu(fe->uniqueID);
1507 iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
1508 iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001509 iinfo->i_checkpoint = le32_to_cpu(fe->checkpoint);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001510 } else {
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001511 inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001512 (inode->i_sb->s_blocksize_bits - 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Marcin Slusarz56774802008-02-10 11:25:31 +01001514 if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001515 inode->i_atime = sbi->s_record_time;
1516
Marcin Slusarz56774802008-02-10 11:25:31 +01001517 if (!udf_disk_stamp_to_time(&inode->i_mtime,
1518 efe->modificationTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001519 inode->i_mtime = sbi->s_record_time;
1520
Marcin Slusarz56774802008-02-10 11:25:31 +01001521 if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001522 iinfo->i_crtime = sbi->s_record_time;
1523
Marcin Slusarz56774802008-02-10 11:25:31 +01001524 if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +01001525 inode->i_ctime = sbi->s_record_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001527 iinfo->i_unique = le64_to_cpu(efe->uniqueID);
1528 iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
1529 iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001530 iinfo->i_checkpoint = le32_to_cpu(efe->checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Jan Kara470cca52014-09-04 16:26:19 +02001532 inode->i_generation = iinfo->i_unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Jan Kara23b133bd2015-01-07 13:49:08 +01001534 /*
1535 * Sanity check length of allocation descriptors and extended attrs to
1536 * avoid integer overflows
1537 */
1538 if (iinfo->i_lenEAttr > bs || iinfo->i_lenAlloc > bs)
1539 goto out;
1540 /* Now do exact checks */
1541 if (udf_file_entry_alloc_offset(inode) + iinfo->i_lenAlloc > bs)
1542 goto out;
Jan Karae1593322014-12-19 12:03:53 +01001543 /* Sanity checks for files in ICB so that we don't get confused later */
1544 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1545 /*
1546 * For file in ICB data is stored in allocation descriptor
1547 * so sizes should match
1548 */
1549 if (iinfo->i_lenAlloc != inode->i_size)
1550 goto out;
1551 /* File in ICB has to fit in there... */
Jan Kara79144952015-01-07 13:46:16 +01001552 if (inode->i_size > bs - udf_file_entry_alloc_offset(inode))
Jan Karae1593322014-12-19 12:03:53 +01001553 goto out;
1554 }
1555
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001556 switch (fe->icbTag.fileType) {
1557 case ICBTAG_FILE_TYPE_DIRECTORY:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001558 inode->i_op = &udf_dir_inode_operations;
1559 inode->i_fop = &udf_dir_operations;
1560 inode->i_mode |= S_IFDIR;
1561 inc_nlink(inode);
1562 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001563 case ICBTAG_FILE_TYPE_REALTIME:
1564 case ICBTAG_FILE_TYPE_REGULAR:
1565 case ICBTAG_FILE_TYPE_UNDEF:
Jan Kara742e1792008-04-08 01:17:52 +02001566 case ICBTAG_FILE_TYPE_VAT20:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001567 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001568 inode->i_data.a_ops = &udf_adinicb_aops;
1569 else
1570 inode->i_data.a_ops = &udf_aops;
1571 inode->i_op = &udf_file_inode_operations;
1572 inode->i_fop = &udf_file_operations;
1573 inode->i_mode |= S_IFREG;
1574 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001575 case ICBTAG_FILE_TYPE_BLOCK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001576 inode->i_mode |= S_IFBLK;
1577 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001578 case ICBTAG_FILE_TYPE_CHAR:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001579 inode->i_mode |= S_IFCHR;
1580 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001581 case ICBTAG_FILE_TYPE_FIFO:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001582 init_special_inode(inode, inode->i_mode | S_IFIFO, 0);
1583 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001584 case ICBTAG_FILE_TYPE_SOCKET:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001585 init_special_inode(inode, inode->i_mode | S_IFSOCK, 0);
1586 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001587 case ICBTAG_FILE_TYPE_SYMLINK:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001588 inode->i_data.a_ops = &udf_symlink_aops;
Al Viroc73119c2015-11-13 20:33:18 -05001589 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05001590 inode_nohighmem(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001591 inode->i_mode = S_IFLNK | S_IRWXUGO;
1592 break;
Jan Karabfb257a2008-04-08 20:37:21 +02001593 case ICBTAG_FILE_TYPE_MAIN:
1594 udf_debug("METADATA FILE-----\n");
1595 break;
1596 case ICBTAG_FILE_TYPE_MIRROR:
1597 udf_debug("METADATA MIRROR FILE-----\n");
1598 break;
1599 case ICBTAG_FILE_TYPE_BITMAP:
1600 udf_debug("METADATA BITMAP FILE-----\n");
1601 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001602 default:
Joe Perches78ace702011-10-10 01:08:05 -07001603 udf_err(inode->i_sb, "(ino %ld) failed unknown file type=%d\n",
1604 inode->i_ino, fe->icbTag.fileType);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001605 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001607 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001608 struct deviceSpec *dsea =
1609 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001610 if (dsea) {
1611 init_special_inode(inode, inode->i_mode,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001612 MKDEV(le32_to_cpu(dsea->majorDeviceIdent),
1613 le32_to_cpu(dsea->minorDeviceIdent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* Developer ID ??? */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001615 } else
Jan Kara6d3d5e82014-09-04 16:15:51 +02001616 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
Jan Kara6d3d5e82014-09-04 16:15:51 +02001618 ret = 0;
1619out:
Jan Karabb7720a02014-09-04 13:32:50 +02001620 brelse(bh);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001621 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001624static int udf_alloc_i_data(struct inode *inode, size_t size)
1625{
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001626 struct udf_inode_info *iinfo = UDF_I(inode);
1627 iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001628
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001629 if (!iinfo->i_ext.i_data) {
Joe Perches78ace702011-10-10 01:08:05 -07001630 udf_err(inode->i_sb, "(ino %ld) no free memory\n",
1631 inode->i_ino);
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07001632 return -ENOMEM;
1633 }
1634
1635 return 0;
1636}
1637
Al Virofaa17292011-07-26 03:18:29 -04001638static umode_t udf_convert_permissions(struct fileEntry *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Al Virofaa17292011-07-26 03:18:29 -04001640 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 uint32_t permissions;
1642 uint32_t flags;
1643
1644 permissions = le32_to_cpu(fe->permissions);
1645 flags = le16_to_cpu(fe->icbTag.flags);
1646
Marcin Slusarz4b111112008-02-08 04:20:36 -08001647 mode = ((permissions) & S_IRWXO) |
1648 ((permissions >> 2) & S_IRWXG) |
1649 ((permissions >> 4) & S_IRWXU) |
1650 ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) |
1651 ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) |
1652 ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 return mode;
1655}
1656
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001657int udf_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Jan Kara49521de2010-10-20 17:42:44 +02001659 return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
Jan Kara49521de2010-10-20 17:42:44 +02001662static int udf_sync_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 return udf_update_inode(inode, 1);
1665}
1666
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001667static int udf_update_inode(struct inode *inode, int do_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 struct buffer_head *bh = NULL;
1670 struct fileEntry *fe;
1671 struct extendedFileEntry *efe;
Steve Nickelb2527bf2012-02-16 12:53:53 -05001672 uint64_t lb_recorded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 uint32_t udfperms;
1674 uint16_t icbflags;
1675 uint16_t crclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int err = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001677 struct udf_sb_info *sbi = UDF_SB(inode->i_sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001678 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001679 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Jan Kara5833ded2010-01-08 16:52:59 +01001681 bh = udf_tgetblk(inode->i_sb,
1682 udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001683 if (!bh) {
Jan Karaaae917c2010-01-08 16:46:29 +01001684 udf_debug("getblk failure\n");
Changwoo Min0fd2ba32015-03-22 19:17:49 -04001685 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687
Jan Karaaae917c2010-01-08 16:46:29 +01001688 lock_buffer(bh);
1689 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 fe = (struct fileEntry *)bh->b_data;
1691 efe = (struct extendedFileEntry *)bh->b_data;
1692
Jan Karaaae917c2010-01-08 16:46:29 +01001693 if (iinfo->i_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 struct unallocSpaceEntry *use =
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001695 (struct unallocSpaceEntry *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001697 use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001698 memcpy(bh->b_data + sizeof(struct unallocSpaceEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001699 iinfo->i_ext.i_data, inode->i_sb->s_blocksize -
Marcin Slusarz4b111112008-02-08 04:20:36 -08001700 sizeof(struct unallocSpaceEntry));
Jan Karaaae917c2010-01-08 16:46:29 +01001701 use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE);
Steven J. Magnani70f19f52015-07-07 13:06:05 -05001702 crclen = sizeof(struct unallocSpaceEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Steven J. Magnani70f19f52015-07-07 13:06:05 -05001704 goto finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
Phillip Susi4d6660e2006-03-07 21:55:24 -08001707 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET))
1708 fe->uid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001709 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001710 fe->uid = cpu_to_le32(i_uid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Phillip Susi4d6660e2006-03-07 21:55:24 -08001712 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET))
1713 fe->gid = cpu_to_le32(-1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001714 else
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001715 fe->gid = cpu_to_le32(i_gid_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Marcin Slusarz4b111112008-02-08 04:20:36 -08001717 udfperms = ((inode->i_mode & S_IRWXO)) |
1718 ((inode->i_mode & S_IRWXG) << 2) |
1719 ((inode->i_mode & S_IRWXU) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Marcin Slusarz4b111112008-02-08 04:20:36 -08001721 udfperms |= (le32_to_cpu(fe->permissions) &
1722 (FE_PERM_O_DELETE | FE_PERM_O_CHATTR |
1723 FE_PERM_G_DELETE | FE_PERM_G_CHATTR |
1724 FE_PERM_U_DELETE | FE_PERM_U_CHATTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 fe->permissions = cpu_to_le32(udfperms);
1726
Jan Kara8a70ee32014-09-04 11:47:51 +02001727 if (S_ISDIR(inode->i_mode) && inode->i_nlink > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1);
1729 else
1730 fe->fileLinkCount = cpu_to_le16(inode->i_nlink);
1731
1732 fe->informationLength = cpu_to_le64(inode->i_size);
1733
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001734 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001735 struct regid *eid;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001736 struct deviceSpec *dsea =
1737 (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001738 if (!dsea) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 dsea = (struct deviceSpec *)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001740 udf_add_extendedattr(inode,
1741 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001742 sizeof(struct regid), 12, 0x3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 dsea->attrType = cpu_to_le32(12);
1744 dsea->attrSubtype = 1;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001745 dsea->attrLength = cpu_to_le32(
1746 sizeof(struct deviceSpec) +
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001747 sizeof(struct regid));
1748 dsea->impUseLength = cpu_to_le32(sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001750 eid = (struct regid *)dsea->impUse;
1751 memset(eid, 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 strcpy(eid->ident, UDF_ID_DEVELOPER);
1753 eid->identSuffix[0] = UDF_OS_CLASS_UNIX;
1754 eid->identSuffix[1] = UDF_OS_ID_LINUX;
1755 dsea->majorDeviceIdent = cpu_to_le32(imajor(inode));
1756 dsea->minorDeviceIdent = cpu_to_le32(iminor(inode));
1757 }
1758
Steve Nickelb2527bf2012-02-16 12:53:53 -05001759 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
1760 lb_recorded = 0; /* No extents => no blocks! */
1761 else
1762 lb_recorded =
1763 (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >>
1764 (blocksize_bits - 9);
1765
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001766 if (iinfo->i_efe == 0) {
Marcin Slusarzc0b34432008-02-08 04:20:42 -08001767 memcpy(bh->b_data + sizeof(struct fileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001768 iinfo->i_ext.i_data,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001769 inode->i_sb->s_blocksize - sizeof(struct fileEntry));
Steve Nickelb2527bf2012-02-16 12:53:53 -05001770 fe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Marcin Slusarz56774802008-02-10 11:25:31 +01001772 udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime);
1773 udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime);
1774 udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001775 memset(&(fe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER);
1777 fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1778 fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001779 fe->uniqueID = cpu_to_le64(iinfo->i_unique);
1780 fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1781 fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001782 fe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE);
1784 crclen = sizeof(struct fileEntry);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001785 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001786 memcpy(bh->b_data + sizeof(struct extendedFileEntry),
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001787 iinfo->i_ext.i_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08001788 inode->i_sb->s_blocksize -
1789 sizeof(struct extendedFileEntry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 efe->objectSize = cpu_to_le64(inode->i_size);
Steve Nickelb2527bf2012-02-16 12:53:53 -05001791 efe->logicalBlocksRecorded = cpu_to_le64(lb_recorded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001793 if (iinfo->i_crtime.tv_sec > inode->i_atime.tv_sec ||
1794 (iinfo->i_crtime.tv_sec == inode->i_atime.tv_sec &&
1795 iinfo->i_crtime.tv_nsec > inode->i_atime.tv_nsec))
1796 iinfo->i_crtime = inode->i_atime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001797
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001798 if (iinfo->i_crtime.tv_sec > inode->i_mtime.tv_sec ||
1799 (iinfo->i_crtime.tv_sec == inode->i_mtime.tv_sec &&
1800 iinfo->i_crtime.tv_nsec > inode->i_mtime.tv_nsec))
1801 iinfo->i_crtime = inode->i_mtime;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001802
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001803 if (iinfo->i_crtime.tv_sec > inode->i_ctime.tv_sec ||
1804 (iinfo->i_crtime.tv_sec == inode->i_ctime.tv_sec &&
1805 iinfo->i_crtime.tv_nsec > inode->i_ctime.tv_nsec))
1806 iinfo->i_crtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Marcin Slusarz56774802008-02-10 11:25:31 +01001808 udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime);
1809 udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime);
1810 udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime);
1811 udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001813 memset(&(efe->impIdent), 0, sizeof(struct regid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER);
1815 efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1816 efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001817 efe->uniqueID = cpu_to_le64(iinfo->i_unique);
1818 efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr);
1819 efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc);
Steve Nickeld5e2cf02012-02-14 00:28:42 -05001820 efe->checkpoint = cpu_to_le32(iinfo->i_checkpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE);
1822 crclen = sizeof(struct extendedFileEntry);
1823 }
Steven J. Magnani70f19f52015-07-07 13:06:05 -05001824
1825finish:
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001826 if (iinfo->i_strat4096) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 fe->icbTag.strategyType = cpu_to_le16(4096);
1828 fe->icbTag.strategyParameter = cpu_to_le16(1);
1829 fe->icbTag.numEntries = cpu_to_le16(2);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001830 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 fe->icbTag.strategyType = cpu_to_le16(4);
1832 fe->icbTag.numEntries = cpu_to_le16(1);
1833 }
1834
Steven J. Magnani70f19f52015-07-07 13:06:05 -05001835 if (iinfo->i_use)
1836 fe->icbTag.fileType = ICBTAG_FILE_TYPE_USE;
1837 else if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY;
1839 else if (S_ISREG(inode->i_mode))
1840 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR;
1841 else if (S_ISLNK(inode->i_mode))
1842 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK;
1843 else if (S_ISBLK(inode->i_mode))
1844 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK;
1845 else if (S_ISCHR(inode->i_mode))
1846 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR;
1847 else if (S_ISFIFO(inode->i_mode))
1848 fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO;
1849 else if (S_ISSOCK(inode->i_mode))
1850 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET;
1851
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001852 icbflags = iinfo->i_alloc_type |
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001853 ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) |
1854 ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) |
1855 ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) |
1856 (le16_to_cpu(fe->icbTag.flags) &
1857 ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID |
1858 ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 fe->icbTag.flags = cpu_to_le16(icbflags);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001861 if (sbi->s_udfrev >= 0x0200)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 fe->descTag.descVersion = cpu_to_le16(3);
1863 else
1864 fe->descTag.descVersion = cpu_to_le16(2);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001865 fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001866 fe->descTag.tagLocation = cpu_to_le32(
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08001867 iinfo->i_location.logicalBlockNum);
Jan Karaaae917c2010-01-08 16:46:29 +01001868 crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 fe->descTag.descCRCLength = cpu_to_le16(crclen);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001870 fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001871 crclen));
Marcin Slusarz3f2587b2008-02-08 04:20:39 -08001872 fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jan Kara5833ded2010-01-08 16:52:59 +01001874 set_buffer_uptodate(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001875 unlock_buffer(bh);
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 /* write the data blocks */
1878 mark_buffer_dirty(bh);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001879 if (do_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 sync_dirty_buffer(bh);
Jan Karaaae917c2010-01-08 16:46:29 +01001881 if (buffer_write_io_error(bh)) {
Joe Perches78ace702011-10-10 01:08:05 -07001882 udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n",
1883 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 err = -EIO;
1885 }
1886 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001887 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return err;
1890}
1891
Jan Kara6174c2e2014-10-09 12:52:16 +02001892struct inode *__udf_iget(struct super_block *sb, struct kernel_lb_addr *ino,
1893 bool hidden_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
1895 unsigned long block = udf_get_lb_pblock(sb, ino, 0);
1896 struct inode *inode = iget_locked(sb, block);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001897 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 if (!inode)
Jan Kara6d3d5e82014-09-04 16:15:51 +02001900 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Jan Kara6d3d5e82014-09-04 16:15:51 +02001902 if (!(inode->i_state & I_NEW))
1903 return inode;
1904
1905 memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr));
Jan Kara6174c2e2014-10-09 12:52:16 +02001906 err = udf_read_inode(inode, hidden_inode);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001907 if (err < 0) {
1908 iget_failed(inode);
1909 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
Jan Kara6d3d5e82014-09-04 16:15:51 +02001911 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914}
1915
Jan Karafcea62b2015-12-23 14:21:13 +01001916int udf_setup_indirect_aext(struct inode *inode, int block,
1917 struct extent_position *epos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Jan Karafcea62b2015-12-23 14:21:13 +01001919 struct super_block *sb = inode->i_sb;
1920 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 struct allocExtDesc *aed;
Jan Karafcea62b2015-12-23 14:21:13 +01001922 struct extent_position nepos;
1923 struct kernel_lb_addr neloc;
1924 int ver, adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Jan Karafcea62b2015-12-23 14:21:13 +01001926 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
1927 adsize = sizeof(struct short_ad);
1928 else if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_LONG)
1929 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 else
Arnd Bergmann4f1b1512016-01-01 15:21:54 +01001931 return -EIO;
Jan Karafcea62b2015-12-23 14:21:13 +01001932
1933 neloc.logicalBlockNum = block;
1934 neloc.partitionReferenceNum = epos->block.partitionReferenceNum;
1935
1936 bh = udf_tgetblk(sb, udf_get_lb_pblock(sb, &neloc, 0));
1937 if (!bh)
1938 return -EIO;
1939 lock_buffer(bh);
1940 memset(bh->b_data, 0x00, sb->s_blocksize);
1941 set_buffer_uptodate(bh);
1942 unlock_buffer(bh);
1943 mark_buffer_dirty_inode(bh, inode);
1944
1945 aed = (struct allocExtDesc *)(bh->b_data);
1946 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT)) {
1947 aed->previousAllocExtLocation =
1948 cpu_to_le32(epos->block.logicalBlockNum);
1949 }
1950 aed->lengthAllocDescs = cpu_to_le32(0);
1951 if (UDF_SB(sb)->s_udfrev >= 0x0200)
1952 ver = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 else
Jan Karafcea62b2015-12-23 14:21:13 +01001954 ver = 2;
1955 udf_new_tag(bh->b_data, TAG_IDENT_AED, ver, 1, block,
1956 sizeof(struct tag));
1957
1958 nepos.block = neloc;
1959 nepos.offset = sizeof(struct allocExtDesc);
1960 nepos.bh = bh;
1961
1962 /*
1963 * Do we have to copy current last extent to make space for indirect
1964 * one?
1965 */
1966 if (epos->offset + adsize > sb->s_blocksize) {
1967 struct kernel_lb_addr cp_loc;
1968 uint32_t cp_len;
1969 int cp_type;
1970
1971 epos->offset -= adsize;
1972 cp_type = udf_current_aext(inode, epos, &cp_loc, &cp_len, 0);
1973 cp_len |= ((uint32_t)cp_type) << 30;
1974
1975 __udf_add_aext(inode, &nepos, &cp_loc, cp_len, 1);
1976 udf_write_aext(inode, epos, &nepos.block,
1977 sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0);
1978 } else {
1979 __udf_add_aext(inode, epos, &nepos.block,
1980 sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0);
1981 }
1982
1983 brelse(epos->bh);
1984 *epos = nepos;
1985
1986 return 0;
1987}
1988
1989/*
1990 * Append extent at the given position - should be the first free one in inode
1991 * / indirect extent. This function assumes there is enough space in the inode
1992 * or indirect extent. Use udf_add_aext() if you didn't check for this before.
1993 */
1994int __udf_add_aext(struct inode *inode, struct extent_position *epos,
1995 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
1996{
1997 struct udf_inode_info *iinfo = UDF_I(inode);
1998 struct allocExtDesc *aed;
1999 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002001 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002002 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002003 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002004 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 else
Jan Kara7e49b6f2010-10-22 00:30:26 +02002006 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Jan Karafcea62b2015-12-23 14:21:13 +01002008 if (!epos->bh) {
2009 WARN_ON(iinfo->i_lenAlloc !=
2010 epos->offset - udf_file_entry_alloc_offset(inode));
2011 } else {
2012 aed = (struct allocExtDesc *)epos->bh->b_data;
2013 WARN_ON(le32_to_cpu(aed->lengthAllocDescs) !=
2014 epos->offset - sizeof(struct allocExtDesc));
2015 WARN_ON(epos->offset + adsize > inode->i_sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017
Jan Kara7e49b6f2010-10-22 00:30:26 +02002018 udf_write_aext(inode, epos, eloc, elen, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002020 if (!epos->bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002021 iinfo->i_lenAlloc += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002023 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002024 aed = (struct allocExtDesc *)epos->bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002025 le32_add_cpu(&aed->lengthAllocDescs, adsize);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002026 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
2027 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
2028 udf_update_tag(epos->bh->b_data,
2029 epos->offset + (inc ? 0 : adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 udf_update_tag(epos->bh->b_data,
2032 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002033 mark_buffer_dirty_inode(epos->bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035
Jan Kara7e49b6f2010-10-22 00:30:26 +02002036 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Jan Karafcea62b2015-12-23 14:21:13 +01002039/*
2040 * Append extent at given position - should be the first free one in inode
2041 * / indirect extent. Takes care of allocating and linking indirect blocks.
2042 */
2043int udf_add_aext(struct inode *inode, struct extent_position *epos,
2044 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
2045{
2046 int adsize;
2047 struct super_block *sb = inode->i_sb;
2048
2049 if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
2050 adsize = sizeof(struct short_ad);
2051 else if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_LONG)
2052 adsize = sizeof(struct long_ad);
2053 else
2054 return -EIO;
2055
2056 if (epos->offset + (2 * adsize) > sb->s_blocksize) {
2057 int err;
2058 int new_block;
2059
2060 new_block = udf_new_block(sb, NULL,
2061 epos->block.partitionReferenceNum,
2062 epos->block.logicalBlockNum, &err);
2063 if (!new_block)
2064 return -ENOSPC;
2065
2066 err = udf_setup_indirect_aext(inode, new_block, epos);
2067 if (err)
2068 return err;
2069 }
2070
2071 return __udf_add_aext(inode, epos, eloc, elen, inc);
2072}
2073
Jan Kara7e49b6f2010-10-22 00:30:26 +02002074void udf_write_aext(struct inode *inode, struct extent_position *epos,
2075 struct kernel_lb_addr *eloc, uint32_t elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
2077 int adsize;
2078 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002079 struct short_ad *sad;
2080 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002081 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Jan Karaff116fc2007-05-08 00:35:14 -07002083 if (!epos->bh)
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002084 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08002085 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002086 iinfo->i_lenEAttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 else
Jan Karaff116fc2007-05-08 00:35:14 -07002088 ptr = epos->bh->b_data + epos->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002090 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002091 case ICBTAG_FLAG_AD_SHORT:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002092 sad = (struct short_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002093 sad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002094 sad->extPosition = cpu_to_le32(eloc->logicalBlockNum);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002095 adsize = sizeof(struct short_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002096 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002097 case ICBTAG_FLAG_AD_LONG:
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002098 lad = (struct long_ad *)ptr;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002099 lad->extLength = cpu_to_le32(elen);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002100 lad->extLocation = cpu_to_lelb(*eloc);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002101 memset(lad->impUse, 0x00, sizeof(lad->impUse));
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002102 adsize = sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002103 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002104 default:
Jan Kara7e49b6f2010-10-22 00:30:26 +02002105 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002108 if (epos->bh) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002109 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002110 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002111 struct allocExtDesc *aed =
2112 (struct allocExtDesc *)epos->bh->b_data;
Jan Karaff116fc2007-05-08 00:35:14 -07002113 udf_update_tag(epos->bh->b_data,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002114 le32_to_cpu(aed->lengthAllocDescs) +
2115 sizeof(struct allocExtDesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
Jan Karaff116fc2007-05-08 00:35:14 -07002117 mark_buffer_dirty_inode(epos->bh, inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002118 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 if (inc)
Jan Karaff116fc2007-05-08 00:35:14 -07002123 epos->offset += adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124}
2125
Vegard Nossumb0918d92015-12-11 15:54:16 +01002126/*
2127 * Only 1 indirect extent in a row really makes sense but allow upto 16 in case
2128 * someone does some weird stuff.
2129 */
2130#define UDF_MAX_INDIR_EXTS 16
2131
Marcin Slusarz4b111112008-02-08 04:20:36 -08002132int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002133 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 int8_t etype;
Vegard Nossumb0918d92015-12-11 15:54:16 +01002136 unsigned int indirections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Jan Karaff116fc2007-05-08 00:35:14 -07002138 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002139 (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002140 int block;
Vegard Nossumb0918d92015-12-11 15:54:16 +01002141
2142 if (++indirections > UDF_MAX_INDIR_EXTS) {
2143 udf_err(inode->i_sb,
2144 "too many indirect extents in inode %lu\n",
2145 inode->i_ino);
2146 return -1;
2147 }
2148
Jan Karaff116fc2007-05-08 00:35:14 -07002149 epos->block = *eloc;
2150 epos->offset = sizeof(struct allocExtDesc);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002151 brelse(epos->bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002152 block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002153 epos->bh = udf_tread(inode->i_sb, block);
2154 if (!epos->bh) {
2155 udf_debug("reading block %d failed!\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return -1;
2157 }
2158 }
2159
2160 return etype;
2161}
2162
Marcin Slusarz4b111112008-02-08 04:20:36 -08002163int8_t udf_current_aext(struct inode *inode, struct extent_position *epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002164 struct kernel_lb_addr *eloc, uint32_t *elen, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 int alen;
2167 int8_t etype;
2168 uint8_t *ptr;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002169 struct short_ad *sad;
2170 struct long_ad *lad;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002171 struct udf_inode_info *iinfo = UDF_I(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002172
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002173 if (!epos->bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002174 if (!epos->offset)
2175 epos->offset = udf_file_entry_alloc_offset(inode);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002176 ptr = iinfo->i_ext.i_data + epos->offset -
Marcin Slusarz4b111112008-02-08 04:20:36 -08002177 udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002178 iinfo->i_lenEAttr;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002179 alen = udf_file_entry_alloc_offset(inode) +
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002180 iinfo->i_lenAlloc;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002181 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002182 if (!epos->offset)
2183 epos->offset = sizeof(struct allocExtDesc);
2184 ptr = epos->bh->b_data + epos->offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002185 alen = sizeof(struct allocExtDesc) +
Marcin Slusarz4b111112008-02-08 04:20:36 -08002186 le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)->
2187 lengthAllocDescs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002190 switch (iinfo->i_alloc_type) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002191 case ICBTAG_FLAG_AD_SHORT:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002192 sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc);
2193 if (!sad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return -1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002195 etype = le32_to_cpu(sad->extLength) >> 30;
2196 eloc->logicalBlockNum = le32_to_cpu(sad->extPosition);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002197 eloc->partitionReferenceNum =
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002198 iinfo->i_location.partitionReferenceNum;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002199 *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK;
2200 break;
2201 case ICBTAG_FLAG_AD_LONG:
Marcin Slusarz4b111112008-02-08 04:20:36 -08002202 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc);
2203 if (!lad)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002204 return -1;
2205 etype = le32_to_cpu(lad->extLength) >> 30;
2206 *eloc = lelb_to_cpu(lad->extLocation);
2207 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK;
2208 break;
2209 default:
Joe Perchesa983f362011-10-10 01:08:07 -07002210 udf_debug("alloc_type = %d unsupported\n", iinfo->i_alloc_type);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002211 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213
2214 return etype;
2215}
2216
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002217static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002218 struct kernel_lb_addr neloc, uint32_t nelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002220 struct kernel_lb_addr oeloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 uint32_t oelen;
2222 int8_t etype;
2223
Jan Karaff116fc2007-05-08 00:35:14 -07002224 if (epos.bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07002225 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002227 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002228 udf_write_aext(inode, &epos, &neloc, nelen, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 neloc = oeloc;
2230 nelen = (etype << 30) | oelen;
2231 }
Pekka Enberg97e961f2008-10-15 12:29:03 +02002232 udf_add_aext(inode, &epos, &neloc, nelen, 1);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002233 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return (nelen >> 30);
2236}
2237
Marcin Slusarz4b111112008-02-08 04:20:36 -08002238int8_t udf_delete_aext(struct inode *inode, struct extent_position epos,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002239 struct kernel_lb_addr eloc, uint32_t elen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Jan Karaff116fc2007-05-08 00:35:14 -07002241 struct extent_position oepos;
2242 int adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 int8_t etype;
2244 struct allocExtDesc *aed;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002245 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002247 if (epos.bh) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002248 get_bh(epos.bh);
2249 get_bh(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002252 iinfo = UDF_I(inode);
2253 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002254 adsize = sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002255 else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002256 adsize = sizeof(struct long_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 else
2258 adsize = 0;
2259
Jan Karaff116fc2007-05-08 00:35:14 -07002260 oepos = epos;
2261 if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return -1;
2263
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002264 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002265 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002266 if (oepos.bh != epos.bh) {
Jan Karaff116fc2007-05-08 00:35:14 -07002267 oepos.block = epos.block;
Jan Kara3bf25cb2007-05-08 00:35:16 -07002268 brelse(oepos.bh);
2269 get_bh(epos.bh);
Jan Karaff116fc2007-05-08 00:35:14 -07002270 oepos.bh = epos.bh;
2271 oepos.offset = epos.offset - adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273 }
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002274 memset(&eloc, 0x00, sizeof(struct kernel_lb_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 elen = 0;
2276
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002277 if (epos.bh != oepos.bh) {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002278 udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1);
2279 udf_write_aext(inode, &oepos, &eloc, elen, 1);
2280 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002281 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002282 iinfo->i_lenAlloc -= (adsize * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002284 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002285 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002286 le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002287 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002288 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002289 udf_update_tag(oepos.bh->b_data,
2290 oepos.offset - (2 * adsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002292 udf_update_tag(oepos.bh->b_data,
2293 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002294 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002296 } else {
Pekka Enberg97e961f2008-10-15 12:29:03 +02002297 udf_write_aext(inode, &oepos, &eloc, elen, 1);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002298 if (!oepos.bh) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002299 iinfo->i_lenAlloc -= adsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 mark_inode_dirty(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002301 } else {
Jan Karaff116fc2007-05-08 00:35:14 -07002302 aed = (struct allocExtDesc *)oepos.bh->b_data;
marcin.slusarz@gmail.comc2104fd2008-01-30 22:03:57 +01002303 le32_add_cpu(&aed->lengthAllocDescs, -adsize);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002304 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) ||
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002305 UDF_SB(inode->i_sb)->s_udfrev >= 0x0201)
Marcin Slusarz4b111112008-02-08 04:20:36 -08002306 udf_update_tag(oepos.bh->b_data,
2307 epos.offset - adsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 else
Marcin Slusarz4b111112008-02-08 04:20:36 -08002309 udf_update_tag(oepos.bh->b_data,
2310 sizeof(struct allocExtDesc));
Jan Karaff116fc2007-05-08 00:35:14 -07002311 mark_buffer_dirty_inode(oepos.bh, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313 }
Cyrill Gorcunov647bd612007-07-15 23:39:47 -07002314
Jan Kara3bf25cb2007-05-08 00:35:16 -07002315 brelse(epos.bh);
2316 brelse(oepos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return (elen >> 30);
2319}
2320
Marcin Slusarz4b111112008-02-08 04:20:36 -08002321int8_t inode_bmap(struct inode *inode, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002322 struct extent_position *pos, struct kernel_lb_addr *eloc,
Marcin Slusarz4b111112008-02-08 04:20:36 -08002323 uint32_t *elen, sector_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Marcin Slusarz4b111112008-02-08 04:20:36 -08002325 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002326 loff_t lbcount = 0, bcount =
Marcin Slusarz4b111112008-02-08 04:20:36 -08002327 (loff_t) block << blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 int8_t etype;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002329 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002331 iinfo = UDF_I(inode);
Namjae Jeon99600052013-01-19 11:17:14 +09002332 if (!udf_read_extent_cache(inode, bcount, &lbcount, pos)) {
2333 pos->offset = 0;
2334 pos->block = iinfo->i_location;
2335 pos->bh = NULL;
2336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 *elen = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002338 do {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002339 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2340 if (etype == -1) {
2341 *offset = (bcount - lbcount) >> blocksize_bits;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -08002342 iinfo->i_lenExtents = lbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return -1;
2344 }
2345 lbcount += *elen;
2346 } while (lbcount <= bcount);
Namjae Jeon99600052013-01-19 11:17:14 +09002347 /* update extent cache */
2348 udf_update_extent_cache(inode, lbcount - *elen, pos, 1);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002349 *offset = (bcount + *elen - lbcount) >> blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 return etype;
2352}
2353
Jan Kara60448b12007-05-08 00:35:13 -07002354long udf_block_map(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002356 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -07002357 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -07002358 sector_t offset;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002359 struct extent_position epos = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 int ret;
2361
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002362 down_read(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Marcin Slusarz4b111112008-02-08 04:20:36 -08002364 if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) ==
2365 (EXT_RECORDED_ALLOCATED >> 30))
Pekka Enberg97e961f2008-10-15 12:29:03 +02002366 ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 else
2368 ret = 0;
2369
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +01002370 up_read(&UDF_I(inode)->i_data_sem);
Jan Kara3bf25cb2007-05-08 00:35:16 -07002371 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373 if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV))
2374 return udf_fixed_to_variable(ret);
2375 else
2376 return ret;
2377}