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