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