blob: 0270303388ee669515c8829f7370da24db6d16e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/affs/file.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
9 *
10 * (C) 1991 Linus Torvalds - minix filesystem
11 *
12 * affs regular file handling primitives
13 */
14
15#include "affs.h"
16
17#if PAGE_SIZE < 4096
18#error PAGE_SIZE must be at least 4096
19#endif
20
21static int affs_grow_extcache(struct inode *inode, u32 lc_idx);
22static struct buffer_head *affs_alloc_extblock(struct inode *inode, struct buffer_head *bh, u32 ext);
23static inline struct buffer_head *affs_get_extblock(struct inode *inode, u32 ext);
24static struct buffer_head *affs_get_extblock_slow(struct inode *inode, u32 ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int affs_file_open(struct inode *inode, struct file *filp);
26static int affs_file_release(struct inode *inode, struct file *filp);
27
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080028const struct file_operations affs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070030 .read = do_sync_read,
31 .aio_read = generic_file_aio_read,
32 .write = do_sync_write,
33 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .mmap = generic_file_mmap,
35 .open = affs_file_open,
36 .release = affs_file_release,
Al Viroc4758792009-06-08 01:22:00 -040037 .fsync = affs_file_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020038 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Arjan van de Ven754661f2007-02-12 00:55:38 -080041const struct inode_operations affs_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 .setattr = affs_notify_change,
43};
44
45static int
46affs_file_open(struct inode *inode, struct file *filp)
47{
Fabian Frederick9606d9a2014-06-06 14:37:25 -070048 pr_debug("open(%lu,%d)\n",
Roman Zippeldca3c332008-04-29 17:02:20 +020049 inode->i_ino, atomic_read(&AFFS_I(inode)->i_opencnt));
50 atomic_inc(&AFFS_I(inode)->i_opencnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return 0;
52}
53
54static int
55affs_file_release(struct inode *inode, struct file *filp)
56{
Fabian Frederick9606d9a2014-06-06 14:37:25 -070057 pr_debug("release(%lu, %d)\n",
Roman Zippeldca3c332008-04-29 17:02:20 +020058 inode->i_ino, atomic_read(&AFFS_I(inode)->i_opencnt));
59
60 if (atomic_dec_and_test(&AFFS_I(inode)->i_opencnt)) {
61 mutex_lock(&inode->i_mutex);
62 if (inode->i_size != AFFS_I(inode)->mmu_private)
63 affs_truncate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 affs_free_prealloc(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +020065 mutex_unlock(&inode->i_mutex);
66 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 return 0;
69}
70
71static int
72affs_grow_extcache(struct inode *inode, u32 lc_idx)
73{
74 struct super_block *sb = inode->i_sb;
75 struct buffer_head *bh;
76 u32 lc_max;
77 int i, j, key;
78
79 if (!AFFS_I(inode)->i_lc) {
80 char *ptr = (char *)get_zeroed_page(GFP_NOFS);
81 if (!ptr)
82 return -ENOMEM;
83 AFFS_I(inode)->i_lc = (u32 *)ptr;
84 AFFS_I(inode)->i_ac = (struct affs_ext_key *)(ptr + AFFS_CACHE_SIZE / 2);
85 }
86
87 lc_max = AFFS_LC_SIZE << AFFS_I(inode)->i_lc_shift;
88
89 if (AFFS_I(inode)->i_extcnt > lc_max) {
90 u32 lc_shift, lc_mask, tmp, off;
91
92 /* need to recalculate linear cache, start from old size */
93 lc_shift = AFFS_I(inode)->i_lc_shift;
94 tmp = (AFFS_I(inode)->i_extcnt / AFFS_LC_SIZE) >> lc_shift;
95 for (; tmp; tmp >>= 1)
96 lc_shift++;
97 lc_mask = (1 << lc_shift) - 1;
98
99 /* fix idx and old size to new shift */
100 lc_idx >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
101 AFFS_I(inode)->i_lc_size >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
102
103 /* first shrink old cache to make more space */
104 off = 1 << (lc_shift - AFFS_I(inode)->i_lc_shift);
105 for (i = 1, j = off; j < AFFS_LC_SIZE; i++, j += off)
106 AFFS_I(inode)->i_ac[i] = AFFS_I(inode)->i_ac[j];
107
108 AFFS_I(inode)->i_lc_shift = lc_shift;
109 AFFS_I(inode)->i_lc_mask = lc_mask;
110 }
111
112 /* fill cache to the needed index */
113 i = AFFS_I(inode)->i_lc_size;
114 AFFS_I(inode)->i_lc_size = lc_idx + 1;
115 for (; i <= lc_idx; i++) {
116 if (!i) {
117 AFFS_I(inode)->i_lc[0] = inode->i_ino;
118 continue;
119 }
120 key = AFFS_I(inode)->i_lc[i - 1];
121 j = AFFS_I(inode)->i_lc_mask + 1;
122 // unlock cache
123 for (; j > 0; j--) {
124 bh = affs_bread(sb, key);
125 if (!bh)
126 goto err;
127 key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
128 affs_brelse(bh);
129 }
130 // lock cache
131 AFFS_I(inode)->i_lc[i] = key;
132 }
133
134 return 0;
135
136err:
137 // lock cache
138 return -EIO;
139}
140
141static struct buffer_head *
142affs_alloc_extblock(struct inode *inode, struct buffer_head *bh, u32 ext)
143{
144 struct super_block *sb = inode->i_sb;
145 struct buffer_head *new_bh;
146 u32 blocknr, tmp;
147
148 blocknr = affs_alloc_block(inode, bh->b_blocknr);
149 if (!blocknr)
150 return ERR_PTR(-ENOSPC);
151
152 new_bh = affs_getzeroblk(sb, blocknr);
153 if (!new_bh) {
154 affs_free_block(sb, blocknr);
155 return ERR_PTR(-EIO);
156 }
157
158 AFFS_HEAD(new_bh)->ptype = cpu_to_be32(T_LIST);
159 AFFS_HEAD(new_bh)->key = cpu_to_be32(blocknr);
160 AFFS_TAIL(sb, new_bh)->stype = cpu_to_be32(ST_FILE);
161 AFFS_TAIL(sb, new_bh)->parent = cpu_to_be32(inode->i_ino);
162 affs_fix_checksum(sb, new_bh);
163
164 mark_buffer_dirty_inode(new_bh, inode);
165
166 tmp = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
167 if (tmp)
168 affs_warning(sb, "alloc_ext", "previous extension set (%x)", tmp);
169 AFFS_TAIL(sb, bh)->extension = cpu_to_be32(blocknr);
170 affs_adjust_checksum(bh, blocknr - tmp);
171 mark_buffer_dirty_inode(bh, inode);
172
173 AFFS_I(inode)->i_extcnt++;
174 mark_inode_dirty(inode);
175
176 return new_bh;
177}
178
179static inline struct buffer_head *
180affs_get_extblock(struct inode *inode, u32 ext)
181{
182 /* inline the simplest case: same extended block as last time */
183 struct buffer_head *bh = AFFS_I(inode)->i_ext_bh;
184 if (ext == AFFS_I(inode)->i_ext_last)
Roman Zippeldca3c332008-04-29 17:02:20 +0200185 get_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 else
187 /* we have to do more (not inlined) */
188 bh = affs_get_extblock_slow(inode, ext);
189
190 return bh;
191}
192
193static struct buffer_head *
194affs_get_extblock_slow(struct inode *inode, u32 ext)
195{
196 struct super_block *sb = inode->i_sb;
197 struct buffer_head *bh;
198 u32 ext_key;
199 u32 lc_idx, lc_off, ac_idx;
200 u32 tmp, idx;
201
202 if (ext == AFFS_I(inode)->i_ext_last + 1) {
203 /* read the next extended block from the current one */
204 bh = AFFS_I(inode)->i_ext_bh;
205 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
206 if (ext < AFFS_I(inode)->i_extcnt)
207 goto read_ext;
208 if (ext > AFFS_I(inode)->i_extcnt)
209 BUG();
210 bh = affs_alloc_extblock(inode, bh, ext);
211 if (IS_ERR(bh))
212 return bh;
213 goto store_ext;
214 }
215
216 if (ext == 0) {
217 /* we seek back to the file header block */
218 ext_key = inode->i_ino;
219 goto read_ext;
220 }
221
222 if (ext >= AFFS_I(inode)->i_extcnt) {
223 struct buffer_head *prev_bh;
224
225 /* allocate a new extended block */
226 if (ext > AFFS_I(inode)->i_extcnt)
227 BUG();
228
229 /* get previous extended block */
230 prev_bh = affs_get_extblock(inode, ext - 1);
231 if (IS_ERR(prev_bh))
232 return prev_bh;
233 bh = affs_alloc_extblock(inode, prev_bh, ext);
234 affs_brelse(prev_bh);
235 if (IS_ERR(bh))
236 return bh;
237 goto store_ext;
238 }
239
240again:
241 /* check if there is an extended cache and whether it's large enough */
242 lc_idx = ext >> AFFS_I(inode)->i_lc_shift;
243 lc_off = ext & AFFS_I(inode)->i_lc_mask;
244
245 if (lc_idx >= AFFS_I(inode)->i_lc_size) {
246 int err;
247
248 err = affs_grow_extcache(inode, lc_idx);
249 if (err)
250 return ERR_PTR(err);
251 goto again;
252 }
253
254 /* every n'th key we find in the linear cache */
255 if (!lc_off) {
256 ext_key = AFFS_I(inode)->i_lc[lc_idx];
257 goto read_ext;
258 }
259
260 /* maybe it's still in the associative cache */
261 ac_idx = (ext - lc_idx - 1) & AFFS_AC_MASK;
262 if (AFFS_I(inode)->i_ac[ac_idx].ext == ext) {
263 ext_key = AFFS_I(inode)->i_ac[ac_idx].key;
264 goto read_ext;
265 }
266
267 /* try to find one of the previous extended blocks */
268 tmp = ext;
269 idx = ac_idx;
270 while (--tmp, --lc_off > 0) {
271 idx = (idx - 1) & AFFS_AC_MASK;
272 if (AFFS_I(inode)->i_ac[idx].ext == tmp) {
273 ext_key = AFFS_I(inode)->i_ac[idx].key;
274 goto find_ext;
275 }
276 }
277
278 /* fall back to the linear cache */
279 ext_key = AFFS_I(inode)->i_lc[lc_idx];
280find_ext:
281 /* read all extended blocks until we find the one we need */
282 //unlock cache
283 do {
284 bh = affs_bread(sb, ext_key);
285 if (!bh)
286 goto err_bread;
287 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
288 affs_brelse(bh);
289 tmp++;
290 } while (tmp < ext);
291 //lock cache
292
293 /* store it in the associative cache */
294 // recalculate ac_idx?
295 AFFS_I(inode)->i_ac[ac_idx].ext = ext;
296 AFFS_I(inode)->i_ac[ac_idx].key = ext_key;
297
298read_ext:
299 /* finally read the right extended block */
300 //unlock cache
301 bh = affs_bread(sb, ext_key);
302 if (!bh)
303 goto err_bread;
304 //lock cache
305
306store_ext:
307 /* release old cached extended block and store the new one */
308 affs_brelse(AFFS_I(inode)->i_ext_bh);
309 AFFS_I(inode)->i_ext_last = ext;
310 AFFS_I(inode)->i_ext_bh = bh;
Roman Zippeldca3c332008-04-29 17:02:20 +0200311 get_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 return bh;
314
315err_bread:
316 affs_brelse(bh);
317 return ERR_PTR(-EIO);
318}
319
320static int
321affs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create)
322{
323 struct super_block *sb = inode->i_sb;
324 struct buffer_head *ext_bh;
325 u32 ext;
326
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700327 pr_debug("%s(%u, %lu)\n",
328 __func__, (u32)inode->i_ino, (unsigned long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Julia Lawall8d4b6902008-04-29 00:59:12 -0700330 BUG_ON(block > (sector_t)0x7fffffffUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 if (block >= AFFS_I(inode)->i_blkcnt) {
333 if (block > AFFS_I(inode)->i_blkcnt || !create)
334 goto err_big;
335 } else
336 create = 0;
337
338 //lock cache
339 affs_lock_ext(inode);
340
341 ext = (u32)block / AFFS_SB(sb)->s_hashsize;
342 block -= ext * AFFS_SB(sb)->s_hashsize;
343 ext_bh = affs_get_extblock(inode, ext);
344 if (IS_ERR(ext_bh))
345 goto err_ext;
346 map_bh(bh_result, sb, (sector_t)be32_to_cpu(AFFS_BLOCK(sb, ext_bh, block)));
347
348 if (create) {
349 u32 blocknr = affs_alloc_block(inode, ext_bh->b_blocknr);
350 if (!blocknr)
351 goto err_alloc;
352 set_buffer_new(bh_result);
353 AFFS_I(inode)->mmu_private += AFFS_SB(sb)->s_data_blksize;
354 AFFS_I(inode)->i_blkcnt++;
355
356 /* store new block */
357 if (bh_result->b_blocknr)
358 affs_warning(sb, "get_block", "block already set (%x)", bh_result->b_blocknr);
359 AFFS_BLOCK(sb, ext_bh, block) = cpu_to_be32(blocknr);
360 AFFS_HEAD(ext_bh)->block_count = cpu_to_be32(block + 1);
361 affs_adjust_checksum(ext_bh, blocknr - bh_result->b_blocknr + 1);
362 bh_result->b_blocknr = blocknr;
363
364 if (!block) {
365 /* insert first block into header block */
366 u32 tmp = be32_to_cpu(AFFS_HEAD(ext_bh)->first_data);
367 if (tmp)
368 affs_warning(sb, "get_block", "first block already set (%d)", tmp);
369 AFFS_HEAD(ext_bh)->first_data = cpu_to_be32(blocknr);
370 affs_adjust_checksum(ext_bh, blocknr - tmp);
371 }
372 }
373
374 affs_brelse(ext_bh);
375 //unlock cache
376 affs_unlock_ext(inode);
377 return 0;
378
379err_big:
380 affs_error(inode->i_sb,"get_block","strange block request %d", block);
381 return -EIO;
382err_ext:
383 // unlock cache
384 affs_unlock_ext(inode);
385 return PTR_ERR(ext_bh);
386err_alloc:
387 brelse(ext_bh);
388 clear_buffer_mapped(bh_result);
389 bh_result->b_bdev = NULL;
390 // unlock cache
391 affs_unlock_ext(inode);
392 return -ENOSPC;
393}
394
395static int affs_writepage(struct page *page, struct writeback_control *wbc)
396{
397 return block_write_full_page(page, affs_get_block, wbc);
398}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static int affs_readpage(struct file *file, struct page *page)
401{
402 return block_read_full_page(page, affs_get_block);
403}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700404
Marco Stornelli1dc18342012-12-15 11:51:53 +0100405static void affs_write_failed(struct address_space *mapping, loff_t to)
406{
407 struct inode *inode = mapping->host;
408
409 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700410 truncate_pagecache(inode, inode->i_size);
Marco Stornelli1dc18342012-12-15 11:51:53 +0100411 affs_truncate(inode);
412 }
413}
414
Nick Pigginf2b6a162007-10-16 01:25:24 -0700415static int affs_write_begin(struct file *file, struct address_space *mapping,
416 loff_t pos, unsigned len, unsigned flags,
417 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Christoph Hellwig282dc172010-06-04 11:29:55 +0200419 int ret;
420
Nick Pigginf2b6a162007-10-16 01:25:24 -0700421 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +0200422 ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700423 affs_get_block,
424 &AFFS_I(mapping->host)->mmu_private);
Marco Stornelli1dc18342012-12-15 11:51:53 +0100425 if (unlikely(ret))
426 affs_write_failed(mapping, pos + len);
Christoph Hellwig282dc172010-06-04 11:29:55 +0200427
428 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static sector_t _affs_bmap(struct address_space *mapping, sector_t block)
432{
433 return generic_block_bmap(mapping,block,affs_get_block);
434}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700435
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700436const struct address_space_operations affs_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 .readpage = affs_readpage,
438 .writepage = affs_writepage,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700439 .write_begin = affs_write_begin,
440 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .bmap = _affs_bmap
442};
443
444static inline struct buffer_head *
445affs_bread_ino(struct inode *inode, int block, int create)
446{
447 struct buffer_head *bh, tmp_bh;
448 int err;
449
450 tmp_bh.b_state = 0;
451 err = affs_get_block(inode, block, &tmp_bh, create);
452 if (!err) {
453 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr);
454 if (bh) {
455 bh->b_state |= tmp_bh.b_state;
456 return bh;
457 }
458 err = -EIO;
459 }
460 return ERR_PTR(err);
461}
462
463static inline struct buffer_head *
464affs_getzeroblk_ino(struct inode *inode, int block)
465{
466 struct buffer_head *bh, tmp_bh;
467 int err;
468
469 tmp_bh.b_state = 0;
470 err = affs_get_block(inode, block, &tmp_bh, 1);
471 if (!err) {
472 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr);
473 if (bh) {
474 bh->b_state |= tmp_bh.b_state;
475 return bh;
476 }
477 err = -EIO;
478 }
479 return ERR_PTR(err);
480}
481
482static inline struct buffer_head *
483affs_getemptyblk_ino(struct inode *inode, int block)
484{
485 struct buffer_head *bh, tmp_bh;
486 int err;
487
488 tmp_bh.b_state = 0;
489 err = affs_get_block(inode, block, &tmp_bh, 1);
490 if (!err) {
491 bh = affs_getemptyblk(inode->i_sb, tmp_bh.b_blocknr);
492 if (bh) {
493 bh->b_state |= tmp_bh.b_state;
494 return bh;
495 }
496 err = -EIO;
497 }
498 return ERR_PTR(err);
499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static int
Fabian Frederick0c89d672014-06-06 14:37:23 -0700502affs_do_readpage_ofs(struct page *page, unsigned to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 struct inode *inode = page->mapping->host;
505 struct super_block *sb = inode->i_sb;
506 struct buffer_head *bh;
507 char *data;
Fabian Frederick0c89d672014-06-06 14:37:23 -0700508 unsigned pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 u32 bidx, boff, bsize;
510 u32 tmp;
511
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700512 pr_debug("%s(%u, %ld, 0, %d)\n", __func__, (u32)inode->i_ino,
Fabian Frederick0c89d672014-06-06 14:37:23 -0700513 page->index, to);
514 BUG_ON(to > PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 kmap(page);
516 data = page_address(page);
517 bsize = AFFS_SB(sb)->s_data_blksize;
Fabian Frederick0c89d672014-06-06 14:37:23 -0700518 tmp = page->index << PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 bidx = tmp / bsize;
520 boff = tmp % bsize;
521
Fabian Frederick0c89d672014-06-06 14:37:23 -0700522 while (pos < to) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 bh = affs_bread_ino(inode, bidx, 0);
524 if (IS_ERR(bh))
525 return PTR_ERR(bh);
Fabian Frederick0c89d672014-06-06 14:37:23 -0700526 tmp = min(bsize - boff, to - pos);
527 BUG_ON(pos + tmp > to || tmp > bsize);
528 memcpy(data + pos, AFFS_DATA(bh) + boff, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 affs_brelse(bh);
530 bidx++;
Fabian Frederick0c89d672014-06-06 14:37:23 -0700531 pos += tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 boff = 0;
533 }
534 flush_dcache_page(page);
535 kunmap(page);
536 return 0;
537}
538
539static int
540affs_extent_file_ofs(struct inode *inode, u32 newsize)
541{
542 struct super_block *sb = inode->i_sb;
543 struct buffer_head *bh, *prev_bh;
544 u32 bidx, boff;
545 u32 size, bsize;
546 u32 tmp;
547
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700548 pr_debug("%s(%u, %d)\n", __func__, (u32)inode->i_ino, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 bsize = AFFS_SB(sb)->s_data_blksize;
550 bh = NULL;
551 size = AFFS_I(inode)->mmu_private;
552 bidx = size / bsize;
553 boff = size % bsize;
554 if (boff) {
555 bh = affs_bread_ino(inode, bidx, 0);
556 if (IS_ERR(bh))
557 return PTR_ERR(bh);
558 tmp = min(bsize - boff, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700559 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 memset(AFFS_DATA(bh) + boff, 0, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700561 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 affs_fix_checksum(sb, bh);
563 mark_buffer_dirty_inode(bh, inode);
564 size += tmp;
565 bidx++;
566 } else if (bidx) {
567 bh = affs_bread_ino(inode, bidx - 1, 0);
568 if (IS_ERR(bh))
569 return PTR_ERR(bh);
570 }
571
572 while (size < newsize) {
573 prev_bh = bh;
574 bh = affs_getzeroblk_ino(inode, bidx);
575 if (IS_ERR(bh))
576 goto out;
577 tmp = min(bsize, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700578 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
580 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
581 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
582 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
583 affs_fix_checksum(sb, bh);
584 bh->b_state &= ~(1UL << BH_New);
585 mark_buffer_dirty_inode(bh, inode);
586 if (prev_bh) {
587 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
588 if (tmp)
589 affs_warning(sb, "extent_file_ofs", "next block already set for %d (%d)", bidx, tmp);
590 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
591 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
592 mark_buffer_dirty_inode(prev_bh, inode);
593 affs_brelse(prev_bh);
594 }
595 size += bsize;
596 bidx++;
597 }
598 affs_brelse(bh);
599 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
600 return 0;
601
602out:
603 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
604 return PTR_ERR(bh);
605}
606
607static int
608affs_readpage_ofs(struct file *file, struct page *page)
609{
610 struct inode *inode = page->mapping->host;
611 u32 to;
612 int err;
613
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700614 pr_debug("%s(%u, %ld)\n", __func__, (u32)inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 to = PAGE_CACHE_SIZE;
616 if (((page->index + 1) << PAGE_CACHE_SHIFT) > inode->i_size) {
617 to = inode->i_size & ~PAGE_CACHE_MASK;
618 memset(page_address(page) + to, 0, PAGE_CACHE_SIZE - to);
619 }
620
Fabian Frederick0c89d672014-06-06 14:37:23 -0700621 err = affs_do_readpage_ofs(page, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (!err)
623 SetPageUptodate(page);
624 unlock_page(page);
625 return err;
626}
627
Nick Pigginf2b6a162007-10-16 01:25:24 -0700628static int affs_write_begin_ofs(struct file *file, struct address_space *mapping,
629 loff_t pos, unsigned len, unsigned flags,
630 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700632 struct inode *inode = mapping->host;
633 struct page *page;
634 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 int err = 0;
636
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700637 pr_debug("%s(%u, %llu, %llu)\n", __func__, (u32)inode->i_ino,
638 (unsigned long long)pos, (unsigned long long)pos + len);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700639 if (pos > AFFS_I(inode)->mmu_private) {
640 /* XXX: this probably leaves a too-big i_size in case of
641 * failure. Should really be updating i_size at write_end time
642 */
643 err = affs_extent_file_ofs(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (err)
645 return err;
646 }
Nick Pigginf2b6a162007-10-16 01:25:24 -0700647
648 index = pos >> PAGE_CACHE_SHIFT;
Nick Piggin54566b22009-01-04 12:00:53 -0800649 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700650 if (!page)
651 return -ENOMEM;
652 *pagep = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (PageUptodate(page))
655 return 0;
656
Nick Pigginf2b6a162007-10-16 01:25:24 -0700657 /* XXX: inefficient but safe in the face of short writes */
Fabian Frederick0c89d672014-06-06 14:37:23 -0700658 err = affs_do_readpage_ofs(page, PAGE_CACHE_SIZE);
Nick Pigginf2b6a162007-10-16 01:25:24 -0700659 if (err) {
660 unlock_page(page);
661 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 return err;
664}
665
Nick Pigginf2b6a162007-10-16 01:25:24 -0700666static int affs_write_end_ofs(struct file *file, struct address_space *mapping,
667 loff_t pos, unsigned len, unsigned copied,
668 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700670 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct super_block *sb = inode->i_sb;
672 struct buffer_head *bh, *prev_bh;
673 char *data;
674 u32 bidx, boff, bsize;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700675 unsigned from, to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 u32 tmp;
677 int written;
678
Nick Pigginf2b6a162007-10-16 01:25:24 -0700679 from = pos & (PAGE_CACHE_SIZE - 1);
680 to = pos + len;
681 /*
682 * XXX: not sure if this can handle short copies (len < copied), but
683 * we don't have to, because the page should always be uptodate here,
684 * due to write_begin.
685 */
686
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700687 pr_debug("%s(%u, %llu, %llu)\n",
688 __func__, (u32)inode->i_ino, (unsigned long long)pos,
689 (unsigned long long)pos + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 bsize = AFFS_SB(sb)->s_data_blksize;
691 data = page_address(page);
692
693 bh = NULL;
694 written = 0;
695 tmp = (page->index << PAGE_CACHE_SHIFT) + from;
696 bidx = tmp / bsize;
697 boff = tmp % bsize;
698 if (boff) {
699 bh = affs_bread_ino(inode, bidx, 0);
700 if (IS_ERR(bh))
701 return PTR_ERR(bh);
702 tmp = min(bsize - boff, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700703 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700705 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 affs_fix_checksum(sb, bh);
707 mark_buffer_dirty_inode(bh, inode);
708 written += tmp;
709 from += tmp;
710 bidx++;
711 } else if (bidx) {
712 bh = affs_bread_ino(inode, bidx - 1, 0);
713 if (IS_ERR(bh))
714 return PTR_ERR(bh);
715 }
716 while (from + bsize <= to) {
717 prev_bh = bh;
718 bh = affs_getemptyblk_ino(inode, bidx);
719 if (IS_ERR(bh))
720 goto out;
721 memcpy(AFFS_DATA(bh), data + from, bsize);
722 if (buffer_new(bh)) {
723 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
724 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
725 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
726 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(bsize);
727 AFFS_DATA_HEAD(bh)->next = 0;
728 bh->b_state &= ~(1UL << BH_New);
729 if (prev_bh) {
730 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
731 if (tmp)
732 affs_warning(sb, "commit_write_ofs", "next block already set for %d (%d)", bidx, tmp);
733 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
734 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
735 mark_buffer_dirty_inode(prev_bh, inode);
736 }
737 }
738 affs_brelse(prev_bh);
739 affs_fix_checksum(sb, bh);
740 mark_buffer_dirty_inode(bh, inode);
741 written += bsize;
742 from += bsize;
743 bidx++;
744 }
745 if (from < to) {
746 prev_bh = bh;
747 bh = affs_bread_ino(inode, bidx, 1);
748 if (IS_ERR(bh))
749 goto out;
750 tmp = min(bsize, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700751 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 memcpy(AFFS_DATA(bh), data + from, tmp);
753 if (buffer_new(bh)) {
754 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
755 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
756 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
757 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
758 AFFS_DATA_HEAD(bh)->next = 0;
759 bh->b_state &= ~(1UL << BH_New);
760 if (prev_bh) {
761 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
762 if (tmp)
763 affs_warning(sb, "commit_write_ofs", "next block already set for %d (%d)", bidx, tmp);
764 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
765 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
766 mark_buffer_dirty_inode(prev_bh, inode);
767 }
768 } else if (be32_to_cpu(AFFS_DATA_HEAD(bh)->size) < tmp)
769 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
770 affs_brelse(prev_bh);
771 affs_fix_checksum(sb, bh);
772 mark_buffer_dirty_inode(bh, inode);
773 written += tmp;
774 from += tmp;
775 bidx++;
776 }
777 SetPageUptodate(page);
778
779done:
780 affs_brelse(bh);
781 tmp = (page->index << PAGE_CACHE_SHIFT) + from;
782 if (tmp > inode->i_size)
783 inode->i_size = AFFS_I(inode)->mmu_private = tmp;
784
Nick Pigginf2b6a162007-10-16 01:25:24 -0700785 unlock_page(page);
786 page_cache_release(page);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return written;
789
790out:
791 bh = prev_bh;
792 if (!written)
793 written = PTR_ERR(bh);
794 goto done;
795}
796
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700797const struct address_space_operations affs_aops_ofs = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 .readpage = affs_readpage_ofs,
799 //.writepage = affs_writepage_ofs,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700800 .write_begin = affs_write_begin_ofs,
801 .write_end = affs_write_end_ofs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802};
803
804/* Free any preallocated blocks. */
805
806void
807affs_free_prealloc(struct inode *inode)
808{
809 struct super_block *sb = inode->i_sb;
810
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700811 pr_debug("free_prealloc(ino=%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 while (AFFS_I(inode)->i_pa_cnt) {
814 AFFS_I(inode)->i_pa_cnt--;
815 affs_free_block(sb, ++AFFS_I(inode)->i_lastalloc);
816 }
817}
818
819/* Truncate (or enlarge) a file to the requested size. */
820
821void
822affs_truncate(struct inode *inode)
823{
824 struct super_block *sb = inode->i_sb;
825 u32 ext, ext_key;
826 u32 last_blk, blkcnt, blk;
827 u32 size;
828 struct buffer_head *ext_bh;
829 int i;
830
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700831 pr_debug("truncate(inode=%d, oldsize=%u, newsize=%u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 (u32)inode->i_ino, (u32)AFFS_I(inode)->mmu_private, (u32)inode->i_size);
833
834 last_blk = 0;
835 ext = 0;
836 if (inode->i_size) {
837 last_blk = ((u32)inode->i_size - 1) / AFFS_SB(sb)->s_data_blksize;
838 ext = last_blk / AFFS_SB(sb)->s_hashsize;
839 }
840
841 if (inode->i_size > AFFS_I(inode)->mmu_private) {
842 struct address_space *mapping = inode->i_mapping;
843 struct page *page;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700844 void *fsdata;
Dan Carpenter63259322013-09-11 14:25:48 -0700845 loff_t size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 int res;
847
Nick Pigginf2b6a162007-10-16 01:25:24 -0700848 res = mapping->a_ops->write_begin(NULL, mapping, size, 0, 0, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (!res)
Nick Pigginf2b6a162007-10-16 01:25:24 -0700850 res = mapping->a_ops->write_end(NULL, mapping, size, 0, 0, page, fsdata);
Roman Zippeldca3c332008-04-29 17:02:20 +0200851 else
852 inode->i_size = AFFS_I(inode)->mmu_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 mark_inode_dirty(inode);
854 return;
855 } else if (inode->i_size == AFFS_I(inode)->mmu_private)
856 return;
857
858 // lock cache
859 ext_bh = affs_get_extblock(inode, ext);
860 if (IS_ERR(ext_bh)) {
861 affs_warning(sb, "truncate", "unexpected read error for ext block %u (%d)",
862 ext, PTR_ERR(ext_bh));
863 return;
864 }
865 if (AFFS_I(inode)->i_lc) {
866 /* clear linear cache */
867 i = (ext + 1) >> AFFS_I(inode)->i_lc_shift;
868 if (AFFS_I(inode)->i_lc_size > i) {
869 AFFS_I(inode)->i_lc_size = i;
870 for (; i < AFFS_LC_SIZE; i++)
871 AFFS_I(inode)->i_lc[i] = 0;
872 }
873 /* clear associative cache */
874 for (i = 0; i < AFFS_AC_SIZE; i++)
875 if (AFFS_I(inode)->i_ac[i].ext >= ext)
876 AFFS_I(inode)->i_ac[i].ext = 0;
877 }
878 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
879
880 blkcnt = AFFS_I(inode)->i_blkcnt;
881 i = 0;
882 blk = last_blk;
883 if (inode->i_size) {
884 i = last_blk % AFFS_SB(sb)->s_hashsize + 1;
885 blk++;
886 } else
887 AFFS_HEAD(ext_bh)->first_data = 0;
Roman Zippeldca3c332008-04-29 17:02:20 +0200888 AFFS_HEAD(ext_bh)->block_count = cpu_to_be32(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 size = AFFS_SB(sb)->s_hashsize;
890 if (size > blkcnt - blk + i)
891 size = blkcnt - blk + i;
892 for (; i < size; i++, blk++) {
893 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
894 AFFS_BLOCK(sb, ext_bh, i) = 0;
895 }
896 AFFS_TAIL(sb, ext_bh)->extension = 0;
897 affs_fix_checksum(sb, ext_bh);
898 mark_buffer_dirty_inode(ext_bh, inode);
899 affs_brelse(ext_bh);
900
901 if (inode->i_size) {
902 AFFS_I(inode)->i_blkcnt = last_blk + 1;
903 AFFS_I(inode)->i_extcnt = ext + 1;
904 if (AFFS_SB(sb)->s_flags & SF_OFS) {
905 struct buffer_head *bh = affs_bread_ino(inode, last_blk, 0);
906 u32 tmp;
Dan Carpenter0e45b672010-08-25 09:05:27 +0200907 if (IS_ERR(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 affs_warning(sb, "truncate", "unexpected read error for last block %u (%d)",
Dan Carpenter0e45b672010-08-25 09:05:27 +0200909 ext, PTR_ERR(bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return;
911 }
912 tmp = be32_to_cpu(AFFS_DATA_HEAD(bh)->next);
913 AFFS_DATA_HEAD(bh)->next = 0;
914 affs_adjust_checksum(bh, -tmp);
915 affs_brelse(bh);
916 }
917 } else {
918 AFFS_I(inode)->i_blkcnt = 0;
919 AFFS_I(inode)->i_extcnt = 1;
920 }
921 AFFS_I(inode)->mmu_private = inode->i_size;
922 // unlock cache
923
924 while (ext_key) {
925 ext_bh = affs_bread(sb, ext_key);
926 size = AFFS_SB(sb)->s_hashsize;
927 if (size > blkcnt - blk)
928 size = blkcnt - blk;
929 for (i = 0; i < size; i++, blk++)
930 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
931 affs_free_block(sb, ext_key);
932 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
933 affs_brelse(ext_bh);
934 }
935 affs_free_prealloc(inode);
936}
Al Viroc4758792009-06-08 01:22:00 -0400937
Josef Bacik02c24a82011-07-16 20:44:56 -0400938int affs_file_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Al Viroc4758792009-06-08 01:22:00 -0400939{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200940 struct inode *inode = filp->f_mapping->host;
Al Viroc4758792009-06-08 01:22:00 -0400941 int ret, err;
942
Josef Bacik02c24a82011-07-16 20:44:56 -0400943 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
944 if (err)
945 return err;
946
947 mutex_lock(&inode->i_mutex);
Al Viroc4758792009-06-08 01:22:00 -0400948 ret = write_inode_now(inode, 0);
949 err = sync_blockdev(inode->i_sb->s_bdev);
950 if (!ret)
951 ret = err;
Josef Bacik02c24a82011-07-16 20:44:56 -0400952 mutex_unlock(&inode->i_mutex);
Al Viroc4758792009-06-08 01:22:00 -0400953 return ret;
954}