blob: 75ebd2b576ca4b9cf33e4d978c8cac3bba066bb5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/affs/file.c
4 *
5 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 *
7 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 *
9 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
10 *
11 * (C) 1991 Linus Torvalds - minix filesystem
12 *
13 * affs regular file handling primitives
14 */
15
Christoph Hellwige2e40f22015-02-22 08:58:50 -080016#include <linux/uio.h>
Christoph Hellwig3f1266f2020-06-20 09:16:41 +020017#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "affs.h"
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020static struct buffer_head *affs_get_extblock_slow(struct inode *inode, u32 ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22static int
23affs_file_open(struct inode *inode, struct file *filp)
24{
Fabian Frederick9606d9a2014-06-06 14:37:25 -070025 pr_debug("open(%lu,%d)\n",
Roman Zippeldca3c332008-04-29 17:02:20 +020026 inode->i_ino, atomic_read(&AFFS_I(inode)->i_opencnt));
27 atomic_inc(&AFFS_I(inode)->i_opencnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 return 0;
29}
30
31static int
32affs_file_release(struct inode *inode, struct file *filp)
33{
Fabian Frederick9606d9a2014-06-06 14:37:25 -070034 pr_debug("release(%lu, %d)\n",
Roman Zippeldca3c332008-04-29 17:02:20 +020035 inode->i_ino, atomic_read(&AFFS_I(inode)->i_opencnt));
36
37 if (atomic_dec_and_test(&AFFS_I(inode)->i_opencnt)) {
Al Viro59551022016-01-22 15:40:57 -050038 inode_lock(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +020039 if (inode->i_size != AFFS_I(inode)->mmu_private)
40 affs_truncate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 affs_free_prealloc(inode);
Al Viro59551022016-01-22 15:40:57 -050042 inode_unlock(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +020043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 return 0;
46}
47
48static int
49affs_grow_extcache(struct inode *inode, u32 lc_idx)
50{
51 struct super_block *sb = inode->i_sb;
52 struct buffer_head *bh;
53 u32 lc_max;
54 int i, j, key;
55
56 if (!AFFS_I(inode)->i_lc) {
57 char *ptr = (char *)get_zeroed_page(GFP_NOFS);
58 if (!ptr)
59 return -ENOMEM;
60 AFFS_I(inode)->i_lc = (u32 *)ptr;
61 AFFS_I(inode)->i_ac = (struct affs_ext_key *)(ptr + AFFS_CACHE_SIZE / 2);
62 }
63
64 lc_max = AFFS_LC_SIZE << AFFS_I(inode)->i_lc_shift;
65
66 if (AFFS_I(inode)->i_extcnt > lc_max) {
67 u32 lc_shift, lc_mask, tmp, off;
68
69 /* need to recalculate linear cache, start from old size */
70 lc_shift = AFFS_I(inode)->i_lc_shift;
71 tmp = (AFFS_I(inode)->i_extcnt / AFFS_LC_SIZE) >> lc_shift;
72 for (; tmp; tmp >>= 1)
73 lc_shift++;
74 lc_mask = (1 << lc_shift) - 1;
75
76 /* fix idx and old size to new shift */
77 lc_idx >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
78 AFFS_I(inode)->i_lc_size >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
79
80 /* first shrink old cache to make more space */
81 off = 1 << (lc_shift - AFFS_I(inode)->i_lc_shift);
82 for (i = 1, j = off; j < AFFS_LC_SIZE; i++, j += off)
83 AFFS_I(inode)->i_ac[i] = AFFS_I(inode)->i_ac[j];
84
85 AFFS_I(inode)->i_lc_shift = lc_shift;
86 AFFS_I(inode)->i_lc_mask = lc_mask;
87 }
88
89 /* fill cache to the needed index */
90 i = AFFS_I(inode)->i_lc_size;
91 AFFS_I(inode)->i_lc_size = lc_idx + 1;
92 for (; i <= lc_idx; i++) {
93 if (!i) {
94 AFFS_I(inode)->i_lc[0] = inode->i_ino;
95 continue;
96 }
97 key = AFFS_I(inode)->i_lc[i - 1];
98 j = AFFS_I(inode)->i_lc_mask + 1;
99 // unlock cache
100 for (; j > 0; j--) {
101 bh = affs_bread(sb, key);
102 if (!bh)
103 goto err;
104 key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
105 affs_brelse(bh);
106 }
107 // lock cache
108 AFFS_I(inode)->i_lc[i] = key;
109 }
110
111 return 0;
112
113err:
114 // lock cache
115 return -EIO;
116}
117
118static struct buffer_head *
119affs_alloc_extblock(struct inode *inode, struct buffer_head *bh, u32 ext)
120{
121 struct super_block *sb = inode->i_sb;
122 struct buffer_head *new_bh;
123 u32 blocknr, tmp;
124
125 blocknr = affs_alloc_block(inode, bh->b_blocknr);
126 if (!blocknr)
127 return ERR_PTR(-ENOSPC);
128
129 new_bh = affs_getzeroblk(sb, blocknr);
130 if (!new_bh) {
131 affs_free_block(sb, blocknr);
132 return ERR_PTR(-EIO);
133 }
134
135 AFFS_HEAD(new_bh)->ptype = cpu_to_be32(T_LIST);
136 AFFS_HEAD(new_bh)->key = cpu_to_be32(blocknr);
137 AFFS_TAIL(sb, new_bh)->stype = cpu_to_be32(ST_FILE);
138 AFFS_TAIL(sb, new_bh)->parent = cpu_to_be32(inode->i_ino);
139 affs_fix_checksum(sb, new_bh);
140
141 mark_buffer_dirty_inode(new_bh, inode);
142
143 tmp = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
144 if (tmp)
145 affs_warning(sb, "alloc_ext", "previous extension set (%x)", tmp);
146 AFFS_TAIL(sb, bh)->extension = cpu_to_be32(blocknr);
147 affs_adjust_checksum(bh, blocknr - tmp);
148 mark_buffer_dirty_inode(bh, inode);
149
150 AFFS_I(inode)->i_extcnt++;
151 mark_inode_dirty(inode);
152
153 return new_bh;
154}
155
156static inline struct buffer_head *
157affs_get_extblock(struct inode *inode, u32 ext)
158{
159 /* inline the simplest case: same extended block as last time */
160 struct buffer_head *bh = AFFS_I(inode)->i_ext_bh;
161 if (ext == AFFS_I(inode)->i_ext_last)
Roman Zippeldca3c332008-04-29 17:02:20 +0200162 get_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 else
164 /* we have to do more (not inlined) */
165 bh = affs_get_extblock_slow(inode, ext);
166
167 return bh;
168}
169
170static struct buffer_head *
171affs_get_extblock_slow(struct inode *inode, u32 ext)
172{
173 struct super_block *sb = inode->i_sb;
174 struct buffer_head *bh;
175 u32 ext_key;
176 u32 lc_idx, lc_off, ac_idx;
177 u32 tmp, idx;
178
179 if (ext == AFFS_I(inode)->i_ext_last + 1) {
180 /* read the next extended block from the current one */
181 bh = AFFS_I(inode)->i_ext_bh;
182 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
183 if (ext < AFFS_I(inode)->i_extcnt)
184 goto read_ext;
Fabian Frederickafe305d2015-02-17 13:46:12 -0800185 BUG_ON(ext > AFFS_I(inode)->i_extcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 bh = affs_alloc_extblock(inode, bh, ext);
187 if (IS_ERR(bh))
188 return bh;
189 goto store_ext;
190 }
191
192 if (ext == 0) {
193 /* we seek back to the file header block */
194 ext_key = inode->i_ino;
195 goto read_ext;
196 }
197
198 if (ext >= AFFS_I(inode)->i_extcnt) {
199 struct buffer_head *prev_bh;
200
201 /* allocate a new extended block */
Fabian Frederickafe305d2015-02-17 13:46:12 -0800202 BUG_ON(ext > AFFS_I(inode)->i_extcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* get previous extended block */
205 prev_bh = affs_get_extblock(inode, ext - 1);
206 if (IS_ERR(prev_bh))
207 return prev_bh;
208 bh = affs_alloc_extblock(inode, prev_bh, ext);
209 affs_brelse(prev_bh);
210 if (IS_ERR(bh))
211 return bh;
212 goto store_ext;
213 }
214
215again:
216 /* check if there is an extended cache and whether it's large enough */
217 lc_idx = ext >> AFFS_I(inode)->i_lc_shift;
218 lc_off = ext & AFFS_I(inode)->i_lc_mask;
219
220 if (lc_idx >= AFFS_I(inode)->i_lc_size) {
221 int err;
222
223 err = affs_grow_extcache(inode, lc_idx);
224 if (err)
225 return ERR_PTR(err);
226 goto again;
227 }
228
229 /* every n'th key we find in the linear cache */
230 if (!lc_off) {
231 ext_key = AFFS_I(inode)->i_lc[lc_idx];
232 goto read_ext;
233 }
234
235 /* maybe it's still in the associative cache */
236 ac_idx = (ext - lc_idx - 1) & AFFS_AC_MASK;
237 if (AFFS_I(inode)->i_ac[ac_idx].ext == ext) {
238 ext_key = AFFS_I(inode)->i_ac[ac_idx].key;
239 goto read_ext;
240 }
241
242 /* try to find one of the previous extended blocks */
243 tmp = ext;
244 idx = ac_idx;
245 while (--tmp, --lc_off > 0) {
246 idx = (idx - 1) & AFFS_AC_MASK;
247 if (AFFS_I(inode)->i_ac[idx].ext == tmp) {
248 ext_key = AFFS_I(inode)->i_ac[idx].key;
249 goto find_ext;
250 }
251 }
252
253 /* fall back to the linear cache */
254 ext_key = AFFS_I(inode)->i_lc[lc_idx];
255find_ext:
256 /* read all extended blocks until we find the one we need */
257 //unlock cache
258 do {
259 bh = affs_bread(sb, ext_key);
260 if (!bh)
261 goto err_bread;
262 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
263 affs_brelse(bh);
264 tmp++;
265 } while (tmp < ext);
266 //lock cache
267
268 /* store it in the associative cache */
269 // recalculate ac_idx?
270 AFFS_I(inode)->i_ac[ac_idx].ext = ext;
271 AFFS_I(inode)->i_ac[ac_idx].key = ext_key;
272
273read_ext:
274 /* finally read the right extended block */
275 //unlock cache
276 bh = affs_bread(sb, ext_key);
277 if (!bh)
278 goto err_bread;
279 //lock cache
280
281store_ext:
282 /* release old cached extended block and store the new one */
283 affs_brelse(AFFS_I(inode)->i_ext_bh);
284 AFFS_I(inode)->i_ext_last = ext;
285 AFFS_I(inode)->i_ext_bh = bh;
Roman Zippeldca3c332008-04-29 17:02:20 +0200286 get_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return bh;
289
290err_bread:
291 affs_brelse(bh);
292 return ERR_PTR(-EIO);
293}
294
295static int
296affs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create)
297{
298 struct super_block *sb = inode->i_sb;
299 struct buffer_head *ext_bh;
300 u32 ext;
301
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800302 pr_debug("%s(%lu, %llu)\n", __func__, inode->i_ino,
303 (unsigned long long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Julia Lawall8d4b6902008-04-29 00:59:12 -0700305 BUG_ON(block > (sector_t)0x7fffffffUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 if (block >= AFFS_I(inode)->i_blkcnt) {
308 if (block > AFFS_I(inode)->i_blkcnt || !create)
309 goto err_big;
310 } else
311 create = 0;
312
313 //lock cache
314 affs_lock_ext(inode);
315
316 ext = (u32)block / AFFS_SB(sb)->s_hashsize;
317 block -= ext * AFFS_SB(sb)->s_hashsize;
318 ext_bh = affs_get_extblock(inode, ext);
319 if (IS_ERR(ext_bh))
320 goto err_ext;
321 map_bh(bh_result, sb, (sector_t)be32_to_cpu(AFFS_BLOCK(sb, ext_bh, block)));
322
323 if (create) {
324 u32 blocknr = affs_alloc_block(inode, ext_bh->b_blocknr);
325 if (!blocknr)
326 goto err_alloc;
327 set_buffer_new(bh_result);
328 AFFS_I(inode)->mmu_private += AFFS_SB(sb)->s_data_blksize;
329 AFFS_I(inode)->i_blkcnt++;
330
331 /* store new block */
332 if (bh_result->b_blocknr)
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800333 affs_warning(sb, "get_block",
334 "block already set (%llx)",
335 (unsigned long long)bh_result->b_blocknr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 AFFS_BLOCK(sb, ext_bh, block) = cpu_to_be32(blocknr);
337 AFFS_HEAD(ext_bh)->block_count = cpu_to_be32(block + 1);
338 affs_adjust_checksum(ext_bh, blocknr - bh_result->b_blocknr + 1);
339 bh_result->b_blocknr = blocknr;
340
341 if (!block) {
342 /* insert first block into header block */
343 u32 tmp = be32_to_cpu(AFFS_HEAD(ext_bh)->first_data);
344 if (tmp)
345 affs_warning(sb, "get_block", "first block already set (%d)", tmp);
346 AFFS_HEAD(ext_bh)->first_data = cpu_to_be32(blocknr);
347 affs_adjust_checksum(ext_bh, blocknr - tmp);
348 }
349 }
350
351 affs_brelse(ext_bh);
352 //unlock cache
353 affs_unlock_ext(inode);
354 return 0;
355
356err_big:
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800357 affs_error(inode->i_sb, "get_block", "strange block request %llu",
358 (unsigned long long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -EIO;
360err_ext:
361 // unlock cache
362 affs_unlock_ext(inode);
363 return PTR_ERR(ext_bh);
364err_alloc:
365 brelse(ext_bh);
366 clear_buffer_mapped(bh_result);
367 bh_result->b_bdev = NULL;
368 // unlock cache
369 affs_unlock_ext(inode);
370 return -ENOSPC;
371}
372
373static int affs_writepage(struct page *page, struct writeback_control *wbc)
374{
375 return block_write_full_page(page, affs_get_block, wbc);
376}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static int affs_readpage(struct file *file, struct page *page)
379{
380 return block_read_full_page(page, affs_get_block);
381}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700382
Marco Stornelli1dc18342012-12-15 11:51:53 +0100383static void affs_write_failed(struct address_space *mapping, loff_t to)
384{
385 struct inode *inode = mapping->host;
386
387 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700388 truncate_pagecache(inode, inode->i_size);
Marco Stornelli1dc18342012-12-15 11:51:53 +0100389 affs_truncate(inode);
390 }
391}
392
Fabian Frederick9abb4082014-12-12 16:57:52 -0800393static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700394affs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Fabian Frederick9abb4082014-12-12 16:57:52 -0800395{
396 struct file *file = iocb->ki_filp;
397 struct address_space *mapping = file->f_mapping;
398 struct inode *inode = mapping->host;
399 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700400 loff_t offset = iocb->ki_pos;
Fabian Frederick9abb4082014-12-12 16:57:52 -0800401 ssize_t ret;
402
Omar Sandoval6f673762015-03-16 04:33:52 -0700403 if (iov_iter_rw(iter) == WRITE) {
Fabian Frederick92b20702015-02-17 13:46:15 -0800404 loff_t size = offset + count;
405
406 if (AFFS_I(inode)->mmu_private < size)
407 return 0;
408 }
409
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700410 ret = blockdev_direct_IO(iocb, inode, iter, affs_get_block);
Omar Sandoval6f673762015-03-16 04:33:52 -0700411 if (ret < 0 && iov_iter_rw(iter) == WRITE)
Fabian Frederick9abb4082014-12-12 16:57:52 -0800412 affs_write_failed(mapping, offset + count);
413 return ret;
414}
415
Nick Pigginf2b6a162007-10-16 01:25:24 -0700416static int affs_write_begin(struct file *file, struct address_space *mapping,
417 loff_t pos, unsigned len, unsigned flags,
418 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Christoph Hellwig282dc172010-06-04 11:29:55 +0200420 int ret;
421
Nick Pigginf2b6a162007-10-16 01:25:24 -0700422 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +0200423 ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700424 affs_get_block,
425 &AFFS_I(mapping->host)->mmu_private);
Marco Stornelli1dc18342012-12-15 11:51:53 +0100426 if (unlikely(ret))
427 affs_write_failed(mapping, pos + len);
Christoph Hellwig282dc172010-06-04 11:29:55 +0200428
429 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700431
Max Staudtd3a84a82020-08-27 17:49:00 +0200432static int affs_write_end(struct file *file, struct address_space *mapping,
433 loff_t pos, unsigned int len, unsigned int copied,
434 struct page *page, void *fsdata)
435{
436 struct inode *inode = mapping->host;
437 int ret;
438
439 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
440
441 /* Clear Archived bit on file writes, as AmigaOS would do */
442 if (AFFS_I(inode)->i_protect & FIBF_ARCHIVED) {
443 AFFS_I(inode)->i_protect &= ~FIBF_ARCHIVED;
444 mark_inode_dirty(inode);
445 }
446
447 return ret;
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static sector_t _affs_bmap(struct address_space *mapping, sector_t block)
451{
452 return generic_block_bmap(mapping,block,affs_get_block);
453}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700454
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700455const struct address_space_operations affs_aops = {
Christoph Hellwig0af57372021-06-28 19:36:12 -0700456 .set_page_dirty = __set_page_dirty_buffers,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 .readpage = affs_readpage,
458 .writepage = affs_writepage,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700459 .write_begin = affs_write_begin,
Max Staudtd3a84a82020-08-27 17:49:00 +0200460 .write_end = affs_write_end,
Fabian Frederick9abb4082014-12-12 16:57:52 -0800461 .direct_IO = affs_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .bmap = _affs_bmap
463};
464
465static inline struct buffer_head *
466affs_bread_ino(struct inode *inode, int block, int create)
467{
468 struct buffer_head *bh, tmp_bh;
469 int err;
470
471 tmp_bh.b_state = 0;
472 err = affs_get_block(inode, block, &tmp_bh, create);
473 if (!err) {
474 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr);
475 if (bh) {
476 bh->b_state |= tmp_bh.b_state;
477 return bh;
478 }
479 err = -EIO;
480 }
481 return ERR_PTR(err);
482}
483
484static inline struct buffer_head *
485affs_getzeroblk_ino(struct inode *inode, int block)
486{
487 struct buffer_head *bh, tmp_bh;
488 int err;
489
490 tmp_bh.b_state = 0;
491 err = affs_get_block(inode, block, &tmp_bh, 1);
492 if (!err) {
493 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr);
494 if (bh) {
495 bh->b_state |= tmp_bh.b_state;
496 return bh;
497 }
498 err = -EIO;
499 }
500 return ERR_PTR(err);
501}
502
503static inline struct buffer_head *
504affs_getemptyblk_ino(struct inode *inode, int block)
505{
506 struct buffer_head *bh, tmp_bh;
507 int err;
508
509 tmp_bh.b_state = 0;
510 err = affs_get_block(inode, block, &tmp_bh, 1);
511 if (!err) {
512 bh = affs_getemptyblk(inode->i_sb, tmp_bh.b_blocknr);
513 if (bh) {
514 bh->b_state |= tmp_bh.b_state;
515 return bh;
516 }
517 err = -EIO;
518 }
519 return ERR_PTR(err);
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static int
Fabian Frederick077e0732017-04-24 22:12:57 +0200523affs_do_readpage_ofs(struct page *page, unsigned to, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct inode *inode = page->mapping->host;
526 struct super_block *sb = inode->i_sb;
527 struct buffer_head *bh;
528 char *data;
Fabian Frederick0c89d672014-06-06 14:37:23 -0700529 unsigned pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 u32 bidx, boff, bsize;
531 u32 tmp;
532
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800533 pr_debug("%s(%lu, %ld, 0, %d)\n", __func__, inode->i_ino,
Fabian Frederick0c89d672014-06-06 14:37:23 -0700534 page->index, to);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300535 BUG_ON(to > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 bsize = AFFS_SB(sb)->s_data_blksize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300537 tmp = page->index << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 bidx = tmp / bsize;
539 boff = tmp % bsize;
540
Fabian Frederick0c89d672014-06-06 14:37:23 -0700541 while (pos < to) {
Fabian Frederick077e0732017-04-24 22:12:57 +0200542 bh = affs_bread_ino(inode, bidx, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (IS_ERR(bh))
544 return PTR_ERR(bh);
Fabian Frederick0c89d672014-06-06 14:37:23 -0700545 tmp = min(bsize - boff, to - pos);
546 BUG_ON(pos + tmp > to || tmp > bsize);
Al Viro0bacbe52016-02-02 02:28:05 +0000547 data = kmap_atomic(page);
Fabian Frederick0c89d672014-06-06 14:37:23 -0700548 memcpy(data + pos, AFFS_DATA(bh) + boff, tmp);
Al Viro0bacbe52016-02-02 02:28:05 +0000549 kunmap_atomic(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 affs_brelse(bh);
551 bidx++;
Fabian Frederick0c89d672014-06-06 14:37:23 -0700552 pos += tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 boff = 0;
554 }
555 flush_dcache_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return 0;
557}
558
559static int
560affs_extent_file_ofs(struct inode *inode, u32 newsize)
561{
562 struct super_block *sb = inode->i_sb;
563 struct buffer_head *bh, *prev_bh;
564 u32 bidx, boff;
565 u32 size, bsize;
566 u32 tmp;
567
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800568 pr_debug("%s(%lu, %d)\n", __func__, inode->i_ino, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 bsize = AFFS_SB(sb)->s_data_blksize;
570 bh = NULL;
571 size = AFFS_I(inode)->mmu_private;
572 bidx = size / bsize;
573 boff = size % bsize;
574 if (boff) {
575 bh = affs_bread_ino(inode, bidx, 0);
576 if (IS_ERR(bh))
577 return PTR_ERR(bh);
578 tmp = min(bsize - boff, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700579 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 memset(AFFS_DATA(bh) + boff, 0, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700581 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 affs_fix_checksum(sb, bh);
583 mark_buffer_dirty_inode(bh, inode);
584 size += tmp;
585 bidx++;
586 } else if (bidx) {
587 bh = affs_bread_ino(inode, bidx - 1, 0);
588 if (IS_ERR(bh))
589 return PTR_ERR(bh);
590 }
591
592 while (size < newsize) {
593 prev_bh = bh;
594 bh = affs_getzeroblk_ino(inode, bidx);
595 if (IS_ERR(bh))
596 goto out;
597 tmp = min(bsize, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700598 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
600 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
601 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
602 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
603 affs_fix_checksum(sb, bh);
604 bh->b_state &= ~(1UL << BH_New);
605 mark_buffer_dirty_inode(bh, inode);
606 if (prev_bh) {
Fabian Frederick73516ac2014-10-13 15:53:54 -0700607 u32 tmp_next = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
608
609 if (tmp_next)
610 affs_warning(sb, "extent_file_ofs",
611 "next block already set for %d (%d)",
612 bidx, tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
Fabian Frederick73516ac2014-10-13 15:53:54 -0700614 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 mark_buffer_dirty_inode(prev_bh, inode);
616 affs_brelse(prev_bh);
617 }
618 size += bsize;
619 bidx++;
620 }
621 affs_brelse(bh);
622 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
623 return 0;
624
625out:
626 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
627 return PTR_ERR(bh);
628}
629
630static int
631affs_readpage_ofs(struct file *file, struct page *page)
632{
633 struct inode *inode = page->mapping->host;
634 u32 to;
635 int err;
636
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800637 pr_debug("%s(%lu, %ld)\n", __func__, inode->i_ino, page->index);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300638 to = PAGE_SIZE;
639 if (((page->index + 1) << PAGE_SHIFT) > inode->i_size) {
640 to = inode->i_size & ~PAGE_MASK;
641 memset(page_address(page) + to, 0, PAGE_SIZE - to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Fabian Frederick077e0732017-04-24 22:12:57 +0200644 err = affs_do_readpage_ofs(page, to, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!err)
646 SetPageUptodate(page);
647 unlock_page(page);
648 return err;
649}
650
Nick Pigginf2b6a162007-10-16 01:25:24 -0700651static int affs_write_begin_ofs(struct file *file, struct address_space *mapping,
652 loff_t pos, unsigned len, unsigned flags,
653 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700655 struct inode *inode = mapping->host;
656 struct page *page;
657 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 int err = 0;
659
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800660 pr_debug("%s(%lu, %llu, %llu)\n", __func__, inode->i_ino, pos,
661 pos + len);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700662 if (pos > AFFS_I(inode)->mmu_private) {
663 /* XXX: this probably leaves a too-big i_size in case of
664 * failure. Should really be updating i_size at write_end time
665 */
666 err = affs_extent_file_ofs(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (err)
668 return err;
669 }
Nick Pigginf2b6a162007-10-16 01:25:24 -0700670
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300671 index = pos >> PAGE_SHIFT;
Nick Piggin54566b22009-01-04 12:00:53 -0800672 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700673 if (!page)
674 return -ENOMEM;
675 *pagep = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (PageUptodate(page))
678 return 0;
679
Nick Pigginf2b6a162007-10-16 01:25:24 -0700680 /* XXX: inefficient but safe in the face of short writes */
Fabian Frederick077e0732017-04-24 22:12:57 +0200681 err = affs_do_readpage_ofs(page, PAGE_SIZE, 1);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700682 if (err) {
683 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300684 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 return err;
687}
688
Nick Pigginf2b6a162007-10-16 01:25:24 -0700689static int affs_write_end_ofs(struct file *file, struct address_space *mapping,
690 loff_t pos, unsigned len, unsigned copied,
691 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700693 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct super_block *sb = inode->i_sb;
695 struct buffer_head *bh, *prev_bh;
696 char *data;
697 u32 bidx, boff, bsize;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700698 unsigned from, to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 u32 tmp;
700 int written;
701
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300702 from = pos & (PAGE_SIZE - 1);
Fabian Fredericka80f2d22017-04-24 22:13:10 +0200703 to = from + len;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700704 /*
705 * XXX: not sure if this can handle short copies (len < copied), but
706 * we don't have to, because the page should always be uptodate here,
707 * due to write_begin.
708 */
709
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800710 pr_debug("%s(%lu, %llu, %llu)\n", __func__, inode->i_ino, pos,
711 pos + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 bsize = AFFS_SB(sb)->s_data_blksize;
713 data = page_address(page);
714
715 bh = NULL;
716 written = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300717 tmp = (page->index << PAGE_SHIFT) + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 bidx = tmp / bsize;
719 boff = tmp % bsize;
720 if (boff) {
721 bh = affs_bread_ino(inode, bidx, 0);
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700722 if (IS_ERR(bh)) {
723 written = PTR_ERR(bh);
724 goto err_first_bh;
725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 tmp = min(bsize - boff, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700727 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700729 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 affs_fix_checksum(sb, bh);
731 mark_buffer_dirty_inode(bh, inode);
732 written += tmp;
733 from += tmp;
734 bidx++;
735 } else if (bidx) {
736 bh = affs_bread_ino(inode, bidx - 1, 0);
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700737 if (IS_ERR(bh)) {
738 written = PTR_ERR(bh);
739 goto err_first_bh;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742 while (from + bsize <= to) {
743 prev_bh = bh;
744 bh = affs_getemptyblk_ino(inode, bidx);
745 if (IS_ERR(bh))
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700746 goto err_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 memcpy(AFFS_DATA(bh), data + from, bsize);
748 if (buffer_new(bh)) {
749 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
750 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
751 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
752 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(bsize);
753 AFFS_DATA_HEAD(bh)->next = 0;
754 bh->b_state &= ~(1UL << BH_New);
755 if (prev_bh) {
Fabian Frederick73516ac2014-10-13 15:53:54 -0700756 u32 tmp_next = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
757
758 if (tmp_next)
759 affs_warning(sb, "commit_write_ofs",
760 "next block already set for %d (%d)",
761 bidx, tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
Fabian Frederick73516ac2014-10-13 15:53:54 -0700763 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 mark_buffer_dirty_inode(prev_bh, inode);
765 }
766 }
767 affs_brelse(prev_bh);
768 affs_fix_checksum(sb, bh);
769 mark_buffer_dirty_inode(bh, inode);
770 written += bsize;
771 from += bsize;
772 bidx++;
773 }
774 if (from < to) {
775 prev_bh = bh;
776 bh = affs_bread_ino(inode, bidx, 1);
777 if (IS_ERR(bh))
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700778 goto err_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 tmp = min(bsize, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700780 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 memcpy(AFFS_DATA(bh), data + from, tmp);
782 if (buffer_new(bh)) {
783 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
784 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
785 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
786 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
787 AFFS_DATA_HEAD(bh)->next = 0;
788 bh->b_state &= ~(1UL << BH_New);
789 if (prev_bh) {
Fabian Frederick73516ac2014-10-13 15:53:54 -0700790 u32 tmp_next = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
791
792 if (tmp_next)
793 affs_warning(sb, "commit_write_ofs",
794 "next block already set for %d (%d)",
795 bidx, tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
Fabian Frederick73516ac2014-10-13 15:53:54 -0700797 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 mark_buffer_dirty_inode(prev_bh, inode);
799 }
800 } else if (be32_to_cpu(AFFS_DATA_HEAD(bh)->size) < tmp)
801 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
802 affs_brelse(prev_bh);
803 affs_fix_checksum(sb, bh);
804 mark_buffer_dirty_inode(bh, inode);
805 written += tmp;
806 from += tmp;
807 bidx++;
808 }
809 SetPageUptodate(page);
810
811done:
812 affs_brelse(bh);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300813 tmp = (page->index << PAGE_SHIFT) + from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (tmp > inode->i_size)
815 inode->i_size = AFFS_I(inode)->mmu_private = tmp;
816
Max Staudtd3a84a82020-08-27 17:49:00 +0200817 /* Clear Archived bit on file writes, as AmigaOS would do */
818 if (AFFS_I(inode)->i_protect & FIBF_ARCHIVED) {
819 AFFS_I(inode)->i_protect &= ~FIBF_ARCHIVED;
820 mark_inode_dirty(inode);
821 }
822
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700823err_first_bh:
Nick Pigginf2b6a162007-10-16 01:25:24 -0700824 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300825 put_page(page);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return written;
828
Taesoo Kim3d5d4722015-03-25 15:55:29 -0700829err_bh:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 bh = prev_bh;
831 if (!written)
832 written = PTR_ERR(bh);
833 goto done;
834}
835
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700836const struct address_space_operations affs_aops_ofs = {
Christoph Hellwig0af57372021-06-28 19:36:12 -0700837 .set_page_dirty = __set_page_dirty_buffers,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 .readpage = affs_readpage_ofs,
839 //.writepage = affs_writepage_ofs,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700840 .write_begin = affs_write_begin_ofs,
841 .write_end = affs_write_end_ofs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842};
843
844/* Free any preallocated blocks. */
845
846void
847affs_free_prealloc(struct inode *inode)
848{
849 struct super_block *sb = inode->i_sb;
850
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700851 pr_debug("free_prealloc(ino=%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 while (AFFS_I(inode)->i_pa_cnt) {
854 AFFS_I(inode)->i_pa_cnt--;
855 affs_free_block(sb, ++AFFS_I(inode)->i_lastalloc);
856 }
857}
858
859/* Truncate (or enlarge) a file to the requested size. */
860
861void
862affs_truncate(struct inode *inode)
863{
864 struct super_block *sb = inode->i_sb;
865 u32 ext, ext_key;
866 u32 last_blk, blkcnt, blk;
867 u32 size;
868 struct buffer_head *ext_bh;
869 int i;
870
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800871 pr_debug("truncate(inode=%lu, oldsize=%llu, newsize=%llu)\n",
872 inode->i_ino, AFFS_I(inode)->mmu_private, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 last_blk = 0;
875 ext = 0;
876 if (inode->i_size) {
877 last_blk = ((u32)inode->i_size - 1) / AFFS_SB(sb)->s_data_blksize;
878 ext = last_blk / AFFS_SB(sb)->s_hashsize;
879 }
880
881 if (inode->i_size > AFFS_I(inode)->mmu_private) {
882 struct address_space *mapping = inode->i_mapping;
883 struct page *page;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700884 void *fsdata;
Fabian Frederick73516ac2014-10-13 15:53:54 -0700885 loff_t isize = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 int res;
887
Fabian Frederick73516ac2014-10-13 15:53:54 -0700888 res = mapping->a_ops->write_begin(NULL, mapping, isize, 0, 0, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (!res)
Fabian Frederick73516ac2014-10-13 15:53:54 -0700890 res = mapping->a_ops->write_end(NULL, mapping, isize, 0, 0, page, fsdata);
Roman Zippeldca3c332008-04-29 17:02:20 +0200891 else
892 inode->i_size = AFFS_I(inode)->mmu_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 mark_inode_dirty(inode);
894 return;
895 } else if (inode->i_size == AFFS_I(inode)->mmu_private)
896 return;
897
898 // lock cache
899 ext_bh = affs_get_extblock(inode, ext);
900 if (IS_ERR(ext_bh)) {
Fabian Frederick1ee54b02014-12-12 16:57:49 -0800901 affs_warning(sb, "truncate",
902 "unexpected read error for ext block %u (%ld)",
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800903 ext, PTR_ERR(ext_bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return;
905 }
906 if (AFFS_I(inode)->i_lc) {
907 /* clear linear cache */
908 i = (ext + 1) >> AFFS_I(inode)->i_lc_shift;
909 if (AFFS_I(inode)->i_lc_size > i) {
910 AFFS_I(inode)->i_lc_size = i;
911 for (; i < AFFS_LC_SIZE; i++)
912 AFFS_I(inode)->i_lc[i] = 0;
913 }
914 /* clear associative cache */
915 for (i = 0; i < AFFS_AC_SIZE; i++)
916 if (AFFS_I(inode)->i_ac[i].ext >= ext)
917 AFFS_I(inode)->i_ac[i].ext = 0;
918 }
919 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
920
921 blkcnt = AFFS_I(inode)->i_blkcnt;
922 i = 0;
923 blk = last_blk;
924 if (inode->i_size) {
925 i = last_blk % AFFS_SB(sb)->s_hashsize + 1;
926 blk++;
927 } else
928 AFFS_HEAD(ext_bh)->first_data = 0;
Roman Zippeldca3c332008-04-29 17:02:20 +0200929 AFFS_HEAD(ext_bh)->block_count = cpu_to_be32(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 size = AFFS_SB(sb)->s_hashsize;
931 if (size > blkcnt - blk + i)
932 size = blkcnt - blk + i;
933 for (; i < size; i++, blk++) {
934 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
935 AFFS_BLOCK(sb, ext_bh, i) = 0;
936 }
937 AFFS_TAIL(sb, ext_bh)->extension = 0;
938 affs_fix_checksum(sb, ext_bh);
939 mark_buffer_dirty_inode(ext_bh, inode);
940 affs_brelse(ext_bh);
941
942 if (inode->i_size) {
943 AFFS_I(inode)->i_blkcnt = last_blk + 1;
944 AFFS_I(inode)->i_extcnt = ext + 1;
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700945 if (affs_test_opt(AFFS_SB(sb)->s_flags, SF_OFS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 struct buffer_head *bh = affs_bread_ino(inode, last_blk, 0);
947 u32 tmp;
Dan Carpenter0e45b672010-08-25 09:05:27 +0200948 if (IS_ERR(bh)) {
Fabian Frederick1ee54b02014-12-12 16:57:49 -0800949 affs_warning(sb, "truncate",
950 "unexpected read error for last block %u (%ld)",
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800951 ext, PTR_ERR(bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return;
953 }
954 tmp = be32_to_cpu(AFFS_DATA_HEAD(bh)->next);
955 AFFS_DATA_HEAD(bh)->next = 0;
956 affs_adjust_checksum(bh, -tmp);
957 affs_brelse(bh);
958 }
959 } else {
960 AFFS_I(inode)->i_blkcnt = 0;
961 AFFS_I(inode)->i_extcnt = 1;
962 }
963 AFFS_I(inode)->mmu_private = inode->i_size;
964 // unlock cache
965
966 while (ext_key) {
967 ext_bh = affs_bread(sb, ext_key);
968 size = AFFS_SB(sb)->s_hashsize;
969 if (size > blkcnt - blk)
970 size = blkcnt - blk;
971 for (i = 0; i < size; i++, blk++)
972 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
973 affs_free_block(sb, ext_key);
974 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
975 affs_brelse(ext_bh);
976 }
977 affs_free_prealloc(inode);
978}
Al Viroc4758792009-06-08 01:22:00 -0400979
Josef Bacik02c24a82011-07-16 20:44:56 -0400980int affs_file_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Al Viroc4758792009-06-08 01:22:00 -0400981{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200982 struct inode *inode = filp->f_mapping->host;
Al Viroc4758792009-06-08 01:22:00 -0400983 int ret, err;
984
Jeff Layton3b49c9a2017-07-07 15:20:52 -0400985 err = file_write_and_wait_range(filp, start, end);
Josef Bacik02c24a82011-07-16 20:44:56 -0400986 if (err)
987 return err;
988
Al Viro59551022016-01-22 15:40:57 -0500989 inode_lock(inode);
Al Viroc4758792009-06-08 01:22:00 -0400990 ret = write_inode_now(inode, 0);
991 err = sync_blockdev(inode->i_sb->s_bdev);
992 if (!ret)
993 ret = err;
Al Viro59551022016-01-22 15:40:57 -0500994 inode_unlock(inode);
Al Viroc4758792009-06-08 01:22:00 -0400995 return ret;
996}
Fabian Frederick76339782014-12-12 16:57:47 -0800997const struct file_operations affs_file_operations = {
998 .llseek = generic_file_llseek,
Fabian Frederick76339782014-12-12 16:57:47 -0800999 .read_iter = generic_file_read_iter,
Fabian Frederick76339782014-12-12 16:57:47 -08001000 .write_iter = generic_file_write_iter,
1001 .mmap = generic_file_mmap,
1002 .open = affs_file_open,
1003 .release = affs_file_release,
1004 .fsync = affs_file_fsync,
1005 .splice_read = generic_file_splice_read,
1006};
1007
1008const struct inode_operations affs_file_inode_operations = {
1009 .setattr = affs_notify_change,
1010};