]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * fs/bfs/file.c | |
3 | * BFS file operations. | |
4 | * Copyright (C) 1999,2000 Tigran Aivazian <[email protected]> | |
f433dc56 DV |
5 | * |
6 | * Make the file block allocation algorithm understand the size | |
7 | * of the underlying block device. | |
8 | * Copyright (C) 2007 Dmitri Vorobiev <[email protected]> | |
9 | * | |
1da177e4 LT |
10 | */ |
11 | ||
12 | #include <linux/fs.h> | |
13 | #include <linux/buffer_head.h> | |
1da177e4 LT |
14 | #include "bfs.h" |
15 | ||
16 | #undef DEBUG | |
17 | ||
18 | #ifdef DEBUG | |
19 | #define dprintf(x...) printf(x) | |
20 | #else | |
21 | #define dprintf(x...) | |
22 | #endif | |
23 | ||
4b6f5d20 | 24 | const struct file_operations bfs_file_operations = { |
1da177e4 | 25 | .llseek = generic_file_llseek, |
543ade1f BP |
26 | .read = do_sync_read, |
27 | .aio_read = generic_file_aio_read, | |
28 | .write = do_sync_write, | |
29 | .aio_write = generic_file_aio_write, | |
1da177e4 | 30 | .mmap = generic_file_mmap, |
5ffc4ef4 | 31 | .splice_read = generic_file_splice_read, |
1da177e4 LT |
32 | }; |
33 | ||
f433dc56 DV |
34 | static int bfs_move_block(unsigned long from, unsigned long to, |
35 | struct super_block *sb) | |
1da177e4 LT |
36 | { |
37 | struct buffer_head *bh, *new; | |
38 | ||
39 | bh = sb_bread(sb, from); | |
40 | if (!bh) | |
41 | return -EIO; | |
42 | new = sb_getblk(sb, to); | |
43 | memcpy(new->b_data, bh->b_data, bh->b_size); | |
44 | mark_buffer_dirty(new); | |
45 | bforget(bh); | |
46 | brelse(new); | |
47 | return 0; | |
48 | } | |
49 | ||
fac92bec | 50 | static int bfs_move_blocks(struct super_block *sb, unsigned long start, |
f433dc56 | 51 | unsigned long end, unsigned long where) |
1da177e4 LT |
52 | { |
53 | unsigned long i; | |
54 | ||
55 | dprintf("%08lx-%08lx->%08lx\n", start, end, where); | |
56 | for (i = start; i <= end; i++) | |
57 | if(bfs_move_block(i, where + i, sb)) { | |
f433dc56 DV |
58 | dprintf("failed to move block %08lx -> %08lx\n", i, |
59 | where + i); | |
1da177e4 LT |
60 | return -EIO; |
61 | } | |
62 | return 0; | |
63 | } | |
64 | ||
f433dc56 DV |
65 | static int bfs_get_block(struct inode *inode, sector_t block, |
66 | struct buffer_head *bh_result, int create) | |
1da177e4 | 67 | { |
fac92bec | 68 | unsigned long phys; |
1da177e4 LT |
69 | int err; |
70 | struct super_block *sb = inode->i_sb; | |
71 | struct bfs_sb_info *info = BFS_SB(sb); | |
72 | struct bfs_inode_info *bi = BFS_I(inode); | |
1da177e4 | 73 | |
1da177e4 LT |
74 | phys = bi->i_sblock + block; |
75 | if (!create) { | |
76 | if (phys <= bi->i_eblock) { | |
fac92bec AS |
77 | dprintf("c=%d, b=%08lx, phys=%09lx (granted)\n", |
78 | create, (unsigned long)block, phys); | |
1da177e4 LT |
79 | map_bh(bh_result, sb, phys); |
80 | } | |
81 | return 0; | |
82 | } | |
83 | ||
f433dc56 DV |
84 | /* |
85 | * If the file is not empty and the requested block is within the | |
86 | * range of blocks allocated for this file, we can grant it. | |
87 | */ | |
88 | if (bi->i_sblock && (phys <= bi->i_eblock)) { | |
1da177e4 | 89 | dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n", |
fac92bec | 90 | create, (unsigned long)block, phys); |
1da177e4 LT |
91 | map_bh(bh_result, sb, phys); |
92 | return 0; | |
93 | } | |
94 | ||
f433dc56 DV |
95 | /* The file will be extended, so let's see if there is enough space. */ |
96 | if (phys >= info->si_blocks) | |
97 | return -ENOSPC; | |
98 | ||
99 | /* The rest has to be protected against itself. */ | |
3f165e4c | 100 | mutex_lock(&info->bfs_lock); |
1da177e4 | 101 | |
f433dc56 DV |
102 | /* |
103 | * If the last data block for this file is the last allocated | |
104 | * block, we can extend the file trivially, without moving it | |
105 | * anywhere. | |
106 | */ | |
1da177e4 LT |
107 | if (bi->i_eblock == info->si_lf_eblk) { |
108 | dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n", | |
fac92bec | 109 | create, (unsigned long)block, phys); |
1da177e4 LT |
110 | map_bh(bh_result, sb, phys); |
111 | info->si_freeb -= phys - bi->i_eblock; | |
112 | info->si_lf_eblk = bi->i_eblock = phys; | |
113 | mark_inode_dirty(inode); | |
1da177e4 LT |
114 | err = 0; |
115 | goto out; | |
116 | } | |
117 | ||
f433dc56 | 118 | /* Ok, we have to move this entire file to the next free block. */ |
1da177e4 | 119 | phys = info->si_lf_eblk + 1; |
f433dc56 DV |
120 | if (phys + block >= info->si_blocks) { |
121 | err = -ENOSPC; | |
122 | goto out; | |
123 | } | |
124 | ||
125 | if (bi->i_sblock) { | |
1da177e4 | 126 | err = bfs_move_blocks(inode->i_sb, bi->i_sblock, |
f433dc56 | 127 | bi->i_eblock, phys); |
1da177e4 | 128 | if (err) { |
f433dc56 DV |
129 | dprintf("failed to move ino=%08lx -> fs corruption\n", |
130 | inode->i_ino); | |
1da177e4 LT |
131 | goto out; |
132 | } | |
133 | } else | |
134 | err = 0; | |
135 | ||
fac92bec AS |
136 | dprintf("c=%d, b=%08lx, phys=%08lx (moved)\n", |
137 | create, (unsigned long)block, phys); | |
1da177e4 LT |
138 | bi->i_sblock = phys; |
139 | phys += block; | |
140 | info->si_lf_eblk = bi->i_eblock = phys; | |
141 | ||
f433dc56 DV |
142 | /* |
143 | * This assumes nothing can write the inode back while we are here | |
144 | * and thus update inode->i_blocks! (XXX) | |
145 | */ | |
1da177e4 LT |
146 | info->si_freeb -= bi->i_eblock - bi->i_sblock + 1 - inode->i_blocks; |
147 | mark_inode_dirty(inode); | |
1da177e4 LT |
148 | map_bh(bh_result, sb, phys); |
149 | out: | |
3f165e4c | 150 | mutex_unlock(&info->bfs_lock); |
1da177e4 LT |
151 | return err; |
152 | } | |
153 | ||
154 | static int bfs_writepage(struct page *page, struct writeback_control *wbc) | |
155 | { | |
156 | return block_write_full_page(page, bfs_get_block, wbc); | |
157 | } | |
158 | ||
159 | static int bfs_readpage(struct file *file, struct page *page) | |
160 | { | |
161 | return block_read_full_page(page, bfs_get_block); | |
162 | } | |
163 | ||
41ddaeeb MS |
164 | static void bfs_write_failed(struct address_space *mapping, loff_t to) |
165 | { | |
166 | struct inode *inode = mapping->host; | |
167 | ||
168 | if (to > inode->i_size) | |
169 | truncate_pagecache(inode, to, inode->i_size); | |
170 | } | |
171 | ||
eedcbba5 NP |
172 | static int bfs_write_begin(struct file *file, struct address_space *mapping, |
173 | loff_t pos, unsigned len, unsigned flags, | |
174 | struct page **pagep, void **fsdata) | |
1da177e4 | 175 | { |
155130a4 CH |
176 | int ret; |
177 | ||
178 | ret = block_write_begin(mapping, pos, len, flags, pagep, | |
179 | bfs_get_block); | |
41ddaeeb MS |
180 | if (unlikely(ret)) |
181 | bfs_write_failed(mapping, pos + len); | |
155130a4 CH |
182 | |
183 | return ret; | |
1da177e4 LT |
184 | } |
185 | ||
186 | static sector_t bfs_bmap(struct address_space *mapping, sector_t block) | |
187 | { | |
188 | return generic_block_bmap(mapping, block, bfs_get_block); | |
189 | } | |
190 | ||
f5e54d6e | 191 | const struct address_space_operations bfs_aops = { |
1da177e4 LT |
192 | .readpage = bfs_readpage, |
193 | .writepage = bfs_writepage, | |
eedcbba5 NP |
194 | .write_begin = bfs_write_begin, |
195 | .write_end = generic_write_end, | |
1da177e4 LT |
196 | .bmap = bfs_bmap, |
197 | }; | |
198 | ||
754661f1 | 199 | const struct inode_operations bfs_file_inops; |