]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/ufs/inode.c
ufs_getfrag_block(): we only grab ->truncate_mutex on block creation path
[mirror_ubuntu-artful-kernel.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
7c0f6ba6 28#include <linux/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
0f3c1294
AV
208/*
209 * Unpacking tails: we have a file with partial final block and
210 * we had been asked to extend it. If the fragment being written
211 * is within the same block, we need to extend the tail just to cover
212 * that fragment. Otherwise the tail is extended to full block.
213 *
214 * Note that we might need to create a _new_ tail, but that will
215 * be handled elsewhere; this is strictly for resizing old
216 * ones.
217 */
218static bool
219ufs_extend_tail(struct inode *inode, u64 writes_to,
220 int *err, struct page *locked_page)
221{
222 struct ufs_inode_info *ufsi = UFS_I(inode);
223 struct super_block *sb = inode->i_sb;
224 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
225 unsigned lastfrag = ufsi->i_lastfrag; /* it's a short file, so unsigned is enough */
226 unsigned block = ufs_fragstoblks(lastfrag);
227 unsigned new_size;
228 void *p;
229 u64 tmp;
230
231 if (writes_to < (lastfrag | uspi->s_fpbmask))
232 new_size = (writes_to & uspi->s_fpbmask) + 1;
233 else
234 new_size = uspi->s_fpb;
235
236 p = ufs_get_direct_data_ptr(uspi, ufsi, block);
237 tmp = ufs_new_fragments(inode, p, lastfrag, ufs_data_ptr_to_cpu(sb, p),
940ef1a0
AV
238 new_size - (lastfrag & uspi->s_fpbmask), err,
239 locked_page);
0f3c1294
AV
240 return tmp != 0;
241}
242
022a6dc5
ED
243/**
244 * ufs_inode_getfrag() - allocate new fragment(s)
edc023ca 245 * @inode: pointer to inode
5336970b 246 * @index: number of block pointer within the inode's array.
edc023ca 247 * @new_fragment: number of new allocated fragment(s)
edc023ca 248 * @err: we set it if something wrong
edc023ca
FF
249 * @new: we set it if we allocate new block
250 * @locked_page: for ufs_new_fragments()
022a6dc5 251 */
177848a0 252static u64
5336970b
AV
253ufs_inode_getfrag(struct inode *inode, unsigned index,
254 sector_t new_fragment, int *err,
4e317ce7 255 int *new, struct page *locked_page)
1da177e4
LT
256{
257 struct ufs_inode_info *ufsi = UFS_I(inode);
022a6dc5
ED
258 struct super_block *sb = inode->i_sb;
259 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
5336970b 260 u64 tmp, goal, lastfrag;
0f3c1294
AV
261 unsigned nfrags = uspi->s_fpb;
262 void *p;
1da177e4 263
1da177e4
LT
264 /* TODO : to be done for write support
265 if ( (flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
266 goto ufs2;
267 */
268
5336970b 269 p = ufs_get_direct_data_ptr(uspi, ufsi, index);
54fb996a 270 tmp = ufs_data_ptr_to_cpu(sb, p);
0f3c1294
AV
271 if (tmp)
272 goto out;
54fb996a 273
1da177e4 274 lastfrag = ufsi->i_lastfrag;
1da177e4 275
0f3c1294
AV
276 /* will that be a new tail? */
277 if (new_fragment < UFS_NDIR_FRAGMENT && new_fragment >= lastfrag)
278 nfrags = (new_fragment & uspi->s_fpbmask) + 1;
279
280 goal = 0;
5336970b 281 if (index) {
0f3c1294 282 goal = ufs_data_ptr_to_cpu(sb,
5336970b 283 ufs_get_direct_data_ptr(uspi, ufsi, index - 1));
0f3c1294
AV
284 if (goal)
285 goal += uspi->s_fpb;
1da177e4 286 }
5336970b 287 tmp = ufs_new_fragments(inode, p, ufs_blknum(new_fragment),
8785d84d 288 goal, nfrags, err, locked_page);
0f3c1294 289
1da177e4 290 if (!tmp) {
1da177e4 291 *err = -ENOSPC;
177848a0 292 return 0;
1da177e4
LT
293 }
294
4e317ce7 295 if (new)
1da177e4 296 *new = 1;
02027d42 297 inode->i_ctime = current_time(inode);
1da177e4
LT
298 if (IS_SYNC(inode))
299 ufs_sync_inode (inode);
300 mark_inode_dirty(inode);
bbb3eb9d 301out:
177848a0 302 return tmp + uspi->s_sbbase;
1da177e4
LT
303
304 /* This part : To be implemented ....
305 Required only for writing, not required for READ-ONLY.
306ufs2:
307
308 u2_block = ufs_fragstoblks(fragment);
309 u2_blockoff = ufs_fragnum(fragment);
310 p = ufsi->i_u1.u2_i_data + block;
311 goal = 0;
312
313repeat2:
314 tmp = fs32_to_cpu(sb, *p);
315 lastfrag = ufsi->i_lastfrag;
316
317 */
318}
319
022a6dc5
ED
320/**
321 * ufs_inode_getblock() - allocate new block
edc023ca 322 * @inode: pointer to inode
619cfac0
AV
323 * @ind_block: block number of the indirect block
324 * @index: number of pointer within the indirect block
edc023ca 325 * @new_fragment: number of new allocated fragment
022a6dc5 326 * (block will hold this fragment and also uspi->s_fpb-1)
edc023ca 327 * @err: see ufs_inode_getfrag()
edc023ca
FF
328 * @new: see ufs_inode_getfrag()
329 * @locked_page: see ufs_inode_getfrag()
022a6dc5 330 */
177848a0 331static u64
619cfac0 332ufs_inode_getblock(struct inode *inode, u64 ind_block,
721435a7 333 unsigned index, sector_t new_fragment, int *err,
4e317ce7 334 int *new, struct page *locked_page)
1da177e4 335{
022a6dc5
ED
336 struct super_block *sb = inode->i_sb;
337 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
619cfac0 338 int shift = uspi->s_apbshift - uspi->s_fpbshift;
721435a7 339 u64 tmp = 0, goal;
619cfac0 340 struct buffer_head *bh;
54fb996a 341 void *p;
1da177e4 342
619cfac0
AV
343 if (!ind_block)
344 return 0;
345
346 bh = sb_bread(sb, ind_block + (index >> shift));
5fbfb238
AV
347 if (unlikely(!bh)) {
348 *err = -EIO;
619cfac0 349 return 0;
5fbfb238 350 }
619cfac0
AV
351
352 index &= uspi->s_apbmask >> uspi->s_fpbshift;
54fb996a 353 if (uspi->fs_magic == UFS2_MAGIC)
721435a7 354 p = (__fs64 *)bh->b_data + index;
54fb996a 355 else
721435a7 356 p = (__fs32 *)bh->b_data + index;
5a39c255 357
54fb996a 358 tmp = ufs_data_ptr_to_cpu(sb, p);
bbb3eb9d 359 if (tmp)
5a39c255 360 goto out;
1da177e4 361
721435a7
AV
362 if (index && (uspi->fs_magic == UFS2_MAGIC ?
363 (tmp = fs64_to_cpu(sb, ((__fs64 *)bh->b_data)[index-1])) :
364 (tmp = fs32_to_cpu(sb, ((__fs32 *)bh->b_data)[index-1]))))
1da177e4
LT
365 goal = tmp + uspi->s_fpb;
366 else
367 goal = bh->b_blocknr + uspi->s_fpb;
6ef4d6bf
ED
368 tmp = ufs_new_fragments(inode, p, ufs_blknum(new_fragment), goal,
369 uspi->s_fpb, err, locked_page);
5a39c255 370 if (!tmp)
1da177e4 371 goto out;
c9a27b5d 372
bbb3eb9d 373 if (new)
1da177e4 374 *new = 1;
1da177e4
LT
375
376 mark_buffer_dirty(bh);
377 if (IS_SYNC(inode))
378 sync_dirty_buffer(bh);
02027d42 379 inode->i_ctime = current_time(inode);
1da177e4
LT
380 mark_inode_dirty(inode);
381out:
382 brelse (bh);
abf5d15f 383 UFSD("EXIT\n");
177848a0
AV
384 if (tmp)
385 tmp += uspi->s_sbbase;
386 return tmp;
1da177e4
LT
387}
388
022a6dc5 389/**
7422caa5 390 * ufs_getfrag_block() - `get_block_t' function, interface between UFS and
022a6dc5 391 * readpage, writepage and so on
1da177e4
LT
392 */
393
010d331f 394static int ufs_getfrag_block(struct inode *inode, sector_t fragment, struct buffer_head *bh_result, int create)
1da177e4 395{
0385f1f9
AV
396 struct super_block *sb = inode->i_sb;
397 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
398 int err = 0, new = 0;
4b7068c8
AV
399 unsigned offsets[4];
400 int depth = ufs_block_to_path(inode, fragment >> uspi->s_fpbshift, offsets);
1da177e4 401 u64 phys64 = 0;
177848a0 402 unsigned frag = fragment & uspi->s_fpbmask;
010d331f 403
1da177e4 404 if (!create) {
4b7068c8 405 phys64 = ufs_frag_map(inode, offsets, depth);
006351ac
AV
406 if (phys64)
407 map_bh(bh_result, sb, phys64 + frag);
408 return 0;
1da177e4
LT
409 }
410
411 /* This code entered only while writing ....? */
412
724bb09f 413 mutex_lock(&UFS_I(inode)->truncate_mutex);
1da177e4 414
abf5d15f 415 UFSD("ENTER, ino %lu, fragment %llu\n", inode->i_ino, (unsigned long long)fragment);
0385f1f9
AV
416 if (unlikely(!depth)) {
417 ufs_warning(sb, "ufs_get_block", "block > big");
418 err = -EIO;
419 goto out;
420 }
0f3c1294
AV
421
422 if (UFS_I(inode)->i_lastfrag < UFS_NDIR_FRAGMENT) {
423 unsigned lastfrag = UFS_I(inode)->i_lastfrag;
424 unsigned tailfrags = lastfrag & uspi->s_fpbmask;
425 if (tailfrags && fragment >= lastfrag) {
426 if (!ufs_extend_tail(inode, fragment,
427 &err, bh_result->b_page))
0385f1f9 428 goto out;
0f3c1294
AV
429 }
430 }
431
71dd4284 432 if (depth == 1) {
5336970b 433 phys64 = ufs_inode_getfrag(inode, offsets[0], fragment,
4e317ce7 434 &err, &new, bh_result->b_page);
4eeff4c9
AV
435 } else {
436 int i;
5336970b 437 phys64 = ufs_inode_getfrag(inode, offsets[0], fragment,
4e317ce7 438 &err, NULL, NULL);
4eeff4c9
AV
439 for (i = 1; i < depth - 1; i++)
440 phys64 = ufs_inode_getblock(inode, phys64, offsets[i],
4e317ce7 441 fragment, &err, NULL, NULL);
4eeff4c9 442 phys64 = ufs_inode_getblock(inode, phys64, offsets[depth - 1],
4e317ce7 443 fragment, &err, &new, bh_result->b_page);
1da177e4 444 }
0385f1f9 445out:
177848a0
AV
446 if (phys64) {
447 phys64 += frag;
0385f1f9
AV
448 map_bh(bh_result, sb, phys64);
449 if (new)
450 set_buffer_new(bh_result);
177848a0 451 }
724bb09f 452 mutex_unlock(&UFS_I(inode)->truncate_mutex);
1da177e4 453 return err;
1da177e4
LT
454}
455
1da177e4
LT
456static int ufs_writepage(struct page *page, struct writeback_control *wbc)
457{
458 return block_write_full_page(page,ufs_getfrag_block,wbc);
459}
82b9d1d0 460
1da177e4
LT
461static int ufs_readpage(struct file *file, struct page *page)
462{
463 return block_read_full_page(page,ufs_getfrag_block);
464}
82b9d1d0 465
f4e420dc 466int ufs_prepare_chunk(struct page *page, loff_t pos, unsigned len)
1da177e4 467{
6e1db88d 468 return __block_write_begin(page, pos, len, ufs_getfrag_block);
1da177e4 469}
82b9d1d0 470
010d331f
AV
471static void ufs_truncate_blocks(struct inode *);
472
83f6e371
MS
473static void ufs_write_failed(struct address_space *mapping, loff_t to)
474{
475 struct inode *inode = mapping->host;
476
3b7a3a05 477 if (to > inode->i_size) {
7caef267 478 truncate_pagecache(inode, inode->i_size);
3b7a3a05
AV
479 ufs_truncate_blocks(inode);
480 }
83f6e371
MS
481}
482
82b9d1d0
NP
483static int ufs_write_begin(struct file *file, struct address_space *mapping,
484 loff_t pos, unsigned len, unsigned flags,
485 struct page **pagep, void **fsdata)
486{
155130a4
CH
487 int ret;
488
489 ret = block_write_begin(mapping, pos, len, flags, pagep,
f4e420dc 490 ufs_getfrag_block);
83f6e371
MS
491 if (unlikely(ret))
492 ufs_write_failed(mapping, pos + len);
155130a4
CH
493
494 return ret;
82b9d1d0
NP
495}
496
3b7a3a05
AV
497static int ufs_write_end(struct file *file, struct address_space *mapping,
498 loff_t pos, unsigned len, unsigned copied,
499 struct page *page, void *fsdata)
500{
501 int ret;
502
503 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
504 if (ret < len)
505 ufs_write_failed(mapping, pos + len);
506 return ret;
507}
508
1da177e4
LT
509static sector_t ufs_bmap(struct address_space *mapping, sector_t block)
510{
511 return generic_block_bmap(mapping,block,ufs_getfrag_block);
512}
82b9d1d0 513
f5e54d6e 514const struct address_space_operations ufs_aops = {
1da177e4
LT
515 .readpage = ufs_readpage,
516 .writepage = ufs_writepage,
82b9d1d0 517 .write_begin = ufs_write_begin,
3b7a3a05 518 .write_end = ufs_write_end,
1da177e4
LT
519 .bmap = ufs_bmap
520};
521
826843a3
ED
522static void ufs_set_inode_ops(struct inode *inode)
523{
524 if (S_ISREG(inode->i_mode)) {
525 inode->i_op = &ufs_file_inode_operations;
526 inode->i_fop = &ufs_file_operations;
527 inode->i_mapping->a_ops = &ufs_aops;
528 } else if (S_ISDIR(inode->i_mode)) {
529 inode->i_op = &ufs_dir_inode_operations;
530 inode->i_fop = &ufs_dir_operations;
531 inode->i_mapping->a_ops = &ufs_aops;
532 } else if (S_ISLNK(inode->i_mode)) {
4b8061a6 533 if (!inode->i_blocks) {
4b8061a6 534 inode->i_link = (char *)UFS_I(inode)->i_u1.i_symlink;
9cdce3c0 535 inode->i_op = &simple_symlink_inode_operations;
4b8061a6 536 } else {
826843a3 537 inode->i_mapping->a_ops = &ufs_aops;
9cdce3c0 538 inode->i_op = &page_symlink_inode_operations;
21fc61c7 539 inode_nohighmem(inode);
826843a3
ED
540 }
541 } else
542 init_special_inode(inode, inode->i_mode,
543 ufs_get_inode_dev(inode->i_sb, UFS_I(inode)));
544}
545
07a0cfec 546static int ufs1_read_inode(struct inode *inode, struct ufs_inode *ufs_inode)
1da177e4
LT
547{
548 struct ufs_inode_info *ufsi = UFS_I(inode);
05f225dc 549 struct super_block *sb = inode->i_sb;
6a9a06d9 550 umode_t mode;
1da177e4
LT
551
552 /*
553 * Copy data to the in-core inode.
554 */
555 inode->i_mode = mode = fs16_to_cpu(sb, ufs_inode->ui_mode);
bfe86848 556 set_nlink(inode, fs16_to_cpu(sb, ufs_inode->ui_nlink));
07a0cfec 557 if (inode->i_nlink == 0) {
1da177e4 558 ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
07a0cfec
ED
559 return -1;
560 }
010d331f 561
1da177e4
LT
562 /*
563 * Linux now has 32-bit uid and gid, so we can support EFT.
564 */
72235465
EB
565 i_uid_write(inode, ufs_get_inode_uid(sb, ufs_inode));
566 i_gid_write(inode, ufs_get_inode_gid(sb, ufs_inode));
1da177e4
LT
567
568 inode->i_size = fs64_to_cpu(sb, ufs_inode->ui_size);
569 inode->i_atime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_atime.tv_sec);
570 inode->i_ctime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_ctime.tv_sec);
571 inode->i_mtime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_mtime.tv_sec);
572 inode->i_mtime.tv_nsec = 0;
573 inode->i_atime.tv_nsec = 0;
574 inode->i_ctime.tv_nsec = 0;
575 inode->i_blocks = fs32_to_cpu(sb, ufs_inode->ui_blocks);
3313e292 576 inode->i_generation = fs32_to_cpu(sb, ufs_inode->ui_gen);
1da177e4 577 ufsi->i_flags = fs32_to_cpu(sb, ufs_inode->ui_flags);
1da177e4
LT
578 ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
579 ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
05f225dc 580
010d331f 581
1da177e4 582 if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
f33219b7
DG
583 memcpy(ufsi->i_u1.i_data, &ufs_inode->ui_u2.ui_addr,
584 sizeof(ufs_inode->ui_u2.ui_addr));
dd187a26 585 } else {
f33219b7 586 memcpy(ufsi->i_u1.i_symlink, ufs_inode->ui_u2.ui_symlink,
b12903f1
DG
587 sizeof(ufs_inode->ui_u2.ui_symlink) - 1);
588 ufsi->i_u1.i_symlink[sizeof(ufs_inode->ui_u2.ui_symlink) - 1] = 0;
1da177e4 589 }
07a0cfec 590 return 0;
05f225dc 591}
1da177e4 592
07a0cfec 593static int ufs2_read_inode(struct inode *inode, struct ufs2_inode *ufs2_inode)
05f225dc
ED
594{
595 struct ufs_inode_info *ufsi = UFS_I(inode);
596 struct super_block *sb = inode->i_sb;
6a9a06d9 597 umode_t mode;
1da177e4 598
abf5d15f 599 UFSD("Reading ufs2 inode, ino %lu\n", inode->i_ino);
1da177e4
LT
600 /*
601 * Copy data to the in-core inode.
602 */
603 inode->i_mode = mode = fs16_to_cpu(sb, ufs2_inode->ui_mode);
bfe86848 604 set_nlink(inode, fs16_to_cpu(sb, ufs2_inode->ui_nlink));
07a0cfec 605 if (inode->i_nlink == 0) {
1da177e4 606 ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
07a0cfec
ED
607 return -1;
608 }
1da177e4
LT
609
610 /*
611 * Linux now has 32-bit uid and gid, so we can support EFT.
612 */
72235465
EB
613 i_uid_write(inode, fs32_to_cpu(sb, ufs2_inode->ui_uid));
614 i_gid_write(inode, fs32_to_cpu(sb, ufs2_inode->ui_gid));
1da177e4
LT
615
616 inode->i_size = fs64_to_cpu(sb, ufs2_inode->ui_size);
2189850f
ED
617 inode->i_atime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_atime);
618 inode->i_ctime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_ctime);
619 inode->i_mtime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_mtime);
620 inode->i_atime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_atimensec);
621 inode->i_ctime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_ctimensec);
622 inode->i_mtime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_mtimensec);
1da177e4 623 inode->i_blocks = fs64_to_cpu(sb, ufs2_inode->ui_blocks);
3313e292 624 inode->i_generation = fs32_to_cpu(sb, ufs2_inode->ui_gen);
1da177e4 625 ufsi->i_flags = fs32_to_cpu(sb, ufs2_inode->ui_flags);
1da177e4
LT
626 /*
627 ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
628 ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
629 */
1da177e4
LT
630
631 if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
f33219b7
DG
632 memcpy(ufsi->i_u1.u2_i_data, &ufs2_inode->ui_u2.ui_addr,
633 sizeof(ufs2_inode->ui_u2.ui_addr));
05f225dc 634 } else {
f33219b7 635 memcpy(ufsi->i_u1.i_symlink, ufs2_inode->ui_u2.ui_symlink,
b12903f1
DG
636 sizeof(ufs2_inode->ui_u2.ui_symlink) - 1);
637 ufsi->i_u1.i_symlink[sizeof(ufs2_inode->ui_u2.ui_symlink) - 1] = 0;
1da177e4 638 }
07a0cfec 639 return 0;
05f225dc
ED
640}
641
b55c460d 642struct inode *ufs_iget(struct super_block *sb, unsigned long ino)
05f225dc 643{
b55c460d
DH
644 struct ufs_inode_info *ufsi;
645 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
05f225dc 646 struct buffer_head * bh;
b55c460d 647 struct inode *inode;
07a0cfec 648 int err;
05f225dc 649
b55c460d 650 UFSD("ENTER, ino %lu\n", ino);
05f225dc 651
b55c460d 652 if (ino < UFS_ROOTINO || ino > (uspi->s_ncg * uspi->s_ipg)) {
05f225dc 653 ufs_warning(sb, "ufs_read_inode", "bad inode number (%lu)\n",
b55c460d
DH
654 ino);
655 return ERR_PTR(-EIO);
05f225dc
ED
656 }
657
b55c460d
DH
658 inode = iget_locked(sb, ino);
659 if (!inode)
660 return ERR_PTR(-ENOMEM);
661 if (!(inode->i_state & I_NEW))
662 return inode;
663
664 ufsi = UFS_I(inode);
665
05f225dc
ED
666 bh = sb_bread(sb, uspi->s_sbbase + ufs_inotofsba(inode->i_ino));
667 if (!bh) {
668 ufs_warning(sb, "ufs_read_inode", "unable to read inode %lu\n",
669 inode->i_ino);
670 goto bad_inode;
671 }
672 if ((UFS_SB(sb)->s_flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2) {
673 struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
674
07a0cfec
ED
675 err = ufs2_read_inode(inode,
676 ufs2_inode + ufs_inotofsbo(inode->i_ino));
05f225dc
ED
677 } else {
678 struct ufs_inode *ufs_inode = (struct ufs_inode *)bh->b_data;
679
07a0cfec
ED
680 err = ufs1_read_inode(inode,
681 ufs_inode + ufs_inotofsbo(inode->i_ino));
05f225dc
ED
682 }
683
07a0cfec
ED
684 if (err)
685 goto bad_inode;
05f225dc
ED
686 inode->i_version++;
687 ufsi->i_lastfrag =
688 (inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift;
689 ufsi->i_dir_start_lookup = 0;
1da177e4
LT
690 ufsi->i_osync = 0;
691
826843a3 692 ufs_set_inode_ops(inode);
1da177e4
LT
693
694 brelse(bh);
695
abf5d15f 696 UFSD("EXIT\n");
b55c460d
DH
697 unlock_new_inode(inode);
698 return inode;
05f225dc
ED
699
700bad_inode:
b55c460d
DH
701 iget_failed(inode);
702 return ERR_PTR(-EIO);
1da177e4
LT
703}
704
3313e292 705static void ufs1_update_inode(struct inode *inode, struct ufs_inode *ufs_inode)
1da177e4 706{
3313e292
ED
707 struct super_block *sb = inode->i_sb;
708 struct ufs_inode_info *ufsi = UFS_I(inode);
1da177e4
LT
709
710 ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
711 ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
712
72235465
EB
713 ufs_set_inode_uid(sb, ufs_inode, i_uid_read(inode));
714 ufs_set_inode_gid(sb, ufs_inode, i_gid_read(inode));
010d331f 715
1da177e4
LT
716 ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
717 ufs_inode->ui_atime.tv_sec = cpu_to_fs32(sb, inode->i_atime.tv_sec);
718 ufs_inode->ui_atime.tv_usec = 0;
719 ufs_inode->ui_ctime.tv_sec = cpu_to_fs32(sb, inode->i_ctime.tv_sec);
720 ufs_inode->ui_ctime.tv_usec = 0;
721 ufs_inode->ui_mtime.tv_sec = cpu_to_fs32(sb, inode->i_mtime.tv_sec);
722 ufs_inode->ui_mtime.tv_usec = 0;
723 ufs_inode->ui_blocks = cpu_to_fs32(sb, inode->i_blocks);
724 ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
3313e292 725 ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
1da177e4 726
3313e292 727 if ((UFS_SB(sb)->s_flags & UFS_UID_MASK) == UFS_UID_EFT) {
1da177e4
LT
728 ufs_inode->ui_u3.ui_sun.ui_shadow = cpu_to_fs32(sb, ufsi->i_shadow);
729 ufs_inode->ui_u3.ui_sun.ui_oeftflag = cpu_to_fs32(sb, ufsi->i_oeftflag);
730 }
731
732 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
733 /* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
734 ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.i_data[0];
735 } else if (inode->i_blocks) {
f33219b7
DG
736 memcpy(&ufs_inode->ui_u2.ui_addr, ufsi->i_u1.i_data,
737 sizeof(ufs_inode->ui_u2.ui_addr));
1da177e4
LT
738 }
739 else {
f33219b7
DG
740 memcpy(&ufs_inode->ui_u2.ui_symlink, ufsi->i_u1.i_symlink,
741 sizeof(ufs_inode->ui_u2.ui_symlink));
1da177e4
LT
742 }
743
744 if (!inode->i_nlink)
745 memset (ufs_inode, 0, sizeof(struct ufs_inode));
3313e292
ED
746}
747
748static void ufs2_update_inode(struct inode *inode, struct ufs2_inode *ufs_inode)
749{
750 struct super_block *sb = inode->i_sb;
751 struct ufs_inode_info *ufsi = UFS_I(inode);
3313e292
ED
752
753 UFSD("ENTER\n");
754 ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
755 ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
756
72235465
EB
757 ufs_inode->ui_uid = cpu_to_fs32(sb, i_uid_read(inode));
758 ufs_inode->ui_gid = cpu_to_fs32(sb, i_gid_read(inode));
3313e292
ED
759
760 ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
2189850f
ED
761 ufs_inode->ui_atime = cpu_to_fs64(sb, inode->i_atime.tv_sec);
762 ufs_inode->ui_atimensec = cpu_to_fs32(sb, inode->i_atime.tv_nsec);
763 ufs_inode->ui_ctime = cpu_to_fs64(sb, inode->i_ctime.tv_sec);
764 ufs_inode->ui_ctimensec = cpu_to_fs32(sb, inode->i_ctime.tv_nsec);
765 ufs_inode->ui_mtime = cpu_to_fs64(sb, inode->i_mtime.tv_sec);
766 ufs_inode->ui_mtimensec = cpu_to_fs32(sb, inode->i_mtime.tv_nsec);
3313e292
ED
767
768 ufs_inode->ui_blocks = cpu_to_fs64(sb, inode->i_blocks);
769 ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
770 ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
771
772 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
773 /* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
774 ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.u2_i_data[0];
775 } else if (inode->i_blocks) {
f33219b7
DG
776 memcpy(&ufs_inode->ui_u2.ui_addr, ufsi->i_u1.u2_i_data,
777 sizeof(ufs_inode->ui_u2.ui_addr));
3313e292 778 } else {
f33219b7
DG
779 memcpy(&ufs_inode->ui_u2.ui_symlink, ufsi->i_u1.i_symlink,
780 sizeof(ufs_inode->ui_u2.ui_symlink));
3313e292
ED
781 }
782
783 if (!inode->i_nlink)
784 memset (ufs_inode, 0, sizeof(struct ufs2_inode));
785 UFSD("EXIT\n");
786}
787
788static int ufs_update_inode(struct inode * inode, int do_sync)
789{
790 struct super_block *sb = inode->i_sb;
791 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
792 struct buffer_head * bh;
793
794 UFSD("ENTER, ino %lu\n", inode->i_ino);
795
796 if (inode->i_ino < UFS_ROOTINO ||
797 inode->i_ino > (uspi->s_ncg * uspi->s_ipg)) {
798 ufs_warning (sb, "ufs_read_inode", "bad inode number (%lu)\n", inode->i_ino);
799 return -1;
800 }
801
802 bh = sb_bread(sb, ufs_inotofsba(inode->i_ino));
803 if (!bh) {
804 ufs_warning (sb, "ufs_read_inode", "unable to read inode %lu\n", inode->i_ino);
805 return -1;
806 }
807 if (uspi->fs_magic == UFS2_MAGIC) {
808 struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
809
810 ufs2_update_inode(inode,
811 ufs2_inode + ufs_inotofsbo(inode->i_ino));
812 } else {
813 struct ufs_inode *ufs_inode = (struct ufs_inode *) bh->b_data;
814
815 ufs1_update_inode(inode, ufs_inode + ufs_inotofsbo(inode->i_ino));
816 }
010d331f 817
1da177e4
LT
818 mark_buffer_dirty(bh);
819 if (do_sync)
820 sync_dirty_buffer(bh);
821 brelse (bh);
010d331f 822
abf5d15f 823 UFSD("EXIT\n");
1da177e4
LT
824 return 0;
825}
826
a9185b41 827int ufs_write_inode(struct inode *inode, struct writeback_control *wbc)
1da177e4 828{
f3e0f3da 829 return ufs_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1da177e4
LT
830}
831
832int ufs_sync_inode (struct inode *inode)
833{
834 return ufs_update_inode (inode, 1);
835}
836
58e8268c 837void ufs_evict_inode(struct inode * inode)
1da177e4 838{
58e8268c
AV
839 int want_delete = 0;
840
841 if (!inode->i_nlink && !is_bad_inode(inode))
842 want_delete = 1;
10e5dce0 843
91b0abe3 844 truncate_inode_pages_final(&inode->i_data);
58e8268c 845 if (want_delete) {
58e8268c 846 inode->i_size = 0;
d622f167
AV
847 if (inode->i_blocks)
848 ufs_truncate_blocks(inode);
58e8268c
AV
849 }
850
851 invalidate_inode_buffers(inode);
dbd5768f 852 clear_inode(inode);
58e8268c 853
f3e0f3da 854 if (want_delete)
9ef7db7f 855 ufs_free_inode(inode);
1da177e4 856}
010d331f 857
a138b4b6
AV
858struct to_free {
859 struct inode *inode;
860 u64 to;
861 unsigned count;
862};
863
864static inline void free_data(struct to_free *ctx, u64 from, unsigned count)
865{
866 if (ctx->count && ctx->to != from) {
867 ufs_free_blocks(ctx->inode, ctx->to - ctx->count, ctx->count);
868 ctx->count = 0;
869 }
870 ctx->count += count;
871 ctx->to = from + count;
872}
873
010d331f
AV
874#define DIRECT_BLOCK ((inode->i_size + uspi->s_bsize - 1) >> uspi->s_bshift)
875#define DIRECT_FRAGMENT ((inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift)
876
877static void ufs_trunc_direct(struct inode *inode)
878{
879 struct ufs_inode_info *ufsi = UFS_I(inode);
880 struct super_block * sb;
881 struct ufs_sb_private_info * uspi;
882 void *p;
883 u64 frag1, frag2, frag3, frag4, block1, block2;
a138b4b6 884 struct to_free ctx = {.inode = inode};
010d331f
AV
885 unsigned i, tmp;
886
887 UFSD("ENTER: ino %lu\n", inode->i_ino);
888
889 sb = inode->i_sb;
890 uspi = UFS_SB(sb)->s_uspi;
891
010d331f
AV
892 frag1 = DIRECT_FRAGMENT;
893 frag4 = min_t(u64, UFS_NDIR_FRAGMENT, ufsi->i_lastfrag);
894 frag2 = ((frag1 & uspi->s_fpbmask) ? ((frag1 | uspi->s_fpbmask) + 1) : frag1);
895 frag3 = frag4 & ~uspi->s_fpbmask;
896 block1 = block2 = 0;
897 if (frag2 > frag3) {
898 frag2 = frag4;
899 frag3 = frag4 = 0;
900 } else if (frag2 < frag3) {
901 block1 = ufs_fragstoblks (frag2);
902 block2 = ufs_fragstoblks (frag3);
903 }
904
905 UFSD("ino %lu, frag1 %llu, frag2 %llu, block1 %llu, block2 %llu,"
906 " frag3 %llu, frag4 %llu\n", inode->i_ino,
907 (unsigned long long)frag1, (unsigned long long)frag2,
908 (unsigned long long)block1, (unsigned long long)block2,
909 (unsigned long long)frag3, (unsigned long long)frag4);
910
911 if (frag1 >= frag2)
912 goto next1;
913
914 /*
915 * Free first free fragments
916 */
917 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag1));
918 tmp = ufs_data_ptr_to_cpu(sb, p);
919 if (!tmp )
920 ufs_panic (sb, "ufs_trunc_direct", "internal error");
921 frag2 -= frag1;
922 frag1 = ufs_fragnum (frag1);
923
924 ufs_free_fragments(inode, tmp + frag1, frag2);
010d331f
AV
925
926next1:
927 /*
928 * Free whole blocks
929 */
930 for (i = block1 ; i < block2; i++) {
931 p = ufs_get_direct_data_ptr(uspi, ufsi, i);
932 tmp = ufs_data_ptr_to_cpu(sb, p);
933 if (!tmp)
934 continue;
935 write_seqlock(&ufsi->meta_lock);
936 ufs_data_ptr_clear(uspi, p);
937 write_sequnlock(&ufsi->meta_lock);
938
a138b4b6 939 free_data(&ctx, tmp, uspi->s_fpb);
010d331f
AV
940 }
941
a138b4b6 942 free_data(&ctx, 0, 0);
010d331f
AV
943
944 if (frag3 >= frag4)
945 goto next3;
946
947 /*
948 * Free last free fragments
949 */
950 p = ufs_get_direct_data_ptr(uspi, ufsi, ufs_fragstoblks(frag3));
951 tmp = ufs_data_ptr_to_cpu(sb, p);
952 if (!tmp )
953 ufs_panic(sb, "ufs_truncate_direct", "internal error");
954 frag4 = ufs_fragnum (frag4);
955 write_seqlock(&ufsi->meta_lock);
956 ufs_data_ptr_clear(uspi, p);
957 write_sequnlock(&ufsi->meta_lock);
958
959 ufs_free_fragments (inode, tmp, frag4);
010d331f
AV
960 next3:
961
962 UFSD("EXIT: ino %lu\n", inode->i_ino);
963}
964
163073db 965static void free_full_branch(struct inode *inode, u64 ind_block, int depth)
6d1ebbca
AV
966{
967 struct super_block *sb = inode->i_sb;
968 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
163073db 969 struct ufs_buffer_head *ubh = ubh_bread(sb, ind_block, uspi->s_bsize);
6d1ebbca
AV
970 unsigned i;
971
163073db 972 if (!ubh)
6d1ebbca 973 return;
6d1ebbca
AV
974
975 if (--depth) {
163073db
AV
976 for (i = 0; i < uspi->s_apb; i++) {
977 void *p = ubh_get_data_ptr(uspi, ubh, i);
978 u64 block = ufs_data_ptr_to_cpu(sb, p);
cc7231e3 979 if (block)
163073db 980 free_full_branch(inode, block, depth);
6d1ebbca
AV
981 }
982 } else {
983 struct to_free ctx = {.inode = inode};
984
985 for (i = 0; i < uspi->s_apb; i++) {
163073db
AV
986 void *p = ubh_get_data_ptr(uspi, ubh, i);
987 u64 block = ufs_data_ptr_to_cpu(sb, p);
cc7231e3 988 if (block)
163073db 989 free_data(&ctx, block, uspi->s_fpb);
6d1ebbca
AV
990 }
991 free_data(&ctx, 0, 0);
992 }
6d1ebbca
AV
993
994 ubh_bforget(ubh);
163073db 995 ufs_free_blocks(inode, ind_block, uspi->s_fpb);
6d1ebbca
AV
996}
997
7b4e4f7f 998static void free_branch_tail(struct inode *inode, unsigned from, struct ufs_buffer_head *ubh, int depth)
010d331f 999{
7bad5939
AV
1000 struct super_block *sb = inode->i_sb;
1001 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
7bad5939 1002 unsigned i;
010d331f 1003
9e0fbbde 1004 if (--depth) {
7b4e4f7f 1005 for (i = from; i < uspi->s_apb ; i++) {
163073db
AV
1006 void *p = ubh_get_data_ptr(uspi, ubh, i);
1007 u64 block = ufs_data_ptr_to_cpu(sb, p);
1008 if (block) {
1009 write_seqlock(&UFS_I(inode)->meta_lock);
1010 ufs_data_ptr_clear(uspi, p);
1011 write_sequnlock(&UFS_I(inode)->meta_lock);
1012 ubh_mark_buffer_dirty(ubh);
1013 free_full_branch(inode, block, depth);
1014 }
a9657423 1015 }
9e0fbbde 1016 } else {
a138b4b6 1017 struct to_free ctx = {.inode = inode};
9e0fbbde
AV
1018
1019 for (i = from; i < uspi->s_apb; i++) {
163073db
AV
1020 void *p = ubh_get_data_ptr(uspi, ubh, i);
1021 u64 block = ufs_data_ptr_to_cpu(sb, p);
1022 if (block) {
1023 write_seqlock(&UFS_I(inode)->meta_lock);
1024 ufs_data_ptr_clear(uspi, p);
1025 write_sequnlock(&UFS_I(inode)->meta_lock);
1026 ubh_mark_buffer_dirty(ubh);
1027 free_data(&ctx, block, uspi->s_fpb);
163073db 1028 }
9e0fbbde 1029 }
a138b4b6 1030 free_data(&ctx, 0, 0);
010d331f 1031 }
9e0fbbde
AV
1032 if (IS_SYNC(inode) && ubh_buffer_dirty(ubh))
1033 ubh_sync_block(ubh);
1034 ubh_brelse(ubh);
010d331f
AV
1035}
1036
1037static int ufs_alloc_lastblock(struct inode *inode, loff_t size)
1038{
1039 int err = 0;
1040 struct super_block *sb = inode->i_sb;
1041 struct address_space *mapping = inode->i_mapping;
1042 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
1043 unsigned i, end;
1044 sector_t lastfrag;
1045 struct page *lastpage;
1046 struct buffer_head *bh;
1047 u64 phys64;
1048
1049 lastfrag = (size + uspi->s_fsize - 1) >> uspi->s_fshift;
1050
1051 if (!lastfrag)
1052 goto out;
1053
1054 lastfrag--;
1055
1056 lastpage = ufs_get_locked_page(mapping, lastfrag >>
09cbfeaf 1057 (PAGE_SHIFT - inode->i_blkbits));
010d331f
AV
1058 if (IS_ERR(lastpage)) {
1059 err = -EIO;
1060 goto out;
1061 }
1062
09cbfeaf 1063 end = lastfrag & ((1 << (PAGE_SHIFT - inode->i_blkbits)) - 1);
010d331f
AV
1064 bh = page_buffers(lastpage);
1065 for (i = 0; i < end; ++i)
1066 bh = bh->b_this_page;
1067
1068
1069 err = ufs_getfrag_block(inode, lastfrag, bh, 1);
1070
1071 if (unlikely(err))
1072 goto out_unlock;
1073
1074 if (buffer_new(bh)) {
1075 clear_buffer_new(bh);
e64855c6 1076 clean_bdev_bh_alias(bh);
010d331f
AV
1077 /*
1078 * we do not zeroize fragment, because of
1079 * if it maped to hole, it already contains zeroes
1080 */
1081 set_buffer_uptodate(bh);
1082 mark_buffer_dirty(bh);
1083 set_page_dirty(lastpage);
1084 }
1085
1086 if (lastfrag >= UFS_IND_FRAGMENT) {
1087 end = uspi->s_fpb - ufs_fragnum(lastfrag) - 1;
1088 phys64 = bh->b_blocknr + 1;
1089 for (i = 0; i < end; ++i) {
1090 bh = sb_getblk(sb, i + phys64);
1091 lock_buffer(bh);
1092 memset(bh->b_data, 0, sb->s_blocksize);
1093 set_buffer_uptodate(bh);
1094 mark_buffer_dirty(bh);
1095 unlock_buffer(bh);
1096 sync_dirty_buffer(bh);
1097 brelse(bh);
1098 }
1099 }
1100out_unlock:
1101 ufs_put_locked_page(lastpage);
1102out:
1103 return err;
1104}
1105
1106static void __ufs_truncate_blocks(struct inode *inode)
1107{
1108 struct ufs_inode_info *ufsi = UFS_I(inode);
1109 struct super_block *sb = inode->i_sb;
1110 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
7bad5939 1111 unsigned offsets[4];
31cd043e 1112 int depth = ufs_block_to_path(inode, DIRECT_BLOCK, offsets);
6775e24d 1113 int depth2;
42432739 1114 unsigned i;
7b4e4f7f
AV
1115 struct ufs_buffer_head *ubh[3];
1116 void *p;
1117 u64 block;
6775e24d
AV
1118
1119 if (!depth)
1120 return;
1121
1122 /* find the last non-zero in offsets[] */
1123 for (depth2 = depth - 1; depth2; depth2--)
1124 if (offsets[depth2])
1125 break;
010d331f
AV
1126
1127 mutex_lock(&ufsi->truncate_mutex);
42432739 1128 if (depth == 1) {
31cd043e 1129 ufs_trunc_direct(inode);
42432739
AV
1130 offsets[0] = UFS_IND_BLOCK;
1131 } else {
7b4e4f7f
AV
1132 /* get the blocks that should be partially emptied */
1133 p = ufs_get_direct_data_ptr(uspi, ufsi, offsets[0]);
1134 for (i = 0; i < depth2; i++) {
1135 offsets[i]++; /* next branch is fully freed */
1136 block = ufs_data_ptr_to_cpu(sb, p);
1137 if (!block)
1138 break;
1139 ubh[i] = ubh_bread(sb, block, uspi->s_bsize);
1140 if (!ubh[i]) {
1141 write_seqlock(&ufsi->meta_lock);
1142 ufs_data_ptr_clear(uspi, p);
1143 write_sequnlock(&ufsi->meta_lock);
1144 break;
1145 }
1146 p = ubh_get_data_ptr(uspi, ubh[i], offsets[i + 1]);
1147 }
f53bd142 1148 while (i--)
7b4e4f7f 1149 free_branch_tail(inode, offsets[i + 1], ubh[i], depth - i - 1);
42432739
AV
1150 }
1151 for (i = offsets[0]; i <= UFS_TIND_BLOCK; i++) {
163073db
AV
1152 p = ufs_get_direct_data_ptr(uspi, ufsi, i);
1153 block = ufs_data_ptr_to_cpu(sb, p);
1154 if (block) {
1155 write_seqlock(&ufsi->meta_lock);
1156 ufs_data_ptr_clear(uspi, p);
1157 write_sequnlock(&ufsi->meta_lock);
1158 free_full_branch(inode, block, i - UFS_IND_BLOCK + 1);
1159 }
31cd043e 1160 }
010d331f 1161 ufsi->i_lastfrag = DIRECT_FRAGMENT;
b6eede0e 1162 mark_inode_dirty(inode);
010d331f
AV
1163 mutex_unlock(&ufsi->truncate_mutex);
1164}
1165
1166static int ufs_truncate(struct inode *inode, loff_t size)
1167{
1168 int err = 0;
1169
1170 UFSD("ENTER: ino %lu, i_size: %llu, old_i_size: %llu\n",
1171 inode->i_ino, (unsigned long long)size,
1172 (unsigned long long)i_size_read(inode));
1173
1174 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1175 S_ISLNK(inode->i_mode)))
1176 return -EINVAL;
1177 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1178 return -EPERM;
1179
1180 err = ufs_alloc_lastblock(inode, size);
1181
1182 if (err)
1183 goto out;
1184
1185 block_truncate_page(inode->i_mapping, size, ufs_getfrag_block);
1186
1187 truncate_setsize(inode, size);
1188
1189 __ufs_truncate_blocks(inode);
02027d42 1190 inode->i_mtime = inode->i_ctime = current_time(inode);
010d331f
AV
1191 mark_inode_dirty(inode);
1192out:
1193 UFSD("EXIT: err %d\n", err);
1194 return err;
1195}
1196
f698cccb 1197static void ufs_truncate_blocks(struct inode *inode)
010d331f
AV
1198{
1199 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1200 S_ISLNK(inode->i_mode)))
1201 return;
1202 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1203 return;
1204 __ufs_truncate_blocks(inode);
1205}
1206
1207int ufs_setattr(struct dentry *dentry, struct iattr *attr)
1208{
1209 struct inode *inode = d_inode(dentry);
1210 unsigned int ia_valid = attr->ia_valid;
1211 int error;
1212
31051c85 1213 error = setattr_prepare(dentry, attr);
010d331f
AV
1214 if (error)
1215 return error;
1216
1217 if (ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
1218 error = ufs_truncate(inode, attr->ia_size);
1219 if (error)
1220 return error;
1221 }
1222
1223 setattr_copy(inode, attr);
1224 mark_inode_dirty(inode);
1225 return 0;
1226}
1227
1228const struct inode_operations ufs_file_inode_operations = {
1229 .setattr = ufs_setattr,
1230};