This source file includes following definitions.
- ext2_file_read
- ext2_file_write
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #include <asm/segment.h>
16 #include <asm/system.h>
17
18 #include <linux/sched.h>
19 #include <linux/ext2_fs.h>
20 #include <linux/kernel.h>
21 #include <linux/errno.h>
22 #include <linux/fcntl.h>
23 #include <linux/stat.h>
24 #include <linux/locks.h>
25
26 #define NBUF 16
27
28 #define MIN(a,b) (((a)<(b))?(a):(b))
29 #define MAX(a,b) (((a)>(b))?(a):(b))
30
31 #include <linux/fs.h>
32 #include <linux/ext2_fs.h>
33
34 int ext2_file_read (struct inode *, struct file *, char *, int);
35 static int ext2_file_write (struct inode *, struct file *, char *, int);
36
37
38
39
40
41 static struct file_operations ext2_file_operations = {
42 NULL,
43 ext2_file_read,
44 ext2_file_write,
45 NULL,
46 NULL,
47 ext2_ioctl,
48 NULL,
49 NULL,
50 NULL,
51 NULL
52 };
53
54 struct inode_operations ext2_file_inode_operations = {
55 &ext2_file_operations,
56 NULL,
57 NULL,
58 NULL,
59 NULL,
60 NULL,
61 NULL,
62 NULL,
63 NULL,
64 NULL,
65 NULL,
66 NULL,
67 ext2_bmap,
68 ext2_truncate,
69 ext2_permission
70 };
71
72 int ext2_file_read (struct inode * inode, struct file * filp,
73 char * buf, int count)
74 {
75 int read, left, chars;
76 int block, blocks, offset;
77 int bhrequest, uptodate;
78 struct buffer_head ** bhb, ** bhe;
79 struct buffer_head * bhreq[NBUF];
80 struct buffer_head * buflist[NBUF];
81 struct super_block * sb;
82 unsigned int size, err;
83
84 if (!inode) {
85 printk ("ext2_file_read: inode = NULL\n");
86 return -EINVAL;
87 }
88 sb = inode->i_sb;
89 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode)) {
90 printk ("ext2_file_read: mode = %07o\n", inode->i_mode);
91 return -EINVAL;
92 }
93 offset = filp->f_pos;
94 size = inode->i_size;
95 if (offset > size)
96 left = 0;
97 else
98 left = size - offset;
99 if (left > count)
100 left = count;
101 if (left <= 0)
102 return 0;
103 read = 0;
104 block = offset >> EXT2_BLOCK_SIZE_BITS(sb);
105 offset &= (sb->s_blocksize - 1);
106 size = (size + sb->s_blocksize - 1) >> EXT2_BLOCK_SIZE_BITS(sb);
107 blocks = (left + offset + sb->s_blocksize - 1) >> EXT2_BLOCK_SIZE_BITS(sb);
108 bhb = bhe = buflist;
109 if (filp->f_reada) {
110 blocks += read_ahead[MAJOR(inode->i_dev)] / (BLOCK_SIZE >> 9);
111 if (block + blocks > size)
112 blocks = size - block;
113 }
114
115
116
117
118
119
120
121
122
123
124
125 do {
126 bhrequest = 0;
127 uptodate = 1;
128 while (blocks) {
129 --blocks;
130 *bhb = ext2_getblk (inode, block++, 0, &err);
131 if (*bhb && !(*bhb)->b_uptodate) {
132 uptodate = 0;
133 bhreq[bhrequest++] = *bhb;
134 }
135
136 if (++bhb == &buflist[NBUF])
137 bhb = buflist;
138
139
140
141 if (uptodate)
142 break;
143
144 if (bhb == bhe)
145 break;
146 }
147
148
149 if (bhrequest)
150 ll_rw_block (READ, bhrequest, bhreq);
151
152 do {
153 if (*bhe) {
154 wait_on_buffer (*bhe);
155 if (!(*bhe)->b_uptodate) {
156 left = 0;
157 break;
158 }
159 }
160 if (left < sb->s_blocksize - offset)
161 chars = left;
162 else
163 chars = sb->s_blocksize - offset;
164 filp->f_pos += chars;
165 left -= chars;
166 read += chars;
167 if (*bhe) {
168 memcpy_tofs (buf, offset + (*bhe)->b_data,
169 chars);
170 brelse (*bhe);
171 buf += chars;
172 } else {
173 while (chars-- > 0)
174 put_fs_byte (0, buf++);
175 }
176 offset = 0;
177 if (++bhe == &buflist[NBUF])
178 bhe = buflist;
179 } while (left > 0 && bhe != bhb && (!*bhe || !(*bhe)->b_lock));
180 } while (left > 0);
181
182
183 while (bhe != bhb) {
184 brelse (*bhe);
185 if (++bhe == &buflist[NBUF])
186 bhe = buflist;
187 }
188 if (!read)
189 return -EIO;
190 filp->f_reada = 1;
191 if (!IS_RDONLY(inode)) {
192 inode->i_atime = CURRENT_TIME;
193 inode->i_dirt = 1;
194 }
195 return read;
196 }
197
198 static int ext2_file_write (struct inode * inode, struct file * filp,
199 char * buf, int count)
200 {
201 off_t pos;
202 int written, c;
203 struct buffer_head * bh;
204 char * p;
205 struct super_block * sb;
206 int err;
207
208 if (!inode) {
209 printk("ext2_file_write: inode = NULL\n");
210 return -EINVAL;
211 }
212 sb = inode->i_sb;
213 if (!S_ISREG(inode->i_mode)) {
214 printk ("ext2_file_write: mode = %07o\n", inode->i_mode);
215 return -EINVAL;
216 }
217
218
219
220
221 if (filp->f_flags & O_APPEND)
222 pos = inode->i_size;
223 else
224 pos = filp->f_pos;
225 written = 0;
226 while (written < count) {
227 bh = ext2_getblk (inode, pos / sb->s_blocksize, 1, &err);
228 if (!bh) {
229 #ifdef EXT2FS_DEBUG
230 printk ("ext2_file_write: ext2_getblk returned NULL\n");
231 #endif
232 if (!written)
233 written = err;
234 break;
235 }
236 c = sb->s_blocksize - (pos % sb->s_blocksize);
237 if (c > count-written)
238 c = count - written;
239 if (c != sb->s_blocksize && !bh->b_uptodate) {
240 ll_rw_block (READ, 1, &bh);
241 wait_on_buffer (bh);
242 if (!bh->b_uptodate) {
243 brelse (bh);
244 if (!written)
245 written = -EIO;
246 break;
247 }
248 }
249 p = (pos % sb->s_blocksize) + bh->b_data;
250 pos += c;
251 if (pos > inode->i_size) {
252 inode->i_size = pos;
253 inode->i_dirt = 1;
254 }
255 written += c;
256 memcpy_fromfs (p, buf, c);
257 buf += c;
258 bh->b_uptodate = 1;
259 bh->b_dirt = 1;
260 brelse (bh);
261 }
262 inode->i_mtime = CURRENT_TIME;
263 inode->i_ctime = CURRENT_TIME;
264 filp->f_pos = pos;
265 inode->i_dirt = 1;
266 return written;
267 }