blob: 1a4f092f24efdb2ab13efa4bebb85bd38e7d2678 [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,
37 .fsync = 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 .truncate = affs_truncate,
43 .setattr = affs_notify_change,
44};
45
46static int
47affs_file_open(struct inode *inode, struct file *filp)
48{
49 if (atomic_read(&filp->f_count) != 1)
50 return 0;
51 pr_debug("AFFS: open(%d)\n", AFFS_I(inode)->i_opencnt);
52 AFFS_I(inode)->i_opencnt++;
53 return 0;
54}
55
56static int
57affs_file_release(struct inode *inode, struct file *filp)
58{
59 if (atomic_read(&filp->f_count) != 0)
60 return 0;
61 pr_debug("AFFS: release(%d)\n", AFFS_I(inode)->i_opencnt);
62 AFFS_I(inode)->i_opencnt--;
63 if (!AFFS_I(inode)->i_opencnt)
64 affs_free_prealloc(inode);
65
66 return 0;
67}
68
69static int
70affs_grow_extcache(struct inode *inode, u32 lc_idx)
71{
72 struct super_block *sb = inode->i_sb;
73 struct buffer_head *bh;
74 u32 lc_max;
75 int i, j, key;
76
77 if (!AFFS_I(inode)->i_lc) {
78 char *ptr = (char *)get_zeroed_page(GFP_NOFS);
79 if (!ptr)
80 return -ENOMEM;
81 AFFS_I(inode)->i_lc = (u32 *)ptr;
82 AFFS_I(inode)->i_ac = (struct affs_ext_key *)(ptr + AFFS_CACHE_SIZE / 2);
83 }
84
85 lc_max = AFFS_LC_SIZE << AFFS_I(inode)->i_lc_shift;
86
87 if (AFFS_I(inode)->i_extcnt > lc_max) {
88 u32 lc_shift, lc_mask, tmp, off;
89
90 /* need to recalculate linear cache, start from old size */
91 lc_shift = AFFS_I(inode)->i_lc_shift;
92 tmp = (AFFS_I(inode)->i_extcnt / AFFS_LC_SIZE) >> lc_shift;
93 for (; tmp; tmp >>= 1)
94 lc_shift++;
95 lc_mask = (1 << lc_shift) - 1;
96
97 /* fix idx and old size to new shift */
98 lc_idx >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
99 AFFS_I(inode)->i_lc_size >>= (lc_shift - AFFS_I(inode)->i_lc_shift);
100
101 /* first shrink old cache to make more space */
102 off = 1 << (lc_shift - AFFS_I(inode)->i_lc_shift);
103 for (i = 1, j = off; j < AFFS_LC_SIZE; i++, j += off)
104 AFFS_I(inode)->i_ac[i] = AFFS_I(inode)->i_ac[j];
105
106 AFFS_I(inode)->i_lc_shift = lc_shift;
107 AFFS_I(inode)->i_lc_mask = lc_mask;
108 }
109
110 /* fill cache to the needed index */
111 i = AFFS_I(inode)->i_lc_size;
112 AFFS_I(inode)->i_lc_size = lc_idx + 1;
113 for (; i <= lc_idx; i++) {
114 if (!i) {
115 AFFS_I(inode)->i_lc[0] = inode->i_ino;
116 continue;
117 }
118 key = AFFS_I(inode)->i_lc[i - 1];
119 j = AFFS_I(inode)->i_lc_mask + 1;
120 // unlock cache
121 for (; j > 0; j--) {
122 bh = affs_bread(sb, key);
123 if (!bh)
124 goto err;
125 key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
126 affs_brelse(bh);
127 }
128 // lock cache
129 AFFS_I(inode)->i_lc[i] = key;
130 }
131
132 return 0;
133
134err:
135 // lock cache
136 return -EIO;
137}
138
139static struct buffer_head *
140affs_alloc_extblock(struct inode *inode, struct buffer_head *bh, u32 ext)
141{
142 struct super_block *sb = inode->i_sb;
143 struct buffer_head *new_bh;
144 u32 blocknr, tmp;
145
146 blocknr = affs_alloc_block(inode, bh->b_blocknr);
147 if (!blocknr)
148 return ERR_PTR(-ENOSPC);
149
150 new_bh = affs_getzeroblk(sb, blocknr);
151 if (!new_bh) {
152 affs_free_block(sb, blocknr);
153 return ERR_PTR(-EIO);
154 }
155
156 AFFS_HEAD(new_bh)->ptype = cpu_to_be32(T_LIST);
157 AFFS_HEAD(new_bh)->key = cpu_to_be32(blocknr);
158 AFFS_TAIL(sb, new_bh)->stype = cpu_to_be32(ST_FILE);
159 AFFS_TAIL(sb, new_bh)->parent = cpu_to_be32(inode->i_ino);
160 affs_fix_checksum(sb, new_bh);
161
162 mark_buffer_dirty_inode(new_bh, inode);
163
164 tmp = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
165 if (tmp)
166 affs_warning(sb, "alloc_ext", "previous extension set (%x)", tmp);
167 AFFS_TAIL(sb, bh)->extension = cpu_to_be32(blocknr);
168 affs_adjust_checksum(bh, blocknr - tmp);
169 mark_buffer_dirty_inode(bh, inode);
170
171 AFFS_I(inode)->i_extcnt++;
172 mark_inode_dirty(inode);
173
174 return new_bh;
175}
176
177static inline struct buffer_head *
178affs_get_extblock(struct inode *inode, u32 ext)
179{
180 /* inline the simplest case: same extended block as last time */
181 struct buffer_head *bh = AFFS_I(inode)->i_ext_bh;
182 if (ext == AFFS_I(inode)->i_ext_last)
183 atomic_inc(&bh->b_count);
184 else
185 /* we have to do more (not inlined) */
186 bh = affs_get_extblock_slow(inode, ext);
187
188 return bh;
189}
190
191static struct buffer_head *
192affs_get_extblock_slow(struct inode *inode, u32 ext)
193{
194 struct super_block *sb = inode->i_sb;
195 struct buffer_head *bh;
196 u32 ext_key;
197 u32 lc_idx, lc_off, ac_idx;
198 u32 tmp, idx;
199
200 if (ext == AFFS_I(inode)->i_ext_last + 1) {
201 /* read the next extended block from the current one */
202 bh = AFFS_I(inode)->i_ext_bh;
203 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
204 if (ext < AFFS_I(inode)->i_extcnt)
205 goto read_ext;
206 if (ext > AFFS_I(inode)->i_extcnt)
207 BUG();
208 bh = affs_alloc_extblock(inode, bh, ext);
209 if (IS_ERR(bh))
210 return bh;
211 goto store_ext;
212 }
213
214 if (ext == 0) {
215 /* we seek back to the file header block */
216 ext_key = inode->i_ino;
217 goto read_ext;
218 }
219
220 if (ext >= AFFS_I(inode)->i_extcnt) {
221 struct buffer_head *prev_bh;
222
223 /* allocate a new extended block */
224 if (ext > AFFS_I(inode)->i_extcnt)
225 BUG();
226
227 /* get previous extended block */
228 prev_bh = affs_get_extblock(inode, ext - 1);
229 if (IS_ERR(prev_bh))
230 return prev_bh;
231 bh = affs_alloc_extblock(inode, prev_bh, ext);
232 affs_brelse(prev_bh);
233 if (IS_ERR(bh))
234 return bh;
235 goto store_ext;
236 }
237
238again:
239 /* check if there is an extended cache and whether it's large enough */
240 lc_idx = ext >> AFFS_I(inode)->i_lc_shift;
241 lc_off = ext & AFFS_I(inode)->i_lc_mask;
242
243 if (lc_idx >= AFFS_I(inode)->i_lc_size) {
244 int err;
245
246 err = affs_grow_extcache(inode, lc_idx);
247 if (err)
248 return ERR_PTR(err);
249 goto again;
250 }
251
252 /* every n'th key we find in the linear cache */
253 if (!lc_off) {
254 ext_key = AFFS_I(inode)->i_lc[lc_idx];
255 goto read_ext;
256 }
257
258 /* maybe it's still in the associative cache */
259 ac_idx = (ext - lc_idx - 1) & AFFS_AC_MASK;
260 if (AFFS_I(inode)->i_ac[ac_idx].ext == ext) {
261 ext_key = AFFS_I(inode)->i_ac[ac_idx].key;
262 goto read_ext;
263 }
264
265 /* try to find one of the previous extended blocks */
266 tmp = ext;
267 idx = ac_idx;
268 while (--tmp, --lc_off > 0) {
269 idx = (idx - 1) & AFFS_AC_MASK;
270 if (AFFS_I(inode)->i_ac[idx].ext == tmp) {
271 ext_key = AFFS_I(inode)->i_ac[idx].key;
272 goto find_ext;
273 }
274 }
275
276 /* fall back to the linear cache */
277 ext_key = AFFS_I(inode)->i_lc[lc_idx];
278find_ext:
279 /* read all extended blocks until we find the one we need */
280 //unlock cache
281 do {
282 bh = affs_bread(sb, ext_key);
283 if (!bh)
284 goto err_bread;
285 ext_key = be32_to_cpu(AFFS_TAIL(sb, bh)->extension);
286 affs_brelse(bh);
287 tmp++;
288 } while (tmp < ext);
289 //lock cache
290
291 /* store it in the associative cache */
292 // recalculate ac_idx?
293 AFFS_I(inode)->i_ac[ac_idx].ext = ext;
294 AFFS_I(inode)->i_ac[ac_idx].key = ext_key;
295
296read_ext:
297 /* finally read the right extended block */
298 //unlock cache
299 bh = affs_bread(sb, ext_key);
300 if (!bh)
301 goto err_bread;
302 //lock cache
303
304store_ext:
305 /* release old cached extended block and store the new one */
306 affs_brelse(AFFS_I(inode)->i_ext_bh);
307 AFFS_I(inode)->i_ext_last = ext;
308 AFFS_I(inode)->i_ext_bh = bh;
309 atomic_inc(&bh->b_count);
310
311 return bh;
312
313err_bread:
314 affs_brelse(bh);
315 return ERR_PTR(-EIO);
316}
317
318static int
319affs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create)
320{
321 struct super_block *sb = inode->i_sb;
322 struct buffer_head *ext_bh;
323 u32 ext;
324
325 pr_debug("AFFS: get_block(%u, %lu)\n", (u32)inode->i_ino, (unsigned long)block);
326
327
Julia Lawall8d4b6902008-04-29 00:59:12 -0700328 BUG_ON(block > (sector_t)0x7fffffffUL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (block >= AFFS_I(inode)->i_blkcnt) {
331 if (block > AFFS_I(inode)->i_blkcnt || !create)
332 goto err_big;
333 } else
334 create = 0;
335
336 //lock cache
337 affs_lock_ext(inode);
338
339 ext = (u32)block / AFFS_SB(sb)->s_hashsize;
340 block -= ext * AFFS_SB(sb)->s_hashsize;
341 ext_bh = affs_get_extblock(inode, ext);
342 if (IS_ERR(ext_bh))
343 goto err_ext;
344 map_bh(bh_result, sb, (sector_t)be32_to_cpu(AFFS_BLOCK(sb, ext_bh, block)));
345
346 if (create) {
347 u32 blocknr = affs_alloc_block(inode, ext_bh->b_blocknr);
348 if (!blocknr)
349 goto err_alloc;
350 set_buffer_new(bh_result);
351 AFFS_I(inode)->mmu_private += AFFS_SB(sb)->s_data_blksize;
352 AFFS_I(inode)->i_blkcnt++;
353
354 /* store new block */
355 if (bh_result->b_blocknr)
356 affs_warning(sb, "get_block", "block already set (%x)", bh_result->b_blocknr);
357 AFFS_BLOCK(sb, ext_bh, block) = cpu_to_be32(blocknr);
358 AFFS_HEAD(ext_bh)->block_count = cpu_to_be32(block + 1);
359 affs_adjust_checksum(ext_bh, blocknr - bh_result->b_blocknr + 1);
360 bh_result->b_blocknr = blocknr;
361
362 if (!block) {
363 /* insert first block into header block */
364 u32 tmp = be32_to_cpu(AFFS_HEAD(ext_bh)->first_data);
365 if (tmp)
366 affs_warning(sb, "get_block", "first block already set (%d)", tmp);
367 AFFS_HEAD(ext_bh)->first_data = cpu_to_be32(blocknr);
368 affs_adjust_checksum(ext_bh, blocknr - tmp);
369 }
370 }
371
372 affs_brelse(ext_bh);
373 //unlock cache
374 affs_unlock_ext(inode);
375 return 0;
376
377err_big:
378 affs_error(inode->i_sb,"get_block","strange block request %d", block);
379 return -EIO;
380err_ext:
381 // unlock cache
382 affs_unlock_ext(inode);
383 return PTR_ERR(ext_bh);
384err_alloc:
385 brelse(ext_bh);
386 clear_buffer_mapped(bh_result);
387 bh_result->b_bdev = NULL;
388 // unlock cache
389 affs_unlock_ext(inode);
390 return -ENOSPC;
391}
392
393static int affs_writepage(struct page *page, struct writeback_control *wbc)
394{
395 return block_write_full_page(page, affs_get_block, wbc);
396}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398static int affs_readpage(struct file *file, struct page *page)
399{
400 return block_read_full_page(page, affs_get_block);
401}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700402
403static int affs_write_begin(struct file *file, struct address_space *mapping,
404 loff_t pos, unsigned len, unsigned flags,
405 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700407 *pagep = NULL;
408 return cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
409 affs_get_block,
410 &AFFS_I(mapping->host)->mmu_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static sector_t _affs_bmap(struct address_space *mapping, sector_t block)
414{
415 return generic_block_bmap(mapping,block,affs_get_block);
416}
Nick Pigginf2b6a162007-10-16 01:25:24 -0700417
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700418const struct address_space_operations affs_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 .readpage = affs_readpage,
420 .writepage = affs_writepage,
421 .sync_page = block_sync_page,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700422 .write_begin = affs_write_begin,
423 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 .bmap = _affs_bmap
425};
426
427static inline struct buffer_head *
428affs_bread_ino(struct inode *inode, int block, int create)
429{
430 struct buffer_head *bh, tmp_bh;
431 int err;
432
433 tmp_bh.b_state = 0;
434 err = affs_get_block(inode, block, &tmp_bh, create);
435 if (!err) {
436 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr);
437 if (bh) {
438 bh->b_state |= tmp_bh.b_state;
439 return bh;
440 }
441 err = -EIO;
442 }
443 return ERR_PTR(err);
444}
445
446static inline struct buffer_head *
447affs_getzeroblk_ino(struct inode *inode, int block)
448{
449 struct buffer_head *bh, tmp_bh;
450 int err;
451
452 tmp_bh.b_state = 0;
453 err = affs_get_block(inode, block, &tmp_bh, 1);
454 if (!err) {
455 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr);
456 if (bh) {
457 bh->b_state |= tmp_bh.b_state;
458 return bh;
459 }
460 err = -EIO;
461 }
462 return ERR_PTR(err);
463}
464
465static inline struct buffer_head *
466affs_getemptyblk_ino(struct inode *inode, int block)
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, 1);
473 if (!err) {
474 bh = affs_getemptyblk(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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484static int
485affs_do_readpage_ofs(struct file *file, struct page *page, unsigned from, unsigned to)
486{
487 struct inode *inode = page->mapping->host;
488 struct super_block *sb = inode->i_sb;
489 struct buffer_head *bh;
490 char *data;
491 u32 bidx, boff, bsize;
492 u32 tmp;
493
494 pr_debug("AFFS: read_page(%u, %ld, %d, %d)\n", (u32)inode->i_ino, page->index, from, to);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700495 BUG_ON(from > to || to > PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kmap(page);
497 data = page_address(page);
498 bsize = AFFS_SB(sb)->s_data_blksize;
499 tmp = (page->index << PAGE_CACHE_SHIFT) + from;
500 bidx = tmp / bsize;
501 boff = tmp % bsize;
502
503 while (from < to) {
504 bh = affs_bread_ino(inode, bidx, 0);
505 if (IS_ERR(bh))
506 return PTR_ERR(bh);
507 tmp = min(bsize - boff, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700508 BUG_ON(from + tmp > to || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 memcpy(data + from, AFFS_DATA(bh) + boff, tmp);
510 affs_brelse(bh);
511 bidx++;
512 from += tmp;
513 boff = 0;
514 }
515 flush_dcache_page(page);
516 kunmap(page);
517 return 0;
518}
519
520static int
521affs_extent_file_ofs(struct inode *inode, u32 newsize)
522{
523 struct super_block *sb = inode->i_sb;
524 struct buffer_head *bh, *prev_bh;
525 u32 bidx, boff;
526 u32 size, bsize;
527 u32 tmp;
528
529 pr_debug("AFFS: extent_file(%u, %d)\n", (u32)inode->i_ino, newsize);
530 bsize = AFFS_SB(sb)->s_data_blksize;
531 bh = NULL;
532 size = AFFS_I(inode)->mmu_private;
533 bidx = size / bsize;
534 boff = size % bsize;
535 if (boff) {
536 bh = affs_bread_ino(inode, bidx, 0);
537 if (IS_ERR(bh))
538 return PTR_ERR(bh);
539 tmp = min(bsize - boff, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700540 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 memset(AFFS_DATA(bh) + boff, 0, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700542 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 affs_fix_checksum(sb, bh);
544 mark_buffer_dirty_inode(bh, inode);
545 size += tmp;
546 bidx++;
547 } else if (bidx) {
548 bh = affs_bread_ino(inode, bidx - 1, 0);
549 if (IS_ERR(bh))
550 return PTR_ERR(bh);
551 }
552
553 while (size < newsize) {
554 prev_bh = bh;
555 bh = affs_getzeroblk_ino(inode, bidx);
556 if (IS_ERR(bh))
557 goto out;
558 tmp = min(bsize, newsize - size);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700559 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
561 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
562 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
563 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
564 affs_fix_checksum(sb, bh);
565 bh->b_state &= ~(1UL << BH_New);
566 mark_buffer_dirty_inode(bh, inode);
567 if (prev_bh) {
568 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
569 if (tmp)
570 affs_warning(sb, "extent_file_ofs", "next block already set for %d (%d)", bidx, tmp);
571 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
572 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
573 mark_buffer_dirty_inode(prev_bh, inode);
574 affs_brelse(prev_bh);
575 }
576 size += bsize;
577 bidx++;
578 }
579 affs_brelse(bh);
580 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
581 return 0;
582
583out:
584 inode->i_size = AFFS_I(inode)->mmu_private = newsize;
585 return PTR_ERR(bh);
586}
587
588static int
589affs_readpage_ofs(struct file *file, struct page *page)
590{
591 struct inode *inode = page->mapping->host;
592 u32 to;
593 int err;
594
595 pr_debug("AFFS: read_page(%u, %ld)\n", (u32)inode->i_ino, page->index);
596 to = PAGE_CACHE_SIZE;
597 if (((page->index + 1) << PAGE_CACHE_SHIFT) > inode->i_size) {
598 to = inode->i_size & ~PAGE_CACHE_MASK;
599 memset(page_address(page) + to, 0, PAGE_CACHE_SIZE - to);
600 }
601
602 err = affs_do_readpage_ofs(file, page, 0, to);
603 if (!err)
604 SetPageUptodate(page);
605 unlock_page(page);
606 return err;
607}
608
Nick Pigginf2b6a162007-10-16 01:25:24 -0700609static int affs_write_begin_ofs(struct file *file, struct address_space *mapping,
610 loff_t pos, unsigned len, unsigned flags,
611 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700613 struct inode *inode = mapping->host;
614 struct page *page;
615 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 int err = 0;
617
Nick Pigginf2b6a162007-10-16 01:25:24 -0700618 pr_debug("AFFS: write_begin(%u, %llu, %llu)\n", (u32)inode->i_ino, (unsigned long long)pos, (unsigned long long)pos + len);
619 if (pos > AFFS_I(inode)->mmu_private) {
620 /* XXX: this probably leaves a too-big i_size in case of
621 * failure. Should really be updating i_size at write_end time
622 */
623 err = affs_extent_file_ofs(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (err)
625 return err;
626 }
Nick Pigginf2b6a162007-10-16 01:25:24 -0700627
628 index = pos >> PAGE_CACHE_SHIFT;
629 page = __grab_cache_page(mapping, index);
630 if (!page)
631 return -ENOMEM;
632 *pagep = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 if (PageUptodate(page))
635 return 0;
636
Nick Pigginf2b6a162007-10-16 01:25:24 -0700637 /* XXX: inefficient but safe in the face of short writes */
638 err = affs_do_readpage_ofs(file, page, 0, PAGE_CACHE_SIZE);
639 if (err) {
640 unlock_page(page);
641 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 return err;
644}
645
Nick Pigginf2b6a162007-10-16 01:25:24 -0700646static int affs_write_end_ofs(struct file *file, struct address_space *mapping,
647 loff_t pos, unsigned len, unsigned copied,
648 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Nick Pigginf2b6a162007-10-16 01:25:24 -0700650 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct super_block *sb = inode->i_sb;
652 struct buffer_head *bh, *prev_bh;
653 char *data;
654 u32 bidx, boff, bsize;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700655 unsigned from, to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 u32 tmp;
657 int written;
658
Nick Pigginf2b6a162007-10-16 01:25:24 -0700659 from = pos & (PAGE_CACHE_SIZE - 1);
660 to = pos + len;
661 /*
662 * XXX: not sure if this can handle short copies (len < copied), but
663 * we don't have to, because the page should always be uptodate here,
664 * due to write_begin.
665 */
666
667 pr_debug("AFFS: write_begin(%u, %llu, %llu)\n", (u32)inode->i_ino, (unsigned long long)pos, (unsigned long long)pos + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 bsize = AFFS_SB(sb)->s_data_blksize;
669 data = page_address(page);
670
671 bh = NULL;
672 written = 0;
673 tmp = (page->index << PAGE_CACHE_SHIFT) + from;
674 bidx = tmp / bsize;
675 boff = tmp % bsize;
676 if (boff) {
677 bh = affs_bread_ino(inode, bidx, 0);
678 if (IS_ERR(bh))
679 return PTR_ERR(bh);
680 tmp = min(bsize - boff, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700681 BUG_ON(boff + tmp > bsize || tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);
Marcin Slusarz6369a4a2008-04-30 00:54:47 -0700683 be32_add_cpu(&AFFS_DATA_HEAD(bh)->size, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 affs_fix_checksum(sb, bh);
685 mark_buffer_dirty_inode(bh, inode);
686 written += tmp;
687 from += tmp;
688 bidx++;
689 } else if (bidx) {
690 bh = affs_bread_ino(inode, bidx - 1, 0);
691 if (IS_ERR(bh))
692 return PTR_ERR(bh);
693 }
694 while (from + bsize <= to) {
695 prev_bh = bh;
696 bh = affs_getemptyblk_ino(inode, bidx);
697 if (IS_ERR(bh))
698 goto out;
699 memcpy(AFFS_DATA(bh), data + from, bsize);
700 if (buffer_new(bh)) {
701 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
702 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
703 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
704 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(bsize);
705 AFFS_DATA_HEAD(bh)->next = 0;
706 bh->b_state &= ~(1UL << BH_New);
707 if (prev_bh) {
708 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
709 if (tmp)
710 affs_warning(sb, "commit_write_ofs", "next block already set for %d (%d)", bidx, tmp);
711 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
712 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
713 mark_buffer_dirty_inode(prev_bh, inode);
714 }
715 }
716 affs_brelse(prev_bh);
717 affs_fix_checksum(sb, bh);
718 mark_buffer_dirty_inode(bh, inode);
719 written += bsize;
720 from += bsize;
721 bidx++;
722 }
723 if (from < to) {
724 prev_bh = bh;
725 bh = affs_bread_ino(inode, bidx, 1);
726 if (IS_ERR(bh))
727 goto out;
728 tmp = min(bsize, to - from);
Julia Lawall8d4b6902008-04-29 00:59:12 -0700729 BUG_ON(tmp > bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 memcpy(AFFS_DATA(bh), data + from, tmp);
731 if (buffer_new(bh)) {
732 AFFS_DATA_HEAD(bh)->ptype = cpu_to_be32(T_DATA);
733 AFFS_DATA_HEAD(bh)->key = cpu_to_be32(inode->i_ino);
734 AFFS_DATA_HEAD(bh)->sequence = cpu_to_be32(bidx);
735 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
736 AFFS_DATA_HEAD(bh)->next = 0;
737 bh->b_state &= ~(1UL << BH_New);
738 if (prev_bh) {
739 u32 tmp = be32_to_cpu(AFFS_DATA_HEAD(prev_bh)->next);
740 if (tmp)
741 affs_warning(sb, "commit_write_ofs", "next block already set for %d (%d)", bidx, tmp);
742 AFFS_DATA_HEAD(prev_bh)->next = cpu_to_be32(bh->b_blocknr);
743 affs_adjust_checksum(prev_bh, bh->b_blocknr - tmp);
744 mark_buffer_dirty_inode(prev_bh, inode);
745 }
746 } else if (be32_to_cpu(AFFS_DATA_HEAD(bh)->size) < tmp)
747 AFFS_DATA_HEAD(bh)->size = cpu_to_be32(tmp);
748 affs_brelse(prev_bh);
749 affs_fix_checksum(sb, bh);
750 mark_buffer_dirty_inode(bh, inode);
751 written += tmp;
752 from += tmp;
753 bidx++;
754 }
755 SetPageUptodate(page);
756
757done:
758 affs_brelse(bh);
759 tmp = (page->index << PAGE_CACHE_SHIFT) + from;
760 if (tmp > inode->i_size)
761 inode->i_size = AFFS_I(inode)->mmu_private = tmp;
762
Nick Pigginf2b6a162007-10-16 01:25:24 -0700763 unlock_page(page);
764 page_cache_release(page);
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return written;
767
768out:
769 bh = prev_bh;
770 if (!written)
771 written = PTR_ERR(bh);
772 goto done;
773}
774
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700775const struct address_space_operations affs_aops_ofs = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 .readpage = affs_readpage_ofs,
777 //.writepage = affs_writepage_ofs,
778 //.sync_page = affs_sync_page_ofs,
Nick Pigginf2b6a162007-10-16 01:25:24 -0700779 .write_begin = affs_write_begin_ofs,
780 .write_end = affs_write_end_ofs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781};
782
783/* Free any preallocated blocks. */
784
785void
786affs_free_prealloc(struct inode *inode)
787{
788 struct super_block *sb = inode->i_sb;
789
790 pr_debug("AFFS: free_prealloc(ino=%lu)\n", inode->i_ino);
791
792 while (AFFS_I(inode)->i_pa_cnt) {
793 AFFS_I(inode)->i_pa_cnt--;
794 affs_free_block(sb, ++AFFS_I(inode)->i_lastalloc);
795 }
796}
797
798/* Truncate (or enlarge) a file to the requested size. */
799
800void
801affs_truncate(struct inode *inode)
802{
803 struct super_block *sb = inode->i_sb;
804 u32 ext, ext_key;
805 u32 last_blk, blkcnt, blk;
806 u32 size;
807 struct buffer_head *ext_bh;
808 int i;
809
810 pr_debug("AFFS: truncate(inode=%d, oldsize=%u, newsize=%u)\n",
811 (u32)inode->i_ino, (u32)AFFS_I(inode)->mmu_private, (u32)inode->i_size);
812
813 last_blk = 0;
814 ext = 0;
815 if (inode->i_size) {
816 last_blk = ((u32)inode->i_size - 1) / AFFS_SB(sb)->s_data_blksize;
817 ext = last_blk / AFFS_SB(sb)->s_hashsize;
818 }
819
820 if (inode->i_size > AFFS_I(inode)->mmu_private) {
821 struct address_space *mapping = inode->i_mapping;
822 struct page *page;
Nick Pigginf2b6a162007-10-16 01:25:24 -0700823 void *fsdata;
824 u32 size = inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int res;
826
Nick Pigginf2b6a162007-10-16 01:25:24 -0700827 res = mapping->a_ops->write_begin(NULL, mapping, size, 0, 0, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (!res)
Nick Pigginf2b6a162007-10-16 01:25:24 -0700829 res = mapping->a_ops->write_end(NULL, mapping, size, 0, 0, page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 mark_inode_dirty(inode);
831 return;
832 } else if (inode->i_size == AFFS_I(inode)->mmu_private)
833 return;
834
835 // lock cache
836 ext_bh = affs_get_extblock(inode, ext);
837 if (IS_ERR(ext_bh)) {
838 affs_warning(sb, "truncate", "unexpected read error for ext block %u (%d)",
839 ext, PTR_ERR(ext_bh));
840 return;
841 }
842 if (AFFS_I(inode)->i_lc) {
843 /* clear linear cache */
844 i = (ext + 1) >> AFFS_I(inode)->i_lc_shift;
845 if (AFFS_I(inode)->i_lc_size > i) {
846 AFFS_I(inode)->i_lc_size = i;
847 for (; i < AFFS_LC_SIZE; i++)
848 AFFS_I(inode)->i_lc[i] = 0;
849 }
850 /* clear associative cache */
851 for (i = 0; i < AFFS_AC_SIZE; i++)
852 if (AFFS_I(inode)->i_ac[i].ext >= ext)
853 AFFS_I(inode)->i_ac[i].ext = 0;
854 }
855 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
856
857 blkcnt = AFFS_I(inode)->i_blkcnt;
858 i = 0;
859 blk = last_blk;
860 if (inode->i_size) {
861 i = last_blk % AFFS_SB(sb)->s_hashsize + 1;
862 blk++;
863 } else
864 AFFS_HEAD(ext_bh)->first_data = 0;
865 size = AFFS_SB(sb)->s_hashsize;
866 if (size > blkcnt - blk + i)
867 size = blkcnt - blk + i;
868 for (; i < size; i++, blk++) {
869 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
870 AFFS_BLOCK(sb, ext_bh, i) = 0;
871 }
872 AFFS_TAIL(sb, ext_bh)->extension = 0;
873 affs_fix_checksum(sb, ext_bh);
874 mark_buffer_dirty_inode(ext_bh, inode);
875 affs_brelse(ext_bh);
876
877 if (inode->i_size) {
878 AFFS_I(inode)->i_blkcnt = last_blk + 1;
879 AFFS_I(inode)->i_extcnt = ext + 1;
880 if (AFFS_SB(sb)->s_flags & SF_OFS) {
881 struct buffer_head *bh = affs_bread_ino(inode, last_blk, 0);
882 u32 tmp;
883 if (IS_ERR(ext_bh)) {
884 affs_warning(sb, "truncate", "unexpected read error for last block %u (%d)",
885 ext, PTR_ERR(ext_bh));
886 return;
887 }
888 tmp = be32_to_cpu(AFFS_DATA_HEAD(bh)->next);
889 AFFS_DATA_HEAD(bh)->next = 0;
890 affs_adjust_checksum(bh, -tmp);
891 affs_brelse(bh);
892 }
893 } else {
894 AFFS_I(inode)->i_blkcnt = 0;
895 AFFS_I(inode)->i_extcnt = 1;
896 }
897 AFFS_I(inode)->mmu_private = inode->i_size;
898 // unlock cache
899
900 while (ext_key) {
901 ext_bh = affs_bread(sb, ext_key);
902 size = AFFS_SB(sb)->s_hashsize;
903 if (size > blkcnt - blk)
904 size = blkcnt - blk;
905 for (i = 0; i < size; i++, blk++)
906 affs_free_block(sb, be32_to_cpu(AFFS_BLOCK(sb, ext_bh, i)));
907 affs_free_block(sb, ext_key);
908 ext_key = be32_to_cpu(AFFS_TAIL(sb, ext_bh)->extension);
909 affs_brelse(ext_bh);
910 }
911 affs_free_prealloc(inode);
912}