Incomputing,ahard linkis adirectory entry(in adirectory-basedfile system) that associates a name with afile.Thus, each file must have at least one hard link. Creating additional hard links for a file makes the contents of that file accessible via additionalpaths(i.e., via different names or in different directories).[1]This causes analias effect:a process can open the file by any one of its paths and change its content. By contrast, asoft linkor“shortcut”to a file is not a direct link to the data itself, but rather a reference to a hard link or another soft link.
Every directory is itself a special file on many systems, containing a list of file names instead of other data. Hence, multiple hard links to directories are possible, which could create a circular directory structure, rather than a branching structure like atree.For that reason, some file systems forbid the creation of additional hard links to directories.
POSIX-compliantoperating systems,such asLinux,Android,macOS,and theWindows NT family,[2]support multiple hard links to the same file, depending on the file system. For instance,NTFSandReFSsupport hard links,[3]whileFATdoes not.
Operation
editLet two hard links, named "LINK A.TXT" and "LINK B.TXT", point to the same physical data. Atext editoropens "LINK A.TXT", modifies it and saves it. When the editor (or any other app) opens "LINK B.TXT", it can see those changes made to "LINK A.TXT", since both file names point to the same data. So from a user's point of view this is one file with several filenames. Editing any filename modifies "all" files, however deleting "any" filename except the last one keeps the file around.
However, some editors, such asGNU Emacs,break the hard link concept. When opening a file for editing, e.g., "LINK B.TXT", emacs renames "LINK B.TXT" to "LINK B.TXT~", loads "LINK B.TXT~" into the editor, and saves the modified contents to a newly created "LINK B.TXT". Now, "LINK A.TXT" and "LINK B.TXT" no longer shares the same data. (This behavior can be changed using the emacs variablebackup-by-copying
.)
Any number of hard links to the physical data may be created. To access the data, a user only needs to specify the name of any existing link; the operating system will resolve the location of the actual data. Even if the user deletes one of the hard links, the data is still accessible through any other link that remains. Once the user deletes all of the links, if no process has the file open, the operating system frees the disk space that the file once occupied.
Reference counting
editMostfile systemsthat support hard links usereference counting.The system stores anintegervalue with each logicaldatasection that represents the total number of hard links that have been created to point to the data. When a new link is created, this value is increased by one. When a link is removed, the value is decreased by one. When the counter becomes zero, the operating system frees the logical data section. (The OS may not to do so immediately, e.g., when there are outstanding file handles open, for performance reasons, or to enable theundeletecommand.)
This is a simple method for the file system to track the use of a given area of storage, as zero values indicate free space and nonzero values indicate used space. The maintenance of this value guarantees that there will be no dangling hard links pointing nowhere. The data section and the associatedinodeare preserved as long as a single hard link (directory reference) points to it or any process keeps the associated file open.
OnPOSIX-compliant operating systems, the reference count for a file or directory is returned by thestat()or fstat() system calls in thest_nlink
field ofstruct stat
.
Limitations
editTo prevent loops in the filesystem, and to keep the interpretation of the "..
"file (parent directory) consistent, operating systems do not generally allow hard links to directories.UNIX System Vallowed them, but only thesuperuserhad permission to make such links.[4]Mac OS X v10.5 (Leopard)and newer use hard links on directories for theTime Machinebackup mechanism only.[5]
Hard links can be created to files only on the same volume, i.e., within the same file system. (Different volumes may have different file systems. There is no guarantee that the target volume's file system is compatible with hard linking.)
The maximum number of hard links to a single file is limited by the size of the reference counter. On Unix-like systems the counter is 4,294,967,295 (on 32-bit machines) or 18,446,744,073,709,551,615 (on 64-bit machines). In some file systems, the number of hard links is limited more strictly by their on-disk format. For example, as ofLinux3.11, theext4file system limits the number of hard links on a file to 65,000.[6]Windowslimits enforces a limit of 1024 hard links to a file onNTFSvolumes.[7]
OnLinux Weekly News,Neil Brown criticized hard links as high-maintenance, since they complicate the design of programs that handle directory trees, including archivers and disk usage tools. These apps must take care to de-duplicate files that are linked multiple times in ahierarchy.Brown notes thatPlan 9 from Bell Labs,the intended successor to Unix, does not include the concept of a hard link.[8]
Platform support
editWindows NT 3.1and later support hard links on theNTFSfile system.[9]Windows 2000 introduces aCreateHardLink()
function to create hard links, but only for files, not directories.[10]TheDeleteFile()
function can remove them.
To create a hard link on Windows, end-users can use:
- The
fsutil
utility (introduced inWindows 2000)[11] - The
mklink
internal command ofWindows Command Prompt(introduced inWindows VistaandWindows Server 2008)[12] - The
New-Item
cmdlet ofPowerShell[13]
To interrogate a file for its hard links, end-users can use:
- The
fsutil
utility[11] - The
Get-Item
andGet-ChildItem
cmdlets of PowerShell. These cmdlets represent each file with an object; PowerShell adds a read-only LinkType property to each of them. This property contains the "HardLink
"string if the associated file has multiple hard links.[14]
TheWindows Component Storeuses hard links to keep track of different versions of components stored on the hard disk drive.
OnUnix-likesystems, thelink()
system callcan create additional hard links to existing files. To create hard links, end-users can use:
To interrogate a file for its hard links, end-users can use:
Unix-like emulation or compatibility software running on Microsoft Windows, such asCygwinandSubsystem for UNIX-based Applications,allow the use of POSIX interfaces.
OpenVMSsupports hard links on theODS-5file system.[15]Unlike Unix, VMS can create hard links to directories.
See also
edit- Symbolic link:Points to a hard link, not the file data itself; hence, it works across volumes and file systems.
- NTFS links:Details the four link types that the NTFS supports—hard links, symbolic links, junction points, and volume mount points
- Shortcut:A small file that points to another in a local or remote location
- freedup– The
freedup
command frees-up disk space by replacing duplicate data stores with automatically generated hard links
References
edit- ^Pitcher, Lew."Q & A: The difference between hard and soft links".
- ^"Link Shell Extension".
- ^"Resilient File System (ReFS) overview".Microsoft Learn.26 October 2022 – viaMicrosoft Docs.
- ^Bach, Maurice J. (1986).The Design of the UNIX Operating System.Prentice Hall. p. 128.ISBN9780132017992.
- ^Pond, James (August 31, 2013)."How Time Machine Works its Magic".File System Event Store, Hard Links. Archived fromthe originalon June 21, 2019.RetrievedMay 19,2019.
- ^"Linux kernel source tree, fs/ext4/ext4.h, line 229".
- ^"CreateHardLinkA function (winbase.h)".Windows App Development.13 October 2021 – viaMicrosoft Docs.
- ^Brown, Neil (23 November 2010)."Ghosts of Unix past, part 4: High-maintenance designs".Linux Weekly News.Retrieved20 April2014.
- ^"How hard links work".Microsoft Docs.6 January 2011.
- ^"CreateHardLink Function".Windows Development.Microsoft.10 March 2011. Archived from the original on 2 July 2011 – viaMSDN.
Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system, and only for files, not directories.
{{cite web}}
:CS1 maint: unfit URL (link) - ^ab"Fsutil hardlink".Windows App Development.Microsoft.18 April 2012 – via Microsoft Docs.
- ^"Mklink".Microsoft Docs.Microsoft.18 April 2012.
- ^ab"New-Item (PowerShell 3.0)".Microsoft Docs.Microsoft.22 June 2020.
If your location is in a FileSystem drive, the following values are allowed: If your location is in a FileSystem drive, the following values are allowed: File[,] Directory[,] Junction[,] HardLink
- ^ab"FileSystemProvider.cs".PowerShell / PowerShell repo.Microsoft.20 November 2021. Lines 8139–8234 – viaGitHub.
- ^"OpenVMS System Manager's Manual, Vol. I"(PDF).VSI. August 2019.Retrieved2021-01-23.