d31754d80dec359af65b7c674524cabb586489b2
[dragonfly.git] / sys / vfs / gnu / ext2fs / ext2_readwrite.c
1 /*
2  *  modified for Lites 1.1
3  *
4  *  Aug 1995, Godmar Back (gback@cs.utah.edu)
5  *  University of Utah, Department of Computer Science
6  */
7 /*
8  * Copyright (c) 1993
9  *      The Regents of the University of California.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *      @(#)ufs_readwrite.c     8.7 (Berkeley) 1/21/94
40  * $FreeBSD: src/sys/gnu/ext2fs/ext2_readwrite.c,v 1.18.2.2 2000/12/22 18:44:33 dillon Exp $
41  * $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_readwrite.c,v 1.15 2008/06/19 23:27:39 dillon Exp $
42  */
43
44 #define BLKSIZE(a, b, c)        blksize(a, b, c)
45 #define FS                      struct ext2_sb_info
46 #define I_FS                    i_e2fs
47
48 /*
49  * Vnode op for reading.
50  *
51  * ext2_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
52  *           struct ucred *a_cred)
53  */
54 /* ARGSUSED */
55 static int
56 ext2_read(struct vop_read_args *ap)
57 {
58         struct vnode *vp;
59         struct inode *ip;
60         struct uio *uio;
61         FS *fs;
62         struct buf *bp;
63         daddr_t lbn, nextlbn;
64         off_t nextloffset;
65         off_t bytesinfile;
66         long size, xfersize, blkoffset;
67         int error, orig_resid;
68         int seqcount = ap->a_ioflag >> 16;
69         u_short mode;
70
71         vp = ap->a_vp;
72         ip = VTOI(vp);
73         mode = ip->i_mode;
74         uio = ap->a_uio;
75
76 #ifdef DIAGNOSTIC
77         if (uio->uio_rw != UIO_READ)
78                 panic("ext2_read: mode");
79
80         if (vp->v_type == VLNK) {
81                 if ((int)ip->i_size < vp->v_mount->mnt_maxsymlinklen)
82                         panic("ext2_read: short symlink");
83         } else if (vp->v_type != VREG && vp->v_type != VDIR)
84                 panic("ext2_read: type %d", vp->v_type);
85 #endif
86         fs = ip->I_FS;
87 #if 0
88         if ((u_quad_t)uio->uio_offset > fs->fs_maxfilesize)
89                 return (EFBIG);
90 #endif
91
92         orig_resid = uio->uio_resid;
93         for (error = 0, bp = NULL; uio->uio_resid > 0; bp = NULL) {
94                 if ((bytesinfile = ip->i_size - uio->uio_offset) <= 0)
95                         break;
96                 lbn = lblkno(fs, uio->uio_offset);
97                 nextlbn = lbn + 1;
98                 nextloffset = lblktodoff(fs, nextlbn);
99                 size = BLKSIZE(fs, ip, lbn);
100                 blkoffset = blkoff(fs, uio->uio_offset);
101
102                 xfersize = fs->s_frag_size - blkoffset;
103                 if (uio->uio_resid < xfersize)
104                         xfersize = uio->uio_resid;
105                 if (bytesinfile < xfersize)
106                         xfersize = bytesinfile;
107
108                 if (nextloffset >= ip->i_size) {
109                         error = bread(vp, lblktodoff(fs, lbn), size, &bp);
110                 } else if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) {
111                         error = cluster_read(vp, (off_t)ip->i_size,
112                                              lblktodoff(fs, lbn), size, 
113                                              uio->uio_resid, 
114                                              (ap->a_ioflag >> 16) * BKVASIZE,
115                                              &bp);
116                 } else if (seqcount > 1) {
117                         int nextsize = BLKSIZE(fs, ip, nextlbn);
118                         error = breadn(vp, lblktodoff(fs, lbn),
119                                         size, &nextloffset, &nextsize, 1, &bp);
120                 } else {
121                         error = bread(vp, lblktodoff(fs, lbn), size, &bp);
122                 }
123                 if (error) {
124                         brelse(bp);
125                         bp = NULL;
126                         break;
127                 }
128
129                 /*
130                  * We should only get non-zero b_resid when an I/O error
131                  * has occurred, which should cause us to break above.
132                  * However, if the short read did not cause an error,
133                  * then we want to ensure that we do not uiomove bad
134                  * or uninitialized data.
135                  */
136                 size -= bp->b_resid;
137                 if (size < xfersize) {
138                         if (size == 0)
139                                 break;
140                         xfersize = size;
141                 }
142                 error = uiomove((char *)bp->b_data + blkoffset,
143                                 (int)xfersize, uio);
144                 if (error)
145                         break;
146
147                 bqrelse(bp);
148         }
149         if (bp != NULL)
150                 bqrelse(bp);
151         if (orig_resid > 0 && (error == 0 || uio->uio_resid != orig_resid) &&
152             (vp->v_mount->mnt_flag & MNT_NOATIME) == 0)
153                 ip->i_flag |= IN_ACCESS;
154         return (error);
155 }
156
157 /*
158  * Vnode op for writing.
159  *
160  * ext2_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
161  *            struct ucred *a_cred)
162  */
163 static int
164 ext2_write(struct vop_write_args *ap)
165 {
166         struct vnode *vp;
167         struct uio *uio;
168         struct inode *ip;
169         FS *fs;
170         struct buf *bp;
171         struct thread *td;
172         daddr_t lbn;
173         off_t osize;
174         int seqcount;
175         int blkoffset, error, flags, ioflag, resid, size, xfersize;
176
177         ioflag = ap->a_ioflag;
178         seqcount = ap->a_ioflag >> 16;
179         uio = ap->a_uio;
180         vp = ap->a_vp;
181         ip = VTOI(vp);
182
183 #ifdef DIAGNOSTIC
184         if (uio->uio_rw != UIO_WRITE)
185                 panic("ext2_write: mode");
186 #endif
187
188         switch (vp->v_type) {
189         case VREG:
190                 if (ioflag & IO_APPEND)
191                         uio->uio_offset = ip->i_size;
192                 if ((ip->i_flags & APPEND) && uio->uio_offset != ip->i_size)
193                         return (EPERM);
194                 /* FALLTHROUGH */
195         case VLNK:
196                 break;
197         case VDIR:
198                 if ((ioflag & IO_SYNC) == 0)
199                         panic("ext2_write: nonsync dir write");
200                 break;
201         default:
202                 panic("ext2_write: type");
203         }
204
205         fs = ip->I_FS;
206 #if 0
207         if (uio->uio_offset < 0 ||
208             (u_quad_t)uio->uio_offset + uio->uio_resid > fs->fs_maxfilesize)
209                 return (EFBIG);
210 #endif
211         /*
212          * Maybe this should be above the vnode op call, but so long as
213          * file servers have no limits, I don't think it matters.
214          */
215         td = uio->uio_td;
216         if (vp->v_type == VREG && td && td->td_proc &&
217             uio->uio_offset + uio->uio_resid >
218             td->td_proc->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
219                 lwpsignal(td->td_proc, td->td_lwp, SIGXFSZ);
220                 return (EFBIG);
221         }
222
223         resid = uio->uio_resid;
224         osize = ip->i_size;
225         flags = ioflag & IO_SYNC ? B_SYNC : 0;
226
227         for (error = 0; uio->uio_resid > 0;) {
228                 lbn = lblkno(fs, uio->uio_offset);
229                 blkoffset = blkoff(fs, uio->uio_offset);
230                 xfersize = fs->s_frag_size - blkoffset;
231                 if (uio->uio_resid < xfersize)
232                         xfersize = uio->uio_resid;
233
234                 if (uio->uio_offset + xfersize > ip->i_size)
235                         vnode_pager_setsize(vp, uio->uio_offset + xfersize);
236
237                 /*  
238                  * Avoid a data-consistency race between write() and mmap()
239                  * by ensuring that newly allocated blocks are zerod.  The
240                  * race can occur even in the case where the write covers
241                  * the entire block.
242                  *
243                  * Just set B_CLRBUF unconditionally, even if the write
244                  * covers the whole block.  This also handles the UIO_NOCOPY
245                  * case.  See ffs_write() in ufs for a more sophisticated
246                  * version.
247                  */
248                 flags |= B_CLRBUF;
249                 error = ext2_balloc(ip, lbn, blkoffset + xfersize,
250                                     ap->a_cred, &bp, flags);
251                 if (error)
252                         break;
253
254                 if (uio->uio_offset + xfersize > ip->i_size) {
255                         ip->i_size = uio->uio_offset + xfersize;
256                 }
257
258                 size = BLKSIZE(fs, ip, lbn) - bp->b_resid;
259                 if (size < xfersize)
260                         xfersize = size;
261
262                 error = uiomove((char *)bp->b_data + blkoffset,
263                                 (int)xfersize, uio);
264                 if ((ioflag & IO_VMIO) &&
265                     LIST_FIRST(&bp->b_dep) == NULL) /* in ext2fs? */
266                         bp->b_flags |= B_RELBUF;
267
268                 if (ioflag & IO_SYNC) {
269                         bwrite(bp);
270                 } else if (xfersize + blkoffset == fs->s_frag_size) {
271                         if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERW) == 0) {
272                                 bp->b_flags |= B_CLUSTEROK;
273                                 cluster_write(bp, (off_t)ip->i_size, vp->v_mount->mnt_stat.f_iosize, seqcount);
274                         } else {
275                                 bawrite(bp);
276                         }
277                 } else {
278                         bp->b_flags |= B_CLUSTEROK;
279                         bdwrite(bp);
280                 }
281                 if (error || xfersize == 0)
282                         break;
283                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
284         }
285         /*
286          * If we successfully wrote any data, and we are not the superuser
287          * we clear the setuid and setgid bits as a precaution against
288          * tampering.
289          */
290         if (resid > uio->uio_resid && ap->a_cred && ap->a_cred->cr_uid != 0)
291                 ip->i_mode &= ~(ISUID | ISGID);
292         if (error) {
293                 if (ioflag & IO_UNIT) {
294                         EXT2_TRUNCATE(vp, osize, ioflag & IO_SYNC, ap->a_cred);
295                         uio->uio_offset -= resid - uio->uio_resid;
296                         uio->uio_resid = resid;
297                 }
298         } else if (resid > uio->uio_resid && (ioflag & IO_SYNC))
299                 error = EXT2_UPDATE(vp, 1);
300         return (error);
301 }