5 * Truncate handling routines for the OSTA-UDF(tm) filesystem.
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.
13 * (C) 1999-2004 Ben Fennema
14 * (C) 1999 Stelias Computing Inc
18 * 02/24/99 blf Created.
25 #include <linux/udf_fs.h>
26 #include <linux/buffer_head.h>
31 static void extent_trunc(struct inode * inode, kernel_lb_addr bloc, int extoffset,
32 kernel_lb_addr eloc, int8_t etype, uint32_t elen, struct buffer_head *bh, uint32_t nelen)
34 kernel_lb_addr neloc = { 0, 0 };
35 int last_block = (elen + inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits;
36 int first_block = (nelen + inode->i_sb->s_blocksize - 1) >> inode->i_sb->s_blocksize_bits;
40 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
42 udf_free_blocks(inode->i_sb, inode, eloc, 0, last_block);
43 etype = (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30);
47 nelen = (etype << 30) | nelen;
52 udf_write_aext(inode, bloc, &extoffset, neloc, nelen, bh, 0);
53 if (last_block - first_block > 0)
55 if (etype == (EXT_RECORDED_ALLOCATED >> 30))
56 mark_inode_dirty(inode);
58 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
59 udf_free_blocks(inode->i_sb, inode, eloc, first_block, last_block - first_block);
64 void udf_discard_prealloc(struct inode * inode)
66 kernel_lb_addr bloc, eloc;
67 uint32_t extoffset = 0, elen, nelen;
69 int8_t etype = -1, netype;
70 struct buffer_head *bh = NULL;
73 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB ||
74 inode->i_size == UDF_I_LENEXTENTS(inode))
79 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_SHORT)
80 adsize = sizeof(short_ad);
81 else if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_LONG)
82 adsize = sizeof(long_ad);
86 bloc = UDF_I_LOCATION(inode);
88 while ((netype = udf_next_aext(inode, &bloc, &extoffset, &eloc, &elen, &bh, 1)) != -1)
92 if (lbcount > inode->i_size && lbcount - inode->i_size < inode->i_sb->s_blocksize)
94 nelen = elen - (lbcount - inode->i_size);
95 extent_trunc(inode, bloc, extoffset-adsize, eloc, etype, elen, bh, nelen);
96 lbcount = inode->i_size;
99 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
103 extent_trunc(inode, bloc, extoffset, eloc, etype, elen, bh, 0);
106 UDF_I_LENALLOC(inode) = extoffset - udf_file_entry_alloc_offset(inode);
107 mark_inode_dirty(inode);
111 struct allocExtDesc *aed = (struct allocExtDesc *)(bh->b_data);
112 aed->lengthAllocDescs = cpu_to_le32(extoffset - sizeof(struct allocExtDesc));
113 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
114 udf_update_tag(bh->b_data, extoffset);
116 udf_update_tag(bh->b_data, sizeof(struct allocExtDesc));
117 mark_buffer_dirty_inode(bh, inode);
120 UDF_I_LENEXTENTS(inode) = lbcount;
122 udf_release_data(bh);
125 void udf_truncate_extents(struct inode * inode)
127 kernel_lb_addr bloc, eloc, neloc = { 0, 0 };
128 uint32_t extoffset, elen, nelen = 0, lelen = 0, lenalloc;
130 sector_t first_block = inode->i_size >> inode->i_sb->s_blocksize_bits, offset;
132 struct buffer_head *bh = NULL;
135 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_SHORT)
136 adsize = sizeof(short_ad);
137 else if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_LONG)
138 adsize = sizeof(long_ad);
142 etype = inode_bmap(inode, first_block, &bloc, &extoffset, &eloc, &elen, &offset, &bh);
143 byte_offset = (offset << inode->i_sb->s_blocksize_bits) + (inode->i_size & (inode->i_sb->s_blocksize-1));
147 extent_trunc(inode, bloc, extoffset, eloc, etype, elen, bh, byte_offset);
151 lenalloc = extoffset;
153 lenalloc = extoffset - adsize;
156 lenalloc -= udf_file_entry_alloc_offset(inode);
158 lenalloc -= sizeof(struct allocExtDesc);
160 while ((etype = udf_current_aext(inode, &bloc, &extoffset, &eloc, &elen, &bh, 0)) != -1)
162 if (etype == (EXT_NEXT_EXTENT_ALLOCDECS >> 30))
164 udf_write_aext(inode, bloc, &extoffset, neloc, nelen, bh, 0);
171 memset(bh->b_data, 0x00, sizeof(struct allocExtDesc));
172 udf_free_blocks(inode->i_sb, inode, bloc, 0, lelen);
178 UDF_I_LENALLOC(inode) = lenalloc;
179 mark_inode_dirty(inode);
183 struct allocExtDesc *aed = (struct allocExtDesc *)(bh->b_data);
184 aed->lengthAllocDescs = cpu_to_le32(lenalloc);
185 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
186 udf_update_tag(bh->b_data, lenalloc +
187 sizeof(struct allocExtDesc));
189 udf_update_tag(bh->b_data, sizeof(struct allocExtDesc));
190 mark_buffer_dirty_inode(bh, inode);
194 udf_release_data(bh);
195 extoffset = sizeof(struct allocExtDesc);
197 bh = udf_tread(inode->i_sb, udf_get_lb_pblock(inode->i_sb, bloc, 0));
199 lelen = (elen + inode->i_sb->s_blocksize - 1) >>
200 inode->i_sb->s_blocksize_bits;
206 extent_trunc(inode, bloc, extoffset, eloc, etype, elen, bh, 0);
216 memset(bh->b_data, 0x00, sizeof(struct allocExtDesc));
217 udf_free_blocks(inode->i_sb, inode, bloc, 0, lelen);
223 UDF_I_LENALLOC(inode) = lenalloc;
224 mark_inode_dirty(inode);
228 struct allocExtDesc *aed = (struct allocExtDesc *)(bh->b_data);
229 aed->lengthAllocDescs = cpu_to_le32(lenalloc);
230 if (!UDF_QUERY_FLAG(inode->i_sb, UDF_FLAG_STRICT) || UDF_SB_UDFREV(inode->i_sb) >= 0x0201)
231 udf_update_tag(bh->b_data, lenalloc +
232 sizeof(struct allocExtDesc));
234 udf_update_tag(bh->b_data, sizeof(struct allocExtDesc));
235 mark_buffer_dirty_inode(bh, inode);
239 else if (inode->i_size)
244 * OK, there is not extent covering inode->i_size and
245 * no extent above inode->i_size => truncate is
246 * extending the file by 'offset'.
248 if ((!bh && extoffset == udf_file_entry_alloc_offset(inode)) ||
249 (bh && extoffset == sizeof(struct allocExtDesc))) {
250 /* File has no extents at all! */
251 memset(&eloc, 0x00, sizeof(kernel_lb_addr));
252 elen = EXT_NOT_RECORDED_NOT_ALLOCATED | byte_offset;
253 udf_add_aext(inode, &bloc, &extoffset, eloc, elen, &bh, 1);
257 etype = udf_next_aext(inode, &bloc, &extoffset, &eloc, &elen, &bh, 1);
258 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
261 elen = EXT_NOT_RECORDED_NOT_ALLOCATED | (elen + byte_offset);
262 udf_write_aext(inode, bloc, &extoffset, eloc, elen, bh, 0);
264 else if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
266 kernel_lb_addr neloc = { 0, 0 };
268 nelen = EXT_NOT_RECORDED_NOT_ALLOCATED |
269 ((elen + byte_offset + inode->i_sb->s_blocksize - 1) &
270 ~(inode->i_sb->s_blocksize - 1));
271 udf_write_aext(inode, bloc, &extoffset, neloc, nelen, bh, 1);
272 udf_add_aext(inode, &bloc, &extoffset, eloc, (etype << 30) | elen, &bh, 1);
276 if (elen & (inode->i_sb->s_blocksize - 1))
279 elen = EXT_RECORDED_ALLOCATED |
280 ((elen + inode->i_sb->s_blocksize - 1) &
281 ~(inode->i_sb->s_blocksize - 1));
282 udf_write_aext(inode, bloc, &extoffset, eloc, elen, bh, 1);
284 memset(&eloc, 0x00, sizeof(kernel_lb_addr));
285 elen = EXT_NOT_RECORDED_NOT_ALLOCATED | byte_offset;
286 udf_add_aext(inode, &bloc, &extoffset, eloc, elen, &bh, 1);
291 UDF_I_LENEXTENTS(inode) = inode->i_size;
293 udf_release_data(bh);