Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * inode.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * Inode handling routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * 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 Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 22 | * 12/06/98 blf partition support in udf_iget, udf_block_map |
| 23 | * and udf_read_inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/module.h> |
| 35 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/writeback.h> |
| 37 | #include <linux/slab.h> |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 38 | #include <linux/crc-itu-t.h> |
Namjae Jeon | bc11232 | 2011-10-03 14:02:59 +0900 | [diff] [blame] | 39 | #include <linux/mpage.h> |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 40 | #include <linux/uio.h> |
Christoph Hellwig | 2f8b544 | 2016-11-01 07:40:13 -0600 | [diff] [blame] | 41 | #include <linux/bio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include "udf_i.h" |
| 44 | #include "udf_sb.h" |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define EXTENT_MERGE_SIZE 5 |
| 47 | |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 48 | static umode_t udf_convert_permissions(struct fileEntry *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | static int udf_update_inode(struct inode *, int); |
Jan Kara | 49521de | 2010-10-20 17:42:44 +0200 | [diff] [blame] | 50 | static int udf_sync_inode(struct inode *inode); |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 51 | static int udf_alloc_i_data(struct inode *inode, size_t size); |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 52 | static sector_t inode_getblk(struct inode *, sector_t, int *, int *); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 53 | static int8_t udf_insert_aext(struct inode *, struct extent_position, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 54 | struct kernel_lb_addr, uint32_t); |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 55 | static void udf_split_extents(struct inode *, int *, int, udf_pblk_t, |
Fabian Frederick | 3cc6f84 | 2017-01-06 21:53:50 +0100 | [diff] [blame] | 56 | struct kernel_long_ad *, int *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | static void udf_prealloc_extents(struct inode *, int, int, |
Fabian Frederick | 3cc6f84 | 2017-01-06 21:53:50 +0100 | [diff] [blame] | 58 | struct kernel_long_ad *, int *); |
| 59 | static void udf_merge_extents(struct inode *, struct kernel_long_ad *, int *); |
| 60 | static void udf_update_extents(struct inode *, struct kernel_long_ad *, int, |
| 61 | int, struct extent_position *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int); |
| 63 | |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 64 | static void __udf_clear_extent_cache(struct inode *inode) |
| 65 | { |
| 66 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 67 | |
| 68 | if (iinfo->cached_extent.lstart != -1) { |
| 69 | brelse(iinfo->cached_extent.epos.bh); |
| 70 | iinfo->cached_extent.lstart = -1; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | /* Invalidate extent cache */ |
| 75 | static void udf_clear_extent_cache(struct inode *inode) |
| 76 | { |
| 77 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 78 | |
| 79 | spin_lock(&iinfo->i_extent_cache_lock); |
| 80 | __udf_clear_extent_cache(inode); |
| 81 | spin_unlock(&iinfo->i_extent_cache_lock); |
| 82 | } |
| 83 | |
| 84 | /* Return contents of extent cache */ |
| 85 | static int udf_read_extent_cache(struct inode *inode, loff_t bcount, |
| 86 | loff_t *lbcount, struct extent_position *pos) |
| 87 | { |
| 88 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 89 | int ret = 0; |
| 90 | |
| 91 | spin_lock(&iinfo->i_extent_cache_lock); |
| 92 | if ((iinfo->cached_extent.lstart <= bcount) && |
| 93 | (iinfo->cached_extent.lstart != -1)) { |
| 94 | /* Cache hit */ |
| 95 | *lbcount = iinfo->cached_extent.lstart; |
| 96 | memcpy(pos, &iinfo->cached_extent.epos, |
| 97 | sizeof(struct extent_position)); |
| 98 | if (pos->bh) |
| 99 | get_bh(pos->bh); |
| 100 | ret = 1; |
| 101 | } |
| 102 | spin_unlock(&iinfo->i_extent_cache_lock); |
| 103 | return ret; |
| 104 | } |
| 105 | |
| 106 | /* Add extent to extent cache */ |
| 107 | static void udf_update_extent_cache(struct inode *inode, loff_t estart, |
Fabian Frederick | b31c9ed | 2017-01-06 21:53:56 +0100 | [diff] [blame] | 108 | struct extent_position *pos) |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 109 | { |
| 110 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 111 | |
| 112 | spin_lock(&iinfo->i_extent_cache_lock); |
| 113 | /* Invalidate previously cached extent */ |
| 114 | __udf_clear_extent_cache(inode); |
| 115 | if (pos->bh) |
| 116 | get_bh(pos->bh); |
Markus Elfring | 033c9da | 2017-08-15 16:45:44 +0200 | [diff] [blame] | 117 | memcpy(&iinfo->cached_extent.epos, pos, sizeof(*pos)); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 118 | iinfo->cached_extent.lstart = estart; |
Fabian Frederick | b31c9ed | 2017-01-06 21:53:56 +0100 | [diff] [blame] | 119 | switch (iinfo->i_alloc_type) { |
| 120 | case ICBTAG_FLAG_AD_SHORT: |
| 121 | iinfo->cached_extent.epos.offset -= sizeof(struct short_ad); |
| 122 | break; |
| 123 | case ICBTAG_FLAG_AD_LONG: |
| 124 | iinfo->cached_extent.epos.offset -= sizeof(struct long_ad); |
| 125 | break; |
| 126 | } |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 127 | spin_unlock(&iinfo->i_extent_cache_lock); |
| 128 | } |
Christoph Hellwig | b1e3212 | 2008-02-22 12:38:48 +0100 | [diff] [blame] | 129 | |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 130 | void udf_evict_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 132 | struct udf_inode_info *iinfo = UDF_I(inode); |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 133 | int want_delete = 0; |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 134 | |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 135 | if (!inode->i_nlink && !is_bad_inode(inode)) { |
| 136 | want_delete = 1; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 137 | udf_setsize(inode, 0); |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 138 | udf_update_inode(inode, IS_SYNC(inode)); |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 139 | } |
| 140 | truncate_inode_pages_final(&inode->i_data); |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 141 | invalidate_inode_buffers(inode); |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 142 | clear_inode(inode); |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 143 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB && |
| 144 | inode->i_size != iinfo->i_lenExtents) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 145 | udf_warn(inode->i_sb, "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n", |
| 146 | inode->i_ino, inode->i_mode, |
| 147 | (unsigned long long)inode->i_size, |
| 148 | (unsigned long long)iinfo->i_lenExtents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 150 | kfree(iinfo->i_ext.i_data); |
| 151 | iinfo->i_ext.i_data = NULL; |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 152 | udf_clear_extent_cache(inode); |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 153 | if (want_delete) { |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 154 | udf_free_inode(inode); |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 155 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 158 | static void udf_write_failed(struct address_space *mapping, loff_t to) |
| 159 | { |
| 160 | struct inode *inode = mapping->host; |
| 161 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 162 | loff_t isize = inode->i_size; |
| 163 | |
| 164 | if (to > isize) { |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 165 | truncate_pagecache(inode, isize); |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 166 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
| 167 | down_write(&iinfo->i_data_sem); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 168 | udf_clear_extent_cache(inode); |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 169 | udf_truncate_extents(inode); |
| 170 | up_write(&iinfo->i_data_sem); |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | static int udf_writepage(struct page *page, struct writeback_control *wbc) |
| 176 | { |
| 177 | return block_write_full_page(page, udf_get_block, wbc); |
| 178 | } |
| 179 | |
Namjae Jeon | 378b8e1 | 2012-08-31 12:49:07 -0400 | [diff] [blame] | 180 | static int udf_writepages(struct address_space *mapping, |
| 181 | struct writeback_control *wbc) |
| 182 | { |
| 183 | return mpage_writepages(mapping, wbc, udf_get_block); |
| 184 | } |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | static int udf_readpage(struct file *file, struct page *page) |
| 187 | { |
Namjae Jeon | bc11232 | 2011-10-03 14:02:59 +0900 | [diff] [blame] | 188 | return mpage_readpage(page, udf_get_block); |
| 189 | } |
| 190 | |
| 191 | static int udf_readpages(struct file *file, struct address_space *mapping, |
| 192 | struct list_head *pages, unsigned nr_pages) |
| 193 | { |
| 194 | return mpage_readpages(mapping, pages, nr_pages, udf_get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 197 | static int udf_write_begin(struct file *file, struct address_space *mapping, |
| 198 | loff_t pos, unsigned len, unsigned flags, |
| 199 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Christoph Hellwig | 155130a | 2010-06-04 11:29:58 +0200 | [diff] [blame] | 201 | int ret; |
| 202 | |
| 203 | ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block); |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 204 | if (unlikely(ret)) |
| 205 | udf_write_failed(mapping, pos + len); |
| 206 | return ret; |
| 207 | } |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 208 | |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 209 | static ssize_t udf_direct_IO(struct kiocb *iocb, struct iov_iter *iter) |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 210 | { |
| 211 | struct file *file = iocb->ki_filp; |
| 212 | struct address_space *mapping = file->f_mapping; |
| 213 | struct inode *inode = mapping->host; |
Al Viro | a6cbcd4 | 2014-03-04 22:38:00 -0500 | [diff] [blame] | 214 | size_t count = iov_iter_count(iter); |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 215 | ssize_t ret; |
Christoph Hellwig | 155130a | 2010-06-04 11:29:58 +0200 | [diff] [blame] | 216 | |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 217 | ret = blockdev_direct_IO(iocb, inode, iter, udf_get_block); |
Omar Sandoval | 6f67376 | 2015-03-16 04:33:52 -0700 | [diff] [blame] | 218 | if (unlikely(ret < 0 && iov_iter_rw(iter) == WRITE)) |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 219 | udf_write_failed(mapping, iocb->ki_pos + count); |
Christoph Hellwig | 155130a | 2010-06-04 11:29:58 +0200 | [diff] [blame] | 220 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | static sector_t udf_bmap(struct address_space *mapping, sector_t block) |
| 224 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 225 | return generic_block_bmap(mapping, block, udf_get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 228 | const struct address_space_operations udf_aops = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 229 | .readpage = udf_readpage, |
Namjae Jeon | bc11232 | 2011-10-03 14:02:59 +0900 | [diff] [blame] | 230 | .readpages = udf_readpages, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 231 | .writepage = udf_writepage, |
Namjae Jeon | 378b8e1 | 2012-08-31 12:49:07 -0400 | [diff] [blame] | 232 | .writepages = udf_writepages, |
Ian Abbott | 5eec54f | 2012-09-05 17:44:31 +0100 | [diff] [blame] | 233 | .write_begin = udf_write_begin, |
| 234 | .write_end = generic_write_end, |
| 235 | .direct_IO = udf_direct_IO, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 236 | .bmap = udf_bmap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | }; |
| 238 | |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 239 | /* |
| 240 | * Expand file stored in ICB to a normal one-block-file |
| 241 | * |
| 242 | * This function requires i_data_sem for writing and releases it. |
| 243 | * This function requires i_mutex held |
| 244 | */ |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 245 | int udf_expand_file_adinicb(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
| 247 | struct page *page; |
| 248 | char *kaddr; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 249 | struct udf_inode_info *iinfo = UDF_I(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 250 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | struct writeback_control udf_wbc = { |
| 252 | .sync_mode = WB_SYNC_NONE, |
| 253 | .nr_to_write = 1, |
| 254 | }; |
| 255 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 256 | WARN_ON_ONCE(!inode_is_locked(inode)); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 257 | if (!iinfo->i_lenAlloc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD)) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 259 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | else |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 261 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 262 | /* from now on we have normal address_space methods */ |
| 263 | inode->i_data.a_ops = &udf_aops; |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 264 | up_write(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | mark_inode_dirty(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 266 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 268 | /* |
| 269 | * Release i_data_sem so that we can lock a page - page lock ranks |
| 270 | * above i_data_sem. i_mutex still protects us against file changes. |
| 271 | */ |
| 272 | up_write(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 274 | page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS); |
| 275 | if (!page) |
| 276 | return -ENOMEM; |
Matt Mackall | cd7619d | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 277 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 278 | if (!PageUptodate(page)) { |
Fabian Frederick | 5c26eac | 2017-04-23 20:58:34 +0200 | [diff] [blame] | 279 | kaddr = kmap_atomic(page); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 280 | memset(kaddr + iinfo->i_lenAlloc, 0x00, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 281 | PAGE_SIZE - iinfo->i_lenAlloc); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 282 | memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, |
| 283 | iinfo->i_lenAlloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | flush_dcache_page(page); |
| 285 | SetPageUptodate(page); |
Fabian Frederick | 5c26eac | 2017-04-23 20:58:34 +0200 | [diff] [blame] | 286 | kunmap_atomic(kaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 288 | down_write(&iinfo->i_data_sem); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 289 | memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0x00, |
| 290 | iinfo->i_lenAlloc); |
| 291 | iinfo->i_lenAlloc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD)) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 293 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_SHORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | else |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 295 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 296 | /* from now on we have normal address_space methods */ |
| 297 | inode->i_data.a_ops = &udf_aops; |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 298 | up_write(&iinfo->i_data_sem); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 299 | err = inode->i_data.a_ops->writepage(page, &udf_wbc); |
| 300 | if (err) { |
| 301 | /* Restore everything back so that we don't lose data... */ |
| 302 | lock_page(page); |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 303 | down_write(&iinfo->i_data_sem); |
Fabian Frederick | 5c26eac | 2017-04-23 20:58:34 +0200 | [diff] [blame] | 304 | kaddr = kmap_atomic(page); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 305 | memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, |
| 306 | inode->i_size); |
Fabian Frederick | 5c26eac | 2017-04-23 20:58:34 +0200 | [diff] [blame] | 307 | kunmap_atomic(kaddr); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 308 | unlock_page(page); |
| 309 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB; |
| 310 | inode->i_data.a_ops = &udf_adinicb_aops; |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 311 | up_write(&iinfo->i_data_sem); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 312 | } |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 313 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | mark_inode_dirty(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 315 | |
| 316 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 319 | struct buffer_head *udf_expand_dir_adinicb(struct inode *inode, |
| 320 | udf_pblk_t *block, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | { |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 322 | udf_pblk_t newblock; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 323 | struct buffer_head *dbh = NULL; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 324 | struct kernel_lb_addr eloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | uint8_t alloctype; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 326 | struct extent_position epos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
| 328 | struct udf_fileident_bh sfibh, dfibh; |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 329 | loff_t f_pos = udf_ext0_offset(inode); |
| 330 | int size = udf_ext0_offset(inode) + inode->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | struct fileIdentDesc cfi, *sfi, *dfi; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 332 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_USE_SHORT_AD)) |
| 335 | alloctype = ICBTAG_FLAG_AD_SHORT; |
| 336 | else |
| 337 | alloctype = ICBTAG_FLAG_AD_LONG; |
| 338 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 339 | if (!inode->i_size) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 340 | iinfo->i_alloc_type = alloctype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | mark_inode_dirty(inode); |
| 342 | return NULL; |
| 343 | } |
| 344 | |
| 345 | /* alloc block, and copy data to it */ |
| 346 | *block = udf_new_block(inode->i_sb, inode, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 347 | iinfo->i_location.partitionReferenceNum, |
| 348 | iinfo->i_location.logicalBlockNum, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | if (!(*block)) |
| 350 | return NULL; |
| 351 | newblock = udf_get_pblock(inode->i_sb, *block, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 352 | iinfo->i_location.partitionReferenceNum, |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 353 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | if (!newblock) |
| 355 | return NULL; |
| 356 | dbh = udf_tgetblk(inode->i_sb, newblock); |
| 357 | if (!dbh) |
| 358 | return NULL; |
| 359 | lock_buffer(dbh); |
| 360 | memset(dbh->b_data, 0x00, inode->i_sb->s_blocksize); |
| 361 | set_buffer_uptodate(dbh); |
| 362 | unlock_buffer(dbh); |
| 363 | mark_buffer_dirty_inode(dbh, inode); |
| 364 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 365 | sfibh.soffset = sfibh.eoffset = |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 366 | f_pos & (inode->i_sb->s_blocksize - 1); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 367 | sfibh.sbh = sfibh.ebh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | dfibh.soffset = dfibh.eoffset = 0; |
| 369 | dfibh.sbh = dfibh.ebh = dbh; |
Jan Kara | af79329 | 2008-02-08 04:20:50 -0800 | [diff] [blame] | 370 | while (f_pos < size) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 371 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 372 | sfi = udf_fileident_read(inode, &f_pos, &sfibh, &cfi, NULL, |
| 373 | NULL, NULL, NULL); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 374 | if (!sfi) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 375 | brelse(dbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | return NULL; |
| 377 | } |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 378 | iinfo->i_alloc_type = alloctype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | sfi->descTag.tagLocation = cpu_to_le32(*block); |
| 380 | dfibh.soffset = dfibh.eoffset; |
| 381 | dfibh.eoffset += (sfibh.eoffset - sfibh.soffset); |
| 382 | dfi = (struct fileIdentDesc *)(dbh->b_data + dfibh.soffset); |
| 383 | if (udf_write_fi(inode, sfi, dfi, &dfibh, sfi->impUse, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 384 | sfi->fileIdent + |
| 385 | le16_to_cpu(sfi->lengthOfImpUse))) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 386 | iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB; |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 387 | brelse(dbh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | return NULL; |
| 389 | } |
| 390 | } |
| 391 | mark_buffer_dirty_inode(dbh, inode); |
| 392 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 393 | memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr, 0, |
| 394 | iinfo->i_lenAlloc); |
| 395 | iinfo->i_lenAlloc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | eloc.logicalBlockNum = *block; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 397 | eloc.partitionReferenceNum = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 398 | iinfo->i_location.partitionReferenceNum; |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 399 | iinfo->i_lenExtents = inode->i_size; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 400 | epos.bh = NULL; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 401 | epos.block = iinfo->i_location; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 402 | epos.offset = udf_file_entry_alloc_offset(inode); |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 403 | udf_add_aext(inode, &epos, &eloc, inode->i_size, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | /* UniqueID stuff */ |
| 405 | |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 406 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | mark_inode_dirty(inode); |
| 408 | return dbh; |
| 409 | } |
| 410 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 411 | static int udf_get_block(struct inode *inode, sector_t block, |
| 412 | struct buffer_head *bh_result, int create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { |
| 414 | int err, new; |
Marcin Slusarz | 1ed1617 | 2008-02-08 04:20:48 -0800 | [diff] [blame] | 415 | sector_t phys = 0; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 416 | struct udf_inode_info *iinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 418 | if (!create) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | phys = udf_block_map(inode, block); |
| 420 | if (phys) |
| 421 | map_bh(bh_result, inode->i_sb, phys); |
| 422 | return 0; |
| 423 | } |
| 424 | |
| 425 | err = -EIO; |
| 426 | new = 0; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 427 | iinfo = UDF_I(inode); |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 428 | |
| 429 | down_write(&iinfo->i_data_sem); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 430 | if (block == iinfo->i_next_alloc_block + 1) { |
| 431 | iinfo->i_next_alloc_block++; |
| 432 | iinfo->i_next_alloc_goal++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 435 | udf_clear_extent_cache(inode); |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 436 | phys = inode_getblk(inode, block, &err, &new); |
| 437 | if (!phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | goto abort; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
| 440 | if (new) |
| 441 | set_buffer_new(bh_result); |
| 442 | map_bh(bh_result, inode->i_sb, phys); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 443 | |
| 444 | abort: |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 445 | up_write(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 449 | static struct buffer_head *udf_getblk(struct inode *inode, udf_pblk_t block, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 450 | int create, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 452 | struct buffer_head *bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | struct buffer_head dummy; |
| 454 | |
| 455 | dummy.b_state = 0; |
| 456 | dummy.b_blocknr = -1000; |
| 457 | *err = udf_get_block(inode, block, &dummy, create); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 458 | if (!*err && buffer_mapped(&dummy)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | bh = sb_getblk(inode->i_sb, dummy.b_blocknr); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 460 | if (buffer_new(&dummy)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | lock_buffer(bh); |
| 462 | memset(bh->b_data, 0x00, inode->i_sb->s_blocksize); |
| 463 | set_buffer_uptodate(bh); |
| 464 | unlock_buffer(bh); |
| 465 | mark_buffer_dirty_inode(bh, inode); |
| 466 | } |
| 467 | return bh; |
| 468 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return NULL; |
| 471 | } |
| 472 | |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 473 | /* Extend the file with new blocks totaling 'new_block_bytes', |
| 474 | * return the number of extents added |
| 475 | */ |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 476 | static int udf_do_extend_file(struct inode *inode, |
| 477 | struct extent_position *last_pos, |
| 478 | struct kernel_long_ad *last_ext, |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 479 | loff_t new_block_bytes) |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 480 | { |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 481 | uint32_t add; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 482 | int count = 0, fake = !(last_ext->extLength & UDF_EXTENT_LENGTH_MASK); |
| 483 | struct super_block *sb = inode->i_sb; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 484 | struct kernel_lb_addr prealloc_loc = {}; |
Steve Magnani | 89a4d97 | 2017-10-12 08:48:42 -0500 | [diff] [blame] | 485 | uint32_t prealloc_len = 0; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 486 | struct udf_inode_info *iinfo; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 487 | int err; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 488 | |
| 489 | /* The previous extent is fake and we should not extend by anything |
| 490 | * - there's nothing to do... */ |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 491 | if (!new_block_bytes && fake) |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 492 | return 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 493 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 494 | iinfo = UDF_I(inode); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 495 | /* Round the last extent up to a multiple of block size */ |
| 496 | if (last_ext->extLength & (sb->s_blocksize - 1)) { |
| 497 | last_ext->extLength = |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 498 | (last_ext->extLength & UDF_EXTENT_FLAG_MASK) | |
| 499 | (((last_ext->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 500 | sb->s_blocksize - 1) & ~(sb->s_blocksize - 1)); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 501 | iinfo->i_lenExtents = |
| 502 | (iinfo->i_lenExtents + sb->s_blocksize - 1) & |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 503 | ~(sb->s_blocksize - 1); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 504 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 505 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 506 | /* Last extent are just preallocated blocks? */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 507 | if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) == |
| 508 | EXT_NOT_RECORDED_ALLOCATED) { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 509 | /* Save the extent so that we can reattach it to the end */ |
| 510 | prealloc_loc = last_ext->extLocation; |
| 511 | prealloc_len = last_ext->extLength; |
| 512 | /* Mark the extent as a hole */ |
| 513 | last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 514 | (last_ext->extLength & UDF_EXTENT_LENGTH_MASK); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 515 | last_ext->extLocation.logicalBlockNum = 0; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 516 | last_ext->extLocation.partitionReferenceNum = 0; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 517 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 518 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 519 | /* Can we merge with the previous extent? */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 520 | if ((last_ext->extLength & UDF_EXTENT_FLAG_MASK) == |
| 521 | EXT_NOT_RECORDED_NOT_ALLOCATED) { |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 522 | add = (1 << 30) - sb->s_blocksize - |
| 523 | (last_ext->extLength & UDF_EXTENT_LENGTH_MASK); |
| 524 | if (add > new_block_bytes) |
| 525 | add = new_block_bytes; |
| 526 | new_block_bytes -= add; |
| 527 | last_ext->extLength += add; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | if (fake) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 531 | udf_add_aext(inode, last_pos, &last_ext->extLocation, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 532 | last_ext->extLength, 1); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 533 | count++; |
Jan Kara | 6c37157 | 2015-12-23 18:05:03 +0100 | [diff] [blame] | 534 | } else { |
| 535 | struct kernel_lb_addr tmploc; |
| 536 | uint32_t tmplen; |
| 537 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 538 | udf_write_aext(inode, last_pos, &last_ext->extLocation, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 539 | last_ext->extLength, 1); |
Jan Kara | 6c37157 | 2015-12-23 18:05:03 +0100 | [diff] [blame] | 540 | /* |
| 541 | * We've rewritten the last extent but there may be empty |
| 542 | * indirect extent after it - enter it. |
| 543 | */ |
| 544 | udf_next_aext(inode, last_pos, &tmploc, &tmplen, 0); |
| 545 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 546 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 547 | /* Managed to do everything necessary? */ |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 548 | if (!new_block_bytes) |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 549 | goto out; |
| 550 | |
| 551 | /* All further extents will be NOT_RECORDED_NOT_ALLOCATED */ |
| 552 | last_ext->extLocation.logicalBlockNum = 0; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 553 | last_ext->extLocation.partitionReferenceNum = 0; |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 554 | add = (1 << 30) - sb->s_blocksize; |
| 555 | last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | add; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 556 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 557 | /* Create enough extents to cover the whole hole */ |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 558 | while (new_block_bytes > add) { |
| 559 | new_block_bytes -= add; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 560 | err = udf_add_aext(inode, last_pos, &last_ext->extLocation, |
| 561 | last_ext->extLength, 1); |
| 562 | if (err) |
| 563 | return err; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 564 | count++; |
| 565 | } |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 566 | if (new_block_bytes) { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 567 | last_ext->extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 568 | new_block_bytes; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 569 | err = udf_add_aext(inode, last_pos, &last_ext->extLocation, |
| 570 | last_ext->extLength, 1); |
| 571 | if (err) |
| 572 | return err; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 573 | count++; |
| 574 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 575 | |
| 576 | out: |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 577 | /* Do we have some preallocated blocks saved? */ |
| 578 | if (prealloc_len) { |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 579 | err = udf_add_aext(inode, last_pos, &prealloc_loc, |
| 580 | prealloc_len, 1); |
| 581 | if (err) |
| 582 | return err; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 583 | last_ext->extLocation = prealloc_loc; |
| 584 | last_ext->extLength = prealloc_len; |
| 585 | count++; |
| 586 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 587 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 588 | /* last_pos should point to the last written extent... */ |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 589 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 590 | last_pos->offset -= sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 591 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 592 | last_pos->offset -= sizeof(struct long_ad); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 593 | else |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 594 | return -EIO; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 595 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 596 | return count; |
| 597 | } |
| 598 | |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 599 | /* Extend the final block of the file to final_block_len bytes */ |
| 600 | static void udf_do_extend_final_block(struct inode *inode, |
| 601 | struct extent_position *last_pos, |
| 602 | struct kernel_long_ad *last_ext, |
| 603 | uint32_t final_block_len) |
| 604 | { |
| 605 | struct super_block *sb = inode->i_sb; |
| 606 | uint32_t added_bytes; |
| 607 | |
| 608 | added_bytes = final_block_len - |
| 609 | (last_ext->extLength & (sb->s_blocksize - 1)); |
| 610 | last_ext->extLength += added_bytes; |
| 611 | UDF_I(inode)->i_lenExtents += added_bytes; |
| 612 | |
| 613 | udf_write_aext(inode, last_pos, &last_ext->extLocation, |
| 614 | last_ext->extLength, 1); |
| 615 | } |
| 616 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 617 | static int udf_extend_file(struct inode *inode, loff_t newsize) |
| 618 | { |
| 619 | |
| 620 | struct extent_position epos; |
| 621 | struct kernel_lb_addr eloc; |
| 622 | uint32_t elen; |
| 623 | int8_t etype; |
| 624 | struct super_block *sb = inode->i_sb; |
| 625 | sector_t first_block = newsize >> sb->s_blocksize_bits, offset; |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 626 | unsigned long partial_final_block; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 627 | int adsize; |
| 628 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 629 | struct kernel_long_ad extent; |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 630 | int err = 0; |
| 631 | int within_final_block; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 632 | |
| 633 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
| 634 | adsize = sizeof(struct short_ad); |
| 635 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
| 636 | adsize = sizeof(struct long_ad); |
| 637 | else |
| 638 | BUG(); |
| 639 | |
| 640 | etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset); |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 641 | within_final_block = (etype != -1); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 642 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 643 | if ((!epos.bh && epos.offset == udf_file_entry_alloc_offset(inode)) || |
| 644 | (epos.bh && epos.offset == sizeof(struct allocExtDesc))) { |
| 645 | /* File has no extents at all or has empty last |
| 646 | * indirect extent! Create a fake extent... */ |
| 647 | extent.extLocation.logicalBlockNum = 0; |
| 648 | extent.extLocation.partitionReferenceNum = 0; |
| 649 | extent.extLength = EXT_NOT_RECORDED_NOT_ALLOCATED; |
| 650 | } else { |
| 651 | epos.offset -= adsize; |
| 652 | etype = udf_next_aext(inode, &epos, &extent.extLocation, |
| 653 | &extent.extLength, 0); |
| 654 | extent.extLength |= etype << 30; |
| 655 | } |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 656 | |
| 657 | partial_final_block = newsize & (sb->s_blocksize - 1); |
| 658 | |
| 659 | /* File has extent covering the new size (could happen when extending |
| 660 | * inside a block)? |
| 661 | */ |
| 662 | if (within_final_block) { |
| 663 | /* Extending file within the last file block */ |
| 664 | udf_do_extend_final_block(inode, &epos, &extent, |
| 665 | partial_final_block); |
| 666 | } else { |
| 667 | loff_t add = ((loff_t)offset << sb->s_blocksize_bits) | |
| 668 | partial_final_block; |
| 669 | err = udf_do_extend_file(inode, &epos, &extent, add); |
| 670 | } |
| 671 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 672 | if (err < 0) |
| 673 | goto out; |
| 674 | err = 0; |
| 675 | iinfo->i_lenExtents = newsize; |
| 676 | out: |
| 677 | brelse(epos.bh); |
| 678 | return err; |
| 679 | } |
| 680 | |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 681 | static sector_t inode_getblk(struct inode *inode, sector_t block, |
| 682 | int *err, int *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 684 | struct kernel_long_ad laarr[EXTENT_MERGE_SIZE]; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 685 | struct extent_position prev_epos, cur_epos, next_epos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | int count = 0, startnum = 0, endnum = 0; |
Jan Kara | 85d7124 | 2007-06-01 00:46:29 -0700 | [diff] [blame] | 687 | uint32_t elen = 0, tmpelen; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 688 | struct kernel_lb_addr eloc, tmpeloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | int c = 1; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 690 | loff_t lbcount = 0, b_off = 0; |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 691 | udf_pblk_t newblocknum, newblock; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 692 | sector_t offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | int8_t etype; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 694 | struct udf_inode_info *iinfo = UDF_I(inode); |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 695 | udf_pblk_t goal = 0, pgoal = iinfo->i_location.logicalBlockNum; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 696 | int lastblock = 0; |
Namjae Jeon | fb719c5 | 2012-10-10 00:09:12 +0900 | [diff] [blame] | 697 | bool isBeyondEOF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 699 | *err = 0; |
| 700 | *new = 0; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 701 | prev_epos.offset = udf_file_entry_alloc_offset(inode); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 702 | prev_epos.block = iinfo->i_location; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 703 | prev_epos.bh = NULL; |
| 704 | cur_epos = next_epos = prev_epos; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 705 | b_off = (loff_t)block << inode->i_sb->s_blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
| 707 | /* find the extent which contains the block we are looking for. |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 708 | alternate between laarr[0] and laarr[1] for locations of the |
| 709 | current extent, and the previous extent */ |
| 710 | do { |
| 711 | if (prev_epos.bh != cur_epos.bh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 712 | brelse(prev_epos.bh); |
| 713 | get_bh(cur_epos.bh); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 714 | prev_epos.bh = cur_epos.bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 716 | if (cur_epos.bh != next_epos.bh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 717 | brelse(cur_epos.bh); |
| 718 | get_bh(next_epos.bh); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 719 | cur_epos.bh = next_epos.bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | lbcount += elen; |
| 723 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 724 | prev_epos.block = cur_epos.block; |
| 725 | cur_epos.block = next_epos.block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 727 | prev_epos.offset = cur_epos.offset; |
| 728 | cur_epos.offset = next_epos.offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 730 | etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1); |
| 731 | if (etype == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | break; |
| 733 | |
| 734 | c = !c; |
| 735 | |
| 736 | laarr[c].extLength = (etype << 30) | elen; |
| 737 | laarr[c].extLocation = eloc; |
| 738 | |
| 739 | if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) |
| 740 | pgoal = eloc.logicalBlockNum + |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 741 | ((elen + inode->i_sb->s_blocksize - 1) >> |
| 742 | inode->i_sb->s_blocksize_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 744 | count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } while (lbcount + elen <= b_off); |
| 746 | |
| 747 | b_off -= lbcount; |
| 748 | offset = b_off >> inode->i_sb->s_blocksize_bits; |
Jan Kara | 85d7124 | 2007-06-01 00:46:29 -0700 | [diff] [blame] | 749 | /* |
| 750 | * Move prev_epos and cur_epos into indirect extent if we are at |
| 751 | * the pointer to it |
| 752 | */ |
| 753 | udf_next_aext(inode, &prev_epos, &tmpeloc, &tmpelen, 0); |
| 754 | udf_next_aext(inode, &cur_epos, &tmpeloc, &tmpelen, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
| 756 | /* if the extent is allocated and recorded, return the block |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 757 | if the extent is not a multiple of the blocksize, round up */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 759 | if (etype == (EXT_RECORDED_ALLOCATED >> 30)) { |
| 760 | if (elen & (inode->i_sb->s_blocksize - 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | elen = EXT_RECORDED_ALLOCATED | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 762 | ((elen + inode->i_sb->s_blocksize - 1) & |
| 763 | ~(inode->i_sb->s_blocksize - 1)); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 764 | udf_write_aext(inode, &cur_epos, &eloc, elen, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 766 | newblock = udf_get_lb_pblock(inode->i_sb, &eloc, offset); |
Fabian Frederick | 02d4ca4 | 2017-01-06 21:53:51 +0100 | [diff] [blame] | 767 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
| 769 | |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 770 | /* Are we beyond EOF? */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 771 | if (etype == -1) { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 772 | int ret; |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 773 | loff_t hole_len; |
Fabian Frederick | 6981498 | 2015-02-04 18:26:27 +0100 | [diff] [blame] | 774 | isBeyondEOF = true; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 775 | if (count) { |
| 776 | if (c) |
| 777 | laarr[0] = laarr[1]; |
| 778 | startnum = 1; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 779 | } else { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 780 | /* Create a fake extent when there's not one */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 781 | memset(&laarr[0].extLocation, 0x00, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 782 | sizeof(struct kernel_lb_addr)); |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 783 | laarr[0].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED; |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 784 | /* Will udf_do_extend_file() create real extent from |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 785 | a fake one? */ |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 786 | startnum = (offset > 0); |
| 787 | } |
| 788 | /* Create extents for the hole between EOF and offset */ |
Steven J. Magnani | fa33cdb | 2019-06-30 21:39:35 -0500 | [diff] [blame^] | 789 | hole_len = (loff_t)offset << inode->i_blkbits; |
| 790 | ret = udf_do_extend_file(inode, &prev_epos, laarr, hole_len); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 791 | if (ret < 0) { |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 792 | *err = ret; |
Fabian Frederick | 02d4ca4 | 2017-01-06 21:53:51 +0100 | [diff] [blame] | 793 | newblock = 0; |
| 794 | goto out_free; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 795 | } |
| 796 | c = 0; |
| 797 | offset = 0; |
| 798 | count += ret; |
| 799 | /* We are not covered by a preallocated extent? */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 800 | if ((laarr[0].extLength & UDF_EXTENT_FLAG_MASK) != |
| 801 | EXT_NOT_RECORDED_ALLOCATED) { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 802 | /* Is there any real extent? - otherwise we overwrite |
| 803 | * the fake one... */ |
| 804 | if (count) |
| 805 | c = !c; |
| 806 | laarr[c].extLength = EXT_NOT_RECORDED_NOT_ALLOCATED | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 807 | inode->i_sb->s_blocksize; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 808 | memset(&laarr[c].extLocation, 0x00, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 809 | sizeof(struct kernel_lb_addr)); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 810 | count++; |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 811 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 812 | endnum = c + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | lastblock = 1; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 814 | } else { |
Fabian Frederick | 6981498 | 2015-02-04 18:26:27 +0100 | [diff] [blame] | 815 | isBeyondEOF = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | endnum = startnum = ((count > 2) ? 2 : count); |
| 817 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 818 | /* if the current extent is in position 0, |
| 819 | swap it with the previous */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 820 | if (!c && count != 1) { |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 821 | laarr[2] = laarr[0]; |
| 822 | laarr[0] = laarr[1]; |
| 823 | laarr[1] = laarr[2]; |
| 824 | c = 1; |
| 825 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 827 | /* if the current block is located in an extent, |
| 828 | read the next extent */ |
| 829 | etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0); |
| 830 | if (etype != -1) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 831 | laarr[c + 1].extLength = (etype << 30) | elen; |
| 832 | laarr[c + 1].extLocation = eloc; |
| 833 | count++; |
| 834 | startnum++; |
| 835 | endnum++; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 836 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | lastblock = 1; |
| 838 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | /* if the current extent is not recorded but allocated, get the |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 841 | * block in the extent corresponding to the requested block */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 842 | if ((laarr[c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | newblocknum = laarr[c].extLocation.logicalBlockNum + offset; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 844 | else { /* otherwise, allocate a new block */ |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 845 | if (iinfo->i_next_alloc_block == block) |
| 846 | goal = iinfo->i_next_alloc_goal; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 848 | if (!goal) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 849 | if (!(goal = pgoal)) /* XXX: what was intended here? */ |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 850 | goal = iinfo->i_location.logicalBlockNum + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } |
| 852 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 853 | newblocknum = udf_new_block(inode->i_sb, inode, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 854 | iinfo->i_location.partitionReferenceNum, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 855 | goal, err); |
| 856 | if (!newblocknum) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | *err = -ENOSPC; |
Fabian Frederick | 02d4ca4 | 2017-01-06 21:53:51 +0100 | [diff] [blame] | 858 | newblock = 0; |
| 859 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } |
Namjae Jeon | fb719c5 | 2012-10-10 00:09:12 +0900 | [diff] [blame] | 861 | if (isBeyondEOF) |
| 862 | iinfo->i_lenExtents += inode->i_sb->s_blocksize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
| 864 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 865 | /* if the extent the requsted block is located in contains multiple |
| 866 | * blocks, split the extent into at most three extents. blocks prior |
| 867 | * to requested block, requested block, and blocks after requested |
| 868 | * block */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | udf_split_extents(inode, &c, offset, newblocknum, laarr, &endnum); |
| 870 | |
Jan Kara | 81056dd | 2009-07-16 18:02:25 +0200 | [diff] [blame] | 871 | /* We preallocate blocks only for regular files. It also makes sense |
| 872 | * for directories but there's a problem when to drop the |
| 873 | * preallocation. We might use some delayed work for that but I feel |
| 874 | * it's overengineering for a filesystem like UDF. */ |
| 875 | if (S_ISREG(inode->i_mode)) |
| 876 | udf_prealloc_extents(inode, c, lastblock, laarr, &endnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
| 878 | /* merge any continuous blocks in laarr */ |
| 879 | udf_merge_extents(inode, laarr, &endnum); |
| 880 | |
| 881 | /* write back the new extents, inserting new extents if the new number |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 882 | * of extents is greater than the old number, and deleting extents if |
| 883 | * the new number of extents is less than the old number */ |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 884 | udf_update_extents(inode, laarr, startnum, endnum, &prev_epos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 886 | newblock = udf_get_pblock(inode->i_sb, newblocknum, |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 887 | iinfo->i_location.partitionReferenceNum, 0); |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 888 | if (!newblock) { |
| 889 | *err = -EIO; |
Fabian Frederick | 02d4ca4 | 2017-01-06 21:53:51 +0100 | [diff] [blame] | 890 | goto out_free; |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 891 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | *new = 1; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 893 | iinfo->i_next_alloc_block = block; |
| 894 | iinfo->i_next_alloc_goal = newblocknum; |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 895 | inode->i_ctime = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | if (IS_SYNC(inode)) |
| 898 | udf_sync_inode(inode); |
| 899 | else |
| 900 | mark_inode_dirty(inode); |
Fabian Frederick | 02d4ca4 | 2017-01-06 21:53:51 +0100 | [diff] [blame] | 901 | out_free: |
| 902 | brelse(prev_epos.bh); |
| 903 | brelse(cur_epos.bh); |
| 904 | brelse(next_epos.bh); |
Jan Kara | 7b0b093 | 2011-12-10 01:43:33 +0100 | [diff] [blame] | 905 | return newblock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } |
| 907 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 908 | static void udf_split_extents(struct inode *inode, int *c, int offset, |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 909 | udf_pblk_t newblocknum, |
| 910 | struct kernel_long_ad *laarr, int *endnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 912 | unsigned long blocksize = inode->i_sb->s_blocksize; |
| 913 | unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits; |
| 914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | if ((laarr[*c].extLength >> 30) == (EXT_NOT_RECORDED_ALLOCATED >> 30) || |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 916 | (laarr[*c].extLength >> 30) == |
| 917 | (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | int curr = *c; |
| 919 | int blen = ((laarr[curr].extLength & UDF_EXTENT_LENGTH_MASK) + |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 920 | blocksize - 1) >> blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | int8_t etype = (laarr[curr].extLength >> 30); |
| 922 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 923 | if (blen == 1) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 924 | ; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 925 | else if (!offset || blen == offset + 1) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 926 | laarr[curr + 2] = laarr[curr + 1]; |
| 927 | laarr[curr + 1] = laarr[curr]; |
| 928 | } else { |
| 929 | laarr[curr + 3] = laarr[curr + 1]; |
| 930 | laarr[curr + 2] = laarr[curr + 1] = laarr[curr]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | } |
| 932 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 933 | if (offset) { |
| 934 | if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 935 | udf_free_blocks(inode->i_sb, inode, |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 936 | &laarr[curr].extLocation, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 937 | 0, offset); |
| 938 | laarr[curr].extLength = |
| 939 | EXT_NOT_RECORDED_NOT_ALLOCATED | |
| 940 | (offset << blocksize_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | laarr[curr].extLocation.logicalBlockNum = 0; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 942 | laarr[curr].extLocation. |
| 943 | partitionReferenceNum = 0; |
| 944 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | laarr[curr].extLength = (etype << 30) | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 946 | (offset << blocksize_bits); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 947 | curr++; |
| 948 | (*c)++; |
| 949 | (*endnum)++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | } |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | laarr[curr].extLocation.logicalBlockNum = newblocknum; |
| 953 | if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) |
| 954 | laarr[curr].extLocation.partitionReferenceNum = |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 955 | UDF_I(inode)->i_location.partitionReferenceNum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | laarr[curr].extLength = EXT_RECORDED_ALLOCATED | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 957 | blocksize; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 958 | curr++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 960 | if (blen != offset + 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 962 | laarr[curr].extLocation.logicalBlockNum += |
| 963 | offset + 1; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 964 | laarr[curr].extLength = (etype << 30) | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 965 | ((blen - (offset + 1)) << blocksize_bits); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 966 | curr++; |
| 967 | (*endnum)++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | } |
| 971 | |
| 972 | static void udf_prealloc_extents(struct inode *inode, int c, int lastblock, |
Fabian Frederick | 3cc6f84 | 2017-01-06 21:53:50 +0100 | [diff] [blame] | 973 | struct kernel_long_ad *laarr, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 974 | int *endnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | { |
| 976 | int start, length = 0, currlength = 0, i; |
| 977 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 978 | if (*endnum >= (c + 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | if (!lastblock) |
| 980 | return; |
| 981 | else |
| 982 | start = c; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 983 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 984 | if ((laarr[c + 1].extLength >> 30) == |
| 985 | (EXT_NOT_RECORDED_ALLOCATED >> 30)) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 986 | start = c + 1; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 987 | length = currlength = |
| 988 | (((laarr[c + 1].extLength & |
| 989 | UDF_EXTENT_LENGTH_MASK) + |
| 990 | inode->i_sb->s_blocksize - 1) >> |
| 991 | inode->i_sb->s_blocksize_bits); |
| 992 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | start = c; |
| 994 | } |
| 995 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 996 | for (i = start + 1; i <= *endnum; i++) { |
| 997 | if (i == *endnum) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | if (lastblock) |
| 999 | length += UDF_DEFAULT_PREALLOC_BLOCKS; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1000 | } else if ((laarr[i].extLength >> 30) == |
| 1001 | (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) { |
| 1002 | length += (((laarr[i].extLength & |
| 1003 | UDF_EXTENT_LENGTH_MASK) + |
| 1004 | inode->i_sb->s_blocksize - 1) >> |
| 1005 | inode->i_sb->s_blocksize_bits); |
| 1006 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | break; |
| 1008 | } |
| 1009 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1010 | if (length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | int next = laarr[start].extLocation.logicalBlockNum + |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1012 | (((laarr[start].extLength & UDF_EXTENT_LENGTH_MASK) + |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1013 | inode->i_sb->s_blocksize - 1) >> |
| 1014 | inode->i_sb->s_blocksize_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | int numalloc = udf_prealloc_blocks(inode->i_sb, inode, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1016 | laarr[start].extLocation.partitionReferenceNum, |
| 1017 | next, (UDF_DEFAULT_PREALLOC_BLOCKS > length ? |
| 1018 | length : UDF_DEFAULT_PREALLOC_BLOCKS) - |
| 1019 | currlength); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1020 | if (numalloc) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1021 | if (start == (c + 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | laarr[start].extLength += |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1023 | (numalloc << |
| 1024 | inode->i_sb->s_blocksize_bits); |
| 1025 | else { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1026 | memmove(&laarr[c + 2], &laarr[c + 1], |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1027 | sizeof(struct long_ad) * (*endnum - (c + 1))); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1028 | (*endnum)++; |
| 1029 | laarr[c + 1].extLocation.logicalBlockNum = next; |
| 1030 | laarr[c + 1].extLocation.partitionReferenceNum = |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1031 | laarr[c].extLocation. |
| 1032 | partitionReferenceNum; |
| 1033 | laarr[c + 1].extLength = |
| 1034 | EXT_NOT_RECORDED_ALLOCATED | |
| 1035 | (numalloc << |
| 1036 | inode->i_sb->s_blocksize_bits); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1037 | start = c + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1040 | for (i = start + 1; numalloc && i < *endnum; i++) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1041 | int elen = ((laarr[i].extLength & |
| 1042 | UDF_EXTENT_LENGTH_MASK) + |
| 1043 | inode->i_sb->s_blocksize - 1) >> |
| 1044 | inode->i_sb->s_blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1046 | if (elen > numalloc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | laarr[i].extLength -= |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1048 | (numalloc << |
| 1049 | inode->i_sb->s_blocksize_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | numalloc = 0; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1051 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | numalloc -= elen; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1053 | if (*endnum > (i + 1)) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1054 | memmove(&laarr[i], |
| 1055 | &laarr[i + 1], |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1056 | sizeof(struct long_ad) * |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1057 | (*endnum - (i + 1))); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1058 | i--; |
| 1059 | (*endnum)--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | } |
| 1061 | } |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1062 | UDF_I(inode)->i_lenExtents += |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1063 | numalloc << inode->i_sb->s_blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | } |
| 1065 | } |
| 1066 | } |
| 1067 | |
Fabian Frederick | 3cc6f84 | 2017-01-06 21:53:50 +0100 | [diff] [blame] | 1068 | static void udf_merge_extents(struct inode *inode, struct kernel_long_ad *laarr, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1069 | int *endnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | { |
| 1071 | int i; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1072 | unsigned long blocksize = inode->i_sb->s_blocksize; |
| 1073 | unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1075 | for (i = 0; i < (*endnum - 1); i++) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1076 | struct kernel_long_ad *li /*l[i]*/ = &laarr[i]; |
| 1077 | struct kernel_long_ad *lip1 /*l[i plus 1]*/ = &laarr[i + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1079 | if (((li->extLength >> 30) == (lip1->extLength >> 30)) && |
| 1080 | (((li->extLength >> 30) == |
| 1081 | (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) || |
| 1082 | ((lip1->extLocation.logicalBlockNum - |
| 1083 | li->extLocation.logicalBlockNum) == |
| 1084 | (((li->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 1085 | blocksize - 1) >> blocksize_bits)))) { |
| 1086 | |
| 1087 | if (((li->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 1088 | (lip1->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 1089 | blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) { |
| 1090 | lip1->extLength = (lip1->extLength - |
| 1091 | (li->extLength & |
| 1092 | UDF_EXTENT_LENGTH_MASK) + |
| 1093 | UDF_EXTENT_LENGTH_MASK) & |
| 1094 | ~(blocksize - 1); |
| 1095 | li->extLength = (li->extLength & |
| 1096 | UDF_EXTENT_FLAG_MASK) + |
| 1097 | (UDF_EXTENT_LENGTH_MASK + 1) - |
| 1098 | blocksize; |
| 1099 | lip1->extLocation.logicalBlockNum = |
| 1100 | li->extLocation.logicalBlockNum + |
| 1101 | ((li->extLength & |
| 1102 | UDF_EXTENT_LENGTH_MASK) >> |
| 1103 | blocksize_bits); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1104 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1105 | li->extLength = lip1->extLength + |
| 1106 | (((li->extLength & |
| 1107 | UDF_EXTENT_LENGTH_MASK) + |
| 1108 | blocksize - 1) & ~(blocksize - 1)); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1109 | if (*endnum > (i + 2)) |
| 1110 | memmove(&laarr[i + 1], &laarr[i + 2], |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1111 | sizeof(struct long_ad) * |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1112 | (*endnum - (i + 2))); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1113 | i--; |
| 1114 | (*endnum)--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1116 | } else if (((li->extLength >> 30) == |
| 1117 | (EXT_NOT_RECORDED_ALLOCATED >> 30)) && |
| 1118 | ((lip1->extLength >> 30) == |
| 1119 | (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1120 | udf_free_blocks(inode->i_sb, inode, &li->extLocation, 0, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1121 | ((li->extLength & |
| 1122 | UDF_EXTENT_LENGTH_MASK) + |
| 1123 | blocksize - 1) >> blocksize_bits); |
| 1124 | li->extLocation.logicalBlockNum = 0; |
| 1125 | li->extLocation.partitionReferenceNum = 0; |
| 1126 | |
| 1127 | if (((li->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 1128 | (lip1->extLength & UDF_EXTENT_LENGTH_MASK) + |
| 1129 | blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) { |
| 1130 | lip1->extLength = (lip1->extLength - |
| 1131 | (li->extLength & |
| 1132 | UDF_EXTENT_LENGTH_MASK) + |
| 1133 | UDF_EXTENT_LENGTH_MASK) & |
| 1134 | ~(blocksize - 1); |
| 1135 | li->extLength = (li->extLength & |
| 1136 | UDF_EXTENT_FLAG_MASK) + |
| 1137 | (UDF_EXTENT_LENGTH_MASK + 1) - |
| 1138 | blocksize; |
| 1139 | } else { |
| 1140 | li->extLength = lip1->extLength + |
| 1141 | (((li->extLength & |
| 1142 | UDF_EXTENT_LENGTH_MASK) + |
| 1143 | blocksize - 1) & ~(blocksize - 1)); |
| 1144 | if (*endnum > (i + 2)) |
| 1145 | memmove(&laarr[i + 1], &laarr[i + 2], |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1146 | sizeof(struct long_ad) * |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1147 | (*endnum - (i + 2))); |
| 1148 | i--; |
| 1149 | (*endnum)--; |
| 1150 | } |
| 1151 | } else if ((li->extLength >> 30) == |
| 1152 | (EXT_NOT_RECORDED_ALLOCATED >> 30)) { |
| 1153 | udf_free_blocks(inode->i_sb, inode, |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1154 | &li->extLocation, 0, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1155 | ((li->extLength & |
| 1156 | UDF_EXTENT_LENGTH_MASK) + |
| 1157 | blocksize - 1) >> blocksize_bits); |
| 1158 | li->extLocation.logicalBlockNum = 0; |
| 1159 | li->extLocation.partitionReferenceNum = 0; |
| 1160 | li->extLength = (li->extLength & |
| 1161 | UDF_EXTENT_LENGTH_MASK) | |
| 1162 | EXT_NOT_RECORDED_NOT_ALLOCATED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
| 1164 | } |
| 1165 | } |
| 1166 | |
Fabian Frederick | 3cc6f84 | 2017-01-06 21:53:50 +0100 | [diff] [blame] | 1167 | static void udf_update_extents(struct inode *inode, struct kernel_long_ad *laarr, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1168 | int startnum, int endnum, |
| 1169 | struct extent_position *epos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | { |
| 1171 | int start = 0, i; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1172 | struct kernel_lb_addr tmploc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | uint32_t tmplen; |
| 1174 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1175 | if (startnum > endnum) { |
| 1176 | for (i = 0; i < (startnum - endnum); i++) |
Jan Kara | 6c1e4d0 | 2018-06-13 18:04:24 +0200 | [diff] [blame] | 1177 | udf_delete_aext(inode, *epos); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1178 | } else if (startnum < endnum) { |
| 1179 | for (i = 0; i < (endnum - startnum); i++) { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 1180 | udf_insert_aext(inode, *epos, laarr[i].extLocation, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1181 | laarr[i].extLength); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 1182 | udf_next_aext(inode, epos, &laarr[i].extLocation, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1183 | &laarr[i].extLength, 1); |
| 1184 | start++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | } |
| 1186 | } |
| 1187 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1188 | for (i = start; i < endnum; i++) { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 1189 | udf_next_aext(inode, epos, &tmploc, &tmplen, 0); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1190 | udf_write_aext(inode, epos, &laarr[i].extLocation, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1191 | laarr[i].extLength, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | } |
| 1193 | } |
| 1194 | |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 1195 | struct buffer_head *udf_bread(struct inode *inode, udf_pblk_t block, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1196 | int create, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1198 | struct buffer_head *bh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | |
| 1200 | bh = udf_getblk(inode, block, create, err); |
| 1201 | if (!bh) |
| 1202 | return NULL; |
| 1203 | |
| 1204 | if (buffer_uptodate(bh)) |
| 1205 | return bh; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1206 | |
Mike Christie | dfec8a1 | 2016-06-05 14:31:44 -0500 | [diff] [blame] | 1207 | ll_rw_block(REQ_OP_READ, 0, 1, &bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | wait_on_buffer(bh); |
| 1210 | if (buffer_uptodate(bh)) |
| 1211 | return bh; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | brelse(bh); |
| 1214 | *err = -EIO; |
| 1215 | return NULL; |
| 1216 | } |
| 1217 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1218 | int udf_setsize(struct inode *inode, loff_t newsize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | int err; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1221 | struct udf_inode_info *iinfo; |
Steve Magnani | 89a4d97 | 2017-10-12 08:48:42 -0500 | [diff] [blame] | 1222 | unsigned int bsize = i_blocksize(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | |
| 1224 | if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1225 | S_ISLNK(inode->i_mode))) |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1226 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1228 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1230 | iinfo = UDF_I(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1231 | if (newsize > inode->i_size) { |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 1232 | down_write(&iinfo->i_data_sem); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1233 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 1234 | if (bsize < |
| 1235 | (udf_file_entry_alloc_offset(inode) + newsize)) { |
| 1236 | err = udf_expand_file_adinicb(inode); |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 1237 | if (err) |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1238 | return err; |
Jan Kara | d2eb8c3 | 2011-12-10 02:30:48 +0100 | [diff] [blame] | 1239 | down_write(&iinfo->i_data_sem); |
Ian Abbott | bb2b6d1 | 2012-07-23 16:39:29 +0000 | [diff] [blame] | 1240 | } else { |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1241 | iinfo->i_lenAlloc = newsize; |
Ian Abbott | bb2b6d1 | 2012-07-23 16:39:29 +0000 | [diff] [blame] | 1242 | goto set_size; |
| 1243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | } |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1245 | err = udf_extend_file(inode, newsize); |
| 1246 | if (err) { |
| 1247 | up_write(&iinfo->i_data_sem); |
| 1248 | return err; |
| 1249 | } |
Ian Abbott | bb2b6d1 | 2012-07-23 16:39:29 +0000 | [diff] [blame] | 1250 | set_size: |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 1251 | up_write(&iinfo->i_data_sem); |
Jan Kara | f2e9535 | 2017-06-13 16:20:25 +0200 | [diff] [blame] | 1252 | truncate_setsize(inode, newsize); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1253 | } else { |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1254 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 1255 | down_write(&iinfo->i_data_sem); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 1256 | udf_clear_extent_cache(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1257 | memset(iinfo->i_ext.i_data + iinfo->i_lenEAttr + newsize, |
| 1258 | 0x00, bsize - newsize - |
| 1259 | udf_file_entry_alloc_offset(inode)); |
| 1260 | iinfo->i_lenAlloc = newsize; |
| 1261 | truncate_setsize(inode, newsize); |
| 1262 | up_write(&iinfo->i_data_sem); |
| 1263 | goto update_time; |
| 1264 | } |
| 1265 | err = block_truncate_page(inode->i_mapping, newsize, |
| 1266 | udf_get_block); |
| 1267 | if (err) |
| 1268 | return err; |
Jan Kara | f2e9535 | 2017-06-13 16:20:25 +0200 | [diff] [blame] | 1269 | truncate_setsize(inode, newsize); |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 1270 | down_write(&iinfo->i_data_sem); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 1271 | udf_clear_extent_cache(inode); |
Jan Kara | 2b42be5 | 2019-03-11 15:27:02 +0100 | [diff] [blame] | 1272 | err = udf_truncate_extents(inode); |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 1273 | up_write(&iinfo->i_data_sem); |
Jan Kara | 2b42be5 | 2019-03-11 15:27:02 +0100 | [diff] [blame] | 1274 | if (err) |
| 1275 | return err; |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1276 | } |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1277 | update_time: |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 1278 | inode->i_mtime = inode->i_ctime = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | if (IS_SYNC(inode)) |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1280 | udf_sync_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | else |
| 1282 | mark_inode_dirty(inode); |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1283 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | } |
| 1285 | |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1286 | /* |
| 1287 | * Maximum length of linked list formed by ICB hierarchy. The chosen number is |
| 1288 | * arbitrary - just that we hopefully don't limit any real use of rewritten |
| 1289 | * inode on write-once media but avoid looping for too long on corrupted media. |
| 1290 | */ |
| 1291 | #define UDF_MAX_ICB_NESTING 1024 |
| 1292 | |
Jan Kara | 6174c2e | 2014-10-09 12:52:16 +0200 | [diff] [blame] | 1293 | static int udf_read_inode(struct inode *inode, bool hidden_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | { |
| 1295 | struct buffer_head *bh = NULL; |
| 1296 | struct fileEntry *fe; |
Jan Kara | bb7720a0 | 2014-09-04 13:32:50 +0200 | [diff] [blame] | 1297 | struct extendedFileEntry *efe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | uint16_t ident; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1299 | struct udf_inode_info *iinfo = UDF_I(inode); |
Jan Kara | bb7720a0 | 2014-09-04 13:32:50 +0200 | [diff] [blame] | 1300 | struct udf_sb_info *sbi = UDF_SB(inode->i_sb); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1301 | struct kernel_lb_addr *iloc = &iinfo->i_location; |
Jan Kara | bb7720a0 | 2014-09-04 13:32:50 +0200 | [diff] [blame] | 1302 | unsigned int link_count; |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1303 | unsigned int indirections = 0; |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1304 | int bs = inode->i_sb->s_blocksize; |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1305 | int ret = -EIO; |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1306 | uint32_t uid, gid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1308 | reread: |
Fabian Frederick | 1d82a56 | 2017-01-06 21:54:43 +0100 | [diff] [blame] | 1309 | if (iloc->partitionReferenceNum >= sbi->s_partitions) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1310 | udf_debug("partition reference: %u > logical volume partitions: %u\n", |
Fabian Frederick | 1d82a56 | 2017-01-06 21:54:43 +0100 | [diff] [blame] | 1311 | iloc->partitionReferenceNum, sbi->s_partitions); |
| 1312 | return -EIO; |
| 1313 | } |
| 1314 | |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1315 | if (iloc->logicalBlockNum >= |
| 1316 | sbi->s_partmaps[iloc->partitionReferenceNum].s_partition_len) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1317 | udf_debug("block=%u, partition=%u out of range\n", |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1318 | iloc->logicalBlockNum, iloc->partitionReferenceNum); |
| 1319 | return -EIO; |
| 1320 | } |
| 1321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | /* |
| 1323 | * Set defaults, but the inode is still incomplete! |
| 1324 | * Note: get_new_inode() sets the following on a new inode: |
| 1325 | * i_sb = sb |
| 1326 | * i_no = ino |
| 1327 | * i_flags = sb->s_flags |
| 1328 | * i_state = 0 |
| 1329 | * clean_inode(): zero fills and sets |
| 1330 | * i_count = 1 |
| 1331 | * i_nlink = 1 |
| 1332 | * i_op = NULL; |
| 1333 | */ |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1334 | bh = udf_read_ptagged(inode->i_sb, iloc, 0, &ident); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1335 | if (!bh) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1336 | udf_err(inode->i_sb, "(ino %lu) failed !bh\n", inode->i_ino); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1337 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE && |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1341 | ident != TAG_IDENT_USE) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1342 | udf_err(inode->i_sb, "(ino %lu) failed ident=%u\n", |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1343 | inode->i_ino, ident); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1344 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | fe = (struct fileEntry *)bh->b_data; |
Jan Kara | bb7720a0 | 2014-09-04 13:32:50 +0200 | [diff] [blame] | 1348 | efe = (struct extendedFileEntry *)bh->b_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1350 | if (fe->icbTag.strategyType == cpu_to_le16(4096)) { |
marcin.slusarz@gmail.com | 1ab9278 | 2008-01-30 22:03:58 +0100 | [diff] [blame] | 1351 | struct buffer_head *ibh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1353 | ibh = udf_read_ptagged(inode->i_sb, iloc, 1, &ident); |
marcin.slusarz@gmail.com | 1ab9278 | 2008-01-30 22:03:58 +0100 | [diff] [blame] | 1354 | if (ident == TAG_IDENT_IE && ibh) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1355 | struct kernel_lb_addr loc; |
marcin.slusarz@gmail.com | 1ab9278 | 2008-01-30 22:03:58 +0100 | [diff] [blame] | 1356 | struct indirectEntry *ie; |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1357 | |
marcin.slusarz@gmail.com | 1ab9278 | 2008-01-30 22:03:58 +0100 | [diff] [blame] | 1358 | ie = (struct indirectEntry *)ibh->b_data; |
| 1359 | loc = lelb_to_cpu(ie->indirectICB.extLocation); |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1360 | |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1361 | if (ie->indirectICB.extLength) { |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1362 | brelse(ibh); |
| 1363 | memcpy(&iinfo->i_location, &loc, |
| 1364 | sizeof(struct kernel_lb_addr)); |
| 1365 | if (++indirections > UDF_MAX_ICB_NESTING) { |
| 1366 | udf_err(inode->i_sb, |
| 1367 | "too many ICBs in ICB hierarchy" |
| 1368 | " (max %d supported)\n", |
| 1369 | UDF_MAX_ICB_NESTING); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1370 | goto out; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1371 | } |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1372 | brelse(bh); |
Jan Kara | c03aa9f | 2014-09-04 14:06:55 +0200 | [diff] [blame] | 1373 | goto reread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1375 | } |
marcin.slusarz@gmail.com | 1ab9278 | 2008-01-30 22:03:58 +0100 | [diff] [blame] | 1376 | brelse(ibh); |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1377 | } else if (fe->icbTag.strategyType != cpu_to_le16(4)) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1378 | udf_err(inode->i_sb, "unsupported strategy type: %u\n", |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1379 | le16_to_cpu(fe->icbTag.strategyType)); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1380 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | } |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1382 | if (fe->icbTag.strategyType == cpu_to_le16(4)) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1383 | iinfo->i_strat4096 = 0; |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1384 | else /* if (fe->icbTag.strategyType == cpu_to_le16(4096)) */ |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1385 | iinfo->i_strat4096 = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1387 | iinfo->i_alloc_type = le16_to_cpu(fe->icbTag.flags) & |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1388 | ICBTAG_FLAG_AD_MASK; |
Jan Kara | d288d95 | 2018-12-12 14:29:20 +0100 | [diff] [blame] | 1389 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_SHORT && |
| 1390 | iinfo->i_alloc_type != ICBTAG_FLAG_AD_LONG && |
| 1391 | iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
| 1392 | ret = -EIO; |
| 1393 | goto out; |
| 1394 | } |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1395 | iinfo->i_unique = 0; |
| 1396 | iinfo->i_lenEAttr = 0; |
| 1397 | iinfo->i_lenExtents = 0; |
| 1398 | iinfo->i_lenAlloc = 0; |
| 1399 | iinfo->i_next_alloc_block = 0; |
| 1400 | iinfo->i_next_alloc_goal = 0; |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1401 | if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_EFE)) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1402 | iinfo->i_efe = 1; |
| 1403 | iinfo->i_use = 0; |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1404 | ret = udf_alloc_i_data(inode, bs - |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1405 | sizeof(struct extendedFileEntry)); |
| 1406 | if (ret) |
| 1407 | goto out; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1408 | memcpy(iinfo->i_ext.i_data, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1409 | bh->b_data + sizeof(struct extendedFileEntry), |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1410 | bs - sizeof(struct extendedFileEntry)); |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1411 | } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_FE)) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1412 | iinfo->i_efe = 0; |
| 1413 | iinfo->i_use = 0; |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1414 | ret = udf_alloc_i_data(inode, bs - sizeof(struct fileEntry)); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1415 | if (ret) |
| 1416 | goto out; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1417 | memcpy(iinfo->i_ext.i_data, |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1418 | bh->b_data + sizeof(struct fileEntry), |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1419 | bs - sizeof(struct fileEntry)); |
Marcin Slusarz | 5e0f001 | 2008-02-08 04:20:41 -0800 | [diff] [blame] | 1420 | } else if (fe->descTag.tagIdent == cpu_to_le16(TAG_IDENT_USE)) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1421 | iinfo->i_efe = 0; |
| 1422 | iinfo->i_use = 1; |
| 1423 | iinfo->i_lenAlloc = le32_to_cpu( |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1424 | ((struct unallocSpaceEntry *)bh->b_data)-> |
| 1425 | lengthAllocDescs); |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1426 | ret = udf_alloc_i_data(inode, bs - |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1427 | sizeof(struct unallocSpaceEntry)); |
| 1428 | if (ret) |
| 1429 | goto out; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1430 | memcpy(iinfo->i_ext.i_data, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1431 | bh->b_data + sizeof(struct unallocSpaceEntry), |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1432 | bs - sizeof(struct unallocSpaceEntry)); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1433 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1436 | ret = -EIO; |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 1437 | read_lock(&sbi->s_cred_lock); |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1438 | uid = le32_to_cpu(fe->uid); |
| 1439 | if (uid == UDF_INVALID_ID || |
Cyrill Gorcunov | ca76d2d | 2007-07-31 00:39:40 -0700 | [diff] [blame] | 1440 | UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_SET)) |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1441 | inode->i_uid = sbi->s_uid; |
| 1442 | else |
| 1443 | i_uid_write(inode, uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1445 | gid = le32_to_cpu(fe->gid); |
| 1446 | if (gid == UDF_INVALID_ID || |
Cyrill Gorcunov | ca76d2d | 2007-07-31 00:39:40 -0700 | [diff] [blame] | 1447 | UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_SET)) |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1448 | inode->i_gid = sbi->s_gid; |
| 1449 | else |
| 1450 | i_gid_write(inode, gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 1452 | if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY && |
Marcin Slusarz | 87bc730 | 2008-12-02 13:40:11 +0100 | [diff] [blame] | 1453 | sbi->s_fmode != UDF_INVALID_MODE) |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 1454 | inode->i_mode = sbi->s_fmode; |
| 1455 | else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY && |
Marcin Slusarz | 87bc730 | 2008-12-02 13:40:11 +0100 | [diff] [blame] | 1456 | sbi->s_dmode != UDF_INVALID_MODE) |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 1457 | inode->i_mode = sbi->s_dmode; |
| 1458 | else |
| 1459 | inode->i_mode = udf_convert_permissions(fe); |
| 1460 | inode->i_mode &= ~sbi->s_umask; |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 1461 | read_unlock(&sbi->s_cred_lock); |
| 1462 | |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1463 | link_count = le16_to_cpu(fe->fileLinkCount); |
Jan Kara | 4071b91 | 2014-09-04 16:19:47 +0200 | [diff] [blame] | 1464 | if (!link_count) { |
Jan Kara | 6174c2e | 2014-10-09 12:52:16 +0200 | [diff] [blame] | 1465 | if (!hidden_inode) { |
| 1466 | ret = -ESTALE; |
| 1467 | goto out; |
| 1468 | } |
| 1469 | link_count = 1; |
Jan Kara | 4071b91 | 2014-09-04 16:19:47 +0200 | [diff] [blame] | 1470 | } |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1471 | set_nlink(inode, link_count); |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 1472 | |
| 1473 | inode->i_size = le64_to_cpu(fe->informationLength); |
| 1474 | iinfo->i_lenExtents = inode->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1476 | if (iinfo->i_efe == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) << |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1478 | (inode->i_sb->s_blocksize_bits - 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1480 | udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime); |
| 1481 | udf_disk_stamp_to_time(&inode->i_mtime, fe->modificationTime); |
| 1482 | udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1484 | iinfo->i_unique = le64_to_cpu(fe->uniqueID); |
| 1485 | iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr); |
| 1486 | iinfo->i_lenAlloc = le32_to_cpu(fe->lengthAllocDescs); |
Steve Nickel | d5e2cf0 | 2012-02-14 00:28:42 -0500 | [diff] [blame] | 1487 | iinfo->i_checkpoint = le32_to_cpu(fe->checkpoint); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1488 | } else { |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1489 | inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) << |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1490 | (inode->i_sb->s_blocksize_bits - 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1492 | udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime); |
| 1493 | udf_disk_stamp_to_time(&inode->i_mtime, efe->modificationTime); |
Deepa Dinamani | 0220edd | 2018-05-10 08:26:17 -0700 | [diff] [blame] | 1494 | udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime); |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1495 | udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1497 | iinfo->i_unique = le64_to_cpu(efe->uniqueID); |
| 1498 | iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr); |
| 1499 | iinfo->i_lenAlloc = le32_to_cpu(efe->lengthAllocDescs); |
Steve Nickel | d5e2cf0 | 2012-02-14 00:28:42 -0500 | [diff] [blame] | 1500 | iinfo->i_checkpoint = le32_to_cpu(efe->checkpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | } |
Jan Kara | 470cca5 | 2014-09-04 16:26:19 +0200 | [diff] [blame] | 1502 | inode->i_generation = iinfo->i_unique; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | |
Jan Kara | 23b133bd | 2015-01-07 13:49:08 +0100 | [diff] [blame] | 1504 | /* |
| 1505 | * Sanity check length of allocation descriptors and extended attrs to |
| 1506 | * avoid integer overflows |
| 1507 | */ |
| 1508 | if (iinfo->i_lenEAttr > bs || iinfo->i_lenAlloc > bs) |
| 1509 | goto out; |
| 1510 | /* Now do exact checks */ |
| 1511 | if (udf_file_entry_alloc_offset(inode) + iinfo->i_lenAlloc > bs) |
| 1512 | goto out; |
Jan Kara | e159332 | 2014-12-19 12:03:53 +0100 | [diff] [blame] | 1513 | /* Sanity checks for files in ICB so that we don't get confused later */ |
| 1514 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 1515 | /* |
| 1516 | * For file in ICB data is stored in allocation descriptor |
| 1517 | * so sizes should match |
| 1518 | */ |
| 1519 | if (iinfo->i_lenAlloc != inode->i_size) |
| 1520 | goto out; |
| 1521 | /* File in ICB has to fit in there... */ |
Jan Kara | 7914495 | 2015-01-07 13:46:16 +0100 | [diff] [blame] | 1522 | if (inode->i_size > bs - udf_file_entry_alloc_offset(inode)) |
Jan Kara | e159332 | 2014-12-19 12:03:53 +0100 | [diff] [blame] | 1523 | goto out; |
| 1524 | } |
| 1525 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1526 | switch (fe->icbTag.fileType) { |
| 1527 | case ICBTAG_FILE_TYPE_DIRECTORY: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1528 | inode->i_op = &udf_dir_inode_operations; |
| 1529 | inode->i_fop = &udf_dir_operations; |
| 1530 | inode->i_mode |= S_IFDIR; |
| 1531 | inc_nlink(inode); |
| 1532 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1533 | case ICBTAG_FILE_TYPE_REALTIME: |
| 1534 | case ICBTAG_FILE_TYPE_REGULAR: |
| 1535 | case ICBTAG_FILE_TYPE_UNDEF: |
Jan Kara | 742e179 | 2008-04-08 01:17:52 +0200 | [diff] [blame] | 1536 | case ICBTAG_FILE_TYPE_VAT20: |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1537 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1538 | inode->i_data.a_ops = &udf_adinicb_aops; |
| 1539 | else |
| 1540 | inode->i_data.a_ops = &udf_aops; |
| 1541 | inode->i_op = &udf_file_inode_operations; |
| 1542 | inode->i_fop = &udf_file_operations; |
| 1543 | inode->i_mode |= S_IFREG; |
| 1544 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1545 | case ICBTAG_FILE_TYPE_BLOCK: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1546 | inode->i_mode |= S_IFBLK; |
| 1547 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1548 | case ICBTAG_FILE_TYPE_CHAR: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1549 | inode->i_mode |= S_IFCHR; |
| 1550 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1551 | case ICBTAG_FILE_TYPE_FIFO: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1552 | init_special_inode(inode, inode->i_mode | S_IFIFO, 0); |
| 1553 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1554 | case ICBTAG_FILE_TYPE_SOCKET: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1555 | init_special_inode(inode, inode->i_mode | S_IFSOCK, 0); |
| 1556 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1557 | case ICBTAG_FILE_TYPE_SYMLINK: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1558 | inode->i_data.a_ops = &udf_symlink_aops; |
Jan Kara | ad4d053 | 2017-01-02 14:30:31 +0100 | [diff] [blame] | 1559 | inode->i_op = &udf_symlink_inode_operations; |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 1560 | inode_nohighmem(inode); |
Fabian Frederick | 6ff6b2b | 2017-04-23 20:58:15 +0200 | [diff] [blame] | 1561 | inode->i_mode = S_IFLNK | 0777; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1562 | break; |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1563 | case ICBTAG_FILE_TYPE_MAIN: |
| 1564 | udf_debug("METADATA FILE-----\n"); |
| 1565 | break; |
| 1566 | case ICBTAG_FILE_TYPE_MIRROR: |
| 1567 | udf_debug("METADATA MIRROR FILE-----\n"); |
| 1568 | break; |
| 1569 | case ICBTAG_FILE_TYPE_BITMAP: |
| 1570 | udf_debug("METADATA BITMAP FILE-----\n"); |
| 1571 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1572 | default: |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 1573 | udf_err(inode->i_sb, "(ino %lu) failed unknown file type=%u\n", |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1574 | inode->i_ino, fe->icbTag.fileType); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1575 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1577 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1578 | struct deviceSpec *dsea = |
| 1579 | (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1580 | if (dsea) { |
| 1581 | init_special_inode(inode, inode->i_mode, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1582 | MKDEV(le32_to_cpu(dsea->majorDeviceIdent), |
| 1583 | le32_to_cpu(dsea->minorDeviceIdent))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | /* Developer ID ??? */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1585 | } else |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1586 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | } |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1588 | ret = 0; |
| 1589 | out: |
Jan Kara | bb7720a0 | 2014-09-04 13:32:50 +0200 | [diff] [blame] | 1590 | brelse(bh); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1591 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | } |
| 1593 | |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1594 | static int udf_alloc_i_data(struct inode *inode, size_t size) |
| 1595 | { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1596 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 1597 | iinfo->i_ext.i_data = kmalloc(size, GFP_KERNEL); |
Markus Elfring | b5f5245 | 2017-08-15 16:14:19 +0200 | [diff] [blame] | 1598 | if (!iinfo->i_ext.i_data) |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1599 | return -ENOMEM; |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 1600 | return 0; |
| 1601 | } |
| 1602 | |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 1603 | static umode_t udf_convert_permissions(struct fileEntry *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | { |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 1605 | umode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | uint32_t permissions; |
| 1607 | uint32_t flags; |
| 1608 | |
| 1609 | permissions = le32_to_cpu(fe->permissions); |
| 1610 | flags = le16_to_cpu(fe->icbTag.flags); |
| 1611 | |
Fabian Frederick | 6ff6b2b | 2017-04-23 20:58:15 +0200 | [diff] [blame] | 1612 | mode = ((permissions) & 0007) | |
| 1613 | ((permissions >> 2) & 0070) | |
| 1614 | ((permissions >> 4) & 0700) | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1615 | ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) | |
| 1616 | ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) | |
| 1617 | ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | |
| 1619 | return mode; |
| 1620 | } |
| 1621 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1622 | int udf_write_inode(struct inode *inode, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | { |
Jan Kara | 49521de | 2010-10-20 17:42:44 +0200 | [diff] [blame] | 1624 | return udf_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | } |
| 1626 | |
Jan Kara | 49521de | 2010-10-20 17:42:44 +0200 | [diff] [blame] | 1627 | static int udf_sync_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | { |
| 1629 | return udf_update_inode(inode, 1); |
| 1630 | } |
| 1631 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1632 | static void udf_adjust_time(struct udf_inode_info *iinfo, struct timespec64 time) |
Fabian Frederick | 7ed0fbd | 2017-01-06 21:53:54 +0100 | [diff] [blame] | 1633 | { |
| 1634 | if (iinfo->i_crtime.tv_sec > time.tv_sec || |
| 1635 | (iinfo->i_crtime.tv_sec == time.tv_sec && |
| 1636 | iinfo->i_crtime.tv_nsec > time.tv_nsec)) |
| 1637 | iinfo->i_crtime = time; |
| 1638 | } |
| 1639 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1640 | static int udf_update_inode(struct inode *inode, int do_sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | { |
| 1642 | struct buffer_head *bh = NULL; |
| 1643 | struct fileEntry *fe; |
| 1644 | struct extendedFileEntry *efe; |
Steve Nickel | b2527bf | 2012-02-16 12:53:53 -0500 | [diff] [blame] | 1645 | uint64_t lb_recorded; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | uint32_t udfperms; |
| 1647 | uint16_t icbflags; |
| 1648 | uint16_t crclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | int err = 0; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1650 | struct udf_sb_info *sbi = UDF_SB(inode->i_sb); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1651 | unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1652 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | |
Jan Kara | 5833ded | 2010-01-08 16:52:59 +0100 | [diff] [blame] | 1654 | bh = udf_tgetblk(inode->i_sb, |
| 1655 | udf_get_lb_pblock(inode->i_sb, &iinfo->i_location, 0)); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1656 | if (!bh) { |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1657 | udf_debug("getblk failure\n"); |
Changwoo Min | 0fd2ba3 | 2015-03-22 19:17:49 -0400 | [diff] [blame] | 1658 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | } |
| 1660 | |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1661 | lock_buffer(bh); |
| 1662 | memset(bh->b_data, 0, inode->i_sb->s_blocksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | fe = (struct fileEntry *)bh->b_data; |
| 1664 | efe = (struct extendedFileEntry *)bh->b_data; |
| 1665 | |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1666 | if (iinfo->i_use) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | struct unallocSpaceEntry *use = |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1668 | (struct unallocSpaceEntry *)bh->b_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1670 | use->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1671 | memcpy(bh->b_data + sizeof(struct unallocSpaceEntry), |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1672 | iinfo->i_ext.i_data, inode->i_sb->s_blocksize - |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1673 | sizeof(struct unallocSpaceEntry)); |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1674 | use->descTag.tagIdent = cpu_to_le16(TAG_IDENT_USE); |
Steven J. Magnani | 70f19f5 | 2015-07-07 13:06:05 -0500 | [diff] [blame] | 1675 | crclen = sizeof(struct unallocSpaceEntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | |
Steven J. Magnani | 70f19f5 | 2015-07-07 13:06:05 -0500 | [diff] [blame] | 1677 | goto finish; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | } |
| 1679 | |
Phillip Susi | 4d6660e | 2006-03-07 21:55:24 -0800 | [diff] [blame] | 1680 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_UID_FORGET)) |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1681 | fe->uid = cpu_to_le32(UDF_INVALID_ID); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1682 | else |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 1683 | fe->uid = cpu_to_le32(i_uid_read(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
Phillip Susi | 4d6660e | 2006-03-07 21:55:24 -0800 | [diff] [blame] | 1685 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_GID_FORGET)) |
Jan Kara | 0c9850f | 2018-02-22 10:28:52 +0100 | [diff] [blame] | 1686 | fe->gid = cpu_to_le32(UDF_INVALID_ID); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1687 | else |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 1688 | fe->gid = cpu_to_le32(i_gid_read(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | |
Fabian Frederick | 6ff6b2b | 2017-04-23 20:58:15 +0200 | [diff] [blame] | 1690 | udfperms = ((inode->i_mode & 0007)) | |
| 1691 | ((inode->i_mode & 0070) << 2) | |
| 1692 | ((inode->i_mode & 0700) << 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1694 | udfperms |= (le32_to_cpu(fe->permissions) & |
| 1695 | (FE_PERM_O_DELETE | FE_PERM_O_CHATTR | |
| 1696 | FE_PERM_G_DELETE | FE_PERM_G_CHATTR | |
| 1697 | FE_PERM_U_DELETE | FE_PERM_U_CHATTR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | fe->permissions = cpu_to_le32(udfperms); |
| 1699 | |
Jan Kara | 8a70ee3 | 2014-09-04 11:47:51 +0200 | [diff] [blame] | 1700 | if (S_ISDIR(inode->i_mode) && inode->i_nlink > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | fe->fileLinkCount = cpu_to_le16(inode->i_nlink - 1); |
| 1702 | else |
| 1703 | fe->fileLinkCount = cpu_to_le16(inode->i_nlink); |
| 1704 | |
| 1705 | fe->informationLength = cpu_to_le64(inode->i_size); |
| 1706 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1707 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1708 | struct regid *eid; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1709 | struct deviceSpec *dsea = |
| 1710 | (struct deviceSpec *)udf_get_extendedattr(inode, 12, 1); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1711 | if (!dsea) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | dsea = (struct deviceSpec *) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1713 | udf_add_extendedattr(inode, |
| 1714 | sizeof(struct deviceSpec) + |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1715 | sizeof(struct regid), 12, 0x3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | dsea->attrType = cpu_to_le32(12); |
| 1717 | dsea->attrSubtype = 1; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1718 | dsea->attrLength = cpu_to_le32( |
| 1719 | sizeof(struct deviceSpec) + |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1720 | sizeof(struct regid)); |
| 1721 | dsea->impUseLength = cpu_to_le32(sizeof(struct regid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | } |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1723 | eid = (struct regid *)dsea->impUse; |
Markus Elfring | 033c9da | 2017-08-15 16:45:44 +0200 | [diff] [blame] | 1724 | memset(eid, 0, sizeof(*eid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | strcpy(eid->ident, UDF_ID_DEVELOPER); |
| 1726 | eid->identSuffix[0] = UDF_OS_CLASS_UNIX; |
| 1727 | eid->identSuffix[1] = UDF_OS_ID_LINUX; |
| 1728 | dsea->majorDeviceIdent = cpu_to_le32(imajor(inode)); |
| 1729 | dsea->minorDeviceIdent = cpu_to_le32(iminor(inode)); |
| 1730 | } |
| 1731 | |
Steve Nickel | b2527bf | 2012-02-16 12:53:53 -0500 | [diff] [blame] | 1732 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) |
| 1733 | lb_recorded = 0; /* No extents => no blocks! */ |
| 1734 | else |
| 1735 | lb_recorded = |
| 1736 | (inode->i_blocks + (1 << (blocksize_bits - 9)) - 1) >> |
| 1737 | (blocksize_bits - 9); |
| 1738 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1739 | if (iinfo->i_efe == 0) { |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 1740 | memcpy(bh->b_data + sizeof(struct fileEntry), |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1741 | iinfo->i_ext.i_data, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1742 | inode->i_sb->s_blocksize - sizeof(struct fileEntry)); |
Steve Nickel | b2527bf | 2012-02-16 12:53:53 -0500 | [diff] [blame] | 1743 | fe->logicalBlocksRecorded = cpu_to_le64(lb_recorded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1745 | udf_time_to_disk_stamp(&fe->accessTime, inode->i_atime); |
| 1746 | udf_time_to_disk_stamp(&fe->modificationTime, inode->i_mtime); |
| 1747 | udf_time_to_disk_stamp(&fe->attrTime, inode->i_ctime); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1748 | memset(&(fe->impIdent), 0, sizeof(struct regid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | strcpy(fe->impIdent.ident, UDF_ID_DEVELOPER); |
| 1750 | fe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX; |
| 1751 | fe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1752 | fe->uniqueID = cpu_to_le64(iinfo->i_unique); |
| 1753 | fe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr); |
| 1754 | fe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc); |
Steve Nickel | d5e2cf0 | 2012-02-14 00:28:42 -0500 | [diff] [blame] | 1755 | fe->checkpoint = cpu_to_le32(iinfo->i_checkpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | fe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_FE); |
| 1757 | crclen = sizeof(struct fileEntry); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1758 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1759 | memcpy(bh->b_data + sizeof(struct extendedFileEntry), |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1760 | iinfo->i_ext.i_data, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1761 | inode->i_sb->s_blocksize - |
| 1762 | sizeof(struct extendedFileEntry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | efe->objectSize = cpu_to_le64(inode->i_size); |
Steve Nickel | b2527bf | 2012-02-16 12:53:53 -0500 | [diff] [blame] | 1764 | efe->logicalBlocksRecorded = cpu_to_le64(lb_recorded); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1766 | udf_adjust_time(iinfo, inode->i_atime); |
| 1767 | udf_adjust_time(iinfo, inode->i_mtime); |
| 1768 | udf_adjust_time(iinfo, inode->i_ctime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1770 | udf_time_to_disk_stamp(&efe->accessTime, inode->i_atime); |
| 1771 | udf_time_to_disk_stamp(&efe->modificationTime, inode->i_mtime); |
Marcin Slusarz | 5677480 | 2008-02-10 11:25:31 +0100 | [diff] [blame] | 1772 | udf_time_to_disk_stamp(&efe->createTime, iinfo->i_crtime); |
Arnd Bergmann | c3b9cec | 2018-06-20 10:15:13 +0200 | [diff] [blame] | 1773 | udf_time_to_disk_stamp(&efe->attrTime, inode->i_ctime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | |
Markus Elfring | 033c9da | 2017-08-15 16:45:44 +0200 | [diff] [blame] | 1775 | memset(&(efe->impIdent), 0, sizeof(efe->impIdent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | strcpy(efe->impIdent.ident, UDF_ID_DEVELOPER); |
| 1777 | efe->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX; |
| 1778 | efe->impIdent.identSuffix[1] = UDF_OS_ID_LINUX; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1779 | efe->uniqueID = cpu_to_le64(iinfo->i_unique); |
| 1780 | efe->lengthExtendedAttr = cpu_to_le32(iinfo->i_lenEAttr); |
| 1781 | efe->lengthAllocDescs = cpu_to_le32(iinfo->i_lenAlloc); |
Steve Nickel | d5e2cf0 | 2012-02-14 00:28:42 -0500 | [diff] [blame] | 1782 | efe->checkpoint = cpu_to_le32(iinfo->i_checkpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | efe->descTag.tagIdent = cpu_to_le16(TAG_IDENT_EFE); |
| 1784 | crclen = sizeof(struct extendedFileEntry); |
| 1785 | } |
Steven J. Magnani | 70f19f5 | 2015-07-07 13:06:05 -0500 | [diff] [blame] | 1786 | |
| 1787 | finish: |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1788 | if (iinfo->i_strat4096) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | fe->icbTag.strategyType = cpu_to_le16(4096); |
| 1790 | fe->icbTag.strategyParameter = cpu_to_le16(1); |
| 1791 | fe->icbTag.numEntries = cpu_to_le16(2); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1792 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | fe->icbTag.strategyType = cpu_to_le16(4); |
| 1794 | fe->icbTag.numEntries = cpu_to_le16(1); |
| 1795 | } |
| 1796 | |
Steven J. Magnani | 70f19f5 | 2015-07-07 13:06:05 -0500 | [diff] [blame] | 1797 | if (iinfo->i_use) |
| 1798 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_USE; |
| 1799 | else if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY; |
| 1801 | else if (S_ISREG(inode->i_mode)) |
| 1802 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR; |
| 1803 | else if (S_ISLNK(inode->i_mode)) |
| 1804 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK; |
| 1805 | else if (S_ISBLK(inode->i_mode)) |
| 1806 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK; |
| 1807 | else if (S_ISCHR(inode->i_mode)) |
| 1808 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR; |
| 1809 | else if (S_ISFIFO(inode->i_mode)) |
| 1810 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_FIFO; |
| 1811 | else if (S_ISSOCK(inode->i_mode)) |
| 1812 | fe->icbTag.fileType = ICBTAG_FILE_TYPE_SOCKET; |
| 1813 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1814 | icbflags = iinfo->i_alloc_type | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1815 | ((inode->i_mode & S_ISUID) ? ICBTAG_FLAG_SETUID : 0) | |
| 1816 | ((inode->i_mode & S_ISGID) ? ICBTAG_FLAG_SETGID : 0) | |
| 1817 | ((inode->i_mode & S_ISVTX) ? ICBTAG_FLAG_STICKY : 0) | |
| 1818 | (le16_to_cpu(fe->icbTag.flags) & |
| 1819 | ~(ICBTAG_FLAG_AD_MASK | ICBTAG_FLAG_SETUID | |
| 1820 | ICBTAG_FLAG_SETGID | ICBTAG_FLAG_STICKY)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | |
| 1822 | fe->icbTag.flags = cpu_to_le16(icbflags); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1823 | if (sbi->s_udfrev >= 0x0200) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | fe->descTag.descVersion = cpu_to_le16(3); |
| 1825 | else |
| 1826 | fe->descTag.descVersion = cpu_to_le16(2); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1827 | fe->descTag.tagSerialNum = cpu_to_le16(sbi->s_serial_number); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1828 | fe->descTag.tagLocation = cpu_to_le32( |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1829 | iinfo->i_location.logicalBlockNum); |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1830 | crclen += iinfo->i_lenEAttr + iinfo->i_lenAlloc - sizeof(struct tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | fe->descTag.descCRCLength = cpu_to_le16(crclen); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1832 | fe->descTag.descCRC = cpu_to_le16(crc_itu_t(0, (char *)fe + sizeof(struct tag), |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 1833 | crclen)); |
Marcin Slusarz | 3f2587b | 2008-02-08 04:20:39 -0800 | [diff] [blame] | 1834 | fe->descTag.tagChecksum = udf_tag_checksum(&fe->descTag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | |
Jan Kara | 5833ded | 2010-01-08 16:52:59 +0100 | [diff] [blame] | 1836 | set_buffer_uptodate(bh); |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1837 | unlock_buffer(bh); |
| 1838 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | /* write the data blocks */ |
| 1840 | mark_buffer_dirty(bh); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1841 | if (do_sync) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | sync_dirty_buffer(bh); |
Jan Kara | aae917c | 2010-01-08 16:46:29 +0100 | [diff] [blame] | 1843 | if (buffer_write_io_error(bh)) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1844 | udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n", |
| 1845 | inode->i_ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | err = -EIO; |
| 1847 | } |
| 1848 | } |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1849 | brelse(bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | return err; |
| 1852 | } |
| 1853 | |
Jan Kara | 6174c2e | 2014-10-09 12:52:16 +0200 | [diff] [blame] | 1854 | struct inode *__udf_iget(struct super_block *sb, struct kernel_lb_addr *ino, |
| 1855 | bool hidden_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | { |
| 1857 | unsigned long block = udf_get_lb_pblock(sb, ino, 0); |
| 1858 | struct inode *inode = iget_locked(sb, block); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1859 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | |
| 1861 | if (!inode) |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1862 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1864 | if (!(inode->i_state & I_NEW)) |
| 1865 | return inode; |
| 1866 | |
| 1867 | memcpy(&UDF_I(inode)->i_location, ino, sizeof(struct kernel_lb_addr)); |
Jan Kara | 6174c2e | 2014-10-09 12:52:16 +0200 | [diff] [blame] | 1868 | err = udf_read_inode(inode, hidden_inode); |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1869 | if (err < 0) { |
| 1870 | iget_failed(inode); |
| 1871 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | } |
Jan Kara | 6d3d5e8 | 2014-09-04 16:15:51 +0200 | [diff] [blame] | 1873 | unlock_new_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | |
| 1875 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 1878 | int udf_setup_indirect_aext(struct inode *inode, udf_pblk_t block, |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1879 | struct extent_position *epos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | { |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1881 | struct super_block *sb = inode->i_sb; |
| 1882 | struct buffer_head *bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | struct allocExtDesc *aed; |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1884 | struct extent_position nepos; |
| 1885 | struct kernel_lb_addr neloc; |
| 1886 | int ver, adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1888 | if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
| 1889 | adsize = sizeof(struct short_ad); |
| 1890 | else if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
| 1891 | adsize = sizeof(struct long_ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | else |
Arnd Bergmann | 4f1b151 | 2016-01-01 15:21:54 +0100 | [diff] [blame] | 1893 | return -EIO; |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1894 | |
| 1895 | neloc.logicalBlockNum = block; |
| 1896 | neloc.partitionReferenceNum = epos->block.partitionReferenceNum; |
| 1897 | |
| 1898 | bh = udf_tgetblk(sb, udf_get_lb_pblock(sb, &neloc, 0)); |
| 1899 | if (!bh) |
| 1900 | return -EIO; |
| 1901 | lock_buffer(bh); |
| 1902 | memset(bh->b_data, 0x00, sb->s_blocksize); |
| 1903 | set_buffer_uptodate(bh); |
| 1904 | unlock_buffer(bh); |
| 1905 | mark_buffer_dirty_inode(bh, inode); |
| 1906 | |
| 1907 | aed = (struct allocExtDesc *)(bh->b_data); |
| 1908 | if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT)) { |
| 1909 | aed->previousAllocExtLocation = |
| 1910 | cpu_to_le32(epos->block.logicalBlockNum); |
| 1911 | } |
| 1912 | aed->lengthAllocDescs = cpu_to_le32(0); |
| 1913 | if (UDF_SB(sb)->s_udfrev >= 0x0200) |
| 1914 | ver = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | else |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1916 | ver = 2; |
| 1917 | udf_new_tag(bh->b_data, TAG_IDENT_AED, ver, 1, block, |
| 1918 | sizeof(struct tag)); |
| 1919 | |
| 1920 | nepos.block = neloc; |
| 1921 | nepos.offset = sizeof(struct allocExtDesc); |
| 1922 | nepos.bh = bh; |
| 1923 | |
| 1924 | /* |
| 1925 | * Do we have to copy current last extent to make space for indirect |
| 1926 | * one? |
| 1927 | */ |
| 1928 | if (epos->offset + adsize > sb->s_blocksize) { |
| 1929 | struct kernel_lb_addr cp_loc; |
| 1930 | uint32_t cp_len; |
| 1931 | int cp_type; |
| 1932 | |
| 1933 | epos->offset -= adsize; |
| 1934 | cp_type = udf_current_aext(inode, epos, &cp_loc, &cp_len, 0); |
| 1935 | cp_len |= ((uint32_t)cp_type) << 30; |
| 1936 | |
| 1937 | __udf_add_aext(inode, &nepos, &cp_loc, cp_len, 1); |
| 1938 | udf_write_aext(inode, epos, &nepos.block, |
| 1939 | sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0); |
| 1940 | } else { |
| 1941 | __udf_add_aext(inode, epos, &nepos.block, |
| 1942 | sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0); |
| 1943 | } |
| 1944 | |
| 1945 | brelse(epos->bh); |
| 1946 | *epos = nepos; |
| 1947 | |
| 1948 | return 0; |
| 1949 | } |
| 1950 | |
| 1951 | /* |
| 1952 | * Append extent at the given position - should be the first free one in inode |
| 1953 | * / indirect extent. This function assumes there is enough space in the inode |
| 1954 | * or indirect extent. Use udf_add_aext() if you didn't check for this before. |
| 1955 | */ |
| 1956 | int __udf_add_aext(struct inode *inode, struct extent_position *epos, |
| 1957 | struct kernel_lb_addr *eloc, uint32_t elen, int inc) |
| 1958 | { |
| 1959 | struct udf_inode_info *iinfo = UDF_I(inode); |
| 1960 | struct allocExtDesc *aed; |
| 1961 | int adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1963 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1964 | adsize = sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1965 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1966 | adsize = sizeof(struct long_ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | else |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1968 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 1970 | if (!epos->bh) { |
| 1971 | WARN_ON(iinfo->i_lenAlloc != |
| 1972 | epos->offset - udf_file_entry_alloc_offset(inode)); |
| 1973 | } else { |
| 1974 | aed = (struct allocExtDesc *)epos->bh->b_data; |
| 1975 | WARN_ON(le32_to_cpu(aed->lengthAllocDescs) != |
| 1976 | epos->offset - sizeof(struct allocExtDesc)); |
| 1977 | WARN_ON(epos->offset + adsize > inode->i_sb->s_blocksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | } |
| 1979 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1980 | udf_write_aext(inode, epos, eloc, elen, inc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1982 | if (!epos->bh) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 1983 | iinfo->i_lenAlloc += adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | mark_inode_dirty(inode); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1985 | } else { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 1986 | aed = (struct allocExtDesc *)epos->bh->b_data; |
marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 1987 | le32_add_cpu(&aed->lengthAllocDescs, adsize); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1988 | if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || |
| 1989 | UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) |
| 1990 | udf_update_tag(epos->bh->b_data, |
| 1991 | epos->offset + (inc ? 0 : adsize)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | else |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1993 | udf_update_tag(epos->bh->b_data, |
| 1994 | sizeof(struct allocExtDesc)); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 1995 | mark_buffer_dirty_inode(epos->bh, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | } |
| 1997 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 1998 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | } |
| 2000 | |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 2001 | /* |
| 2002 | * Append extent at given position - should be the first free one in inode |
| 2003 | * / indirect extent. Takes care of allocating and linking indirect blocks. |
| 2004 | */ |
| 2005 | int udf_add_aext(struct inode *inode, struct extent_position *epos, |
| 2006 | struct kernel_lb_addr *eloc, uint32_t elen, int inc) |
| 2007 | { |
| 2008 | int adsize; |
| 2009 | struct super_block *sb = inode->i_sb; |
| 2010 | |
| 2011 | if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
| 2012 | adsize = sizeof(struct short_ad); |
| 2013 | else if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
| 2014 | adsize = sizeof(struct long_ad); |
| 2015 | else |
| 2016 | return -EIO; |
| 2017 | |
| 2018 | if (epos->offset + (2 * adsize) > sb->s_blocksize) { |
| 2019 | int err; |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 2020 | udf_pblk_t new_block; |
Jan Kara | fcea62b | 2015-12-23 14:21:13 +0100 | [diff] [blame] | 2021 | |
| 2022 | new_block = udf_new_block(sb, NULL, |
| 2023 | epos->block.partitionReferenceNum, |
| 2024 | epos->block.logicalBlockNum, &err); |
| 2025 | if (!new_block) |
| 2026 | return -ENOSPC; |
| 2027 | |
| 2028 | err = udf_setup_indirect_aext(inode, new_block, epos); |
| 2029 | if (err) |
| 2030 | return err; |
| 2031 | } |
| 2032 | |
| 2033 | return __udf_add_aext(inode, epos, eloc, elen, inc); |
| 2034 | } |
| 2035 | |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 2036 | void udf_write_aext(struct inode *inode, struct extent_position *epos, |
| 2037 | struct kernel_lb_addr *eloc, uint32_t elen, int inc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | { |
| 2039 | int adsize; |
| 2040 | uint8_t *ptr; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2041 | struct short_ad *sad; |
| 2042 | struct long_ad *lad; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2043 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2045 | if (!epos->bh) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2046 | ptr = iinfo->i_ext.i_data + epos->offset - |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2047 | udf_file_entry_alloc_offset(inode) + |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2048 | iinfo->i_lenEAttr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | else |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2050 | ptr = epos->bh->b_data + epos->offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2052 | switch (iinfo->i_alloc_type) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2053 | case ICBTAG_FLAG_AD_SHORT: |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2054 | sad = (struct short_ad *)ptr; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2055 | sad->extLength = cpu_to_le32(elen); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2056 | sad->extPosition = cpu_to_le32(eloc->logicalBlockNum); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2057 | adsize = sizeof(struct short_ad); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2058 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2059 | case ICBTAG_FLAG_AD_LONG: |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2060 | lad = (struct long_ad *)ptr; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2061 | lad->extLength = cpu_to_le32(elen); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2062 | lad->extLocation = cpu_to_lelb(*eloc); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2063 | memset(lad->impUse, 0x00, sizeof(lad->impUse)); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2064 | adsize = sizeof(struct long_ad); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2065 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2066 | default: |
Jan Kara | 7e49b6f | 2010-10-22 00:30:26 +0200 | [diff] [blame] | 2067 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | } |
| 2069 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2070 | if (epos->bh) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2071 | if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2072 | UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2073 | struct allocExtDesc *aed = |
| 2074 | (struct allocExtDesc *)epos->bh->b_data; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2075 | udf_update_tag(epos->bh->b_data, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2076 | le32_to_cpu(aed->lengthAllocDescs) + |
| 2077 | sizeof(struct allocExtDesc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | } |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2079 | mark_buffer_dirty_inode(epos->bh, inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2080 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | mark_inode_dirty(inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2082 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | |
| 2084 | if (inc) |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2085 | epos->offset += adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | } |
| 2087 | |
Vegard Nossum | b0918d9 | 2015-12-11 15:54:16 +0100 | [diff] [blame] | 2088 | /* |
| 2089 | * Only 1 indirect extent in a row really makes sense but allow upto 16 in case |
| 2090 | * someone does some weird stuff. |
| 2091 | */ |
| 2092 | #define UDF_MAX_INDIR_EXTS 16 |
| 2093 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2094 | int8_t udf_next_aext(struct inode *inode, struct extent_position *epos, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2095 | struct kernel_lb_addr *eloc, uint32_t *elen, int inc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | { |
| 2097 | int8_t etype; |
Vegard Nossum | b0918d9 | 2015-12-11 15:54:16 +0100 | [diff] [blame] | 2098 | unsigned int indirections = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2100 | while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) == |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2101 | (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) { |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 2102 | udf_pblk_t block; |
Vegard Nossum | b0918d9 | 2015-12-11 15:54:16 +0100 | [diff] [blame] | 2103 | |
| 2104 | if (++indirections > UDF_MAX_INDIR_EXTS) { |
| 2105 | udf_err(inode->i_sb, |
| 2106 | "too many indirect extents in inode %lu\n", |
| 2107 | inode->i_ino); |
| 2108 | return -1; |
| 2109 | } |
| 2110 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2111 | epos->block = *eloc; |
| 2112 | epos->offset = sizeof(struct allocExtDesc); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2113 | brelse(epos->bh); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2114 | block = udf_get_lb_pblock(inode->i_sb, &epos->block, 0); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2115 | epos->bh = udf_tread(inode->i_sb, block); |
| 2116 | if (!epos->bh) { |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 2117 | udf_debug("reading block %u failed!\n", block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | return -1; |
| 2119 | } |
| 2120 | } |
| 2121 | |
| 2122 | return etype; |
| 2123 | } |
| 2124 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2125 | int8_t udf_current_aext(struct inode *inode, struct extent_position *epos, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2126 | struct kernel_lb_addr *eloc, uint32_t *elen, int inc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | { |
| 2128 | int alen; |
| 2129 | int8_t etype; |
| 2130 | uint8_t *ptr; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2131 | struct short_ad *sad; |
| 2132 | struct long_ad *lad; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2133 | struct udf_inode_info *iinfo = UDF_I(inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2134 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2135 | if (!epos->bh) { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2136 | if (!epos->offset) |
| 2137 | epos->offset = udf_file_entry_alloc_offset(inode); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2138 | ptr = iinfo->i_ext.i_data + epos->offset - |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2139 | udf_file_entry_alloc_offset(inode) + |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2140 | iinfo->i_lenEAttr; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2141 | alen = udf_file_entry_alloc_offset(inode) + |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2142 | iinfo->i_lenAlloc; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2143 | } else { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2144 | if (!epos->offset) |
| 2145 | epos->offset = sizeof(struct allocExtDesc); |
| 2146 | ptr = epos->bh->b_data + epos->offset; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2147 | alen = sizeof(struct allocExtDesc) + |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2148 | le32_to_cpu(((struct allocExtDesc *)epos->bh->b_data)-> |
| 2149 | lengthAllocDescs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | } |
| 2151 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2152 | switch (iinfo->i_alloc_type) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2153 | case ICBTAG_FLAG_AD_SHORT: |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2154 | sad = udf_get_fileshortad(ptr, alen, &epos->offset, inc); |
| 2155 | if (!sad) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | return -1; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2157 | etype = le32_to_cpu(sad->extLength) >> 30; |
| 2158 | eloc->logicalBlockNum = le32_to_cpu(sad->extPosition); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2159 | eloc->partitionReferenceNum = |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2160 | iinfo->i_location.partitionReferenceNum; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2161 | *elen = le32_to_cpu(sad->extLength) & UDF_EXTENT_LENGTH_MASK; |
| 2162 | break; |
| 2163 | case ICBTAG_FLAG_AD_LONG: |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2164 | lad = udf_get_filelongad(ptr, alen, &epos->offset, inc); |
| 2165 | if (!lad) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2166 | return -1; |
| 2167 | etype = le32_to_cpu(lad->extLength) >> 30; |
| 2168 | *eloc = lelb_to_cpu(lad->extLocation); |
| 2169 | *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK; |
| 2170 | break; |
| 2171 | default: |
Steve Magnani | fcbf763 | 2017-10-12 08:48:41 -0500 | [diff] [blame] | 2172 | udf_debug("alloc_type = %u unsupported\n", iinfo->i_alloc_type); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2173 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | return etype; |
| 2177 | } |
| 2178 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2179 | static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2180 | struct kernel_lb_addr neloc, uint32_t nelen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2182 | struct kernel_lb_addr oeloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | uint32_t oelen; |
| 2184 | int8_t etype; |
| 2185 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2186 | if (epos.bh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2187 | get_bh(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2189 | while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2190 | udf_write_aext(inode, &epos, &neloc, nelen, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | neloc = oeloc; |
| 2192 | nelen = (etype << 30) | oelen; |
| 2193 | } |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2194 | udf_add_aext(inode, &epos, &neloc, nelen, 1); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2195 | brelse(epos.bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | return (nelen >> 30); |
| 2198 | } |
| 2199 | |
Jan Kara | 6c1e4d0 | 2018-06-13 18:04:24 +0200 | [diff] [blame] | 2200 | int8_t udf_delete_aext(struct inode *inode, struct extent_position epos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2202 | struct extent_position oepos; |
| 2203 | int adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | int8_t etype; |
| 2205 | struct allocExtDesc *aed; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2206 | struct udf_inode_info *iinfo; |
Jan Kara | 6c1e4d0 | 2018-06-13 18:04:24 +0200 | [diff] [blame] | 2207 | struct kernel_lb_addr eloc; |
| 2208 | uint32_t elen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2210 | if (epos.bh) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2211 | get_bh(epos.bh); |
| 2212 | get_bh(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2215 | iinfo = UDF_I(inode); |
| 2216 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2217 | adsize = sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2218 | else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2219 | adsize = sizeof(struct long_ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | else |
| 2221 | adsize = 0; |
| 2222 | |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2223 | oepos = epos; |
| 2224 | if (udf_next_aext(inode, &epos, &eloc, &elen, 1) == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | return -1; |
| 2226 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2227 | while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2228 | udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2229 | if (oepos.bh != epos.bh) { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2230 | oepos.block = epos.block; |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2231 | brelse(oepos.bh); |
| 2232 | get_bh(epos.bh); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2233 | oepos.bh = epos.bh; |
| 2234 | oepos.offset = epos.offset - adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | } |
| 2236 | } |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2237 | memset(&eloc, 0x00, sizeof(struct kernel_lb_addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | elen = 0; |
| 2239 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2240 | if (epos.bh != oepos.bh) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2241 | udf_free_blocks(inode->i_sb, inode, &epos.block, 0, 1); |
| 2242 | udf_write_aext(inode, &oepos, &eloc, elen, 1); |
| 2243 | udf_write_aext(inode, &oepos, &eloc, elen, 1); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2244 | if (!oepos.bh) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2245 | iinfo->i_lenAlloc -= (adsize * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | mark_inode_dirty(inode); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2247 | } else { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2248 | aed = (struct allocExtDesc *)oepos.bh->b_data; |
marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 2249 | le32_add_cpu(&aed->lengthAllocDescs, -(2 * adsize)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2250 | if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2251 | UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2252 | udf_update_tag(oepos.bh->b_data, |
| 2253 | oepos.offset - (2 * adsize)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | else |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2255 | udf_update_tag(oepos.bh->b_data, |
| 2256 | sizeof(struct allocExtDesc)); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2257 | mark_buffer_dirty_inode(oepos.bh, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2259 | } else { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2260 | udf_write_aext(inode, &oepos, &eloc, elen, 1); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2261 | if (!oepos.bh) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2262 | iinfo->i_lenAlloc -= adsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | mark_inode_dirty(inode); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2264 | } else { |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2265 | aed = (struct allocExtDesc *)oepos.bh->b_data; |
marcin.slusarz@gmail.com | c2104fd | 2008-01-30 22:03:57 +0100 | [diff] [blame] | 2266 | le32_add_cpu(&aed->lengthAllocDescs, -adsize); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2267 | if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2268 | UDF_SB(inode->i_sb)->s_udfrev >= 0x0201) |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2269 | udf_update_tag(oepos.bh->b_data, |
| 2270 | epos.offset - adsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | else |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2272 | udf_update_tag(oepos.bh->b_data, |
| 2273 | sizeof(struct allocExtDesc)); |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2274 | mark_buffer_dirty_inode(oepos.bh, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | } |
| 2276 | } |
Cyrill Gorcunov | 647bd61a | 2007-07-15 23:39:47 -0700 | [diff] [blame] | 2277 | |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2278 | brelse(epos.bh); |
| 2279 | brelse(oepos.bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | return (elen >> 30); |
| 2282 | } |
| 2283 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2284 | int8_t inode_bmap(struct inode *inode, sector_t block, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2285 | struct extent_position *pos, struct kernel_lb_addr *eloc, |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2286 | uint32_t *elen, sector_t *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2288 | unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits; |
Fabian Frederick | bbc9abd | 2017-01-06 21:53:52 +0100 | [diff] [blame] | 2289 | loff_t lbcount = 0, bcount = (loff_t) block << blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | int8_t etype; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2291 | struct udf_inode_info *iinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2293 | iinfo = UDF_I(inode); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 2294 | if (!udf_read_extent_cache(inode, bcount, &lbcount, pos)) { |
| 2295 | pos->offset = 0; |
| 2296 | pos->block = iinfo->i_location; |
| 2297 | pos->bh = NULL; |
| 2298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | *elen = 0; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2300 | do { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2301 | etype = udf_next_aext(inode, pos, eloc, elen, 1); |
| 2302 | if (etype == -1) { |
| 2303 | *offset = (bcount - lbcount) >> blocksize_bits; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 2304 | iinfo->i_lenExtents = lbcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | return -1; |
| 2306 | } |
| 2307 | lbcount += *elen; |
| 2308 | } while (lbcount <= bcount); |
Namjae Jeon | 9960005 | 2013-01-19 11:17:14 +0900 | [diff] [blame] | 2309 | /* update extent cache */ |
Fabian Frederick | b31c9ed | 2017-01-06 21:53:56 +0100 | [diff] [blame] | 2310 | udf_update_extent_cache(inode, lbcount - *elen, pos); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2311 | *offset = (bcount + *elen - lbcount) >> blocksize_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | |
| 2313 | return etype; |
| 2314 | } |
| 2315 | |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 2316 | udf_pblk_t udf_block_map(struct inode *inode, sector_t block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2318 | struct kernel_lb_addr eloc; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2319 | uint32_t elen; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 2320 | sector_t offset; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2321 | struct extent_position epos = {}; |
Steve Magnani | b490bdd | 2017-10-12 08:48:40 -0500 | [diff] [blame] | 2322 | udf_pblk_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 2324 | down_read(&UDF_I(inode)->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2326 | if (inode_bmap(inode, block, &epos, &eloc, &elen, &offset) == |
| 2327 | (EXT_RECORDED_ALLOCATED >> 30)) |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2328 | ret = udf_get_lb_pblock(inode->i_sb, &eloc, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | else |
| 2330 | ret = 0; |
| 2331 | |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 2332 | up_read(&UDF_I(inode)->i_data_sem); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2333 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | |
| 2335 | if (UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_VARCONV)) |
| 2336 | return udf_fixed_to_variable(ret); |
| 2337 | else |
| 2338 | return ret; |
| 2339 | } |