Home | History | Annotate | Line # | Download | only in ntfs
ntfs_vfsops.c revision 1.17
      1  1.17    atatat /*	$NetBSD: ntfs_vfsops.c,v 1.17 2004/03/24 15:34:52 atatat Exp $	*/
      2   1.1  jdolecek 
      3   1.1  jdolecek /*-
      4   1.1  jdolecek  * Copyright (c) 1998, 1999 Semen Ustimenko
      5   1.1  jdolecek  * All rights reserved.
      6   1.1  jdolecek  *
      7   1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
      8   1.1  jdolecek  * modification, are permitted provided that the following conditions
      9   1.1  jdolecek  * are met:
     10   1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     11   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     12   1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     15   1.1  jdolecek  *
     16   1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17   1.1  jdolecek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18   1.1  jdolecek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19   1.1  jdolecek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20   1.1  jdolecek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21   1.1  jdolecek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22   1.1  jdolecek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23   1.1  jdolecek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24   1.1  jdolecek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  jdolecek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  jdolecek  * SUCH DAMAGE.
     27   1.1  jdolecek  *
     28   1.1  jdolecek  *	Id: ntfs_vfsops.c,v 1.7 1999/05/31 11:28:30 phk Exp
     29   1.1  jdolecek  */
     30   1.1  jdolecek 
     31   1.1  jdolecek #include <sys/cdefs.h>
     32  1.17    atatat __KERNEL_RCSID(0, "$NetBSD: ntfs_vfsops.c,v 1.17 2004/03/24 15:34:52 atatat Exp $");
     33   1.1  jdolecek 
     34   1.1  jdolecek #include <sys/param.h>
     35   1.1  jdolecek #include <sys/systm.h>
     36   1.1  jdolecek #include <sys/namei.h>
     37   1.1  jdolecek #include <sys/proc.h>
     38   1.1  jdolecek #include <sys/kernel.h>
     39   1.1  jdolecek #include <sys/vnode.h>
     40   1.1  jdolecek #include <sys/mount.h>
     41   1.1  jdolecek #include <sys/buf.h>
     42   1.1  jdolecek #include <sys/fcntl.h>
     43   1.1  jdolecek #include <sys/malloc.h>
     44  1.15    atatat #include <sys/sysctl.h>
     45   1.1  jdolecek #include <sys/device.h>
     46   1.1  jdolecek #include <sys/conf.h>
     47   1.1  jdolecek 
     48   1.1  jdolecek #if defined(__NetBSD__)
     49   1.1  jdolecek #include <uvm/uvm_extern.h>
     50   1.1  jdolecek #else
     51   1.1  jdolecek #include <vm/vm.h>
     52   1.1  jdolecek #endif
     53   1.1  jdolecek 
     54   1.1  jdolecek #include <miscfs/specfs/specdev.h>
     55   1.1  jdolecek 
     56   1.1  jdolecek /*#define NTFS_DEBUG 1*/
     57   1.1  jdolecek #include <fs/ntfs/ntfs.h>
     58   1.1  jdolecek #include <fs/ntfs/ntfs_inode.h>
     59   1.1  jdolecek #include <fs/ntfs/ntfs_subr.h>
     60   1.1  jdolecek #include <fs/ntfs/ntfs_vfsops.h>
     61   1.1  jdolecek #include <fs/ntfs/ntfs_ihash.h>
     62   1.1  jdolecek #include <fs/ntfs/ntfsmount.h>
     63   1.1  jdolecek 
     64   1.1  jdolecek MALLOC_DEFINE(M_NTFSMNT, "NTFS mount", "NTFS mount structure");
     65   1.1  jdolecek MALLOC_DEFINE(M_NTFSNTNODE,"NTFS ntnode",  "NTFS ntnode information");
     66   1.1  jdolecek MALLOC_DEFINE(M_NTFSFNODE,"NTFS fnode",  "NTFS fnode information");
     67   1.1  jdolecek MALLOC_DEFINE(M_NTFSDIR,"NTFS dir",  "NTFS dir buffer");
     68   1.1  jdolecek 
     69   1.1  jdolecek #if defined(__FreeBSD__)
     70   1.1  jdolecek static int	ntfs_mount __P((struct mount *, char *, caddr_t,
     71   1.1  jdolecek 				struct nameidata *, struct proc *));
     72   1.1  jdolecek #else
     73   1.1  jdolecek static int	ntfs_mount __P((struct mount *, const char *, void *,
     74  1.10      fvdl 				struct nameidata *, struct proc *));
     75   1.1  jdolecek #endif
     76   1.1  jdolecek static int	ntfs_quotactl __P((struct mount *, int, uid_t, caddr_t,
     77  1.10      fvdl 				   struct proc *));
     78   1.9   thorpej static int	ntfs_root __P((struct mount *, struct vnode **));
     79  1.10      fvdl static int	ntfs_start __P((struct mount *, int, struct proc *));
     80   1.1  jdolecek static int	ntfs_statfs __P((struct mount *, struct statfs *,
     81  1.10      fvdl 				 struct proc *));
     82   1.1  jdolecek static int	ntfs_sync __P((struct mount *, int, struct ucred *,
     83  1.10      fvdl 			       struct proc *));
     84  1.10      fvdl static int	ntfs_unmount __P((struct mount *, int, struct proc *));
     85   1.1  jdolecek static int	ntfs_vget __P((struct mount *mp, ino_t ino,
     86   1.9   thorpej 			       struct vnode **vpp));
     87   1.1  jdolecek static int	ntfs_mountfs __P((struct vnode *, struct mount *,
     88  1.10      fvdl 				  struct ntfs_args *, struct proc *));
     89   1.1  jdolecek static int	ntfs_vptofh __P((struct vnode *, struct fid *));
     90   1.1  jdolecek 
     91   1.1  jdolecek #if defined(__FreeBSD__)
     92   1.1  jdolecek static int	ntfs_init __P((struct vfsconf *));
     93   1.1  jdolecek static int	ntfs_fhtovp __P((struct mount *, struct fid *,
     94   1.1  jdolecek 				 struct sockaddr *, struct vnode **,
     95   1.1  jdolecek 				 int *, struct ucred **));
     96   1.1  jdolecek #elif defined(__NetBSD__)
     97   1.1  jdolecek static void	ntfs_init __P((void));
     98   1.1  jdolecek static void	ntfs_reinit __P((void));
     99   1.1  jdolecek static void	ntfs_done __P((void));
    100   1.1  jdolecek static int	ntfs_fhtovp __P((struct mount *, struct fid *,
    101   1.9   thorpej 				 struct vnode **));
    102   1.1  jdolecek static int	ntfs_checkexp __P((struct mount *, struct mbuf *,
    103   1.1  jdolecek 				   int *, struct ucred **));
    104   1.1  jdolecek static int	ntfs_mountroot __P((void));
    105   1.1  jdolecek #else
    106   1.1  jdolecek static int	ntfs_init __P((void));
    107   1.1  jdolecek static int	ntfs_fhtovp __P((struct mount *, struct fid *,
    108   1.1  jdolecek 				 struct mbuf *, struct vnode **,
    109   1.1  jdolecek 				 int *, struct ucred **));
    110   1.1  jdolecek #endif
    111   1.1  jdolecek 
    112   1.1  jdolecek struct genfs_ops ntfs_genfsops = {
    113   1.1  jdolecek 	NULL,
    114   1.1  jdolecek 	NULL,
    115   1.1  jdolecek 	genfs_compat_gop_write,
    116   1.1  jdolecek };
    117   1.1  jdolecek 
    118   1.1  jdolecek #ifdef __NetBSD__
    119   1.1  jdolecek /*
    120   1.1  jdolecek  * Verify a remote client has export rights and return these rights via.
    121   1.1  jdolecek  * exflagsp and credanonp.
    122   1.1  jdolecek  */
    123   1.1  jdolecek static int
    124   1.1  jdolecek ntfs_checkexp(mp, nam, exflagsp, credanonp)
    125   1.1  jdolecek 	struct mount *mp;
    126   1.1  jdolecek 	struct mbuf *nam;
    127   1.1  jdolecek 	int *exflagsp;
    128   1.1  jdolecek 	struct ucred **credanonp;
    129   1.1  jdolecek {
    130   1.1  jdolecek 	struct netcred *np;
    131   1.1  jdolecek 	struct ntfsmount *ntm = VFSTONTFS(mp);
    132   1.1  jdolecek 
    133   1.1  jdolecek 	/*
    134   1.1  jdolecek 	 * Get the export permission structure for this <mp, client> tuple.
    135   1.1  jdolecek 	 */
    136   1.1  jdolecek 	np = vfs_export_lookup(mp, &ntm->ntm_export, nam);
    137   1.1  jdolecek 	if (np == NULL)
    138   1.1  jdolecek 		return (EACCES);
    139   1.1  jdolecek 
    140   1.1  jdolecek 	*exflagsp = np->netc_exflags;
    141   1.1  jdolecek 	*credanonp = &np->netc_anon;
    142   1.1  jdolecek 	return (0);
    143   1.1  jdolecek }
    144   1.1  jdolecek 
    145  1.15    atatat SYSCTL_SETUP(sysctl_vfs_ntfs_setup, "sysctl vfs.ntfs subtree setup")
    146   1.1  jdolecek {
    147  1.15    atatat 
    148  1.17    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    149  1.17    atatat 		       CTLFLAG_PERMANENT,
    150  1.15    atatat 		       CTLTYPE_NODE, "vfs", NULL,
    151  1.15    atatat 		       NULL, 0, NULL, 0,
    152  1.15    atatat 		       CTL_VFS, CTL_EOL);
    153  1.17    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    154  1.17    atatat 		       CTLFLAG_PERMANENT,
    155  1.15    atatat 		       CTLTYPE_NODE, "ntfs", NULL,
    156  1.15    atatat 		       NULL, 0, NULL, 0,
    157  1.15    atatat 		       CTL_VFS, 20, CTL_EOL);
    158  1.15    atatat 	/*
    159  1.15    atatat 	 * XXX the "20" above could be dynamic, thereby eliminating
    160  1.15    atatat 	 * one more instance of the "number to vfs" mapping problem,
    161  1.15    atatat 	 * but "20" is the order as taken from sys/mount.h
    162  1.15    atatat 	 */
    163   1.1  jdolecek }
    164   1.1  jdolecek 
    165   1.1  jdolecek static int
    166   1.1  jdolecek ntfs_mountroot()
    167   1.1  jdolecek {
    168   1.1  jdolecek 	struct mount *mp;
    169  1.10      fvdl 	struct proc *p = curproc;	/* XXX */
    170   1.1  jdolecek 	int error;
    171   1.1  jdolecek 	struct ntfs_args args;
    172   1.1  jdolecek 
    173   1.1  jdolecek 	if (root_device->dv_class != DV_DISK)
    174   1.1  jdolecek 		return (ENODEV);
    175   1.1  jdolecek 
    176   1.1  jdolecek 	/*
    177   1.1  jdolecek 	 * Get vnodes for rootdev.
    178   1.1  jdolecek 	 */
    179   1.1  jdolecek 	if (bdevvp(rootdev, &rootvp))
    180   1.1  jdolecek 		panic("ntfs_mountroot: can't setup rootvp");
    181   1.1  jdolecek 
    182   1.1  jdolecek 	if ((error = vfs_rootmountalloc(MOUNT_NTFS, "root_device", &mp))) {
    183   1.1  jdolecek 		vrele(rootvp);
    184   1.1  jdolecek 		return (error);
    185   1.1  jdolecek 	}
    186   1.1  jdolecek 
    187   1.1  jdolecek 	args.flag = 0;
    188   1.1  jdolecek 	args.uid = 0;
    189   1.1  jdolecek 	args.gid = 0;
    190   1.1  jdolecek 	args.mode = 0777;
    191   1.1  jdolecek 
    192  1.10      fvdl 	if ((error = ntfs_mountfs(rootvp, mp, &args, p)) != 0) {
    193   1.1  jdolecek 		mp->mnt_op->vfs_refcount--;
    194   1.1  jdolecek 		vfs_unbusy(mp);
    195   1.1  jdolecek 		free(mp, M_MOUNT);
    196   1.1  jdolecek 		vrele(rootvp);
    197   1.1  jdolecek 		return (error);
    198   1.1  jdolecek 	}
    199   1.1  jdolecek 
    200   1.1  jdolecek 	simple_lock(&mountlist_slock);
    201   1.1  jdolecek 	CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
    202   1.1  jdolecek 	simple_unlock(&mountlist_slock);
    203  1.10      fvdl 	(void)ntfs_statfs(mp, &mp->mnt_stat, p);
    204   1.1  jdolecek 	vfs_unbusy(mp);
    205   1.1  jdolecek 	return (0);
    206   1.1  jdolecek }
    207   1.1  jdolecek 
    208   1.1  jdolecek static void
    209   1.1  jdolecek ntfs_init()
    210   1.1  jdolecek {
    211   1.5  christos #ifdef _LKM
    212   1.5  christos 	malloc_type_attach(M_NTFSMNT);
    213   1.5  christos 	malloc_type_attach(M_NTFSNTNODE);
    214   1.5  christos 	malloc_type_attach(M_NTFSFNODE);
    215   1.5  christos 	malloc_type_attach(M_NTFSDIR);
    216   1.5  christos 	malloc_type_attach(M_NTFSNTHASH);
    217   1.6  christos 	malloc_type_attach(M_NTFSNTVATTR);
    218   1.7  christos 	malloc_type_attach(M_NTFSRDATA);
    219   1.7  christos 	malloc_type_attach(M_NTFSDECOMP);
    220   1.7  christos 	malloc_type_attach(M_NTFSRUN);
    221   1.5  christos #endif
    222   1.1  jdolecek 	ntfs_nthashinit();
    223   1.1  jdolecek 	ntfs_toupper_init();
    224   1.1  jdolecek }
    225   1.1  jdolecek 
    226   1.1  jdolecek static void
    227   1.1  jdolecek ntfs_reinit()
    228   1.1  jdolecek {
    229   1.1  jdolecek 	ntfs_nthashreinit();
    230   1.1  jdolecek }
    231   1.1  jdolecek 
    232   1.1  jdolecek static void
    233   1.1  jdolecek ntfs_done()
    234   1.1  jdolecek {
    235   1.1  jdolecek 	ntfs_nthashdone();
    236   1.5  christos #ifdef _LKM
    237   1.5  christos 	malloc_type_detach(M_NTFSMNT);
    238   1.5  christos 	malloc_type_detach(M_NTFSNTNODE);
    239   1.5  christos 	malloc_type_detach(M_NTFSFNODE);
    240   1.5  christos 	malloc_type_detach(M_NTFSDIR);
    241   1.5  christos 	malloc_type_detach(M_NTFSNTHASH);
    242   1.6  christos 	malloc_type_detach(M_NTFSNTVATTR);
    243   1.7  christos 	malloc_type_detach(M_NTFSRDATA);
    244   1.7  christos 	malloc_type_detach(M_NTFSDECOMP);
    245   1.7  christos 	malloc_type_detach(M_NTFSRUN);
    246   1.5  christos #endif
    247   1.1  jdolecek }
    248   1.1  jdolecek 
    249   1.1  jdolecek #elif defined(__FreeBSD__)
    250   1.1  jdolecek 
    251   1.1  jdolecek static int
    252   1.1  jdolecek ntfs_init (
    253   1.1  jdolecek 	struct vfsconf *vcp )
    254   1.1  jdolecek {
    255   1.1  jdolecek 	ntfs_nthashinit();
    256   1.1  jdolecek 	ntfs_toupper_init();
    257   1.1  jdolecek 	return 0;
    258   1.1  jdolecek }
    259   1.1  jdolecek 
    260   1.1  jdolecek #endif /* NetBSD */
    261   1.1  jdolecek 
    262   1.1  jdolecek static int
    263   1.1  jdolecek ntfs_mount (
    264   1.1  jdolecek 	struct mount *mp,
    265   1.1  jdolecek #if defined(__FreeBSD__)
    266   1.1  jdolecek 	char *path,
    267   1.1  jdolecek 	caddr_t data,
    268   1.1  jdolecek #else
    269   1.1  jdolecek 	const char *path,
    270   1.1  jdolecek 	void *data,
    271   1.1  jdolecek #endif
    272   1.1  jdolecek 	struct nameidata *ndp,
    273   1.1  jdolecek 	struct proc *p )
    274   1.1  jdolecek {
    275   1.1  jdolecek 	int		err = 0;
    276   1.1  jdolecek 	struct vnode	*devvp;
    277   1.1  jdolecek 	struct ntfs_args args;
    278   1.1  jdolecek 
    279   1.1  jdolecek #ifdef __FreeBSD__
    280   1.1  jdolecek 	/*
    281   1.1  jdolecek 	 * Use NULL path to flag a root mount
    282   1.1  jdolecek 	 */
    283   1.1  jdolecek 	if( path == NULL) {
    284   1.1  jdolecek 		/*
    285   1.1  jdolecek 		 ***
    286   1.1  jdolecek 		 * Mounting root file system
    287   1.1  jdolecek 		 ***
    288   1.1  jdolecek 		 */
    289   1.1  jdolecek 
    290   1.1  jdolecek 		/* Get vnode for root device*/
    291   1.1  jdolecek 		if( bdevvp( rootdev, &rootvp))
    292   1.1  jdolecek 			panic("ffs_mountroot: can't setup bdevvp for root");
    293   1.1  jdolecek 
    294   1.1  jdolecek 		/*
    295   1.1  jdolecek 		 * FS specific handling
    296   1.1  jdolecek 		 */
    297   1.1  jdolecek 		mp->mnt_flag |= MNT_RDONLY;	/* XXX globally applicable?*/
    298   1.1  jdolecek 
    299   1.1  jdolecek 		/*
    300   1.1  jdolecek 		 * Attempt mount
    301   1.1  jdolecek 		 */
    302   1.1  jdolecek 		if( ( err = ntfs_mountfs(rootvp, mp, &args, p)) != 0) {
    303   1.1  jdolecek 			/* fs specific cleanup (if any)*/
    304   1.1  jdolecek 			goto error_1;
    305   1.1  jdolecek 		}
    306   1.1  jdolecek 
    307   1.1  jdolecek 		goto dostatfs;		/* success*/
    308   1.1  jdolecek 
    309   1.1  jdolecek 	}
    310   1.1  jdolecek #endif /* FreeBSD */
    311   1.1  jdolecek 
    312   1.1  jdolecek 	if (mp->mnt_flag & MNT_GETARGS) {
    313   1.1  jdolecek 		struct ntfsmount *ntmp = VFSTONTFS(mp);
    314   1.1  jdolecek 		if (ntmp == NULL)
    315   1.1  jdolecek 			return EIO;
    316   1.1  jdolecek 		args.fspec = NULL;
    317   1.1  jdolecek 		args.uid = ntmp->ntm_uid;
    318   1.1  jdolecek 		args.gid = ntmp->ntm_gid;
    319   1.1  jdolecek 		args.mode = ntmp->ntm_mode;
    320   1.1  jdolecek 		args.flag = ntmp->ntm_flag;
    321   1.1  jdolecek 		vfs_showexport(mp, &args.export, &ntmp->ntm_export);
    322   1.1  jdolecek 		return copyout(&args, data, sizeof(args));
    323   1.1  jdolecek 	}
    324   1.1  jdolecek 	/*
    325   1.1  jdolecek 	 ***
    326   1.1  jdolecek 	 * Mounting non-root file system or updating a file system
    327   1.1  jdolecek 	 ***
    328   1.1  jdolecek 	 */
    329   1.1  jdolecek 
    330   1.1  jdolecek 	/* copy in user arguments*/
    331   1.1  jdolecek 	err = copyin(data, (caddr_t)&args, sizeof (struct ntfs_args));
    332   1.1  jdolecek 	if (err)
    333   1.1  jdolecek 		goto error_1;		/* can't get arguments*/
    334   1.1  jdolecek 
    335   1.1  jdolecek 	/*
    336   1.1  jdolecek 	 * If updating, check whether changing from read-only to
    337   1.1  jdolecek 	 * read/write; if there is no device name, that's all we do.
    338   1.1  jdolecek 	 */
    339   1.1  jdolecek 	if (mp->mnt_flag & MNT_UPDATE) {
    340   1.1  jdolecek 		/* if not updating name...*/
    341   1.1  jdolecek 		if (args.fspec == 0) {
    342   1.1  jdolecek 			/*
    343   1.1  jdolecek 			 * Process export requests.  Jumping to "success"
    344   1.1  jdolecek 			 * will return the vfs_export() error code.
    345   1.1  jdolecek 			 */
    346   1.1  jdolecek 			struct ntfsmount *ntm = VFSTONTFS(mp);
    347   1.1  jdolecek 			err = vfs_export(mp, &ntm->ntm_export, &args.export);
    348   1.1  jdolecek 			goto success;
    349   1.1  jdolecek 		}
    350   1.1  jdolecek 
    351   1.1  jdolecek 		printf("ntfs_mount(): MNT_UPDATE not supported\n");
    352   1.1  jdolecek 		err = EINVAL;
    353   1.1  jdolecek 		goto error_1;
    354   1.1  jdolecek 	}
    355   1.1  jdolecek 
    356   1.1  jdolecek 	/*
    357   1.1  jdolecek 	 * Not an update, or updating the name: look up the name
    358   1.1  jdolecek 	 * and verify that it refers to a sensible block device.
    359   1.1  jdolecek 	 */
    360   1.1  jdolecek 	NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, p);
    361   1.1  jdolecek 	err = namei(ndp);
    362   1.1  jdolecek 	if (err) {
    363   1.1  jdolecek 		/* can't get devvp!*/
    364   1.1  jdolecek 		goto error_1;
    365   1.1  jdolecek 	}
    366   1.1  jdolecek 
    367   1.1  jdolecek 	devvp = ndp->ni_vp;
    368   1.1  jdolecek 
    369   1.1  jdolecek 	if (devvp->v_type != VBLK) {
    370   1.1  jdolecek 		err = ENOTBLK;
    371   1.1  jdolecek 		goto error_2;
    372   1.1  jdolecek 	}
    373   1.1  jdolecek #ifdef __FreeBSD__
    374   1.1  jdolecek 	if (bdevsw(devvp->v_rdev) == NULL) {
    375   1.1  jdolecek #else
    376   1.1  jdolecek 	if (bdevsw_lookup(devvp->v_rdev) == NULL) {
    377   1.1  jdolecek #endif
    378   1.1  jdolecek 		err = ENXIO;
    379   1.1  jdolecek 		goto error_2;
    380   1.1  jdolecek 	}
    381   1.1  jdolecek 	if (mp->mnt_flag & MNT_UPDATE) {
    382   1.1  jdolecek #if 0
    383   1.1  jdolecek 		/*
    384   1.1  jdolecek 		 ********************
    385   1.1  jdolecek 		 * UPDATE
    386   1.1  jdolecek 		 ********************
    387   1.1  jdolecek 		 */
    388   1.1  jdolecek 
    389   1.1  jdolecek 		if (devvp != ntmp->um_devvp)
    390   1.1  jdolecek 			err = EINVAL;	/* needs translation */
    391   1.1  jdolecek 		else
    392   1.1  jdolecek 			vrele(devvp);
    393   1.1  jdolecek 		/*
    394   1.1  jdolecek 		 * Update device name only on success
    395   1.1  jdolecek 		 */
    396   1.1  jdolecek 		if( !err) {
    397   1.4  christos 			err = set_statfs_info(NULL, UIO_USERSPACE, args.fspec,
    398   1.4  christos 			    UIO_USERSPACE, mp, p);
    399   1.1  jdolecek 		}
    400   1.1  jdolecek #endif
    401   1.1  jdolecek 	} else {
    402   1.1  jdolecek 		/*
    403   1.1  jdolecek 		 ********************
    404   1.1  jdolecek 		 * NEW MOUNT
    405   1.1  jdolecek 		 ********************
    406   1.1  jdolecek 		 */
    407   1.1  jdolecek 
    408   1.1  jdolecek 		/*
    409   1.1  jdolecek 		 * Since this is a new mount, we want the names for
    410   1.1  jdolecek 		 * the device and the mount point copied in.  If an
    411   1.1  jdolecek 		 * error occurs,  the mountpoint is discarded by the
    412   1.1  jdolecek 		 * upper level code.
    413   1.1  jdolecek 		 */
    414   1.1  jdolecek 		/* Save "last mounted on" info for mount point (NULL pad)*/
    415   1.4  christos 		err = set_statfs_info(path, UIO_USERSPACE, args.fspec,
    416  1.10      fvdl 		    UIO_USERSPACE, mp, p);
    417   1.4  christos 		if ( !err) {
    418  1.10      fvdl 			err = ntfs_mountfs(devvp, mp, &args, p);
    419   1.4  christos 		}
    420   1.1  jdolecek 	}
    421   1.1  jdolecek 	if (err) {
    422   1.1  jdolecek 		goto error_2;
    423   1.1  jdolecek 	}
    424   1.1  jdolecek 
    425   1.1  jdolecek #ifdef __FreeBSD__
    426   1.1  jdolecek dostatfs:
    427   1.1  jdolecek #endif
    428   1.1  jdolecek 	/*
    429   1.1  jdolecek 	 * Initialize FS stat information in mount struct; uses both
    430   1.1  jdolecek 	 * mp->mnt_stat.f_mntonname and mp->mnt_stat.f_mntfromname
    431   1.1  jdolecek 	 *
    432   1.1  jdolecek 	 * This code is common to root and non-root mounts
    433   1.1  jdolecek 	 */
    434  1.10      fvdl 	(void)VFS_STATFS(mp, &mp->mnt_stat, p);
    435   1.1  jdolecek 
    436   1.1  jdolecek 	goto success;
    437   1.1  jdolecek 
    438   1.1  jdolecek 
    439   1.1  jdolecek error_2:	/* error with devvp held*/
    440   1.1  jdolecek 
    441   1.1  jdolecek 	/* release devvp before failing*/
    442   1.1  jdolecek 	vrele(devvp);
    443   1.1  jdolecek 
    444   1.1  jdolecek error_1:	/* no state to back out*/
    445   1.1  jdolecek 
    446   1.1  jdolecek success:
    447   1.1  jdolecek 	return(err);
    448   1.1  jdolecek }
    449   1.1  jdolecek 
    450   1.1  jdolecek /*
    451   1.1  jdolecek  * Common code for mount and mountroot
    452   1.1  jdolecek  */
    453   1.1  jdolecek int
    454  1.10      fvdl ntfs_mountfs(devvp, mp, argsp, p)
    455   1.1  jdolecek 	struct vnode *devvp;
    456   1.1  jdolecek 	struct mount *mp;
    457   1.1  jdolecek 	struct ntfs_args *argsp;
    458  1.10      fvdl 	struct proc *p;
    459   1.1  jdolecek {
    460   1.1  jdolecek 	struct buf *bp;
    461   1.1  jdolecek 	struct ntfsmount *ntmp;
    462   1.1  jdolecek 	dev_t dev = devvp->v_rdev;
    463   1.1  jdolecek 	int error, ronly, ncount, i;
    464   1.1  jdolecek 	struct vnode *vp;
    465   1.1  jdolecek 
    466   1.1  jdolecek 	/*
    467   1.1  jdolecek 	 * Disallow multiple mounts of the same device.
    468   1.1  jdolecek 	 * Disallow mounting of a device that is currently in use
    469   1.1  jdolecek 	 * (except for root, which might share swap device for miniroot).
    470   1.1  jdolecek 	 * Flush out any old buffers remaining from a previous use.
    471   1.1  jdolecek 	 */
    472   1.1  jdolecek 	error = vfs_mountedon(devvp);
    473   1.1  jdolecek 	if (error)
    474   1.1  jdolecek 		return (error);
    475   1.1  jdolecek 	ncount = vcount(devvp);
    476   1.1  jdolecek 	if (ncount > 1 && devvp != rootvp)
    477   1.1  jdolecek 		return (EBUSY);
    478  1.10      fvdl 	error = vinvalbuf(devvp, V_SAVE, p->p_ucred, p, 0, 0);
    479   1.1  jdolecek 	if (error)
    480   1.1  jdolecek 		return (error);
    481   1.1  jdolecek 
    482   1.1  jdolecek 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
    483  1.10      fvdl 	error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, p);
    484   1.1  jdolecek 	if (error)
    485   1.1  jdolecek 		return (error);
    486   1.1  jdolecek 
    487   1.1  jdolecek 	bp = NULL;
    488   1.1  jdolecek 
    489   1.1  jdolecek 	error = bread(devvp, BBLOCK, BBSIZE, NOCRED, &bp);
    490   1.1  jdolecek 	if (error)
    491   1.1  jdolecek 		goto out;
    492   1.1  jdolecek 	ntmp = malloc( sizeof *ntmp, M_NTFSMNT, M_WAITOK );
    493   1.1  jdolecek 	bzero( ntmp, sizeof *ntmp );
    494   1.1  jdolecek 	bcopy( bp->b_data, &ntmp->ntm_bootfile, sizeof(struct bootfile) );
    495   1.1  jdolecek 	brelse( bp );
    496   1.1  jdolecek 	bp = NULL;
    497   1.1  jdolecek 
    498   1.1  jdolecek 	if (strncmp(ntmp->ntm_bootfile.bf_sysid, NTFS_BBID, NTFS_BBIDLEN)) {
    499   1.1  jdolecek 		error = EINVAL;
    500   1.1  jdolecek 		dprintf(("ntfs_mountfs: invalid boot block\n"));
    501   1.1  jdolecek 		goto out;
    502   1.1  jdolecek 	}
    503   1.1  jdolecek 
    504   1.1  jdolecek 	{
    505   1.1  jdolecek 		int8_t cpr = ntmp->ntm_mftrecsz;
    506   1.1  jdolecek 		if( cpr > 0 )
    507   1.1  jdolecek 			ntmp->ntm_bpmftrec = ntmp->ntm_spc * cpr;
    508   1.1  jdolecek 		else
    509   1.1  jdolecek 			ntmp->ntm_bpmftrec = (1 << (-cpr)) / ntmp->ntm_bps;
    510   1.1  jdolecek 	}
    511   1.1  jdolecek 	dprintf(("ntfs_mountfs(): bps: %d, spc: %d, media: %x, mftrecsz: %d (%d sects)\n",
    512   1.1  jdolecek 		ntmp->ntm_bps,ntmp->ntm_spc,ntmp->ntm_bootfile.bf_media,
    513   1.1  jdolecek 		ntmp->ntm_mftrecsz,ntmp->ntm_bpmftrec));
    514   1.1  jdolecek 	dprintf(("ntfs_mountfs(): mftcn: 0x%x|0x%x\n",
    515   1.1  jdolecek 		(u_int32_t)ntmp->ntm_mftcn,(u_int32_t)ntmp->ntm_mftmirrcn));
    516   1.1  jdolecek 
    517   1.1  jdolecek 	ntmp->ntm_mountp = mp;
    518   1.1  jdolecek 	ntmp->ntm_dev = dev;
    519   1.1  jdolecek 	ntmp->ntm_devvp = devvp;
    520   1.1  jdolecek 	ntmp->ntm_uid = argsp->uid;
    521   1.1  jdolecek 	ntmp->ntm_gid = argsp->gid;
    522   1.1  jdolecek 	ntmp->ntm_mode = argsp->mode;
    523   1.1  jdolecek 	ntmp->ntm_flag = argsp->flag;
    524   1.1  jdolecek 	mp->mnt_data = ntmp;
    525   1.1  jdolecek 
    526   1.1  jdolecek 	/* set file name encode/decode hooks XXX utf-8 only for now */
    527   1.1  jdolecek 	ntmp->ntm_wget = ntfs_utf8_wget;
    528   1.1  jdolecek 	ntmp->ntm_wput = ntfs_utf8_wput;
    529   1.1  jdolecek 	ntmp->ntm_wcmp = ntfs_utf8_wcmp;
    530   1.1  jdolecek 
    531   1.1  jdolecek 	dprintf(("ntfs_mountfs(): case-%s,%s uid: %d, gid: %d, mode: %o\n",
    532   1.1  jdolecek 		(ntmp->ntm_flag & NTFS_MFLAG_CASEINS)?"insens.":"sens.",
    533   1.1  jdolecek 		(ntmp->ntm_flag & NTFS_MFLAG_ALLNAMES)?" allnames,":"",
    534   1.1  jdolecek 		ntmp->ntm_uid, ntmp->ntm_gid, ntmp->ntm_mode));
    535   1.1  jdolecek 
    536   1.1  jdolecek 	/*
    537   1.1  jdolecek 	 * We read in some system nodes to do not allow
    538   1.1  jdolecek 	 * reclaim them and to have everytime access to them.
    539   1.1  jdolecek 	 */
    540   1.1  jdolecek 	{
    541   1.1  jdolecek 		int pi[3] = { NTFS_MFTINO, NTFS_ROOTINO, NTFS_BITMAPINO };
    542   1.1  jdolecek 		for (i=0; i<3; i++) {
    543   1.9   thorpej 			error = VFS_VGET(mp, pi[i], &(ntmp->ntm_sysvn[pi[i]]));
    544   1.1  jdolecek 			if(error)
    545   1.1  jdolecek 				goto out1;
    546   1.1  jdolecek 			ntmp->ntm_sysvn[pi[i]]->v_flag |= VSYSTEM;
    547   1.1  jdolecek 			VREF(ntmp->ntm_sysvn[pi[i]]);
    548   1.1  jdolecek 			vput(ntmp->ntm_sysvn[pi[i]]);
    549   1.1  jdolecek 		}
    550   1.1  jdolecek 	}
    551   1.1  jdolecek 
    552   1.1  jdolecek 	/* read the Unicode lowercase --> uppercase translation table,
    553   1.1  jdolecek 	 * if necessary */
    554   1.1  jdolecek 	if ((error = ntfs_toupper_use(mp, ntmp)))
    555   1.1  jdolecek 		goto out1;
    556   1.1  jdolecek 
    557   1.1  jdolecek 	/*
    558   1.1  jdolecek 	 * Scan $BitMap and count free clusters
    559   1.1  jdolecek 	 */
    560   1.1  jdolecek 	error = ntfs_calccfree(ntmp, &ntmp->ntm_cfree);
    561   1.1  jdolecek 	if(error)
    562   1.1  jdolecek 		goto out1;
    563   1.1  jdolecek 
    564   1.1  jdolecek 	/*
    565   1.1  jdolecek 	 * Read and translate to internal format attribute
    566   1.1  jdolecek 	 * definition file.
    567   1.1  jdolecek 	 */
    568   1.1  jdolecek 	{
    569   1.1  jdolecek 		int num,j;
    570   1.1  jdolecek 		struct attrdef ad;
    571   1.1  jdolecek 
    572   1.1  jdolecek 		/* Open $AttrDef */
    573  1.10      fvdl 		error = VFS_VGET(mp, NTFS_ATTRDEFINO, &vp );
    574   1.1  jdolecek 		if(error)
    575   1.1  jdolecek 			goto out1;
    576   1.1  jdolecek 
    577   1.1  jdolecek 		/* Count valid entries */
    578   1.1  jdolecek 		for(num=0;;num++) {
    579   1.1  jdolecek 			error = ntfs_readattr(ntmp, VTONT(vp),
    580   1.1  jdolecek 					NTFS_A_DATA, NULL,
    581   1.1  jdolecek 					num * sizeof(ad), sizeof(ad),
    582   1.1  jdolecek 					&ad, NULL);
    583   1.1  jdolecek 			if (error)
    584   1.1  jdolecek 				goto out1;
    585   1.1  jdolecek 			if (ad.ad_name[0] == 0)
    586   1.1  jdolecek 				break;
    587   1.1  jdolecek 		}
    588   1.1  jdolecek 
    589   1.1  jdolecek 		/* Alloc memory for attribute definitions */
    590   1.1  jdolecek 		ntmp->ntm_ad = (struct ntvattrdef *) malloc(
    591   1.1  jdolecek 			num * sizeof(struct ntvattrdef),
    592   1.1  jdolecek 			M_NTFSMNT, M_WAITOK);
    593   1.1  jdolecek 
    594   1.1  jdolecek 		ntmp->ntm_adnum = num;
    595   1.1  jdolecek 
    596   1.1  jdolecek 		/* Read them and translate */
    597   1.1  jdolecek 		for(i=0;i<num;i++){
    598   1.1  jdolecek 			error = ntfs_readattr(ntmp, VTONT(vp),
    599   1.1  jdolecek 					NTFS_A_DATA, NULL,
    600   1.1  jdolecek 					i * sizeof(ad), sizeof(ad),
    601   1.1  jdolecek 					&ad, NULL);
    602   1.1  jdolecek 			if (error)
    603   1.1  jdolecek 				goto out1;
    604   1.1  jdolecek 			j = 0;
    605   1.1  jdolecek 			do {
    606   1.1  jdolecek 				ntmp->ntm_ad[i].ad_name[j] = ad.ad_name[j];
    607   1.1  jdolecek 			} while(ad.ad_name[j++]);
    608   1.1  jdolecek 			ntmp->ntm_ad[i].ad_namelen = j - 1;
    609   1.1  jdolecek 			ntmp->ntm_ad[i].ad_type = ad.ad_type;
    610   1.1  jdolecek 		}
    611   1.1  jdolecek 
    612   1.1  jdolecek 		vput(vp);
    613   1.1  jdolecek 	}
    614   1.1  jdolecek 
    615   1.1  jdolecek #if defined(__FreeBSD__)
    616   1.1  jdolecek 	mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
    617   1.1  jdolecek 	mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
    618   1.1  jdolecek #else
    619   1.1  jdolecek 	mp->mnt_stat.f_fsid.val[0] = dev;
    620   1.1  jdolecek 	mp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_NTFS);
    621   1.1  jdolecek #endif
    622   1.1  jdolecek 	mp->mnt_maxsymlinklen = 0;
    623   1.1  jdolecek 	mp->mnt_flag |= MNT_LOCAL;
    624   1.1  jdolecek 	devvp->v_specmountpoint = mp;
    625   1.1  jdolecek 	return (0);
    626   1.1  jdolecek 
    627   1.1  jdolecek out1:
    628   1.1  jdolecek 	for(i=0;i<NTFS_SYSNODESNUM;i++)
    629   1.1  jdolecek 		if(ntmp->ntm_sysvn[i]) vrele(ntmp->ntm_sysvn[i]);
    630   1.1  jdolecek 
    631   1.1  jdolecek 	if (vflush(mp,NULLVP,0))
    632   1.1  jdolecek 		dprintf(("ntfs_mountfs: vflush failed\n"));
    633   1.1  jdolecek 
    634   1.1  jdolecek out:
    635   1.1  jdolecek 	devvp->v_specmountpoint = NULL;
    636   1.1  jdolecek 	if (bp)
    637   1.1  jdolecek 		brelse(bp);
    638   1.1  jdolecek 
    639   1.1  jdolecek 	/* lock the device vnode before calling VOP_CLOSE() */
    640   1.3  jdolecek 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    641  1.10      fvdl 	(void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, NOCRED, p);
    642   1.3  jdolecek 	VOP_UNLOCK(devvp, 0);
    643   1.1  jdolecek 
    644   1.1  jdolecek 	return (error);
    645   1.1  jdolecek }
    646   1.1  jdolecek 
    647   1.1  jdolecek static int
    648   1.1  jdolecek ntfs_start (
    649   1.1  jdolecek 	struct mount *mp,
    650   1.1  jdolecek 	int flags,
    651  1.10      fvdl 	struct proc *p )
    652   1.1  jdolecek {
    653   1.1  jdolecek 	return (0);
    654   1.1  jdolecek }
    655   1.1  jdolecek 
    656   1.1  jdolecek static int
    657   1.1  jdolecek ntfs_unmount(
    658   1.1  jdolecek 	struct mount *mp,
    659   1.1  jdolecek 	int mntflags,
    660  1.10      fvdl 	struct proc *p)
    661   1.1  jdolecek {
    662   1.1  jdolecek 	struct ntfsmount *ntmp;
    663   1.1  jdolecek 	int error, ronly = 0, flags, i;
    664   1.1  jdolecek 
    665   1.1  jdolecek 	dprintf(("ntfs_unmount: unmounting...\n"));
    666   1.1  jdolecek 	ntmp = VFSTONTFS(mp);
    667   1.1  jdolecek 
    668   1.1  jdolecek 	flags = 0;
    669   1.1  jdolecek 	if(mntflags & MNT_FORCE)
    670   1.1  jdolecek 		flags |= FORCECLOSE;
    671   1.1  jdolecek 
    672   1.1  jdolecek 	dprintf(("ntfs_unmount: vflushing...\n"));
    673   1.1  jdolecek 	error = vflush(mp,NULLVP,flags | SKIPSYSTEM);
    674   1.1  jdolecek 	if (error) {
    675   1.1  jdolecek 		dprintf(("ntfs_unmount: vflush failed: %d\n",error));
    676   1.1  jdolecek 		return (error);
    677   1.1  jdolecek 	}
    678   1.1  jdolecek 
    679   1.1  jdolecek 	/* Check if only system vnodes are rest */
    680   1.1  jdolecek 	for(i=0;i<NTFS_SYSNODESNUM;i++)
    681   1.1  jdolecek 		 if((ntmp->ntm_sysvn[i]) &&
    682   1.1  jdolecek 		    (ntmp->ntm_sysvn[i]->v_usecount > 1)) return (EBUSY);
    683   1.1  jdolecek 
    684   1.1  jdolecek 	/* Dereference all system vnodes */
    685   1.1  jdolecek 	for(i=0;i<NTFS_SYSNODESNUM;i++)
    686   1.1  jdolecek 		 if(ntmp->ntm_sysvn[i]) vrele(ntmp->ntm_sysvn[i]);
    687   1.1  jdolecek 
    688   1.1  jdolecek 	/* vflush system vnodes */
    689   1.1  jdolecek 	error = vflush(mp,NULLVP,flags);
    690   1.1  jdolecek 	if (error) {
    691   1.1  jdolecek 		/* XXX should this be panic() ? */
    692   1.1  jdolecek 		printf("ntfs_unmount: vflush failed(sysnodes): %d\n",error);
    693   1.1  jdolecek 	}
    694   1.1  jdolecek 
    695   1.1  jdolecek 	/* Check if the type of device node isn't VBAD before
    696   1.1  jdolecek 	 * touching v_specinfo.  If the device vnode is revoked, the
    697   1.1  jdolecek 	 * field is NULL and touching it causes null pointer derefercence.
    698   1.1  jdolecek 	 */
    699   1.1  jdolecek 	if (ntmp->ntm_devvp->v_type != VBAD)
    700   1.1  jdolecek 		ntmp->ntm_devvp->v_specmountpoint = NULL;
    701   1.1  jdolecek 
    702  1.10      fvdl 	vinvalbuf(ntmp->ntm_devvp, V_SAVE, NOCRED, p, 0, 0);
    703   1.1  jdolecek 
    704   1.1  jdolecek 	/* lock the device vnode before calling VOP_CLOSE() */
    705   1.1  jdolecek 	VOP_LOCK(ntmp->ntm_devvp, LK_EXCLUSIVE | LK_RETRY);
    706   1.1  jdolecek 	error = VOP_CLOSE(ntmp->ntm_devvp, ronly ? FREAD : FREAD|FWRITE,
    707  1.10      fvdl 		NOCRED, p);
    708   1.3  jdolecek 	VOP_UNLOCK(ntmp->ntm_devvp, 0);
    709   1.1  jdolecek 
    710   1.1  jdolecek 	vrele(ntmp->ntm_devvp);
    711   1.1  jdolecek 
    712   1.1  jdolecek 	/* free the toupper table, if this has been last mounted ntfs volume */
    713   1.1  jdolecek 	ntfs_toupper_unuse();
    714   1.1  jdolecek 
    715   1.1  jdolecek 	dprintf(("ntfs_umount: freeing memory...\n"));
    716   1.1  jdolecek 	mp->mnt_data = NULL;
    717   1.1  jdolecek 	mp->mnt_flag &= ~MNT_LOCAL;
    718   1.1  jdolecek 	free(ntmp->ntm_ad, M_NTFSMNT);
    719   1.1  jdolecek 	FREE(ntmp, M_NTFSMNT);
    720   1.1  jdolecek 	return (error);
    721   1.1  jdolecek }
    722   1.1  jdolecek 
    723   1.1  jdolecek static int
    724   1.1  jdolecek ntfs_root(
    725   1.1  jdolecek 	struct mount *mp,
    726  1.10      fvdl 	struct vnode **vpp )
    727   1.1  jdolecek {
    728   1.1  jdolecek 	struct vnode *nvp;
    729   1.1  jdolecek 	int error = 0;
    730   1.1  jdolecek 
    731   1.1  jdolecek 	dprintf(("ntfs_root(): sysvn: %p\n",
    732   1.1  jdolecek 		VFSTONTFS(mp)->ntm_sysvn[NTFS_ROOTINO]));
    733   1.9   thorpej 	error = VFS_VGET(mp, (ino_t)NTFS_ROOTINO, &nvp);
    734   1.1  jdolecek 	if(error) {
    735   1.1  jdolecek 		printf("ntfs_root: VFS_VGET failed: %d\n",error);
    736   1.1  jdolecek 		return (error);
    737   1.1  jdolecek 	}
    738   1.1  jdolecek 
    739   1.1  jdolecek 	*vpp = nvp;
    740   1.1  jdolecek 	return (0);
    741   1.1  jdolecek }
    742   1.1  jdolecek 
    743  1.11  jdolecek /*
    744  1.11  jdolecek  * Do operations associated with quotas, not supported
    745  1.11  jdolecek  */
    746  1.11  jdolecek /* ARGSUSED */
    747   1.1  jdolecek static int
    748   1.1  jdolecek ntfs_quotactl (
    749   1.1  jdolecek 	struct mount *mp,
    750   1.1  jdolecek 	int cmds,
    751   1.1  jdolecek 	uid_t uid,
    752   1.1  jdolecek 	caddr_t arg,
    753  1.10      fvdl 	struct proc *p)
    754   1.1  jdolecek {
    755  1.11  jdolecek 
    756   1.1  jdolecek 	return EOPNOTSUPP;
    757   1.1  jdolecek }
    758   1.1  jdolecek 
    759   1.1  jdolecek int
    760   1.1  jdolecek ntfs_calccfree(
    761   1.1  jdolecek 	struct ntfsmount *ntmp,
    762   1.1  jdolecek 	cn_t *cfreep)
    763   1.1  jdolecek {
    764   1.1  jdolecek 	struct vnode *vp;
    765   1.1  jdolecek 	u_int8_t *tmp;
    766   1.1  jdolecek 	int j, error;
    767  1.16  jdolecek 	cn_t cfree = 0;
    768   1.1  jdolecek 	size_t bmsize, i;
    769   1.1  jdolecek 
    770   1.1  jdolecek 	vp = ntmp->ntm_sysvn[NTFS_BITMAPINO];
    771   1.1  jdolecek 
    772   1.1  jdolecek 	bmsize = VTOF(vp)->f_size;
    773   1.1  jdolecek 
    774   1.1  jdolecek 	tmp = (u_int8_t *) malloc(bmsize, M_TEMP, M_WAITOK);
    775   1.1  jdolecek 
    776   1.1  jdolecek 	error = ntfs_readattr(ntmp, VTONT(vp), NTFS_A_DATA, NULL,
    777   1.1  jdolecek 			       0, bmsize, tmp, NULL);
    778   1.1  jdolecek 	if (error)
    779   1.1  jdolecek 		goto out;
    780   1.1  jdolecek 
    781   1.1  jdolecek 	for(i=0;i<bmsize;i++)
    782   1.1  jdolecek 		for(j=0;j<8;j++)
    783   1.1  jdolecek 			if(~tmp[i] & (1 << j)) cfree++;
    784   1.1  jdolecek 	*cfreep = cfree;
    785   1.1  jdolecek 
    786   1.1  jdolecek     out:
    787   1.1  jdolecek 	free(tmp, M_TEMP);
    788   1.1  jdolecek 	return(error);
    789   1.1  jdolecek }
    790   1.1  jdolecek 
    791   1.1  jdolecek static int
    792   1.1  jdolecek ntfs_statfs(
    793   1.1  jdolecek 	struct mount *mp,
    794   1.1  jdolecek 	struct statfs *sbp,
    795  1.10      fvdl 	struct proc *p)
    796   1.1  jdolecek {
    797   1.1  jdolecek 	struct ntfsmount *ntmp = VFSTONTFS(mp);
    798   1.1  jdolecek 	u_int64_t mftallocated;
    799   1.1  jdolecek 
    800   1.1  jdolecek 	dprintf(("ntfs_statfs():\n"));
    801   1.1  jdolecek 
    802   1.1  jdolecek 	mftallocated = VTOF(ntmp->ntm_sysvn[NTFS_MFTINO])->f_allocated;
    803   1.1  jdolecek 
    804   1.1  jdolecek #if defined(__FreeBSD__)
    805   1.1  jdolecek 	sbp->f_type = mp->mnt_vfc->vfc_typenum;
    806   1.1  jdolecek #elif defined(__NetBSD__)
    807   1.1  jdolecek 	sbp->f_type = 0;
    808   1.1  jdolecek #else
    809   1.1  jdolecek 	sbp->f_type = MOUNT_NTFS;
    810   1.1  jdolecek #endif
    811   1.1  jdolecek 	sbp->f_bsize = ntmp->ntm_bps;
    812   1.1  jdolecek 	sbp->f_iosize = ntmp->ntm_bps * ntmp->ntm_spc;
    813   1.1  jdolecek 	sbp->f_blocks = ntmp->ntm_bootfile.bf_spv;
    814   1.1  jdolecek 	sbp->f_bfree = sbp->f_bavail = ntfs_cntobn(ntmp->ntm_cfree);
    815   1.1  jdolecek 	sbp->f_ffree = sbp->f_bfree / ntmp->ntm_bpmftrec;
    816   1.1  jdolecek 	sbp->f_files = mftallocated / ntfs_bntob(ntmp->ntm_bpmftrec) +
    817   1.1  jdolecek 		       sbp->f_ffree;
    818   1.1  jdolecek 	sbp->f_flags = mp->mnt_flag;
    819   1.4  christos 	copy_statfs_info(sbp, mp);
    820   1.1  jdolecek 	return (0);
    821   1.1  jdolecek }
    822   1.1  jdolecek 
    823   1.1  jdolecek static int
    824   1.1  jdolecek ntfs_sync (
    825   1.1  jdolecek 	struct mount *mp,
    826   1.1  jdolecek 	int waitfor,
    827   1.1  jdolecek 	struct ucred *cred,
    828  1.10      fvdl 	struct proc *p)
    829   1.1  jdolecek {
    830   1.1  jdolecek 	/*dprintf(("ntfs_sync():\n"));*/
    831   1.1  jdolecek 	return (0);
    832   1.1  jdolecek }
    833   1.1  jdolecek 
    834   1.1  jdolecek /*ARGSUSED*/
    835   1.1  jdolecek static int
    836   1.1  jdolecek ntfs_fhtovp(
    837   1.1  jdolecek #if defined(__FreeBSD__)
    838   1.1  jdolecek 	struct mount *mp,
    839   1.1  jdolecek 	struct fid *fhp,
    840   1.1  jdolecek 	struct sockaddr *nam,
    841   1.1  jdolecek 	struct vnode **vpp,
    842   1.1  jdolecek 	int *exflagsp,
    843   1.1  jdolecek 	struct ucred **credanonp)
    844   1.1  jdolecek #elif defined(__NetBSD__)
    845   1.1  jdolecek 	struct mount *mp,
    846   1.1  jdolecek 	struct fid *fhp,
    847   1.9   thorpej 	struct vnode **vpp)
    848   1.1  jdolecek #else
    849   1.1  jdolecek 	struct mount *mp,
    850   1.1  jdolecek 	struct fid *fhp,
    851   1.1  jdolecek 	struct mbuf *nam,
    852   1.1  jdolecek 	struct vnode **vpp,
    853   1.1  jdolecek 	int *exflagsp,
    854   1.1  jdolecek 	struct ucred **credanonp)
    855   1.1  jdolecek #endif
    856   1.1  jdolecek {
    857   1.1  jdolecek 	struct ntfid *ntfhp = (struct ntfid *)fhp;
    858   1.1  jdolecek 	int error;
    859   1.1  jdolecek 
    860   1.1  jdolecek 	ddprintf(("ntfs_fhtovp(): %s: %d\n", mp->mnt_stat.f_mntonname,
    861   1.1  jdolecek 		ntfhp->ntfid_ino));
    862   1.1  jdolecek 
    863   1.1  jdolecek 	error = ntfs_vgetex(mp, ntfhp->ntfid_ino, ntfhp->ntfid_attr, NULL,
    864  1.10      fvdl 			LK_EXCLUSIVE | LK_RETRY, 0, curproc, vpp); /* XXX */
    865   1.1  jdolecek 	if (error != 0) {
    866   1.1  jdolecek 		*vpp = NULLVP;
    867   1.1  jdolecek 		return (error);
    868   1.1  jdolecek 	}
    869   1.1  jdolecek 
    870   1.1  jdolecek 	/* XXX as unlink/rmdir/mkdir/creat are not currently possible
    871   1.1  jdolecek 	 * with NTFS, we don't need to check anything else for now */
    872   1.1  jdolecek 	return (0);
    873   1.1  jdolecek }
    874   1.1  jdolecek 
    875   1.1  jdolecek static int
    876   1.1  jdolecek ntfs_vptofh(
    877   1.1  jdolecek 	struct vnode *vp,
    878   1.1  jdolecek 	struct fid *fhp)
    879   1.1  jdolecek {
    880   1.1  jdolecek 	struct ntnode *ntp;
    881   1.1  jdolecek 	struct ntfid *ntfhp;
    882   1.1  jdolecek 	struct fnode *fn;
    883   1.1  jdolecek 
    884   1.1  jdolecek 	ddprintf(("ntfs_fhtovp(): %s: %p\n", vp->v_mount->mnt_stat.f_mntonname,
    885   1.1  jdolecek 		vp));
    886   1.1  jdolecek 
    887   1.1  jdolecek 	fn = VTOF(vp);
    888   1.1  jdolecek 	ntp = VTONT(vp);
    889   1.1  jdolecek 	ntfhp = (struct ntfid *)fhp;
    890   1.1  jdolecek 	ntfhp->ntfid_len = sizeof(struct ntfid);
    891   1.1  jdolecek 	ntfhp->ntfid_ino = ntp->i_number;
    892   1.1  jdolecek 	ntfhp->ntfid_attr = fn->f_attrtype;
    893   1.1  jdolecek #ifdef notyet
    894   1.1  jdolecek 	ntfhp->ntfid_gen = ntp->i_gen;
    895   1.1  jdolecek #endif
    896   1.1  jdolecek 	return (0);
    897   1.1  jdolecek }
    898   1.1  jdolecek 
    899   1.1  jdolecek int
    900   1.1  jdolecek ntfs_vgetex(
    901   1.1  jdolecek 	struct mount *mp,
    902   1.1  jdolecek 	ino_t ino,
    903   1.1  jdolecek 	u_int32_t attrtype,
    904   1.1  jdolecek 	char *attrname,
    905   1.1  jdolecek 	u_long lkflags,
    906   1.1  jdolecek 	u_long flags,
    907  1.10      fvdl 	struct proc *p,
    908   1.1  jdolecek 	struct vnode **vpp)
    909   1.1  jdolecek {
    910   1.1  jdolecek 	int error;
    911   1.1  jdolecek 	struct ntfsmount *ntmp;
    912   1.1  jdolecek 	struct ntnode *ip;
    913   1.1  jdolecek 	struct fnode *fp;
    914   1.1  jdolecek 	struct vnode *vp;
    915  1.13  christos 	enum vtype f_type = VBAD;
    916   1.1  jdolecek 
    917   1.1  jdolecek 	dprintf(("ntfs_vgetex: ino: %d, attr: 0x%x:%s, lkf: 0x%lx, f: 0x%lx\n",
    918   1.1  jdolecek 		ino, attrtype, attrname?attrname:"", (u_long)lkflags,
    919   1.1  jdolecek 		(u_long)flags ));
    920   1.1  jdolecek 
    921   1.1  jdolecek 	ntmp = VFSTONTFS(mp);
    922   1.1  jdolecek 	*vpp = NULL;
    923   1.1  jdolecek 
    924   1.1  jdolecek 	/* Get ntnode */
    925   1.1  jdolecek 	error = ntfs_ntlookup(ntmp, ino, &ip);
    926   1.1  jdolecek 	if (error) {
    927   1.1  jdolecek 		printf("ntfs_vget: ntfs_ntget failed\n");
    928   1.1  jdolecek 		return (error);
    929   1.1  jdolecek 	}
    930   1.1  jdolecek 
    931   1.1  jdolecek 	/* It may be not initialized fully, so force load it */
    932   1.1  jdolecek 	if (!(flags & VG_DONTLOADIN) && !(ip->i_flag & IN_LOADED)) {
    933   1.1  jdolecek 		error = ntfs_loadntnode(ntmp, ip);
    934   1.1  jdolecek 		if(error) {
    935   1.1  jdolecek 			printf("ntfs_vget: CAN'T LOAD ATTRIBUTES FOR INO: %d\n",
    936   1.1  jdolecek 			       ip->i_number);
    937   1.1  jdolecek 			ntfs_ntput(ip);
    938   1.1  jdolecek 			return (error);
    939   1.1  jdolecek 		}
    940   1.1  jdolecek 	}
    941   1.1  jdolecek 
    942   1.1  jdolecek 	error = ntfs_fget(ntmp, ip, attrtype, attrname, &fp);
    943   1.1  jdolecek 	if (error) {
    944   1.1  jdolecek 		printf("ntfs_vget: ntfs_fget failed\n");
    945   1.1  jdolecek 		ntfs_ntput(ip);
    946   1.1  jdolecek 		return (error);
    947   1.1  jdolecek 	}
    948   1.1  jdolecek 
    949   1.1  jdolecek 	if (!(flags & VG_DONTVALIDFN) && !(fp->f_flag & FN_VALID)) {
    950   1.1  jdolecek 		if ((ip->i_frflag & NTFS_FRFLAG_DIR) &&
    951   1.1  jdolecek 		    (fp->f_attrtype == NTFS_A_DATA && fp->f_attrname == NULL)) {
    952   1.1  jdolecek 			f_type = VDIR;
    953   1.1  jdolecek 		} else if (flags & VG_EXT) {
    954   1.1  jdolecek 			f_type = VNON;
    955   1.1  jdolecek 			fp->f_size = fp->f_allocated = 0;
    956   1.1  jdolecek 		} else {
    957   1.1  jdolecek 			f_type = VREG;
    958   1.1  jdolecek 
    959   1.1  jdolecek 			error = ntfs_filesize(ntmp, fp,
    960   1.1  jdolecek 					      &fp->f_size, &fp->f_allocated);
    961   1.1  jdolecek 			if (error) {
    962   1.1  jdolecek 				ntfs_ntput(ip);
    963   1.1  jdolecek 				return (error);
    964   1.1  jdolecek 			}
    965   1.1  jdolecek 		}
    966   1.1  jdolecek 
    967   1.1  jdolecek 		fp->f_flag |= FN_VALID;
    968   1.1  jdolecek 	}
    969   1.1  jdolecek 
    970   1.1  jdolecek 	/*
    971   1.1  jdolecek 	 * We may be calling vget() now. To avoid potential deadlock, we need
    972   1.1  jdolecek 	 * to release ntnode lock, since due to locking order vnode
    973   1.1  jdolecek 	 * lock has to be acquired first.
    974   1.1  jdolecek 	 * ntfs_fget() bumped ntnode usecount, so ntnode won't be recycled
    975   1.1  jdolecek 	 * prematurely.
    976   1.1  jdolecek 	 */
    977   1.1  jdolecek 	ntfs_ntput(ip);
    978   1.1  jdolecek 
    979   1.1  jdolecek 	if (FTOV(fp)) {
    980   1.1  jdolecek 		/* vget() returns error if the vnode has been recycled */
    981   1.9   thorpej 		if (vget(FTOV(fp), lkflags) == 0) {
    982   1.1  jdolecek 			*vpp = FTOV(fp);
    983   1.1  jdolecek 			return (0);
    984   1.1  jdolecek 		}
    985   1.1  jdolecek 	}
    986   1.1  jdolecek 
    987   1.1  jdolecek 	error = getnewvnode(VT_NTFS, ntmp->ntm_mountp, ntfs_vnodeop_p, &vp);
    988   1.1  jdolecek 	if(error) {
    989   1.1  jdolecek 		ntfs_frele(fp);
    990   1.1  jdolecek 		ntfs_ntput(ip);
    991   1.1  jdolecek 		return (error);
    992   1.1  jdolecek 	}
    993   1.1  jdolecek 	dprintf(("ntfs_vget: vnode: %p for ntnode: %d\n", vp,ino));
    994   1.1  jdolecek 
    995   1.1  jdolecek #ifdef __FreeBSD__
    996   1.1  jdolecek 	lockinit(&fp->f_lock, PINOD, "fnode", 0, 0);
    997   1.1  jdolecek #endif
    998   1.1  jdolecek 	fp->f_vp = vp;
    999   1.1  jdolecek 	vp->v_data = fp;
   1000  1.14  christos 	if (f_type != VBAD)
   1001  1.14  christos 		vp->v_type = f_type;
   1002   1.1  jdolecek 
   1003   1.1  jdolecek 	if (ino == NTFS_ROOTINO)
   1004   1.1  jdolecek 		vp->v_flag |= VROOT;
   1005   1.1  jdolecek 
   1006   1.1  jdolecek 	if (lkflags & LK_TYPE_MASK) {
   1007   1.3  jdolecek 		error = vn_lock(vp, lkflags);
   1008   1.1  jdolecek 		if (error) {
   1009   1.1  jdolecek 			vput(vp);
   1010   1.1  jdolecek 			return (error);
   1011   1.1  jdolecek 		}
   1012   1.1  jdolecek 	}
   1013   1.1  jdolecek 
   1014   1.1  jdolecek 	genfs_node_init(vp, &ntfs_genfsops);
   1015   1.1  jdolecek 	VREF(ip->i_devvp);
   1016   1.1  jdolecek 	*vpp = vp;
   1017   1.1  jdolecek 	return (0);
   1018   1.1  jdolecek }
   1019   1.1  jdolecek 
   1020   1.1  jdolecek static int
   1021   1.1  jdolecek ntfs_vget(
   1022   1.1  jdolecek 	struct mount *mp,
   1023   1.1  jdolecek 	ino_t ino,
   1024  1.10      fvdl 	struct vnode **vpp)
   1025   1.1  jdolecek {
   1026   1.1  jdolecek 	return ntfs_vgetex(mp, ino, NTFS_A_DATA, NULL,
   1027  1.10      fvdl 			LK_EXCLUSIVE | LK_RETRY, 0, curproc, vpp); /* XXX */
   1028   1.1  jdolecek }
   1029   1.1  jdolecek 
   1030   1.1  jdolecek #if defined(__FreeBSD__)
   1031   1.1  jdolecek static struct vfsops ntfs_vfsops = {
   1032   1.1  jdolecek 	ntfs_mount,
   1033   1.1  jdolecek 	ntfs_start,
   1034   1.1  jdolecek 	ntfs_unmount,
   1035   1.1  jdolecek 	ntfs_root,
   1036   1.1  jdolecek 	ntfs_quotactl,
   1037   1.1  jdolecek 	ntfs_statfs,
   1038   1.1  jdolecek 	ntfs_sync,
   1039   1.1  jdolecek 	ntfs_vget,
   1040   1.1  jdolecek 	ntfs_fhtovp,
   1041   1.1  jdolecek 	ntfs_vptofh,
   1042   1.1  jdolecek 	ntfs_init,
   1043   1.1  jdolecek 	NULL
   1044   1.1  jdolecek };
   1045   1.1  jdolecek VFS_SET(ntfs_vfsops, ntfs, 0);
   1046   1.1  jdolecek #elif defined(__NetBSD__)
   1047   1.1  jdolecek extern const struct vnodeopv_desc ntfs_vnodeop_opv_desc;
   1048   1.1  jdolecek 
   1049   1.1  jdolecek const struct vnodeopv_desc * const ntfs_vnodeopv_descs[] = {
   1050   1.1  jdolecek 	&ntfs_vnodeop_opv_desc,
   1051   1.1  jdolecek 	NULL,
   1052   1.1  jdolecek };
   1053   1.1  jdolecek 
   1054   1.1  jdolecek struct vfsops ntfs_vfsops = {
   1055   1.1  jdolecek 	MOUNT_NTFS,
   1056   1.1  jdolecek 	ntfs_mount,
   1057   1.1  jdolecek 	ntfs_start,
   1058   1.1  jdolecek 	ntfs_unmount,
   1059   1.1  jdolecek 	ntfs_root,
   1060   1.1  jdolecek 	ntfs_quotactl,
   1061   1.1  jdolecek 	ntfs_statfs,
   1062   1.1  jdolecek 	ntfs_sync,
   1063   1.1  jdolecek 	ntfs_vget,
   1064   1.1  jdolecek 	ntfs_fhtovp,
   1065   1.1  jdolecek 	ntfs_vptofh,
   1066   1.1  jdolecek 	ntfs_init,
   1067   1.1  jdolecek 	ntfs_reinit,
   1068   1.1  jdolecek 	ntfs_done,
   1069  1.15    atatat 	NULL,
   1070   1.1  jdolecek 	ntfs_mountroot,
   1071   1.1  jdolecek 	ntfs_checkexp,
   1072   1.1  jdolecek 	ntfs_vnodeopv_descs,
   1073   1.1  jdolecek };
   1074   1.1  jdolecek #endif
   1075