blob: f04f89fbd4d9914b0a1a16f2cce8c8e0799e020e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ufs/truncate.c
3 *
4 * Copyright (C) 1998
5 * Daniel Pirkl <daniel.pirkl@email.cz>
6 * Charles University, Faculty of Mathematics and Physics
7 *
8 * from
9 *
10 * linux/fs/ext2/truncate.c
11 *
12 * Copyright (C) 1992, 1993, 1994, 1995
13 * Remy Card (card@masi.ibp.fr)
14 * Laboratoire MASI - Institut Blaise Pascal
15 * Universite Pierre et Marie Curie (Paris VI)
16 *
17 * from
18 *
19 * linux/fs/minix/truncate.c
20 *
21 * Copyright (C) 1991, 1992 Linus Torvalds
22 *
23 * Big-endian to little-endian byte-swapping/bitmaps by
24 * David S. Miller (davem@caip.rutgers.edu), 1995
25 */
26
27/*
28 * Real random numbers for secure rm added 94/02/18
29 * Idea from Pierre del Perugia <delperug@gla.ecoledoc.ibp.fr>
30 */
31
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -080032/*
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -080033 * Adoptation to use page cache and UFS2 write support by
34 * Evgeniy Dushistov <dushistov@mail.ru>, 2006-2007
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -080035 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/errno.h>
38#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/fcntl.h>
40#include <linux/time.h>
41#include <linux/stat.h>
42#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/buffer_head.h>
44#include <linux/blkdev.h>
45#include <linux/sched.h>
46
Mike Frysingere5420592008-02-08 04:21:31 -080047#include "ufs_fs.h"
Christoph Hellwigbcd6d4e2007-10-16 23:26:51 -070048#include "ufs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "swab.h"
50#include "util.h"
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * Secure deletion currently doesn't work. It interacts very badly
54 * with buffers shared with memory mappings, and for that reason
55 * can't be done in the truncate() routines. It should instead be
56 * done separately in "release()" before calling the truncate routines
57 * that will release the actual file blocks.
58 *
59 * Linus
60 */
61
62#define DIRECT_BLOCK ((inode->i_size + uspi->s_bsize - 1) >> uspi->s_bshift)
63#define DIRECT_FRAGMENT ((inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift)
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -080066static int ufs_trunc_direct(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 struct ufs_inode_info *ufsi = UFS_I(inode);
69 struct super_block * sb;
70 struct ufs_sb_private_info * uspi;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -080071 void *p;
72 u64 frag1, frag2, frag3, frag4, block1, block2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned frag_to_free, free_count;
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -080074 unsigned i, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 int retry;
76
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -080077 UFSD("ENTER: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 sb = inode->i_sb;
80 uspi = UFS_SB(sb)->s_uspi;
81
82 frag_to_free = 0;
83 free_count = 0;
84 retry = 0;
85
86 frag1 = DIRECT_FRAGMENT;
Dan Carpenter1d582722011-05-26 16:25:12 -070087 frag4 = min_t(u64, UFS_NDIR_FRAGMENT, ufsi->i_lastfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 frag2 = ((frag1 & uspi->s_fpbmask) ? ((frag1 | uspi->s_fpbmask) + 1) : frag1);
89 frag3 = frag4 & ~uspi->s_fpbmask;
90 block1 = block2 = 0;
91 if (frag2 > frag3) {
92 frag2 = frag4;
93 frag3 = frag4 = 0;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -080094 } else if (frag2 < frag3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 block1 = ufs_fragstoblks (frag2);
96 block2 = ufs_fragstoblks (frag3);
97 }
98
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -080099 UFSD("ino %lu, frag1 %llu, frag2 %llu, block1 %llu, block2 %llu,"
100 " frag3 %llu, frag4 %llu\n", inode->i_ino,
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800101 (unsigned long long)frag1, (unsigned long long)frag2,
102 (unsigned long long)block1, (unsigned long long)block2,
103 (unsigned long long)frag3, (unsigned long long)frag4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 if (frag1 >= frag2)
106 goto next1;
107
108 /*
109 * Free first free fragments
110 */
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800111 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag1));
112 tmp = ufs_data_ptr_to_cpu(sb, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (!tmp )
114 ufs_panic (sb, "ufs_trunc_direct", "internal error");
Evgeniy Dushistov86821642007-01-29 13:19:55 -0800115 frag2 -= frag1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 frag1 = ufs_fragnum (frag1);
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -0800117
Evgeniy Dushistov86821642007-01-29 13:19:55 -0800118 ufs_free_fragments(inode, tmp + frag1, frag2);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700119 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 frag_to_free = tmp + frag1;
121
122next1:
123 /*
124 * Free whole blocks
125 */
126 for (i = block1 ; i < block2; i++) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800127 p = ufs_get_direct_data_ptr(uspi, ufsi, i);
128 tmp = ufs_data_ptr_to_cpu(sb, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!tmp)
130 continue;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800131 ufs_data_ptr_clear(uspi, p);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (free_count == 0) {
134 frag_to_free = tmp;
135 free_count = uspi->s_fpb;
136 } else if (free_count > 0 && frag_to_free == tmp - free_count)
137 free_count += uspi->s_fpb;
138 else {
139 ufs_free_blocks (inode, frag_to_free, free_count);
140 frag_to_free = tmp;
141 free_count = uspi->s_fpb;
142 }
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700143 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
146 if (free_count > 0)
147 ufs_free_blocks (inode, frag_to_free, free_count);
148
149 if (frag3 >= frag4)
150 goto next3;
151
152 /*
153 * Free last free fragments
154 */
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800155 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag3));
156 tmp = ufs_data_ptr_to_cpu(sb, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!tmp )
158 ufs_panic(sb, "ufs_truncate_direct", "internal error");
159 frag4 = ufs_fragnum (frag4);
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800160 ufs_data_ptr_clear(uspi, p);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ufs_free_fragments (inode, tmp, frag4);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700163 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 next3:
165
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800166 UFSD("EXIT: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return retry;
168}
169
170
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800171static int ufs_trunc_indirect(struct inode *inode, u64 offset, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct super_block * sb;
174 struct ufs_sb_private_info * uspi;
175 struct ufs_buffer_head * ind_ubh;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800176 void *ind;
177 u64 tmp, indirect_block, i, frag_to_free;
178 unsigned free_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 int retry;
180
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800181 UFSD("ENTER: ino %lu, offset %llu, p: %p\n",
182 inode->i_ino, (unsigned long long)offset, p);
183
184 BUG_ON(!p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 sb = inode->i_sb;
187 uspi = UFS_SB(sb)->s_uspi;
188
189 frag_to_free = 0;
190 free_count = 0;
191 retry = 0;
192
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800193 tmp = ufs_data_ptr_to_cpu(sb, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!tmp)
195 return 0;
196 ind_ubh = ubh_bread(sb, tmp, uspi->s_bsize);
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800197 if (tmp != ufs_data_ptr_to_cpu(sb, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 ubh_brelse (ind_ubh);
199 return 1;
200 }
201 if (!ind_ubh) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800202 ufs_data_ptr_clear(uspi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204 }
205
206 indirect_block = (DIRECT_BLOCK > offset) ? (DIRECT_BLOCK - offset) : 0;
207 for (i = indirect_block; i < uspi->s_apb; i++) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800208 ind = ubh_get_data_ptr(uspi, ind_ubh, i);
209 tmp = ufs_data_ptr_to_cpu(sb, ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (!tmp)
211 continue;
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -0800212
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800213 ufs_data_ptr_clear(uspi, ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 ubh_mark_buffer_dirty(ind_ubh);
215 if (free_count == 0) {
216 frag_to_free = tmp;
217 free_count = uspi->s_fpb;
218 } else if (free_count > 0 && frag_to_free == tmp - free_count)
219 free_count += uspi->s_fpb;
220 else {
221 ufs_free_blocks (inode, frag_to_free, free_count);
222 frag_to_free = tmp;
223 free_count = uspi->s_fpb;
224 }
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
229 if (free_count > 0) {
230 ufs_free_blocks (inode, frag_to_free, free_count);
231 }
232 for (i = 0; i < uspi->s_apb; i++)
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800233 if (!ufs_is_data_ptr_zero(uspi,
234 ubh_get_data_ptr(uspi, ind_ubh, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236 if (i >= uspi->s_apb) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800237 tmp = ufs_data_ptr_to_cpu(sb, p);
238 ufs_data_ptr_clear(uspi, p);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700239
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700240 ufs_free_blocks (inode, tmp, uspi->s_fpb);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700241 mark_inode_dirty(inode);
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700242 ubh_bforget(ind_ubh);
243 ind_ubh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
Christoph Hellwig9cb569d2010-08-11 17:06:24 +0200245 if (IS_SYNC(inode) && ind_ubh && ubh_buffer_dirty(ind_ubh))
246 ubh_sync_block(ind_ubh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 ubh_brelse (ind_ubh);
248
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800249 UFSD("EXIT: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 return retry;
252}
253
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800254static int ufs_trunc_dindirect(struct inode *inode, u64 offset, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct super_block * sb;
257 struct ufs_sb_private_info * uspi;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800258 struct ufs_buffer_head *dind_bh;
259 u64 i, tmp, dindirect_block;
260 void *dind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 int retry = 0;
262
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800263 UFSD("ENTER: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 sb = inode->i_sb;
266 uspi = UFS_SB(sb)->s_uspi;
267
268 dindirect_block = (DIRECT_BLOCK > offset)
269 ? ((DIRECT_BLOCK - offset) >> uspi->s_apbshift) : 0;
270 retry = 0;
271
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800272 tmp = ufs_data_ptr_to_cpu(sb, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!tmp)
274 return 0;
275 dind_bh = ubh_bread(sb, tmp, uspi->s_bsize);
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800276 if (tmp != ufs_data_ptr_to_cpu(sb, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 ubh_brelse (dind_bh);
278 return 1;
279 }
280 if (!dind_bh) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800281 ufs_data_ptr_clear(uspi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 0;
283 }
284
285 for (i = dindirect_block ; i < uspi->s_apb ; i++) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800286 dind = ubh_get_data_ptr(uspi, dind_bh, i);
287 tmp = ufs_data_ptr_to_cpu(sb, dind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!tmp)
289 continue;
290 retry |= ufs_trunc_indirect (inode, offset + (i << uspi->s_apbshift), dind);
291 ubh_mark_buffer_dirty(dind_bh);
292 }
293
294 for (i = 0; i < uspi->s_apb; i++)
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800295 if (!ufs_is_data_ptr_zero(uspi,
296 ubh_get_data_ptr(uspi, dind_bh, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298 if (i >= uspi->s_apb) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800299 tmp = ufs_data_ptr_to_cpu(sb, p);
300 ufs_data_ptr_clear(uspi, p);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700301
302 ufs_free_blocks(inode, tmp, uspi->s_fpb);
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700303 mark_inode_dirty(inode);
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700304 ubh_bforget(dind_bh);
305 dind_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Christoph Hellwig9cb569d2010-08-11 17:06:24 +0200307 if (IS_SYNC(inode) && dind_bh && ubh_buffer_dirty(dind_bh))
308 ubh_sync_block(dind_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ubh_brelse (dind_bh);
310
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800311 UFSD("EXIT: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 return retry;
314}
315
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800316static int ufs_trunc_tindirect(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800318 struct super_block *sb = inode->i_sb;
319 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct ufs_inode_info *ufsi = UFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct ufs_buffer_head * tind_bh;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800322 u64 tindirect_block, tmp, i;
323 void *tind, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int retry;
325
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800326 UFSD("ENTER: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 retry = 0;
329
330 tindirect_block = (DIRECT_BLOCK > (UFS_NDADDR + uspi->s_apb + uspi->s_2apb))
331 ? ((DIRECT_BLOCK - UFS_NDADDR - uspi->s_apb - uspi->s_2apb) >> uspi->s_2apbshift) : 0;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800332
333 p = ufs_get_direct_data_ptr(uspi, ufsi, UFS_TIND_BLOCK);
334 if (!(tmp = ufs_data_ptr_to_cpu(sb, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336 tind_bh = ubh_bread (sb, tmp, uspi->s_bsize);
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800337 if (tmp != ufs_data_ptr_to_cpu(sb, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ubh_brelse (tind_bh);
339 return 1;
340 }
341 if (!tind_bh) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800342 ufs_data_ptr_clear(uspi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344 }
345
346 for (i = tindirect_block ; i < uspi->s_apb ; i++) {
Evgeniy Dushistov0465fc02007-03-16 13:38:09 -0800347 tind = ubh_get_data_ptr(uspi, tind_bh, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 retry |= ufs_trunc_dindirect(inode, UFS_NDADDR +
349 uspi->s_apb + ((i + 1) << uspi->s_2apbshift), tind);
350 ubh_mark_buffer_dirty(tind_bh);
351 }
352 for (i = 0; i < uspi->s_apb; i++)
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800353 if (!ufs_is_data_ptr_zero(uspi,
354 ubh_get_data_ptr(uspi, tind_bh, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 break;
356 if (i >= uspi->s_apb) {
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800357 tmp = ufs_data_ptr_to_cpu(sb, p);
358 ufs_data_ptr_clear(uspi, p);
Evgeniy Dushistov50aa4eb2006-06-25 05:47:26 -0700359
360 ufs_free_blocks(inode, tmp, uspi->s_fpb);
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700361 mark_inode_dirty(inode);
Evgeniy Dushistov2061df02006-06-25 05:47:18 -0700362 ubh_bforget(tind_bh);
363 tind_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Christoph Hellwig9cb569d2010-08-11 17:06:24 +0200365 if (IS_SYNC(inode) && tind_bh && ubh_buffer_dirty(tind_bh))
366 ubh_sync_block(tind_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ubh_brelse (tind_bh);
368
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800369 UFSD("EXIT: ino %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return retry;
371}
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700372
373static int ufs_alloc_lastblock(struct inode *inode)
374{
375 int err = 0;
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800376 struct super_block *sb = inode->i_sb;
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700377 struct address_space *mapping = inode->i_mapping;
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800378 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800379 unsigned i, end;
380 sector_t lastfrag;
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700381 struct page *lastpage;
382 struct buffer_head *bh;
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800383 u64 phys64;
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700384
385 lastfrag = (i_size_read(inode) + uspi->s_fsize - 1) >> uspi->s_fshift;
386
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700387 if (!lastfrag)
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700388 goto out;
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700389
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700390 lastfrag--;
391
392 lastpage = ufs_get_locked_page(mapping, lastfrag >>
393 (PAGE_CACHE_SHIFT - inode->i_blkbits));
394 if (IS_ERR(lastpage)) {
395 err = -EIO;
396 goto out;
397 }
398
399 end = lastfrag & ((1 << (PAGE_CACHE_SHIFT - inode->i_blkbits)) - 1);
400 bh = page_buffers(lastpage);
401 for (i = 0; i < end; ++i)
402 bh = bh->b_this_page;
403
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700404
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700405 err = ufs_getfrag_block(inode, lastfrag, bh, 1);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700406
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700407 if (unlikely(err))
408 goto out_unlock;
409
410 if (buffer_new(bh)) {
411 clear_buffer_new(bh);
412 unmap_underlying_metadata(bh->b_bdev,
413 bh->b_blocknr);
414 /*
415 * we do not zeroize fragment, because of
416 * if it maped to hole, it already contains zeroes
417 */
418 set_buffer_uptodate(bh);
419 mark_buffer_dirty(bh);
420 set_page_dirty(lastpage);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700421 }
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700422
Evgeniy Dushistov4b25a372007-03-16 13:38:09 -0800423 if (lastfrag >= UFS_IND_FRAGMENT) {
424 end = uspi->s_fpb - ufs_fragnum(lastfrag) - 1;
425 phys64 = bh->b_blocknr + 1;
426 for (i = 0; i < end; ++i) {
427 bh = sb_getblk(sb, i + phys64);
428 lock_buffer(bh);
429 memset(bh->b_data, 0, sb->s_blocksize);
430 set_buffer_uptodate(bh);
431 mark_buffer_dirty(bh);
432 unlock_buffer(bh);
433 sync_dirty_buffer(bh);
434 brelse(bh);
435 }
436 }
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700437out_unlock:
438 ufs_put_locked_page(lastpage);
439out:
440 return err;
441}
442
443int ufs_truncate(struct inode *inode, loff_t old_i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct ufs_inode_info *ufsi = UFS_I(inode);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700446 struct super_block *sb = inode->i_sb;
447 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
448 int retry, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800450 UFSD("ENTER: ino %lu, i_size: %llu, old_i_size: %llu\n",
451 inode->i_ino, (unsigned long long)i_size_read(inode),
452 (unsigned long long)old_i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700454 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
455 S_ISLNK(inode->i_mode)))
456 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700458 return -EPERM;
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -0800459
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700460 err = ufs_alloc_lastblock(inode);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700461
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700462 if (err) {
463 i_size_write(inode, old_i_size);
464 goto out;
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700465 }
466
467 block_truncate_page(inode->i_mapping, inode->i_size, ufs_getfrag_block);
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -0800468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 while (1) {
470 retry = ufs_trunc_direct(inode);
Evgeniy Dushistov54fb9962007-02-12 00:54:32 -0800471 retry |= ufs_trunc_indirect(inode, UFS_IND_BLOCK,
472 ufs_get_direct_data_ptr(uspi, ufsi,
473 UFS_IND_BLOCK));
474 retry |= ufs_trunc_dindirect(inode, UFS_IND_BLOCK + uspi->s_apb,
475 ufs_get_direct_data_ptr(uspi, ufsi,
476 UFS_DIND_BLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 retry |= ufs_trunc_tindirect (inode);
478 if (!retry)
479 break;
480 if (IS_SYNC(inode) && (inode->i_state & I_DIRTY))
481 ufs_sync_inode (inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 yield();
483 }
Evgeniy Dushistov09114eb2006-02-03 03:04:06 -0800484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
Evgeniy Dushistovecdc6392006-08-27 01:23:46 -0700486 ufsi->i_lastfrag = DIRECT_FRAGMENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 mark_inode_dirty(inode);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700488out:
489 UFSD("EXIT: err %d\n", err);
490 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700492
Dmitry Monakhov311b95492010-04-15 00:56:58 +0200493int ufs_setattr(struct dentry *dentry, struct iattr *attr)
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700494{
495 struct inode *inode = dentry->d_inode;
496 unsigned int ia_valid = attr->ia_valid;
497 int error;
498
499 error = inode_change_ok(inode, attr);
500 if (error)
501 return error;
502
Dmitry Monakhov12755622010-04-08 22:04:20 +0400503 if (ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700504 loff_t old_i_size = inode->i_size;
Christoph Hellwig907f4552010-03-03 09:05:06 -0500505
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200506 /* XXX(truncate): truncate_setsize should be called last */
507 truncate_setsize(inode, attr->ia_size);
508
Arnd Bergmann788257d2011-01-24 10:14:12 +0100509 lock_ufs(inode->i_sb);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700510 error = ufs_truncate(inode, old_i_size);
Arnd Bergmann788257d2011-01-24 10:14:12 +0100511 unlock_ufs(inode->i_sb);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700512 if (error)
513 return error;
514 }
Christoph Hellwig10257742010-06-04 11:30:02 +0200515
516 setattr_copy(inode, attr);
517 mark_inode_dirty(inode);
518 return 0;
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700519}
520
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800521const struct inode_operations ufs_file_inode_operations = {
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700522 .setattr = ufs_setattr,
523};