Home | History | Annotate | Line # | Download | only in ntfs
ntfs_vnops.c revision 1.43
      1 /*	$NetBSD: ntfs_vnops.c,v 1.43 2009/04/29 22:33:33 elad Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1992, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * John Heidemann of the UCLA Ficus project.
      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. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  *
     34  *	Id: ntfs_vnops.c,v 1.5 1999/05/12 09:43:06 semenu Exp
     35  *
     36  */
     37 
     38 #include <sys/cdefs.h>
     39 __KERNEL_RCSID(0, "$NetBSD: ntfs_vnops.c,v 1.43 2009/04/29 22:33:33 elad Exp $");
     40 
     41 #include <sys/param.h>
     42 #include <sys/systm.h>
     43 #include <sys/kernel.h>
     44 #include <sys/time.h>
     45 #include <sys/stat.h>
     46 #include <sys/vnode.h>
     47 #include <sys/mount.h>
     48 #include <sys/namei.h>
     49 #include <sys/malloc.h>
     50 #include <sys/buf.h>
     51 #include <sys/dirent.h>
     52 #include <sys/kauth.h>
     53 #include <sys/sysctl.h>
     54 
     55 
     56 #include <fs/ntfs/ntfs.h>
     57 #include <fs/ntfs/ntfs_inode.h>
     58 #include <fs/ntfs/ntfs_subr.h>
     59 #include <miscfs/specfs/specdev.h>
     60 #include <miscfs/genfs/genfs.h>
     61 
     62 #include <sys/unistd.h> /* for pathconf(2) constants */
     63 
     64 static int	ntfs_bypass(void *);
     65 static int	ntfs_read(void *);
     66 static int	ntfs_write(void *);
     67 static int	ntfs_getattr(void *);
     68 static int	ntfs_inactive(void *);
     69 static int	ntfs_print(void *);
     70 static int	ntfs_reclaim(void *);
     71 static int	ntfs_strategy(void *);
     72 static int	ntfs_access(void *);
     73 static int	ntfs_open(void *);
     74 static int	ntfs_close(void *);
     75 static int	ntfs_readdir(void *);
     76 static int	ntfs_lookup(void *);
     77 static int	ntfs_bmap(void *);
     78 static int	ntfs_fsync(void *);
     79 static int	ntfs_pathconf(void *);
     80 
     81 extern int prtactive;
     82 
     83 /*
     84  * This is a noop, simply returning what one has been given.
     85  */
     86 int
     87 ntfs_bmap(void *v)
     88 {
     89 	struct vop_bmap_args /* {
     90 		struct vnode *a_vp;
     91 		daddr_t  a_bn;
     92 		struct vnode **a_vpp;
     93 		daddr_t *a_bnp;
     94 		int *a_runp;
     95 		int *a_runb;
     96 	} */ *ap = v;
     97 	dprintf(("ntfs_bmap: vn: %p, blk: %d\n", ap->a_vp,(u_int32_t)ap->a_bn));
     98 	if (ap->a_vpp != NULL)
     99 		*ap->a_vpp = ap->a_vp;
    100 	if (ap->a_bnp != NULL)
    101 		*ap->a_bnp = ap->a_bn;
    102 	if (ap->a_runp != NULL)
    103 		*ap->a_runp = 0;
    104 	return (0);
    105 }
    106 
    107 static int
    108 ntfs_read(void *v)
    109 {
    110 	struct vop_read_args /* {
    111 		struct vnode *a_vp;
    112 		struct uio *a_uio;
    113 		int a_ioflag;
    114 		kauth_cred_t a_cred;
    115 	} */ *ap = v;
    116 	struct vnode *vp = ap->a_vp;
    117 	struct fnode *fp = VTOF(vp);
    118 	struct ntnode *ip = FTONT(fp);
    119 	struct uio *uio = ap->a_uio;
    120 	struct ntfsmount *ntmp = ip->i_mp;
    121 	u_int64_t toread;
    122 	int error;
    123 
    124 	dprintf(("ntfs_read: ino: %llu, off: %qd resid: %qd\n",
    125 	    (unsigned long long)ip->i_number, (long long)uio->uio_offset,
    126 	    (long long)uio->uio_resid));
    127 
    128 	dprintf(("ntfs_read: filesize: %qu",(long long)fp->f_size));
    129 
    130 	/* don't allow reading after end of file */
    131 	if (uio->uio_offset > fp->f_size)
    132 		toread = 0;
    133 	else
    134 		toread = MIN(uio->uio_resid, fp->f_size - uio->uio_offset );
    135 
    136 	dprintf((", toread: %qu\n",(long long)toread));
    137 
    138 	if (toread == 0)
    139 		return (0);
    140 
    141 	error = ntfs_readattr(ntmp, ip, fp->f_attrtype,
    142 		fp->f_attrname, uio->uio_offset, toread, NULL, uio);
    143 	if (error) {
    144 		printf("ntfs_read: ntfs_readattr failed: %d\n",error);
    145 		return (error);
    146 	}
    147 
    148 	return (0);
    149 }
    150 
    151 static int
    152 ntfs_bypass(void *v)
    153 {
    154 	struct vop_generic_args /* {
    155 		struct vnodeop_desc *a_desc;
    156 		<other random data follows, presumably>
    157 	} */ *ap __unused = v;
    158 	int error = ENOTTY;
    159 	dprintf(("ntfs_bypass: %s\n", ap->a_desc->vdesc_name));
    160 	return (error);
    161 }
    162 
    163 
    164 static int
    165 ntfs_getattr(void *v)
    166 {
    167 	struct vop_getattr_args /* {
    168 		struct vnode *a_vp;
    169 		struct vattr *a_vap;
    170 		kauth_cred_t a_cred;
    171 	} */ *ap = v;
    172 	struct vnode *vp = ap->a_vp;
    173 	struct fnode *fp = VTOF(vp);
    174 	struct ntnode *ip = FTONT(fp);
    175 	struct vattr *vap = ap->a_vap;
    176 
    177 	dprintf(("ntfs_getattr: %llu, flags: %d\n",
    178 	    (unsigned long long)ip->i_number, ip->i_flag));
    179 
    180 	vap->va_fsid = ip->i_dev;
    181 	vap->va_fileid = ip->i_number;
    182 	vap->va_mode = ip->i_mp->ntm_mode;
    183 	vap->va_nlink = ip->i_nlink;
    184 	vap->va_uid = ip->i_mp->ntm_uid;
    185 	vap->va_gid = ip->i_mp->ntm_gid;
    186 	vap->va_rdev = 0;				/* XXX UNODEV ? */
    187 	vap->va_size = fp->f_size;
    188 	vap->va_bytes = fp->f_allocated;
    189 	vap->va_atime = ntfs_nttimetounix(fp->f_times.t_access);
    190 	vap->va_mtime = ntfs_nttimetounix(fp->f_times.t_write);
    191 	vap->va_ctime = ntfs_nttimetounix(fp->f_times.t_create);
    192 	vap->va_flags = ip->i_flag;
    193 	vap->va_gen = 0;
    194 	vap->va_blocksize = ip->i_mp->ntm_spc * ip->i_mp->ntm_bps;
    195 	vap->va_type = vp->v_type;
    196 	vap->va_filerev = 0;
    197 	return (0);
    198 }
    199 
    200 
    201 /*
    202  * Last reference to an ntnode.  If necessary, write or delete it.
    203  */
    204 int
    205 ntfs_inactive(void *v)
    206 {
    207 	struct vop_inactive_args /* {
    208 		struct vnode *a_vp;
    209 	} */ *ap = v;
    210 	struct vnode *vp = ap->a_vp;
    211 #ifdef NTFS_DEBUG
    212 	struct ntnode *ip = VTONT(vp);
    213 #endif
    214 
    215 	dprintf(("ntfs_inactive: vnode: %p, ntnode: %llu\n", vp,
    216 	    (unsigned long long)ip->i_number));
    217 
    218 	VOP_UNLOCK(vp, 0);
    219 
    220 	/* XXX since we don't support any filesystem changes
    221 	 * right now, nothing more needs to be done
    222 	 */
    223 	return (0);
    224 }
    225 
    226 /*
    227  * Reclaim an fnode/ntnode so that it can be used for other purposes.
    228  */
    229 int
    230 ntfs_reclaim(void *v)
    231 {
    232 	struct vop_reclaim_args /* {
    233 		struct vnode *a_vp;
    234 	} */ *ap = v;
    235 	struct vnode *vp = ap->a_vp;
    236 	struct fnode *fp = VTOF(vp);
    237 	struct ntnode *ip = FTONT(fp);
    238 	int error;
    239 
    240 	dprintf(("ntfs_reclaim: vnode: %p, ntnode: %llu\n", vp,
    241 	    (unsigned long long)ip->i_number));
    242 
    243 	if (prtactive && vp->v_usecount > 1)
    244 		vprint("ntfs_reclaim: pushing active", vp);
    245 
    246 	if ((error = ntfs_ntget(ip)) != 0)
    247 		return (error);
    248 
    249 	/* Purge old data structures associated with the inode. */
    250 	cache_purge(vp);
    251 	if (ip->i_devvp) {
    252 		vrele(ip->i_devvp);
    253 		ip->i_devvp = NULL;
    254 	}
    255 
    256 	genfs_node_destroy(vp);
    257 	ntfs_frele(fp);
    258 	ntfs_ntput(ip);
    259 	vp->v_data = NULL;
    260 
    261 	return (0);
    262 }
    263 
    264 static int
    265 ntfs_print(void *v)
    266 {
    267 	struct vop_print_args /* {
    268 		struct vnode *a_vp;
    269 	} */ *ap = v;
    270 	struct ntnode *ip = VTONT(ap->a_vp);
    271 
    272 	printf("tag VT_NTFS, ino %llu, flag %#x, usecount %d, nlink %ld\n",
    273 	    (unsigned long long)ip->i_number, ip->i_flag, ip->i_usecount,
    274 	    ip->i_nlink);
    275 	printf("       ");
    276 	printf("\n");
    277 	return (0);
    278 }
    279 
    280 /*
    281  * Calculate the logical to physical mapping if not done already,
    282  * then call the device strategy routine.
    283  */
    284 int
    285 ntfs_strategy(void *v)
    286 {
    287 	struct vop_strategy_args /* {
    288 		struct vnode *a_vp;
    289 		struct buf *a_bp;
    290 	} */ *ap = v;
    291 	struct buf *bp = ap->a_bp;
    292 	struct vnode *vp = ap->a_vp;
    293 	struct fnode *fp = VTOF(vp);
    294 	struct ntnode *ip = FTONT(fp);
    295 	struct ntfsmount *ntmp = ip->i_mp;
    296 	int error;
    297 
    298 	dprintf(("ntfs_strategy: blkno: %d, lblkno: %d\n",
    299 		(u_int32_t)bp->b_blkno,
    300 		(u_int32_t)bp->b_lblkno));
    301 
    302 	dprintf(("strategy: bcount: %u flags: 0x%x\n",
    303 		(u_int32_t)bp->b_bcount,bp->b_flags));
    304 
    305 	if (bp->b_flags & B_READ) {
    306 		u_int32_t toread;
    307 
    308 		if (ntfs_cntob(bp->b_blkno) >= fp->f_size) {
    309 			clrbuf(bp);
    310 			error = 0;
    311 		} else {
    312 			toread = MIN(bp->b_bcount,
    313 				 fp->f_size - ntfs_cntob(bp->b_blkno));
    314 			dprintf(("ntfs_strategy: toread: %d, fsize: %d\n",
    315 				toread,(u_int32_t)fp->f_size));
    316 
    317 			error = ntfs_readattr(ntmp, ip, fp->f_attrtype,
    318 				fp->f_attrname, ntfs_cntob(bp->b_blkno),
    319 				toread, bp->b_data, NULL);
    320 
    321 			if (error) {
    322 				printf("ntfs_strategy: ntfs_readattr failed\n");
    323 				bp->b_error = error;
    324 			}
    325 
    326 			memset((char *)bp->b_data + toread, 0,
    327 			    bp->b_bcount - toread);
    328 		}
    329 	} else {
    330 		size_t tmp;
    331 		u_int32_t towrite;
    332 
    333 		if (ntfs_cntob(bp->b_blkno) + bp->b_bcount >= fp->f_size) {
    334 			printf("ntfs_strategy: CAN'T EXTEND FILE\n");
    335 			bp->b_error = error = EFBIG;
    336 		} else {
    337 			towrite = MIN(bp->b_bcount,
    338 				fp->f_size - ntfs_cntob(bp->b_blkno));
    339 			dprintf(("ntfs_strategy: towrite: %d, fsize: %d\n",
    340 				towrite,(u_int32_t)fp->f_size));
    341 
    342 			error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,
    343 				fp->f_attrname, ntfs_cntob(bp->b_blkno),towrite,
    344 				bp->b_data, &tmp, NULL);
    345 
    346 			if (error) {
    347 				printf("ntfs_strategy: ntfs_writeattr fail\n");
    348 				bp->b_error = error;
    349 			}
    350 		}
    351 	}
    352 	biodone(bp);
    353 	return (error);
    354 }
    355 
    356 static int
    357 ntfs_write(void *v)
    358 {
    359 	struct vop_write_args /* {
    360 		struct vnode *a_vp;
    361 		struct uio *a_uio;
    362 		int  a_ioflag;
    363 		kauth_cred_t a_cred;
    364 	} */ *ap = v;
    365 	struct vnode *vp = ap->a_vp;
    366 	struct fnode *fp = VTOF(vp);
    367 	struct ntnode *ip = FTONT(fp);
    368 	struct uio *uio = ap->a_uio;
    369 	struct ntfsmount *ntmp = ip->i_mp;
    370 	u_int64_t towrite;
    371 	size_t written;
    372 	int error;
    373 
    374 	dprintf(("ntfs_write: ino: %llu, off: %qd resid: %qd\n",
    375 	    (unsigned long long)ip->i_number, (long long)uio->uio_offset,
    376 	    (long long)uio->uio_resid));
    377 	dprintf(("ntfs_write: filesize: %qu",(long long)fp->f_size));
    378 
    379 	if (uio->uio_resid + uio->uio_offset > fp->f_size) {
    380 		printf("ntfs_write: CAN'T WRITE BEYOND END OF FILE\n");
    381 		return (EFBIG);
    382 	}
    383 
    384 	towrite = MIN(uio->uio_resid, fp->f_size - uio->uio_offset);
    385 
    386 	dprintf((", towrite: %qu\n",(long long)towrite));
    387 
    388 	error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,
    389 		fp->f_attrname, uio->uio_offset, towrite, NULL, &written, uio);
    390 #ifdef NTFS_DEBUG
    391 	if (error)
    392 		printf("ntfs_write: ntfs_writeattr failed: %d\n", error);
    393 #endif
    394 
    395 	return (error);
    396 }
    397 
    398 int
    399 ntfs_access(void *v)
    400 {
    401 	struct vop_access_args /* {
    402 		struct vnode *a_vp;
    403 		int  a_mode;
    404 		kauth_cred_t a_cred;
    405 	} */ *ap = v;
    406 	struct vnode *vp = ap->a_vp;
    407 	struct ntnode *ip = VTONT(vp);
    408 	mode_t file_mode, mode = ap->a_mode;
    409 
    410 	dprintf(("ntfs_access: %llu\n", (unsigned long long)ip->i_number));
    411 
    412 	/*
    413 	 * Disallow write attempts on read-only file systems;
    414 	 * unless the file is a socket, fifo, or a block or
    415 	 * character device resident on the file system.
    416 	 */
    417 	if (mode & VWRITE) {
    418 		switch ((int)vp->v_type) {
    419 		case VDIR:
    420 		case VLNK:
    421 		case VREG:
    422 			if (vp->v_mount->mnt_flag & MNT_RDONLY)
    423 				return (EROFS);
    424 			break;
    425 		}
    426 	}
    427 
    428 	file_mode = ip->i_mp->ntm_mode | (S_IXUSR|S_IXGRP|S_IXOTH);
    429 
    430 	return (vaccess(vp->v_type, file_mode, ip->i_mp->ntm_uid,
    431 	    ip->i_mp->ntm_gid, mode, ap->a_cred));
    432 }
    433 
    434 /*
    435  * Open called.
    436  *
    437  * Nothing to do.
    438  */
    439 /* ARGSUSED */
    440 static int
    441 ntfs_open(void *v)
    442 {
    443 	struct vop_open_args /* {
    444 		struct vnode *a_vp;
    445 		int  a_mode;
    446 		kauth_cred_t a_cred;
    447 	} */ *ap __unused = v;
    448 #ifdef NTFS_DEBUG
    449 	struct vnode *vp = ap->a_vp;
    450 	struct ntnode *ip = VTONT(vp);
    451 
    452 	printf("ntfs_open: %llu\n", (unsigned long long)ip->i_number);
    453 #endif
    454 
    455 	/*
    456 	 * Files marked append-only must be opened for appending.
    457 	 */
    458 
    459 	return (0);
    460 }
    461 
    462 /*
    463  * Close called.
    464  *
    465  * Update the times on the inode.
    466  */
    467 /* ARGSUSED */
    468 static int
    469 ntfs_close(void *v)
    470 {
    471 	struct vop_close_args /* {
    472 		struct vnode *a_vp;
    473 		int  a_fflag;
    474 		kauth_cred_t a_cred;
    475 	} */ *ap __unused = v;
    476 #ifdef NTFS_DEBUG
    477 	struct vnode *vp = ap->a_vp;
    478 	struct ntnode *ip = VTONT(vp);
    479 
    480 	printf("ntfs_close: %llu\n", (unsigned long long)ip->i_number);
    481 #endif
    482 
    483 	return (0);
    484 }
    485 
    486 int
    487 ntfs_readdir(void *v)
    488 {
    489 	struct vop_readdir_args /* {
    490 		struct vnode *a_vp;
    491 		struct uio *a_uio;
    492 		kauth_cred_t a_cred;
    493 		int *a_ncookies;
    494 		u_int **cookies;
    495 	} */ *ap = v;
    496 	struct vnode *vp = ap->a_vp;
    497 	struct fnode *fp = VTOF(vp);
    498 	struct ntnode *ip = FTONT(fp);
    499 	struct uio *uio = ap->a_uio;
    500 	struct ntfsmount *ntmp = ip->i_mp;
    501 	int i, error = 0;
    502 	u_int32_t faked = 0, num;
    503 	int ncookies = 0;
    504 	struct dirent *cde;
    505 	off_t off;
    506 
    507 	dprintf(("ntfs_readdir %llu off: %qd resid: %qd\n",
    508 	    (unsigned long long)ip->i_number, (long long)uio->uio_offset,
    509 	    (long long)uio->uio_resid));
    510 
    511 	off = uio->uio_offset;
    512 
    513 	cde = malloc(sizeof(struct dirent), M_TEMP, M_WAITOK);
    514 
    515 	/* Simulate . in every dir except ROOT */
    516 	if (ip->i_number != NTFS_ROOTINO
    517 	    && uio->uio_offset < sizeof(struct dirent)) {
    518 		cde->d_fileno = ip->i_number;
    519 		cde->d_reclen = sizeof(struct dirent);
    520 		cde->d_type = DT_DIR;
    521 		cde->d_namlen = 1;
    522 		strncpy(cde->d_name, ".", 2);
    523 		error = uiomove((void *)cde, sizeof(struct dirent), uio);
    524 		if (error)
    525 			goto out;
    526 
    527 		ncookies++;
    528 	}
    529 
    530 	/* Simulate .. in every dir including ROOT */
    531 	if (uio->uio_offset < 2 * sizeof(struct dirent)) {
    532 		cde->d_fileno = NTFS_ROOTINO;	/* XXX */
    533 		cde->d_reclen = sizeof(struct dirent);
    534 		cde->d_type = DT_DIR;
    535 		cde->d_namlen = 2;
    536 		strncpy(cde->d_name, "..", 3);
    537 
    538 		error = uiomove((void *) cde, sizeof(struct dirent), uio);
    539 		if (error)
    540 			goto out;
    541 
    542 		ncookies++;
    543 	}
    544 
    545 	faked = (ip->i_number == NTFS_ROOTINO) ? 1 : 2;
    546 	num = uio->uio_offset / sizeof(struct dirent) - faked;
    547 
    548 	while (uio->uio_resid >= sizeof(struct dirent)) {
    549 		struct attr_indexentry *iep;
    550 		char *fname;
    551 		size_t remains;
    552 		int sz;
    553 
    554 		error = ntfs_ntreaddir(ntmp, fp, num, &iep);
    555 		if (error)
    556 			goto out;
    557 
    558 		if (NULL == iep)
    559 			break;
    560 
    561 		for(; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (uio->uio_resid >= sizeof(struct dirent));
    562 			iep = NTFS_NEXTREC(iep, struct attr_indexentry *))
    563 		{
    564 			if(!ntfs_isnamepermitted(ntmp,iep))
    565 				continue;
    566 
    567 			remains = sizeof(cde->d_name) - 1;
    568 			fname = cde->d_name;
    569 			for(i=0; i<iep->ie_fnamelen; i++) {
    570 				sz = (*ntmp->ntm_wput)(fname, remains,
    571 						iep->ie_fname[i]);
    572 				fname += sz;
    573 				remains -= sz;
    574 			}
    575 			*fname = '\0';
    576 			dprintf(("ntfs_readdir: elem: %d, fname:[%s] type: %d, flag: %d, ",
    577 				num, cde->d_name, iep->ie_fnametype,
    578 				iep->ie_flag));
    579 			cde->d_namlen = fname - (char *) cde->d_name;
    580 			cde->d_fileno = iep->ie_number;
    581 			cde->d_type = (iep->ie_fflag & NTFS_FFLAG_DIR) ? DT_DIR : DT_REG;
    582 			cde->d_reclen = sizeof(struct dirent);
    583 			dprintf(("%s\n", (cde->d_type == DT_DIR) ? "dir":"reg"));
    584 
    585 			error = uiomove((void *)cde, sizeof(struct dirent), uio);
    586 			if (error)
    587 				goto out;
    588 
    589 			ncookies++;
    590 			num++;
    591 		}
    592 	}
    593 
    594 	dprintf(("ntfs_readdir: %d entries (%d bytes) read\n",
    595 		ncookies,(u_int)(uio->uio_offset - off)));
    596 	dprintf(("ntfs_readdir: off: %qd resid: %qu\n",
    597 		(long long)uio->uio_offset,(long long)uio->uio_resid));
    598 
    599 	if (!error && ap->a_ncookies != NULL) {
    600 		struct dirent* dpStart;
    601 		struct dirent* dp;
    602 		off_t *cookies;
    603 		off_t *cookiep;
    604 
    605 		dprintf(("ntfs_readdir: %d cookies\n",ncookies));
    606 		dpStart = (struct dirent *)
    607 		     ((char *)uio->uio_iov->iov_base -
    608 			 (uio->uio_offset - off));
    609 		cookies = malloc(ncookies * sizeof(off_t), M_TEMP, M_WAITOK);
    610 		for (dp = dpStart, cookiep = cookies, i=0;
    611 		     i < ncookies;
    612 		     dp = (struct dirent *)((char *) dp + dp->d_reclen), i++) {
    613 			off += dp->d_reclen;
    614 			*cookiep++ = (u_int) off;
    615 		}
    616 		*ap->a_ncookies = ncookies;
    617 		*ap->a_cookies = cookies;
    618 	}
    619 /*
    620 	if (ap->a_eofflag)
    621 	    *ap->a_eofflag = VTONT(ap->a_vp)->i_size <= uio->uio_offset;
    622 */
    623     out:
    624 	free(cde, M_TEMP);
    625 	return (error);
    626 }
    627 
    628 int
    629 ntfs_lookup(void *v)
    630 {
    631 	struct vop_lookup_args /* {
    632 		struct vnode *a_dvp;
    633 		struct vnode **a_vpp;
    634 		struct componentname *a_cnp;
    635 	} */ *ap = v;
    636 	struct vnode *dvp = ap->a_dvp;
    637 	struct ntnode *dip = VTONT(dvp);
    638 	struct ntfsmount *ntmp = dip->i_mp;
    639 	struct componentname *cnp = ap->a_cnp;
    640 	kauth_cred_t cred = cnp->cn_cred;
    641 	int error;
    642 
    643 	dprintf(("ntfs_lookup: \"%.*s\" (%lld bytes) in %llu\n",
    644 	    (int)cnp->cn_namelen, cnp->cn_nameptr, (long long)cnp->cn_namelen,
    645 	    (unsigned long long)dip->i_number));
    646 
    647 	error = VOP_ACCESS(dvp, VEXEC, cred);
    648 	if(error)
    649 		return (error);
    650 
    651 	if ((cnp->cn_flags & ISLASTCN) &&
    652 	    (dvp->v_mount->mnt_flag & MNT_RDONLY) &&
    653 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
    654 		return (EROFS);
    655 
    656 	/*
    657 	 * We now have a segment name to search for, and a directory
    658 	 * to search.
    659 	 *
    660 	 * Before tediously performing a linear scan of the directory,
    661 	 * check the name cache to see if the directory/name pair
    662 	 * we are looking for is known already.
    663 	 */
    664 	if ((error = cache_lookup(ap->a_dvp, ap->a_vpp, cnp)) >= 0)
    665 		return (error);
    666 
    667 	if(cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {
    668 		dprintf(("ntfs_lookup: faking . directory in %llu\n",
    669 		    (unsigned long long)dip->i_number));
    670 
    671 		VREF(dvp);
    672 		*ap->a_vpp = dvp;
    673 		error = 0;
    674 	} else if (cnp->cn_flags & ISDOTDOT) {
    675 		struct ntvattr *vap;
    676 
    677 		dprintf(("ntfs_lookup: faking .. directory in %llu\n",
    678 		    (unsigned long long)dip->i_number));
    679 
    680 		VOP_UNLOCK(dvp, 0);
    681 		error = ntfs_ntvattrget(ntmp, dip, NTFS_A_NAME, NULL, 0, &vap);
    682 		if (error) {
    683 			vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
    684 			return (error);
    685 		}
    686 
    687 		dprintf(("ntfs_lookup: parentdir: %d\n",
    688 			 vap->va_a_name->n_pnumber));
    689 		error = VFS_VGET(ntmp->ntm_mountp,
    690 				 vap->va_a_name->n_pnumber,ap->a_vpp);
    691 		ntfs_ntvattrrele(vap);
    692 		vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
    693 		if (error) {
    694 			return (error);
    695 		}
    696 	} else {
    697 		error = ntfs_ntlookupfile(ntmp, dvp, cnp, ap->a_vpp);
    698 		if (error) {
    699 			dprintf(("ntfs_ntlookupfile: returned %d\n", error));
    700 			return (error);
    701 		}
    702 
    703 		dprintf(("ntfs_lookup: found ino: %llu\n",
    704 		    (unsigned long long)VTONT(*ap->a_vpp)->i_number));
    705 	}
    706 
    707 	if (cnp->cn_flags & MAKEENTRY)
    708 		cache_enter(dvp, *ap->a_vpp, cnp);
    709 
    710 	return (error);
    711 }
    712 
    713 /*
    714  * Flush the blocks of a file to disk.
    715  *
    716  * This function is worthless for vnodes that represent directories. Maybe we
    717  * could just do a sync if they try an fsync on a directory file.
    718  */
    719 static int
    720 ntfs_fsync(void *v)
    721 {
    722 	struct vop_fsync_args /* {
    723 		struct vnode *a_vp;
    724 		kauth_cred_t a_cred;
    725 		int a_flags;
    726 		off_t offlo;
    727 		off_t offhi;
    728 	} */ *ap = v;
    729 	struct vnode *vp = ap->a_vp;
    730 	int wait;
    731 
    732 	if (ap->a_flags & FSYNC_CACHE) {
    733 		return EOPNOTSUPP;
    734 	}
    735 
    736 	wait = (ap->a_flags & FSYNC_WAIT) != 0;
    737 	vflushbuf(vp, wait);
    738 
    739 	return 0;
    740 }
    741 
    742 /*
    743  * Return POSIX pathconf information applicable to NTFS filesystem
    744  */
    745 static int
    746 ntfs_pathconf(void *v)
    747 {
    748 	struct vop_pathconf_args /* {
    749 		struct vnode *a_vp;
    750 		int a_name;
    751 		register_t *a_retval;
    752 	} */ *ap = v;
    753 
    754 	switch (ap->a_name) {
    755 	case _PC_LINK_MAX:
    756 		*ap->a_retval = 1;
    757 		return (0);
    758 	case _PC_NAME_MAX:
    759 		*ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_namemax;
    760 		return (0);
    761 	case _PC_PATH_MAX:
    762 		*ap->a_retval = PATH_MAX;
    763 		return (0);
    764 	case _PC_CHOWN_RESTRICTED:
    765 		*ap->a_retval = 1;
    766 		return (0);
    767 	case _PC_NO_TRUNC:
    768 		*ap->a_retval = 0;
    769 		return (0);
    770 	case _PC_SYNC_IO:
    771 		*ap->a_retval = 1;
    772 		return (0);
    773 	case _PC_FILESIZEBITS:
    774 		*ap->a_retval = 64;
    775 		return (0);
    776 	default:
    777 		return (EINVAL);
    778 	}
    779 	/* NOTREACHED */
    780 }
    781 
    782 /*
    783  * Global vfs data structures
    784  */
    785 vop_t **ntfs_vnodeop_p;
    786 
    787 const struct vnodeopv_entry_desc ntfs_vnodeop_entries[] = {
    788 	{ &vop_default_desc, (vop_t *) ntfs_bypass },
    789 	{ &vop_lookup_desc, (vop_t *) ntfs_lookup },	/* lookup */
    790 	{ &vop_create_desc, genfs_eopnotsupp },		/* create */
    791 	{ &vop_mknod_desc, genfs_eopnotsupp },		/* mknod */
    792 	{ &vop_open_desc, (vop_t *) ntfs_open },	/* open */
    793 	{ &vop_close_desc,(vop_t *)  ntfs_close },	/* close */
    794 	{ &vop_access_desc, (vop_t *) ntfs_access },	/* access */
    795 	{ &vop_getattr_desc, (vop_t *) ntfs_getattr },	/* getattr */
    796 	{ &vop_setattr_desc, genfs_eopnotsupp },	/* setattr */
    797 	{ &vop_read_desc, (vop_t *) ntfs_read },	/* read */
    798 	{ &vop_write_desc, (vop_t *) ntfs_write },	/* write */
    799 	{ &vop_fcntl_desc, genfs_fcntl },		/* fcntl */
    800 	{ &vop_ioctl_desc, genfs_enoioctl },		/* ioctl */
    801 	{ &vop_poll_desc, genfs_poll },			/* poll */
    802 	{ &vop_kqfilter_desc, genfs_kqfilter },		/* kqfilter */
    803 	{ &vop_revoke_desc, genfs_revoke },		/* revoke */
    804 	{ &vop_mmap_desc, genfs_mmap },			/* mmap */
    805 	{ &vop_fsync_desc, (vop_t *) ntfs_fsync },	/* fsync */
    806 	{ &vop_seek_desc, genfs_seek },			/* seek */
    807 	{ &vop_remove_desc, genfs_eopnotsupp },		/* remove */
    808 	{ &vop_link_desc, genfs_eopnotsupp },		/* link */
    809 	{ &vop_rename_desc, genfs_eopnotsupp },		/* rename */
    810 	{ &vop_mkdir_desc, genfs_eopnotsupp },		/* mkdir */
    811 	{ &vop_rmdir_desc, genfs_eopnotsupp },		/* rmdir */
    812 	{ &vop_symlink_desc, genfs_eopnotsupp },	/* symlink */
    813 	{ &vop_readdir_desc, (vop_t *) ntfs_readdir },	/* readdir */
    814 	{ &vop_readlink_desc, genfs_eopnotsupp },	/* readlink */
    815 	{ &vop_abortop_desc, genfs_abortop },		/* abortop */
    816 	{ &vop_inactive_desc, (vop_t *) ntfs_inactive },	/* inactive */
    817 	{ &vop_reclaim_desc, (vop_t *) ntfs_reclaim },	/* reclaim */
    818 	{ &vop_lock_desc, genfs_lock },			/* lock */
    819 	{ &vop_unlock_desc, genfs_unlock },		/* unlock */
    820 	{ &vop_bmap_desc, (vop_t *) ntfs_bmap },	/* bmap */
    821 	{ &vop_strategy_desc, (vop_t *) ntfs_strategy },	/* strategy */
    822 	{ &vop_print_desc, (vop_t *) ntfs_print },	/* print */
    823 	{ &vop_islocked_desc, genfs_islocked },		/* islocked */
    824 	{ &vop_pathconf_desc, ntfs_pathconf },		/* pathconf */
    825 	{ &vop_advlock_desc, genfs_nullop },		/* advlock */
    826 	{ &vop_bwrite_desc, vn_bwrite },		/* bwrite */
    827 	{ &vop_getpages_desc, genfs_compat_getpages },	/* getpages */
    828 	{ &vop_putpages_desc, genfs_putpages },		/* putpages */
    829 	{ NULL, NULL }
    830 };
    831 const struct vnodeopv_desc ntfs_vnodeop_opv_desc =
    832 	{ &ntfs_vnodeop_p, ntfs_vnodeop_entries };
    833