Home | History | Annotate | Line # | Download | only in ext2fs
ext2fs_readwrite.c revision 1.10.4.2
      1  1.10.4.2      chs /*	$NetBSD: ext2fs_readwrite.c,v 1.10.4.2 1999/08/06 12:55:29 chs Exp $	*/
      2       1.1   bouyer 
      3       1.1   bouyer /*-
      4       1.1   bouyer  * Copyright (c) 1997 Manuel Bouyer.
      5       1.1   bouyer  * Copyright (c) 1993
      6       1.1   bouyer  *	The Regents of the University of California.  All rights reserved.
      7       1.1   bouyer  *
      8       1.1   bouyer  * Redistribution and use in source and binary forms, with or without
      9       1.1   bouyer  * modification, are permitted provided that the following conditions
     10       1.1   bouyer  * are met:
     11       1.1   bouyer  * 1. Redistributions of source code must retain the above copyright
     12       1.1   bouyer  *    notice, this list of conditions and the following disclaimer.
     13       1.1   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1   bouyer  *    notice, this list of conditions and the following disclaimer in the
     15       1.1   bouyer  *    documentation and/or other materials provided with the distribution.
     16       1.1   bouyer  * 3. All advertising materials mentioning features or use of this software
     17       1.1   bouyer  *    must display the following acknowledgement:
     18       1.1   bouyer  *	This product includes software developed by the University of
     19       1.1   bouyer  *	California, Berkeley and its contributors.
     20       1.1   bouyer  * 4. Neither the name of the University nor the names of its contributors
     21       1.1   bouyer  *    may be used to endorse or promote products derived from this software
     22       1.1   bouyer  *    without specific prior written permission.
     23       1.1   bouyer  *
     24       1.1   bouyer  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1   bouyer  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1   bouyer  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1   bouyer  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1   bouyer  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1   bouyer  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1   bouyer  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1   bouyer  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1   bouyer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1   bouyer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1   bouyer  * SUCH DAMAGE.
     35       1.1   bouyer  *
     36       1.1   bouyer  *	@(#)ufs_readwrite.c	8.8 (Berkeley) 8/4/94
     37       1.1   bouyer  * Modified for ext2fs by Manuel Bouyer.
     38       1.1   bouyer  */
     39       1.5      mrg 
     40  1.10.4.2      chs #include "opt_ddb.h"
     41  1.10.4.2      chs 
     42       1.1   bouyer #include <sys/param.h>
     43       1.1   bouyer #include <sys/systm.h>
     44       1.1   bouyer #include <sys/resourcevar.h>
     45       1.1   bouyer #include <sys/kernel.h>
     46       1.1   bouyer #include <sys/file.h>
     47       1.1   bouyer #include <sys/stat.h>
     48       1.1   bouyer #include <sys/buf.h>
     49       1.1   bouyer #include <sys/proc.h>
     50       1.1   bouyer #include <sys/conf.h>
     51       1.1   bouyer #include <sys/mount.h>
     52       1.1   bouyer #include <sys/vnode.h>
     53       1.1   bouyer #include <sys/malloc.h>
     54       1.1   bouyer #include <sys/signalvar.h>
     55       1.1   bouyer 
     56       1.1   bouyer #include <vm/vm.h>
     57      1.10      mrg 
     58       1.4      mrg #include <uvm/uvm_extern.h>
     59       1.1   bouyer 
     60       1.1   bouyer #include <ufs/ufs/quota.h>
     61       1.1   bouyer #include <ufs/ufs/inode.h>
     62       1.1   bouyer #include <ufs/ext2fs/ext2fs.h>
     63       1.1   bouyer #include <ufs/ext2fs/ext2fs_extern.h>
     64       1.1   bouyer 
     65       1.1   bouyer 
     66       1.1   bouyer #define doclusterread 0 /* XXX underway */
     67       1.1   bouyer #define doclusterwrite 0
     68       1.1   bouyer 
     69       1.1   bouyer /*
     70       1.1   bouyer  * Vnode op for reading.
     71       1.1   bouyer  */
     72       1.1   bouyer /* ARGSUSED */
     73       1.1   bouyer int
     74       1.1   bouyer ext2fs_read(v)
     75       1.1   bouyer 	void *v;
     76       1.1   bouyer {
     77       1.1   bouyer 	struct vop_read_args /* {
     78       1.1   bouyer 		struct vnode *a_vp;
     79       1.1   bouyer 		struct uio *a_uio;
     80       1.1   bouyer 		int a_ioflag;
     81       1.1   bouyer 		struct ucred *a_cred;
     82       1.1   bouyer 	} */ *ap = v;
     83       1.1   bouyer 	register struct vnode *vp;
     84       1.1   bouyer 	register struct inode *ip;
     85       1.1   bouyer 	register struct uio *uio;
     86       1.1   bouyer 	register struct m_ext2fs *fs;
     87       1.1   bouyer 	struct buf *bp;
     88       1.6     fvdl 	ufs_daddr_t lbn, nextlbn;
     89       1.1   bouyer 	off_t bytesinfile;
     90       1.1   bouyer 	long size, xfersize, blkoffset;
     91       1.1   bouyer 	int error;
     92       1.1   bouyer 
     93       1.1   bouyer 	vp = ap->a_vp;
     94       1.1   bouyer 	ip = VTOI(vp);
     95       1.1   bouyer 	uio = ap->a_uio;
     96       1.1   bouyer 
     97       1.1   bouyer #ifdef DIAGNOSTIC
     98       1.1   bouyer 	if (uio->uio_rw != UIO_READ)
     99       1.1   bouyer 		panic("%s: mode", "ext2fs_read");
    100       1.1   bouyer 
    101       1.1   bouyer 	if (vp->v_type == VLNK) {
    102       1.1   bouyer 		if ((int)ip->i_e2fs_size < vp->v_mount->mnt_maxsymlinklen ||
    103       1.1   bouyer 			(vp->v_mount->mnt_maxsymlinklen == 0 &&
    104       1.1   bouyer 			 ip->i_e2fs_nblock == 0))
    105       1.1   bouyer 			panic("%s: short symlink", "ext2fs_read");
    106       1.1   bouyer 	} else if (vp->v_type != VREG && vp->v_type != VDIR)
    107       1.1   bouyer 		panic("%s: type %d", "ext2fs_read", vp->v_type);
    108       1.1   bouyer #endif
    109       1.1   bouyer 	fs = ip->i_e2fs;
    110       1.1   bouyer 	if ((u_int64_t)uio->uio_offset >
    111       1.1   bouyer 		((u_int64_t)0x80000000 * fs->e2fs_bsize - 1))
    112       1.1   bouyer 		return (EFBIG);
    113       1.1   bouyer 	if (uio->uio_resid == 0)
    114       1.1   bouyer 		return (0);
    115       1.1   bouyer 
    116  1.10.4.2      chs 	if (vp->v_type == VREG) {
    117  1.10.4.2      chs 		error = 0;
    118  1.10.4.2      chs 		while (uio->uio_resid > 0) {
    119  1.10.4.2      chs 			void *win;
    120  1.10.4.2      chs 			vsize_t bytelen = min(ip->i_e2fs_size - uio->uio_offset,
    121  1.10.4.2      chs 					      uio->uio_resid);
    122  1.10.4.2      chs 
    123  1.10.4.2      chs 			if (bytelen == 0) {
    124  1.10.4.2      chs 				break;
    125  1.10.4.2      chs 			}
    126  1.10.4.2      chs 			win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset,
    127  1.10.4.2      chs 					&bytelen, UBC_READ);
    128  1.10.4.2      chs #ifdef DIAGNOSTIC
    129  1.10.4.2      chs 			if (win == NULL)
    130  1.10.4.2      chs 				panic("ext2fs_read: ubc_alloc -> NULL");
    131  1.10.4.2      chs #endif
    132  1.10.4.2      chs 			error = uiomove(win, bytelen, uio);
    133  1.10.4.2      chs if (error) Debugger();
    134  1.10.4.2      chs 			ubc_release(win, 0);
    135  1.10.4.2      chs 			if (error) {
    136  1.10.4.2      chs 				break;
    137  1.10.4.2      chs 			}
    138  1.10.4.2      chs 		}
    139  1.10.4.2      chs 		goto out;
    140  1.10.4.2      chs 	}
    141  1.10.4.2      chs 
    142       1.1   bouyer 	for (error = 0, bp = NULL; uio->uio_resid > 0; bp = NULL) {
    143       1.1   bouyer 		if ((bytesinfile = ip->i_e2fs_size - uio->uio_offset) <= 0)
    144       1.1   bouyer 			break;
    145       1.1   bouyer 		lbn = lblkno(fs, uio->uio_offset);
    146       1.1   bouyer 		nextlbn = lbn + 1;
    147       1.1   bouyer 		size = fs->e2fs_bsize;
    148       1.1   bouyer 		blkoffset = blkoff(fs, uio->uio_offset);
    149       1.1   bouyer 		xfersize = fs->e2fs_bsize - blkoffset;
    150       1.1   bouyer 		if (uio->uio_resid < xfersize)
    151       1.1   bouyer 			xfersize = uio->uio_resid;
    152       1.1   bouyer 		if (bytesinfile < xfersize)
    153       1.1   bouyer 			xfersize = bytesinfile;
    154       1.1   bouyer 
    155       1.1   bouyer 		if (lblktosize(fs, nextlbn) >= ip->i_e2fs_size)
    156       1.1   bouyer 			error = bread(vp, lbn, size, NOCRED, &bp);
    157       1.1   bouyer 		else if (doclusterread)
    158       1.1   bouyer 			error = cluster_read(vp,
    159       1.1   bouyer 				ip->i_e2fs_size, lbn, size, NOCRED, &bp);
    160       1.1   bouyer 		else if (lbn - 1 == vp->v_lastr) {
    161       1.1   bouyer 			int nextsize = fs->e2fs_bsize;
    162       1.1   bouyer 			error = breadn(vp, lbn,
    163       1.1   bouyer 				size, &nextlbn, &nextsize, 1, NOCRED, &bp);
    164       1.1   bouyer 		} else
    165       1.1   bouyer 			error = bread(vp, lbn, size, NOCRED, &bp);
    166       1.1   bouyer 		if (error)
    167       1.1   bouyer 			break;
    168       1.1   bouyer 		vp->v_lastr = lbn;
    169       1.1   bouyer 
    170       1.1   bouyer 		/*
    171       1.1   bouyer 		 * We should only get non-zero b_resid when an I/O error
    172       1.1   bouyer 		 * has occurred, which should cause us to break above.
    173       1.1   bouyer 		 * However, if the short read did not cause an error,
    174       1.1   bouyer 		 * then we want to ensure that we do not uiomove bad
    175       1.1   bouyer 		 * or uninitialized data.
    176       1.1   bouyer 		 */
    177       1.1   bouyer 		size -= bp->b_resid;
    178       1.1   bouyer 		if (size < xfersize) {
    179       1.1   bouyer 			if (size == 0)
    180       1.1   bouyer 				break;
    181       1.1   bouyer 			xfersize = size;
    182       1.1   bouyer 		}
    183       1.1   bouyer 		error = uiomove((char *)bp->b_data + blkoffset, (int)xfersize,
    184       1.1   bouyer 				uio);
    185       1.1   bouyer 		if (error)
    186       1.1   bouyer 			break;
    187       1.1   bouyer 		brelse(bp);
    188       1.1   bouyer 	}
    189       1.1   bouyer 	if (bp != NULL)
    190       1.1   bouyer 		brelse(bp);
    191  1.10.4.2      chs 
    192  1.10.4.2      chs out:
    193       1.7   kleink 	if (!(vp->v_mount->mnt_flag & MNT_NOATIME)) {
    194       1.1   bouyer 		ip->i_flag |= IN_ACCESS;
    195       1.9  mycroft 		if ((ap->a_ioflag & IO_SYNC) == IO_SYNC)
    196       1.9  mycroft 			error = VOP_UPDATE(vp, NULL, NULL, 1);
    197       1.7   kleink 	}
    198       1.1   bouyer 	return (error);
    199       1.1   bouyer }
    200       1.1   bouyer 
    201       1.1   bouyer /*
    202       1.1   bouyer  * Vnode op for writing.
    203       1.1   bouyer  */
    204       1.1   bouyer int
    205       1.1   bouyer ext2fs_write(v)
    206       1.1   bouyer 	void *v;
    207       1.1   bouyer {
    208       1.1   bouyer 	struct vop_write_args /* {
    209       1.1   bouyer 		struct vnode *a_vp;
    210       1.1   bouyer 		struct uio *a_uio;
    211       1.1   bouyer 		int a_ioflag;
    212       1.1   bouyer 		struct ucred *a_cred;
    213       1.1   bouyer 	} */ *ap = v;
    214       1.1   bouyer 	register struct vnode *vp;
    215       1.1   bouyer 	register struct uio *uio;
    216       1.1   bouyer 	register struct inode *ip;
    217       1.1   bouyer 	register struct m_ext2fs *fs;
    218       1.1   bouyer 	struct buf *bp;
    219       1.1   bouyer 	struct proc *p;
    220       1.6     fvdl 	ufs_daddr_t lbn;
    221       1.1   bouyer 	off_t osize;
    222       1.1   bouyer 	int blkoffset, error, flags, ioflag, resid, size, xfersize;
    223  1.10.4.2      chs 	vsize_t bytelen;
    224  1.10.4.2      chs 	void *win;
    225       1.1   bouyer 
    226       1.1   bouyer 	ioflag = ap->a_ioflag;
    227       1.1   bouyer 	uio = ap->a_uio;
    228       1.1   bouyer 	vp = ap->a_vp;
    229       1.1   bouyer 	ip = VTOI(vp);
    230       1.1   bouyer 
    231       1.1   bouyer #ifdef DIAGNOSTIC
    232       1.1   bouyer 	if (uio->uio_rw != UIO_WRITE)
    233       1.1   bouyer 		panic("%s: mode", "ext2fs_write");
    234       1.1   bouyer #endif
    235       1.1   bouyer 
    236       1.1   bouyer 	switch (vp->v_type) {
    237       1.1   bouyer 	case VREG:
    238       1.1   bouyer 		if (ioflag & IO_APPEND)
    239       1.1   bouyer 			uio->uio_offset = ip->i_e2fs_size;
    240       1.1   bouyer 		if ((ip->i_e2fs_flags & EXT2_APPEND) &&
    241       1.1   bouyer 			uio->uio_offset != ip->i_e2fs_size)
    242       1.1   bouyer 			return (EPERM);
    243       1.1   bouyer 		/* FALLTHROUGH */
    244       1.1   bouyer 	case VLNK:
    245       1.1   bouyer 		break;
    246       1.1   bouyer 	case VDIR:
    247       1.1   bouyer 		if ((ioflag & IO_SYNC) == 0)
    248       1.1   bouyer 			panic("%s: nonsync dir write", "ext2fs_write");
    249       1.1   bouyer 		break;
    250       1.1   bouyer 	default:
    251       1.1   bouyer 		panic("%s: type", "ext2fs_write");
    252       1.1   bouyer 	}
    253       1.1   bouyer 
    254       1.1   bouyer 	fs = ip->i_e2fs;
    255       1.1   bouyer 	if (uio->uio_offset < 0 ||
    256       1.1   bouyer 		(u_int64_t)uio->uio_offset + uio->uio_resid >
    257       1.1   bouyer 		((u_int64_t)0x80000000 * fs->e2fs_bsize - 1))
    258       1.1   bouyer 		return (EFBIG);
    259       1.1   bouyer 	/*
    260       1.1   bouyer 	 * Maybe this should be above the vnode op call, but so long as
    261       1.1   bouyer 	 * file servers have no limits, I don't think it matters.
    262       1.1   bouyer 	 */
    263       1.1   bouyer 	p = uio->uio_procp;
    264       1.1   bouyer 	if (vp->v_type == VREG && p &&
    265       1.1   bouyer 		uio->uio_offset + uio->uio_resid >
    266       1.1   bouyer 		p->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
    267       1.1   bouyer 		psignal(p, SIGXFSZ);
    268       1.1   bouyer 		return (EFBIG);
    269       1.1   bouyer 	}
    270       1.1   bouyer 
    271       1.1   bouyer 	resid = uio->uio_resid;
    272       1.1   bouyer 	osize = ip->i_e2fs_size;
    273       1.1   bouyer 	flags = ioflag & IO_SYNC ? B_SYNC : 0;
    274       1.1   bouyer 
    275  1.10.4.2      chs 	if (vp->v_type == VREG) {
    276  1.10.4.2      chs 
    277  1.10.4.2      chs 		/*
    278  1.10.4.2      chs 		 * make sure the range of file offsets to be written
    279  1.10.4.2      chs 		 * is fully allocated.  updating of ip->i_e2fs_size
    280  1.10.4.2      chs 		 * is handled by ext2fs_balloc_range().
    281  1.10.4.2      chs 		 */
    282  1.10.4.2      chs 
    283  1.10.4.2      chs 		if ((error = ext2fs_balloc_range(vp, uio->uio_offset,
    284  1.10.4.2      chs 						 uio->uio_resid, ap->a_cred,
    285  1.10.4.2      chs 						 0))) {
    286  1.10.4.2      chs /* XXX handle partial failures */
    287  1.10.4.2      chs 			return error;
    288  1.10.4.2      chs 		}
    289  1.10.4.2      chs 		while (uio->uio_resid > 0) {
    290  1.10.4.2      chs 			bytelen = uio->uio_resid;
    291  1.10.4.2      chs /* XXX if file is mapped and this is the last block, limit len to a page */
    292  1.10.4.2      chs 
    293  1.10.4.2      chs 			win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset,
    294  1.10.4.2      chs 					&bytelen, UBC_WRITE);
    295  1.10.4.2      chs #ifdef DIAGNOSTIC
    296  1.10.4.2      chs 			if (win == NULL) {
    297  1.10.4.2      chs 				panic("ext2fs_write: ubc_alloc -> NULL");
    298  1.10.4.2      chs 			}
    299  1.10.4.2      chs #endif
    300  1.10.4.2      chs 			error = uiomove(win, bytelen, uio);
    301  1.10.4.2      chs 			ubc_release(win, 0);
    302  1.10.4.2      chs 			if (error) {
    303  1.10.4.2      chs 				/*
    304  1.10.4.2      chs 				 * XXX zero out any part of the current window
    305  1.10.4.2      chs 				 * that we might have failed to copyin.
    306  1.10.4.2      chs 				 */
    307  1.10.4.2      chs 				break;
    308  1.10.4.2      chs 			}
    309  1.10.4.2      chs 		}
    310  1.10.4.2      chs 		goto out;
    311  1.10.4.2      chs 	}
    312  1.10.4.2      chs 
    313       1.1   bouyer 	for (error = 0; uio->uio_resid > 0;) {
    314       1.1   bouyer 		lbn = lblkno(fs, uio->uio_offset);
    315       1.1   bouyer 		blkoffset = blkoff(fs, uio->uio_offset);
    316       1.1   bouyer 		xfersize = fs->e2fs_bsize - blkoffset;
    317       1.1   bouyer 		if (uio->uio_resid < xfersize)
    318       1.1   bouyer 			xfersize = uio->uio_resid;
    319       1.1   bouyer 		if (fs->e2fs_bsize > xfersize)
    320       1.1   bouyer 			flags |= B_CLRBUF;
    321       1.1   bouyer 		else
    322       1.1   bouyer 			flags &= ~B_CLRBUF;
    323       1.1   bouyer 
    324  1.10.4.2      chs 		error = ext2fs_balloc1(ip, lbn, blkoffset + xfersize,
    325  1.10.4.2      chs 				       ap->a_cred, &bp, flags);
    326       1.1   bouyer 		if (error)
    327       1.1   bouyer 			break;
    328       1.1   bouyer 		if (uio->uio_offset + xfersize > ip->i_e2fs_size) {
    329       1.1   bouyer 			ip->i_e2fs_size = uio->uio_offset + xfersize;
    330       1.4      mrg 			uvm_vnp_setsize(vp, ip->i_e2fs_size);
    331       1.1   bouyer 		}
    332       1.1   bouyer 
    333       1.1   bouyer 		size = fs->e2fs_bsize - bp->b_resid;
    334       1.1   bouyer 		if (size < xfersize)
    335       1.1   bouyer 			xfersize = size;
    336       1.1   bouyer 
    337       1.1   bouyer 		error =
    338  1.10.4.2      chs 			uiomove((char *)bp->b_data + blkoffset, xfersize, uio);
    339       1.1   bouyer 		if (ioflag & IO_SYNC)
    340       1.1   bouyer 			(void)bwrite(bp);
    341       1.1   bouyer 		else if (xfersize + blkoffset == fs->e2fs_bsize)
    342       1.1   bouyer 			if (doclusterwrite)
    343       1.1   bouyer 				cluster_write(bp, ip->i_e2fs_size);
    344       1.1   bouyer 			else
    345       1.1   bouyer 				bawrite(bp);
    346       1.1   bouyer 		else
    347       1.1   bouyer 			bdwrite(bp);
    348       1.1   bouyer 		if (error || xfersize == 0)
    349       1.1   bouyer 			break;
    350       1.1   bouyer 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    351       1.1   bouyer 	}
    352  1.10.4.2      chs 
    353       1.1   bouyer 	/*
    354       1.1   bouyer 	 * If we successfully wrote any data, and we are not the superuser
    355       1.1   bouyer 	 * we clear the setuid and setgid bits as a precaution against
    356       1.1   bouyer 	 * tampering.
    357       1.1   bouyer 	 */
    358  1.10.4.2      chs 
    359  1.10.4.2      chs out:
    360       1.1   bouyer 	if (resid > uio->uio_resid && ap->a_cred && ap->a_cred->cr_uid != 0)
    361       1.1   bouyer 		ip->i_e2fs_mode &= ~(ISUID | ISGID);
    362       1.1   bouyer 	if (error) {
    363       1.1   bouyer 		if (ioflag & IO_UNIT) {
    364       1.1   bouyer 			(void)VOP_TRUNCATE(vp, osize,
    365       1.1   bouyer 				ioflag & IO_SYNC, ap->a_cred, uio->uio_procp);
    366       1.1   bouyer 			uio->uio_offset -= resid - uio->uio_resid;
    367       1.1   bouyer 			uio->uio_resid = resid;
    368       1.1   bouyer 		}
    369       1.9  mycroft 	} else if (resid > uio->uio_resid && (ioflag & IO_SYNC) == IO_SYNC)
    370       1.9  mycroft 		error = VOP_UPDATE(vp, NULL, NULL, 1);
    371       1.1   bouyer 	return (error);
    372       1.1   bouyer }
    373