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