2 * Copyright (c) 1999-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1991, 1993, 1994
24 * The Regents of the University of California. All rights reserved.
25 * (c) UNIX System Laboratories, Inc.
26 * All or some portions of this file are derived from material licensed
27 * to the University of California by American Telephone and Telegraph
28 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
29 * the permission of UNIX System Laboratories, Inc.
31 * Redistribution and use in source and binary forms, with or without
32 * modification, are permitted provided that the following conditions
34 * 1. Redistributions of source code must retain the above copyright
35 * notice, this list of conditions and the following disclaimer.
36 * 2. Redistributions in binary form must reproduce the above copyright
37 * notice, this list of conditions and the following disclaimer in the
38 * documentation and/or other materials provided with the distribution.
39 * 3. All advertising materials mentioning features or use of this software
40 * must display the following acknowledgement:
41 * This product includes software developed by the University of
42 * California, Berkeley and its contributors.
43 * 4. Neither the name of the University nor the names of its contributors
44 * may be used to endorse or promote products derived from this software
45 * without specific prior written permission.
47 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * derived from @(#)ufs_vfsops.c 8.8 (Berkeley) 5/20/95
62 * (c) Copyright 1997-2002 Apple Computer, Inc. All rights reserved.
64 * hfs_vfsops.c -- VFS layer for loadable HFS file system.
67 #include <sys/param.h>
68 #include <sys/systm.h>
69 #include <sys/kauth.h>
72 #include <sys/vnode_internal.h>
73 #include <sys/mount_internal.h>
74 #include <sys/sysctl.h>
75 #include <sys/malloc.h>
77 #include <sys/quota.h>
79 #include <sys/paths.h>
80 #include <sys/utfconv.h>
81 #include <sys/kdebug.h>
83 #include <kern/locks.h>
85 #include <vfs/vfs_journal.h>
87 #include <miscfs/specfs/specdev.h>
88 #include <hfs/hfs_mount.h>
91 #include "hfs_catalog.h"
92 #include "hfs_cnode.h"
94 #include "hfs_endian.h"
95 #include "hfs_hotfiles.h"
96 #include "hfs_quota.h"
98 #include "hfscommon/headers/FileMgrInternal.h"
99 #include "hfscommon/headers/BTreesInternal.h"
108 lck_grp_attr_t
* hfs_group_attr
;
109 lck_attr_t
* hfs_lock_attr
;
110 lck_grp_t
* hfs_mutex_group
;
111 lck_grp_t
* hfs_rwlock_group
;
114 extern struct vnodeopv_desc hfs_vnodeop_opv_desc
;
116 extern void hfs_converterinit(void);
118 extern void inittodr(time_t base
);
120 extern int hfs_write_access(struct vnode
*, kauth_cred_t
, struct proc
*, Boolean
);
123 static int hfs_changefs(struct mount
*mp
, struct hfs_mount_args
*args
);
124 static int hfs_fhtovp(struct mount
*mp
, int fhlen
, unsigned char *fhp
, struct vnode
**vpp
, vfs_context_t context
);
125 static int hfs_flushfiles(struct mount
*, int, struct proc
*);
126 static int hfs_flushMDB(struct hfsmount
*hfsmp
, int waitfor
, int altflush
);
127 static int hfs_getmountpoint(struct vnode
*vp
, struct hfsmount
**hfsmpp
);
128 static int hfs_init(struct vfsconf
*vfsp
);
129 static int hfs_mount(struct mount
*mp
, vnode_t devvp
, user_addr_t data
, vfs_context_t context
);
130 static int hfs_mountfs(struct vnode
*devvp
, struct mount
*mp
, struct hfs_mount_args
*args
, vfs_context_t context
);
131 static int hfs_reload(struct mount
*mp
, kauth_cred_t cred
, struct proc
*p
);
132 static int hfs_vfs_root(struct mount
*mp
, struct vnode
**vpp
, vfs_context_t context
);
133 static int hfs_quotactl(struct mount
*, int, uid_t
, caddr_t
, vfs_context_t context
);
134 static int hfs_start(struct mount
*mp
, int flags
, vfs_context_t context
);
135 static int hfs_statfs(struct mount
*mp
, register struct vfsstatfs
*sbp
, vfs_context_t context
);
136 static int hfs_sync(struct mount
*mp
, int waitfor
, vfs_context_t context
);
137 static int hfs_sysctl(int *name
, u_int namelen
, user_addr_t oldp
, size_t *oldlenp
,
138 user_addr_t newp
, size_t newlen
, vfs_context_t context
);
139 static int hfs_unmount(struct mount
*mp
, int mntflags
, vfs_context_t context
);
140 static int hfs_vfs_vget(struct mount
*mp
, ino64_t ino
, struct vnode
**vpp
, vfs_context_t context
);
141 static int hfs_vptofh(struct vnode
*vp
, int *fhlenp
, unsigned char *fhp
, vfs_context_t context
);
143 static int hfs_reclaimspace(struct hfsmount
*hfsmp
, u_long startblk
);
147 * Called by vfs_mountroot when mounting HFS Plus as root.
152 hfs_mountroot(mount_t mp
, vnode_t rvp
, vfs_context_t context
)
154 struct hfsmount
*hfsmp
;
156 struct vfsstatfs
*vfsp
;
159 if ((error
= hfs_mountfs(rvp
, mp
, NULL
, context
)))
163 hfsmp
= VFSTOHFS(mp
);
165 hfsmp
->hfs_uid
= UNKNOWNUID
;
166 hfsmp
->hfs_gid
= UNKNOWNGID
;
167 hfsmp
->hfs_dir_mask
= (S_IRWXU
| S_IRGRP
|S_IXGRP
| S_IROTH
|S_IXOTH
); /* 0755 */
168 hfsmp
->hfs_file_mask
= (S_IRWXU
| S_IRGRP
|S_IXGRP
| S_IROTH
|S_IXOTH
); /* 0755 */
170 /* Establish the free block reserve. */
171 vcb
= HFSTOVCB(hfsmp
);
172 vcb
->reserveBlocks
= ((u_int64_t
)vcb
->totalBlocks
* HFS_MINFREE
) / 100;
173 vcb
->reserveBlocks
= MIN(vcb
->reserveBlocks
, HFS_MAXRESERVE
/ vcb
->blockSize
);
175 vfsp
= vfs_statfs(mp
);
176 (void)hfs_statfs(mp
, vfsp
, NULL
);
189 hfs_mount(struct mount
*mp
, vnode_t devvp
, user_addr_t data
, vfs_context_t context
)
191 struct proc
*p
= vfs_context_proc(context
);
192 struct hfsmount
*hfsmp
= NULL
;
193 struct hfs_mount_args args
;
197 if ((retval
= copyin(data
, (caddr_t
)&args
, sizeof(args
)))) {
200 cmdflags
= (uint32_t)vfs_flags(mp
) & MNT_CMDFLAGS
;
201 if (cmdflags
& MNT_UPDATE
) {
202 hfsmp
= VFSTOHFS(mp
);
204 /* Reload incore data after an fsck. */
205 if (cmdflags
& MNT_RELOAD
) {
206 if (vfs_isrdonly(mp
))
207 return hfs_reload(mp
, vfs_context_ucred(context
), p
);
212 /* Change to a read-only file system. */
213 if (((hfsmp
->hfs_flags
& HFS_READ_ONLY
) == 0) &&
217 /* use VFS_SYNC to push out System (btree) files */
218 retval
= VFS_SYNC(mp
, MNT_WAIT
, context
);
219 if (retval
&& ((cmdflags
& MNT_FORCE
) == 0))
223 if (cmdflags
& MNT_FORCE
)
226 if ((retval
= hfs_flushfiles(mp
, flags
, p
)))
228 hfsmp
->hfs_flags
|= HFS_READ_ONLY
;
229 retval
= hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 0);
231 /* also get the volume bitmap blocks */
233 if (vnode_mount(hfsmp
->hfs_devvp
) == mp
) {
234 retval
= hfs_fsync(hfsmp
->hfs_devvp
, MNT_WAIT
, 0, p
);
236 vnode_get(hfsmp
->hfs_devvp
);
237 retval
= VNOP_FSYNC(hfsmp
->hfs_devvp
, MNT_WAIT
, context
);
238 vnode_put(hfsmp
->hfs_devvp
);
242 hfsmp
->hfs_flags
&= ~HFS_READ_ONLY
;
246 hfs_global_exclusive_lock_acquire(hfsmp
);
248 journal_close(hfsmp
->jnl
);
251 // Note: we explicitly don't want to shutdown
252 // access to the jvp because we may need
253 // it later if we go back to being read-write.
255 hfs_global_exclusive_lock_release(hfsmp
);
259 /* Change to a writable file system. */
260 if (vfs_iswriteupgrade(mp
)) {
261 retval
= hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 0);
262 if (retval
!= E_NONE
)
265 // If the journal was shut-down previously because we were
266 // asked to be read-only, let's start it back up again now
268 if ( (HFSTOVCB(hfsmp
)->vcbAtrb
& kHFSVolumeJournaledMask
)
269 && hfsmp
->jnl
== NULL
270 && hfsmp
->jvp
!= NULL
) {
273 if (hfsmp
->hfs_flags
& HFS_NEED_JNL_RESET
) {
274 jflags
= JOURNAL_RESET
;
279 hfs_global_exclusive_lock_acquire(hfsmp
);
281 hfsmp
->jnl
= journal_open(hfsmp
->jvp
,
282 (hfsmp
->jnl_start
* HFSTOVCB(hfsmp
)->blockSize
) + (off_t
)HFSTOVCB(hfsmp
)->hfsPlusIOPosOffset
,
285 hfsmp
->hfs_phys_block_size
,
288 hfs_sync_metadata
, hfsmp
->hfs_mp
);
290 hfs_global_exclusive_lock_release(hfsmp
);
292 if (hfsmp
->jnl
== NULL
) {
296 hfsmp
->hfs_flags
&= ~HFS_NEED_JNL_RESET
;
301 /* Only clear HFS_READ_ONLY after a successfull write */
302 hfsmp
->hfs_flags
&= ~HFS_READ_ONLY
;
304 if (!(hfsmp
->hfs_flags
& (HFS_READ_ONLY
& HFS_STANDARD
))) {
305 /* setup private/hidden directory for unlinked files */
306 FindMetaDataDirectory(HFSTOVCB(hfsmp
));
307 hfs_remove_orphans(hfsmp
);
310 * Allow hot file clustering if conditions allow.
312 if (hfsmp
->hfs_flags
& HFS_METADATA_ZONE
) {
313 (void) hfs_recording_init(hfsmp
);
318 /* Update file system parameters. */
319 retval
= hfs_changefs(mp
, &args
);
321 } else /* not an update request */ {
323 /* Set the mount flag to indicate that we support volfs */
324 vfs_setflags(mp
, (uint64_t)((unsigned int)MNT_DOVOLFS
));
326 retval
= hfs_mountfs(devvp
, mp
, &args
, context
);
330 (void)hfs_statfs(mp
, vfs_statfs(mp
), context
);
336 struct hfs_changefs_cargs
{
337 struct hfsmount
*hfsmp
;
344 hfs_changefs_callback(struct vnode
*vp
, void *cargs
)
348 struct cat_desc cndesc
;
349 struct cat_attr cnattr
;
350 struct hfs_changefs_cargs
*args
;
352 args
= (struct hfs_changefs_cargs
*)cargs
;
355 vcb
= HFSTOVCB(args
->hfsmp
);
357 if (cat_lookup(args
->hfsmp
, &cp
->c_desc
, 0, &cndesc
, &cnattr
, NULL
, NULL
)) {
359 * If we couldn't find this guy skip to the next one
364 return (VNODE_RETURNED
);
367 * Get the real uid/gid and perm mask from disk.
369 if (args
->permswitch
|| args
->permfix
) {
370 cp
->c_uid
= cnattr
.ca_uid
;
371 cp
->c_gid
= cnattr
.ca_gid
;
372 cp
->c_mode
= cnattr
.ca_mode
;
375 * If we're switching name converters then...
376 * Remove the existing entry from the namei cache.
377 * Update name to one based on new encoder.
381 replace_desc(cp
, &cndesc
);
383 if (cndesc
.cd_cnid
== kHFSRootFolderID
) {
384 strncpy(vcb
->vcbVN
, cp
->c_desc
.cd_nameptr
, NAME_MAX
);
385 cp
->c_desc
.cd_encoding
= args
->hfsmp
->hfs_encoding
;
388 cat_releasedesc(&cndesc
);
390 return (VNODE_RETURNED
);
393 /* Change fs mount parameters */
395 hfs_changefs(struct mount
*mp
, struct hfs_mount_args
*args
)
398 int namefix
, permfix
, permswitch
;
399 struct hfsmount
*hfsmp
;
401 hfs_to_unicode_func_t get_unicode_func
;
402 unicode_to_hfs_func_t get_hfsname_func
;
403 u_long old_encoding
= 0;
404 struct hfs_changefs_cargs cargs
;
405 uint32_t mount_flags
;
407 hfsmp
= VFSTOHFS(mp
);
408 vcb
= HFSTOVCB(hfsmp
);
409 mount_flags
= (unsigned int)vfs_flags(mp
);
411 permswitch
= (((hfsmp
->hfs_flags
& HFS_UNKNOWN_PERMS
) &&
412 ((mount_flags
& MNT_UNKNOWNPERMISSIONS
) == 0)) ||
413 (((hfsmp
->hfs_flags
& HFS_UNKNOWN_PERMS
) == 0) &&
414 (mount_flags
& MNT_UNKNOWNPERMISSIONS
)));
416 /* The root filesystem must operate with actual permissions: */
417 if (permswitch
&& (mount_flags
& MNT_ROOTFS
) && (mount_flags
& MNT_UNKNOWNPERMISSIONS
)) {
418 vfs_clearflags(mp
, (uint64_t)((unsigned int)MNT_UNKNOWNPERMISSIONS
)); /* Just say "No". */
421 if (mount_flags
& MNT_UNKNOWNPERMISSIONS
)
422 hfsmp
->hfs_flags
|= HFS_UNKNOWN_PERMS
;
424 hfsmp
->hfs_flags
&= ~HFS_UNKNOWN_PERMS
;
426 namefix
= permfix
= 0;
428 /* Change the timezone (Note: this affects all hfs volumes and hfs+ volume create dates) */
429 if (args
->hfs_timezone
.tz_minuteswest
!= VNOVAL
) {
430 gTimeZone
= args
->hfs_timezone
;
433 /* Change the default uid, gid and/or mask */
434 if ((args
->hfs_uid
!= (uid_t
)VNOVAL
) && (hfsmp
->hfs_uid
!= args
->hfs_uid
)) {
435 hfsmp
->hfs_uid
= args
->hfs_uid
;
436 if (vcb
->vcbSigWord
== kHFSPlusSigWord
)
439 if ((args
->hfs_gid
!= (gid_t
)VNOVAL
) && (hfsmp
->hfs_gid
!= args
->hfs_gid
)) {
440 hfsmp
->hfs_gid
= args
->hfs_gid
;
441 if (vcb
->vcbSigWord
== kHFSPlusSigWord
)
444 if (args
->hfs_mask
!= (mode_t
)VNOVAL
) {
445 if (hfsmp
->hfs_dir_mask
!= (args
->hfs_mask
& ALLPERMS
)) {
446 hfsmp
->hfs_dir_mask
= args
->hfs_mask
& ALLPERMS
;
447 hfsmp
->hfs_file_mask
= args
->hfs_mask
& ALLPERMS
;
448 if ((args
->flags
!= VNOVAL
) && (args
->flags
& HFSFSMNT_NOXONFILES
))
449 hfsmp
->hfs_file_mask
= (args
->hfs_mask
& DEFFILEMODE
);
450 if (vcb
->vcbSigWord
== kHFSPlusSigWord
)
455 /* Change the hfs encoding value (hfs only) */
456 if ((vcb
->vcbSigWord
== kHFSSigWord
) &&
457 (args
->hfs_encoding
!= (u_long
)VNOVAL
) &&
458 (hfsmp
->hfs_encoding
!= args
->hfs_encoding
)) {
460 retval
= hfs_getconverter(args
->hfs_encoding
, &get_unicode_func
, &get_hfsname_func
);
465 * Connect the new hfs_get_unicode converter but leave
466 * the old hfs_get_hfsname converter in place so that
467 * we can lookup existing vnodes to get their correctly
470 * When we're all finished, we can then connect the new
471 * hfs_get_hfsname converter and release our interest
472 * in the old converters.
474 hfsmp
->hfs_get_unicode
= get_unicode_func
;
475 old_encoding
= hfsmp
->hfs_encoding
;
476 hfsmp
->hfs_encoding
= args
->hfs_encoding
;
480 if (!(namefix
|| permfix
|| permswitch
))
483 /* XXX 3762912 hack to support HFS filesystem 'owner' */
486 hfsmp
->hfs_uid
== UNKNOWNUID
? KAUTH_UID_NONE
: hfsmp
->hfs_uid
,
487 hfsmp
->hfs_gid
== UNKNOWNGID
? KAUTH_GID_NONE
: hfsmp
->hfs_gid
);
490 * For each active vnode fix things that changed
492 * Note that we can visit a vnode more than once
493 * and we can race with fsync.
495 * hfs_changefs_callback will be called for each vnode
496 * hung off of this mount point
498 * properly referenced and unreferenced around the callback
501 cargs
.namefix
= namefix
;
502 cargs
.permfix
= permfix
;
503 cargs
.permswitch
= permswitch
;
505 vnode_iterate(mp
, 0, hfs_changefs_callback
, (void *)&cargs
);
508 * If we're switching name converters we can now
509 * connect the new hfs_get_hfsname converter and
510 * release our interest in the old converters.
513 hfsmp
->hfs_get_hfsname
= get_hfsname_func
;
514 vcb
->volumeNameEncodingHint
= args
->hfs_encoding
;
515 (void) hfs_relconverter(old_encoding
);
522 struct hfs_reload_cargs
{
523 struct hfsmount
*hfsmp
;
530 hfs_reload_callback(struct vnode
*vp
, void *cargs
)
533 struct hfs_reload_cargs
*args
;
535 args
= (struct hfs_reload_cargs
*)cargs
;
537 * flush all the buffers associated with this node
539 (void) buf_invalidateblks(vp
, 0, 0, 0);
543 * Remove any directory hints
546 hfs_reldirhints(cp
, 0);
549 * Re-read cnode data for all active vnodes (non-metadata files).
551 if (!VNODE_IS_RSRC(vp
)) {
552 struct cat_fork
*datafork
;
553 struct cat_desc desc
;
555 datafork
= cp
->c_datafork
? &cp
->c_datafork
->ff_data
: NULL
;
557 /* lookup by fileID since name could have changed */
558 if ((args
->error
= cat_idlookup(args
->hfsmp
, cp
->c_fileid
, &desc
, &cp
->c_attr
, datafork
)))
559 return (VNODE_RETURNED_DONE
);
561 /* update cnode's catalog descriptor */
562 (void) replace_desc(cp
, &desc
);
564 return (VNODE_RETURNED
);
568 * Reload all incore data for a filesystem (used after running fsck on
569 * the root filesystem and finding things to fix). The filesystem must
570 * be mounted read-only.
572 * Things to do to update the mount:
573 * invalidate all cached meta-data.
574 * invalidate all inactive vnodes.
575 * invalidate all cached file data.
576 * re-read volume header from disk.
577 * re-load meta-file info (extents, file size).
578 * re-load B-tree header data.
579 * re-read cnode data for all active vnodes.
582 hfs_reload(struct mount
*mountp
, kauth_cred_t cred
, struct proc
*p
)
584 register struct vnode
*devvp
;
588 struct hfsmount
*hfsmp
;
589 struct HFSPlusVolumeHeader
*vhp
;
591 struct filefork
*forkp
;
592 struct cat_desc cndesc
;
593 struct hfs_reload_cargs args
;
596 hfsmp
= VFSTOHFS(mountp
);
597 vcb
= HFSTOVCB(hfsmp
);
599 if (vcb
->vcbSigWord
== kHFSSigWord
)
600 return (EINVAL
); /* rooting from HFS is not supported! */
603 * Invalidate all cached meta-data.
605 devvp
= hfsmp
->hfs_devvp
;
606 if (buf_invalidateblks(devvp
, 0, 0, 0))
607 panic("hfs_reload: dirty1");
614 * hfs_reload_callback will be called for each vnode
615 * hung off of this mount point that can't be recycled...
616 * vnode_iterate will recycle those that it can (the VNODE_RELOAD option)
617 * the vnode will be in an 'unbusy' state (VNODE_WAIT) and
618 * properly referenced and unreferenced around the callback
620 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_CATALOG
, HFS_EXCLUSIVE_LOCK
);
621 vnode_iterate(mountp
, VNODE_RELOAD
| VNODE_WAIT
, hfs_reload_callback
, (void *)&args
);
622 hfs_systemfile_unlock(hfsmp
, lockflags
);
628 * Re-read VolumeHeader from disk.
630 sectorsize
= hfsmp
->hfs_phys_block_size
;
632 error
= (int)buf_meta_bread(hfsmp
->hfs_devvp
,
633 (daddr64_t
)((vcb
->hfsPlusIOPosOffset
/ sectorsize
) + HFS_PRI_SECTOR(sectorsize
)),
634 sectorsize
, NOCRED
, &bp
);
641 vhp
= (HFSPlusVolumeHeader
*) (buf_dataptr(bp
) + HFS_PRI_OFFSET(sectorsize
));
643 /* Do a quick sanity check */
644 if ((SWAP_BE16(vhp
->signature
) != kHFSPlusSigWord
&&
645 SWAP_BE16(vhp
->signature
) != kHFSXSigWord
) ||
646 (SWAP_BE16(vhp
->version
) != kHFSPlusVersion
&&
647 SWAP_BE16(vhp
->version
) != kHFSXVersion
) ||
648 SWAP_BE32(vhp
->blockSize
) != vcb
->blockSize
) {
653 vcb
->vcbLsMod
= to_bsd_time(SWAP_BE32(vhp
->modifyDate
));
654 vcb
->vcbAtrb
= SWAP_BE32 (vhp
->attributes
);
655 vcb
->vcbJinfoBlock
= SWAP_BE32(vhp
->journalInfoBlock
);
656 vcb
->vcbClpSiz
= SWAP_BE32 (vhp
->rsrcClumpSize
);
657 vcb
->vcbNxtCNID
= SWAP_BE32 (vhp
->nextCatalogID
);
658 vcb
->vcbVolBkUp
= to_bsd_time(SWAP_BE32(vhp
->backupDate
));
659 vcb
->vcbWrCnt
= SWAP_BE32 (vhp
->writeCount
);
660 vcb
->vcbFilCnt
= SWAP_BE32 (vhp
->fileCount
);
661 vcb
->vcbDirCnt
= SWAP_BE32 (vhp
->folderCount
);
662 vcb
->nextAllocation
= SWAP_BE32 (vhp
->nextAllocation
);
663 vcb
->totalBlocks
= SWAP_BE32 (vhp
->totalBlocks
);
664 vcb
->freeBlocks
= SWAP_BE32 (vhp
->freeBlocks
);
665 vcb
->encodingsBitmap
= SWAP_BE64 (vhp
->encodingsBitmap
);
666 bcopy(vhp
->finderInfo
, vcb
->vcbFndrInfo
, sizeof(vhp
->finderInfo
));
667 vcb
->localCreateDate
= SWAP_BE32 (vhp
->createDate
); /* hfs+ create date is in local time */
670 * Re-load meta-file vnode data (extent info, file size, etc).
672 forkp
= VTOF((struct vnode
*)vcb
->extentsRefNum
);
673 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
674 forkp
->ff_extents
[i
].startBlock
=
675 SWAP_BE32 (vhp
->extentsFile
.extents
[i
].startBlock
);
676 forkp
->ff_extents
[i
].blockCount
=
677 SWAP_BE32 (vhp
->extentsFile
.extents
[i
].blockCount
);
679 forkp
->ff_size
= SWAP_BE64 (vhp
->extentsFile
.logicalSize
);
680 forkp
->ff_blocks
= SWAP_BE32 (vhp
->extentsFile
.totalBlocks
);
681 forkp
->ff_clumpsize
= SWAP_BE32 (vhp
->extentsFile
.clumpSize
);
684 forkp
= VTOF((struct vnode
*)vcb
->catalogRefNum
);
685 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
686 forkp
->ff_extents
[i
].startBlock
=
687 SWAP_BE32 (vhp
->catalogFile
.extents
[i
].startBlock
);
688 forkp
->ff_extents
[i
].blockCount
=
689 SWAP_BE32 (vhp
->catalogFile
.extents
[i
].blockCount
);
691 forkp
->ff_size
= SWAP_BE64 (vhp
->catalogFile
.logicalSize
);
692 forkp
->ff_blocks
= SWAP_BE32 (vhp
->catalogFile
.totalBlocks
);
693 forkp
->ff_clumpsize
= SWAP_BE32 (vhp
->catalogFile
.clumpSize
);
695 if (hfsmp
->hfs_attribute_vp
) {
696 forkp
= VTOF(hfsmp
->hfs_attribute_vp
);
697 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
698 forkp
->ff_extents
[i
].startBlock
=
699 SWAP_BE32 (vhp
->attributesFile
.extents
[i
].startBlock
);
700 forkp
->ff_extents
[i
].blockCount
=
701 SWAP_BE32 (vhp
->attributesFile
.extents
[i
].blockCount
);
703 forkp
->ff_size
= SWAP_BE64 (vhp
->attributesFile
.logicalSize
);
704 forkp
->ff_blocks
= SWAP_BE32 (vhp
->attributesFile
.totalBlocks
);
705 forkp
->ff_clumpsize
= SWAP_BE32 (vhp
->attributesFile
.clumpSize
);
708 forkp
= VTOF((struct vnode
*)vcb
->allocationsRefNum
);
709 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
710 forkp
->ff_extents
[i
].startBlock
=
711 SWAP_BE32 (vhp
->allocationFile
.extents
[i
].startBlock
);
712 forkp
->ff_extents
[i
].blockCount
=
713 SWAP_BE32 (vhp
->allocationFile
.extents
[i
].blockCount
);
715 forkp
->ff_size
= SWAP_BE64 (vhp
->allocationFile
.logicalSize
);
716 forkp
->ff_blocks
= SWAP_BE32 (vhp
->allocationFile
.totalBlocks
);
717 forkp
->ff_clumpsize
= SWAP_BE32 (vhp
->allocationFile
.clumpSize
);
723 * Re-load B-tree header data
725 forkp
= VTOF((struct vnode
*)vcb
->extentsRefNum
);
726 if ( (error
= MacToVFSError( BTReloadData((FCB
*)forkp
) )) )
729 forkp
= VTOF((struct vnode
*)vcb
->catalogRefNum
);
730 if ( (error
= MacToVFSError( BTReloadData((FCB
*)forkp
) )) )
733 if (hfsmp
->hfs_attribute_vp
) {
734 forkp
= VTOF(hfsmp
->hfs_attribute_vp
);
735 if ( (error
= MacToVFSError( BTReloadData((FCB
*)forkp
) )) )
739 /* Reload the volume name */
740 if ((error
= cat_idlookup(hfsmp
, kHFSRootFolderID
, &cndesc
, NULL
, NULL
)))
742 vcb
->volumeNameEncodingHint
= cndesc
.cd_encoding
;
743 bcopy(cndesc
.cd_nameptr
, vcb
->vcbVN
, min(255, cndesc
.cd_namelen
));
744 cat_releasedesc(&cndesc
);
746 /* Re-establish private/hidden directory for unlinked files */
747 FindMetaDataDirectory(vcb
);
749 /* In case any volume information changed to trigger a notification */
750 hfs_generate_volume_notifications(hfsmp
);
757 * Common code for mount and mountroot
760 hfs_mountfs(struct vnode
*devvp
, struct mount
*mp
, struct hfs_mount_args
*args
,
761 vfs_context_t context
)
763 struct proc
*p
= vfs_context_proc(context
);
765 struct hfsmount
*hfsmp
;
768 HFSMasterDirectoryBlock
*mdbp
;
776 u_int32_t minblksize
;
777 u_int32_t iswritable
;
778 daddr64_t mdb_offset
;
780 ronly
= vfs_isrdonly(mp
);
781 dev
= vnode_specrdev(devvp
);
782 cred
= p
? vfs_context_ucred(context
) : NOCRED
;
788 minblksize
= kHFSBlockSize
;
790 /* Advisory locking should be handled at the VFS layer */
791 vfs_setlocklocal(mp
);
793 /* Get the real physical block size. */
794 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKSIZE
, (caddr_t
)&blksize
, 0, context
)) {
798 /* Switch to 512 byte sectors (temporarily) */
800 u_int32_t size512
= 512;
802 if (VNOP_IOCTL(devvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&size512
, FWRITE
, context
)) {
807 /* Get the number of 512 byte physical blocks. */
808 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
, (caddr_t
)&blkcnt
, 0, context
)) {
812 /* Compute an accurate disk size (i.e. within 512 bytes) */
813 disksize
= (u_int64_t
)blkcnt
* (u_int64_t
)512;
816 * On Tiger it is not necessary to switch the device
817 * block size to be 4k if there are more than 31-bits
818 * worth of blocks but to insure compatibility with
819 * pre-Tiger systems we have to do it.
821 if (blkcnt
> (u_int64_t
)0x000000007fffffff) {
822 minblksize
= blksize
= 4096;
825 /* Now switch to our prefered physical block size. */
827 if (VNOP_IOCTL(devvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&blksize
, FWRITE
, context
)) {
831 /* Get the count of physical blocks. */
832 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
, (caddr_t
)&blkcnt
, 0, context
)) {
839 * minblksize is the minimum physical block size
840 * blksize has our prefered physical block size
841 * blkcnt has the total number of physical blocks
844 mdb_offset
= (daddr64_t
)HFS_PRI_SECTOR(blksize
);
845 if ((retval
= (int)buf_meta_bread(devvp
, mdb_offset
, blksize
, cred
, &bp
))) {
848 MALLOC(mdbp
, HFSMasterDirectoryBlock
*, kMDBSize
, M_TEMP
, M_WAITOK
);
849 bcopy((char *)buf_dataptr(bp
) + HFS_PRI_OFFSET(blksize
), mdbp
, kMDBSize
);
853 MALLOC(hfsmp
, struct hfsmount
*, sizeof(struct hfsmount
), M_HFSMNT
, M_WAITOK
);
854 bzero(hfsmp
, sizeof(struct hfsmount
));
857 * Init the volume information structure
860 lck_mtx_init(&hfsmp
->hfs_mutex
, hfs_mutex_group
, hfs_lock_attr
);
861 lck_mtx_init(&hfsmp
->hfc_mutex
, hfs_mutex_group
, hfs_lock_attr
);
862 lck_rw_init(&hfsmp
->hfs_global_lock
, hfs_rwlock_group
, hfs_lock_attr
);
864 vfs_setfsprivate(mp
, hfsmp
);
865 hfsmp
->hfs_mp
= mp
; /* Make VFSTOHFS work */
866 hfsmp
->hfs_raw_dev
= vnode_specrdev(devvp
);
867 hfsmp
->hfs_devvp
= devvp
;
868 hfsmp
->hfs_phys_block_size
= blksize
;
869 hfsmp
->hfs_phys_block_count
= blkcnt
;
870 hfsmp
->hfs_flags
|= HFS_WRITEABLE_MEDIA
;
872 hfsmp
->hfs_flags
|= HFS_READ_ONLY
;
873 if (((unsigned int)vfs_flags(mp
)) & MNT_UNKNOWNPERMISSIONS
)
874 hfsmp
->hfs_flags
|= HFS_UNKNOWN_PERMS
;
875 for (i
= 0; i
< MAXQUOTAS
; i
++)
876 dqfileinit(&hfsmp
->hfs_qfiles
[i
]);
879 hfsmp
->hfs_uid
= (args
->hfs_uid
== (uid_t
)VNOVAL
) ? UNKNOWNUID
: args
->hfs_uid
;
880 if (hfsmp
->hfs_uid
== 0xfffffffd) hfsmp
->hfs_uid
= UNKNOWNUID
;
881 hfsmp
->hfs_gid
= (args
->hfs_gid
== (gid_t
)VNOVAL
) ? UNKNOWNGID
: args
->hfs_gid
;
882 if (hfsmp
->hfs_gid
== 0xfffffffd) hfsmp
->hfs_gid
= UNKNOWNGID
;
883 vfs_setowner(mp
, hfsmp
->hfs_uid
, hfsmp
->hfs_gid
); /* tell the VFS */
884 if (args
->hfs_mask
!= (mode_t
)VNOVAL
) {
885 hfsmp
->hfs_dir_mask
= args
->hfs_mask
& ALLPERMS
;
886 if (args
->flags
& HFSFSMNT_NOXONFILES
) {
887 hfsmp
->hfs_file_mask
= (args
->hfs_mask
& DEFFILEMODE
);
889 hfsmp
->hfs_file_mask
= args
->hfs_mask
& ALLPERMS
;
892 hfsmp
->hfs_dir_mask
= UNKNOWNPERMISSIONS
& ALLPERMS
; /* 0777: rwx---rwx */
893 hfsmp
->hfs_file_mask
= UNKNOWNPERMISSIONS
& DEFFILEMODE
; /* 0666: no --x by default? */
895 if ((args
->flags
!= (int)VNOVAL
) && (args
->flags
& HFSFSMNT_WRAPPER
))
898 /* Even w/o explicit mount arguments, MNT_UNKNOWNPERMISSIONS requires setting up uid, gid, and mask: */
899 if (((unsigned int)vfs_flags(mp
)) & MNT_UNKNOWNPERMISSIONS
) {
900 hfsmp
->hfs_uid
= UNKNOWNUID
;
901 hfsmp
->hfs_gid
= UNKNOWNGID
;
902 vfs_setowner(mp
, hfsmp
->hfs_uid
, hfsmp
->hfs_gid
); /* tell the VFS */
903 hfsmp
->hfs_dir_mask
= UNKNOWNPERMISSIONS
& ALLPERMS
; /* 0777: rwx---rwx */
904 hfsmp
->hfs_file_mask
= UNKNOWNPERMISSIONS
& DEFFILEMODE
; /* 0666: no --x by default? */
908 /* Find out if disk media is writable. */
909 if (VNOP_IOCTL(devvp
, DKIOCISWRITABLE
, (caddr_t
)&iswritable
, 0, context
) == 0) {
911 hfsmp
->hfs_flags
|= HFS_WRITEABLE_MEDIA
;
913 hfsmp
->hfs_flags
&= ~HFS_WRITEABLE_MEDIA
;
916 // record the current time at which we're mounting this volume
920 hfsmp
->hfs_mount_time
= tv
.tv_sec
;
923 /* Mount a standard HFS disk */
924 if ((SWAP_BE16(mdbp
->drSigWord
) == kHFSSigWord
) &&
925 (mntwrapper
|| (SWAP_BE16(mdbp
->drEmbedSigWord
) != kHFSPlusSigWord
))) {
926 if ((vfs_flags(mp
) & MNT_ROOTFS
)) {
927 retval
= EINVAL
; /* Cannot root from HFS standard disks */
930 /* HFS disks can only use 512 byte physical blocks */
931 if (blksize
> kHFSBlockSize
) {
932 blksize
= kHFSBlockSize
;
933 if (VNOP_IOCTL(devvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&blksize
, FWRITE
, context
)) {
937 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
, (caddr_t
)&blkcnt
, 0, context
)) {
941 hfsmp
->hfs_phys_block_size
= blksize
;
942 hfsmp
->hfs_phys_block_count
= blkcnt
;
945 hfsmp
->hfs_encoding
= args
->hfs_encoding
;
946 HFSTOVCB(hfsmp
)->volumeNameEncodingHint
= args
->hfs_encoding
;
948 /* establish the timezone */
949 gTimeZone
= args
->hfs_timezone
;
952 retval
= hfs_getconverter(hfsmp
->hfs_encoding
, &hfsmp
->hfs_get_unicode
,
953 &hfsmp
->hfs_get_hfsname
);
957 retval
= hfs_MountHFSVolume(hfsmp
, mdbp
, p
);
959 (void) hfs_relconverter(hfsmp
->hfs_encoding
);
961 } else /* Mount an HFS Plus disk */ {
962 HFSPlusVolumeHeader
*vhp
;
963 off_t embeddedOffset
;
966 /* Get the embedded Volume Header */
967 if (SWAP_BE16(mdbp
->drEmbedSigWord
) == kHFSPlusSigWord
) {
968 embeddedOffset
= SWAP_BE16(mdbp
->drAlBlSt
) * kHFSBlockSize
;
969 embeddedOffset
+= (u_int64_t
)SWAP_BE16(mdbp
->drEmbedExtent
.startBlock
) *
970 (u_int64_t
)SWAP_BE32(mdbp
->drAlBlkSiz
);
973 * If the embedded volume doesn't start on a block
974 * boundary, then switch the device to a 512-byte
975 * block size so everything will line up on a block
978 if ((embeddedOffset
% blksize
) != 0) {
979 printf("HFS Mount: embedded volume offset not"
980 " a multiple of physical block size (%d);"
981 " switching to 512\n", blksize
);
983 if (VNOP_IOCTL(devvp
, DKIOCSETBLOCKSIZE
,
984 (caddr_t
)&blksize
, FWRITE
, context
)) {
988 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
,
989 (caddr_t
)&blkcnt
, 0, context
)) {
993 /* Note: relative block count adjustment */
994 hfsmp
->hfs_phys_block_count
*=
995 hfsmp
->hfs_phys_block_size
/ blksize
;
996 hfsmp
->hfs_phys_block_size
= blksize
;
999 disksize
= (u_int64_t
)SWAP_BE16(mdbp
->drEmbedExtent
.blockCount
) *
1000 (u_int64_t
)SWAP_BE32(mdbp
->drAlBlkSiz
);
1002 hfsmp
->hfs_phys_block_count
= disksize
/ blksize
;
1004 mdb_offset
= (daddr64_t
)((embeddedOffset
/ blksize
) + HFS_PRI_SECTOR(blksize
));
1005 retval
= (int)buf_meta_bread(devvp
, mdb_offset
, blksize
, cred
, &bp
);
1008 bcopy((char *)buf_dataptr(bp
) + HFS_PRI_OFFSET(blksize
), mdbp
, 512);
1011 vhp
= (HFSPlusVolumeHeader
*) mdbp
;
1013 } else /* pure HFS+ */ {
1015 vhp
= (HFSPlusVolumeHeader
*) mdbp
;
1022 if (args
!= NULL
&& (args
->flags
& HFSFSMNT_EXTENDED_ARGS
) && args
->journal_disable
) {
1027 // We only initialize the journal here if the last person
1028 // to mount this volume was journaling aware. Otherwise
1029 // we delay journal initialization until later at the end
1030 // of hfs_MountHFSPlusVolume() because the last person who
1031 // mounted it could have messed things up behind our back
1032 // (so we need to go find the .journal file, make sure it's
1033 // the right size, re-sync up if it was moved, etc).
1035 if ( (SWAP_BE32(vhp
->lastMountedVersion
) == kHFSJMountVersion
)
1036 && (SWAP_BE32(vhp
->attributes
) & kHFSVolumeJournaledMask
)
1039 // if we're able to init the journal, mark the mount
1040 // point as journaled.
1042 if (hfs_early_journal_init(hfsmp
, vhp
, args
, embeddedOffset
, mdb_offset
, mdbp
, cred
) == 0) {
1043 vfs_setflags(mp
, (uint64_t)((unsigned int)MNT_JOURNALED
));
1045 // if the journal failed to open, then set the lastMountedVersion
1046 // to be "FSK!" which fsck_hfs will see and force the fsck instead
1047 // of just bailing out because the volume is journaled.
1049 HFSPlusVolumeHeader
*jvhp
;
1051 hfsmp
->hfs_flags
|= HFS_NEED_JNL_RESET
;
1053 if (mdb_offset
== 0) {
1054 mdb_offset
= (daddr64_t
)((embeddedOffset
/ blksize
) + HFS_PRI_SECTOR(blksize
));
1058 retval
= (int)buf_meta_bread(devvp
, mdb_offset
, blksize
, cred
, &bp
);
1060 jvhp
= (HFSPlusVolumeHeader
*)(buf_dataptr(bp
) + HFS_PRI_OFFSET(blksize
));
1062 if (SWAP_BE16(jvhp
->signature
) == kHFSPlusSigWord
|| SWAP_BE16(jvhp
->signature
) == kHFSXSigWord
) {
1063 printf ("hfs(1): Journal replay fail. Writing lastMountVersion as FSK!\n");
1064 jvhp
->lastMountedVersion
= SWAP_BE32(kFSKMountVersion
);
1072 // clear this so the error exit path won't try to use it
1077 // if this isn't the root device just bail out.
1078 // If it is the root device we just continue on
1079 // in the hopes that fsck_hfs will be able to
1080 // fix any damage that exists on the volume.
1081 if ( !(vfs_flags(mp
) & MNT_ROOTFS
)) {
1089 (void) hfs_getconverter(0, &hfsmp
->hfs_get_unicode
, &hfsmp
->hfs_get_hfsname
);
1091 retval
= hfs_MountHFSPlusVolume(hfsmp
, vhp
, embeddedOffset
, disksize
, p
, args
, cred
);
1093 * If the backend didn't like our physical blocksize
1094 * then retry with physical blocksize of 512.
1096 if ((retval
== ENXIO
) && (blksize
> 512) && (blksize
!= minblksize
)) {
1097 printf("HFS Mount: could not use physical block size "
1098 "(%d) switching to 512\n", blksize
);
1100 if (VNOP_IOCTL(devvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&blksize
, FWRITE
, context
)) {
1104 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
, (caddr_t
)&blkcnt
, 0, context
)) {
1108 devvp
->v_specsize
= blksize
;
1109 /* Note: relative block count adjustment (in case this is an embedded volume). */
1110 hfsmp
->hfs_phys_block_count
*= hfsmp
->hfs_phys_block_size
/ blksize
;
1111 hfsmp
->hfs_phys_block_size
= blksize
;
1114 // close and re-open this with the new block size
1115 journal_close(hfsmp
->jnl
);
1117 if (hfs_early_journal_init(hfsmp
, vhp
, args
, embeddedOffset
, mdb_offset
, mdbp
, cred
) == 0) {
1118 vfs_setflags(mp
, (uint64_t)((unsigned int)MNT_JOURNALED
));
1120 // if the journal failed to open, then set the lastMountedVersion
1121 // to be "FSK!" which fsck_hfs will see and force the fsck instead
1122 // of just bailing out because the volume is journaled.
1124 HFSPlusVolumeHeader
*jvhp
;
1126 hfsmp
->hfs_flags
|= HFS_NEED_JNL_RESET
;
1128 if (mdb_offset
== 0) {
1129 mdb_offset
= (daddr64_t
)((embeddedOffset
/ blksize
) + HFS_PRI_SECTOR(blksize
));
1133 retval
= (int)buf_meta_bread(devvp
, mdb_offset
, blksize
, cred
, &bp
);
1135 jvhp
= (HFSPlusVolumeHeader
*)(buf_dataptr(bp
) + HFS_PRI_OFFSET(blksize
));
1137 if (SWAP_BE16(jvhp
->signature
) == kHFSPlusSigWord
|| SWAP_BE16(jvhp
->signature
) == kHFSXSigWord
) {
1138 printf ("hfs(2): Journal replay fail. Writing lastMountVersion as FSK!\n");
1139 jvhp
->lastMountedVersion
= SWAP_BE32(kFSKMountVersion
);
1147 // clear this so the error exit path won't try to use it
1152 // if this isn't the root device just bail out.
1153 // If it is the root device we just continue on
1154 // in the hopes that fsck_hfs will be able to
1155 // fix any damage that exists on the volume.
1156 if ( !(vfs_flags(mp
) & MNT_ROOTFS
)) {
1163 /* Try again with a smaller block size... */
1164 retval
= hfs_MountHFSPlusVolume(hfsmp
, vhp
, embeddedOffset
, disksize
, p
, args
, cred
);
1167 (void) hfs_relconverter(0);
1170 // save off a snapshot of the mtime from the previous mount
1172 hfsmp
->hfs_last_mounted_mtime
= hfsmp
->hfs_mtime
;
1178 mp
->mnt_vfsstat
.f_fsid
.val
[0] = (long)dev
;
1179 mp
->mnt_vfsstat
.f_fsid
.val
[1] = vfs_typenum(mp
);
1180 vfs_setmaxsymlen(mp
, 0);
1181 mp
->mnt_vtable
->vfc_threadsafe
= TRUE
;
1182 mp
->mnt_vtable
->vfc_vfsflags
|= VFC_VFSNATIVEXATTR
;
1186 * Set the free space warning levels for a non-root volume:
1188 * Set the lower freespace limit (the level that will trigger a warning)
1189 * to 5% of the volume size or 250MB, whichever is less, and the desired
1190 * level (which will cancel the alert request) to 1/2 above that limit.
1191 * Start looking for free space to drop below this level and generate a
1192 * warning immediately if needed:
1194 hfsmp
->hfs_freespace_notify_warninglimit
=
1195 MIN(HFS_LOWDISKTRIGGERLEVEL
/ HFSTOVCB(hfsmp
)->blockSize
,
1196 (HFSTOVCB(hfsmp
)->totalBlocks
/ 100) * HFS_LOWDISKTRIGGERFRACTION
);
1197 hfsmp
->hfs_freespace_notify_desiredlevel
=
1198 MIN(HFS_LOWDISKSHUTOFFLEVEL
/ HFSTOVCB(hfsmp
)->blockSize
,
1199 (HFSTOVCB(hfsmp
)->totalBlocks
/ 100) * HFS_LOWDISKSHUTOFFFRACTION
);
1202 * Set the free space warning levels for the root volume:
1204 * Set the lower freespace limit (the level that will trigger a warning)
1205 * to 1% of the volume size or 50MB, whichever is less, and the desired
1206 * level (which will cancel the alert request) to 2% or 75MB, whichever is less.
1208 hfsmp
->hfs_freespace_notify_warninglimit
=
1209 MIN(HFS_ROOTLOWDISKTRIGGERLEVEL
/ HFSTOVCB(hfsmp
)->blockSize
,
1210 (HFSTOVCB(hfsmp
)->totalBlocks
/ 100) * HFS_ROOTLOWDISKTRIGGERFRACTION
);
1211 hfsmp
->hfs_freespace_notify_desiredlevel
=
1212 MIN(HFS_ROOTLOWDISKSHUTOFFLEVEL
/ HFSTOVCB(hfsmp
)->blockSize
,
1213 (HFSTOVCB(hfsmp
)->totalBlocks
/ 100) * HFS_ROOTLOWDISKSHUTOFFFRACTION
);
1217 * Start looking for free space to drop below this level and generate a
1218 * warning immediately if needed:
1220 hfsmp
->hfs_notification_conditions
= 0;
1221 hfs_generate_volume_notifications(hfsmp
);
1224 (void) hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 0);
1235 if (hfsmp
&& hfsmp
->jvp
&& hfsmp
->jvp
!= hfsmp
->hfs_devvp
) {
1236 (void)VNOP_CLOSE(hfsmp
->jvp
, ronly
? FREAD
: FREAD
|FWRITE
, context
);
1240 FREE(hfsmp
, M_HFSMNT
);
1241 vfs_setfsprivate(mp
, NULL
);
1248 * Make a filesystem operational.
1249 * Nothing to do at the moment.
1253 hfs_start(__unused
struct mount
*mp
, __unused
int flags
, __unused vfs_context_t context
)
1260 * unmount system call
1263 hfs_unmount(struct mount
*mp
, int mntflags
, vfs_context_t context
)
1265 struct proc
*p
= vfs_context_proc(context
);
1266 struct hfsmount
*hfsmp
= VFSTOHFS(mp
);
1267 int retval
= E_NONE
;
1274 if (mntflags
& MNT_FORCE
) {
1275 flags
|= FORCECLOSE
;
1279 if ((retval
= hfs_flushfiles(mp
, flags
, p
)) && !force
)
1282 if (hfsmp
->hfs_flags
& HFS_METADATA_ZONE
)
1283 (void) hfs_recording_suspend(hfsmp
);
1286 * Flush out the b-trees, volume bitmap and Volume Header
1288 if ((hfsmp
->hfs_flags
& HFS_READ_ONLY
) == 0) {
1289 hfs_start_transaction(hfsmp
);
1292 if (hfsmp
->hfs_attribute_vp
) {
1293 (void) hfs_lock(VTOC(hfsmp
->hfs_attribute_vp
), HFS_EXCLUSIVE_LOCK
);
1294 retval
= hfs_fsync(hfsmp
->hfs_attribute_vp
, MNT_WAIT
, 0, p
);
1295 hfs_unlock(VTOC(hfsmp
->hfs_attribute_vp
));
1296 if (retval
&& !force
)
1300 (void) hfs_lock(VTOC(hfsmp
->hfs_catalog_vp
), HFS_EXCLUSIVE_LOCK
);
1301 retval
= hfs_fsync(hfsmp
->hfs_catalog_vp
, MNT_WAIT
, 0, p
);
1302 hfs_unlock(VTOC(hfsmp
->hfs_catalog_vp
));
1303 if (retval
&& !force
)
1306 (void) hfs_lock(VTOC(hfsmp
->hfs_extents_vp
), HFS_EXCLUSIVE_LOCK
);
1307 retval
= hfs_fsync(hfsmp
->hfs_extents_vp
, MNT_WAIT
, 0, p
);
1308 hfs_unlock(VTOC(hfsmp
->hfs_extents_vp
));
1309 if (retval
&& !force
)
1312 if (hfsmp
->hfs_allocation_vp
) {
1313 (void) hfs_lock(VTOC(hfsmp
->hfs_allocation_vp
), HFS_EXCLUSIVE_LOCK
);
1314 retval
= hfs_fsync(hfsmp
->hfs_allocation_vp
, MNT_WAIT
, 0, p
);
1315 hfs_unlock(VTOC(hfsmp
->hfs_allocation_vp
));
1316 if (retval
&& !force
)
1320 if (hfsmp
->hfc_filevp
&& vnode_issystem(hfsmp
->hfc_filevp
)) {
1321 retval
= hfs_fsync(hfsmp
->hfc_filevp
, MNT_WAIT
, 0, p
);
1322 if (retval
&& !force
)
1326 /* See if this volume is damaged, is so do not unmount cleanly */
1327 if (HFSTOVCB(hfsmp
)->vcbFlags
& kHFS_DamagedVolume
) {
1328 HFSTOVCB(hfsmp
)->vcbAtrb
&= ~kHFSVolumeUnmountedMask
;
1330 HFSTOVCB(hfsmp
)->vcbAtrb
|= kHFSVolumeUnmountedMask
;
1333 HFSTOVCB(hfsmp
)->vcbAtrb
|= kHFSVolumeUnmountedMask
;
1335 retval
= hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 0);
1337 HFSTOVCB(hfsmp
)->vcbAtrb
&= ~kHFSVolumeUnmountedMask
;
1339 goto err_exit
; /* could not flush everything */
1342 hfs_end_transaction(hfsmp
);
1347 journal_flush(hfsmp
->jnl
);
1351 * Invalidate our caches and release metadata vnodes
1353 (void) hfsUnmount(hfsmp
, p
);
1356 * Last chance to dump unreferenced system files.
1358 (void) vflush(mp
, NULLVP
, FORCECLOSE
);
1360 if (HFSTOVCB(hfsmp
)->vcbSigWord
== kHFSSigWord
)
1361 (void) hfs_relconverter(hfsmp
->hfs_encoding
);
1365 journal_close(hfsmp
->jnl
);
1369 VNOP_FSYNC(hfsmp
->hfs_devvp
, MNT_WAIT
, context
);
1371 if (hfsmp
->jvp
&& hfsmp
->jvp
!= hfsmp
->hfs_devvp
) {
1372 retval
= VNOP_CLOSE(hfsmp
->jvp
,
1373 hfsmp
->hfs_flags
& HFS_READ_ONLY
? FREAD
: FREAD
|FWRITE
,
1375 vnode_put(hfsmp
->jvp
);
1380 #ifdef HFS_SPARSE_DEV
1381 /* Drop our reference on the backing fs (if any). */
1382 if ((hfsmp
->hfs_flags
& HFS_HAS_SPARSE_DEVICE
) && hfsmp
->hfs_backingfs_rootvp
) {
1383 struct vnode
* tmpvp
;
1385 hfsmp
->hfs_flags
&= ~HFS_HAS_SPARSE_DEVICE
;
1386 tmpvp
= hfsmp
->hfs_backingfs_rootvp
;
1387 hfsmp
->hfs_backingfs_rootvp
= NULLVP
;
1390 #endif /* HFS_SPARSE_DEV */
1391 lck_mtx_destroy(&hfsmp
->hfc_mutex
, hfs_mutex_group
);
1392 FREE(hfsmp
, M_HFSMNT
);
1398 hfs_end_transaction(hfsmp
);
1405 * Return the root of a filesystem.
1408 hfs_vfs_root(struct mount
*mp
, struct vnode
**vpp
, __unused vfs_context_t context
)
1410 return hfs_vget(VFSTOHFS(mp
), (cnid_t
)kHFSRootFolderID
, vpp
, 1);
1415 * Do operations associated with quotas
1418 hfs_quotactl(struct mount
*mp
, int cmds
, uid_t uid
, caddr_t datap
, vfs_context_t context
)
1420 struct proc
*p
= vfs_context_proc(context
);
1421 int cmd
, type
, error
;
1427 uid
= vfs_context_ucred(context
)->cr_ruid
;
1428 cmd
= cmds
>> SUBCMDSHIFT
;
1435 if (uid
== vfs_context_ucred(context
)->cr_ruid
)
1439 if ( (error
= vfs_context_suser(context
)) )
1443 type
= cmds
& SUBCMDMASK
;
1444 if ((u_int
)type
>= MAXQUOTAS
)
1446 if (vfs_busy(mp
, LK_NOWAIT
))
1452 error
= hfs_quotaon(p
, mp
, type
, datap
);
1456 error
= hfs_quotaoff(p
, mp
, type
);
1460 error
= hfs_setquota(mp
, uid
, type
, datap
);
1464 error
= hfs_setuse(mp
, uid
, type
, datap
);
1468 error
= hfs_getquota(mp
, uid
, type
, datap
);
1472 error
= hfs_qsync(mp
);
1476 error
= hfs_quotastat(mp
, type
, datap
);
1489 /* Subtype is composite of bits */
1490 #define HFS_SUBTYPE_JOURNALED 0x01
1491 #define HFS_SUBTYPE_CASESENSITIVE 0x02
1492 /* bits 2 - 6 reserved */
1493 #define HFS_SUBTYPE_STANDARDHFS 0x80
1496 * Get file system statistics.
1499 hfs_statfs(struct mount
*mp
, register struct vfsstatfs
*sbp
, __unused vfs_context_t context
)
1501 ExtendedVCB
*vcb
= VFSTOVCB(mp
);
1502 struct hfsmount
*hfsmp
= VFSTOHFS(mp
);
1504 uint16_t subtype
= 0;
1506 freeCNIDs
= (u_long
)0xFFFFFFFF - (u_long
)vcb
->vcbNxtCNID
;
1508 sbp
->f_bsize
= (uint32_t)vcb
->blockSize
;
1509 sbp
->f_iosize
= (size_t)(MAX_UPL_TRANSFER
* PAGE_SIZE
);
1510 sbp
->f_blocks
= (uint64_t)((unsigned long)vcb
->totalBlocks
);
1511 sbp
->f_bfree
= (uint64_t)((unsigned long )hfs_freeblks(hfsmp
, 0));
1512 sbp
->f_bavail
= (uint64_t)((unsigned long )hfs_freeblks(hfsmp
, 1));
1513 sbp
->f_files
= (uint64_t)((unsigned long )(vcb
->totalBlocks
- 2)); /* max files is constrained by total blocks */
1514 sbp
->f_ffree
= (uint64_t)((unsigned long )(MIN(freeCNIDs
, sbp
->f_bavail
)));
1517 * Subtypes (flavors) for HFS
1518 * 0: Mac OS Extended
1519 * 1: Mac OS Extended (Journaled)
1520 * 2: Mac OS Extended (Case Sensitive)
1521 * 3: Mac OS Extended (Case Sensitive, Journaled)
1523 * 128: Mac OS Standard
1526 if (hfsmp
->hfs_flags
& HFS_STANDARD
) {
1527 subtype
= HFS_SUBTYPE_STANDARDHFS
;
1528 } else /* HFS Plus */ {
1530 subtype
|= HFS_SUBTYPE_JOURNALED
;
1531 if (hfsmp
->hfs_flags
& HFS_CASE_SENSITIVE
)
1532 subtype
|= HFS_SUBTYPE_CASESENSITIVE
;
1534 sbp
->f_fssubtype
= subtype
;
1541 // XXXdbg -- this is a callback to be used by the journal to
1542 // get meta data blocks flushed out to disk.
1544 // XXXdbg -- be smarter and don't flush *every* block on each
1545 // call. try to only flush some so we don't wind up
1546 // being too synchronous.
1550 hfs_sync_metadata(void *arg
)
1552 struct mount
*mp
= (struct mount
*)arg
;
1553 struct hfsmount
*hfsmp
;
1556 int sectorsize
, retval
;
1557 daddr64_t priIDSector
;
1558 hfsmp
= VFSTOHFS(mp
);
1559 vcb
= HFSTOVCB(hfsmp
);
1561 // now make sure the super block is flushed
1562 sectorsize
= hfsmp
->hfs_phys_block_size
;
1563 priIDSector
= (daddr64_t
)((vcb
->hfsPlusIOPosOffset
/ sectorsize
) +
1564 HFS_PRI_SECTOR(sectorsize
));
1565 retval
= (int)buf_meta_bread(hfsmp
->hfs_devvp
, priIDSector
, sectorsize
, NOCRED
, &bp
);
1567 panic("hfs: sync_metadata: can't read super-block?! (retval 0x%x, priIDSector)\n",
1568 retval
, priIDSector
);
1571 if (retval
== 0 && ((buf_flags(bp
) & (B_DELWRI
| B_LOCKED
)) == B_DELWRI
)) {
1577 // the alternate super block...
1578 // XXXdbg - we probably don't need to do this each and every time.
1579 // hfs_btreeio.c:FlushAlternate() should flag when it was
1581 if (hfsmp
->hfs_alt_id_sector
) {
1582 retval
= (int)buf_meta_bread(hfsmp
->hfs_devvp
, hfsmp
->hfs_alt_id_sector
, sectorsize
, NOCRED
, &bp
);
1583 if (retval
== 0 && ((buf_flags(bp
) & (B_DELWRI
| B_LOCKED
)) == B_DELWRI
)) {
1592 struct hfs_sync_cargs
{
1601 hfs_sync_callback(struct vnode
*vp
, void *cargs
)
1604 struct hfs_sync_cargs
*args
;
1607 args
= (struct hfs_sync_cargs
*)cargs
;
1609 if (hfs_lock(VTOC(vp
), HFS_EXCLUSIVE_LOCK
) != 0) {
1610 return (VNODE_RETURNED
);
1614 if ((cp
->c_flag
& C_MODIFIED
) ||
1615 (cp
->c_touch_acctime
| cp
->c_touch_chgtime
| cp
->c_touch_modtime
) ||
1616 vnode_hasdirtyblks(vp
)) {
1617 error
= hfs_fsync(vp
, args
->waitfor
, 0, args
->p
);
1620 args
->error
= error
;
1623 return (VNODE_RETURNED
);
1629 * Go through the disk queues to initiate sandbagged IO;
1630 * go through the inodes to write those that have been modified;
1631 * initiate the writing of the super block if it has been modified.
1633 * Note: we are always called with the filesystem marked `MPBUSY'.
1636 hfs_sync(struct mount
*mp
, int waitfor
, vfs_context_t context
)
1638 struct proc
*p
= vfs_context_proc(context
);
1640 struct hfsmount
*hfsmp
;
1642 struct vnode
*meta_vp
[4];
1644 int error
, allerror
= 0;
1645 struct hfs_sync_cargs args
;
1648 * During MNT_UPDATE hfs_changefs might be manipulating
1649 * vnodes so back off
1651 if (((uint32_t)vfs_flags(mp
)) & MNT_UPDATE
) /* XXX MNT_UPDATE may not be visible here */
1654 hfsmp
= VFSTOHFS(mp
);
1655 if (hfsmp
->hfs_flags
& HFS_READ_ONLY
)
1658 args
.cred
= vfs_context_proc(context
);
1659 args
.waitfor
= waitfor
;
1663 * hfs_sync_callback will be called for each vnode
1664 * hung off of this mount point... the vnode will be
1665 * properly referenced and unreferenced around the callback
1667 vnode_iterate(mp
, 0, hfs_sync_callback
, (void *)&args
);
1670 allerror
= args
.error
;
1672 vcb
= HFSTOVCB(hfsmp
);
1674 meta_vp
[0] = vcb
->extentsRefNum
;
1675 meta_vp
[1] = vcb
->catalogRefNum
;
1676 meta_vp
[2] = vcb
->allocationsRefNum
; /* This is NULL for standard HFS */
1677 meta_vp
[3] = hfsmp
->hfs_attribute_vp
; /* Optional file */
1679 /* Now sync our three metadata files */
1680 for (i
= 0; i
< 4; ++i
) {
1684 if ((btvp
==0) || (vnode_mount(btvp
) != mp
))
1687 /* XXX use hfs_systemfile_lock instead ? */
1688 (void) hfs_lock(VTOC(btvp
), HFS_EXCLUSIVE_LOCK
);
1691 if (((cp
->c_flag
& C_MODIFIED
) == 0) &&
1692 (cp
->c_touch_acctime
== 0) &&
1693 (cp
->c_touch_chgtime
== 0) &&
1694 (cp
->c_touch_modtime
== 0) &&
1695 vnode_hasdirtyblks(btvp
) == 0) {
1696 hfs_unlock(VTOC(btvp
));
1699 error
= vnode_get(btvp
);
1701 hfs_unlock(VTOC(btvp
));
1704 if ((error
= hfs_fsync(btvp
, waitfor
, 0, p
)))
1712 * Force stale file system control information to be flushed.
1714 if (vcb
->vcbSigWord
== kHFSSigWord
) {
1715 if ((error
= VNOP_FSYNC(hfsmp
->hfs_devvp
, waitfor
, context
))) {
1723 hfs_hotfilesync(hfsmp
, p
);
1725 * Write back modified superblock.
1728 if (IsVCBDirty(vcb
)) {
1729 error
= hfs_flushvolumeheader(hfsmp
, waitfor
, 0);
1735 journal_flush(hfsmp
->jnl
);
1743 * File handle to vnode
1745 * Have to be really careful about stale file handles:
1746 * - check that the cnode id is valid
1747 * - call hfs_vget() to get the locked cnode
1748 * - check for an unallocated cnode (i_mode == 0)
1749 * - check that the given client host has export rights and return
1750 * those rights via. exflagsp and credanonp
1753 hfs_fhtovp(struct mount
*mp
, int fhlen
, unsigned char *fhp
, struct vnode
**vpp
, vfs_context_t context
)
1755 struct hfsfid
*hfsfhp
;
1760 hfsfhp
= (struct hfsfid
*)fhp
;
1762 if (fhlen
< sizeof(struct hfsfid
))
1765 result
= hfs_vget(VFSTOHFS(mp
), hfsfhp
->hfsfid_cnid
, &nvp
, 0);
1767 if (result
== ENOENT
)
1772 /* The createtime can be changed by hfs_setattr or hfs_setattrlist.
1773 * For NFS, we are assuming that only if the createtime was moved
1774 * forward would it mean the fileID got reused in that session by
1775 * wrapping. We don't have a volume ID or other unique identifier to
1776 * to use here for a generation ID across reboots, crashes where
1777 * metadata noting lastFileID didn't make it to disk but client has
1778 * it, or volume erasures where fileIDs start over again. Lastly,
1779 * with HFS allowing "wraps" of fileIDs now, this becomes more
1780 * error prone. Future, would be change the "wrap bit" to a unique
1781 * wrap number and use that for generation number. For now do this.
1783 if ((hfsfhp
->hfsfid_gen
< VTOC(nvp
)->c_itime
)) {
1784 hfs_unlock(VTOC(nvp
));
1790 hfs_unlock(VTOC(nvp
));
1796 * Vnode pointer to File handle
1800 hfs_vptofh(struct vnode
*vp
, int *fhlenp
, unsigned char *fhp
, vfs_context_t context
)
1803 struct hfsfid
*hfsfhp
;
1805 if (ISHFS(VTOVCB(vp
)))
1806 return (ENOTSUP
); /* hfs standard is not exportable */
1808 if (*fhlenp
< (int)sizeof(struct hfsfid
))
1812 hfsfhp
= (struct hfsfid
*)fhp
;
1813 hfsfhp
->hfsfid_cnid
= cp
->c_fileid
;
1814 hfsfhp
->hfsfid_gen
= cp
->c_itime
;
1815 *fhlenp
= sizeof(struct hfsfid
);
1822 * Initial HFS filesystems, done only once.
1825 hfs_init(__unused
struct vfsconf
*vfsp
)
1827 static int done
= 0;
1833 hfs_converterinit();
1841 hfs_lock_attr
= lck_attr_alloc_init();
1842 hfs_group_attr
= lck_grp_attr_alloc_init();
1843 hfs_mutex_group
= lck_grp_alloc_init("hfs-mutex", hfs_group_attr
);
1844 hfs_rwlock_group
= lck_grp_alloc_init("hfs-rwlock", hfs_group_attr
);
1846 /* Turn on lock debugging */
1847 //lck_attr_setdebug(hfs_lock_attr);
1854 hfs_getmountpoint(vp
, hfsmpp
)
1856 struct hfsmount
**hfsmpp
;
1858 struct hfsmount
* hfsmp
;
1859 char fstypename
[MFSNAMELEN
];
1864 if (!vnode_isvroot(vp
))
1867 vnode_vfsname(vp
, fstypename
);
1868 if (strcmp(fstypename
, "hfs") != 0)
1873 if (HFSTOVCB(hfsmp
)->vcbSigWord
== kHFSSigWord
)
1882 #include <sys/filedesc.h>
1885 * HFS filesystem related variables.
1888 hfs_sysctl(int *name
, __unused u_int namelen
, user_addr_t oldp
, size_t *oldlenp
,
1889 user_addr_t newp
, size_t newlen
, vfs_context_t context
)
1891 struct proc
*p
= vfs_context_proc(context
);
1893 struct hfsmount
*hfsmp
;
1895 /* all sysctl names at this level are terminal */
1897 if (name
[0] == HFS_ENCODINGBIAS
) {
1900 bias
= hfs_getencodingbias();
1901 error
= sysctl_int(oldp
, oldlenp
, newp
, newlen
, &bias
);
1902 if (error
== 0 && newp
)
1903 hfs_setencodingbias(bias
);
1906 } else if (name
[0] == HFS_EXTEND_FS
) {
1908 vnode_t vp
= p
->p_fd
->fd_cdir
;
1910 if (newp
== USER_ADDR_NULL
|| vp
== NULL
)
1912 if ((error
= hfs_getmountpoint(vp
, &hfsmp
)))
1914 error
= sysctl_quad(oldp
, oldlenp
, newp
, newlen
, &newsize
);
1918 error
= hfs_extendfs(hfsmp
, newsize
, context
);
1921 } else if (name
[0] == HFS_ENCODINGHINT
) {
1925 u_int16_t
*unicode_name
;
1928 bufsize
= MAX(newlen
* 3, MAXPATHLEN
);
1929 MALLOC(filename
, char *, newlen
, M_TEMP
, M_WAITOK
);
1930 MALLOC(unicode_name
, u_int16_t
*, bufsize
, M_TEMP
, M_WAITOK
);
1932 error
= copyin(newp
, (caddr_t
)filename
, newlen
);
1934 error
= utf8_decodestr(filename
, newlen
- 1, unicode_name
,
1935 &bytes
, bufsize
, 0, UTF_DECOMPOSED
);
1937 hint
= hfs_pickencoding(unicode_name
, bytes
/ 2);
1938 error
= sysctl_int(oldp
, oldlenp
, USER_ADDR_NULL
, 0, &hint
);
1941 FREE(unicode_name
, M_TEMP
);
1942 FREE(filename
, M_TEMP
);
1945 } else if (name
[0] == HFS_ENABLE_JOURNALING
) {
1946 // make the file system journaled...
1947 struct vnode
*vp
= p
->p_fd
->fd_cdir
, *jvp
;
1949 struct cat_attr jnl_attr
, jinfo_attr
;
1950 struct cat_fork jnl_fork
, jinfo_fork
;
1954 /* Only root can enable journaling */
1962 if (hfsmp
->hfs_flags
& HFS_READ_ONLY
) {
1965 if (HFSTOVCB(hfsmp
)->vcbSigWord
== kHFSSigWord
) {
1966 printf("hfs: can't make a plain hfs volume journaled.\n");
1971 printf("hfs: volume @ mp 0x%x is already journaled!\n", vnode_mount(vp
));
1975 vcb
= HFSTOVCB(hfsmp
);
1976 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_CATALOG
| SFL_EXTENTS
, HFS_EXCLUSIVE_LOCK
);
1977 if (BTHasContiguousNodes(VTOF(vcb
->catalogRefNum
)) == 0 ||
1978 BTHasContiguousNodes(VTOF(vcb
->extentsRefNum
)) == 0) {
1980 printf("hfs: volume has a btree w/non-contiguous nodes. can not enable journaling.\n");
1981 hfs_systemfile_unlock(hfsmp
, lockflags
);
1984 hfs_systemfile_unlock(hfsmp
, lockflags
);
1986 // make sure these both exist!
1987 if ( GetFileInfo(vcb
, kHFSRootFolderID
, ".journal_info_block", &jinfo_attr
, &jinfo_fork
) == 0
1988 || GetFileInfo(vcb
, kHFSRootFolderID
, ".journal", &jnl_attr
, &jnl_fork
) == 0) {
1993 hfs_sync(hfsmp
->hfs_mp
, MNT_WAIT
, context
);
1995 printf("hfs: Initializing the journal (joffset 0x%llx sz 0x%llx)...\n",
1996 (off_t
)name
[2], (off_t
)name
[3]);
1998 jvp
= hfsmp
->hfs_devvp
;
1999 jnl
= journal_create(jvp
,
2000 (off_t
)name
[2] * (off_t
)HFSTOVCB(hfsmp
)->blockSize
2001 + HFSTOVCB(hfsmp
)->hfsPlusIOPosOffset
,
2002 (off_t
)((unsigned)name
[3]),
2004 hfsmp
->hfs_phys_block_size
,
2007 hfs_sync_metadata
, hfsmp
->hfs_mp
);
2010 printf("hfs: FAILED to create the journal!\n");
2011 if (jvp
&& jvp
!= hfsmp
->hfs_devvp
) {
2012 VNOP_CLOSE(jvp
, hfsmp
->hfs_flags
& HFS_READ_ONLY
? FREAD
: FREAD
|FWRITE
, context
);
2019 hfs_global_exclusive_lock_acquire(hfsmp
);
2021 HFSTOVCB(hfsmp
)->vcbJinfoBlock
= name
[1];
2022 HFSTOVCB(hfsmp
)->vcbAtrb
|= kHFSVolumeJournaledMask
;
2026 // save this off for the hack-y check in hfs_remove()
2027 hfsmp
->jnl_start
= (u_int32_t
)name
[2];
2028 hfsmp
->jnl_size
= (off_t
)((unsigned)name
[3]);
2029 hfsmp
->hfs_jnlinfoblkid
= jinfo_attr
.ca_fileid
;
2030 hfsmp
->hfs_jnlfileid
= jnl_attr
.ca_fileid
;
2032 vfs_setflags(hfsmp
->hfs_mp
, (uint64_t)((unsigned int)MNT_JOURNALED
));
2034 hfs_global_exclusive_lock_release(hfsmp
);
2035 hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 1);
2038 } else if (name
[0] == HFS_DISABLE_JOURNALING
) {
2039 // clear the journaling bit
2040 struct vnode
*vp
= p
->p_fd
->fd_cdir
;
2042 /* Only root can disable journaling */
2051 printf("hfs: disabling journaling for mount @ 0x%x\n", vnode_mount(vp
));
2053 hfs_global_exclusive_lock_acquire(hfsmp
);
2055 // Lights out for you buddy!
2056 journal_close(hfsmp
->jnl
);
2059 if (hfsmp
->jvp
&& hfsmp
->jvp
!= hfsmp
->hfs_devvp
) {
2060 VNOP_CLOSE(hfsmp
->jvp
, hfsmp
->hfs_flags
& HFS_READ_ONLY
? FREAD
: FREAD
|FWRITE
, context
);
2063 vfs_clearflags(hfsmp
->hfs_mp
, (uint64_t)((unsigned int)MNT_JOURNALED
));
2064 hfsmp
->jnl_start
= 0;
2065 hfsmp
->hfs_jnlinfoblkid
= 0;
2066 hfsmp
->hfs_jnlfileid
= 0;
2068 HFSTOVCB(hfsmp
)->vcbAtrb
&= ~kHFSVolumeJournaledMask
;
2070 hfs_global_exclusive_lock_release(hfsmp
);
2071 hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 1);
2074 } else if (name
[0] == HFS_GET_JOURNAL_INFO
) {
2075 struct vnode
*vp
= p
->p_fd
->fd_cdir
;
2076 off_t jnl_start
, jnl_size
;
2082 if (hfsmp
->jnl
== NULL
) {
2086 jnl_start
= (off_t
)(hfsmp
->jnl_start
* HFSTOVCB(hfsmp
)->blockSize
) + (off_t
)HFSTOVCB(hfsmp
)->hfsPlusIOPosOffset
;
2087 jnl_size
= (off_t
)hfsmp
->jnl_size
;
2090 if ((error
= copyout((caddr_t
)&jnl_start
, CAST_USER_ADDR_T(name
[1]), sizeof(off_t
))) != 0) {
2093 if ((error
= copyout((caddr_t
)&jnl_size
, CAST_USER_ADDR_T(name
[2]), sizeof(off_t
))) != 0) {
2098 } else if (name
[0] == HFS_SET_PKG_EXTENSIONS
) {
2100 return set_package_extensions_table((void *)name
[1], name
[2], name
[3]);
2102 } else if (name
[0] == VFS_CTL_QUERY
) {
2103 struct sysctl_req
*req
;
2105 struct user_vfsidctl user_vc
;
2108 boolean_t is_64_bit
;
2110 is_64_bit
= proc_is64bit(p
);
2111 req
= CAST_DOWN(struct sysctl_req
*, oldp
); /* we're new style vfs sysctl. */
2114 error
= SYSCTL_IN(req
, &user_vc
, sizeof(user_vc
));
2115 if (error
) return (error
);
2117 mp
= vfs_getvfs(&user_vc
.vc_fsid
);
2120 error
= SYSCTL_IN(req
, &vc
, sizeof(vc
));
2121 if (error
) return (error
);
2123 mp
= vfs_getvfs(&vc
.vc_fsid
);
2125 if (mp
== NULL
) return (ENOENT
);
2127 hfsmp
= VFSTOHFS(mp
);
2128 bzero(&vq
, sizeof(vq
));
2129 vq
.vq_flags
= hfsmp
->hfs_notification_conditions
;
2130 return SYSCTL_OUT(req
, &vq
, sizeof(vq
));;
2138 hfs_vfs_vget(struct mount
*mp
, ino64_t ino
, struct vnode
**vpp
, __unused vfs_context_t context
)
2140 return hfs_vget(VFSTOHFS(mp
), (cnid_t
)ino
, vpp
, 1);
2145 * Look up an HFS object by ID.
2147 * The object is returned with an iocount reference and the cnode locked.
2149 * If the object is a file then it will represent the data fork.
2153 hfs_vget(struct hfsmount
*hfsmp
, cnid_t cnid
, struct vnode
**vpp
, int skiplock
)
2155 struct vnode
*vp
= NULL
;
2156 struct cat_desc cndesc
;
2157 struct cat_attr cnattr
;
2158 struct cat_fork cnfork
;
2159 struct componentname cn
;
2162 /* Check for cnids that should't be exported. */
2163 if ((cnid
< kHFSFirstUserCatalogNodeID
)
2164 && (cnid
!= kHFSRootFolderID
&& cnid
!= kHFSRootParentID
))
2167 /* Don't export HFS Private Data dir. */
2168 if (cnid
== hfsmp
->hfs_privdir_desc
.cd_cnid
)
2172 * Check the hash first
2174 vp
= hfs_chash_getvnode(hfsmp
->hfs_raw_dev
, cnid
, 0, skiplock
);
2180 bzero(&cndesc
, sizeof(cndesc
));
2181 bzero(&cnattr
, sizeof(cnattr
));
2182 bzero(&cnfork
, sizeof(cnfork
));
2185 * Not in hash, lookup in catalog
2187 if (cnid
== kHFSRootParentID
) {
2188 static char hfs_rootname
[] = "/";
2190 cndesc
.cd_nameptr
= &hfs_rootname
[0];
2191 cndesc
.cd_namelen
= 1;
2192 cndesc
.cd_parentcnid
= kHFSRootParentID
;
2193 cndesc
.cd_cnid
= kHFSRootFolderID
;
2194 cndesc
.cd_flags
= CD_ISDIR
;
2196 cnattr
.ca_fileid
= kHFSRootFolderID
;
2197 cnattr
.ca_nlink
= 2;
2198 cnattr
.ca_entries
= 1;
2199 cnattr
.ca_mode
= (S_IFDIR
| S_IRWXU
| S_IRWXG
| S_IRWXO
);
2203 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_CATALOG
, HFS_SHARED_LOCK
);
2204 error
= cat_idlookup(hfsmp
, cnid
, &cndesc
, &cnattr
, &cnfork
);
2205 hfs_systemfile_unlock(hfsmp
, lockflags
);
2212 /* Hide open files that have been deleted */
2213 if ((hfsmp
->hfs_privdir_desc
.cd_cnid
!= 0) &&
2214 (cndesc
.cd_parentcnid
== hfsmp
->hfs_privdir_desc
.cd_cnid
)) {
2215 // XXXdbg - if this is a hardlink, we could call
2216 // hfs_chash_snoop() to see if there is
2217 // already a cnode and vnode present for
2218 // this fileid. however I'd rather not
2219 // risk it at this point in Tiger.
2220 cat_releasedesc(&cndesc
);
2228 * Supply hfs_getnewvnode with a component name.
2230 MALLOC_ZONE(cn
.cn_pnbuf
, caddr_t
, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
2231 cn
.cn_nameiop
= LOOKUP
;
2232 cn
.cn_flags
= ISLASTCN
| HASBUF
;
2233 cn
.cn_context
= NULL
;
2234 cn
.cn_pnlen
= MAXPATHLEN
;
2235 cn
.cn_nameptr
= cn
.cn_pnbuf
;
2236 cn
.cn_namelen
= cndesc
.cd_namelen
;
2239 bcopy(cndesc
.cd_nameptr
, cn
.cn_nameptr
, cndesc
.cd_namelen
+ 1);
2241 /* XXX should we supply the parent as well... ? */
2242 error
= hfs_getnewvnode(hfsmp
, NULLVP
, &cn
, &cndesc
, 0, &cnattr
, &cnfork
, &vp
);
2243 FREE_ZONE(cn
.cn_pnbuf
, cn
.cn_pnlen
, M_NAMEI
);
2245 cat_releasedesc(&cndesc
);
2248 hfs_unlock(VTOC(vp
));
2254 * Flush out all the files in a filesystem.
2257 hfs_flushfiles(struct mount
*mp
, int flags
, struct proc
*p
)
2259 struct hfsmount
*hfsmp
;
2260 struct vnode
*skipvp
= NULLVP
;
2265 hfsmp
= VFSTOHFS(mp
);
2269 * The open quota files have an indirect reference on
2270 * the root directory vnode. We must account for this
2271 * extra reference when doing the intial vflush.
2274 if (((unsigned int)vfs_flags(mp
)) & MNT_QUOTA
) {
2276 /* Find out how many quota files we have open. */
2277 for (i
= 0; i
< MAXQUOTAS
; i
++) {
2278 if (hfsmp
->hfs_qfiles
[i
].qf_vp
!= NULLVP
)
2282 /* Obtain the root vnode so we can skip over it. */
2283 skipvp
= hfs_chash_getvnode(hfsmp
->hfs_raw_dev
, kHFSRootFolderID
, 0, 0);
2287 error
= vflush(mp
, skipvp
, SKIPSYSTEM
| SKIPSWAP
| flags
);
2291 error
= vflush(mp
, skipvp
, SKIPSYSTEM
| flags
);
2294 if (((unsigned int)vfs_flags(mp
)) & MNT_QUOTA
) {
2297 * See if there are additional references on the
2298 * root vp besides the ones obtained from the open
2299 * quota files and the hfs_chash_getvnode call above.
2302 (vnode_isinuse(skipvp
, quotafilecnt
))) {
2303 error
= EBUSY
; /* root directory is still open */
2305 hfs_unlock(VTOC(skipvp
));
2308 if (error
&& (flags
& FORCECLOSE
) == 0)
2311 for (i
= 0; i
< MAXQUOTAS
; i
++) {
2312 if (hfsmp
->hfs_qfiles
[i
].qf_vp
== NULLVP
)
2314 hfs_quotaoff(p
, mp
, i
);
2316 error
= vflush(mp
, NULLVP
, SKIPSYSTEM
| flags
);
2324 * Update volume encoding bitmap (HFS Plus only)
2328 hfs_setencodingbits(struct hfsmount
*hfsmp
, u_int32_t encoding
)
2330 #define kIndexMacUkrainian 48 /* MacUkrainian encoding is 152 */
2331 #define kIndexMacFarsi 49 /* MacFarsi encoding is 140 */
2336 case kTextEncodingMacUkrainian
:
2337 index
= kIndexMacUkrainian
;
2339 case kTextEncodingMacFarsi
:
2340 index
= kIndexMacFarsi
;
2348 HFS_MOUNT_LOCK(hfsmp
, TRUE
)
2349 hfsmp
->encodingsBitmap
|= (u_int64_t
)(1ULL << index
);
2350 hfsmp
->vcbFlags
|= 0xFF00;
2351 HFS_MOUNT_UNLOCK(hfsmp
, TRUE
);
2356 * Update volume stats
2358 * On journal volumes this will cause a volume header flush
2362 hfs_volupdate(struct hfsmount
*hfsmp
, enum volop op
, int inroot
)
2368 lck_mtx_lock(&hfsmp
->hfs_mutex
);
2370 hfsmp
->vcbFlags
|= 0xFF00;
2371 hfsmp
->hfs_mtime
= tv
.tv_sec
;
2377 if (hfsmp
->hfs_dircount
!= 0xFFFFFFFF)
2378 ++hfsmp
->hfs_dircount
;
2379 if (inroot
&& hfsmp
->vcbNmRtDirs
!= 0xFFFF)
2380 ++hfsmp
->vcbNmRtDirs
;
2383 if (hfsmp
->hfs_dircount
!= 0)
2384 --hfsmp
->hfs_dircount
;
2385 if (inroot
&& hfsmp
->vcbNmRtDirs
!= 0xFFFF)
2386 --hfsmp
->vcbNmRtDirs
;
2389 if (hfsmp
->hfs_filecount
!= 0xFFFFFFFF)
2390 ++hfsmp
->hfs_filecount
;
2391 if (inroot
&& hfsmp
->vcbNmFls
!= 0xFFFF)
2395 if (hfsmp
->hfs_filecount
!= 0)
2396 --hfsmp
->hfs_filecount
;
2397 if (inroot
&& hfsmp
->vcbNmFls
!= 0xFFFF)
2402 lck_mtx_unlock(&hfsmp
->hfs_mutex
);
2405 hfs_flushvolumeheader(hfsmp
, 0, 0);
2413 hfs_flushMDB(struct hfsmount
*hfsmp
, int waitfor
, int altflush
)
2415 ExtendedVCB
*vcb
= HFSTOVCB(hfsmp
);
2416 struct filefork
*fp
;
2417 HFSMasterDirectoryBlock
*mdb
;
2418 struct buf
*bp
= NULL
;
2423 sectorsize
= hfsmp
->hfs_phys_block_size
;
2424 retval
= (int)buf_bread(hfsmp
->hfs_devvp
, (daddr64_t
)HFS_PRI_SECTOR(sectorsize
), sectorsize
, NOCRED
, &bp
);
2431 lck_mtx_lock(&hfsmp
->hfs_mutex
);
2433 mdb
= (HFSMasterDirectoryBlock
*)(buf_dataptr(bp
) + HFS_PRI_OFFSET(sectorsize
));
2435 mdb
->drCrDate
= SWAP_BE32 (UTCToLocal(to_hfs_time(vcb
->vcbCrDate
)));
2436 mdb
->drLsMod
= SWAP_BE32 (UTCToLocal(to_hfs_time(vcb
->vcbLsMod
)));
2437 mdb
->drAtrb
= SWAP_BE16 (vcb
->vcbAtrb
);
2438 mdb
->drNmFls
= SWAP_BE16 (vcb
->vcbNmFls
);
2439 mdb
->drAllocPtr
= SWAP_BE16 (vcb
->nextAllocation
);
2440 mdb
->drClpSiz
= SWAP_BE32 (vcb
->vcbClpSiz
);
2441 mdb
->drNxtCNID
= SWAP_BE32 (vcb
->vcbNxtCNID
);
2442 mdb
->drFreeBks
= SWAP_BE16 (vcb
->freeBlocks
);
2444 namelen
= strlen(vcb
->vcbVN
);
2445 retval
= utf8_to_hfs(vcb
, namelen
, vcb
->vcbVN
, mdb
->drVN
);
2446 /* Retry with MacRoman in case that's how it was exported. */
2448 retval
= utf8_to_mac_roman(namelen
, vcb
->vcbVN
, mdb
->drVN
);
2450 mdb
->drVolBkUp
= SWAP_BE32 (UTCToLocal(to_hfs_time(vcb
->vcbVolBkUp
)));
2451 mdb
->drWrCnt
= SWAP_BE32 (vcb
->vcbWrCnt
);
2452 mdb
->drNmRtDirs
= SWAP_BE16 (vcb
->vcbNmRtDirs
);
2453 mdb
->drFilCnt
= SWAP_BE32 (vcb
->vcbFilCnt
);
2454 mdb
->drDirCnt
= SWAP_BE32 (vcb
->vcbDirCnt
);
2456 bcopy(vcb
->vcbFndrInfo
, mdb
->drFndrInfo
, sizeof(mdb
->drFndrInfo
));
2458 fp
= VTOF(vcb
->extentsRefNum
);
2459 mdb
->drXTExtRec
[0].startBlock
= SWAP_BE16 (fp
->ff_extents
[0].startBlock
);
2460 mdb
->drXTExtRec
[0].blockCount
= SWAP_BE16 (fp
->ff_extents
[0].blockCount
);
2461 mdb
->drXTExtRec
[1].startBlock
= SWAP_BE16 (fp
->ff_extents
[1].startBlock
);
2462 mdb
->drXTExtRec
[1].blockCount
= SWAP_BE16 (fp
->ff_extents
[1].blockCount
);
2463 mdb
->drXTExtRec
[2].startBlock
= SWAP_BE16 (fp
->ff_extents
[2].startBlock
);
2464 mdb
->drXTExtRec
[2].blockCount
= SWAP_BE16 (fp
->ff_extents
[2].blockCount
);
2465 mdb
->drXTFlSize
= SWAP_BE32 (fp
->ff_blocks
* vcb
->blockSize
);
2466 mdb
->drXTClpSiz
= SWAP_BE32 (fp
->ff_clumpsize
);
2467 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2469 fp
= VTOF(vcb
->catalogRefNum
);
2470 mdb
->drCTExtRec
[0].startBlock
= SWAP_BE16 (fp
->ff_extents
[0].startBlock
);
2471 mdb
->drCTExtRec
[0].blockCount
= SWAP_BE16 (fp
->ff_extents
[0].blockCount
);
2472 mdb
->drCTExtRec
[1].startBlock
= SWAP_BE16 (fp
->ff_extents
[1].startBlock
);
2473 mdb
->drCTExtRec
[1].blockCount
= SWAP_BE16 (fp
->ff_extents
[1].blockCount
);
2474 mdb
->drCTExtRec
[2].startBlock
= SWAP_BE16 (fp
->ff_extents
[2].startBlock
);
2475 mdb
->drCTExtRec
[2].blockCount
= SWAP_BE16 (fp
->ff_extents
[2].blockCount
);
2476 mdb
->drCTFlSize
= SWAP_BE32 (fp
->ff_blocks
* vcb
->blockSize
);
2477 mdb
->drCTClpSiz
= SWAP_BE32 (fp
->ff_clumpsize
);
2478 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2480 MarkVCBClean( vcb
);
2482 lck_mtx_unlock(&hfsmp
->hfs_mutex
);
2484 /* If requested, flush out the alternate MDB */
2486 struct buf
*alt_bp
= NULL
;
2488 if (buf_meta_bread(hfsmp
->hfs_devvp
, hfsmp
->hfs_alt_id_sector
, sectorsize
, NOCRED
, &alt_bp
) == 0) {
2489 bcopy(mdb
, (char *)buf_dataptr(alt_bp
) + HFS_ALT_OFFSET(sectorsize
), kMDBSize
);
2491 (void) VNOP_BWRITE(alt_bp
);
2496 if (waitfor
!= MNT_WAIT
)
2499 retval
= VNOP_BWRITE(bp
);
2505 * Flush any dirty in-memory mount data to the on-disk
2508 * Note: the on-disk volume signature is intentionally
2509 * not flushed since the on-disk "H+" and "HX" signatures
2510 * are always stored in-memory as "H+".
2514 hfs_flushvolumeheader(struct hfsmount
*hfsmp
, int waitfor
, int altflush
)
2516 ExtendedVCB
*vcb
= HFSTOVCB(hfsmp
);
2517 struct filefork
*fp
;
2518 HFSPlusVolumeHeader
*volumeHeader
;
2523 daddr64_t priIDSector
;
2525 u_int16_t signature
;
2526 u_int16_t hfsversion
;
2528 if (hfsmp
->hfs_flags
& HFS_READ_ONLY
) {
2531 if (vcb
->vcbSigWord
== kHFSSigWord
)
2532 return hfs_flushMDB(hfsmp
, waitfor
, altflush
);
2536 sectorsize
= hfsmp
->hfs_phys_block_size
;
2537 priIDSector
= (daddr64_t
)((vcb
->hfsPlusIOPosOffset
/ sectorsize
) +
2538 HFS_PRI_SECTOR(sectorsize
));
2540 if (hfs_start_transaction(hfsmp
) != 0) {
2544 retval
= (int)buf_meta_bread(hfsmp
->hfs_devvp
, priIDSector
, sectorsize
, NOCRED
, &bp
);
2549 hfs_end_transaction(hfsmp
);
2551 printf("HFS: err %d reading VH blk (%s)\n", retval
, vcb
->vcbVN
);
2556 journal_modify_block_start(hfsmp
->jnl
, bp
);
2559 volumeHeader
= (HFSPlusVolumeHeader
*)((char *)buf_dataptr(bp
) + HFS_PRI_OFFSET(sectorsize
));
2562 * Sanity check what we just read.
2564 signature
= SWAP_BE16 (volumeHeader
->signature
);
2565 hfsversion
= SWAP_BE16 (volumeHeader
->version
);
2566 if ((signature
!= kHFSPlusSigWord
&& signature
!= kHFSXSigWord
) ||
2567 (hfsversion
< kHFSPlusVersion
) || (hfsversion
> 100) ||
2568 (SWAP_BE32 (volumeHeader
->blockSize
) != vcb
->blockSize
)) {
2570 panic("HFS: corrupt VH on %s, sig 0x%04x, ver %d, blksize %d",
2571 vcb
->vcbVN
, signature
, hfsversion
,
2572 SWAP_BE32 (volumeHeader
->blockSize
));
2574 printf("HFS: corrupt VH blk (%s)\n", vcb
->vcbVN
);
2580 * For embedded HFS+ volumes, update create date if it changed
2581 * (ie from a setattrlist call)
2583 if ((vcb
->hfsPlusIOPosOffset
!= 0) &&
2584 (SWAP_BE32 (volumeHeader
->createDate
) != vcb
->localCreateDate
)) {
2586 HFSMasterDirectoryBlock
*mdb
;
2588 retval
= (int)buf_meta_bread(hfsmp
->hfs_devvp
, (daddr64_t
)HFS_PRI_SECTOR(sectorsize
),
2589 sectorsize
, NOCRED
, &bp2
);
2595 mdb
= (HFSMasterDirectoryBlock
*)(buf_dataptr(bp2
) +
2596 HFS_PRI_OFFSET(sectorsize
));
2598 if ( SWAP_BE32 (mdb
->drCrDate
) != vcb
->localCreateDate
)
2601 journal_modify_block_start(hfsmp
->jnl
, bp2
);
2604 mdb
->drCrDate
= SWAP_BE32 (vcb
->localCreateDate
); /* pick up the new create date */
2607 journal_modify_block_end(hfsmp
->jnl
, bp2
);
2609 (void) VNOP_BWRITE(bp2
); /* write out the changes */
2614 buf_brelse(bp2
); /* just release it */
2619 if (1 /* hfsmp->jnl == 0 */) {
2620 lck_mtx_lock(&hfsmp
->hfs_mutex
);
2623 /* Note: only update the lower 16 bits worth of attributes */
2624 volumeHeader
->attributes
= SWAP_BE32 (vcb
->vcbAtrb
);
2625 volumeHeader
->journalInfoBlock
= SWAP_BE32 (vcb
->vcbJinfoBlock
);
2627 volumeHeader
->lastMountedVersion
= SWAP_BE32 (kHFSJMountVersion
);
2629 volumeHeader
->lastMountedVersion
= SWAP_BE32 (kHFSPlusMountVersion
);
2631 volumeHeader
->createDate
= SWAP_BE32 (vcb
->localCreateDate
); /* volume create date is in local time */
2632 volumeHeader
->modifyDate
= SWAP_BE32 (to_hfs_time(vcb
->vcbLsMod
));
2633 volumeHeader
->backupDate
= SWAP_BE32 (to_hfs_time(vcb
->vcbVolBkUp
));
2634 volumeHeader
->fileCount
= SWAP_BE32 (vcb
->vcbFilCnt
);
2635 volumeHeader
->folderCount
= SWAP_BE32 (vcb
->vcbDirCnt
);
2636 volumeHeader
->totalBlocks
= SWAP_BE32 (vcb
->totalBlocks
);
2637 volumeHeader
->freeBlocks
= SWAP_BE32 (vcb
->freeBlocks
);
2638 volumeHeader
->nextAllocation
= SWAP_BE32 (vcb
->nextAllocation
);
2639 volumeHeader
->rsrcClumpSize
= SWAP_BE32 (vcb
->vcbClpSiz
);
2640 volumeHeader
->dataClumpSize
= SWAP_BE32 (vcb
->vcbClpSiz
);
2641 volumeHeader
->nextCatalogID
= SWAP_BE32 (vcb
->vcbNxtCNID
);
2642 volumeHeader
->writeCount
= SWAP_BE32 (vcb
->vcbWrCnt
);
2643 volumeHeader
->encodingsBitmap
= SWAP_BE64 (vcb
->encodingsBitmap
);
2645 if (bcmp(vcb
->vcbFndrInfo
, volumeHeader
->finderInfo
, sizeof(volumeHeader
->finderInfo
)) != 0) {
2646 bcopy(vcb
->vcbFndrInfo
, volumeHeader
->finderInfo
, sizeof(volumeHeader
->finderInfo
));
2650 /* Sync Extents over-flow file meta data */
2651 fp
= VTOF(vcb
->extentsRefNum
);
2652 if (FTOC(fp
)->c_flag
& C_MODIFIED
) {
2653 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
2654 volumeHeader
->extentsFile
.extents
[i
].startBlock
=
2655 SWAP_BE32 (fp
->ff_extents
[i
].startBlock
);
2656 volumeHeader
->extentsFile
.extents
[i
].blockCount
=
2657 SWAP_BE32 (fp
->ff_extents
[i
].blockCount
);
2659 volumeHeader
->extentsFile
.logicalSize
= SWAP_BE64 (fp
->ff_size
);
2660 volumeHeader
->extentsFile
.totalBlocks
= SWAP_BE32 (fp
->ff_blocks
);
2661 volumeHeader
->extentsFile
.clumpSize
= SWAP_BE32 (fp
->ff_clumpsize
);
2662 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2665 /* Sync Catalog file meta data */
2666 fp
= VTOF(vcb
->catalogRefNum
);
2667 if (FTOC(fp
)->c_flag
& C_MODIFIED
) {
2668 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
2669 volumeHeader
->catalogFile
.extents
[i
].startBlock
=
2670 SWAP_BE32 (fp
->ff_extents
[i
].startBlock
);
2671 volumeHeader
->catalogFile
.extents
[i
].blockCount
=
2672 SWAP_BE32 (fp
->ff_extents
[i
].blockCount
);
2674 volumeHeader
->catalogFile
.logicalSize
= SWAP_BE64 (fp
->ff_size
);
2675 volumeHeader
->catalogFile
.totalBlocks
= SWAP_BE32 (fp
->ff_blocks
);
2676 volumeHeader
->catalogFile
.clumpSize
= SWAP_BE32 (fp
->ff_clumpsize
);
2677 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2680 /* Sync Allocation file meta data */
2681 fp
= VTOF(vcb
->allocationsRefNum
);
2682 if (FTOC(fp
)->c_flag
& C_MODIFIED
) {
2683 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
2684 volumeHeader
->allocationFile
.extents
[i
].startBlock
=
2685 SWAP_BE32 (fp
->ff_extents
[i
].startBlock
);
2686 volumeHeader
->allocationFile
.extents
[i
].blockCount
=
2687 SWAP_BE32 (fp
->ff_extents
[i
].blockCount
);
2689 volumeHeader
->allocationFile
.logicalSize
= SWAP_BE64 (fp
->ff_size
);
2690 volumeHeader
->allocationFile
.totalBlocks
= SWAP_BE32 (fp
->ff_blocks
);
2691 volumeHeader
->allocationFile
.clumpSize
= SWAP_BE32 (fp
->ff_clumpsize
);
2692 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2695 /* Sync Attribute file meta data */
2696 if (hfsmp
->hfs_attribute_vp
) {
2697 fp
= VTOF(hfsmp
->hfs_attribute_vp
);
2698 for (i
= 0; i
< kHFSPlusExtentDensity
; i
++) {
2699 volumeHeader
->attributesFile
.extents
[i
].startBlock
=
2700 SWAP_BE32 (fp
->ff_extents
[i
].startBlock
);
2701 volumeHeader
->attributesFile
.extents
[i
].blockCount
=
2702 SWAP_BE32 (fp
->ff_extents
[i
].blockCount
);
2704 FTOC(fp
)->c_flag
&= ~C_MODIFIED
;
2705 volumeHeader
->attributesFile
.logicalSize
= SWAP_BE64 (fp
->ff_size
);
2706 volumeHeader
->attributesFile
.totalBlocks
= SWAP_BE32 (fp
->ff_blocks
);
2707 volumeHeader
->attributesFile
.clumpSize
= SWAP_BE32 (fp
->ff_clumpsize
);
2710 vcb
->vcbFlags
&= 0x00FF;
2712 if (1 /* hfsmp->jnl == 0 */) {
2713 lck_mtx_unlock(&hfsmp
->hfs_mutex
);
2716 /* If requested, flush out the alternate volume header */
2717 if (altflush
&& hfsmp
->hfs_alt_id_sector
) {
2718 struct buf
*alt_bp
= NULL
;
2720 if (buf_meta_bread(hfsmp
->hfs_devvp
, hfsmp
->hfs_alt_id_sector
, sectorsize
, NOCRED
, &alt_bp
) == 0) {
2722 journal_modify_block_start(hfsmp
->jnl
, alt_bp
);
2725 bcopy(volumeHeader
, (char *)buf_dataptr(alt_bp
) + HFS_ALT_OFFSET(sectorsize
), kMDBSize
);
2728 journal_modify_block_end(hfsmp
->jnl
, alt_bp
);
2730 (void) VNOP_BWRITE(alt_bp
);
2737 journal_modify_block_end(hfsmp
->jnl
, bp
);
2739 if (waitfor
!= MNT_WAIT
)
2742 retval
= VNOP_BWRITE(bp
);
2743 /* When critical data changes, flush the device cache */
2744 if (critical
&& (retval
== 0)) {
2745 (void) VNOP_IOCTL(hfsmp
->hfs_devvp
, DKIOCSYNCHRONIZECACHE
,
2746 NULL
, FWRITE
, NULL
);
2750 hfs_end_transaction(hfsmp
);
2757 * Extend a file system.
2761 hfs_extendfs(struct hfsmount
*hfsmp
, u_int64_t newsize
, vfs_context_t context
)
2763 struct proc
*p
= vfs_context_proc(context
);
2764 kauth_cred_t cred
= vfs_context_ucred(context
);
2766 struct vnode
*devvp
;
2768 struct filefork
*fp
= NULL
;
2770 struct cat_fork forkdata
;
2772 u_int64_t newblkcnt
;
2773 u_int64_t prev_phys_block_count
;
2775 u_int64_t sectorcnt
;
2776 u_int32_t sectorsize
;
2777 daddr64_t prev_alt_sector
;
2782 devvp
= hfsmp
->hfs_devvp
;
2783 vcb
= HFSTOVCB(hfsmp
);
2786 * - HFS Plus file systems only.
2787 * - Journaling must be enabled.
2788 * - No embedded volumes.
2790 if ((vcb
->vcbSigWord
== kHFSSigWord
) ||
2791 (hfsmp
->jnl
== NULL
) ||
2792 (vcb
->hfsPlusIOPosOffset
!= 0)) {
2796 * If extending file system by non-root, then verify
2797 * ownership and check permissions.
2799 if (suser(cred
, NULL
)) {
2800 error
= hfs_vget(hfsmp
, kHFSRootFolderID
, &vp
, 0);
2804 error
= hfs_owner_rights(hfsmp
, VTOC(vp
)->c_uid
, cred
, p
, 0);
2806 error
= hfs_write_access(vp
, cred
, p
, false);
2808 hfs_unlock(VTOC(vp
));
2813 error
= vnode_authorize(devvp
, NULL
, KAUTH_VNODE_READ_DATA
| KAUTH_VNODE_WRITE_DATA
, context
);
2817 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKSIZE
, (caddr_t
)§orsize
, 0, context
)) {
2820 if (sectorsize
!= hfsmp
->hfs_phys_block_size
) {
2823 if (VNOP_IOCTL(devvp
, DKIOCGETBLOCKCOUNT
, (caddr_t
)§orcnt
, 0, context
)) {
2826 if ((sectorsize
* sectorcnt
) < newsize
) {
2827 printf("hfs_extendfs: not enough space on device\n");
2830 oldsize
= (u_int64_t
)hfsmp
->totalBlocks
* (u_int64_t
)hfsmp
->blockSize
;
2833 * Validate new size.
2835 if ((newsize
<= oldsize
) || (newsize
% sectorsize
)) {
2836 printf("hfs_extendfs: invalid size\n");
2839 newblkcnt
= newsize
/ vcb
->blockSize
;
2840 if (newblkcnt
> (u_int64_t
)0xFFFFFFFF)
2843 addblks
= newblkcnt
- vcb
->totalBlocks
;
2845 printf("hfs_extendfs: growing %s by %d blocks\n", vcb
->vcbVN
, addblks
);
2847 * Enclose changes inside a transaction.
2849 if (hfs_start_transaction(hfsmp
) != 0) {
2853 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_EXTENTS
| SFL_BITMAP
, HFS_EXCLUSIVE_LOCK
);
2854 vp
= vcb
->allocationsRefNum
;
2856 bcopy(&fp
->ff_data
, &forkdata
, sizeof(forkdata
));
2859 * Calculate additional space required (if any) by allocation bitmap.
2861 bitmapblks
= roundup(newblkcnt
/ 8, vcb
->vcbVBMIOSize
) / vcb
->blockSize
;
2862 if (bitmapblks
> (daddr_t
)fp
->ff_blocks
)
2863 bitmapblks
-= fp
->ff_blocks
;
2867 if (bitmapblks
> 0) {
2872 * Add a new extent to the allocation bitmap file.
2874 error
= AddFileExtent(vcb
, fp
, vcb
->totalBlocks
, bitmapblks
);
2876 printf("hfs_extendfs: error %d adding extents\n", error
);
2879 blkcnt
= bitmapblks
;
2880 blkno
= (daddr64_t
)fp
->ff_blocks
;
2881 fp
->ff_blocks
+= bitmapblks
;
2882 fp
->ff_size
+= (u_int64_t
)bitmapblks
* (u_int64_t
)vcb
->blockSize
;
2883 VTOC(vp
)->c_blocks
= fp
->ff_blocks
;
2885 * Zero out the new bitmap blocks.
2890 while (blkcnt
> 0) {
2891 error
= (int)buf_meta_bread(vp
, blkno
, vcb
->blockSize
, NOCRED
, &bp
);
2898 bzero((char *)buf_dataptr(bp
), vcb
->blockSize
);
2900 error
= (int)buf_bwrite(bp
);
2908 printf("hfs_extendfs: error %d clearing blocks\n", error
);
2912 * Mark the new bitmap space as allocated.
2914 error
= BlockMarkAllocated(vcb
, vcb
->totalBlocks
, bitmapblks
);
2916 printf("hfs_extendfs: error %d setting bitmap\n", error
);
2921 * Mark the new alternate VH as allocated.
2923 if (vcb
->blockSize
== 512)
2924 error
= BlockMarkAllocated(vcb
, vcb
->totalBlocks
+ addblks
- 2, 2);
2926 error
= BlockMarkAllocated(vcb
, vcb
->totalBlocks
+ addblks
- 1, 1);
2928 printf("hfs_extendfs: error %d setting bitmap (VH)\n", error
);
2932 * Mark the old alternate VH as free.
2934 if (vcb
->blockSize
== 512)
2935 (void) BlockMarkFree(vcb
, vcb
->totalBlocks
- 2, 2);
2937 (void) BlockMarkFree(vcb
, vcb
->totalBlocks
- 1, 1);
2939 * Adjust file system variables for new space.
2941 prev_phys_block_count
= hfsmp
->hfs_phys_block_count
;
2942 prev_alt_sector
= hfsmp
->hfs_alt_id_sector
;
2944 vcb
->totalBlocks
+= addblks
;
2945 vcb
->freeBlocks
+= addblks
- bitmapblks
;
2946 hfsmp
->hfs_phys_block_count
= newsize
/ sectorsize
;
2947 hfsmp
->hfs_alt_id_sector
= (hfsmp
->hfsPlusIOPosOffset
/ sectorsize
) +
2948 HFS_ALT_SECTOR(sectorsize
, hfsmp
->hfs_phys_block_count
);
2950 error
= hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, HFS_ALTFLUSH
);
2952 printf("hfs_extendfs: couldn't flush volume headers (%d)", error
);
2954 * Restore to old state.
2956 fp
->ff_size
-= (u_int64_t
)bitmapblks
* (u_int64_t
)vcb
->blockSize
;
2957 vcb
->totalBlocks
-= addblks
;
2958 vcb
->freeBlocks
-= addblks
- bitmapblks
;
2959 hfsmp
->hfs_phys_block_count
= prev_phys_block_count
;
2960 hfsmp
->hfs_alt_id_sector
= prev_alt_sector
;
2962 if (vcb
->blockSize
== 512)
2963 (void) BlockMarkAllocated(vcb
, vcb
->totalBlocks
- 2, 2);
2965 (void) BlockMarkAllocated(vcb
, vcb
->totalBlocks
- 1, 1);
2969 * Invalidate the old alternate volume header.
2972 if (prev_alt_sector
) {
2973 if (buf_meta_bread(hfsmp
->hfs_devvp
, prev_alt_sector
, sectorsize
,
2974 NOCRED
, &bp
) == 0) {
2975 journal_modify_block_start(hfsmp
->jnl
, bp
);
2977 bzero((char *)buf_dataptr(bp
) + HFS_ALT_OFFSET(sectorsize
), kMDBSize
);
2979 journal_modify_block_end(hfsmp
->jnl
, bp
);
2986 /* Restore allocation fork. */
2987 bcopy(&forkdata
, &fp
->ff_data
, sizeof(forkdata
));
2988 VTOC(vp
)->c_blocks
= fp
->ff_blocks
;
2991 hfs_systemfile_unlock(hfsmp
, lockflags
);
2992 hfs_end_transaction(hfsmp
);
2997 #define HFS_MIN_SIZE (32LL * 1024LL * 1024LL)
3000 * Truncate a file system (while still mounted).
3004 hfs_truncatefs(struct hfsmount
*hfsmp
, u_int64_t newsize
, __unused vfs_context_t context
)
3006 struct vnode
* rvp
= NULL
;
3007 struct buf
*bp
= NULL
;
3009 u_int32_t newblkcnt
;
3010 u_int32_t reclaimblks
;
3012 int transaction_begun
= 0;
3016 * Grab the root vnode to serialize with another hfs_truncatefs call.
3018 error
= hfs_vget(hfsmp
, kHFSRootFolderID
, &rvp
, 0);
3023 * - HFS Plus file systems only.
3024 * - Journaling must be enabled.
3025 * - No embedded volumes.
3027 if ((hfsmp
->hfs_flags
& HFS_STANDARD
) ||
3028 (hfsmp
->jnl
== NULL
) ||
3029 (hfsmp
->hfsPlusIOPosOffset
!= 0)) {
3033 oldsize
= (u_int64_t
)hfsmp
->totalBlocks
* (u_int64_t
)hfsmp
->blockSize
;
3034 newblkcnt
= newsize
/ hfsmp
->blockSize
;
3035 reclaimblks
= hfsmp
->totalBlocks
- newblkcnt
;
3037 /* Make sure new size is valid. */
3038 if ((newsize
< HFS_MIN_SIZE
) ||
3039 (newsize
>= oldsize
) ||
3040 (newsize
% hfsmp
->hfs_phys_block_size
)) {
3044 /* Make sure there's enough space to work with. */
3045 if (reclaimblks
> (hfsmp
->freeBlocks
/ 4)) {
3050 printf("hfs_truncatefs: shrinking %s by %d blocks out of %d\n",
3051 hfsmp
->vcbVN
, reclaimblks
, hfsmp
->totalBlocks
);
3053 if (hfs_start_transaction(hfsmp
) != 0) {
3057 transaction_begun
= 1;
3060 * Look for files that have blocks beyond newblkcnt.
3062 if (hfs_isallocated(hfsmp
, newblkcnt
, reclaimblks
- 1)) {
3064 * hfs_reclaimspace will use separate transactions when
3065 * relocating files (so we don't overwhelm the journal).
3067 hfs_end_transaction(hfsmp
);
3068 transaction_begun
= 0;
3070 /* Attempt to reclaim some space. */
3071 if (hfs_reclaimspace(hfsmp
, newblkcnt
) != 0) {
3072 printf("hfs_truncatefs: couldn't reclaim space on %s\n", hfsmp
->vcbVN
);
3076 if (hfs_start_transaction(hfsmp
) != 0) {
3080 transaction_begun
= 1;
3082 /* Check if we're clear now. */
3083 if (hfs_isallocated(hfsmp
, newblkcnt
, reclaimblks
- 1)) {
3084 printf("hfs_truncatefs: didn't reclaim enough space on %s\n", hfsmp
->vcbVN
);
3089 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_EXTENTS
| SFL_BITMAP
, HFS_EXCLUSIVE_LOCK
);
3092 * Mark the old alternate volume header as free.
3093 * We don't bother shrinking allocation bitmap file.
3095 if (hfsmp
->blockSize
== 512)
3096 (void) BlockMarkFree(hfsmp
, hfsmp
->totalBlocks
- 2, 2);
3098 (void) BlockMarkFree(hfsmp
, hfsmp
->totalBlocks
- 1, 1);
3101 * Allocate last block for alternate volume header.
3103 if (hfsmp
->blockSize
== 512)
3104 error
= BlockMarkAllocated(hfsmp
, newblkcnt
- 2, 2);
3106 error
= BlockMarkAllocated(hfsmp
, newblkcnt
- 1, 1);
3113 * Invalidate the existing alternate volume header.
3115 if (hfsmp
->hfs_alt_id_sector
) {
3116 if (buf_meta_bread(hfsmp
->hfs_devvp
, hfsmp
->hfs_alt_id_sector
,
3117 hfsmp
->hfs_phys_block_size
, NOCRED
, &bp
) == 0) {
3118 journal_modify_block_start(hfsmp
->jnl
, bp
);
3120 bzero((void*)((char *)buf_dataptr(bp
) + HFS_ALT_OFFSET(hfsmp
->hfs_phys_block_size
)), kMDBSize
);
3122 journal_modify_block_end(hfsmp
->jnl
, bp
);
3130 * Adjust file system variables and flush them to disk.
3132 hfsmp
->freeBlocks
-= hfsmp
->totalBlocks
- newblkcnt
;
3133 hfsmp
->totalBlocks
= newblkcnt
;
3134 hfsmp
->hfs_phys_block_count
= newsize
/ hfsmp
->hfs_phys_block_size
;
3135 hfsmp
->hfs_alt_id_sector
= HFS_ALT_SECTOR(hfsmp
->hfs_phys_block_size
, hfsmp
->hfs_phys_block_count
);
3136 MarkVCBDirty(hfsmp
);
3137 error
= hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, HFS_ALTFLUSH
);
3139 panic("hfs_truncatefs: unexpected error flushing volume header (%d)\n", error
);
3142 hfs_systemfile_unlock(hfsmp
, lockflags
);
3144 if (transaction_begun
) {
3145 hfs_end_transaction(hfsmp
);
3148 hfs_unlock(VTOC(rvp
));
3155 * Reclaim space at the end of a file system.
3158 hfs_reclaimspace(struct hfsmount
*hfsmp
, u_long startblk
)
3160 struct vnode
*vp
= NULL
;
3162 struct BTreeIterator
* iterator
= NULL
;
3163 struct FSBufferDescriptor btdata
;
3164 struct HFSPlusCatalogFile filerec
;
3165 u_int32_t saved_next_allocation
;
3176 * Check if Attributes file overlaps.
3178 if (hfsmp
->hfs_attribute_vp
) {
3179 struct filefork
*fp
;
3181 fp
= VTOF(hfsmp
->hfs_attribute_vp
);
3182 for (i
= 0; i
< kHFSPlusExtentDensity
; ++i
) {
3183 block
= fp
->ff_extents
[i
].startBlock
+
3184 fp
->ff_extents
[i
].blockCount
;
3185 if (block
>= startblk
) {
3186 printf("hfs_reclaimspace: Attributes file can't move\n");
3192 /* For now we'll move a maximum of 16,384 files. */
3193 maxfilecnt
= MIN(hfsmp
->hfs_filecount
, 16384);
3194 cnidbufsize
= maxfilecnt
* sizeof(cnid_t
);
3195 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&cnidbufp
, cnidbufsize
)) {
3198 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&iterator
, sizeof(*iterator
))) {
3199 kmem_free(kernel_map
, (vm_offset_t
)cnidbufp
, cnidbufsize
);
3203 saved_next_allocation
= hfsmp
->nextAllocation
;
3204 hfsmp
->nextAllocation
= hfsmp
->hfs_metazone_start
;
3206 fcb
= VTOF(hfsmp
->hfs_catalog_vp
);
3207 bzero(iterator
, sizeof(*iterator
));
3209 btdata
.bufferAddress
= &filerec
;
3210 btdata
.itemSize
= sizeof(filerec
);
3211 btdata
.itemCount
= 1;
3213 /* Keep the Catalog file locked during iteration. */
3214 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_CATALOG
, HFS_SHARED_LOCK
);
3215 error
= BTIterateRecord(fcb
, kBTreeFirstRecord
, iterator
, NULL
, NULL
);
3217 hfs_systemfile_unlock(hfsmp
, lockflags
);
3222 * Iterate over all the catalog records looking for files
3223 * that overlap into the space we're trying to free up.
3225 for (filecnt
= 0; filecnt
< maxfilecnt
; ) {
3226 error
= BTIterateRecord(fcb
, kBTreeNextRecord
, iterator
, &btdata
, NULL
);
3228 if (error
== btNotFound
)
3232 if (filerec
.recordType
!= kHFSPlusFileRecord
||
3233 filerec
.fileID
== hfsmp
->hfs_jnlfileid
)
3236 * Check if either fork overlaps target space.
3238 for (i
= 0; i
< kHFSPlusExtentDensity
; ++i
) {
3239 block
= filerec
.dataFork
.extents
[i
].startBlock
+
3240 filerec
.dataFork
.extents
[i
].blockCount
;
3241 if (block
>= startblk
) {
3242 if (filerec
.fileID
== hfsmp
->hfs_jnlfileid
) {
3243 printf("hfs_reclaimspace: cannot move active journal\n");
3247 cnidbufp
[filecnt
++] = filerec
.fileID
;
3250 block
= filerec
.resourceFork
.extents
[i
].startBlock
+
3251 filerec
.resourceFork
.extents
[i
].blockCount
;
3252 if (block
>= startblk
) {
3253 cnidbufp
[filecnt
++] = filerec
.fileID
;
3258 /* All done with catalog. */
3259 hfs_systemfile_unlock(hfsmp
, lockflags
);
3263 /* Now move any files that are in the way. */
3264 for (i
= 0; i
< filecnt
; ++i
) {
3267 if (hfs_vget(hfsmp
, cnidbufp
[i
], &vp
, 0) != 0)
3270 /* Relocate any data fork blocks. */
3271 if (VTOF(vp
)->ff_blocks
> 0) {
3272 error
= hfs_relocate(vp
, hfsmp
->hfs_metazone_end
+ 1, kauth_cred_get(), current_proc());
3274 hfs_unlock(VTOC(vp
));
3278 /* Relocate any resource fork blocks. */
3279 if ((VTOC((vp
))->c_blocks
- VTOF((vp
))->ff_blocks
) > 0) {
3280 error
= hfs_vgetrsrc(hfsmp
, vp
, &rvp
, current_proc());
3283 hfs_lock(VTOC(rvp
), HFS_EXCLUSIVE_LOCK
);
3284 error
= hfs_relocate(rvp
, hfsmp
->hfs_metazone_end
+ 1, kauth_cred_get(), current_proc());
3285 hfs_unlock(VTOC(rvp
));
3299 * Note: this implementation doesn't handle overflow extents.
3302 kmem_free(kernel_map
, (vm_offset_t
)iterator
, sizeof(*iterator
));
3303 kmem_free(kernel_map
, (vm_offset_t
)cnidbufp
, cnidbufsize
);
3305 /* On errors restore the roving allocation pointer. */
3307 hfsmp
->nextAllocation
= saved_next_allocation
;
3314 * Get file system attributes.
3317 hfs_vfs_getattr(struct mount
*mp
, struct vfs_attr
*fsap
, __unused vfs_context_t context
)
3319 ExtendedVCB
*vcb
= VFSTOVCB(mp
);
3320 struct hfsmount
*hfsmp
= VFSTOHFS(mp
);
3323 freeCNIDs
= (u_long
)0xFFFFFFFF - (u_long
)hfsmp
->vcbNxtCNID
;
3325 VFSATTR_RETURN(fsap
, f_objcount
, (uint64_t)hfsmp
->vcbFilCnt
+ (uint64_t)hfsmp
->vcbDirCnt
);
3326 VFSATTR_RETURN(fsap
, f_filecount
, (uint64_t)hfsmp
->vcbFilCnt
);
3327 VFSATTR_RETURN(fsap
, f_dircount
, (uint64_t)hfsmp
->vcbDirCnt
);
3328 VFSATTR_RETURN(fsap
, f_maxobjcount
, (uint64_t)0xFFFFFFFF);
3329 VFSATTR_RETURN(fsap
, f_iosize
, (size_t)(MAX_UPL_TRANSFER
* PAGE_SIZE
));
3330 VFSATTR_RETURN(fsap
, f_blocks
, (uint64_t)hfsmp
->totalBlocks
);
3331 VFSATTR_RETURN(fsap
, f_bfree
, (uint64_t)hfs_freeblks(hfsmp
, 0));
3332 VFSATTR_RETURN(fsap
, f_bavail
, (uint64_t)hfs_freeblks(hfsmp
, 1));
3333 VFSATTR_RETURN(fsap
, f_bsize
, (uint32_t)vcb
->blockSize
);
3334 /* XXX needs clarification */
3335 VFSATTR_RETURN(fsap
, f_bused
, hfsmp
->totalBlocks
- hfs_freeblks(hfsmp
, 1));
3336 /* Maximum files is constrained by total blocks. */
3337 VFSATTR_RETURN(fsap
, f_files
, (uint64_t)(hfsmp
->totalBlocks
- 2));
3338 VFSATTR_RETURN(fsap
, f_ffree
, MIN((uint64_t)freeCNIDs
, (uint64_t)hfs_freeblks(hfsmp
, 1)));
3340 fsap
->f_fsid
.val
[0] = hfsmp
->hfs_raw_dev
;
3341 fsap
->f_fsid
.val
[1] = vfs_typenum(mp
);
3342 VFSATTR_SET_SUPPORTED(fsap
, f_fsid
);
3344 VFSATTR_RETURN(fsap
, f_signature
, vcb
->vcbSigWord
);
3345 VFSATTR_RETURN(fsap
, f_carbon_fsid
, 0);
3347 if (VFSATTR_IS_ACTIVE(fsap
, f_capabilities
)) {
3348 vol_capabilities_attr_t
*cap
;
3350 cap
= &fsap
->f_capabilities
;
3352 if (hfsmp
->hfs_flags
& HFS_STANDARD
) {
3353 cap
->capabilities
[VOL_CAPABILITIES_FORMAT
] =
3354 VOL_CAP_FMT_PERSISTENTOBJECTIDS
|
3355 VOL_CAP_FMT_CASE_PRESERVING
|
3356 VOL_CAP_FMT_FAST_STATFS
;
3358 cap
->capabilities
[VOL_CAPABILITIES_FORMAT
] =
3359 VOL_CAP_FMT_PERSISTENTOBJECTIDS
|
3360 VOL_CAP_FMT_SYMBOLICLINKS
|
3361 VOL_CAP_FMT_HARDLINKS
|
3362 VOL_CAP_FMT_JOURNAL
|
3363 (hfsmp
->jnl
? VOL_CAP_FMT_JOURNAL_ACTIVE
: 0) |
3364 (hfsmp
->hfs_flags
& HFS_CASE_SENSITIVE
? VOL_CAP_FMT_CASE_SENSITIVE
: 0) |
3365 VOL_CAP_FMT_CASE_PRESERVING
|
3366 VOL_CAP_FMT_FAST_STATFS
|
3367 VOL_CAP_FMT_2TB_FILESIZE
;
3369 cap
->capabilities
[VOL_CAPABILITIES_INTERFACES
] =
3370 VOL_CAP_INT_SEARCHFS
|
3371 VOL_CAP_INT_ATTRLIST
|
3372 VOL_CAP_INT_NFSEXPORT
|
3373 VOL_CAP_INT_READDIRATTR
|
3374 VOL_CAP_INT_EXCHANGEDATA
|
3375 VOL_CAP_INT_ALLOCATE
|
3376 VOL_CAP_INT_VOL_RENAME
|
3377 VOL_CAP_INT_ADVLOCK
|
3379 cap
->capabilities
[VOL_CAPABILITIES_RESERVED1
] = 0;
3380 cap
->capabilities
[VOL_CAPABILITIES_RESERVED2
] = 0;
3382 cap
->valid
[VOL_CAPABILITIES_FORMAT
] =
3383 VOL_CAP_FMT_PERSISTENTOBJECTIDS
|
3384 VOL_CAP_FMT_SYMBOLICLINKS
|
3385 VOL_CAP_FMT_HARDLINKS
|
3386 VOL_CAP_FMT_JOURNAL
|
3387 VOL_CAP_FMT_JOURNAL_ACTIVE
|
3388 VOL_CAP_FMT_NO_ROOT_TIMES
|
3389 VOL_CAP_FMT_SPARSE_FILES
|
3390 VOL_CAP_FMT_ZERO_RUNS
|
3391 VOL_CAP_FMT_CASE_SENSITIVE
|
3392 VOL_CAP_FMT_CASE_PRESERVING
|
3393 VOL_CAP_FMT_FAST_STATFS
|
3394 VOL_CAP_FMT_2TB_FILESIZE
;
3395 cap
->valid
[VOL_CAPABILITIES_INTERFACES
] =
3396 VOL_CAP_INT_SEARCHFS
|
3397 VOL_CAP_INT_ATTRLIST
|
3398 VOL_CAP_INT_NFSEXPORT
|
3399 VOL_CAP_INT_READDIRATTR
|
3400 VOL_CAP_INT_EXCHANGEDATA
|
3401 VOL_CAP_INT_COPYFILE
|
3402 VOL_CAP_INT_ALLOCATE
|
3403 VOL_CAP_INT_VOL_RENAME
|
3404 VOL_CAP_INT_ADVLOCK
|
3406 cap
->valid
[VOL_CAPABILITIES_RESERVED1
] = 0;
3407 cap
->valid
[VOL_CAPABILITIES_RESERVED2
] = 0;
3408 VFSATTR_SET_SUPPORTED(fsap
, f_capabilities
);
3410 if (VFSATTR_IS_ACTIVE(fsap
, f_attributes
)) {
3411 vol_attributes_attr_t
*attrp
= &fsap
->f_attributes
;
3413 attrp
->validattr
.commonattr
= ATTR_CMN_VALIDMASK
;
3414 attrp
->validattr
.volattr
= ATTR_VOL_VALIDMASK
& ~ATTR_VOL_INFO
;
3415 attrp
->validattr
.dirattr
= ATTR_DIR_VALIDMASK
;
3416 attrp
->validattr
.fileattr
= ATTR_FILE_VALIDMASK
;
3417 attrp
->validattr
.forkattr
= 0;
3419 attrp
->nativeattr
.commonattr
= ATTR_CMN_VALIDMASK
;
3420 attrp
->nativeattr
.volattr
= ATTR_VOL_VALIDMASK
& ~ATTR_VOL_INFO
;
3421 attrp
->nativeattr
.dirattr
= ATTR_DIR_VALIDMASK
;
3422 attrp
->nativeattr
.fileattr
= ATTR_FILE_VALIDMASK
;
3423 attrp
->nativeattr
.forkattr
= 0;
3424 VFSATTR_SET_SUPPORTED(fsap
, f_attributes
);
3426 fsap
->f_create_time
.tv_sec
= hfsmp
->vcbCrDate
;
3427 fsap
->f_create_time
.tv_nsec
= 0;
3428 VFSATTR_SET_SUPPORTED(fsap
, f_create_time
);
3429 fsap
->f_modify_time
.tv_sec
= hfsmp
->vcbLsMod
;
3430 fsap
->f_modify_time
.tv_nsec
= 0;
3431 VFSATTR_SET_SUPPORTED(fsap
, f_modify_time
);
3433 fsap
->f_backup_time
.tv_sec
= hfsmp
->vcbVolBkUp
;
3434 fsap
->f_backup_time
.tv_nsec
= 0;
3435 VFSATTR_SET_SUPPORTED(fsap
, f_backup_time
);
3436 if (VFSATTR_IS_ACTIVE(fsap
, f_fssubtype
)) {
3437 uint16_t subtype
= 0;
3440 * Subtypes (flavors) for HFS
3441 * 0: Mac OS Extended
3442 * 1: Mac OS Extended (Journaled)
3443 * 2: Mac OS Extended (Case Sensitive)
3444 * 3: Mac OS Extended (Case Sensitive, Journaled)
3446 * 128: Mac OS Standard
3449 if (hfsmp
->hfs_flags
& HFS_STANDARD
) {
3450 subtype
= HFS_SUBTYPE_STANDARDHFS
;
3451 } else /* HFS Plus */ {
3453 subtype
|= HFS_SUBTYPE_JOURNALED
;
3454 if (hfsmp
->hfs_flags
& HFS_CASE_SENSITIVE
)
3455 subtype
|= HFS_SUBTYPE_CASESENSITIVE
;
3457 fsap
->f_fssubtype
= subtype
;
3458 VFSATTR_SET_SUPPORTED(fsap
, f_fssubtype
);
3461 if (VFSATTR_IS_ACTIVE(fsap
, f_vol_name
)) {
3462 strncpy(fsap
->f_vol_name
, hfsmp
->vcbVN
, MAXPATHLEN
);
3463 fsap
->f_vol_name
[MAXPATHLEN
- 1] = 0;
3464 VFSATTR_SET_SUPPORTED(fsap
, f_vol_name
);
3470 * Perform a volume rename. Requires the FS' root vp.
3473 hfs_rename_volume(struct vnode
*vp
, const char *name
, proc_t p
)
3475 ExtendedVCB
*vcb
= VTOVCB(vp
);
3476 struct cnode
*cp
= VTOC(vp
);
3477 struct hfsmount
*hfsmp
= VTOHFS(vp
);
3478 struct cat_desc to_desc
;
3479 struct cat_desc todir_desc
;
3480 struct cat_desc new_desc
;
3481 cat_cookie_t cookie
;
3486 * Ignore attempts to rename a volume to a zero-length name.
3491 bzero(&to_desc
, sizeof(to_desc
));
3492 bzero(&todir_desc
, sizeof(todir_desc
));
3493 bzero(&new_desc
, sizeof(new_desc
));
3494 bzero(&cookie
, sizeof(cookie
));
3496 todir_desc
.cd_parentcnid
= kHFSRootParentID
;
3497 todir_desc
.cd_cnid
= kHFSRootFolderID
;
3498 todir_desc
.cd_flags
= CD_ISDIR
;
3500 to_desc
.cd_nameptr
= name
;
3501 to_desc
.cd_namelen
= strlen(name
);
3502 to_desc
.cd_parentcnid
= kHFSRootParentID
;
3503 to_desc
.cd_cnid
= cp
->c_cnid
;
3504 to_desc
.cd_flags
= CD_ISDIR
;
3506 if ((error
= hfs_lock(cp
, HFS_EXCLUSIVE_LOCK
)) == 0) {
3507 if ((error
= hfs_start_transaction(hfsmp
)) == 0) {
3508 if ((error
= cat_preflight(hfsmp
, CAT_RENAME
, &cookie
, p
)) == 0) {
3509 lockflags
= hfs_systemfile_lock(hfsmp
, SFL_CATALOG
, HFS_EXCLUSIVE_LOCK
);
3511 error
= cat_rename(hfsmp
, &cp
->c_desc
, &todir_desc
, &to_desc
, &new_desc
);
3514 * If successful, update the name in the VCB, ensure it's terminated.
3517 strncpy(vcb
->vcbVN
, name
, sizeof(vcb
->vcbVN
));
3518 vcb
->vcbVN
[sizeof(vcb
->vcbVN
) - 1] = 0;
3521 hfs_systemfile_unlock(hfsmp
, lockflags
);
3522 cat_postflight(hfsmp
, &cookie
, p
);
3525 vcb
->vcbFlags
|= 0xFF00;
3526 (void) hfs_flushvolumeheader(hfsmp
, MNT_WAIT
, 0);
3528 hfs_end_transaction(hfsmp
);
3531 /* Release old allocated name buffer */
3532 if (cp
->c_desc
.cd_flags
& CD_HASBUF
) {
3533 char *name
= cp
->c_desc
.cd_nameptr
;
3535 cp
->c_desc
.cd_nameptr
= 0;
3536 cp
->c_desc
.cd_namelen
= 0;
3537 cp
->c_desc
.cd_flags
&= ~CD_HASBUF
;
3538 vfs_removename(name
);
3540 /* Update cnode's catalog descriptor */
3541 replace_desc(cp
, &new_desc
);
3542 vcb
->volumeNameEncodingHint
= new_desc
.cd_encoding
;
3543 cp
->c_touch_chgtime
= TRUE
;
3553 * Get file system attributes.
3556 hfs_vfs_setattr(struct mount
*mp
, struct vfs_attr
*fsap
, __unused vfs_context_t context
)
3558 kauth_cred_t cred
= vfs_context_ucred(context
);
3562 * Must be superuser or owner of filesystem to change volume attributes
3564 if (!kauth_cred_issuser(cred
) && (kauth_cred_getuid(cred
) != vfs_statfs(mp
)->f_owner
))
3567 if (VFSATTR_IS_ACTIVE(fsap
, f_vol_name
)) {
3570 error
= hfs_vfs_root(mp
, &root_vp
, context
);
3574 error
= hfs_rename_volume(root_vp
, fsap
->f_vol_name
, vfs_context_proc(context
));
3575 (void) vnode_put(root_vp
);
3579 VFSATTR_SET_SUPPORTED(fsap
, f_vol_name
);
3588 * hfs vfs operations.
3590 struct vfsops hfs_vfsops
= {
3596 hfs_vfs_getattr
, /* was hfs_statfs */