blob: 89c500ee521382c2250c0a818a3c18c773025ac8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hpfs/file.c
3 *
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
5 *
6 * file VFS functions
7 */
8
9#include "hpfs_fn.h"
10
11#define BLOCKS(size) (((size) + 511) >> 9)
12
13static int hpfs_file_release(struct inode *inode, struct file *file)
14{
Arnd Bergmann9a311b92011-01-22 20:26:12 +010015 hpfs_lock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 hpfs_write_if_changed(inode);
Arnd Bergmann9a311b92011-01-22 20:26:12 +010017 hpfs_unlock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 return 0;
19}
20
Christoph Hellwig7ea80852010-05-26 17:53:25 +020021int hpfs_file_fsync(struct file *file, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
Mikulas Patockabc8728e2011-05-08 20:44:19 +020023 struct inode *inode = file->f_mapping->host;
24 return sync_blockdev(inode->i_sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025}
26
27/*
28 * generic_file_read often calls bmap with non-existing sector,
29 * so we must ignore such errors.
30 */
31
32static secno hpfs_bmap(struct inode *inode, unsigned file_secno)
33{
34 struct hpfs_inode_info *hpfs_inode = hpfs_i(inode);
35 unsigned n, disk_secno;
36 struct fnode *fnode;
37 struct buffer_head *bh;
38 if (BLOCKS(hpfs_i(inode)->mmu_private) <= file_secno) return 0;
39 n = file_secno - hpfs_inode->i_file_sec;
40 if (n < hpfs_inode->i_n_secs) return hpfs_inode->i_disk_sec + n;
41 if (!(fnode = hpfs_map_fnode(inode->i_sb, inode->i_ino, &bh))) return 0;
42 disk_secno = hpfs_bplus_lookup(inode->i_sb, inode, &fnode->btree, file_secno, bh);
43 if (disk_secno == -1) return 0;
44 if (hpfs_chk_sectors(inode->i_sb, disk_secno, 1, "bmap")) return 0;
45 return disk_secno;
46}
47
48static void hpfs_truncate(struct inode *i)
49{
50 if (IS_IMMUTABLE(i)) return /*-EPERM*/;
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020051 hpfs_lock_assert(i->i_sb);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 hpfs_i(i)->i_n_secs = 0;
54 i->i_blocks = 1 + ((i->i_size + 511) >> 9);
55 hpfs_i(i)->mmu_private = i->i_size;
56 hpfs_truncate_btree(i->i_sb, i->i_ino, 1, ((i->i_size + 511) >> 9));
57 hpfs_write_inode(i);
58 hpfs_i(i)->i_n_secs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61static int hpfs_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create)
62{
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020063 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 secno s;
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020065 hpfs_lock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 s = hpfs_bmap(inode, iblock);
67 if (s) {
68 map_bh(bh_result, inode->i_sb, s);
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020069 goto ret_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020071 if (!create) goto ret_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (iblock<<9 != hpfs_i(inode)->mmu_private) {
73 BUG();
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020074 r = -EIO;
75 goto ret_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77 if ((s = hpfs_add_sector_to_btree(inode->i_sb, inode->i_ino, 1, inode->i_blocks - 1)) == -1) {
78 hpfs_truncate_btree(inode->i_sb, inode->i_ino, 1, inode->i_blocks - 1);
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020079 r = -ENOSPC;
80 goto ret_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82 inode->i_blocks++;
83 hpfs_i(inode)->mmu_private += 512;
84 set_buffer_new(bh_result);
85 map_bh(bh_result, inode->i_sb, s);
Mikulas Patocka7dd29d82011-05-08 20:42:54 +020086 ret_0:
87 r = 0;
88 ret_r:
89 hpfs_unlock(inode->i_sb);
90 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93static int hpfs_writepage(struct page *page, struct writeback_control *wbc)
94{
95 return block_write_full_page(page,hpfs_get_block, wbc);
96}
Nick Piggind6091b72007-10-16 01:25:10 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static int hpfs_readpage(struct file *file, struct page *page)
99{
100 return block_read_full_page(page,hpfs_get_block);
101}
Nick Piggind6091b72007-10-16 01:25:10 -0700102
103static int hpfs_write_begin(struct file *file, struct address_space *mapping,
104 loff_t pos, unsigned len, unsigned flags,
105 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Christoph Hellwig282dc172010-06-04 11:29:55 +0200107 int ret;
108
Nick Piggind6091b72007-10-16 01:25:10 -0700109 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +0200110 ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Nick Piggind6091b72007-10-16 01:25:10 -0700111 hpfs_get_block,
112 &hpfs_i(mapping->host)->mmu_private);
Christoph Hellwig282dc172010-06-04 11:29:55 +0200113 if (unlikely(ret)) {
114 loff_t isize = mapping->host->i_size;
115 if (pos + len > isize)
116 vmtruncate(mapping->host, isize);
117 }
118
119 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Nick Piggind6091b72007-10-16 01:25:10 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static sector_t _hpfs_bmap(struct address_space *mapping, sector_t block)
123{
124 return generic_block_bmap(mapping,block,hpfs_get_block);
125}
Nick Piggind6091b72007-10-16 01:25:10 -0700126
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700127const struct address_space_operations hpfs_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .readpage = hpfs_readpage,
129 .writepage = hpfs_writepage,
Nick Piggind6091b72007-10-16 01:25:10 -0700130 .write_begin = hpfs_write_begin,
131 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .bmap = _hpfs_bmap
133};
134
135static ssize_t hpfs_file_write(struct file *file, const char __user *buf,
136 size_t count, loff_t *ppos)
137{
138 ssize_t retval;
139
Badari Pulavarty543ade12006-09-30 23:28:48 -0700140 retval = do_sync_write(file, buf, count, ppos);
Mikulas Patocka7dd29d82011-05-08 20:42:54 +0200141 if (retval > 0) {
142 hpfs_lock(file->f_path.dentry->d_sb);
Josef Sipek575800b2006-12-08 02:37:06 -0800143 hpfs_i(file->f_path.dentry->d_inode)->i_dirty = 1;
Mikulas Patocka7dd29d82011-05-08 20:42:54 +0200144 hpfs_unlock(file->f_path.dentry->d_sb);
145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return retval;
147}
148
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800149const struct file_operations hpfs_file_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -0700152 .read = do_sync_read,
153 .aio_read = generic_file_aio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .write = hpfs_file_write,
Badari Pulavarty543ade12006-09-30 23:28:48 -0700155 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .mmap = generic_file_mmap,
157 .release = hpfs_file_release,
158 .fsync = hpfs_file_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200159 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800162const struct inode_operations hpfs_file_iops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 .truncate = hpfs_truncate,
Christoph Hellwigca30bc92008-08-11 00:27:59 +0200165 .setattr = hpfs_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166};