]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/isofs/cd9660/cd9660_util.c
xnu-792.10.96.tar.gz
[apple/xnu.git] / bsd / isofs / cd9660 / cd9660_util.c
index dc724462a30fe6b7d695c188d0dda33d1a81cc40..89e0cd57a279989d114f96acc1b08db8eece334f 100644 (file)
@@ -1,24 +1,21 @@
 /*
- * Copyright (c) 2000-2001 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
+ * The contents of this file constitute Original Code as defined in and
+ * are subject to the Apple Public Source License Version 1.1 (the
+ * "License").  You may not use this file except in compliance with the
+ * License.  Please obtain a copy of the License at
+ * http://www.apple.com/publicsource and read it before using this file.
  * 
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
- * 
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * This Original Code and all software distributed under the License are
+ * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
+ * License for the specific language governing rights and limitations
+ * under the License.
  * 
  * @APPLE_LICENSE_HEADER_END@
  */
@@ -79,6 +76,7 @@
 #include <sys/stat.h>
 #include <sys/buf.h>
 #include <sys/proc.h>
+#include <sys/kauth.h>
 #include <sys/conf.h>
 #include <sys/utfconv.h>
 #include <miscfs/specfs/specdev.h> /* XXX */
@@ -87,7 +85,6 @@
 #include <sys/dir.h>
 #include <sys/attr.h>
 #include <kern/assert.h>
-#include <architecture/byte_order.h>
 
 #include <isofs/cd9660/iso.h>
 #include <isofs/cd9660/cd9660_node.h>
@@ -98,9 +95,7 @@
  * Note: Version number plus ';' may be omitted.
  */
 int
-isofncmp(fn, fnlen, isofn, isolen)
-       u_char *fn, *isofn;
-       int fnlen, isolen;
+isofncmp(u_char *fn, int fnlen, u_char *isofn, int isolen)
 {
        int i, j;
        char c;
@@ -160,14 +155,14 @@ isofncmp(fn, fnlen, isofn, isolen)
 /*
  * translate and compare a UCS-2 filename
  * Note: Version number plus ';' may be omitted.
+ *
+ * The name pointed to by "fn" is the search name, whose characters are
+ * in native endian order.  The name "ucsfn" is the on-disk name, whose
+ * characters are in big endian order.
  */
 
 int
-ucsfncmp(fn, fnlen, ucsfn, ucslen)
-       u_int16_t *fn;
-       int fnlen;
-       u_int16_t *ucsfn;
-       int ucslen;
+ucsfncmp(u_int16_t *fn, int fnlen, u_int16_t *ucsfn, int ucslen)
 {
        int i, j;
        u_int16_t c;
@@ -179,7 +174,7 @@ ucsfncmp(fn, fnlen, ucsfn, ucslen)
        while (--fnlen >= 0) {
                if (--ucslen < 0)
                        return *fn;
-               if ((c = *ucsfn++) == UCS_SEPARATOR2) {
+               if ((c = OSSwapBigToHostInt16(*ucsfn++)) == UCS_SEPARATOR2) {
                        switch (*fn++) {
                        default:
                                return *--fn;
@@ -193,7 +188,7 @@ ucsfncmp(fn, fnlen, ucsfn, ucslen)
                                        return -1;
                                }
                        }
-                       for (j = 0; --ucslen >= 0; j = j * 10 + *ucsfn++ - '0');
+                       for (j = 0; --ucslen >= 0; j = j * 10 + OSSwapBigToHostInt16(*ucsfn++) - '0');
                        return i - j;
                }
                if (c != *fn)
@@ -204,10 +199,10 @@ ucsfncmp(fn, fnlen, ucsfn, ucslen)
                switch (*ucsfn) {
                default:
                        return -1;
-               case UCS_SEPARATOR1:
-                       if (ucsfn[1] != UCS_SEPARATOR2)
+               case OSSwapHostToBigConstInt16(UCS_SEPARATOR1):
+                       if (ucsfn[1] != OSSwapHostToBigConstInt16(UCS_SEPARATOR2))
                                return -1;
-               case UCS_SEPARATOR2:
+               case OSSwapHostToBigConstInt16(UCS_SEPARATOR2):
                        return 0;
                }
        }
@@ -219,14 +214,20 @@ ucsfncmp(fn, fnlen, ucsfn, ucslen)
  * translate a filename
  */
 void
-isofntrans(infn, infnlen, outfn, outfnlen, original)
-       u_char *infn, *outfn;
-       int infnlen;
-       u_short *outfnlen;
-       int original;
+isofntrans(u_char *infn, int infnlen, u_char *outfn, u_short *outfnlen,
+               int original, int assoc)
 {
        int fnidx = 0;
        
+       /*
+        * Add a "._" prefix for associated files
+        */
+       if (assoc) {
+               *outfn++ = ASSOCCHAR1;
+               *outfn++ = ASSOCCHAR2;
+               fnidx += 2;
+               infnlen +=2;
+       }
        for (; fnidx < infnlen; fnidx++) {
                char c = *infn++;
                
@@ -259,12 +260,8 @@ isofntrans(infn, infnlen, outfn, outfnlen, original)
  * translate a UCS-2 filename to UTF-8
  */
 void
-ucsfntrans(infn, infnlen, outfn, outfnlen, dir)
-       u_int16_t *infn;
-       int infnlen;
-       u_char *outfn;
-       u_short *outfnlen;
-       int dir;
+ucsfntrans(u_int16_t *infn, int infnlen, u_char *outfn, u_short *outfnlen,
+               int dir, int assoc)
 {
        if (infnlen == 1) {
                strcpy(outfn, "..");
@@ -281,13 +278,20 @@ ucsfntrans(infn, infnlen, outfn, outfnlen, dir)
                fnidx = infnlen/2;
                flags = 0;
 
+               /*
+                * Add a "._" prefix for associated files
+                */
+               if (assoc) {
+                       *outfn++ = ASSOCCHAR1;
+                       *outfn++ = ASSOCCHAR2;
+               }
                if (!dir) {
                        /* strip file version number */
                        for (fnidx--; fnidx > 0; fnidx--) {
                                /* stop when ';' is found */
-                               if (infn[fnidx] == UCS_SEPARATOR2) {
+                               if (infn[fnidx] == OSSwapHostToBigConstInt16(UCS_SEPARATOR2)) {
                                        /* drop dangling dot */
-                                       if (fnidx > 0 && infn[fnidx-1] == UCS_SEPARATOR1)
+                                       if (fnidx > 0 && infn[fnidx-1] == OSSwapHostToBigConstInt16(UCS_SEPARATOR1))
                                                fnidx--;
                                        break;
                                }
@@ -301,7 +305,7 @@ ucsfntrans(infn, infnlen, outfn, outfnlen, dir)
                        flags |= UTF_REVERSE_ENDIAN;
 
                (void) utf8_encodestr(infn, fnidx * 2, outfn, &outbytes, ISO_JOLIET_NAMEMAX, 0, flags);
-               *outfnlen = outbytes;
+               *outfnlen = assoc ? outbytes + 2 : outbytes;
        }
 }
 
@@ -310,25 +314,24 @@ ucsfntrans(infn, infnlen, outfn, outfnlen, dir)
  * count the number of children by enumerating the directory
  */
 static int
-isochildcount(vdp, dircnt, filcnt)
-       struct vnode *vdp;
-       int *dircnt;
-       int *filcnt;
+isochildcount(struct vnode *vdp, int *dircnt, int *filcnt)
 {
        struct iso_node *dp;
        struct buf *bp = NULL;
+       struct iso_mnt *imp;
        struct iso_directory_record *ep;
-       u_long bmask;
+       uint32_t bmask;
        int error = 0;
        int reclen;
        int dirs, files;
        int blkoffset;
        int logblksize;
-       long diroffset;
+       int32_t diroffset;
 
        dp = VTOI(vdp);
-       bmask = dp->i_mnt->im_bmask;
-       logblksize = dp->i_mnt->logical_block_size;
+       imp = dp->i_mnt;
+       bmask = imp->im_sector_size - 1;
+       logblksize = imp->im_sector_size;
        blkoffset = diroffset = 0;
        dirs = files = 0;
 
@@ -339,14 +342,14 @@ isochildcount(vdp, dircnt, filcnt)
                 */
                if ((diroffset & bmask) == 0) {
                        if (bp != NULL)
-                               brelse(bp);
-                       if ( (error = VOP_BLKATOFF(vdp, diroffset, NULL, &bp)) )
+                               buf_brelse(bp);
+                       if ( (error = cd9660_blkatoff(vdp, SECTOFF(imp, diroffset), NULL, &bp)) )
                                break;
                        blkoffset = 0;
                }
 
                ep = (struct iso_directory_record *)
-                       ((char *)bp->b_data + blkoffset);
+                       (buf_dataptr(bp) + blkoffset);
 
                reclen = isonum_711(ep->length);
                if (reclen == 0) {
@@ -363,6 +366,15 @@ isochildcount(vdp, dircnt, filcnt)
                        break;
                }
 
+               /*
+                * Some poorly mastered discs have an incorrect directory
+                * file size.  If the '.' entry has a better size (bigger)
+                * then use that instead.
+                */
+               if ((diroffset == 0) && (isonum_733(ep->size) > dp->i_size)) {
+                       dp->i_size = isonum_733(ep->size);
+               }
+
                if ( isonum_711(ep->flags) & directoryBit )
                        dirs++;
                else if ((isonum_711(ep->flags) & associatedBit) == 0)
@@ -373,7 +385,7 @@ isochildcount(vdp, dircnt, filcnt)
        }
 
        if (bp)
-               brelse (bp);
+               buf_brelse (bp);
 
        *dircnt = dirs;
        *filcnt = files;
@@ -382,47 +394,33 @@ isochildcount(vdp, dircnt, filcnt)
 }
 
 
-/*
- * There are two ways to qualify for ownership rights on an object:
- *
- * 1. Your UID matches the UID of the vnode
- * 2. You are root
- *
- */
-static int cd9660_owner_rights(uid_t owner, struct iso_mnt *imp, struct ucred *cred, struct proc *p, int invokesuperuserstatus) {
-    return ((cred->cr_uid == owner) ||                                                                                                         /* [1] */
-               (invokesuperuserstatus && (suser(cred, &p->p_acflag) == 0))) ? 0 : EPERM;                       /* [2] */
-}
-
-
-
-static unsigned long DerivePermissionSummary(uid_t owner, gid_t group, mode_t obj_mode, struct iso_mnt *imp, struct ucred *cred, struct proc *p) {
-    register gid_t *gp;
-    unsigned long permissions;
-    int i;
+static uint32_t
+DerivePermissionSummary(uid_t owner, gid_t group, mode_t obj_mode, __unused struct iso_mnt *imp)
+{
+    kauth_cred_t cred = kauth_cred_get();
+    uint32_t permissions;
+    int is_member;
 
      /* User id 0 (root) always gets access. */
-     if (cred->cr_uid == 0) {
+     if (!suser(cred, NULL)) {
          permissions = R_OK | X_OK;
          goto Exit;
      };
 
     /* Otherwise, check the owner. */
-    if (cd9660_owner_rights(owner, imp, cred, p, 0) == 0) {
-        permissions = ((unsigned long)obj_mode & S_IRWXU) >> 6;
+    if (owner == kauth_cred_getuid(cred)) {
+        permissions = ((uint32_t)obj_mode & S_IRWXU) >> 6;
         goto Exit;
     }
 
     /* Otherwise, check the groups. */
-    for (i = 0, gp = cred->cr_groups; i < cred->cr_ngroups; i++, gp++) {
-        if (group == *gp) {
-            permissions = ((unsigned long)obj_mode & S_IRWXG) >> 3;
+               if (kauth_cred_ismember_gid(cred, group, &is_member) == 0 && is_member) {
+                       permissions = ((uint32_t)obj_mode & S_IRWXG) >> 3;
                        goto Exit;
-        }
-    };
+               }
 
     /* Otherwise, settle for 'others' access. */
-    permissions = (unsigned long)obj_mode & S_IRWXO;
+    permissions = (uint32_t)obj_mode & S_IRWXO;
 
 Exit:
        return permissions & ~W_OK;     /* Write access is always impossible */
@@ -434,6 +432,7 @@ attrcalcsize(struct attrlist *attrlist)
 {
        int size;
        attrgroup_t a;
+       boolean_t is_64_bit = proc_is64bit(current_proc());
        
 #if ((ATTR_CMN_NAME                    | ATTR_CMN_DEVID                        | ATTR_CMN_FSID                         | ATTR_CMN_OBJTYPE              | \
       ATTR_CMN_OBJTAG          | ATTR_CMN_OBJID                        | ATTR_CMN_OBJPERMANENTID       | ATTR_CMN_PAROBJID             | \
@@ -483,55 +482,80 @@ attrcalcsize(struct attrlist *attrlist)
         if (a & ATTR_CMN_OBJPERMANENTID) size += sizeof(fsobj_id_t);
                if (a & ATTR_CMN_PAROBJID) size += sizeof(fsobj_id_t);
                if (a & ATTR_CMN_SCRIPT) size += sizeof(text_encoding_t);
-               if (a & ATTR_CMN_CRTIME) size += sizeof(struct timespec);
-               if (a & ATTR_CMN_MODTIME) size += sizeof(struct timespec);
-               if (a & ATTR_CMN_CHGTIME) size += sizeof(struct timespec);
-               if (a & ATTR_CMN_ACCTIME) size += sizeof(struct timespec);
-               if (a & ATTR_CMN_BKUPTIME) size += sizeof(struct timespec);
+               if (a & ATTR_CMN_CRTIME) {
+            if (is_64_bit) 
+                size += sizeof(struct user_timespec);
+            else 
+                size += sizeof(struct timespec);
+               }
+               if (a & ATTR_CMN_MODTIME) {
+            if (is_64_bit) 
+                size += sizeof(struct user_timespec);
+            else 
+                size += sizeof(struct timespec);
+               }
+               if (a & ATTR_CMN_CHGTIME) {
+            if (is_64_bit) 
+                size += sizeof(struct user_timespec);
+            else 
+                size += sizeof(struct timespec);
+               }
+               if (a & ATTR_CMN_ACCTIME) {
+            if (is_64_bit) 
+                size += sizeof(struct user_timespec);
+            else 
+                size += sizeof(struct timespec);
+               }
+               if (a & ATTR_CMN_BKUPTIME) {
+            if (is_64_bit) 
+                size += sizeof(struct user_timespec);
+            else 
+                size += sizeof(struct timespec);
+               }
                if (a & ATTR_CMN_FNDRINFO) size += 32 * sizeof(u_int8_t);
                if (a & ATTR_CMN_OWNERID) size += sizeof(uid_t);
                if (a & ATTR_CMN_GRPID) size += sizeof(gid_t);
-               if (a & ATTR_CMN_ACCESSMASK) size += sizeof(u_long);
-               if (a & ATTR_CMN_NAMEDATTRCOUNT) size += sizeof(u_long);
+               if (a & ATTR_CMN_ACCESSMASK) size += sizeof(uint32_t);
+               if (a & ATTR_CMN_NAMEDATTRCOUNT) size += sizeof(uint32_t);
                if (a & ATTR_CMN_NAMEDATTRLIST) size += sizeof(struct attrreference);
-               if (a & ATTR_CMN_FLAGS) size += sizeof(u_long);
-               if (a & ATTR_CMN_USERACCESS) size += sizeof(u_long);
+               if (a & ATTR_CMN_FLAGS) size += sizeof(uint32_t);
+               if (a & ATTR_CMN_USERACCESS) size += sizeof(uint32_t);
        };
        if ((a = attrlist->volattr) != 0) {
-               if (a & ATTR_VOL_FSTYPE) size += sizeof(u_long);
-               if (a & ATTR_VOL_SIGNATURE) size += sizeof(u_long);
+               if (a & ATTR_VOL_FSTYPE) size += sizeof(uint32_t);
+               if (a & ATTR_VOL_SIGNATURE) size += sizeof(uint32_t);
                if (a & ATTR_VOL_SIZE) size += sizeof(off_t);
                if (a & ATTR_VOL_SPACEFREE) size += sizeof(off_t);
                if (a & ATTR_VOL_SPACEAVAIL) size += sizeof(off_t);
                if (a & ATTR_VOL_MINALLOCATION) size += sizeof(off_t);
                if (a & ATTR_VOL_ALLOCATIONCLUMP) size += sizeof(off_t);
-               if (a & ATTR_VOL_IOBLOCKSIZE) size += sizeof(size_t);
-               if (a & ATTR_VOL_OBJCOUNT) size += sizeof(u_long);
-               if (a & ATTR_VOL_FILECOUNT) size += sizeof(u_long);
-               if (a & ATTR_VOL_DIRCOUNT) size += sizeof(u_long);
-               if (a & ATTR_VOL_MAXOBJCOUNT) size += sizeof(u_long);
+               if (a & ATTR_VOL_IOBLOCKSIZE) size += sizeof(uint32_t);
+               if (a & ATTR_VOL_OBJCOUNT) size += sizeof(uint32_t);
+               if (a & ATTR_VOL_FILECOUNT) size += sizeof(uint32_t);
+               if (a & ATTR_VOL_DIRCOUNT) size += sizeof(uint32_t);
+               if (a & ATTR_VOL_MAXOBJCOUNT) size += sizeof(uint32_t);
                if (a & ATTR_VOL_MOUNTPOINT) size += sizeof(struct attrreference);
         if (a & ATTR_VOL_NAME) size += sizeof(struct attrreference);
-        if (a & ATTR_VOL_MOUNTFLAGS) size += sizeof(u_long);
+               if (a & ATTR_VOL_MOUNTFLAGS) size += sizeof(uint32_t);
         if (a & ATTR_VOL_MOUNTEDDEVICE) size += sizeof(struct attrreference);
         if (a & ATTR_VOL_ENCODINGSUSED) size += sizeof(unsigned long long);
         if (a & ATTR_VOL_CAPABILITIES) size += sizeof(vol_capabilities_attr_t);
         if (a & ATTR_VOL_ATTRIBUTES) size += sizeof(vol_attributes_attr_t);
        };
        if ((a = attrlist->dirattr) != 0) {
-               if (a & ATTR_DIR_LINKCOUNT) size += sizeof(u_long);
-               if (a & ATTR_DIR_ENTRYCOUNT) size += sizeof(u_long);
-               if (a & ATTR_DIR_MOUNTSTATUS) size += sizeof(u_long);
+               if (a & ATTR_DIR_LINKCOUNT) size += sizeof(uint32_t);
+               if (a & ATTR_DIR_ENTRYCOUNT) size += sizeof(uint32_t);
+               if (a & ATTR_DIR_MOUNTSTATUS) size += sizeof(uint32_t);
        };
        if ((a = attrlist->fileattr) != 0) {
-               if (a & ATTR_FILE_LINKCOUNT) size += sizeof(u_long);
+               if (a & ATTR_FILE_LINKCOUNT) size += sizeof(uint32_t);
                if (a & ATTR_FILE_TOTALSIZE) size += sizeof(off_t);
                if (a & ATTR_FILE_ALLOCSIZE) size += sizeof(off_t);
-               if (a & ATTR_FILE_IOBLOCKSIZE) size += sizeof(size_t);
-               if (a & ATTR_FILE_CLUMPSIZE) size += sizeof(off_t);
-               if (a & ATTR_FILE_DEVTYPE) size += sizeof(u_long);
-               if (a & ATTR_FILE_FILETYPE) size += sizeof(u_long);
-               if (a & ATTR_FILE_FORKCOUNT) size += sizeof(u_long);
+               if (a & ATTR_FILE_IOBLOCKSIZE) size += sizeof(uint32_t);
+               if (a & ATTR_FILE_CLUMPSIZE) size += sizeof(uint32_t);
+               if (a & ATTR_FILE_DEVTYPE) size += sizeof(uint32_t);
+               if (a & ATTR_FILE_FILETYPE) size += sizeof(uint32_t);
+               if (a & ATTR_FILE_FORKCOUNT) size += sizeof(uint32_t);
                if (a & ATTR_FILE_FORKLIST) size += sizeof(struct attrreference);
                if (a & ATTR_FILE_DATALENGTH) size += sizeof(off_t);
                if (a & ATTR_FILE_DATAALLOCSIZE) size += sizeof(off_t);
@@ -550,7 +574,7 @@ attrcalcsize(struct attrlist *attrlist)
 
 
 
-void
+static void
 packvolattr (struct attrlist *alist,
                         struct iso_node *ip,   /* ip for root directory */
                         void **attrbufptrptr,
@@ -561,7 +585,8 @@ packvolattr (struct attrlist *alist,
        struct iso_mnt *imp;
        struct mount *mp;
        attrgroup_t a;
-       u_long attrlength;
+       uint32_t attrlength;
+       boolean_t is_64_bit = proc_is64bit(current_proc());
        
        attrbufptr = *attrbufptrptr;
        varbufptr = *varbufptrptr;
@@ -579,8 +604,8 @@ packvolattr (struct attrlist *alist,
             (u_int8_t *)varbufptr += attrlength + ((4 - (attrlength & 3)) & 3);
             ++((struct attrreference *)attrbufptr);
         };
-               if (a & ATTR_CMN_DEVID) *((dev_t *)attrbufptr)++ = imp->im_devvp->v_rdev;
-               if (a & ATTR_CMN_FSID) *((fsid_t *)attrbufptr)++ = ITOV(ip)->v_mount->mnt_stat.f_fsid;
+               if (a & ATTR_CMN_DEVID) *((dev_t *)attrbufptr)++ = vnode_specrdev(imp->im_devvp);
+               if (a & ATTR_CMN_FSID) *((fsid_t *)attrbufptr)++ = vfs_statfs(vnode_mount(ITOV(ip)))->f_fsid;
                if (a & ATTR_CMN_OBJTYPE) *((fsobj_type_t *)attrbufptr)++ = 0;
                if (a & ATTR_CMN_OBJTAG) *((fsobj_tag_t *)attrbufptr)++ = VT_ISOFS;
                if (a & ATTR_CMN_OBJID) {
@@ -599,10 +624,46 @@ packvolattr (struct attrlist *alist,
                        ++((fsobj_id_t *)attrbufptr);
                };
         if (a & ATTR_CMN_SCRIPT) *((text_encoding_t *)attrbufptr)++ = 0;
-               if (a & ATTR_CMN_CRTIME) *((struct timespec *)attrbufptr)++ = imp->creation_date;
-               if (a & ATTR_CMN_MODTIME) *((struct timespec *)attrbufptr)++ = imp->modification_date;
-               if (a & ATTR_CMN_CHGTIME) *((struct timespec *)attrbufptr)++ = imp->modification_date;
-               if (a & ATTR_CMN_ACCTIME) *((struct timespec *)attrbufptr)++ = imp->modification_date;
+               if (a & ATTR_CMN_CRTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) imp->creation_date.tv_sec;
+                       tmpp->tv_nsec = imp->creation_date.tv_nsec;
+                   }
+                   else {
+                       *((struct timespec *)attrbufptr)++ = imp->creation_date;
+                   }
+               }
+               if (a & ATTR_CMN_MODTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) imp->modification_date.tv_sec;
+                       tmpp->tv_nsec = imp->modification_date.tv_nsec;
+                   }
+                   else {
+                       *((struct timespec *)attrbufptr)++ = imp->modification_date;
+                   }
+               }
+               if (a & ATTR_CMN_CHGTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) imp->modification_date.tv_sec;
+                       tmpp->tv_nsec = imp->modification_date.tv_nsec;
+                   }
+                   else {
+                       *((struct timespec *)attrbufptr)++ = imp->modification_date;
+                   }
+               }
+               if (a & ATTR_CMN_ACCTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) imp->modification_date.tv_sec;
+                       tmpp->tv_nsec = imp->modification_date.tv_nsec;
+                   }
+                   else {
+                       *((struct timespec *)attrbufptr)++ = imp->modification_date;
+                   }
+               }
                if (a & ATTR_CMN_BKUPTIME) {
                        ((struct timespec *)attrbufptr)->tv_sec = 0;
                        ((struct timespec *)attrbufptr)->tv_nsec = 0;
@@ -614,34 +675,32 @@ packvolattr (struct attrlist *alist,
                };
                if (a & ATTR_CMN_OWNERID) *((uid_t *)attrbufptr)++ = ip->inode.iso_uid;
                if (a & ATTR_CMN_GRPID) *((gid_t *)attrbufptr)++ = ip->inode.iso_gid;
-               if (a & ATTR_CMN_ACCESSMASK) *((u_long *)attrbufptr)++ = (u_long)ip->inode.iso_mode;
-               if (a & ATTR_CMN_FLAGS) *((u_long *)attrbufptr)++ = 0;
+               if (a & ATTR_CMN_ACCESSMASK) *((uint32_t *)attrbufptr)++ = (uint32_t)ip->inode.iso_mode;
+               if (a & ATTR_CMN_FLAGS) *((uint32_t *)attrbufptr)++ = 0;
                if (a & ATTR_CMN_USERACCESS) {
-                       *((u_long *)attrbufptr)++ =
+                       *((uint32_t *)attrbufptr)++ =
                                DerivePermissionSummary(ip->inode.iso_uid,
                                                                                ip->inode.iso_gid,
                                                                                ip->inode.iso_mode,
-                                                                               imp,
-                                                                               current_proc()->p_ucred,
-                                                                               current_proc());
+                                                                               imp);
                };
        };
        
        if ((a = alist->volattr) != 0) {
                off_t blocksize = (off_t)imp->logical_block_size;
 
-               if (a & ATTR_VOL_FSTYPE) *((u_long *)attrbufptr)++ = (u_long)imp->im_mountp->mnt_vfc->vfc_typenum;
-               if (a & ATTR_VOL_SIGNATURE) *((u_long *)attrbufptr)++ = (u_long)ISO9660SIGNATURE;
+               if (a & ATTR_VOL_FSTYPE) *((uint32_t *)attrbufptr)++ = (uint32_t)vfs_typenum(mp);
+               if (a & ATTR_VOL_SIGNATURE) *((uint32_t *)attrbufptr)++ = (uint32_t)ISO9660SIGNATURE;
         if (a & ATTR_VOL_SIZE) *((off_t *)attrbufptr)++ = (off_t)imp->volume_space_size * blocksize;
         if (a & ATTR_VOL_SPACEFREE) *((off_t *)attrbufptr)++ = 0;
         if (a & ATTR_VOL_SPACEAVAIL) *((off_t *)attrbufptr)++ = 0;
         if (a & ATTR_VOL_MINALLOCATION) *((off_t *)attrbufptr)++ = blocksize;
                if (a & ATTR_VOL_ALLOCATIONCLUMP) *((off_t *)attrbufptr)++ = blocksize;
-        if (a & ATTR_VOL_IOBLOCKSIZE) *((size_t *)attrbufptr)++ = blocksize;
-               if (a & ATTR_VOL_OBJCOUNT) *((u_long *)attrbufptr)++ = 0;
-               if (a & ATTR_VOL_FILECOUNT) *((u_long *)attrbufptr)++ = 0;
-               if (a & ATTR_VOL_DIRCOUNT) *((u_long *)attrbufptr)++ = 0;
-               if (a & ATTR_VOL_MAXOBJCOUNT) *((u_long *)attrbufptr)++ = 0xFFFFFFFF;
+        if (a & ATTR_VOL_IOBLOCKSIZE) *((uint32_t *)attrbufptr)++ = (uint32_t)blocksize;
+               if (a & ATTR_VOL_OBJCOUNT) *((uint32_t *)attrbufptr)++ = 0;
+               if (a & ATTR_VOL_FILECOUNT) *((uint32_t *)attrbufptr)++ = 0;
+               if (a & ATTR_VOL_DIRCOUNT) *((uint32_t *)attrbufptr)++ = 0;
+               if (a & ATTR_VOL_MAXOBJCOUNT) *((uint32_t *)attrbufptr)++ = 0xFFFFFFFF;
         if (a & ATTR_VOL_NAME) {
             attrlength = strlen( imp->volume_id ) + 1;
             ((struct attrreference *)attrbufptr)->attr_dataoffset = (u_int8_t *)varbufptr - (u_int8_t *)attrbufptr;
@@ -652,13 +711,15 @@ packvolattr (struct attrlist *alist,
             (u_int8_t *)varbufptr += attrlength + ((4 - (attrlength & 3)) & 3);
             ++((struct attrreference *)attrbufptr);
         };
-               if (a & ATTR_VOL_MOUNTFLAGS) *((u_long *)attrbufptr)++ = (u_long)imp->im_mountp->mnt_flag;
+               if (a & ATTR_VOL_MOUNTFLAGS) {
+                   *((uint32_t *)attrbufptr)++ = (uint32_t)vfs_flags(mp);
+               }
         if (a & ATTR_VOL_MOUNTEDDEVICE) {
             ((struct attrreference *)attrbufptr)->attr_dataoffset = (u_int8_t *)varbufptr - (u_int8_t *)attrbufptr;
-            ((struct attrreference *)attrbufptr)->attr_length = strlen(mp->mnt_stat.f_mntfromname) + 1;
+            ((struct attrreference *)attrbufptr)->attr_length = strlen(vfs_statfs(mp)->f_mntfromname) + 1;
                        attrlength = ((struct attrreference *)attrbufptr)->attr_length;
                        attrlength = attrlength + ((4 - (attrlength & 3)) & 3);         /* round up to the next 4-byte boundary: */
-                       (void) bcopy(mp->mnt_stat.f_mntfromname, varbufptr, attrlength);
+                       (void) bcopy(vfs_statfs(mp)->f_mntfromname, varbufptr, attrlength);
                        
                        /* Advance beyond the space just allocated: */
             (u_int8_t *)varbufptr += attrlength;
@@ -666,16 +727,43 @@ packvolattr (struct attrlist *alist,
         };
         if (a & ATTR_VOL_ENCODINGSUSED) *((unsigned long long *)attrbufptr)++ = (unsigned long long)0;
         if (a & ATTR_VOL_CAPABILITIES) {
-               ((vol_capabilities_attr_t *)attrbufptr)->capabilities[VOL_CAPABILITIES_FORMAT] = VOL_CAP_FMT_PERSISTENTOBJECTIDS;
+               ((vol_capabilities_attr_t *)attrbufptr)->capabilities[VOL_CAPABILITIES_FORMAT] =
+                               (imp->iso_ftype == ISO_FTYPE_RRIP ? VOL_CAP_FMT_SYMBOLICLINKS : 0) |
+                               (imp->iso_ftype == ISO_FTYPE_RRIP ? VOL_CAP_FMT_HARDLINKS : 0) |
+                               (imp->iso_ftype == ISO_FTYPE_RRIP || imp->iso_ftype == ISO_FTYPE_JOLIET
+                                       ? VOL_CAP_FMT_CASE_SENSITIVE : 0) |
+                                       VOL_CAP_FMT_CASE_PRESERVING |
+                               VOL_CAP_FMT_FAST_STATFS;
                ((vol_capabilities_attr_t *)attrbufptr)->capabilities[VOL_CAPABILITIES_INTERFACES] =
-                               VOL_CAP_INT_ATTRLIST | VOL_CAP_INT_NFSEXPORT;
+                               VOL_CAP_INT_ATTRLIST |
+                               VOL_CAP_INT_NFSEXPORT;
                ((vol_capabilities_attr_t *)attrbufptr)->capabilities[VOL_CAPABILITIES_RESERVED1] = 0;
                ((vol_capabilities_attr_t *)attrbufptr)->capabilities[VOL_CAPABILITIES_RESERVED2] = 0;
 
                ((vol_capabilities_attr_t *)attrbufptr)->valid[VOL_CAPABILITIES_FORMAT] =
-                               VOL_CAP_FMT_PERSISTENTOBJECTIDS | VOL_CAP_FMT_SYMBOLICLINKS | VOL_CAP_FMT_HARDLINKS;
+                               VOL_CAP_FMT_PERSISTENTOBJECTIDS |
+                               VOL_CAP_FMT_SYMBOLICLINKS |
+                               VOL_CAP_FMT_HARDLINKS |
+                                       VOL_CAP_FMT_JOURNAL |
+                                       VOL_CAP_FMT_JOURNAL_ACTIVE |
+                                       VOL_CAP_FMT_NO_ROOT_TIMES |
+                                       VOL_CAP_FMT_SPARSE_FILES |
+                                       VOL_CAP_FMT_ZERO_RUNS |
+                                       VOL_CAP_FMT_CASE_SENSITIVE |
+                                       VOL_CAP_FMT_CASE_PRESERVING |
+                                       VOL_CAP_FMT_FAST_STATFS | 
+                                       VOL_CAP_FMT_2TB_FILESIZE;
                ((vol_capabilities_attr_t *)attrbufptr)->valid[VOL_CAPABILITIES_INTERFACES] =
-                               VOL_CAP_INT_SEARCHFS | VOL_CAP_INT_ATTRLIST | VOL_CAP_INT_NFSEXPORT;
+                               VOL_CAP_INT_SEARCHFS |
+                               VOL_CAP_INT_ATTRLIST |
+                               VOL_CAP_INT_NFSEXPORT |
+                                       VOL_CAP_INT_READDIRATTR |
+                                       VOL_CAP_INT_EXCHANGEDATA |
+                                       VOL_CAP_INT_COPYFILE |
+                                       VOL_CAP_INT_ALLOCATE |
+                                       VOL_CAP_INT_VOL_RENAME |
+                                       VOL_CAP_INT_ADVLOCK |
+                                       VOL_CAP_INT_FLOCK;
                ((vol_capabilities_attr_t *)attrbufptr)->valid[VOL_CAPABILITIES_RESERVED1] = 0;
                ((vol_capabilities_attr_t *)attrbufptr)->valid[VOL_CAPABILITIES_RESERVED2] = 0;
 
@@ -712,7 +800,8 @@ packcommonattr (struct attrlist *alist,
        void *attrbufptr;
        void *varbufptr;
        attrgroup_t a;
-       u_long attrlength;
+       uint32_t attrlength;
+       boolean_t is_64_bit = proc_is64bit(current_proc());
        
        attrbufptr = *attrbufptrptr;
        varbufptr = *varbufptrptr;
@@ -722,7 +811,7 @@ packcommonattr (struct attrlist *alist,
 
         if (a & ATTR_CMN_NAME) {
                        /* special case root since we know how to get it's name */
-                       if (ITOV(ip)->v_flag & VROOT) {
+                       if (vnode_isvroot(ITOV(ip))) {
                                attrlength = strlen( imp->volume_id ) + 1;
                                (void) strncpy((unsigned char *)varbufptr, imp->volume_id, attrlength);
                } else {
@@ -737,11 +826,11 @@ packcommonattr (struct attrlist *alist,
             ++((struct attrreference *)attrbufptr);
         };
                if (a & ATTR_CMN_DEVID) *((dev_t *)attrbufptr)++ = ip->i_dev;
-               if (a & ATTR_CMN_FSID) *((fsid_t *)attrbufptr)++ = ITOV(ip)->v_mount->mnt_stat.f_fsid;
-               if (a & ATTR_CMN_OBJTYPE) *((fsobj_type_t *)attrbufptr)++ = ITOV(ip)->v_type;
-               if (a & ATTR_CMN_OBJTAG) *((fsobj_tag_t *)attrbufptr)++ = ITOV(ip)->v_tag;
+               if (a & ATTR_CMN_FSID) *((fsid_t *)attrbufptr)++ = vfs_statfs(vnode_mount(ITOV(ip)))->f_fsid;
+               if (a & ATTR_CMN_OBJTYPE) *((fsobj_type_t *)attrbufptr)++ = vnode_vtype(ITOV(ip));
+               if (a & ATTR_CMN_OBJTAG) *((fsobj_tag_t *)attrbufptr)++ = vnode_tag(ITOV(ip));
         if (a & ATTR_CMN_OBJID)        {
-                       if (ITOV(ip)->v_flag & VROOT)
+                       if (vnode_isvroot(ITOV(ip)))
                                ((fsobj_id_t *)attrbufptr)->fid_objno = 2;      /* force root to be 2 */
                        else
                ((fsobj_id_t *)attrbufptr)->fid_objno = ip->i_number;
@@ -749,7 +838,7 @@ packcommonattr (struct attrlist *alist,
                        ++((fsobj_id_t *)attrbufptr);
                };
         if (a & ATTR_CMN_OBJPERMANENTID)       {
-                       if (ITOV(ip)->v_flag & VROOT)
+                       if (vnode_isvroot(ITOV(ip)))
                                ((fsobj_id_t *)attrbufptr)->fid_objno = 2;      /* force root to be 2 */
                        else
                ((fsobj_id_t *)attrbufptr)->fid_objno = ip->i_number;
@@ -770,22 +859,67 @@ packcommonattr (struct attrlist *alist,
                        ++((fsobj_id_t *)attrbufptr);
                };
         if (a & ATTR_CMN_SCRIPT) *((text_encoding_t *)attrbufptr)++ = 0;
-               if (a & ATTR_CMN_CRTIME) *((struct timespec *)attrbufptr)++ = ip->inode.iso_mtime;
-               if (a & ATTR_CMN_MODTIME) *((struct timespec *)attrbufptr)++ = ip->inode.iso_mtime;
-               if (a & ATTR_CMN_CHGTIME) *((struct timespec *)attrbufptr)++ = ip->inode.iso_ctime;
-               if (a & ATTR_CMN_ACCTIME) *((struct timespec *)attrbufptr)++ = ip->inode.iso_atime;
+               if (a & ATTR_CMN_CRTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) ip->inode.iso_mtime.tv_sec;
+                       tmpp->tv_nsec = ip->inode.iso_mtime.tv_nsec;
+                   }
+                   else {
+                *((struct timespec *)attrbufptr)++ = ip->inode.iso_mtime;
+                   }
+               }
+               if (a & ATTR_CMN_MODTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) ip->inode.iso_mtime.tv_sec;
+                       tmpp->tv_nsec = ip->inode.iso_mtime.tv_nsec;
+                   }
+                   else {
+                *((struct timespec *)attrbufptr)++ = ip->inode.iso_mtime;
+                   }
+               }
+               if (a & ATTR_CMN_CHGTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) ip->inode.iso_ctime.tv_sec;
+                       tmpp->tv_nsec = ip->inode.iso_ctime.tv_nsec;
+                   }
+                   else {
+                *((struct timespec *)attrbufptr)++ = ip->inode.iso_ctime;
+                   }
+               }
+               if (a & ATTR_CMN_ACCTIME) {
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) ip->inode.iso_atime.tv_sec;
+                       tmpp->tv_nsec = ip->inode.iso_atime.tv_nsec;
+                   }
+                   else {
+                *((struct timespec *)attrbufptr)++ = ip->inode.iso_atime;
+                   }
+               }
                if (a & ATTR_CMN_BKUPTIME) {
-                       ((struct timespec *)attrbufptr)->tv_sec = 0;
-                       ((struct timespec *)attrbufptr)->tv_nsec = 0;
-                       ++((struct timespec *)attrbufptr);
-               };
+                   if (is_64_bit) {
+                       struct user_timespec *tmpp = ((struct user_timespec *)attrbufptr)++;
+                       tmpp->tv_sec = (user_time_t) 0;
+                       tmpp->tv_nsec = 0;
+                   }
+                   else {
+                ((struct timespec *)attrbufptr)->tv_sec = 0;
+                ((struct timespec *)attrbufptr)->tv_nsec = 0;
+                ++((struct timespec *)attrbufptr);
+                    *((struct timespec *)attrbufptr)++ = ip->inode.iso_atime;
+                   }
+               }
                if (a & ATTR_CMN_FNDRINFO) {
-                       struct finder_info finfo = {0};
+                       struct finder_info finfo;
 
+                       bzero(&finfo, sizeof(finfo));
                        finfo.fdFlags = ip->i_FinderFlags;
                        finfo.fdLocation.v = -1;
                        finfo.fdLocation.h = -1;
-                       if (ITOV(ip)->v_type == VREG) {
+                       if (vnode_isreg(ITOV(ip))) {
                                finfo.fdType = ip->i_FileType;
                                finfo.fdCreator = ip->i_Creator;
                        }
@@ -796,16 +930,14 @@ packcommonattr (struct attrlist *alist,
                };
                if (a & ATTR_CMN_OWNERID) *((uid_t *)attrbufptr)++ = ip->inode.iso_uid;
                if (a & ATTR_CMN_GRPID) *((gid_t *)attrbufptr)++ = ip->inode.iso_gid;
-               if (a & ATTR_CMN_ACCESSMASK) *((u_long *)attrbufptr)++ = (u_long)ip->inode.iso_mode;
-               if (a & ATTR_CMN_FLAGS) *((u_long *)attrbufptr)++ = 0; /* could also use ip->i_flag */
+               if (a & ATTR_CMN_ACCESSMASK) *((uint32_t *)attrbufptr)++ = (uint32_t)ip->inode.iso_mode;
+               if (a & ATTR_CMN_FLAGS) *((uint32_t *)attrbufptr)++ = 0; /* could also use ip->i_flag */
                if (a & ATTR_CMN_USERACCESS) {
-                       *((u_long *)attrbufptr)++ =
+                       *((uint32_t *)attrbufptr)++ =
                                DerivePermissionSummary(ip->inode.iso_uid,
                                                                                ip->inode.iso_gid,
                                                                                ip->inode.iso_mode,
-                                                                               imp,
-                                                                               current_proc()->p_ucred,
-                                                                               current_proc());
+                                                                               imp);
                };
        };
        
@@ -818,7 +950,7 @@ void
 packdirattr(struct attrlist *alist,
                        struct iso_node *ip,
                        void **attrbufptrptr,
-                       void **varbufptrptr)
+                       __unused void **varbufptrptr)
 {
     void *attrbufptr;
     attrgroup_t a;
@@ -828,7 +960,7 @@ packdirattr(struct attrlist *alist,
        filcnt = dircnt = 0;
        
        a = alist->dirattr;
-       if ((ITOV(ip)->v_type == VDIR) && (a != 0)) {
+       if (vnode_isdir(ITOV(ip)) && (a != 0)) {
                /*
                 * if we haven't counted our children yet, do it now...
                 */
@@ -843,17 +975,17 @@ packdirattr(struct attrlist *alist,
                }
 
                if (a & ATTR_DIR_LINKCOUNT) {
-                       *((u_long *)attrbufptr)++ = ip->inode.iso_links;
+                       *((uint32_t *)attrbufptr)++ = ip->inode.iso_links;
                }
                if (a & ATTR_DIR_ENTRYCOUNT) {
                        /* exclude '.' and '..' from total caount */
-                       *((u_long *)attrbufptr)++ = ((ip->i_entries <= 2) ? 0 : (ip->i_entries - 2));
+                       *((uint32_t *)attrbufptr)++ = ((ip->i_entries <= 2) ? 0 : (ip->i_entries - 2));
                }
                if (a & ATTR_DIR_MOUNTSTATUS) {
-                       if (ITOV(ip)->v_mountedhere) {
-                               *((u_long *)attrbufptr)++ = DIR_MNTSTATUS_MNTPOINT;
+                       if (vnode_mountedhere(ITOV(ip))) {
+                               *((uint32_t *)attrbufptr)++ = DIR_MNTSTATUS_MNTPOINT;
                        } else {
-                               *((u_long *)attrbufptr)++ = 0;
+                               *((uint32_t *)attrbufptr)++ = 0;
                        };
                };
        };
@@ -872,19 +1004,19 @@ packfileattr(struct attrlist *alist,
     void *varbufptr = *varbufptrptr;
     attrgroup_t a = alist->fileattr;
        
-       if ((ITOV(ip)->v_type == VREG) && (a != 0)) {
+       if (vnode_isreg(ITOV(ip)) && (a != 0)) {
                if (a & ATTR_FILE_LINKCOUNT)
-                       *((u_long *)attrbufptr)++ = ip->inode.iso_links;
+                       *((uint32_t *)attrbufptr)++ = ip->inode.iso_links;
                if (a & ATTR_FILE_TOTALSIZE)
                        *((off_t *)attrbufptr)++ = (off_t)ip->i_size;
                if (a & ATTR_FILE_ALLOCSIZE)
                        *((off_t *)attrbufptr)++ = (off_t)ip->i_size;
                if (a & ATTR_FILE_IOBLOCKSIZE)
-                       *((u_long *)attrbufptr)++ = ip->i_mnt->logical_block_size;
+                       *((uint32_t *)attrbufptr)++ = ip->i_mnt->logical_block_size;
                if (a & ATTR_FILE_CLUMPSIZE)
-                       *((u_long *)attrbufptr)++ = ip->i_mnt->logical_block_size;
+                       *((uint32_t *)attrbufptr)++ = ip->i_mnt->logical_block_size;
                if (a & ATTR_FILE_DEVTYPE)
-                       *((u_long *)attrbufptr)++ = (u_long)ip->inode.iso_rdev;
+                       *((uint32_t *)attrbufptr)++ = (uint32_t)ip->inode.iso_rdev;
                if (a & ATTR_FILE_DATALENGTH)
                        *((off_t *)attrbufptr)++ = (off_t)ip->i_size;
                if (a & ATTR_FILE_DATAALLOCSIZE)
@@ -913,7 +1045,7 @@ packattrblk(struct attrlist *alist,
        } else {
                packcommonattr(alist, ip, attrbufptrptr, varbufptrptr);
                
-               switch (ITOV(ip)->v_type) {
+               switch (vnode_vtype(ITOV(ip))) {
                  case VDIR:
                        packdirattr(alist, ip, attrbufptrptr, varbufptrptr);
                        break;