Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

HFS Plus

From Wikipedia, the free encyclopedia
Journaling file system developed by Apple
HFS+
Developer(s)Apple Inc.
Full nameHierarchical File System Plus
IntroducedJanuary 19, 1998; 27 years ago (1998-01-19) withMac OS 8.1
Preceded byHFS
Succeeded byAPFS
Partition IDsApple_HFS (Apple Partition Map)
0xAF (MBR) HFS and HFS+
Apple_HFSX (Apple Partition Map) when HFSX
48465300-0000-11AA-
AA11-00306543ECAC
(GPT)
Structures
Directory contentsB-tree
File allocationBitmap
Bad blocksB-tree
Limits
Max volume sizeexabyte[1]
Max file sizeEB[2]
Maxno. of files4,294,967,295 (232 − 1)
Max filename length255 characters (255 UTF-16 encoding units, normalized to Apple-modified variant of Unicode Normalization Format D)
Allowed filename
characters
Unicode, any character, includingNUL. OS APIs may limit some characters for legacy reasons
Features
Dates recordedaccess, attributes modified, backed up, contents modified, created
Date rangeJanuary 1, 1904 – February 6, 2040[3]
Date resolution1 s
ForksYes
AttributesColor (3 bits, all other flags 1 bit), locked, custom icon, bundle, invisible, alias, system, stationery, inited, no INIT resources, shared, desktop
File system
permissions
Unix permissions,NFSv4ACLs (Mac OS X v10.4 onward)
Transparent
compression
Partial (decmpfs, onMac OS X 10.6 and higher)[4]
Transparent
encryption
Yes (onMac OS X 10.7 and up). Per-home directory encryption is available withAES[clarification needed] using HFS+-formatted.dmg volumes on OS X versions prior to 10.7 but later thanMac OS X 10.3
Other
Supported
operating systems
Mac OS 8.1,Mac OS 9,macOS,iOS,tvOS,watchOS,Darwin,Linux,Microsoft Windows (throughBoot CampIFS drivers)

HFS Plus orHFS+ (also known asMac OS Extended orHFS Extended[5]) is ajournaling file system developed byApple Inc. It replaced theHierarchical File System (HFS) as the primary file system of Apple computers with the 1998 release ofMac OS 8.1. HFS+ continued as the primaryMac OS X file system until it was itself replaced with theApple File System (APFS), released withmacOS High Sierra in 2017. HFS+ is also one of the formats supported by theiPod digital music player.

Compared to its predecessorHFS, also calledMac OS Standard orHFS Standard, HFS Plus supports much larger files (block addresses are 32-bit length instead of 16-bit) and usingUnicode (instead ofMac OS Roman or any of several other character sets) for naming items. Like HFS, HFS Plus usesB-trees to store most volumemetadata, but unlike most file systems that supporthard links, HFS Plus supports hard links to directories. HFS Plus permits filenames up to 255 characters in length, andn-forked files similar toNTFS, though until 2005 almost no system software took advantage of forks other than thedata fork andresource fork. HFS Plus also uses a full 32-bit allocation mapping table rather than HFS's 16 bits, improving the use of space on large disks.

History

[edit]

CodenamedSequoia in development,[6] HFS+ was introduced with the January 19, 1998, release ofMac OS 8.1.[2]

With the release of theMac OS X 10.2.2 update on November 11, 2002, Apple added optionaljournaling features to HFS Plus for improved data reliability. These features were accessible through the GUI, using theDisk Utility application in Mac OS X Server, but only accessible through the command line in the standard desktop client.[7]

With Mac OS X v10.3, all HFS Plus volumes on all Macs were set to be journaled by default. Within the system, an HFS Plus volume with a journal is identified asHFSJ.

Mac OS X 10.3 also introduced another version of HFS Plus calledHFSX. HFSX volumes are almost identical to HFS Plus volumes, except that they are never surrounded by theHFS Wrapper that is typical of HFS Plus volumes and they optionally supportcase sensitivity for file and folder names. HFSX volumes can be recognized by two entries in the Volume Header, a value of HX in the signature field and 5 in the version field.[2]

Mac OS X 10.3 also marked Apple's adoption of Unicode 3.2 decomposition, superseding the Unicode 2.1 decomposition used previously. This change caused problems for developers writing software for Mac OS X.[8]

Mac OS X 10.3 introduced a number of techniques that are intended to avoid fragmentating files in HFS+.[9]

With Mac OS X 10.4, Apple added support for Inline Attribute Data records, something that had been a part of the Mac OS X implementation of HFS Plus since at least10.0, but always marked as "reserved for future use".[10] Until the release ofMac OS X Server 10.4, HFS Plus supported only the standard UNIXfile system permissions; however, 10.4 introduced support foraccess control list–based file security, which provides a richer mechanism to define file permissions and is also designed to be fully compatible with the file permission models on other platforms such asMicrosoftWindows XP andWindows Server 2003.[11]

In Mac OS X Leopard 10.5, directory hard-linking was added as a fundamental part of Time Machine.

In Mac OS X Snow Leopard 10.6, HFS+ compression was added using Deflate (Zlib). In open source and some other areas this is referred to as AppleFSCompression or decmpfs. Compressed data may be stored in either an extended attribute or the resource fork. When using non-Apple APIs, AppleFSCompression is not always completely transparent.[12] OS X 10.9 introduced two new algorithms: LZVN (libFastCompression), andLZFSE.

In Mac OS X Lion 10.7, logical volume encryption (known asFileVault 2) was added to the operating system. This addition to the operating system in no way changed the logical structure of the file system. Apple's logical volume manager is known as Core Storage and its encryption at the volume level can apply to file systems other than HFS Plus. With appropriate hardware, both encryption and decryption should be transparent.

Design

[edit]

HFS Plus volumes are divided into sectors (called logical blocks in HFS), that are usually 512 bytes in size. These sectors are then grouped together into allocation blocks which can contain one or more sectors; the number of allocation blocks depends on the total size of the volume. HFS Plus uses a larger value to address allocation blocks than HFS, 32 bits rather than 16 bits; this means it can access 4,294,967,296 (= 232) allocation blocks rather than the 65,536 (= 216) allocation blocks available to HFS.[2] When disks were small, this was of little consequence, but as larger-capacity drives became available, it meant that the smallest amount of space that any file could occupy (a single allocation block) became excessively large, wasting significant amounts of space. For example, on a 1 GB disk, the allocation block size under HFS is 16 KB, so even a 1-byte file would take up 16 KB of disk space. HFS Plus's system greatly improves space utilization on larger disks as a result.

File and folder names in HFS Plus are also encoded inUTF-16[13] and normalized to a form very nearly the same asUnicode Normalization Form D (NFD)[14] (which means that precomposed characters like "å" are decomposed in the HFS+ filename and therefore count as two code units[15] and UTF-16 implies that characters from outside theBasic Multilingual Plane also count as two code units in an HFS+ filename). HFS Plus permits filenames up to 255 UTF-16 code units in length.

Formerly, HFS Plus volumes were embedded inside an HFS standard file system. This was phased out by the Tiger transition to Intel Macs, where the HFS Plus file system was not embedded inside a wrapper. The wrapper had been designed for two purposes; it allowed Macintosh computers without HFS Plus support in their ROM to boot HFS Plus volumes and it also was designed to help users transition to HFS Plus by including a minimal HFS volume with a read-only file calledWhere_have_all_my_files_gone?, explaining to users with versions of Mac OS 8.0 and earlier without HFS Plus, that the volume requires a system with HFS Plus support. The original HFS volume contains a signature and an offset to the embedded HFS Plus volume within its volume header. All allocation blocks in the HFS volume which contain the embedded volume are mapped out of the HFS allocation file asbad blocks.[2]

Notable among file systems used for Unix systems, HFS Plus does not supportsparse files.

There are nine structures that make up a typical HFS Plus volume:[2]

  1. Sectors 0 and 1 of the volume are HFSboot blocks. These are identical to the boot blocks in an HFS volume. They are part of the HFS wrapper.[16]
  2. Sector 2 contains theVolume Header, which is equivalent to the Master Directory Block in an HFS volume. The Volume Header stores a wide variety of data about the volume itself, for example the size of allocation blocks, a timestamp that indicates when the volume was created or the location of other volume structures such as the Catalog File or Extent Overflow File. The Volume Header is always located in the same place.
  3. TheAllocation File which keeps track of which allocation blocks are free and which are in use. It is similar to the Volume Bitmap in HFS, in which each allocation block is represented by one bit. A zero means the block is free and a one means the block is in use. The main difference with the HFS Volume Bitmap, is that the Allocation File is stored as a regular file – it does not occupy a special reserved space near the beginning of the volume. The Allocation File can also change size and does not have to be stored contiguously within a volume.
  4. TheCatalog File is aB-tree that contains records for all the files and directories stored in the volume. The HFS Plus Catalog File is very similar to theHFS Catalog File, the main differences being records are larger to allow more fields and to allow for those fields to be larger (for example to allow the longer 255-character unicode file names in HFS Plus). A record in the HFS Catalog File is 512 bytes in size; a record in the HFS Plus Catalog File is 4 KB in the classic Mac OS and 8 KB inmacOS. Fields in HFS are of fixed size, while in HFS Plus the size can vary depending on the actual size of the data they store.
  5. TheExtents Overflow File is another B-tree that records the allocation blocks that are allocated to each file as extents. Each file record in the Catalog File is capable of recording eight extents for each fork of a file; once those are used additional extents are recorded in the Extents Overflow File. Bad blocks are also recorded as extents in the Extents Overflow File. The default size of an extent record in the classic Mac OS is 1 KB and 4 KB in macOS.
  6. TheAttributes File is a new B-tree in HFS Plus that does not have a corresponding structure in HFS. The Attributes File can store three different types of 4 KB records:Inline Data Attribute records,Fork Data Attribute records andExtension Attribute records. Inline Data Attribute records store small attributes that can fit within the record itself. Fork Data Attribute records contain references to a maximum of eight extents that can hold larger attributes. Extension Attributes are used to extend a Fork Data Attribute record when its eight extent records are already used.
  7. TheStartup File is designed for non-Mac OS systems that lack HFS or HFS Plus support. It is similar to the Boot Blocks of an HFS volume.
  8. The second-to-last sector contains theAlternate Volume Header, which is equivalent to the Alternate Master Directory Block of HFS. This is the second-to-last-sector for the disk, not the volume; if the disk is larger than the volume, the AVH will be outside the range of the filesystem.
  9. The last sector in the volume is reserved for use by Apple. It is used during the computer manufacturing process.[2]

Criticisms

[edit]

HFS Plus lacks several features considered staples of modern file systems likeZFS andNTFS.[17] Datachecksums are the most routinely cited missing feature.[18]

Besides checksumming, features of modern file systems that HFS+ lacks include:

  • nanosecond timestamps[18]
  • concurrent access (that is, more than one process can access the filesystem at the same time)[18]
  • snapshotting[18]
  • Support for dates beyond February 6, 2040[19]
  • sparse file support[18]
  • a better implementation of hard links (in other filesystems, these are typically multiple directory entries pointing to the same data blocks; hard links in macOS are implemented as small files that are stored in a special hidden directory)[18]

HFS Plus was not designed forUnix-like systems, so features such asfile system permissions andhard links had to be retrofitted when Apple moved to Mac OS X.[18]

Other operating systems

[edit]

Linux

[edit]

TheLinux kernel includes the hfsplus module[20] for mounting HFS+ filesystems read-write. HFS+fsck andmkfs have been ported toLinux and are part of the hfsprogs package.[21]

In 2009, these drivers were diagnosed to be corrupting HFS+ drives with a capacity greater than 2 TB.[22] Consequently, Linux distributions such as Debian and Ubuntu stopped allowing mounting of HFS+ drives or partitions greater than 2 TB.[23] As of February 2011[update], work is in progress to lift this restriction.[24][needs update]

Under Linux's current HFS+ driver, journaling must be disabled in order to write data safely onto an HFS+ partition. Provided the partition isn't being used by Apple'sTime Machine software, journaling can be disabled under macOS:[25] Using Disk Utility in OS X Yosemite, the user may hold Alt/Option and click "Disable Journaling" on the File menu, having first selected a mounted partition.

An HFS+ partition with journaling enabled may be forcibly mounted with write access under Linux, but this is unsupported and unwise.[25][26]

AGoogle Summer of Code project to implement write support to journaled HFS+[27] was accepted by the Linux Foundation in 2011 but was not completed at that time and is still a work in progress. Progress and improvements to the HFS+ driver, including some updates to journaling support, are posted on the linux-fsdevel mailing list[28] from time to time.

As of July 2011[update],Paragon Software Group provided kernel drivers that allow full read-write access to HFS+ journaled volumes.[29] The product is a proprietary implementation of HFS+ based on Paragon's proprietary UFSD library. There are both free and paid editions of the driver, and they include a utility for checking and repairing HFS+ volumes. According to the online documentation (free version[30] or the paid edition[31]), both the free edition and the paid edition currently support Linux kernels from 2.6.36 up to 4.12.x.Ubuntu,Debian,Fedora Linux,Rocky Linux,Red Hat Enterprise Linux,OpenSUSE andCentOS are the only Linux distributions officially supported.[32]

Windows

[edit]

As of May 2012, Apple has only released read-only HFS+ drivers for Windows XP, Windows Vista, and Windows 7 as part of theBoot Camp software inMac OS X 10.6.[33] This means users on these systems can read data on the HFS+ drive, but not write to them. Microsoft has created an HFS+ driver for the Xbox 360 mainly for the purpose of reading HFS+-formatted iPods.[citation needed]

A free and opensource software – jHFSplus, based on HFSExplorer and jpfm – can be used to mount hfs/hfs+ partitions as read-only virtual folders.[34]

A freeware plugin forTotal Commander exists, that can read, among others, HFS and HFS+ filesystems.[35]

DiskInternals Linux Reader can be used to extract/save folders/files out of HFS and HFS+ Hard Drives/Partitions.[36]

A commercial product, MacDrive, is also available for mounting HFS and HFS+ drives, optical discs, and other media in Windows Explorer, and allows both reading and writing to the volume, as well as repairing and formatting Mac disks.[37]

A commercial product, Paragon's HFS+ for Windows allows full read and write and disk management from all versions of Windows from Windows XP to Windows Server 2008.[38]

Cross-platform

[edit]

Afree (GPL) alternative is HFSExplorer written by Erik Larsson.[39] HFSExplorer is a Java application for viewing and extracting files from an HFS+ volume (Mac OS Extended) or an HFSX volume (Mac OS Extended, Case-sensitive). The volume can be located either on a physical disk, in variousApple disk image and sparse disk image formats, or a raw file system dump. However, HFSExplorer is a read-only solution; it cannot write to HFS-formatted volumes.

See also

[edit]

References

[edit]
  1. ^"OS X: Mac OS Extended format (HFS Plus) volume and file limits". Support.apple.com. 2008-07-29.Archived from the original on 2010-07-30. Retrieved2010-07-05.
  2. ^abcdefg"Technical Note TN1150: HFS Plus Volume Format".Apple Developer Connection. March 5, 2004.Archived from the original on June 22, 2013. Retrieved2007-03-28.
  3. ^"HFS Plus Dates".HFS Plus Volume Format.Apple Inc. March 5, 2004. Technical Note TN1150.
  4. ^"10.6: Compress files with HFS+ compression – Mac OS X Hints".Archived from the original on 2012-04-01.
  5. ^"kUCCollateTypeHFSExtended - Apple Developer Documentation". developer.apple.com. Retrieved2025-01-16.
  6. ^Gregg Williams (May 19, 2000)."Strategy Mosaic: Sequoia--Mass Storage for Tomorrow and Beyond". Archived fromthe original on May 19, 2000.
  7. ^John Gruber (November 11, 2002)."Crow".DaringFireball.net.Archived from the original on April 9, 2007. Retrieved2007-03-28.
  8. ^"Re: git on MacOSX and files with decomposed utf-8 file names". KernelTrap. 2010-05-07. Archived fromthe original on March 15, 2011. Retrieved2010-07-05.
  9. ^"Fragmentation in HFS Plus Volumes".osxbook.com. Archived fromthe original on January 3, 2020. Retrieved10 January 2020.
  10. ^John Siracusa (April 28, 2005)."OS X 10.4 Tiger: Metadata revisited".Ars Technica.Archived from the original on April 5, 2007. Retrieved2007-03-28.
  11. ^"Apple – OS X Server – Windows Services".Apple.com. Archived fromthe original on 2007-12-31. Retrieved2007-11-12.
  12. ^iohead LLC (2011)."fileXray user guide and reference"(PDF). iohead LLC. p. 31. Retrieved14 July 2020.
  13. ^"What is Mac OS HFS+ format?".AppleXsoft.Archived from the original on 2018-08-24. Retrieved2018-11-06.
  14. ^"Technical Q&A QA1235: Converting to Precomposed Unicode".Apple Developer Connection. February 7, 2003.Archived from the original on May 18, 2008. Retrieved2007-03-28.
  15. ^There are some minor differences derived from the fact that the HFS Plus format was finalized before Unicode had standardized the NFD format (see"Unicode Subtleties"Archived 2013-06-22 at theWayback Machine for more information)
  16. ^"Boot Blocks".Inside Macintosh. Apple Inc. July 2, 1996.
  17. ^Harris, Robin."WWDC's biggest disappointment – ZDNet".ZDNet.Archived from the original on 2015-10-22.
  18. ^abcdefgJohn Siracusa (July 20, 2011)."Mac OS X 10.7 Lion: the Ars Technica review". Ars Technica.Archived from the original on 22 December 2016. Retrieved18 January 2017.
  19. ^"Mac OS X – ForensicsWiki".forensicswiki.org.Archived from the original on 2017-04-10. Retrieved2017-04-09.
  20. ^"kernel/git/torvalds/linux.git – Linux kernel source tree". Archived fromthe original on 2012-07-09.
  21. ^"Debian – Details of package hfsprogs in sid".Archived from the original on 2009-07-03.
  22. ^"kernel/git/torvalds/linux.git – Linux kernel source tree".git.kernel.org. Archived fromthe original on 2012-07-11. Retrieved2016-10-14.
  23. ^"#550010 – hfsplus corrupts filesystems >2TB – Debian Bug report logs".Archived from the original on 2016-01-08. Retrieved2011-02-17.
  24. ^"[PATCH 2/3] hfsplus: lift the 2TB size limit — Linux Filesystem Development".Archived from the original on 2011-07-18.
  25. ^ab"How to mount a HFS partition in Ubuntu as Read/Write?".Archived from the original on 2011-11-30.
  26. ^Banks, Wyatt (2007-07-31),Macintosh HFSPlus Filesystem for Linux, archived fromthe original on 2012-07-22
  27. ^"Implement HFSPlus Journal on Linux". Archived fromthe original on April 5, 2011.
  28. ^"'hfsplus' in linux-fsdevel – MARC".Archived from the original on 2016-01-08. Retrieved2012-09-21.
  29. ^"Overview – Paragon NTFS&HFS+ for Linux 9.5 Express".Archived from the original on 2011-08-06. Retrieved2012-06-29.
  30. ^"Full Features – Paragon NTFS/HFS+ for Linux 9.5 Express".Archived from the original on 2012-09-03. Retrieved2012-09-21.
  31. ^"Full features – Paragon NTFS&HFS+ for Linux 9.5 Professional".Archived from the original on 2012-12-02. Retrieved2012-09-21.
  32. ^"FAQ & Glossary – Paragon NTFS&HFS+ for Linux 9.5 Professional".Archived from the original on 2016-06-07. Retrieved30 June 2016.
  33. ^"Apple – Support – Downloads – Bootcamp".apple.com.Archived from the original on 2016-10-19. Retrieved2016-10-18.
  34. ^"jHFSplus". Shashank Tulsyan. 2011-06-29.Archived from the original on 2011-07-09.
  35. ^"DiskInternals Reader for Total Commander". DiskInternals. 2011-03-16.Archived from the original on 2011-11-16. Retrieved2011-11-23.
  36. ^"DiskInternals Linux Reader". DiskInternals.Archived from the original on 2012-04-06. Retrieved2016-10-18.
  37. ^"MacDrive 9 Standard". Mediafour. 2013-09-19. Archived fromthe original on 2013-09-21. Retrieved2013-09-19.
  38. ^"Write HFS+ volumes in Windows – Paragon HFS+ for Windows".Archived from the original on 2016-10-13. Retrieved2016-10-14.
  39. ^"HFSExplorer".Catacombae. Erik Larsson. 2015-10-13.Archived from the original on 2018-09-24. Retrieved2018-09-23.

External links

[edit]
Versions
Mac OS X
OS X
macOS
Applications
Core Applications
Developer Tools
Xcode
Former tools
Former Applications
Utilities
Discontinued
Technologies &
User Interface
Deprecated
Discontinued
  • Italics denote upcoming products.
  •  Category
Versions
Applications
Developer
Technology
Related articles
Disk and
non-rotating
Optical disc
Flash memory andSSD
host-sidewear leveling
Distributed parallel
NAS
Specialized
Pseudo
Encrypted
Types
Features
Access control
Interfaces
Lists
Layouts
Retrieved from "https://en.wikipedia.org/w/index.php?title=HFS_Plus&oldid=1274788150"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp