Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Inode
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Implications== Filesystems designed with inodes will have the following administrative characteristics: ===Multi-named files and hard links=== Files can have multiple names. If multiple names hard link to the same inode then the names are equivalent; i.e., the first to be created has no special status. This is unlike [[symbolic link]]s, which depend on the original name, not the inode (number). ===inode persistence and unlinked files=== An inode may have no links. An inode without links represents a file with no remaining directory entries or paths leading to it in the filesystem. A file that has been deleted or lacks directory entries pointing to it is termed an 'unlinked' file. Such files are removed from the filesystem, freeing the occupied disk space for reuse. An inode without links remains in the filesystem until the resources (disk space and blocks) freed by the unlinked file are deallocated or the file system is modified. Although an unlinked file becomes invisible in the filesystem, its deletion is deferred until all processes with access to the file have finished using it, including executable files which are implicitly held open by the processes executing them. ===inode number conversion and file directory path retrieval=== It is typically not possible to map from an open file to the filename that was used to open it. When a program opens a file, the operating system converts the filename to an inode number and then discards the filename. As a result, functions like [[direct.h|{{mono|getcwd()}}]] and [[direct.h|{{mono|getwd()}}]] which retrieve the current [[working directory]] of the process, cannot directly access the filename. Beginning with the current directory, these functions search up to its [[parent directory]], then to the parent's parent, and so on, until reaching the [[root directory]]. At each level, the function looks for a directory entry whose inode matches that of the directory it just moved up from. Because the child directory's inode still exists as an entry in its [[parent directory]], it allows the function to reconstruct the [[absolute path]] of the current [[working directory]]. Some operating systems maintain extra information to make this operation run faster. For example, in the [[Linux]] VFS,<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/vfs.html | title=Overview of the Linux Virtual File System | author=Gooch, Richard | editor=Enberg, Pekka | website=kernel.org | access-date=20 May 2023}}</ref> directory entry cache,<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/vfs.html#directory-entry-cache-dcache | title=Directory Entry Cache (dcache) | author=Richard Gooch | editor=Enberg, Pekka | website=kernel.org | access-date=20 May 2023}}</ref> also known as dentry or dcache, are cache entries used by the [[Kernel (operating system)|kernel]] to speed up filesystem operations by storing information about directory links in [[Random-access memory|RAM]]. ===Historical possibility of directory hard linking=== Historically, it was possible to [[hard link]] directories. This made the directory structure an arbitrary [[directed graph]] contrary to a [[directed acyclic graph]]. It was even possible for a directory to be its own parent. Modern systems generally prohibit this confusing state, except that the parent of ''root'' is still defined as root. The most notable exception to this prohibition is found in [[macOS|Mac OS X]] (versions 10.5 and higher) which allows hard links of directories to be created on [[HFS+]] file systems by the superuser.<ref>{{cite web | url = https://stackoverflow.com/questions/80875/what-is-the-unix-command-to-create-a-hardlink-to-a-directory-in-os-x|title=What is the Unix command to create a hardlink to a directory in OS X?|website=[[Stack Overflow]]|date=16 Jan 2011|access-date=5 Jan 2020|archive-url= https://web.archive.org/web/20200105174407/https://stackoverflow.com/questions/80875/what-is-the-unix-command-to-create-a-hardlink-to-a-directory-in-os-x|archive-date=5 January 2020|url-status=live}}</ref> ===inode number stability and non-Unix file systems=== When a file is relocated to a different directory on the same file system, or when a disk [[defragmentation]] alters its physical location, the file's inode number remains unchanged. This unique characteristic permits the file to be moved or renamed even during read or write operations, thereby ensuring continuous access without disruptions. This feature—having a file's metadata and [[Block (data storage)|data block]] locations persist in a central [[data structure]], irrespective of file renaming or moving—cannot be fully replicated in many [[List of file systems|non-Unix file systems]] like [[File Allocation Table|FAT]] and its derivatives, as they lack a mechanism to maintain this invariant property when both the file's directory entry and its data are simultaneously relocated. In these file systems, moving or renaming a file might lead to more significant changes in the data structure representing the file, and the system does not keep a separate, central record of the file's [[Block (data storage)|data block]] locations and [[metadata]] as inodes do in [[Unix-like]] systems. ===Simplified library installation with inode file systems=== inode file systems allow a running process to continue accessing a library file even as another process is replacing that same file. This operation should be performed [[Atomicity (programming)|atomically]], meaning it should appear as a single operation that is either entirely completed or not done at all, with no intermediate state visible to other processes. During the [[Read–modify–write|replacement]], a new inode is created for the new [[Library (computing)|library file]], establishing an entirely new mapping. Subsequently, future access requests for that library will retrieve the newly installed version. When the operating system is replacing the file (and creating a new inode), it places a lock<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/locking.html | title=Locking | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> on the inode<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/vfs.html#struct-inode-operations | title=struct inode_operations | author=Gooch, Richard | editor=Enberg, Pekka | access-date=21 May 2023 | website=kernel.org }}</ref> and possibly the containing directory.<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/directory-locking.html | title=Directory Locking | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> This prevents other processes from [[Readers–writer lock|reading or writing]] to the file (inode)<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/locking/locktypes.html | title=Lock types and their rules | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> during the update operation, thereby avoiding data inconsistency or corruption.<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/locking/lockdep-design.html | title=Runtime locking correctness validator | author-first=Molnar, I. | author-last=van de Ven, A. | access-date=21 May 2023 | website=kernel.org }}</ref> Once the update operation is complete, the lock is released. Any subsequent access to the file (via the inode) by any processes will now point to the new version of the library. Thus, making it possible to perform updates even when the library is in use by another process. One significant advantage of this mechanism is that it eliminates the need for a [[Booting|system reboot]] to replace libraries currently in use. Consequently, systems can update or upgrade [[software libraries]] seamlessly without interrupting running processes or operations. ===Potential for inode exhaustion and solutions=== When a file system is created, some file systems allocate a fixed number of inodes.<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/ext4/overview.html | title=2. High Level Design | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> This means that it is possible to run out of inodes on a file system, even if there is free space remaining in the file system. This situation often arises in use cases where there are many small files, such as on a server storing email messages, because each file, no matter how small, requires its own inode. Other file systems avoid this limitation by using dynamic inode allocation.<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/xfs-self-describing-metadata.html#inodes-and-dquots | title=XFS Self Describing Metadata | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> Dynamic inode allocation allows a file system to create more inodes as needed instead of relying on a fixed number created at the time of file system creation.<ref>{{cite web | url = https://www.kernel.org/doc/html/latest/filesystems/ext4/overview.html#block-and-inode-allocation-policy | title=2.7. Block and Inode Allocation Policy | author=The kernel development community | access-date=21 May 2023 | website=kernel.org }}</ref> This can "grow" the file system by increasing the number of inodes available for new files and directories, thus avoiding the problem of running out of inodes.<ref>{{cite book |last=Vadala |first=Derek |title=Managing RAID on Linux |year=2002 |publisher=O'Reilly Media, Inc. |isbn=9781565927308 |chapter=6. Filesystems}}</ref>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)