ufs_inode_get{frag,block}(): leave sb_getblk() to caller
[deliverable/linux.git] / fs / ufs / inode.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/ufs/inode.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/inode.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/inode.c
20 *
21 * Copyright (C) 1991, 1992 Linus Torvalds
22 *
23 * Goal-directed block allocation by Stephen Tweedie (sct@dcs.ed.ac.uk), 1993
24 * Big-endian to little-endian byte-swapping/bitmaps by
25 * David S. Miller (davem@caip.rutgers.edu), 1995
26 */
27
28#include <asm/uaccess.h>
1da177e4
LT
29
30#include <linux/errno.h>
31#include <linux/fs.h>
1da177e4
LT
32#include <linux/time.h>
33#include <linux/stat.h>
34#include <linux/string.h>
35#include <linux/mm.h>
1da177e4 36#include <linux/buffer_head.h>
a9185b41 37#include <linux/writeback.h>
1da177e4 38
e5420598 39#include "ufs_fs.h"
bcd6d4ec 40#include "ufs.h"
1da177e4
LT
41#include "swab.h"
42#include "util.h"
43
4e3911f3 44static int ufs_block_to_path(struct inode *inode, sector_t i_block, unsigned offsets[4])
1da177e4
LT
45{
46 struct ufs_sb_private_info *uspi = UFS_SB(inode->i_sb)->s_uspi;
47 int ptrs = uspi->s_apb;
48 int ptrs_bits = uspi->s_apbshift;
49 const long direct_blocks = UFS_NDADDR,
50 indirect_blocks = ptrs,
51 double_blocks = (1 << (ptrs_bits * 2));
52 int n = 0;
53
54
abf5d15f 55 UFSD("ptrs=uspi->s_apb = %d,double_blocks=%ld \n",ptrs,double_blocks);
37044c86 56 if (i_block < direct_blocks) {
1da177e4
LT
57 offsets[n++] = i_block;
58 } else if ((i_block -= direct_blocks) < indirect_blocks) {
59 offsets[n++] = UFS_IND_BLOCK;
60 offsets[n++] = i_block;
61 } else if ((i_block -= indirect_blocks) < double_blocks) {
62 offsets[n++] = UFS_DIND_BLOCK;
63 offsets[n++] = i_block >> ptrs_bits;
64 offsets[n++] = i_block & (ptrs - 1);
65 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
66 offsets[n++] = UFS_TIND_BLOCK;
67 offsets[n++] = i_block >> (ptrs_bits * 2);
68 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
69 offsets[n++] = i_block & (ptrs - 1);
70 } else {
71 ufs_warning(inode->i_sb, "ufs_block_to_path", "block > big");
72 }
73 return n;
74}
75
724bb09f
AV
76typedef struct {
77 void *p;
78 union {
79 __fs32 key32;
80 __fs64 key64;
81 };
82 struct buffer_head *bh;
83} Indirect;
84
85static inline int grow_chain32(struct ufs_inode_info *ufsi,
86 struct buffer_head *bh, __fs32 *v,
87 Indirect *from, Indirect *to)
88{
89 Indirect *p;
90 unsigned seq;
91 to->bh = bh;
92 do {
93 seq = read_seqbegin(&ufsi->meta_lock);
94 to->key32 = *(__fs32 *)(to->p = v);
95 for (p = from; p <= to && p->key32 == *(__fs32 *)p->p; p++)
96 ;
97 } while (read_seqretry(&ufsi->meta_lock, seq));
98 return (p > to);
99}
100
101static inline int grow_chain64(struct ufs_inode_info *ufsi,
102 struct buffer_head *bh, __fs64 *v,
103 Indirect *from, Indirect *to)
104{
105 Indirect *p;
106 unsigned seq;
107 to->bh = bh;
108 do {
109 seq = read_seqbegin(&ufsi->meta_lock);
110 to->key64 = *(__fs64 *)(to->p = v);
111 for (p = from; p <= to && p->key64 == *(__fs64 *)p->p; p++)
112 ;
113 } while (read_seqretry(&ufsi->meta_lock, seq));
114 return (p > to);
115}
116
1da177e4
LT
117/*
118 * Returns the location of the fragment from
25985edc 119 * the beginning of the filesystem.
1da177e4
LT
120 */
121
4b7068c8 122static u64 ufs_frag_map(struct inode *inode, unsigned offsets[4], int depth)
1da177e4
LT
123{
124 struct ufs_inode_info *ufsi = UFS_I(inode);
125 struct super_block *sb = inode->i_sb;
126 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
127 u64 mask = (u64) uspi->s_apbmask>>uspi->s_fpbshift;
128 int shift = uspi->s_apbshift-uspi->s_fpbshift;
724bb09f 129 Indirect chain[4], *q = chain;
4b7068c8 130 unsigned *p;
1da177e4 131 unsigned flags = UFS_SB(sb)->s_flags;
724bb09f 132 u64 res = 0;
1da177e4 133
7256d819
AM
134 UFSD(": uspi->s_fpbshift = %d ,uspi->s_apbmask = %x, mask=%llx\n",
135 uspi->s_fpbshift, uspi->s_apbmask,
136 (unsigned long long)mask);
1da177e4
LT
137
138 if (depth == 0)
724bb09f 139 goto no_block;
1da177e4 140
724bb09f 141again:
1da177e4
LT
142 p = offsets;
143
1da177e4
LT
144 if ((flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
145 goto ufs2;
146
724bb09f
AV
147 if (!grow_chain32(ufsi, NULL, &ufsi->i_u1.i_data[*p++], chain, q))
148 goto changed;
149 if (!q->key32)
150 goto no_block;
1da177e4 151 while (--depth) {
724bb09f 152 __fs32 *ptr;
1da177e4 153 struct buffer_head *bh;
4e3911f3 154 unsigned n = *p++;
1da177e4 155
724bb09f
AV
156 bh = sb_bread(sb, uspi->s_sbbase +
157 fs32_to_cpu(sb, q->key32) + (n>>shift));
1da177e4 158 if (!bh)
724bb09f
AV
159 goto no_block;
160 ptr = (__fs32 *)bh->b_data + (n & mask);
161 if (!grow_chain32(ufsi, bh, ptr, chain, ++q))
162 goto changed;
163 if (!q->key32)
164 goto no_block;
1da177e4 165 }
724bb09f
AV
166 res = fs32_to_cpu(sb, q->key32);
167 goto found;
1da177e4 168
724bb09f
AV
169ufs2:
170 if (!grow_chain64(ufsi, NULL, &ufsi->i_u1.u2_i_data[*p++], chain, q))
171 goto changed;
172 if (!q->key64)
173 goto no_block;
1da177e4
LT
174
175 while (--depth) {
724bb09f 176 __fs64 *ptr;
1da177e4 177 struct buffer_head *bh;
4e3911f3 178 unsigned n = *p++;
1da177e4 179
724bb09f
AV
180 bh = sb_bread(sb, uspi->s_sbbase +
181 fs64_to_cpu(sb, q->key64) + (n>>shift));
1da177e4 182 if (!bh)
724bb09f
AV
183 goto no_block;
184 ptr = (__fs64 *)bh->b_data + (n & mask);
185 if (!grow_chain64(ufsi, bh, ptr, chain, ++q))
186 goto changed;
187 if (!q->key64)
188 goto no_block;
189 }
190 res = fs64_to_cpu(sb, q->key64);
191found:
4b7068c8 192 res += uspi->s_sbbase;
724bb09f
AV
193no_block:
194 while (q > chain) {
195 brelse(q->bh);
196 q--;
1da177e4 197 }
724bb09f 198 return res;
1da177e4 199
724bb09f
AV
200changed:
201 while (q > chain) {
202 brelse(q->bh);
203 q--;
204 }
205 goto again;
1da177e4
LT
206}
207
022a6dc5
ED
208/**
209 * ufs_inode_getfrag() - allocate new fragment(s)
edc023ca
FF
210 * @inode: pointer to inode
211 * @fragment: number of `fragment' which hold pointer
022a6dc5 212 * to new allocated fragment(s)
edc023ca
FF
213 * @new_fragment: number of new allocated fragment(s)
214 * @required: how many fragment(s) we require
215 * @err: we set it if something wrong
216 * @phys: pointer to where we save physical number of new allocated fragments,
022a6dc5 217 * NULL if we allocate not data(indirect blocks for example).
edc023ca
FF
218 * @new: we set it if we allocate new block
219 * @locked_page: for ufs_new_fragments()
022a6dc5 220 */
177848a0 221static u64
54fb996a 222ufs_inode_getfrag(struct inode *inode, u64 fragment,
022a6dc5
ED
223 sector_t new_fragment, unsigned int required, int *err,
224 long *phys, int *new, struct page *locked_page)
1da177e4
LT
225{
226 struct ufs_inode_info *ufsi = UFS_I(inode);
022a6dc5
ED
227 struct super_block *sb = inode->i_sb;
228 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
54fb996a
ED
229 unsigned blockoff, lastblockoff;
230 u64 tmp, goal, lastfrag, block, lastblock;
231 void *p, *p2;
1da177e4 232
54fb996a
ED
233 UFSD("ENTER, ino %lu, fragment %llu, new_fragment %llu, required %u, "
234 "metadata %d\n", inode->i_ino, (unsigned long long)fragment,
022a6dc5 235 (unsigned long long)new_fragment, required, !phys);
1da177e4 236
1da177e4
LT
237 /* TODO : to be done for write support
238 if ( (flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
239 goto ufs2;
240 */
241
242 block = ufs_fragstoblks (fragment);
243 blockoff = ufs_fragnum (fragment);
54fb996a
ED
244 p = ufs_get_direct_data_ptr(uspi, ufsi, block);
245
1da177e4
LT
246 goal = 0;
247
54fb996a
ED
248 tmp = ufs_data_ptr_to_cpu(sb, p);
249
1da177e4 250 lastfrag = ufsi->i_lastfrag;
bbb3eb9d
AV
251 if (tmp && fragment < lastfrag)
252 goto out;
1da177e4
LT
253
254 lastblock = ufs_fragstoblks (lastfrag);
255 lastblockoff = ufs_fragnum (lastfrag);
256 /*
257 * We will extend file into new block beyond last allocated block
258 */
259 if (lastblock < block) {
260 /*
261 * We must reallocate last allocated block
262 */
263 if (lastblockoff) {
54fb996a
ED
264 p2 = ufs_get_direct_data_ptr(uspi, ufsi, lastblock);
265 tmp = ufs_new_fragments(inode, p2, lastfrag,
266 ufs_data_ptr_to_cpu(sb, p2),
267 uspi->s_fpb - lastblockoff,
268 err, locked_page);
5a39c255 269 if (!tmp)
177848a0 270 return 0;
1da177e4 271 lastfrag = ufsi->i_lastfrag;
1da177e4 272 }
54fb996a
ED
273 tmp = ufs_data_ptr_to_cpu(sb,
274 ufs_get_direct_data_ptr(uspi, ufsi,
275 lastblock));
c37336b0
ED
276 if (tmp)
277 goal = tmp + uspi->s_fpb;
010d331f 278 tmp = ufs_new_fragments (inode, p, fragment - blockoff,
6ef4d6bf 279 goal, required + blockoff,
a685e26f
ED
280 err,
281 phys != NULL ? locked_page : NULL);
54fb996a 282 } else if (lastblock == block) {
1da177e4
LT
283 /*
284 * We will extend last allocated block
285 */
54fb996a
ED
286 tmp = ufs_new_fragments(inode, p, fragment -
287 (blockoff - lastblockoff),
288 ufs_data_ptr_to_cpu(sb, p),
289 required + (blockoff - lastblockoff),
a685e26f 290 err, phys != NULL ? locked_page : NULL);
c37336b0 291 } else /* (lastblock > block) */ {
1da177e4
LT
292 /*
293 * We will allocate new block before last allocated block
294 */
c37336b0 295 if (block) {
54fb996a
ED
296 tmp = ufs_data_ptr_to_cpu(sb,
297 ufs_get_direct_data_ptr(uspi, ufsi, block - 1));
c37336b0
ED
298 if (tmp)
299 goal = tmp + uspi->s_fpb;
300 }
6ef4d6bf 301 tmp = ufs_new_fragments(inode, p, fragment - blockoff,
a685e26f
ED
302 goal, uspi->s_fpb, err,
303 phys != NULL ? locked_page : NULL);
1da177e4
LT
304 }
305 if (!tmp) {
1da177e4 306 *err = -ENOSPC;
177848a0 307 return 0;
1da177e4
LT
308 }
309
bbb3eb9d 310 if (phys) {
1da177e4
LT
311 *err = 0;
312 *new = 1;
313 }
1da177e4
LT
314 inode->i_ctime = CURRENT_TIME_SEC;
315 if (IS_SYNC(inode))
316 ufs_sync_inode (inode);
317 mark_inode_dirty(inode);
bbb3eb9d 318out:
177848a0 319 return tmp + uspi->s_sbbase;
1da177e4
LT
320
321 /* This part : To be implemented ....
322 Required only for writing, not required for READ-ONLY.
323ufs2:
324
325 u2_block = ufs_fragstoblks(fragment);
326 u2_blockoff = ufs_fragnum(fragment);
327 p = ufsi->i_u1.u2_i_data + block;
328 goal = 0;
329
330repeat2:
331 tmp = fs32_to_cpu(sb, *p);
332 lastfrag = ufsi->i_lastfrag;
333
334 */
335}
336
022a6dc5
ED
337/**
338 * ufs_inode_getblock() - allocate new block
edc023ca
FF
339 * @inode: pointer to inode
340 * @bh: pointer to block which hold "pointer" to new allocated block
341 * @fragment: number of `fragment' which hold pointer
022a6dc5 342 * to new allocated block
edc023ca 343 * @new_fragment: number of new allocated fragment
022a6dc5 344 * (block will hold this fragment and also uspi->s_fpb-1)
edc023ca
FF
345 * @err: see ufs_inode_getfrag()
346 * @phys: see ufs_inode_getfrag()
347 * @new: see ufs_inode_getfrag()
348 * @locked_page: see ufs_inode_getfrag()
022a6dc5 349 */
177848a0 350static u64
022a6dc5 351ufs_inode_getblock(struct inode *inode, struct buffer_head *bh,
54fb996a 352 u64 fragment, sector_t new_fragment, int *err,
022a6dc5 353 long *phys, int *new, struct page *locked_page)
1da177e4 354{
022a6dc5
ED
355 struct super_block *sb = inode->i_sb;
356 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
bbb3eb9d 357 u64 tmp = 0, goal, block;
54fb996a 358 void *p;
1da177e4 359
1da177e4 360 block = ufs_fragstoblks (fragment);
1da177e4 361
54fb996a
ED
362 UFSD("ENTER, ino %lu, fragment %llu, new_fragment %llu, metadata %d\n",
363 inode->i_ino, (unsigned long long)fragment,
364 (unsigned long long)new_fragment, !phys);
1da177e4 365
1da177e4
LT
366 if (!bh)
367 goto out;
368 if (!buffer_uptodate(bh)) {
369 ll_rw_block (READ, 1, &bh);
370 wait_on_buffer (bh);
371 if (!buffer_uptodate(bh))
372 goto out;
373 }
54fb996a
ED
374 if (uspi->fs_magic == UFS2_MAGIC)
375 p = (__fs64 *)bh->b_data + block;
376 else
377 p = (__fs32 *)bh->b_data + block;
5a39c255 378
54fb996a 379 tmp = ufs_data_ptr_to_cpu(sb, p);
bbb3eb9d 380 if (tmp)
5a39c255 381 goto out;
1da177e4 382
54fb996a
ED
383 if (block && (uspi->fs_magic == UFS2_MAGIC ?
384 (tmp = fs64_to_cpu(sb, ((__fs64 *)bh->b_data)[block-1])) :
385 (tmp = fs32_to_cpu(sb, ((__fs32 *)bh->b_data)[block-1]))))
1da177e4
LT
386 goal = tmp + uspi->s_fpb;
387 else
388 goal = bh->b_blocknr + uspi->s_fpb;
6ef4d6bf
ED
389 tmp = ufs_new_fragments(inode, p, ufs_blknum(new_fragment), goal,
390 uspi->s_fpb, err, locked_page);
5a39c255 391 if (!tmp)
1da177e4 392 goto out;
c9a27b5d 393
bbb3eb9d 394 if (new)
1da177e4 395 *new = 1;
1da177e4
LT
396
397 mark_buffer_dirty(bh);
398 if (IS_SYNC(inode))
399 sync_dirty_buffer(bh);
400 inode->i_ctime = CURRENT_TIME_SEC;
401 mark_inode_dirty(inode);
402out:
403 brelse (bh);
abf5d15f 404 UFSD("EXIT\n");
177848a0
AV
405 if (tmp)
406 tmp += uspi->s_sbbase;
407 return tmp;
1da177e4
LT
408}
409
022a6dc5 410/**
7422caa5 411 * ufs_getfrag_block() - `get_block_t' function, interface between UFS and
022a6dc5 412 * readpage, writepage and so on
1da177e4
LT
413 */
414
010d331f 415static int ufs_getfrag_block(struct inode *inode, sector_t fragment, struct buffer_head *bh_result, int create)
1da177e4
LT
416{
417 struct super_block * sb = inode->i_sb;
788257d6
AB
418 struct ufs_sb_info * sbi = UFS_SB(sb);
419 struct ufs_sb_private_info * uspi = sbi->s_uspi;
1da177e4
LT
420 struct buffer_head * bh;
421 int ret, err, new;
4b7068c8
AV
422 unsigned offsets[4];
423 int depth = ufs_block_to_path(inode, fragment >> uspi->s_fpbshift, offsets);
1da177e4
LT
424 unsigned long ptr,phys;
425 u64 phys64 = 0;
177848a0 426 unsigned frag = fragment & uspi->s_fpbmask;
010d331f 427
1da177e4 428 if (!create) {
4b7068c8
AV
429 phys64 = ufs_frag_map(inode, offsets, depth);
430 if (phys64) {
177848a0 431 phys64 += frag;
1da177e4 432 map_bh(bh_result, sb, phys64);
4b7068c8 433 }
1da177e4
LT
434 return 0;
435 }
436
437 /* This code entered only while writing ....? */
438
439 err = -EIO;
440 new = 0;
441 ret = 0;
442 bh = NULL;
443
724bb09f 444 mutex_lock(&UFS_I(inode)->truncate_mutex);
1da177e4 445
abf5d15f 446 UFSD("ENTER, ino %lu, fragment %llu\n", inode->i_ino, (unsigned long long)fragment);
71dd4284 447 if (!depth)
1da177e4
LT
448 goto abort_too_big;
449
450 err = 0;
451 ptr = fragment;
010d331f 452
71dd4284 453 if (depth == 1) {
177848a0 454 phys64 = ufs_inode_getfrag(inode, ptr, fragment, 1, &err, &phys,
8d9dcf14 455 &new, bh_result->b_page);
177848a0
AV
456 if (phys64) {
457 phys64 += frag;
458 phys = phys64;
459 }
1da177e4
LT
460 goto out;
461 }
462 ptr -= UFS_NDIR_FRAGMENT;
71dd4284 463 if (depth == 2) {
177848a0 464 phys64 = ufs_inode_getfrag(inode,
8d9dcf14
AV
465 UFS_IND_FRAGMENT + (ptr >> uspi->s_apbshift),
466 fragment, uspi->s_fpb, &err, NULL, NULL,
467 bh_result->b_page);
177848a0
AV
468 if (phys64) {
469 phys64 += (ptr >> uspi->s_apbshift) & uspi->s_fpbmask;
470 bh = sb_getblk(sb, phys64);
471 } else {
472 bh = NULL;
473 }
1da177e4
LT
474 goto get_indirect;
475 }
476 ptr -= 1 << (uspi->s_apbshift + uspi->s_fpbshift);
71dd4284 477 if (depth == 3) {
177848a0 478 phys64 = ufs_inode_getfrag(inode,
8d9dcf14
AV
479 UFS_DIND_FRAGMENT + (ptr >> uspi->s_2apbshift),
480 fragment, uspi->s_fpb, &err, NULL, NULL,
481 bh_result->b_page);
177848a0
AV
482 if (phys64) {
483 phys64 += (ptr >> uspi->s_2apbshift) & uspi->s_fpbmask;
484 bh = sb_getblk(sb, phys64);
485 } else {
486 bh = NULL;
487 }
1da177e4
LT
488 goto get_double;
489 }
490 ptr -= 1 << (uspi->s_2apbshift + uspi->s_fpbshift);
177848a0 491 phys64 = ufs_inode_getfrag(inode,
8d9dcf14
AV
492 UFS_TIND_FRAGMENT + (ptr >> uspi->s_3apbshift),
493 fragment, uspi->s_fpb, &err, NULL, NULL,
494 bh_result->b_page);
177848a0
AV
495 if (phys64) {
496 phys64 += (ptr >> uspi->s_3apbshift) & uspi->s_fpbmask;
497 bh = sb_getblk(sb, phys64);
498 } else {
499 bh = NULL;
500 }
501 phys64 = ufs_inode_getblock(inode, bh,
8d9dcf14
AV
502 (ptr >> uspi->s_2apbshift) & uspi->s_apbmask,
503 fragment, &err, NULL, NULL, NULL);
177848a0
AV
504 if (phys64) {
505 phys64 += (ptr >> uspi->s_2apbshift) & uspi->s_fpbmask,
506 bh = sb_getblk(sb, phys64);
507 } else {
508 bh = NULL;
509 }
1da177e4 510get_double:
177848a0 511 phys64 = ufs_inode_getblock(inode, bh,
8d9dcf14
AV
512 (ptr >> uspi->s_apbshift) & uspi->s_apbmask,
513 fragment, &err, NULL, NULL, NULL);
177848a0
AV
514 if (phys64) {
515 phys64 += (ptr >> uspi->s_apbshift) & uspi->s_fpbmask,
516 bh = sb_getblk(sb, phys64);
517 } else {
518 bh = NULL;
519 }
1da177e4 520get_indirect:
177848a0 521 phys64 = ufs_inode_getblock(inode, bh, ptr & uspi->s_apbmask, fragment,
8d9dcf14 522 &err, &phys, &new, bh_result->b_page);
177848a0
AV
523 if (phys64) {
524 phys64 += frag;
525 phys = phys64;
526 }
1da177e4
LT
527out:
528 if (err)
529 goto abort;
530 if (new)
531 set_buffer_new(bh_result);
532 map_bh(bh_result, sb, phys);
533abort:
724bb09f 534 mutex_unlock(&UFS_I(inode)->truncate_mutex);
788257d6 535
1da177e4
LT
536 return err;
537
1da177e4
LT
538abort_too_big:
539 ufs_warning(sb, "ufs_get_block", "block > big");
540 goto abort;
541}
542
1da177e4
LT
543static int ufs_writepage(struct page *page, struct writeback_control *wbc)
544{
545 return block_write_full_page(page,ufs_getfrag_block,wbc);
546}
82b9d1d0 547
1da177e4
LT
548static int ufs_readpage(struct file *file, struct page *page)
549{
550 return block_read_full_page(page,ufs_getfrag_block);
551}
82b9d1d0 552
f4e420dc 553int ufs_prepare_chunk(struct page *page, loff_t pos, unsigned len)
1da177e4 554{
6e1db88d 555 return __block_write_begin(page, pos, len, ufs_getfrag_block);
1da177e4 556}
82b9d1d0 557
010d331f
AV
558static void ufs_truncate_blocks(struct inode *);
559
83f6e371
MS
560static void ufs_write_failed(struct address_space *mapping, loff_t to)
561{
562 struct inode *inode = mapping->host;
563
3b7a3a05 564 if (to > inode->i_size) {
7caef267 565 truncate_pagecache(inode, inode->i_size);
3b7a3a05
AV
566 ufs_truncate_blocks(inode);
567 }
83f6e371
MS
568}
569
82b9d1d0
NP
570static int ufs_write_begin(struct file *file, struct address_space *mapping,
571 loff_t pos, unsigned len, unsigned flags,
572 struct page **pagep, void **fsdata)
573{
155130a4
CH
574 int ret;
575
576 ret = block_write_begin(mapping, pos, len, flags, pagep,
f4e420dc 577 ufs_getfrag_block);
83f6e371
MS
578 if (unlikely(ret))
579 ufs_write_failed(mapping, pos + len);
155130a4
CH
580
581 return ret;
82b9d1d0
NP
582}
583
3b7a3a05
AV
584static int ufs_write_end(struct file *file, struct address_space *mapping,
585 loff_t pos, unsigned len, unsigned copied,
586 struct page *page, void *fsdata)
587{
588 int ret;
589
590 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
591 if (ret < len)
592 ufs_write_failed(mapping, pos + len);
593 return ret;
594}
595
1da177e4
LT
596static sector_t ufs_bmap(struct address_space *mapping, sector_t block)
597{
598 return generic_block_bmap(mapping,block,ufs_getfrag_block);
599}
82b9d1d0 600
f5e54d6e 601const struct address_space_operations ufs_aops = {
1da177e4
LT
602 .readpage = ufs_readpage,
603 .writepage = ufs_writepage,
82b9d1d0 604 .write_begin = ufs_write_begin,
3b7a3a05 605 .write_end = ufs_write_end,
1da177e4
LT
606 .bmap = ufs_bmap
607};
608
826843a3
ED
609static void ufs_set_inode_ops(struct inode *inode)
610{
611 if (S_ISREG(inode->i_mode)) {
612 inode->i_op = &ufs_file_inode_operations;
613 inode->i_fop = &ufs_file_operations;
614 inode->i_mapping->a_ops = &ufs_aops;
615 } else if (S_ISDIR(inode->i_mode)) {
616 inode->i_op = &ufs_dir_inode_operations;
617 inode->i_fop = &ufs_dir_operations;
618 inode->i_mapping->a_ops = &ufs_aops;
619 } else if (S_ISLNK(inode->i_mode)) {
4b8061a6 620 if (!inode->i_blocks) {
826843a3 621 inode->i_op = &ufs_fast_symlink_inode_operations;
4b8061a6
AV
622 inode->i_link = (char *)UFS_I(inode)->i_u1.i_symlink;
623 } else {
311b9549 624 inode->i_op = &ufs_symlink_inode_operations;
826843a3
ED
625 inode->i_mapping->a_ops = &ufs_aops;
626 }
627 } else
628 init_special_inode(inode, inode->i_mode,
629 ufs_get_inode_dev(inode->i_sb, UFS_I(inode)));
630}
631
07a0cfec 632static int ufs1_read_inode(struct inode *inode, struct ufs_inode *ufs_inode)
1da177e4
LT
633{
634 struct ufs_inode_info *ufsi = UFS_I(inode);
05f225dc 635 struct super_block *sb = inode->i_sb;
6a9a06d9 636 umode_t mode;
1da177e4
LT
637
638 /*
639 * Copy data to the in-core inode.
640 */
641 inode->i_mode = mode = fs16_to_cpu(sb, ufs_inode->ui_mode);
bfe86848 642 set_nlink(inode, fs16_to_cpu(sb, ufs_inode->ui_nlink));
07a0cfec 643 if (inode->i_nlink == 0) {
1da177e4 644 ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
07a0cfec
ED
645 return -1;
646 }
010d331f 647
1da177e4
LT
648 /*
649 * Linux now has 32-bit uid and gid, so we can support EFT.
650 */
72235465
EB
651 i_uid_write(inode, ufs_get_inode_uid(sb, ufs_inode));
652 i_gid_write(inode, ufs_get_inode_gid(sb, ufs_inode));
1da177e4
LT
653
654 inode->i_size = fs64_to_cpu(sb, ufs_inode->ui_size);
655 inode->i_atime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_atime.tv_sec);
656 inode->i_ctime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_ctime.tv_sec);
657 inode->i_mtime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_mtime.tv_sec);
658 inode->i_mtime.tv_nsec = 0;
659 inode->i_atime.tv_nsec = 0;
660 inode->i_ctime.tv_nsec = 0;
661 inode->i_blocks = fs32_to_cpu(sb, ufs_inode->ui_blocks);
3313e292 662 inode->i_generation = fs32_to_cpu(sb, ufs_inode->ui_gen);
1da177e4 663 ufsi->i_flags = fs32_to_cpu(sb, ufs_inode->ui_flags);
1da177e4
LT
664 ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
665 ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
05f225dc 666
010d331f 667
1da177e4 668 if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
f33219b7
DG
669 memcpy(ufsi->i_u1.i_data, &ufs_inode->ui_u2.ui_addr,
670 sizeof(ufs_inode->ui_u2.ui_addr));
dd187a26 671 } else {
f33219b7 672 memcpy(ufsi->i_u1.i_symlink, ufs_inode->ui_u2.ui_symlink,
b12903f1
DG
673 sizeof(ufs_inode->ui_u2.ui_symlink) - 1);
674 ufsi->i_u1.i_symlink[sizeof(ufs_inode->ui_u2.ui_symlink) - 1] = 0;
1da177e4 675 }
07a0cfec 676 return 0;
05f225dc 677}
1da177e4 678
07a0cfec 679static int ufs2_read_inode(struct inode *inode, struct ufs2_inode *ufs2_inode)
05f225dc
ED
680{
681 struct ufs_inode_info *ufsi = UFS_I(inode);
682 struct super_block *sb = inode->i_sb;
6a9a06d9 683 umode_t mode;
1da177e4 684
abf5d15f 685 UFSD("Reading ufs2 inode, ino %lu\n", inode->i_ino);
1da177e4
LT
686 /*
687 * Copy data to the in-core inode.
688 */
689 inode->i_mode = mode = fs16_to_cpu(sb, ufs2_inode->ui_mode);
bfe86848 690 set_nlink(inode, fs16_to_cpu(sb, ufs2_inode->ui_nlink));
07a0cfec 691 if (inode->i_nlink == 0) {
1da177e4 692 ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
07a0cfec
ED
693 return -1;
694 }
1da177e4
LT
695
696 /*
697 * Linux now has 32-bit uid and gid, so we can support EFT.
698 */
72235465
EB
699 i_uid_write(inode, fs32_to_cpu(sb, ufs2_inode->ui_uid));
700 i_gid_write(inode, fs32_to_cpu(sb, ufs2_inode->ui_gid));
1da177e4
LT
701
702 inode->i_size = fs64_to_cpu(sb, ufs2_inode->ui_size);
2189850f
ED
703 inode->i_atime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_atime);
704 inode->i_ctime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_ctime);
705 inode->i_mtime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_mtime);
706 inode->i_atime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_atimensec);
707 inode->i_ctime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_ctimensec);
708 inode->i_mtime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_mtimensec);
1da177e4 709 inode->i_blocks = fs64_to_cpu(sb, ufs2_inode->ui_blocks);
3313e292 710 inode->i_generation = fs32_to_cpu(sb, ufs2_inode->ui_gen);
1da177e4 711 ufsi->i_flags = fs32_to_cpu(sb, ufs2_inode->ui_flags);
1da177e4
LT
712 /*
713 ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
714 ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
715 */
1da177e4
LT
716
717 if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
f33219b7
DG
718 memcpy(ufsi->i_u1.u2_i_data, &ufs2_inode->ui_u2.ui_addr,
719 sizeof(ufs2_inode->ui_u2.ui_addr));
05f225dc 720 } else {
f33219b7 721 memcpy(ufsi->i_u1.i_symlink, ufs2_inode->ui_u2.ui_symlink,
b12903f1
DG
722 sizeof(ufs2_inode->ui_u2.ui_symlink) - 1);
723 ufsi->i_u1.i_symlink[sizeof(ufs2_inode->ui_u2.ui_symlink) - 1] = 0;
1da177e4 724 }
07a0cfec 725 return 0;
05f225dc
ED
726}
727
b55c460d 728struct inode *ufs_iget(struct super_block *sb, unsigned long ino)
05f225dc 729{
b55c460d
DH
730 struct ufs_inode_info *ufsi;
731 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
05f225dc 732 struct buffer_head * bh;
b55c460d 733 struct inode *inode;
07a0cfec 734 int err;
05f225dc 735
b55c460d 736 UFSD("ENTER, ino %lu\n", ino);
05f225dc 737
b55c460d 738 if (ino < UFS_ROOTINO || ino > (uspi->s_ncg * uspi->s_ipg)) {
05f225dc 739 ufs_warning(sb, "ufs_read_inode", "bad inode number (%lu)\n",
b55c460d
DH
740 ino);
741 return ERR_PTR(-EIO);
05f225dc
ED
742 }
743
b55c460d
DH
744 inode = iget_locked(sb, ino);
745 if (!inode)
746 return ERR_PTR(-ENOMEM);
747 if (!(inode->i_state & I_NEW))
748 return inode;
749
750 ufsi = UFS_I(inode);
751
05f225dc
ED
752 bh = sb_bread(sb, uspi->s_sbbase + ufs_inotofsba(inode->i_ino));
753 if (!bh) {
754 ufs_warning(sb, "ufs_read_inode", "unable to read inode %lu\n",
755 inode->i_ino);
756 goto bad_inode;
757 }
758 if ((UFS_SB(sb)->s_flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2) {
759 struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
760
07a0cfec
ED
761 err = ufs2_read_inode(inode,
762 ufs2_inode + ufs_inotofsbo(inode->i_ino));
05f225dc
ED
763 } else {
764 struct ufs_inode *ufs_inode = (struct ufs_inode *)bh->b_data;
765
07a0cfec
ED
766 err = ufs1_read_inode(inode,
767 ufs_inode + ufs_inotofsbo(inode->i_ino));
05f225dc
ED
768 }
769
07a0cfec
ED
770 if (err)
771 goto bad_inode;
05f225dc
ED
772 inode->i_version++;
773 ufsi->i_lastfrag =
774 (inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift;
775 ufsi->i_dir_start_lookup = 0;
1da177e4
LT
776 ufsi->i_osync = 0;
777
826843a3 778 ufs_set_inode_ops(inode);
1da177e4
LT
779
780 brelse(bh);
781
abf5d15f 782 UFSD("EXIT\n");
b55c460d
DH
783 unlock_new_inode(inode);
784 return inode;
05f225dc
ED
785
786bad_inode:
b55c460d
DH
787 iget_failed(inode);
788 return ERR_PTR(-EIO);
1da177e4
LT
789}
790
3313e292 791static void ufs1_update_inode(struct inode *inode, struct ufs_inode *ufs_inode)
1da177e4 792{
3313e292
ED
793 struct super_block *sb = inode->i_sb;
794 struct ufs_inode_info *ufsi = UFS_I(inode);
1da177e4
LT
795
796 ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
797 ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
798
72235465
EB
799 ufs_set_inode_uid(sb, ufs_inode, i_uid_read(inode));
800 ufs_set_inode_gid(sb, ufs_inode, i_gid_read(inode));
010d331f 801
1da177e4
LT
802 ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
803 ufs_inode->ui_atime.tv_sec = cpu_to_fs32(sb, inode->i_atime.tv_sec);
804 ufs_inode->ui_atime.tv_usec = 0;
805 ufs_inode->ui_ctime.tv_sec = cpu_to_fs32(sb, inode->i_ctime.tv_sec);
806 ufs_inode->ui_ctime.tv_usec = 0;
807 ufs_inode->ui_mtime.tv_sec = cpu_to_fs32(sb, inode->i_mtime.tv_sec);
808 ufs_inode->ui_mtime.tv_usec = 0;
809 ufs_inode->ui_blocks = cpu_to_fs32(sb, inode->i_blocks);
810 ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
3313e292 811 ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
1da177e4 812
3313e292 813 if ((UFS_SB(sb)->s_flags & UFS_UID_MASK) == UFS_UID_EFT) {
1da177e4
LT
814 ufs_inode->ui_u3.ui_sun.ui_shadow = cpu_to_fs32(sb, ufsi->i_shadow);
815 ufs_inode->ui_u3.ui_sun.ui_oeftflag = cpu_to_fs32(sb, ufsi->i_oeftflag);
816 }
817
818 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
819 /* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
820 ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.i_data[0];
821 } else if (inode->i_blocks) {
f33219b7
DG
822 memcpy(&ufs_inode->ui_u2.ui_addr, ufsi->i_u1.i_data,
823 sizeof(ufs_inode->ui_u2.ui_addr));
1da177e4
LT
824 }
825 else {
f33219b7
DG
826 memcpy(&ufs_inode->ui_u2.ui_symlink, ufsi->i_u1.i_symlink,
827 sizeof(ufs_inode->ui_u2.ui_symlink));
1da177e4
LT
828 }
829
830 if (!inode->i_nlink)
831 memset (ufs_inode, 0, sizeof(struct ufs_inode));
3313e292
ED
832}
833
834static void ufs2_update_inode(struct inode *inode, struct ufs2_inode *ufs_inode)
835{
836 struct super_block *sb = inode->i_sb;
837 struct ufs_inode_info *ufsi = UFS_I(inode);
3313e292
ED
838
839 UFSD("ENTER\n");
840 ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
841 ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
842
72235465
EB
843 ufs_inode->ui_uid = cpu_to_fs32(sb, i_uid_read(inode));
844 ufs_inode->ui_gid = cpu_to_fs32(sb, i_gid_read(inode));
3313e292
ED
845
846 ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
2189850f
ED
847 ufs_inode->ui_atime = cpu_to_fs64(sb, inode->i_atime.tv_sec);
848 ufs_inode->ui_atimensec = cpu_to_fs32(sb, inode->i_atime.tv_nsec);
849 ufs_inode->ui_ctime = cpu_to_fs64(sb, inode->i_ctime.tv_sec);
850 ufs_inode->ui_ctimensec = cpu_to_fs32(sb, inode->i_ctime.tv_nsec);
851 ufs_inode->ui_mtime = cpu_to_fs64(sb, inode->i_mtime.tv_sec);
852 ufs_inode->ui_mtimensec = cpu_to_fs32(sb, inode->i_mtime.tv_nsec);
3313e292
ED
853
854 ufs_inode->ui_blocks = cpu_to_fs64(sb, inode->i_blocks);
855 ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
856 ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
857
858 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
859 /* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
860 ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.u2_i_data[0];
861 } else if (inode->i_blocks) {
f33219b7
DG
862 memcpy(&ufs_inode->ui_u2.ui_addr, ufsi->i_u1.u2_i_data,
863 sizeof(ufs_inode->ui_u2.ui_addr));
3313e292 864 } else {
f33219b7
DG
865 memcpy(&ufs_inode->ui_u2.ui_symlink, ufsi->i_u1.i_symlink,
866 sizeof(ufs_inode->ui_u2.ui_symlink));
3313e292
ED
867 }
868
869 if (!inode->i_nlink)
870 memset (ufs_inode, 0, sizeof(struct ufs2_inode));
871 UFSD("EXIT\n");
872}
873
874static int ufs_update_inode(struct inode * inode, int do_sync)
875{
876 struct super_block *sb = inode->i_sb;
877 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
878 struct buffer_head * bh;
879
880 UFSD("ENTER, ino %lu\n", inode->i_ino);
881
882 if (inode->i_ino < UFS_ROOTINO ||
883 inode->i_ino > (uspi->s_ncg * uspi->s_ipg)) {
884 ufs_warning (sb, "ufs_read_inode", "bad inode number (%lu)\n", inode->i_ino);
885 return -1;
886 }
887
888 bh = sb_bread(sb, ufs_inotofsba(inode->i_ino));
889 if (!bh) {
890 ufs_warning (sb, "ufs_read_inode", "unable to read inode %lu\n", inode->i_ino);
891 return -1;
892 }
893 if (uspi->fs_magic == UFS2_MAGIC) {
894 struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
895
896 ufs2_update_inode(inode,
897 ufs2_inode + ufs_inotofsbo(inode->i_ino));
898 } else {
899 struct ufs_inode *ufs_inode = (struct ufs_inode *) bh->b_data;
900
901 ufs1_update_inode(inode, ufs_inode + ufs_inotofsbo(inode->i_ino));
902 }
010d331f 903
1da177e4
LT
904 mark_buffer_dirty(bh);
905 if (do_sync)
906 sync_dirty_buffer(bh);
907 brelse (bh);
010d331f 908
abf5d15f 909 UFSD("EXIT\n");
1da177e4
LT
910 return 0;
911}
912
a9185b41 913int ufs_write_inode(struct inode *inode, struct writeback_control *wbc)
1da177e4 914{
f3e0f3da 915 return ufs_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1da177e4
LT
916}
917
918int ufs_sync_inode (struct inode *inode)
919{
920 return ufs_update_inode (inode, 1);
921}
922
58e8268c 923void ufs_evict_inode(struct inode * inode)
1da177e4 924{
58e8268c
AV
925 int want_delete = 0;
926
927 if (!inode->i_nlink && !is_bad_inode(inode))
928 want_delete = 1;
10e5dce0 929
91b0abe3 930 truncate_inode_pages_final(&inode->i_data);
58e8268c 931 if (want_delete) {
58e8268c 932 inode->i_size = 0;
d622f167
AV
933 if (inode->i_blocks)
934 ufs_truncate_blocks(inode);
58e8268c
AV
935 }
936
937 invalidate_inode_buffers(inode);
dbd5768f 938 clear_inode(inode);
58e8268c 939
f3e0f3da 940 if (want_delete)
9ef7db7f 941 ufs_free_inode(inode);
1da177e4 942}
010d331f 943
a138b4b6
AV
944struct to_free {
945 struct inode *inode;
946 u64 to;
947 unsigned count;
948};
949
950static inline void free_data(struct to_free *ctx, u64 from, unsigned count)
951{
952 if (ctx->count && ctx->to != from) {
953 ufs_free_blocks(ctx->inode, ctx->to - ctx->count, ctx->count);
954 ctx->count = 0;
955 }
956 ctx->count += count;
957 ctx->to = from + count;
958}
959
010d331f
AV
960#define DIRECT_BLOCK ((inode->i_size + uspi->s_bsize - 1) >> uspi->s_bshift)
961#define DIRECT_FRAGMENT ((inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift)
962
963static void ufs_trunc_direct(struct inode *inode)
964{
965 struct ufs_inode_info *ufsi = UFS_I(inode);
966 struct super_block * sb;
967 struct ufs_sb_private_info * uspi;
968 void *p;
969 u64 frag1, frag2, frag3, frag4, block1, block2;
a138b4b6 970 struct to_free ctx = {.inode = inode};
010d331f
AV
971 unsigned i, tmp;
972
973 UFSD("ENTER: ino %lu\n", inode->i_ino);
974
975 sb = inode->i_sb;
976 uspi = UFS_SB(sb)->s_uspi;
977
010d331f
AV
978 frag1 = DIRECT_FRAGMENT;
979 frag4 = min_t(u64, UFS_NDIR_FRAGMENT, ufsi->i_lastfrag);
980 frag2 = ((frag1 & uspi->s_fpbmask) ? ((frag1 | uspi->s_fpbmask) + 1) : frag1);
981 frag3 = frag4 & ~uspi->s_fpbmask;
982 block1 = block2 = 0;
983 if (frag2 > frag3) {
984 frag2 = frag4;
985 frag3 = frag4 = 0;
986 } else if (frag2 < frag3) {
987 block1 = ufs_fragstoblks (frag2);
988 block2 = ufs_fragstoblks (frag3);
989 }
990
991 UFSD("ino %lu, frag1 %llu, frag2 %llu, block1 %llu, block2 %llu,"
992 " frag3 %llu, frag4 %llu\n", inode->i_ino,
993 (unsigned long long)frag1, (unsigned long long)frag2,
994 (unsigned long long)block1, (unsigned long long)block2,
995 (unsigned long long)frag3, (unsigned long long)frag4);
996
997 if (frag1 >= frag2)
998 goto next1;
999
1000 /*
1001 * Free first free fragments
1002 */
1003 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag1));
1004 tmp = ufs_data_ptr_to_cpu(sb, p);
1005 if (!tmp )
1006 ufs_panic (sb, "ufs_trunc_direct", "internal error");
1007 frag2 -= frag1;
1008 frag1 = ufs_fragnum (frag1);
1009
1010 ufs_free_fragments(inode, tmp + frag1, frag2);
010d331f
AV
1011
1012next1:
1013 /*
1014 * Free whole blocks
1015 */
1016 for (i = block1 ; i < block2; i++) {
1017 p = ufs_get_direct_data_ptr(uspi, ufsi, i);
1018 tmp = ufs_data_ptr_to_cpu(sb, p);
1019 if (!tmp)
1020 continue;
1021 write_seqlock(&ufsi->meta_lock);
1022 ufs_data_ptr_clear(uspi, p);
1023 write_sequnlock(&ufsi->meta_lock);
1024
a138b4b6 1025 free_data(&ctx, tmp, uspi->s_fpb);
010d331f
AV
1026 }
1027
a138b4b6 1028 free_data(&ctx, 0, 0);
010d331f
AV
1029
1030 if (frag3 >= frag4)
1031 goto next3;
1032
1033 /*
1034 * Free last free fragments
1035 */
1036 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag3));
1037 tmp = ufs_data_ptr_to_cpu(sb, p);
1038 if (!tmp )
1039 ufs_panic(sb, "ufs_truncate_direct", "internal error");
1040 frag4 = ufs_fragnum (frag4);
1041 write_seqlock(&ufsi->meta_lock);
1042 ufs_data_ptr_clear(uspi, p);
1043 write_sequnlock(&ufsi->meta_lock);
1044
1045 ufs_free_fragments (inode, tmp, frag4);
010d331f
AV
1046 next3:
1047
1048 UFSD("EXIT: ino %lu\n", inode->i_ino);
1049}
1050
163073db 1051static void free_full_branch(struct inode *inode, u64 ind_block, int depth)
6d1ebbca
AV
1052{
1053 struct super_block *sb = inode->i_sb;
1054 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
163073db 1055 struct ufs_buffer_head *ubh = ubh_bread(sb, ind_block, uspi->s_bsize);
6d1ebbca
AV
1056 unsigned i;
1057
163073db 1058 if (!ubh)
6d1ebbca 1059 return;
6d1ebbca
AV
1060
1061 if (--depth) {
163073db
AV
1062 for (i = 0; i < uspi->s_apb; i++) {
1063 void *p = ubh_get_data_ptr(uspi, ubh, i);
1064 u64 block = ufs_data_ptr_to_cpu(sb, p);
cc7231e3 1065 if (block)
163073db 1066 free_full_branch(inode, block, depth);
6d1ebbca
AV
1067 }
1068 } else {
1069 struct to_free ctx = {.inode = inode};
1070
1071 for (i = 0; i < uspi->s_apb; i++) {
163073db
AV
1072 void *p = ubh_get_data_ptr(uspi, ubh, i);
1073 u64 block = ufs_data_ptr_to_cpu(sb, p);
cc7231e3 1074 if (block)
163073db 1075 free_data(&ctx, block, uspi->s_fpb);
6d1ebbca
AV
1076 }
1077 free_data(&ctx, 0, 0);
1078 }
6d1ebbca
AV
1079
1080 ubh_bforget(ubh);
163073db 1081 ufs_free_blocks(inode, ind_block, uspi->s_fpb);
6d1ebbca
AV
1082}
1083
7b4e4f7f 1084static void free_branch_tail(struct inode *inode, unsigned from, struct ufs_buffer_head *ubh, int depth)
010d331f 1085{
7bad5939
AV
1086 struct super_block *sb = inode->i_sb;
1087 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
7bad5939 1088 unsigned i;
010d331f 1089
9e0fbbde 1090 if (--depth) {
7b4e4f7f 1091 for (i = from; i < uspi->s_apb ; i++) {
163073db
AV
1092 void *p = ubh_get_data_ptr(uspi, ubh, i);
1093 u64 block = ufs_data_ptr_to_cpu(sb, p);
1094 if (block) {
1095 write_seqlock(&UFS_I(inode)->meta_lock);
1096 ufs_data_ptr_clear(uspi, p);
1097 write_sequnlock(&UFS_I(inode)->meta_lock);
1098 ubh_mark_buffer_dirty(ubh);
1099 free_full_branch(inode, block, depth);
1100 }
a9657423 1101 }
9e0fbbde 1102 } else {
a138b4b6 1103 struct to_free ctx = {.inode = inode};
9e0fbbde
AV
1104
1105 for (i = from; i < uspi->s_apb; i++) {
163073db
AV
1106 void *p = ubh_get_data_ptr(uspi, ubh, i);
1107 u64 block = ufs_data_ptr_to_cpu(sb, p);
1108 if (block) {
1109 write_seqlock(&UFS_I(inode)->meta_lock);
1110 ufs_data_ptr_clear(uspi, p);
1111 write_sequnlock(&UFS_I(inode)->meta_lock);
1112 ubh_mark_buffer_dirty(ubh);
1113 free_data(&ctx, block, uspi->s_fpb);
163073db 1114 }
9e0fbbde 1115 }
a138b4b6 1116 free_data(&ctx, 0, 0);
010d331f 1117 }
9e0fbbde
AV
1118 if (IS_SYNC(inode) && ubh_buffer_dirty(ubh))
1119 ubh_sync_block(ubh);
1120 ubh_brelse(ubh);
010d331f
AV
1121}
1122
1123static int ufs_alloc_lastblock(struct inode *inode, loff_t size)
1124{
1125 int err = 0;
1126 struct super_block *sb = inode->i_sb;
1127 struct address_space *mapping = inode->i_mapping;
1128 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
1129 unsigned i, end;
1130 sector_t lastfrag;
1131 struct page *lastpage;
1132 struct buffer_head *bh;
1133 u64 phys64;
1134
1135 lastfrag = (size + uspi->s_fsize - 1) >> uspi->s_fshift;
1136
1137 if (!lastfrag)
1138 goto out;
1139
1140 lastfrag--;
1141
1142 lastpage = ufs_get_locked_page(mapping, lastfrag >>
1143 (PAGE_CACHE_SHIFT - inode->i_blkbits));
1144 if (IS_ERR(lastpage)) {
1145 err = -EIO;
1146 goto out;
1147 }
1148
1149 end = lastfrag & ((1 << (PAGE_CACHE_SHIFT - inode->i_blkbits)) - 1);
1150 bh = page_buffers(lastpage);
1151 for (i = 0; i < end; ++i)
1152 bh = bh->b_this_page;
1153
1154
1155 err = ufs_getfrag_block(inode, lastfrag, bh, 1);
1156
1157 if (unlikely(err))
1158 goto out_unlock;
1159
1160 if (buffer_new(bh)) {
1161 clear_buffer_new(bh);
1162 unmap_underlying_metadata(bh->b_bdev,
1163 bh->b_blocknr);
1164 /*
1165 * we do not zeroize fragment, because of
1166 * if it maped to hole, it already contains zeroes
1167 */
1168 set_buffer_uptodate(bh);
1169 mark_buffer_dirty(bh);
1170 set_page_dirty(lastpage);
1171 }
1172
1173 if (lastfrag >= UFS_IND_FRAGMENT) {
1174 end = uspi->s_fpb - ufs_fragnum(lastfrag) - 1;
1175 phys64 = bh->b_blocknr + 1;
1176 for (i = 0; i < end; ++i) {
1177 bh = sb_getblk(sb, i + phys64);
1178 lock_buffer(bh);
1179 memset(bh->b_data, 0, sb->s_blocksize);
1180 set_buffer_uptodate(bh);
1181 mark_buffer_dirty(bh);
1182 unlock_buffer(bh);
1183 sync_dirty_buffer(bh);
1184 brelse(bh);
1185 }
1186 }
1187out_unlock:
1188 ufs_put_locked_page(lastpage);
1189out:
1190 return err;
1191}
1192
1193static void __ufs_truncate_blocks(struct inode *inode)
1194{
1195 struct ufs_inode_info *ufsi = UFS_I(inode);
1196 struct super_block *sb = inode->i_sb;
1197 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
7bad5939 1198 unsigned offsets[4];
31cd043e 1199 int depth = ufs_block_to_path(inode, DIRECT_BLOCK, offsets);
6775e24d 1200 int depth2;
42432739 1201 unsigned i;
7b4e4f7f
AV
1202 struct ufs_buffer_head *ubh[3];
1203 void *p;
1204 u64 block;
6775e24d
AV
1205
1206 if (!depth)
1207 return;
1208
1209 /* find the last non-zero in offsets[] */
1210 for (depth2 = depth - 1; depth2; depth2--)
1211 if (offsets[depth2])
1212 break;
010d331f
AV
1213
1214 mutex_lock(&ufsi->truncate_mutex);
42432739 1215 if (depth == 1) {
31cd043e 1216 ufs_trunc_direct(inode);
42432739
AV
1217 offsets[0] = UFS_IND_BLOCK;
1218 } else {
7b4e4f7f
AV
1219 /* get the blocks that should be partially emptied */
1220 p = ufs_get_direct_data_ptr(uspi, ufsi, offsets[0]);
1221 for (i = 0; i < depth2; i++) {
1222 offsets[i]++; /* next branch is fully freed */
1223 block = ufs_data_ptr_to_cpu(sb, p);
1224 if (!block)
1225 break;
1226 ubh[i] = ubh_bread(sb, block, uspi->s_bsize);
1227 if (!ubh[i]) {
1228 write_seqlock(&ufsi->meta_lock);
1229 ufs_data_ptr_clear(uspi, p);
1230 write_sequnlock(&ufsi->meta_lock);
1231 break;
1232 }
1233 p = ubh_get_data_ptr(uspi, ubh[i], offsets[i + 1]);
1234 }
f53bd142 1235 while (i--)
7b4e4f7f 1236 free_branch_tail(inode, offsets[i + 1], ubh[i], depth - i - 1);
42432739
AV
1237 }
1238 for (i = offsets[0]; i <= UFS_TIND_BLOCK; i++) {
163073db
AV
1239 p = ufs_get_direct_data_ptr(uspi, ufsi, i);
1240 block = ufs_data_ptr_to_cpu(sb, p);
1241 if (block) {
1242 write_seqlock(&ufsi->meta_lock);
1243 ufs_data_ptr_clear(uspi, p);
1244 write_sequnlock(&ufsi->meta_lock);
1245 free_full_branch(inode, block, i - UFS_IND_BLOCK + 1);
1246 }
31cd043e 1247 }
010d331f 1248 ufsi->i_lastfrag = DIRECT_FRAGMENT;
b6eede0e 1249 mark_inode_dirty(inode);
010d331f
AV
1250 mutex_unlock(&ufsi->truncate_mutex);
1251}
1252
1253static int ufs_truncate(struct inode *inode, loff_t size)
1254{
1255 int err = 0;
1256
1257 UFSD("ENTER: ino %lu, i_size: %llu, old_i_size: %llu\n",
1258 inode->i_ino, (unsigned long long)size,
1259 (unsigned long long)i_size_read(inode));
1260
1261 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1262 S_ISLNK(inode->i_mode)))
1263 return -EINVAL;
1264 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1265 return -EPERM;
1266
1267 err = ufs_alloc_lastblock(inode, size);
1268
1269 if (err)
1270 goto out;
1271
1272 block_truncate_page(inode->i_mapping, size, ufs_getfrag_block);
1273
1274 truncate_setsize(inode, size);
1275
1276 __ufs_truncate_blocks(inode);
1277 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
1278 mark_inode_dirty(inode);
1279out:
1280 UFSD("EXIT: err %d\n", err);
1281 return err;
1282}
1283
1284void ufs_truncate_blocks(struct inode *inode)
1285{
1286 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1287 S_ISLNK(inode->i_mode)))
1288 return;
1289 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1290 return;
1291 __ufs_truncate_blocks(inode);
1292}
1293
1294int ufs_setattr(struct dentry *dentry, struct iattr *attr)
1295{
1296 struct inode *inode = d_inode(dentry);
1297 unsigned int ia_valid = attr->ia_valid;
1298 int error;
1299
1300 error = inode_change_ok(inode, attr);
1301 if (error)
1302 return error;
1303
1304 if (ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
1305 error = ufs_truncate(inode, attr->ia_size);
1306 if (error)
1307 return error;
1308 }
1309
1310 setattr_copy(inode, attr);
1311 mark_inode_dirty(inode);
1312 return 0;
1313}
1314
1315const struct inode_operations ufs_file_inode_operations = {
1316 .setattr = ufs_setattr,
1317};
This page took 0.780975 seconds and 5 git commands to generate.