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