inode
This article needs additional citations for verification. (July 2010) |
In computing, an inode is a data structure on a traditional Unix-style file system such as UFS. An inode stores basic information about a regular file, directory, or other file system object.
Origin of term
The exact reason for designating these as "i" nodes is unknown. When asked, Unix pioneer Dennis Ritchie replied:[1]
In truth, I don't know either. It was just a term that we started to use. "Index" is my best guess, because of the slightly unusual file system structure that stored the access information of files as a flat array on the disk, with all the hierarchical directory information living aside from this. Thus the i-number is an index in this array, the i-node is the selected element of the array. (The "i-" notation was used in the 1st edition manual; its hyphen was gradually dropped.)
Details
An important part of a file system is the data structures that contain information about the files. Each file is associated with an inode (identified by an inode number, often referred to as an i-number or inode).
Inodes basically store information about files and folders, such as (user and group) ownership, access mode (read, write, execute permissions) and file type. On many types of file systems the number of inodes available is fixed at file system creation, limiting the maximum number of files the file system can hold. A typical space allocation for inodes in a file system is 1% of total size.
The inode number indexes a table of inodes in a known location on the device; from the inode number, the kernel can access the contents of the inode, including the location of the file allowing access to the file.
A file's inode number can be found using the ls -i command. The ls -l command displays some of the inode contents for each file.
Some Unix-style file systems such as ReiserFS omit an inode table, but must store equivalent data in order to provide equivalent capabilities. The data may be called stat data, in reference to the stat
system call that provides the data to programs.
File names and directory implications:
- Inodes do not contain file names, only file metadata.
- Unix directories are lists of "link" structures, each of which contains one filename and one inode number.
- The kernel must search a directory looking for a particular filename and then convert the filename to the correct corresponding inode number.
The kernel's in-memory representation of this data is called struct inode
in Linux. Systems derived from BSD use the term vnode
, with the v of vnode referring to the kernel's virtual file system layer.
POSIX inode description
The POSIX standard mandates filesystem behavior that is strongly influenced by traditional UNIX filesystems. Regular files must have the following attributes:
- The size of the file in bytes.
- Device ID (this identifies the device containing the file).
- The User ID of the file's owner.
- The Group ID of the file.
- The file mode which determines the file type and how the file's owner, its group, and others can access the file.
- Additional system and user flags to further protect the file (limit its use and modification).
- Timestamps telling when the inode itself was last changed (ctime, changing time), the file content last modified (mtime, modification time), and last accessed (atime, access time).
- A link count telling how many hard links point to the inode.
- Pointers to the disk blocks that store the file's contents (see inode pointer structure).
The stat
system call retrieves a file's inode number and some of the information in the inode.
Implications
- 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 links, which depend on the original name, not the inode (number).
- An inode may have no links. Unlinked files are removed from disk and its resources are freed for reallocation but deletion must wait until all processes that have opened it finish accessing it. This includes executable files which are implicitly held open by the processes executing them. *It is typically not possible to map from an open file to the filename that was used to open it. The operating system immediately converts the filename to an inode number then discards the filename. This means that the getcwd() and getwd() library functions search the parent directory to find a file with an inode matching the working directory, then search that directory's parent, and so on until reaching the root directory. SVR4 and Linux systems maintain extra information to make this possible.
- Historically, it was possible to hard link directories. This made the directory structure into an arbitrary directed graph as opposed to a directed acyclic graph (DAG). 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.
- A file's inode number stays the same when it is moved to another directory on the same device, or when the disk is defragmented which may change its physical location. This also implies that completely conforming inode behavior is impossible to implement with many non-Unix file systems, such as FAT and its descendants, which don't have a way of storing this lasting "sameness" when both a file's directory entry and its data are moved around.
- Installation of new libraries is simple with inode filesystems. A running process can access a library file while another process replaces that file, creating a new inode, and an all new mapping will exist for the new file so that subsequent attempts to access the library get the new version. This facility eliminates the need to reboot to replace currently mapped libraries. For this reason, when updating programs, best practice is to delete the old executable first and create a new inode for the updated version, so that any processes executing the old version may proceed undisturbed.
Practical considerations
Many computer programs used by system administrators in UNIX operating systems often designate files with inode numbers. Examples include popular disk integrity checking utilities such as the fsck
or pfiles
. Thus, the need naturally arises to translate inode numbers to file pathnames and vice versa. This can be accomplished using the file finding utility find
with the -inum
option, or the ls
command with the proper option (-i
on POSIX compliant platforms).
It is possible to use up a device's set of inodes. When this happens, new files cannot be created on the device, even though there may be free space available. For example, a mail server may have many small files that don't fill up the disk, but use many inodes to point to the numerous files.
Filesystems (such as JFS, ext4, or XFS) escape this limitation via support extents and/or dynamic inode allocation, which can 'grow' the filesystem and/or increase the number of inodes.
See also
References
- ^ Linux Kernel list archive. Retrieved on 2009-11-14.