]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/inode.7
getent.1, intro.1, time.1, _exit.2, alloc_hugepages.2, arch_prctl.2, clock_getres...
[thirdparty/man-pages.git] / man7 / inode.7
CommitLineData
b48c7572
MK
1'\" t
2.\" Copyright (c) 2017 Michael Kerrisk <mtk.manpages@gmail.com>
3.\"
4.\" %%%LICENSE_START(VERBATIM)
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
13.\"
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
21.\"
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
24.\" %%%LICENSE_END
25.\"
f55a6d59 26.TH INODE 7 2017-07-13 "Linux" "Linux Programmer's Manual"
b48c7572
MK
27.SH NAME
28inode \- file inode information
29.SH DESCRIPTION
30Each file has an inode containing metadata about the file.
31An application can retrieve this metadata using
32.BR stat (2)
33(or related calls), which returns a
34.I stat
35structure, or
36.BR statx (2),
37which returns a
38.I statx
39structure.
a721e8b2 40.PP
b48c7572
MK
41The following is a list of the information typically found in,
42or associated with, the file inode,
43with the names of the corresponding structure fields returned by
44.BR stat (2)
45and
46.BR statx (2):
47.TP
48Device where inode resides
49\fIstat.st_dev\fP; \fIstatx.stx_dev_minor\fP and \fIstatx.stx_dev_major\fP
a721e8b2 50.IP
b48c7572
MK
51Each inode (as well as the associated file) resides in a filesystem
52that is hosted on a device.
53That device is identified by the combination of its major ID
54(which identifies the general class of device)
55and minor ID (which identifies a specific instance in the general class).
56.TP
57Inode number
58\fIstat.st_ino\fP; \fIstatx.stx_ino\fP
a721e8b2 59.IP
b48c7572
MK
60Each file in a filesystem has a unique inode number.
61Inode numbers are guaranteed to be unique only within a filesystem
62(i.e., the same inode numbers may be used by different filesystems,
63which is the reason that hard links may not cross filesystem boundaries).
64This field contains the file's inode number.
65.TP
66File type and mode
67\fIstat.st_mode\fP; \fIstatx.stx_mode\fP
a721e8b2 68.IP
b48c7572
MK
69See the discussion of file type and mode, below.
70.TP
71Link count
72\fIstat.st_nlink\fP; \fIstatx.stx_nlink\fP
a721e8b2 73.IP
b48c7572
MK
74This field contains the number of hard links to the file.
75Additional links to an existing file are created using
76.BR link (2).
77.TP
78User ID
79.I st_uid
80\fIstat.st_uid\fP; \fIstatx.stx_uid\fP
a721e8b2 81.IP
b48c7572
MK
82This field records the user ID of the owner of the file.
83For newly created files,
84the file user ID is the effective user ID of the creating process.
85The user ID of a file can be changed using
86.BR chown (2).
87.TP
88Group ID
89\fIstat.st_gid\fP; \fIstatx.stx_gid\fP
a721e8b2 90.IP
b48c7572
MK
91The inode records the ID of the group owner of the file.
92For newly created files,
93the file group ID is either the group ID of the parent directory or
94the effective group ID of the creating process,
b132d423 95depending on whether or not the set-group-ID bit
b48c7572
MK
96is set on the parent directory (see below).
97The group ID of a file can be changed using
98.BR chown (2).
99.TP
100Device represented by this inode
101\fIstat.st_rdev\fP; \fIstatx.stx_rdev_minor\fP and \fIstatx.stx_rdev_major\fP
a721e8b2 102.IP
b48c7572
MK
103If this file (inode) represents a device,
104then the inode records the major and minor ID of that device.
105.TP
106File size
107\fIstat.st_size\fP; \fIstatx.stx_size\fP
a721e8b2 108.IP
b48c7572
MK
109This field gives the size of the file (if it is a regular
110file or a symbolic link) in bytes.
111The size of a symbolic link is the length of the pathname
112it contains, without a terminating null byte.
113.TP
114Preferred block size for I/O
115\fIstat.st_blksize\fP; \fIstatx.stx_blksize\fP
a721e8b2 116.IP
b48c7572
MK
117This field gives the "preferred" blocksize for efficient filesystem I/O.
118(Writing to a file in smaller chunks may cause
119an inefficient read-modify-rewrite.)
120.TP
121Number of blocks allocated to the file
122\fIstat.st_blocks\fP; \fIstatx.stx_size\fP
a721e8b2 123.IP
b48c7572
MK
124This field indicates the number of blocks allocated to the file,
125512-byte units,
126(This may be smaller than
127.IR st_size /512
128when the file has holes.)
a721e8b2 129.IP
b48c7572
MK
130The POSIX.1 standard notes
131.\" Rationale for sys/stat.h in POSIX.1-2008
132that the unit for the
133.I st_blocks
134member of the
135.I stat
136structure is not defined by the standard.
137On many implementations it is 512 bytes;
138on a few systems, a different unit is used, such as 1024.
139Furthermore, the unit may differ on a per-filesystem basis.
140.TP
141Last access timestamp (atime)
142\fIstat.st_atime\fP; \fIstatx.stx_atime\fP
a721e8b2 143.IP
b48c7572
MK
144This is the file's last access timestamp.
145It is changed by file accesses, for example, by
146.BR execve (2),
147.BR mknod (2),
148.BR pipe (2),
149.BR utime (2),
150and
151.BR read (2)
152(of more than zero bytes).
153Other interfaces, such as
154.BR mmap (2),
155may or may not update the atime timestamp
a721e8b2 156.IP
b48c7572
MK
157Some filesystem types allow mounting in such a way that file
158and/or directory accesses do not cause an update of the atime timestamp.
159(See
160.IR noatime ,
161.IR nodiratime ,
162and
163.I relatime
164in
165.BR mount (8),
166and related information in
167.BR mount (2).)
168In addition, the atime timestamp
169is not updated if a file is opened with the
170.BR O_NOATIME
171flag; see
172.BR open (2).
173.TP
174File creation (birth) timestamp (btime)
175(not returned in the \fIstat\fP structure); \fIstatx.stx_btime\fP
a721e8b2 176.IP
b48c7572
MK
177The file's creation timestamp.
178This is set on file creation and not changed subsequently.
a721e8b2 179.IP
b132d423 180The btime timestamp was not historically present on UNIX systems
b48c7572
MK
181and is not currently supported by most Linux filesystems.
182.\" FIXME Is it supported on ext4 and XFS?
183.TP
184Last modification timestamp (mtime)
185\fIstat.st_atime\fP; \fIstatx.stx_mtime\fP
a721e8b2 186.IP
b48c7572
MK
187This is the file's last modification timestamp.
188It is changed by file modifications, for example, by
189.BR mknod (2),
190.BR truncate (2),
191.BR utime (2),
192and
193.BR write (2)
194(of more than zero bytes).
195Moreover, the mtime timestamp
196of a directory is changed by the creation or deletion of files
197in that directory.
198The mtime timestamp is
199.I not
200changed for changes in owner, group, hard link count, or mode.
201.TP
202Last status change timestamp (ctime)
203\fIstat.st_ctime\fP; \fIstatx.stx_ctime\fP
a721e8b2 204.IP
b48c7572
MK
205This is the file's last status change timestamp.
206It is changed by writing or by setting inode information
207(i.e., owner, group, link count, mode, etc.).
208.PP
209Nanosecond timestamps are supported on XFS, JFS, Btrfs, and
210ext4 (since Linux 2.6.23).
211.\" commit ef7f38359ea8b3e9c7f2cae9a4d4935f55ca9e80
212Nanosecond timestamps are not supported in ext2, ext3, and Reiserfs.
213On filesystems that do not support subsecond timestamps,
214the nanosecond fields in the
215.I stat
216and
217.I statx
218structures are returned with the value 0.
219.\"
220.SS The file type and mode
221The
222.I stat.st_mode
223field (for
224.BR statx (2),
225the
226.I statx.stx_mode
227field) contains the file type and mode.
a721e8b2 228.PP
b48c7572
MK
229POSIX refers to the
230.I stat.st_mode
231bits corresponding to the mask
232.B S_IFMT
233(see below) as the
234.IR "file type" ,
235the 12 bits corresponding to the mask 07777 as the
236.IR "file mode bits"
237and the least significant 9 bits (0777) as the
238.IR "file permission bits" .
239.PP
240The following mask values are defined for the file type:
241.in +4n
242.TS
243lB l l.
244S_IFMT 0170000 bit mask for the file type bit field
245
246S_IFSOCK 0140000 socket
247S_IFLNK 0120000 symbolic link
248S_IFREG 0100000 regular file
249S_IFBLK 0060000 block device
250S_IFDIR 0040000 directory
251S_IFCHR 0020000 character device
252S_IFIFO 0010000 FIFO
253.TE
254.in
255.PP
256Thus, to test for a regular file (for example), one could write:
a721e8b2 257.PP
b48c7572
MK
258.nf
259.in +4n
260stat(pathname, &sb);
261if ((sb.st_mode & S_IFMT) == S_IFREG) {
262 /* Handle regular file */
263}
264.in
265.fi
266.PP
267Because tests of the above form are common, additional
268macros are defined by POSIX to allow the test of the file type in
269.I st_mode
270to be written more concisely:
271.RS 4
272.TP 1.2i
273.BR S_ISREG (m)
274is it a regular file?
275.TP
276.BR S_ISDIR (m)
277directory?
278.TP
279.BR S_ISCHR (m)
280character device?
281.TP
282.BR S_ISBLK (m)
283block device?
284.TP
285.BR S_ISFIFO (m)
286FIFO (named pipe)?
287.TP
288.BR S_ISLNK (m)
289symbolic link? (Not in POSIX.1-1996.)
290.TP
291.BR S_ISSOCK (m)
292socket? (Not in POSIX.1-1996.)
293.RE
294.PP
295The preceding code snippet could thus be rewritten as:
a721e8b2 296.PP
b48c7572
MK
297.nf
298.in +4n
299stat(pathname, &sb);
300if (S_ISREG(sb.st_mode)) {
301 /* Handle regular file */
302}
303.in
304.fi
305.PP
306The definitions of most of the above file type test macros
307are provided if any of the following feature test macros is defined:
308.BR _BSD_SOURCE
309(in glibc 2.19 and earlier),
310.BR _SVID_SOURCE
311(in glibc 2.19 and earlier),
312or
313.BR _DEFAULT_SOURCE
314(in glibc 2.20 and later).
315In addition, definitions of all of the above macros except
316.BR S_IFSOCK
317and
318.BR S_ISSOCK ()
319are provided if
320.BR _XOPEN_SOURCE
321is defined.
a721e8b2 322.PP
b48c7572
MK
323The definition of
324.BR S_IFSOCK
45375b20
MK
325can also be exposed either by defining
326.BR _XOPEN_SOURCE
327with a value of 500 or greater or (since glibc 2.24) by defining both
b48c7572 328.BR _XOPEN_SOURCE
45375b20
MK
329and
330.BR _XOPEN_SOURCE_EXTENDED .
a721e8b2 331.PP
b48c7572
MK
332The definition of
333.BR S_ISSOCK ()
334is exposed if any of the following feature test macros is defined:
335.BR _BSD_SOURCE
336(in glibc 2.19 and earlier),
337.BR _DEFAULT_SOURCE
338(in glibc 2.20 and later),
339.BR _XOPEN_SOURCE
45375b20 340with a value of 500 or greater,
b48c7572 341.BR _POSIX_C_SOURCE
45375b20
MK
342with a value of 200112L or greater, or (since glibc 2.24) by defining both
343.BR _XOPEN_SOURCE
344and
345.BR _XOPEN_SOURCE_EXTENDED .
b48c7572
MK
346.PP
347The following mask values are defined for
348the file mode component of the
349.I st_mode
350field:
351.in +4n
352.TS
353lB l l.
354S_ISUID 04000 set-user-ID bit
355S_ISGID 02000 set-group-ID bit (see below)
356S_ISVTX 01000 sticky bit (see below)
357
358S_IRWXU 00700 owner has read, write, and execute permission
359S_IRUSR 00400 owner has read permission
360S_IWUSR 00200 owner has write permission
361S_IXUSR 00100 owner has execute permission
362
363S_IRWXG 00070 group has read, write, and execute permission
364S_IRGRP 00040 group has read permission
365S_IWGRP 00020 group has write permission
366S_IXGRP 00010 group has execute permission
367
368S_IRWXO 00007 T{
369others (not in group) have read, write, and execute permission
370T}
371S_IROTH 00004 others have read permission
372S_IWOTH 00002 others have write permission
373S_IXOTH 00001 others have execute permission
374.TE
375.in
376.P
377The set-group-ID bit
378.RB ( S_ISGID )
379has several special uses.
380For a directory, it indicates that BSD semantics is to be used
381for that directory: files created there inherit their group ID from
382the directory, not from the effective group ID of the creating process,
383and directories created there will also get the
384.B S_ISGID
385bit set.
386For a file that does not have the group execution bit
387.RB ( S_IXGRP )
388set,
389the set-group-ID bit indicates mandatory file/record locking.
390.P
391The sticky bit
392.RB ( S_ISVTX )
393on a directory means that a file
394in that directory can be renamed or deleted only by the owner
395of the file, by the owner of the directory, and by a privileged
396process.
397.SH CONFORMING TO
398If you need to obtain the definition of the
399.IR blkcnt_t
400or
401.IR blksize_t
402types from
403.IR <sys/stat.h> ,
404then define
405.BR _XOPEN_SOURCE
406with the value 500 or greater (before including
407.I any
408header files).
dd3568a1 409.PP
b48c7572
MK
410POSIX.1-1990 did not describe the
411.BR S_IFMT ,
412.BR S_IFSOCK ,
413.BR S_IFLNK ,
414.BR S_IFREG ,
415.BR S_IFBLK ,
416.BR S_IFDIR ,
417.BR S_IFCHR ,
418.BR S_IFIFO ,
419.B S_ISVTX
420constants, but instead specified the use of
421the macros
422.BR S_ISDIR (),
423and so on.
424The
425.BR S_IF*
426constants are present in POSIX.1-2001 and later.
a721e8b2 427.PP
b48c7572
MK
428The
429.BR S_ISLNK ()
430and
431.BR S_ISSOCK ()
432macros were not in
433POSIX.1-1996, but both are present in POSIX.1-2001;
434the former is from SVID 4, the latter from SUSv2.
dd3568a1 435.PP
b48c7572
MK
436UNIX\ V7 (and later systems) had
437.BR S_IREAD ,
438.BR S_IWRITE ,
439.BR S_IEXEC ,
440where POSIX
441prescribes the synonyms
442.BR S_IRUSR ,
443.BR S_IWUSR ,
444.BR S_IXUSR .
445.SH NOTES
446For pseudofiles that are autogenerated by the kernel, the file size
447(\fIstat.st_size\fP; \fIstatx.stx_size\fP)
448reported by the kernel is not accurate.
449For example, the value 0 is returned for many files under the
450.I /proc
451directory,
452while various files under
453.IR /sys
454report a size of 4096 bytes, even though the file content is smaller.
455For such files, one should simply try to read as many bytes as possible
456(and append \(aq\e0\(aq to the returned buffer
457if it is to be interpreted as a string).
458.IR st_atimensec .
459.SH SEE ALSO
460.BR stat (1),
461.BR stat (2),
462.BR statx (2),
463.BR symlink (7)