Home | History | Annotate | Line # | Download | only in sysvbfs
sysvbfs_vnops.c revision 1.5.4.1
      1 /*	$NetBSD: sysvbfs_vnops.c,v 1.5.4.1 2007/01/12 01:04:05 ad Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2004 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by UCHIYAMA Yasushi.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include <sys/cdefs.h>
     40 __KERNEL_RCSID(0, "$NetBSD: sysvbfs_vnops.c,v 1.5.4.1 2007/01/12 01:04:05 ad Exp $");
     41 
     42 #include <sys/param.h>
     43 #include <sys/kernel.h>
     44 #include <sys/resource.h>
     45 #include <sys/vnode.h>
     46 #include <sys/namei.h>
     47 #include <sys/vnode.h>
     48 #include <sys/dirent.h>
     49 #include <sys/malloc.h>
     50 #include <sys/lockf.h>
     51 #include <sys/unistd.h>
     52 #include <sys/fcntl.h>
     53 #include <sys/kauth.h>
     54 
     55 #include <fs/sysvbfs/sysvbfs.h>
     56 #include <fs/sysvbfs/bfs.h>
     57 
     58 #ifdef SYSVBFS_VNOPS_DEBUG
     59 #define	DPRINTF(fmt, args...)	printf(fmt, ##args)
     60 #else
     61 #define	DPRINTF(arg...)		((void)0)
     62 #endif
     63 #define	ROUND_SECTOR(x)		(((x) + 511) & ~511)
     64 
     65 MALLOC_DEFINE(M_SYSVBFS_VNODE, "sysvbfs vnode", "sysvbfs vnode structures");
     66 
     67 int
     68 sysvbfs_lookup(void *arg)
     69 {
     70 	struct vop_lookup_args /* {
     71 		struct vnode *a_dvp;
     72 		struct vnode **a_vpp;
     73 		struct componentname *a_cnp;
     74 	} */ *a = arg;
     75 	struct vnode *v = a->a_dvp;
     76 	struct sysvbfs_node *bnode = v->v_data;
     77 	struct bfs *bfs = bnode->bmp->bfs;	/* my filesystem */
     78 	struct vnode *vpp = NULL;
     79 	struct bfs_dirent *dirent = NULL;
     80 	struct componentname *cnp = a->a_cnp;
     81 	int nameiop = cnp->cn_nameiop;
     82 	const char *name = cnp->cn_nameptr;
     83 	int namelen = cnp->cn_namelen;
     84 	int error;
     85 	boolean_t islastcn = cnp->cn_flags & ISLASTCN;
     86 
     87 	DPRINTF("%s: %s op=%d %ld\n", __FUNCTION__, name, nameiop,
     88 	    cnp->cn_flags);
     89 
     90 	KASSERT((cnp->cn_flags & ISDOTDOT) == 0);
     91 	if ((error = VOP_ACCESS(a->a_dvp, VEXEC, cnp->cn_cred,
     92 	    cnp->cn_lwp)) != 0) {
     93 		return error;	/* directory permittion. */
     94 	}
     95 
     96 
     97 	if (namelen == 1 && name[0] == '.') {	/* "." */
     98 		VREF(v);
     99 		*a->a_vpp = v;
    100 	} else {				/* Regular file */
    101 		if (!bfs_dirent_lookup_by_name(bfs, cnp->cn_nameptr,
    102 		    &dirent)) {
    103 			if (nameiop != CREATE && nameiop != RENAME) {
    104 				DPRINTF("%s: no such a file. (1)\n",
    105 				    __FUNCTION__);
    106 				return ENOENT;
    107 			}
    108 			if ((error = VOP_ACCESS(v, VWRITE, cnp->cn_cred,
    109 			    cnp->cn_lwp)) != 0)
    110 				return error;
    111 			cnp->cn_flags |= SAVENAME;
    112 			return EJUSTRETURN;
    113 		}
    114 
    115 		/* Allocate v-node */
    116 		if ((error = sysvbfs_vget(v->v_mount, dirent->inode, &vpp)) != 0) {
    117 			DPRINTF("%s: can't get vnode.\n", __FUNCTION__);
    118 			return error;
    119 		}
    120 		*a->a_vpp = vpp;
    121 	}
    122 
    123 	if (cnp->cn_nameiop != LOOKUP && islastcn)
    124 		cnp->cn_flags |= SAVENAME;
    125 
    126 	return 0;
    127 }
    128 
    129 int
    130 sysvbfs_create(void *arg)
    131 {
    132 	struct vop_create_args /* {
    133 		struct vnode *a_dvp;
    134 		struct vnode **a_vpp;
    135 		struct componentname *a_cnp;
    136 		struct vattr *a_vap;
    137 	} */ *a = arg;
    138 	struct sysvbfs_node *bnode = a->a_dvp->v_data;
    139 	struct sysvbfs_mount *bmp = bnode->bmp;
    140 	struct bfs *bfs = bmp->bfs;
    141 	struct mount *mp = bmp->mountp;
    142 	struct bfs_dirent *dirent;
    143 	struct bfs_fileattr attr;
    144 	struct vattr *va = a->a_vap;
    145 	kauth_cred_t cr = a->a_cnp->cn_cred;
    146 	int err = 0;
    147 
    148 	DPRINTF("%s: %s\n", __FUNCTION__, a->a_cnp->cn_nameptr);
    149 	KDASSERT(a->a_vap->va_type == VREG);
    150 	attr.uid = kauth_cred_geteuid(cr);
    151 	attr.gid = kauth_cred_getegid(cr);
    152 	attr.mode = va->va_mode;
    153 
    154 	if ((err = bfs_file_create(bfs, a->a_cnp->cn_nameptr, 0, 0, &attr))
    155 	    != 0) {
    156 		DPRINTF("%s: bfs_file_create failed.\n", __FUNCTION__);
    157 		goto unlock_exit;
    158 	}
    159 
    160 	if (!bfs_dirent_lookup_by_name(bfs, a->a_cnp->cn_nameptr, &dirent))
    161 		panic("no dirent for created file.");
    162 
    163 	if ((err = sysvbfs_vget(mp, dirent->inode, a->a_vpp)) != 0) {
    164 		DPRINTF("%s: sysvbfs_vget failed.\n", __FUNCTION__);
    165 		goto unlock_exit;
    166 	}
    167 	bnode = (*a->a_vpp)->v_data;
    168 	bnode->update_ctime = TRUE;
    169 	bnode->update_mtime = TRUE;
    170 	bnode->update_atime = TRUE;
    171 
    172  unlock_exit:
    173 	/* unlock parent directory */
    174 	vput(a->a_dvp);	/* locked at sysvbfs_lookup(); */
    175 
    176 	return err;
    177 }
    178 
    179 int
    180 sysvbfs_open(void *arg)
    181 {
    182 	struct vop_open_args /* {
    183 		struct vnode *a_vp;
    184 		int  a_mode;
    185 		kauth_cred_t a_cred;
    186 		struct lwp *a_l;
    187 	} */ *a = arg;
    188 	struct vnode *v = a->a_vp;
    189 	struct sysvbfs_node *bnode = v->v_data;
    190 	struct bfs_inode *inode = bnode->inode;
    191 	struct bfs *bfs = bnode->bmp->bfs;
    192 	struct bfs_dirent *dirent;
    193 
    194 	DPRINTF("%s:\n", __FUNCTION__);
    195 	KDASSERT(v->v_type == VREG || v->v_type == VDIR);
    196 
    197 	if (!bfs_dirent_lookup_by_inode(bfs, inode->number, &dirent))
    198 		return ENOENT;
    199 	bnode->update_atime = TRUE;
    200 	if ((a->a_mode & FWRITE) && !(a->a_mode & O_APPEND)) {
    201 		bnode->size = 0;
    202 	} else {
    203 		bnode->size = bfs_file_size(inode);
    204 	}
    205 	bnode->data_block = inode->start_sector;
    206 
    207 	return 0;
    208 }
    209 
    210 int
    211 sysvbfs_close(void *arg)
    212 {
    213 	struct vop_close_args /* {
    214 		struct vnodeop_desc *a_desc;
    215 		struct vnode *a_vp;
    216 		int  a_fflag;
    217 		kauth_cred_t a_cred;
    218 		struct lwp *a_l;
    219 	} */ *a = arg;
    220 	struct vnode *v = a->a_vp;
    221 	struct sysvbfs_node *bnode = v->v_data;
    222 	struct bfs_fileattr attr;
    223 
    224 	DPRINTF("%s:\n", __FUNCTION__);
    225 	uvm_vnp_setsize(v, bnode->size);
    226 
    227 	memset(&attr, 0xff, sizeof attr);	/* Set VNOVAL all */
    228 	if (bnode->update_atime)
    229 		attr.atime = time_second;
    230 	if (bnode->update_ctime)
    231 		attr.ctime = time_second;
    232 	if (bnode->update_mtime)
    233 		attr.mtime = time_second;
    234 	bfs_inode_set_attr(bnode->bmp->bfs, bnode->inode, &attr);
    235 
    236 	VOP_FSYNC(a->a_vp, a->a_cred, FSYNC_WAIT, 0, 0, a->a_l);
    237 
    238 	return 0;
    239 }
    240 
    241 int
    242 sysvbfs_access(void *arg)
    243 {
    244 	struct vop_access_args /* {
    245 		struct vnode	*a_vp;
    246 		int		a_mode;
    247 		kauth_cred_t	a_cred;
    248 		struct lwp	*a_l;
    249 	} */ *ap = arg;
    250 	struct vnode *vp = ap->a_vp;
    251 	struct sysvbfs_node *bnode = vp->v_data;
    252 	struct bfs_fileattr *attr = &bnode->inode->attr;
    253 
    254 	DPRINTF("%s:\n", __FUNCTION__);
    255 	if ((ap->a_mode & VWRITE) && (vp->v_mount->mnt_flag & MNT_RDONLY))
    256 		return EROFS;
    257 
    258 	return vaccess(vp->v_type, attr->mode, attr->uid, attr->gid,
    259 	    ap->a_mode, ap->a_cred);
    260 }
    261 
    262 int
    263 sysvbfs_getattr(void *v)
    264 {
    265 	struct vop_getattr_args /* {
    266 		struct vnode *a_vp;
    267 		struct vattr *a_vap;
    268 		kauth_cred_t a_cred;
    269 		struct lwp *a_l;
    270 	} */ *ap = v;
    271 	struct vnode *vp = ap->a_vp;
    272 	struct sysvbfs_node *bnode = vp->v_data;
    273 	struct bfs_inode *inode = bnode->inode;
    274 	struct bfs_fileattr *attr = &inode->attr;
    275 	struct sysvbfs_mount *bmp = bnode->bmp;
    276 	struct vattr *vap = ap->a_vap;
    277 
    278 	DPRINTF("%s:\n", __FUNCTION__);
    279 
    280 	vap->va_type = vp->v_type;
    281 	vap->va_mode = attr->mode;
    282 	vap->va_nlink = attr->nlink;
    283 	vap->va_uid = attr->uid;
    284 	vap->va_gid = attr->gid;
    285 	vap->va_fsid = bmp->devvp->v_rdev;
    286 	vap->va_fileid = inode->number;
    287 	vap->va_size = bfs_file_size(inode);
    288 	vap->va_blocksize = BFS_BSIZE;
    289 	vap->va_atime.tv_sec = attr->atime;
    290 	vap->va_mtime.tv_sec = attr->mtime;
    291 	vap->va_ctime.tv_sec = attr->ctime;
    292 	vap->va_birthtime.tv_sec = 0;
    293 	vap->va_gen = 1;
    294 	vap->va_flags = 0;
    295 	vap->va_rdev = 0;	/* No device file */
    296 	vap->va_bytes = vap->va_size;
    297 	vap->va_filerev = 0;
    298 	vap->va_vaflags = 0;
    299 
    300 	return 0;
    301 }
    302 
    303 int
    304 sysvbfs_setattr(void *arg)
    305 {
    306 	struct vop_setattr_args /* {
    307 		struct vnode *a_vp;
    308 		struct vattr *a_vap;
    309 		kauth_cred_t a_cred;
    310 		struct proc *p;
    311 	} */ *ap = arg;
    312 	struct vnode *vp = ap->a_vp;
    313 	struct vattr *vap = ap->a_vap;
    314 	struct sysvbfs_node *bnode = vp->v_data;
    315 	struct bfs_inode *inode = bnode->inode;
    316 	struct bfs_fileattr *attr = &inode->attr;
    317 	struct bfs *bfs = bnode->bmp->bfs;
    318 
    319 	DPRINTF("%s:\n", __FUNCTION__);
    320 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
    321 		return EROFS;
    322 
    323 	if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
    324 	    (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
    325 	    (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
    326 	    ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL))
    327 		return EINVAL;
    328 
    329 	if (vap->va_uid != (uid_t)VNOVAL)
    330 		attr->uid = vap->va_uid;
    331 	if (vap->va_gid != (uid_t)VNOVAL)
    332 		attr->gid = vap->va_gid;
    333 	if (vap->va_mode != (mode_t)VNOVAL)
    334 		attr->mode = vap->va_mode;
    335 	if (vap->va_atime.tv_sec != VNOVAL)
    336 		attr->atime = vap->va_atime.tv_sec;
    337 	if (vap->va_mtime.tv_sec != VNOVAL)
    338 		attr->mtime = vap->va_mtime.tv_sec;
    339 	if (vap->va_ctime.tv_sec != VNOVAL)
    340 		attr->ctime = vap->va_ctime.tv_sec;
    341 
    342 	bfs_inode_set_attr(bfs, inode, attr);
    343 
    344 	return 0;
    345 }
    346 
    347 int
    348 sysvbfs_read(void *arg)
    349 {
    350 	struct vop_read_args /* {
    351 		struct vnode *a_vp;
    352 		struct uio *a_uio;
    353 		int a_ioflag;
    354 		kauth_cred_t a_cred;
    355 	} */ *a = arg;
    356 	struct vnode *v = a->a_vp;
    357 	struct uio *uio = a->a_uio;
    358 	struct sysvbfs_node *bnode = v->v_data;
    359 	struct bfs_inode *inode = bnode->inode;
    360 	vsize_t sz, filesz = bfs_file_size(inode);
    361 	int err;
    362 	void *win;
    363 	const int advice = IO_ADV_DECODE(a->a_ioflag);
    364 
    365 	DPRINTF("%s: type=%d\n", __FUNCTION__, v->v_type);
    366 	if (v->v_type != VREG)
    367 		return EINVAL;
    368 
    369 	while (uio->uio_resid > 0) {
    370 		if ((sz = MIN(filesz - uio->uio_offset, uio->uio_resid)) == 0)
    371 			break;
    372 
    373 		win = ubc_alloc(&v->v_uobj, uio->uio_offset, &sz, advice,
    374 		    UBC_READ);
    375 		err = uiomove(win, sz, uio);
    376 		ubc_release(win, 0);
    377 		if (err)
    378 			break;
    379 		DPRINTF("%s: read %ldbyte\n", __FUNCTION__, sz);
    380 	}
    381 
    382 	return  sysvbfs_update(v, NULL, NULL, UPDATE_WAIT);
    383 }
    384 
    385 int
    386 sysvbfs_write(void *arg)
    387 {
    388 	struct vop_write_args /* {
    389 		struct vnode *a_vp;
    390 		struct uio *a_uio;
    391 		int  a_ioflag;
    392 		kauth_cred_t a_cred;
    393 	} */ *a = arg;
    394 	struct vnode *v = a->a_vp;
    395 	struct uio *uio = a->a_uio;
    396 	struct sysvbfs_node *bnode = v->v_data;
    397 	struct bfs_inode *inode = bnode->inode;
    398 	boolean_t extended = FALSE;
    399 	vsize_t sz;
    400 	void *win;
    401 	int err = 0;
    402 
    403 	if (a->a_vp->v_type != VREG)
    404 		return EISDIR;
    405 
    406 	if (a->a_ioflag & IO_APPEND)
    407 		uio->uio_offset = bnode->size;
    408 
    409 	if (uio->uio_resid == 0)
    410 		return 0;
    411 
    412 	if (bnode->size < uio->uio_offset + uio->uio_resid) {
    413 		bnode->size = uio->uio_offset + uio->uio_resid;
    414 		uvm_vnp_setsize(v, bnode->size);
    415 		extended = TRUE;
    416 	}
    417 
    418 	while (uio->uio_resid > 0) {
    419 		sz = uio->uio_resid;
    420 		win = ubc_alloc(&v->v_uobj, uio->uio_offset, &sz,
    421 		    UVM_ADV_NORMAL, UBC_WRITE);
    422 		err = uiomove(win, sz, uio);
    423 		ubc_release(win, 0);
    424 		if (err)
    425 			break;
    426 		DPRINTF("%s: write %ldbyte\n", __FUNCTION__, sz);
    427 	}
    428 	inode->end_sector = bnode->data_block +
    429 	    (ROUND_SECTOR(bnode->size) >> DEV_BSHIFT) - 1;
    430 	inode->eof_offset_byte = bnode->data_block * DEV_BSIZE +
    431 	    bnode->size - 1;
    432 	bnode->update_mtime = TRUE;
    433 
    434 	VN_KNOTE(v, NOTE_WRITE | (extended ? NOTE_EXTEND : 0));
    435 
    436 	return err;
    437 }
    438 
    439 int
    440 sysvbfs_remove(void *arg)
    441 {
    442 	struct vop_remove_args /* {
    443 		struct vnodeop_desc *a_desc;
    444 		struct vnode * a_dvp;
    445 		struct vnode * a_vp;
    446 		struct componentname * a_cnp;
    447 	} */ *ap = arg;
    448 	struct vnode *vp = ap->a_vp;
    449 	struct vnode *dvp = ap->a_dvp;
    450 	struct sysvbfs_node *bnode = vp->v_data;
    451 	struct sysvbfs_mount *bmp = bnode->bmp;
    452 	struct bfs *bfs = bmp->bfs;
    453 	int err;
    454 
    455 	DPRINTF("%s: delete %s\n", __FUNCTION__, ap->a_cnp->cn_nameptr);
    456 
    457 	if (vp->v_type == VDIR)
    458 		return EPERM;
    459 
    460 	if ((err = bfs_file_delete(bfs, ap->a_cnp->cn_nameptr)) != 0)
    461 		DPRINTF("%s: bfs_file_delete failed.\n", __FUNCTION__);
    462 
    463 	VN_KNOTE(ap->a_vp, NOTE_DELETE);
    464 	VN_KNOTE(ap->a_dvp, NOTE_WRITE);
    465 	if (dvp == vp)
    466 		vrele(vp);
    467 	else
    468 		vput(vp);
    469 	vput(dvp);
    470 
    471 	return err;
    472 }
    473 
    474 int
    475 sysvbfs_rename(void *arg)
    476 {
    477 	struct vop_rename_args /* {
    478 		struct vnode *a_fdvp;	from parent-directory v-node
    479 		struct vnode *a_fvp;	from file v-node
    480 		struct componentname *a_fcnp;
    481 		struct vnode *a_tdvp;	to parent-directory
    482 		struct vnode *a_tvp;	to file v-node
    483 		struct componentname *a_tcnp;
    484 	} */ *ap = arg;
    485 	struct vnode *fvp = ap->a_fvp;
    486 	struct vnode *tvp = ap->a_tvp;
    487 	struct sysvbfs_node *bnode = fvp->v_data;
    488 	struct bfs *bfs = bnode->bmp->bfs;
    489 	const char *from_name = ap->a_fcnp->cn_nameptr;
    490 	const char *to_name = ap->a_tcnp->cn_nameptr;
    491 	int error;
    492 
    493 	DPRINTF("%s: %s->%s\n", __FUNCTION__, from_name, to_name);
    494 	if ((fvp->v_mount != ap->a_tdvp->v_mount) ||
    495 	    (tvp && (fvp->v_mount != tvp->v_mount))) {
    496 		error = EXDEV;
    497 		printf("cross-device link\n");
    498 		goto out;
    499 	}
    500 
    501 	KDASSERT(fvp->v_type == VREG);
    502 	KDASSERT(tvp == NULL ? TRUE : tvp->v_type == VREG);
    503 
    504 	error = bfs_file_rename(bfs, from_name, to_name);
    505  out:
    506 	vput(ap->a_tdvp);
    507 	if (tvp)
    508 		vput(ap->a_tvp);  /* locked on entry */
    509 	if (ap->a_tdvp != ap->a_fdvp)
    510 		vrele(ap->a_fdvp);
    511 	vrele(ap->a_fvp); /* unlocked and refcnt is incremented on entry. */
    512 
    513 	return 0;
    514 }
    515 
    516 int
    517 sysvbfs_readdir(void *v)
    518 {
    519 	struct vop_readdir_args /* {
    520 		struct vnode *a_vp;
    521 		struct uio *a_uio;
    522 		kauth_cred_t a_cred;
    523 		int *a_eofflag;
    524 		off_t **a_cookies;
    525 		int *a_ncookies;
    526 	} */ *ap = v;
    527 	struct uio *uio = ap->a_uio;
    528 	struct vnode *vp = ap->a_vp;
    529 	struct sysvbfs_node *bnode = vp->v_data;
    530 	struct bfs *bfs = bnode->bmp->bfs;
    531 	struct dirent d;
    532 	struct bfs_dirent *file;
    533 	int i, n, error;
    534 
    535 	DPRINTF("%s: offset=%lld residue=%d\n", __FUNCTION__,
    536 	    uio->uio_offset, uio->uio_resid);
    537 
    538 	KDASSERT(vp->v_type == VDIR);
    539 	KDASSERT(uio->uio_offset >= 0);
    540 
    541 	i = uio->uio_offset / sizeof(struct dirent);
    542 	n = uio->uio_resid / sizeof(struct dirent);
    543 	if ((i + n) > bfs->n_dirent)
    544 		n = bfs->n_dirent - i;
    545 
    546 	for (file = &bfs->dirent[i]; i < n; file++) {
    547 		if (file->inode == 0)
    548 			continue;
    549 		if (i == bfs->max_dirent) {
    550 			DPRINTF("%s: file system inconsistent.\n",
    551 			    __FUNCTION__);
    552 			break;
    553 		}
    554 		i++;
    555 		memset(&d, 0, sizeof d);
    556 		d.d_fileno = file->inode;
    557 		d.d_type = file->inode == BFS_ROOT_INODE ? DT_DIR : DT_REG;
    558 		d.d_namlen = strlen(file->name);
    559 		strncpy(d.d_name, file->name, BFS_FILENAME_MAXLEN);
    560 		d.d_reclen = sizeof(struct dirent);
    561 		if ((error = uiomove(&d, d.d_reclen, uio)) != 0) {
    562 			DPRINTF("%s: uiomove failed.\n", __FUNCTION__);
    563 			return error;
    564 		}
    565 	}
    566 	DPRINTF("%s: %d %d %d\n", __FUNCTION__, i, n, bfs->n_dirent);
    567 	*ap->a_eofflag = i == bfs->n_dirent;
    568 
    569 	return 0;
    570 }
    571 
    572 int
    573 sysvbfs_inactive(void *arg)
    574 {
    575 	struct vop_inactive_args /* {
    576 		struct vnode *a_vp;
    577 		struct lwp *a_l;
    578 	} */ *a = arg;
    579 	struct vnode *v = a->a_vp;
    580 	struct lwp *l = a->a_l;
    581 
    582 	DPRINTF("%s:\n", __FUNCTION__);
    583 	VOP_UNLOCK(v, 0);
    584 	vrecycle(v, NULL, l);
    585 
    586 	return 0;
    587 }
    588 
    589 int
    590 sysvbfs_reclaim(void *v)
    591 {
    592 	extern struct pool sysvbfs_node_pool;
    593 	struct vop_reclaim_args /* {
    594 		struct vnode *a_vp;
    595 	} */ *ap = v;
    596 	struct vnode *vp = ap->a_vp;
    597 	struct sysvbfs_node *bnode = vp->v_data;
    598 
    599 	DPRINTF("%s:\n", __FUNCTION__);
    600 	simple_lock(&mntvnode_slock);
    601 	LIST_REMOVE(bnode, link);
    602 	simple_unlock(&mntvnode_slock);
    603 	cache_purge(vp);
    604 	pool_put(&sysvbfs_node_pool, bnode);
    605 	vp->v_data = NULL;
    606 
    607 	return 0;
    608 }
    609 
    610 int
    611 sysvbfs_bmap(void *arg)
    612 {
    613 	struct vop_bmap_args /* {
    614 		struct vnode *a_vp;
    615 		daddr_t  a_bn;
    616 		struct vnode **a_vpp;
    617 		daddr_t *a_bnp;
    618 		int *a_runp;
    619 	} */ *a = arg;
    620 	struct vnode *v = a->a_vp;
    621 	struct sysvbfs_node *bnode = v->v_data;
    622 	struct sysvbfs_mount *bmp = bnode->bmp;
    623 	struct bfs_inode *inode = bnode->inode;
    624 	daddr_t blk;
    625 
    626 	DPRINTF("%s:\n", __FUNCTION__);
    627 	/* BFS algorithm is contiguous allocation */
    628 	blk = inode->start_sector + a->a_bn;
    629 
    630 	if (blk * BFS_BSIZE > bmp->bfs->data_end)
    631 		return ENOSPC;
    632 
    633 	*a->a_vpp = bmp->devvp;
    634 	*a->a_runp = 0;
    635 	DPRINTF("%s: %d + %lld\n", __FUNCTION__, inode->start_sector, a->a_bn);
    636 
    637 	*a->a_bnp = blk;
    638 
    639 
    640 	return 0;
    641 }
    642 
    643 int
    644 sysvbfs_strategy(void *arg)
    645 {
    646 	struct vop_strategy_args /* {
    647 		struct vnode *a_vp;
    648 		struct buf *a_bp;
    649 	} */ *a = arg;
    650 	struct buf *b = a->a_bp;
    651 	struct vnode *v = a->a_vp;
    652 	struct sysvbfs_node *bnode = v->v_data;
    653 	struct sysvbfs_mount *bmp = bnode->bmp;
    654 	int error;
    655 
    656 	DPRINTF("%s:\n", __FUNCTION__);
    657 	KDASSERT(v->v_type == VREG);
    658 	if (b->b_blkno == b->b_lblkno) {
    659 		error = VOP_BMAP(v, b->b_lblkno, NULL, &b->b_blkno, NULL);
    660 		if (error) {
    661 			b->b_error = error;
    662 			b->b_flags |= B_ERROR;
    663 			biodone(b);
    664 			return error;
    665 		}
    666 		if ((long)b->b_blkno == -1)
    667 			clrbuf(b);
    668 	}
    669 	if ((long)b->b_blkno == -1) {
    670 		biodone(b);
    671 		return 0;
    672 	}
    673 
    674 	return VOP_STRATEGY(bmp->devvp, b);
    675 }
    676 
    677 int
    678 sysvbfs_print(void *v)
    679 {
    680 	struct vop_print_args /* {
    681 		struct vnode *a_vp;
    682 	} */ *ap = v;
    683 	struct sysvbfs_node *bnode = ap->a_vp->v_data;
    684 
    685 	DPRINTF("%s:\n", __FUNCTION__);
    686 	bfs_dump(bnode->bmp->bfs);
    687 
    688 	return 0;
    689 }
    690 
    691 int
    692 sysvbfs_advlock(void *v)
    693 {
    694 	struct vop_advlock_args /* {
    695 		struct vnode *a_vp;
    696 		void *a_id;
    697 		int a_op;
    698 		struct flock *a_fl;
    699 		int a_flags;
    700 	} */ *ap = v;
    701 	struct sysvbfs_node *bnode = ap->a_vp->v_data;
    702 
    703 	DPRINTF("%s: op=%d\n", __FUNCTION__, ap->a_op);
    704 
    705 	return lf_advlock(ap, &bnode->lockf, bfs_file_size(bnode->inode));
    706 }
    707 
    708 int
    709 sysvbfs_pathconf(void *v)
    710 {
    711 	struct vop_pathconf_args /* {
    712 		struct vnode *a_vp;
    713 		int a_name;
    714 		register_t *a_retval;
    715 	} */ *ap = v;
    716 	int err = 0;
    717 
    718 	DPRINTF("%s:\n", __FUNCTION__);
    719 
    720 	switch (ap->a_name) {
    721 	case _PC_LINK_MAX:
    722 		*ap->a_retval = 1;
    723 		break;;
    724 	case _PC_NAME_MAX:
    725 		*ap->a_retval = BFS_FILENAME_MAXLEN;
    726 		break;;
    727 	case _PC_PATH_MAX:
    728 		*ap->a_retval = BFS_FILENAME_MAXLEN;
    729 		break;;
    730 	case _PC_CHOWN_RESTRICTED:
    731 		*ap->a_retval = 1;
    732 		break;;
    733 	case _PC_NO_TRUNC:
    734 		*ap->a_retval = 0;
    735 		break;;
    736 	case _PC_SYNC_IO:
    737 		*ap->a_retval = 1;
    738 		break;;
    739 	case _PC_FILESIZEBITS:
    740 		*ap->a_retval = 32;
    741 		break;;
    742 	default:
    743 		err = EINVAL;
    744 		break;
    745 	}
    746 
    747 	return err;
    748 }
    749 
    750 int
    751 sysvbfs_fsync(void *v)
    752 {
    753 	struct vop_fsync_args /* {
    754 		struct vnode *a_vp;
    755 		kauth_cred_t a_cred;
    756 		int a_flags;
    757 		off_t offlo;
    758 		off_t offhi;
    759 		struct lwp *a_l;
    760 	} */ *ap = v;
    761 	struct vnode *vp = ap->a_vp;
    762 	int error, wait;
    763 
    764 	if (ap->a_flags & FSYNC_CACHE) {
    765 		return EOPNOTSUPP;
    766 	}
    767 
    768 	wait = (ap->a_flags & FSYNC_WAIT) != 0;
    769 	vflushbuf(vp, wait);
    770 
    771 	if ((ap->a_flags & FSYNC_DATAONLY) != 0)
    772 		error = 0;
    773 	else
    774 		error = sysvbfs_update(vp, NULL, NULL, wait ? UPDATE_WAIT : 0);
    775 
    776 	return error;
    777 }
    778 
    779 int
    780 sysvbfs_update(struct vnode *vp, const struct timespec *acc,
    781     const struct timespec *mod, int flags)
    782 {
    783 	struct sysvbfs_node *bnode = vp->v_data;
    784 	struct bfs_fileattr attr;
    785 
    786 	DPRINTF("%s:\n", __FUNCTION__);
    787 	memset(&attr, 0xff, sizeof attr);	/* Set VNOVAL all */
    788 	if (bnode->update_atime) {
    789 		attr.atime = acc ? acc->tv_sec : time_second;
    790 		bnode->update_atime = FALSE;
    791 	}
    792 	if (bnode->update_ctime) {
    793 		attr.ctime = time_second;
    794 		bnode->update_ctime = FALSE;
    795 	}
    796 	if (bnode->update_mtime) {
    797 		attr.mtime = mod ? mod->tv_sec : time_second;
    798 		bnode->update_mtime = FALSE;
    799 	}
    800 	bfs_inode_set_attr(bnode->bmp->bfs, bnode->inode, &attr);
    801 
    802 	return 0;
    803 }
    804