]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man5/proc.5
proc.5: Add description for cpuN lines in /pro/stat
[thirdparty/man-pages.git] / man5 / proc.5
CommitLineData
fea681da 1.\" Copyright (C) 1994, 1995 by Daniel Quinlan (quinlan@yggdrasil.com)
b4e9ee8f 2.\" and Copyright (C) 2002-2008 Michael Kerrisk <mtk.manpages@gmail.com>
fea681da
MK
3.\" with networking additions from Alan Cox (A.Cox@swansea.ac.uk)
4.\" and scsi additions from Michael Neuffer (neuffer@mail.uni-mainz.de)
5.\" and sysctl additions from Andries Brouwer (aeb@cwi.nl)
6.\" and System V IPC (as well as various other) additions from
c11b1abf 7.\" Michael Kerrisk <mtk.manpages@gmail.com>
fea681da 8.\"
1dd72f9c 9.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
fea681da
MK
10.\" This is free documentation; you can redistribute it and/or
11.\" modify it under the terms of the GNU General Public License as
12.\" published by the Free Software Foundation; either version 2 of
13.\" the License, or (at your option) any later version.
14.\"
15.\" The GNU General Public License's references to "object code"
16.\" and "executables" are to be interpreted as the output of any
17.\" document formatting or typesetting system, including
18.\" intermediate and printed output.
19.\"
20.\" This manual is distributed in the hope that it will be useful,
21.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
22.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23.\" GNU General Public License for more details.
24.\"
25.\" You should have received a copy of the GNU General Public
c715f741
MK
26.\" License along with this manual; if not, see
27.\" <http://www.gnu.org/licenses/>.
6a8d8745 28.\" %%%LICENSE_END
fea681da
MK
29.\"
30.\" Modified 1995-05-17 by faith@cs.unc.edu
31.\" Minor changes by aeb and Marty Leisner (leisner@sdsp.mc.xerox.com).
32.\" Modified 1996-04-13, 1996-07-22 by aeb@cwi.nl
33.\" Modified 2001-12-16 by rwhron@earthlink.net
34.\" Modified 2002-07-13 by jbelton@shaw.ca
35.\" Modified 2002-07-22, 2003-05-27, 2004-04-06, 2004-05-25
c11b1abf 36.\" by Michael Kerrisk <mtk.manpages@gmail.com>
5d6d14a0
MK
37.\" 2004-11-17, mtk -- updated notes on /proc/loadavg
38.\" 2004-12-01, mtk, rtsig-max and rtsig-nr went away in 2.6.8
568105c6
MK
39.\" 2004-12-14, mtk, updated 'statm', and fixed error in order of list
40.\" 2005-05-12, mtk, updated 'stat'
6d64ca9c 41.\" 2005-07-13, mtk, added /proc/sys/fs/mqueue/*
363f747c
MK
42.\" 2005-09-16, mtk, Added /proc/sys/fs/suid_dumpable
43.\" 2005-09-19, mtk, added /proc/zoneinfo
b4e9ee8f 44.\" 2005-03-01, mtk, moved /proc/sys/fs/mqueue/* material to mq_overview.7.
69119dc7
MK
45.\" 2008-06-05, mtk, Added /proc/[pid]/oom_score, /proc/[pid]/oom_adj,
46.\" /proc/[pid]/limits, /proc/[pid]/mountinfo, /proc/[pid]/mountstats,
47.\" and /proc/[pid]/fdinfo/*.
48.\" 2008-06-19, mtk, Documented /proc/[pid]/status.
cc2d5c36 49.\" 2008-07-15, mtk, added /proc/config.gz
363f747c 50.\"
43d42cc0 51.\" FIXME cross check against Documentation/filesystems/proc.txt
c13182ef 52.\" to see what information could be imported from that file
c533af9d 53.\" into this file.
fea681da 54.\"
734882f4 55.TH PROC 5 2017-05-03 "Linux" "Linux Programmer's Manual"
fea681da 56.SH NAME
9ee4a2b6 57proc \- process information pseudo-filesystem
fea681da
MK
58.SH DESCRIPTION
59The
60.I proc
ac8727b6 61filesystem is a pseudo-filesystem which provides an interface to
c13182ef
MK
62kernel data structures.
63It is commonly mounted at
fea681da 64.IR /proc .
c13182ef 65Most of it is read-only, but some files allow kernel variables to be
fea681da 66changed.
fee59977
MK
67.SS Mount options
68The
69.I proc
70filesystem supports the following mount options:
71.TP
72.BR hidepid "=\fIn\fP (since Linux 3.3)"
73.\" commit 0499680a42141d86417a8fbaa8c8db806bea1201
74This option controls who can access the information in
75.IR /proc/[pid]
76directories.
77The argument,
78.IR n ,
79is one of the following values:
80.RS
81.TP 4
820
83Everybody may access all
84.IR /proc/[pid]
85directories.
86This is the traditional behavior,
87and the default if this mount option is not specified.
88.TP
891
90Users may not access files and subdirectories inside any
91.IR /proc/[pid]
92directories but their own (the
93.IR /proc/[pid]
94directories themselves remain visible).
95Sensitive files such as
97949440 96.IR /proc/[pid]/cmdline
fee59977 97and
97949440 98.IR /proc/[pid]/status
fee59977
MK
99are now protected against other users.
100This makes it impossible to learn whether any user is running a
101specific program
102(so long as the program doesn't otherwise reveal itself by its behavior).
103.\" As an additional bonus, since
97949440 104.\" .IR /proc/[pid]/cmdline
fee59977
MK
105.\" is unaccessible for other users,
106.\" poorly written programs passing sensitive information via
107.\" program arguments are now protected against local eavesdroppers.
108.TP
1092
110As for mode 1, but in addition the
111.IR /proc/[pid]
112directories belonging to other users become invisible.
113This means that
114.IR /proc/[pid]
115entries can no longer be used to discover the PIDs on the system.
116This doesn't hide the fact that a process with a specific PID value exists
9bc87ed0 117(it can be learned by other means, for example, by "kill \-0 $PID"),
fee59977
MK
118but it hides a process's UID and GID,
119which could otherwise be learned by employing
120.BR stat (2)
121on a
122.IR /proc/[pid]
123directory.
124This greatly complicates an attacker's task of gathering
125information about running processes (e.g., discovering whether
126some daemon is running with elevated privileges,
127whether another user is running some sensitive program,
128whether other users are running any program at all, and so on).
129.RE
130.TP
131.BR gid "=\fIgid\fP (since Linux 3.3)"
132.\" commit 0499680a42141d86417a8fbaa8c8db806bea1201
133Specifies the ID of a group whose members are authorized to
134learn process information otherwise prohibited by
135.BR hidepid
95b1c1d1 136(i.e., users in this group behave as though
fee59977
MK
137.I /proc
138was mounted with
95b1c1d1 139.IR hidepid=0 ).
fee59977
MK
140This group should be used instead of approaches such as putting
141nonroot users into the
142.BR sudoers (5)
143file.
144.SS Files and directories
ac8727b6 145The following list describes many of the files and directories under the
743638fd
MK
146.I /proc
147hierarchy.
fea681da 148.TP
69119dc7 149.I /proc/[pid]
fea681da
MK
150There is a numerical subdirectory for each running process; the
151subdirectory is named by the process ID.
2dad4c59 152.IP
1e6a8e2f
MK
153Each
154.I /proc/[pid]
155subdirectory contains the
156pseudo-files and directories described below.
3bdb8ec5
MK
157These files are normally owned by the effective user and
158effective group ID of the process.
159However, as a security measure, the ownership is made
160.IR root:root
161if the process's "dumpable" attribute is set to a value other than 1.
162This attribute may change for the following reasons:
163.RS
164.IP * 3
165The attribute was explicitly set via the
166.BR prctl (2)
167.B PR_SET_DUMPABLE
168operation.
169.IP *
170The attribute was reset to the value in the file
171.IR /proc/sys/fs/suid_dumpable
172(described below), for the reasons described in
173.BR prctl (2).
174.RE
175.IP
176Resetting the "dumpable" attribute to 1 reverts the ownership of the
177.IR /proc/[pid]/*
178files to the process's real UID and real GID.
b7a42567
MK
179.TP
180.I /proc/[pid]/attr
181.\" https://lwn.net/Articles/28222/
182.\" From: Stephen Smalley <sds@epoch.ncsc.mil>
183.\" To: LKML and others
184.\" Subject: [RFC][PATCH] Process Attribute API for Security Modules
185.\" Date: 08 Apr 2003 16:17:52 -0400
186.\"
b3fb99e8
MK
187.\" http://www.nsa.gov/research/_files/selinux/papers/module/x362.shtml
188.\"
b7a42567
MK
189The files in this directory provide an API for security modules.
190The contents of this directory are files that can be read and written
191in order to set security-related attributes.
192This directory was added to support SELinux,
193but the intention was that the API be general enough to support
194other security modules.
195For the purpose of explanation,
196examples of how SELinux uses these files are provided below.
2dad4c59 197.IP
b7a42567
MK
198This directory is present only if the kernel was configured with
199.BR CONFIG_SECURITY .
200.TP
201.IR /proc/[pid]/attr/current " (since Linux 2.6.0)"
202The contents of this file represent the current
203security attributes of the process.
2dad4c59 204.IP
fd44bdc7
TY
205In SELinux, this file is used to get the security context of a process.
206Prior to Linux 2.6.11, this file could not be used to set the security
207context (a write was always denied), since SELinux limited process security
208transitions to
b7a42567
MK
209.BR execve (2)
210(see the description of
211.IR /proc/[pid]/attr/exec ,
212below).
fd44bdc7
TY
213Since Linux 2.6.11, SELinux lifted this restriction and began supporting
214"set" operations via writes to this node if authorized by policy,
215although use of this operation is only suitable for applications that are
216trusted to maintain any desired separation between the old and new security
b6620a25
MK
217contexts.
218Prior to Linux 2.6.28, SELinux did not allow threads within a
fd44bdc7
TY
219multi-threaded process to set their security context via this node
220as it would yield an inconsistency among the security contexts of the
b6620a25
MK
221threads sharing the same memory space.
222Since Linux 2.6.28, SELinux lifted
fd44bdc7 223this restriction and began supporting "set" operations for threads within
b6620a25 224a multithreaded process if the new security context is bounded by the old
fd44bdc7
TY
225security context, where the bounded relation is defined in policy and
226guarantees that the new security context has a subset of the permissions
227of the old security context.
b7a42567
MK
228Other security modules may choose to support "set" operations via
229writes to this node.
230.TP
231.IR /proc/[pid]/attr/exec " (since Linux 2.6.0)"
232This file represents the attributes to assign to the
233process upon a subsequent
234.BR execve (2).
2dad4c59 235.IP
b7a42567
MK
236In SELinux,
237this is needed to support role/domain transitions, and
238.BR execve (2)
239is the preferred point to make such transitions because it offers better
240control over the initialization of the process in the new security label
241and the inheritance of state.
242In SELinux, this attribute is reset on
243.BR execve (2)
244so that the new program reverts to the default behavior for any
245.BR execve (2)
246calls that it may make.
247In SELinux, a process can set
248only its own
249.I /proc/[pid]/attr/exec
250attribute.
251.TP
252.IR /proc/[pid]/attr/fscreate " (since Linux 2.6.0)"
253This file represents the attributes to assign to files
254created by subsequent calls to
255.BR open (2),
256.BR mkdir (2),
257.BR symlink (2),
258and
259.BR mknod (2)
2dad4c59 260.IP
b7a42567
MK
261SELinux employs this file to support creation of a file
262(using the aforementioned system calls)
263in a secure state,
264so that there is no risk of inappropriate access being obtained
265between the time of creation and the time that attributes are set.
266In SELinux, this attribute is reset on
267.BR execve (2),
268so that the new program reverts to the default behavior for
269any file creation calls it may make, but the attribute will persist
270across multiple file creation calls within a program unless it is
271explicitly reset.
272In SELinux, a process can set only its own
273.IR /proc/[pid]/attr/fscreate
274attribute.
275.TP
666db07e
MK
276.IR /proc/[pid]/attr/keycreate " (since Linux 2.6.18)"
277.\" commit 4eb582cf1fbd7b9e5f466e3718a59c957e75254e
278.\" /Documentation/keys.txt
279If a process writes a security context into this file,
280all subsequently created keys
281.RB ( add_key (2))
282will be labeled with this context.
283For further information, see the kernel source file
284.IR Documentation/keys.txt .
2702dc21 285.TP
93401860
MK
286.IR /proc/[pid]/attr/prev " (since Linux 2.6.0)"
287This file contains the security context of the process before the last
288.BR execve (2);
289that is, the previous value of
290.IR /proc/[pid]/attr/current .
291.TP
2702dc21
MK
292.IR /proc/[pid]/attr/socketcreate " (since Linux 2.6.18)"
293.\" commit 42c3e03ef6b298813557cdb997bd6db619cd65a2
294If a process writes a security context into this file,
295all subsequently created sockets will be labeled with this context.
39b35179
MK
296.TP
297.IR /proc/[pid]/autogroup " (since Linux 2.6.38)"
298.\" commit 5091faa449ee0b7d73bc296a93bca9540fc51d0a
299See
300.BR sched (7).
fea681da 301.TP
69119dc7 302.IR /proc/[pid]/auxv " (since 2.6.0-test7)"
857f1942 303This contains the contents of the ELF interpreter information passed
c13182ef 304to the process at exec time.
857f1942 305The format is one \fIunsigned long\fP ID
c13182ef 306plus one \fIunsigned long\fP value for each entry.
857f1942 307The last entry contains two zeros.
4c69c692
MK
308See also
309.BR getauxval (3).
2dad4c59 310.IP
82664739
MK
311Permission to access this file is governed by a ptrace access mode
312.B PTRACE_MODE_READ_FSCREDS
313check; see
314.BR ptrace (2).
b5d204d0 315.TP
8d708d6b 316.IR /proc/[pid]/cgroup " (since Linux 2.6.24)"
5c2181ad
MK
317See
318.BR cgroups (7).
76e0451c
MK
319.TP
320.IR /proc/[pid]/clear_refs " (since Linux 2.6.22)"
321.\" commit b813e931b4c8235bb42e301096ea97dbdee3e8fe (2.6.22)
322.\" commit 398499d5f3613c47f2143b8c54a04efb5d7a6da9 (2.6.32)
323.\" commit 040fa02077de01c7e08fa75be6125e4ca5636011 (3.11)
b4e9ee8f 324.\"
b4e9ee8f 325.\" "Clears page referenced bits shown in smaps output"
76e0451c 326.\" write-only, writable only by the owner of the process
2dad4c59 327.IP
76e0451c 328This is a write-only file, writable only by owner of the process.
2dad4c59 329.IP
76e0451c
MK
330The following values may be written to the file:
331.RS
332.TP
3331 (since Linux 2.6.22)
334.\" Internally: CLEAR_REFS_ALL
335Reset the PG_Referenced and ACCESSED/YOUNG
336bits for all the pages associated with the process.
337(Before kernel 2.6.32, writing any nonzero value to this file
338had this effect.)
339.TP
3402 (since Linux 2.6.32)
341.\" Internally: CLEAR_REFS_ANON
342Reset the PG_Referenced and ACCESSED/YOUNG
343bits for all anonymous pages associated with the process.
344.TP
3453 (since Linux 2.6.32)
346.\" Internally: CLEAR_REFS_MAPPED
347Reset the PG_Referenced and ACCESSED/YOUNG
348bits for all file-mapped pages associated with the process.
349.RE
350.IP
351Clearing the PG_Referenced and ACCESSED/YOUNG bits provides a method
352to measure approximately how much memory a process is using.
322d49fb 353One first inspects the values in the "Referenced" fields
76e0451c
MK
354for the VMAs shown in
355.IR /proc/[pid]/smaps
356to get an idea of the memory footprint of the
357process.
358One then clears the PG_Referenced and ACCESSED/YOUNG bits
359and, after some measured time interval,
322d49fb 360once again inspects the values in the "Referenced" fields
76e0451c
MK
361to get an idea of the change in memory footprint of the
362process during the measured interval.
363If one is interested only in inspecting the selected mapping types,
364then the value 2 or 3 can be used instead of 1.
2dad4c59 365.IP
dfdf642e 366Further values can be written to affect different properties:
76e0451c
MK
367.RS
368.TP
3694 (since Linux 3.11)
370Clear the soft-dirty bit for all the pages associated with the process.
371.\" Internally: CLEAR_REFS_SOFT_DIRTY
372This is used (in conjunction with
373.IR /proc/[pid]/pagemap )
374by the check-point restore system to discover which pages of a process
375have been dirtied since the file
376.IR /proc/[pid]/clear_refs
377was written to.
dfdf642e
NK
378.TP
3795 (since Linux 4.0)
380.\" Internally: CLEAR_REFS_MM_HIWATER_RSS
0989246e
MK
381Reset the peak resident set size ("high water mark") to the process's
382current resident set size value.
76e0451c
MK
383.RE
384.IP
385Writing any value to
386.IR /proc/[pid]/clear_refs
387other than those listed above has no effect.
2dad4c59 388.IP
76e0451c
MK
389The
390.IR /proc/[pid]/clear_refs
391file is present only if the
392.B CONFIG_PROC_PAGE_MONITOR
393kernel configuration option is enabled.
857f1942 394.TP
69119dc7 395.I /proc/[pid]/cmdline
6975c16e 396This read-only file holds the complete command line for the process,
b447cd58
MK
397unless the process is a zombie.
398.\" In 2.3.26, this also used to be true if the process was swapped out.
399In the latter case, there is nothing in this file:
75b94dc3 400that is, a read on this file will return 0 characters.
b447cd58 401The command-line arguments appear in this file as a set of
6596d270
MK
402strings separated by null bytes (\(aq\\0\(aq),
403with a further null byte after the last string.
32d7ef00
MK
404.TP
405.IR /proc/[pid]/comm " (since Linux 2.6.33)"
406.\" commit 4614a696bd1c3a9af3a08f0e5874830a85b889d4
407This file exposes the process's
408.I comm
409value\(emthat is, the command name associated with the process.
410Different threads in the same process may have different
411.I comm
412values, accessible via
413.IR /proc/[pid]/task/[tid]/comm .
414A thread may modify its
415.I comm
416value, or that of any of other thread in the same thread group (see
417the discussion of
418.B CLONE_THREAD
419in
420.BR clone (2)),
421by writing to the file
422.IR /proc/self/task/[tid]/comm .
423Strings longer than
424.B TASK_COMM_LEN
425(16) characters are silently truncated.
2dad4c59 426.IP
ef4f4031 427This file provides a superset of the
32d7ef00
MK
428.BR prctl (2)
429.B PR_SET_NAME
430and
431.B PR_GET_NAME
432operations, and is employed by
433.BR pthread_setname_np (3)
434when used to rename threads other than the caller.
fea681da 435.TP
7e07d950 436.IR /proc/[pid]/coredump_filter " (since Linux 2.6.23)"
b4e9ee8f
MK
437See
438.BR core (5).
5c411b17 439.TP
7e07d950
MK
440.IR /proc/[pid]/cpuset " (since Linux 2.6.12)"
441.\" and/proc/[pid]/task/[tid]/cpuset
5c411b17
MK
442See
443.BR cpuset (7).
b4e9ee8f 444.TP
69119dc7 445.I /proc/[pid]/cwd
c13182ef 446This is a symbolic link to the current working directory of the process.
59a40ed7
MK
447To find out the current working directory of process 20,
448for instance, you can do this:
2dad4c59 449.IP
59a40ed7 450.in +4n
37d5e699 451.EX
b43a3b30 452.RB "$" " cd /proc/20/cwd; /bin/pwd"
37d5e699 453.EE
59a40ed7 454.in
2dad4c59 455.IP
c13182ef
MK
456Note that the
457.I pwd
e7b489f0 458command is often a shell built-in, and might
c13182ef 459not work properly.
743638fd
MK
460In
461.BR bash (1),
462you may use
463.IR "pwd\ \-P" .
2dad4c59 464.IP
afcaf646 465.\" The following was still true as at kernel 2.6.13
c13182ef
MK
466In a multithreaded process, the contents of this symbolic link
467are not available if the main thread has already terminated
afcaf646 468(typically by calling
59a40ed7 469.BR pthread_exit (3)).
2dad4c59 470.IP
b902fe18
MK
471Permission to dereference or read
472.RB ( readlink (2))
473this symbolic link is governed by a ptrace access mode
474.B PTRACE_MODE_READ_FSCREDS
475check; see
476.BR ptrace (2).
fea681da 477.TP
69119dc7 478.I /proc/[pid]/environ
09651080
MK
479This file contains the initial environment that was set
480when the currently executing program was started via
481.BR execve (2).
f81fb444 482The entries are separated by null bytes (\(aq\\0\(aq),
b4e9ee8f 483and there may be a null byte at the end.
fea681da 484Thus, to print out the environment of process 1, you would do:
37d5e699 485.IP
a08ea57c 486.in +4n
37d5e699 487.EX
13912780 488.RB "$" " strings /proc/1/environ"
37d5e699 489.EE
a08ea57c 490.in
2dad4c59 491.IP
09651080
MK
492If, after an
493.BR execve (2),
494the process modifies its environment
c187d2a1 495(e.g., by calling functions such as
387e2438
MF
496.BR putenv (3)
497or modifying the
498.BR environ (7)
499variable directly),
09651080
MK
500this file will
501.I not
502reflect those changes.
2dad4c59 503.IP
c187d2a1 504Furthermore, a process may change the memory location that this file refers via
387e2438 505.BR prctl (2)
c187d2a1 506operations such as
387e2438 507.BR PR_SET_MM_ENV_START .
2dad4c59 508.IP
82664739
MK
509Permission to access this file is governed by a ptrace access mode
510.B PTRACE_MODE_READ_FSCREDS
511check; see
512.BR ptrace (2).
fea681da 513.TP
69119dc7 514.I /proc/[pid]/exe
fea681da 515Under Linux 2.2 and later, this file is a symbolic link
2d7195b8 516containing the actual pathname of the executed command.
c13182ef
MK
517This symbolic link can be dereferenced normally; attempting to open
518it will open the executable.
519You can even type
69119dc7 520.I /proc/[pid]/exe
06dd061c 521to run another copy of the same executable that is being run by
69119dc7 522process [pid].
7e3c767a
GJ
523If the pathname has been unlinked, the symbolic link will contain the
524string \(aq(deleted)\(aq appended to the original pathname.
afcaf646 525.\" The following was still true as at kernel 2.6.13
c13182ef
MK
526In a multithreaded process, the contents of this symbolic link
527are not available if the main thread has already terminated
afcaf646
MK
528(typically by calling
529.BR pthread_exit (3)).
2dad4c59 530.IP
b902fe18
MK
531Permission to dereference or read
532.RB ( readlink (2))
533this symbolic link is governed by a ptrace access mode
534.B PTRACE_MODE_READ_FSCREDS
535check; see
536.BR ptrace (2).
2dad4c59 537.IP
eb9a0b2f 538Under Linux 2.0 and earlier,
69119dc7 539.I /proc/[pid]/exe
c13182ef
MK
540is a pointer to the binary which was executed,
541and appears as a symbolic link.
542A
fea681da
MK
543.BR readlink (2)
544call on this file under Linux 2.0 returns a string in the format:
2dad4c59 545.IP
59a40ed7 546 [device]:inode
2dad4c59 547.IP
fea681da
MK
548For example, [0301]:1502 would be inode 1502 on device major 03 (IDE,
549MFM, etc. drives) minor 01 (first partition on the first drive).
2dad4c59 550.IP
fea681da 551.BR find (1)
59a40ed7
MK
552with the
553.I \-inum
554option can be used to locate the file.
fea681da 555.TP
d4529654 556.I /proc/[pid]/fd/
fea681da
MK
557This is a subdirectory containing one entry for each file which the
558process has open, named by its file descriptor, and which is a
c13182ef 559symbolic link to the actual file.
f78ed33a 560Thus, 0 is standard input, 1 standard output, 2 standard error, and so on.
2dad4c59 561.IP
f75715e0
MK
562For file descriptors for pipes and sockets,
563the entries will be symbolic links whose content is the
564file type with the inode.
d4529654
MF
565A
566.BR readlink (2)
567call on this file returns a string in the format:
2dad4c59 568.IP
d4529654 569 type:[inode]
2dad4c59 570.IP
f75715e0
MK
571For example,
572.I socket:[2248868]
573will be a socket and its inode is 2248868.
574For sockets, that inode can be used to find more information
575in one of the files under
d4529654 576.IR /proc/net/ .
2dad4c59 577.IP
2b7a2ac5
MK
578For file descriptors that have no corresponding inode
579(e.g., file descriptors produced by
89e284a2 580.BR bpf (2),
2b7a2ac5
MK
581.BR epoll_create (2),
582.BR eventfd (2),
583.BR inotify_init (2),
89e284a2 584.BR perf_event_open (2),
2b7a2ac5 585.BR signalfd (2),
89e284a2 586.BR timerfd_create (2),
2b7a2ac5 587and
e8675558 588.BR userfaultfd (2)),
2b7a2ac5 589the entry will be a symbolic link with contents of the form
2dad4c59 590.IP
2b7a2ac5 591 anon_inode:<file-type>
2dad4c59 592.IP
e2a5929d 593In many cases (but not all), the
2b7a2ac5
MK
594.I file-type
595is surrounded by square brackets.
2dad4c59 596.IP
2b7a2ac5
MK
597For example, an epoll file descriptor will have a symbolic link
598whose content is the string
599.IR "anon_inode:[eventpoll]" .
2dad4c59 600.IP
d4529654 601.\"The following was still true as at kernel 2.6.13
afcaf646 602In a multithreaded process, the contents of this directory
c13182ef 603are not available if the main thread has already terminated
afcaf646
MK
604(typically by calling
605.BR pthread_exit (3)).
2dad4c59 606.IP
20c1a631
MK
607Programs that take a filename as a command-line argument,
608but don't take input from standard input if no argument is supplied,
609and programs that write to a file named as a command-line argument,
610but don't send their output to standard output
59a40ed7 611if no argument is supplied, can nevertheless be made to use
20c1a631
MK
612standard input or standard output by using
613.IR /proc/[pid]/fd
614files as command-line arguments.
59a40ed7
MK
615For example, assuming that
616.I \-i
617is the flag designating an input file and
618.I \-o
619is the flag designating an output file:
37d5e699 620.IP
a08ea57c 621.in +4n
37d5e699 622.EX
b43a3b30 623.RB "$" " foobar \-i /proc/self/fd/0 \-o /proc/self/fd/1 ..."
37d5e699 624.EE
a08ea57c 625.in
2dad4c59 626.IP
fea681da
MK
627and you have a working filter.
628.\" The following is not true in my tests (MTK):
629.\" Note that this will not work for
630.\" programs that seek on their files, as the files in the fd directory
631.\" are not seekable.
2dad4c59 632.IP
59a40ed7
MK
633.I /proc/self/fd/N
634is approximately the same as
635.I /dev/fd/N
008f1ecc 636in some UNIX and UNIX-like systems.
c13182ef 637Most Linux MAKEDEV scripts symbolically link
59a40ed7
MK
638.I /dev/fd
639to
640.IR /proc/self/fd ,
641in fact.
2dad4c59 642.IP
59a40ed7
MK
643Most systems provide symbolic links
644.IR /dev/stdin ,
645.IR /dev/stdout ,
646and
647.IR /dev/stderr ,
648which respectively link to the files
649.IR 0 ,
650.IR 1 ,
651and
652.IR 2
653in
654.IR /proc/self/fd .
655Thus the example command above could be written as:
37d5e699 656.PP
59a40ed7 657.in +4n
37d5e699 658.EX
b43a3b30 659.RB "$" " foobar \-i /dev/stdin \-o /dev/stdout ..."
37d5e699 660.EE
59a40ed7 661.in
138a191e
MK
662.IP
663Permission to dereference or read
664.RB ( readlink (2))
665the symbolic links in this directory is governed by a ptrace access mode
666.B PTRACE_MODE_READ_FSCREDS
667check; see
668.BR ptrace (2).
69ab425e 669.TP
7e07d950 670.IR /proc/[pid]/fdinfo/ " (since Linux 2.6.22)"
69ab425e
MK
671This is a subdirectory containing one entry for each file which the
672process has open, named by its file descriptor.
0275956d 673The files in this directory are readable only by the owner of the process.
69ab425e 674The contents of each file can be read to obtain information
0275956d
MK
675about the corresponding file descriptor.
676The content depends on the type of file referred to by the
d9cb0d7d 677corresponding file descriptor.
2dad4c59 678.IP
0275956d 679For regular files and directories, we see something like:
37d5e699 680.IP
69ab425e 681.in +4n
37d5e699 682.EX
69ab425e
MK
683.RB "$" " cat /proc/12015/fdinfo/4"
684pos: 1000
685flags: 01002002
0275956d 686mnt_id: 21
37d5e699 687.EE
69ab425e 688.in
2dad4c59 689.IP
9599cbb3
MK
690The fields are as follows:
691.RS
692.TP
69ab425e 693.I pos
9599cbb3
MK
694This is a decimal number showing the file offset.
695.TP
69ab425e 696.I flags
9599cbb3 697This is an octal number that displays the
69ab425e
MK
698file access mode and file status flags (see
699.BR open (2)).
d7e537ce
MK
700If the close-on-exec file descriptor flag is set, then
701.I flags
702will also include the value
703.BR O_CLOEXEC .
2dad4c59 704.IP
d7e537ce
MK
705Before Linux 3.1,
706.\" commit 1117f72ea0217ba0cc19f05adbbd8b9a397f5ab7
707this field incorrectly displayed the setting of
708.B O_CLOEXEC
709at the time the file was opened,
710rather than the current setting of the close-on-exec flag.
9599cbb3
MK
711.TP
712.I
0275956d 713.I mnt_id
9599cbb3 714This field, present since Linux 3.15,
0275956d
MK
715.\" commit 49d063cb353265c3af701bab215ac438ca7df36d
716is the ID of the mount point containing this file.
717See the description of
718.IR /proc/[pid]/mountinfo .
9599cbb3
MK
719.RE
720.IP
6e7622ee
MK
721For eventfd file descriptors (see
722.BR eventfd (2)),
b6a7fd50
MK
723we see (since Linux 3.8)
724.\" commit cbac5542d48127b546a23d816380a7926eee1c25
725the following fields:
2dad4c59 726.IP
6e7622ee 727.in +4n
37d5e699 728.EX
6e7622ee
MK
729pos: 0
730flags: 02
731mnt_id: 10
732eventfd-count: 40
37d5e699 733.EE
6e7622ee 734.in
2dad4c59 735.IP
6e7622ee
MK
736.I eventfd-count
737is the current value of the eventfd counter, in hexadecimal.
2dad4c59 738.IP
58d375dd
MK
739For epoll file descriptors (see
740.BR epoll (7)),
b6a7fd50
MK
741we see (since Linux 3.8)
742.\" commit 138d22b58696c506799f8de759804083ff9effae
743the following fields:
2dad4c59 744.IP
58d375dd 745.in +4n
37d5e699 746.EX
58d375dd
MK
747pos: 0
748flags: 02
749mnt_id: 10
750tfd: 9 events: 19 data: 74253d2500000009
751tfd: 7 events: 19 data: 74253d2500000007
37d5e699 752.EE
58d375dd 753.in
2dad4c59 754.IP
58d375dd
MK
755Each of the lines beginning
756.I tfd
757describes one of the file descriptors being monitored via
758the epoll file descriptor (see
759.BR epoll_ctl (2)
760for some details).
761The
762.IR tfd
763field is the number of the file descriptor.
764The
765.I events
766field is a hexadecimal mask of the events being monitored for this file
767descriptor.
768The
769.I data
770field is the data value associated with this file descriptor.
2dad4c59 771.IP
f8a14cac
MK
772For signalfd file descriptors (see
773.BR signalfd (2)),
b6a7fd50
MK
774we see (since Linux 3.8)
775.\" commit 138d22b58696c506799f8de759804083ff9effae
776the following fields:
2dad4c59 777.IP
f8a14cac 778.in +4n
37d5e699 779.EX
f8a14cac
MK
780pos: 0
781flags: 02
782mnt_id: 10
783sigmask: 0000000000000006
37d5e699 784.EE
f8a14cac 785.in
2dad4c59 786.IP
f8a14cac
MK
787.I sigmask
788is the hexadecimal mask of signals that are accepted via this
789signalfd file descriptor.
790(In this example, bits 2 and 3 are set, corresponding to the signals
791.B SIGINT
792and
793.BR SIGQUIT ;
794see
795.BR signal (7).)
2dad4c59 796.IP
4e77145c
MK
797For inotify file descriptors (see
798.BR inotify (7)),
799we see (since Linux 3.8)
800the following fields:
2dad4c59 801.IP
4e77145c 802.in +4n
37d5e699 803.EX
4e77145c
MK
804pos: 0
805flags: 00
806mnt_id: 11
807inotify wd:2 ino:7ef82a sdev:800001 mask:800afff ignored_mask:0 fhandle-bytes:8 fhandle-type:1 f_handle:2af87e00220ffd73
808inotify wd:1 ino:192627 sdev:800001 mask:800afff ignored_mask:0 fhandle-bytes:8 fhandle-type:1 f_handle:27261900802dfd73
37d5e699 809.EE
4e77145c 810.in
2dad4c59 811.IP
4e77145c
MK
812Each of the lines beginning with "inotify" displays information about
813one file or directory that is being monitored.
814The fields in this line are as follows:
815.RS
816.TP
817.I wd
818A watch descriptor number (in decimal).
819.TP
820.I ino
821The inode number of the target file (in hexadecimal).
822.TP
823.I sdev
824The ID of the device where the target file resides (in hexadecimal).
825.TP
826.I mask
827The mask of events being monitored for the target file (in hexadecimal).
828.RE
829.IP
830If the kernel was built with exportfs support, the path to the target
831file is exposed as a file handle, via three hexadecimal fields:
832.IR fhandle-bytes ,
833.IR fhandle-type ,
834and
835.IR f_handle .
2dad4c59 836.IP
e2444bcb
MK
837For fanotify file descriptors (see
838.BR fanotify (7)),
839we see (since Linux 3.8)
840the following fields:
2dad4c59 841.IP
e2444bcb 842.in +4n
37d5e699 843.EX
e2444bcb
MK
844pos: 0
845flags: 02
846mnt_id: 11
847fanotify flags:0 event-flags:88002
848fanotify ino:19264f sdev:800001 mflags:0 mask:1 ignored_mask:0 fhandle-bytes:8 fhandle-type:1 f_handle:4f261900a82dfd73
37d5e699 849.EE
e2444bcb 850.in
2dad4c59 851.IP
e2444bcb
MK
852The fourth line displays information defined when the fanotify group
853was created via
854.BR fanotify_init (2):
855.RS
856.TP
857.I flags
858The
859.I flags
860argument given to
861.BR fanotify_init (2)
862(expressed in hexadecimal).
863.TP
864.I event-flags
865The
866.I event_f_flags
867argument given to
868.BR fanotify_init (2)
869(expressed in hexadecimal).
870.RE
871.IP
872Each additional line shown in the file contains information
873about one of the marks in the fanotify group.
874Most of these fields are as for inotify, except:
875.RS
876.TP
877.I mflags
878The flags associated with the mark
879(expressed in hexadecimal).
880.TP
881.I mask
882The events mask for this mark
883(expressed in hexadecimal).
884.TP
885.I ignored_mask
886The mask of events that are ignored for this mark
887(expressed in hexadecimal).
888.RE
889.IP
890For details on these fields, see
891.BR fanotify_mark (2).
0ca2fc4d 892.TP
93401860
MK
893.IR /proc/[pid]/gid_map " (since Linux 3.5)"
894See
895.BR user_namespaces (7).
896.TP
0ca2fc4d 897.IR /proc/[pid]/io " (since kernel 2.6.20)"
68f11066
MK
898.\" commit 7c3ab7381e79dfc7db14a67c6f4f3285664e1ec2
899This file contains I/O statistics for the process, for example:
37d5e699 900.IP
0ca2fc4d 901.in +4n
37d5e699 902.EX
0ca2fc4d
PS
903.RB "#" " cat /proc/3828/io"
904rchar: 323934931
905wchar: 323929600
906syscr: 632687
907syscw: 632675
908read_bytes: 0
909write_bytes: 323932160
910cancelled_write_bytes: 0
37d5e699 911.EE
0ca2fc4d 912.in
2dad4c59 913.IP
0ca2fc4d
PS
914The fields are as follows:
915.RS
68f11066
MK
916.TP
917.IR rchar ": characters read"
0ca2fc4d
PS
918The number of bytes which this task has caused to be read from storage.
919This is simply the sum of bytes which this process passed to
920.BR read (2)
68f11066 921and similar system calls.
11256884 922It includes things such as terminal I/O and
68f11066
MK
923is unaffected by whether or not actual
924physical disk I/O was required (the read might have been satisfied from
0ca2fc4d 925pagecache).
68f11066
MK
926.TP
927.IR wchar ": characters written"
0ca2fc4d
PS
928The number of bytes which this task has caused, or shall cause to be written
929to disk.
930Similar caveats apply here as with
931.IR rchar .
68f11066
MK
932.TP
933.IR syscr ": read syscalls"
934Attempt to count the number of read I/O operations\(emthat is,
935system calls such as
0ca2fc4d
PS
936.BR read (2)
937and
938.BR pread (2).
68f11066
MK
939.TP
940.IR syscw ": write syscalls"
941Attempt to count the number of write I/O operations\(emthat is,
942system calls such as
0ca2fc4d
PS
943.BR write (2)
944and
945.BR pwrite (2).
68f11066
MK
946.TP
947.IR read_bytes ": bytes read"
0ca2fc4d
PS
948Attempt to count the number of bytes which this process really did cause to
949be fetched from the storage layer.
950This is accurate for block-backed filesystems.
68f11066
MK
951.TP
952.IR write_bytes ": bytes written"
0ca2fc4d
PS
953Attempt to count the number of bytes which this process caused to be sent to
954the storage layer.
68f11066 955.TP
0ca2fc4d 956.IR cancelled_write_bytes :
0ca2fc4d
PS
957The big inaccuracy here is truncate.
958If a process writes 1MB to a file and then deletes the file,
959it will in fact perform no writeout.
960But it will have been accounted as having caused 1MB of write.
68f11066 961In other words: this field represents the number of bytes which this process
0ca2fc4d 962caused to not happen, by truncating pagecache.
68f11066 963A task can cause "negative" I/O too.
0ca2fc4d 964If this task truncates some dirty pagecache,
68f11066
MK
965some I/O which another task has been accounted for
966(in its
967.IR write_bytes )
968will not be happening.
969.RE
0ca2fc4d
PS
970.IP
971.IR Note :
68f11066 972In the current implementation, things are a bit racy on 32-bit systems:
0ca2fc4d
PS
973if process A reads process B's
974.I /proc/[pid]/io
68f11066 975while process B is updating one of these 64-bit counters,
0ca2fc4d 976process A could see an intermediate result.
2dad4c59 977.IP
d8e2972a
MK
978Permission to access this file is governed by a ptrace access mode
979.B PTRACE_MODE_READ_FSCREDS
980check; see
981.BR ptrace (2).
f6e17121 982.TP
7e07d950 983.IR /proc/[pid]/limits " (since Linux 2.6.24)"
69ab425e
MK
984This file displays the soft limit, hard limit, and units of measurement
985for each of the process's resource limits (see
986.BR getrlimit (2)).
987Up to and including Linux 2.6.35,
988this file is protected to allow reading only by the real UID of the process.
989Since Linux 2.6.36,
990.\" commit 3036e7b490bf7878c6dae952eec5fb87b1106589
991this file is readable by all users on the system.
df2a8576
MK
992.\" FIXME Describe /proc/[pid]/loginuid
993.\" Added in 2.6.11; updating requires CAP_AUDIT_CONTROL
994.\" CONFIG_AUDITSYSCALL
b4f89985
PE
995.TP
996.IR /proc/[pid]/map_files/ " (since kernel 3.3)
18cdd0ac
MK
997.\" commit 640708a2cff7f81e246243b0073c66e6ece7e53e
998This subdirectory contains entries corresponding to memory-mapped
b4f89985
PE
999files (see
1000.BR mmap (2)).
18cdd0ac
MK
1001Entries are named by memory region start and end
1002address pair (expressed as hexadecimal numbers),
1003and are symbolic links to the mapped files themselves.
1004Here is an example, with the output wrapped and reformatted to fit on an 80-column display:
37d5e699 1005.IP
b4f89985 1006.in +4n
37d5e699 1007.EX
f2aa4dcc 1008.RB "#" " ls -l /proc/self/map_files/"
18cdd0ac 1009lr\-\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:31
9bc87ed0 1010 3252e00000\-3252e20000 \-> /usr/lib64/ld\-2.15.so
b4f89985 1011\&...
37d5e699 1012.EE
b4f89985 1013.in
2dad4c59 1014.IP
b4f89985 1015Although these entries are present for memory regions that were
d6a56978 1016mapped with the
b4f89985 1017.BR MAP_FILE
18cdd0ac 1018flag, the way anonymous shared memory (regions created with the
b4f89985
PE
1019.B MAP_ANON | MAP_SHARED
1020flags)
1021is implemented in Linux
18cdd0ac
MK
1022means that such regions also appear on this directory.
1023Here is an example where the target file is the deleted
1024.I /dev/zero
1025one:
37d5e699 1026.IP
b4f89985 1027.in +4n
37d5e699 1028.EX
18cdd0ac
MK
1029lrw\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:33
1030 7fc075d2f000\-7fc075e6f000 \-> /dev/zero (deleted)
37d5e699 1031.EE
b4f89985 1032.in
2dad4c59 1033.IP
b4f89985
PE
1034This directory appears only if the
1035.B CONFIG_CHECKPOINT_RESTORE
1036kernel configuration option is enabled.
f2aa4dcc
MK
1037Privilege
1038.RB ( CAP_SYS_ADMIN )
1039.\" FIXME
1040.\" This may change. See the mail thread
43d42cc0 1041.\" "[RFC][PATCH v2] procfs: Always expose /proc/<pid>/map_files/ and make it readable"
f2aa4dcc
MK
1042.\" from Jan 2015
1043is required to view the contents of this directory.
fea681da 1044.TP
69119dc7 1045.I /proc/[pid]/maps
fea681da
MK
1046A file containing the currently mapped memory regions and their access
1047permissions.
bbf9f397
MK
1048See
1049.BR mmap (2)
1050for some further information about memory mappings.
2dad4c59 1051.IP
aee2f0bf
MK
1052Permission to access this file is governed by a ptrace access mode
1053.B PTRACE_MODE_READ_FSCREDS
1054check; see
1055.BR ptrace (2).
2dad4c59 1056.IP
dd0c3b96 1057The format of the file is:
c1a022dc
MK
1058.IP
1059.in 4n
1060.EX
21781757 1061.I "address perms offset dev inode pathname"
9bc87ed0
MK
106200400000\-00452000 r-xp 00000000 08:02 173521 /usr/bin/dbus-daemon
106300651000\-00652000 r--p 00051000 08:02 173521 /usr/bin/dbus-daemon
106400652000\-00655000 rw-p 00052000 08:02 173521 /usr/bin/dbus-daemon
106500e03000\-00e24000 rw-p 00000000 00:00 0 [heap]
106600e24000\-011f7000 rw-p 00000000 00:00 0 [heap]
182090db 1067\&...
9bc87ed0
MK
106835b1800000\-35b1820000 r-xp 00000000 08:02 135522 /usr/lib64/ld\-2.15.so
106935b1a1f000\-35b1a20000 r--p 0001f000 08:02 135522 /usr/lib64/ld\-2.15.so
107035b1a20000\-35b1a21000 rw-p 00020000 08:02 135522 /usr/lib64/ld\-2.15.so
107135b1a21000\-35b1a22000 rw-p 00000000 00:00 0
107235b1c00000\-35b1dac000 r-xp 00000000 08:02 135870 /usr/lib64/libc\-2.15.so
107335b1dac000\-35b1fac000 ---p 001ac000 08:02 135870 /usr/lib64/libc\-2.15.so
107435b1fac000\-35b1fb0000 r--p 001ac000 08:02 135870 /usr/lib64/libc\-2.15.so
107535b1fb0000\-35b1fb2000 rw-p 001b0000 08:02 135870 /usr/lib64/libc\-2.15.so
182090db 1076\&...
9bc87ed0 1077f2c6ff8c000\-7f2c7078c000 rw-p 00000000 00:00 0 [stack:986]
182090db 1078\&...
9bc87ed0
MK
10797fffb2c0d000\-7fffb2c2e000 rw-p 00000000 00:00 0 [stack]
10807fffb2d48000\-7fffb2d49000 r-xp 00000000 00:00 0 [vdso]
c1a022dc 1081.EE
21781757 1082.in
c1a022dc 1083.IP
7d2e6d74 1084The
3eb8c588
MK
1085.I address
1086field is the address space in the process that the mapping occupies.
1087The
1088.I perms
1089field is a set of permissions:
2dad4c59 1090.IP
37d5e699
MK
1091.in +4
1092.EX
fea681da
MK
1093r = read
1094w = write
1095x = execute
1096s = shared
1097p = private (copy on write)
37d5e699 1098.EE
fea681da 1099.in
2dad4c59 1100.IP
3eb8c588
MK
1101The
1102.I offset
b844cf04 1103field is the offset into the file/whatever;
3eb8c588
MK
1104.I dev
1105is the device
dd0c3b96 1106(major:minor);
3eb8c588
MK
1107.I inode
1108is the inode on that device.
59a40ed7 11090 indicates that no inode is associated with the memory region,
16e64bae 1110as would be the case with BSS (uninitialized data).
2dad4c59 1111.IP
3eb8c588
MK
1112The
1113.I pathname
1114field will usually be the file that is backing the mapping.
491ea6f1 1115For ELF files,
3eb8c588
MK
1116you can easily coordinate with the
1117.I offset
1118field by looking at the
491ea6f1
MK
1119Offset field in the ELF program headers
1120.RI ( "readelf\ \-l" ).
2dad4c59 1121.IP
491ea6f1 1122There are additional helpful pseudo-paths:
61b0b1f4
MK
1123.RS 12
1124.TP
1125.IR [stack]
16e64bae 1126The initial process's (also known as the main thread's) stack.
61b0b1f4 1127.TP
3eb8c588 1128.IR [stack:<tid>] " (since Linux 3.4)"
a60894c5 1129.\" commit b76437579d1344b612cf1851ae610c636cec7db0
61b0b1f4 1130A thread's stack (where the
3eb8c588 1131.IR <tid>
61b0b1f4 1132is a thread ID).
491ea6f1 1133It corresponds to the
3eb8c588 1134.IR /proc/[pid]/task/[tid]/
37d32c38 1135path.
61b0b1f4 1136.TP
7d2e6d74 1137.IR [vdso]
61b0b1f4 1138The virtual dynamically linked shared object.
c56a0185
MK
1139See
1140.BR vdso (7).
61b0b1f4 1141.TP
7d2e6d74 1142.IR [heap]
61b0b1f4
MK
1143The process's heap.
1144.in
61b0b1f4
MK
1145.RE
1146.IP
3eb8c588
MK
1147If the
1148.I pathname
1149field is blank,
40382e5e
MK
1150this is an anonymous mapping as obtained via
1151.BR mmap (2).
61b0b1f4
MK
1152There is no easy way to coordinate this back to a process's source,
1153short of running it through
491ea6f1
MK
1154.BR gdb (1),
1155.BR strace (1),
1156or similar.
2dad4c59 1157.IP
eb9a0b2f 1158Under Linux 2.0, there is no field giving pathname.
fea681da 1159.TP
69119dc7 1160.I /proc/[pid]/mem
fea681da
MK
1161This file can be used to access the pages of a process's memory through
1162.BR open (2),
1163.BR read (2),
1164and
ccb2bb0d 1165.BR lseek (2).
2dad4c59 1166.IP
aee2f0bf
MK
1167Permission to access this file is governed by a ptrace access mode
1168.B PTRACE_MODE_ATTACH_FSCREDS
1169check; see
1170.BR ptrace (2).
b4e9ee8f 1171.TP
69119dc7 1172.IR /proc/[pid]/mountinfo " (since Linux 2.6.26)"
b4e9ee8f 1173.\" This info adapted from Documentation/filesystems/proc.txt
fb4bdaa1 1174.\" commit 2d4d4864ac08caff5c204a752bd004eed4f08760
ef5b47f6
MK
1175This file contains information about mount points
1176in the process's mount namespace (see
1177.BR mount_namespaces (7)).
fb4bdaa1
MK
1178It supplies various information
1179(e.g., propagation state, root of mount for bind mounts,
1180identifier for each mount and its parent) that is missing from the (older)
1181.IR /proc/[pid]/mounts
1182file, and fixes various other problems with that file
1183(e.g., nonextensibility,
1184failure to distinguish per-mount versus per-superblock options).
2dad4c59 1185.IP
fb4bdaa1 1186The file contains lines of the form:
c1a022dc
MK
1187.IP
1188.in 0n
1189.EX
0f619d1f 119036 35 98:0 /mnt1 /mnt2 rw,noatime master:1 \- ext3 /dev/root rw,errors=continue
b4e9ee8f 1191(1)(2)(3) (4) (5) (6) (7) (8) (9) (10) (11)
c1a022dc
MK
1192.in
1193.EE
b4e9ee8f
MK
1194.IP
1195The numbers in parentheses are labels for the descriptions below:
3bc960c2 1196.RS 7
b4e9ee8f
MK
1197.TP 5
1198(1)
0f619d1f 1199mount ID: a unique ID for the mount (may be reused after
b4e9ee8f
MK
1200.BR umount (2)).
1201.TP
1202(2)
0f619d1f
MK
1203parent ID: the ID of the parent mount
1204(or of self for the top of the mount tree).
b4e9ee8f
MK
1205.TP
1206(3)
0f619d1f 1207major:minor: the value of
b4e9ee8f 1208.I st_dev
0f619d1f 1209for files on this filesystem (see
b4e9ee8f
MK
1210.BR stat (2)).
1211.TP
1212(4)
0f619d1f 1213root: the pathname of the directory in the filesystem
8d857fcb 1214which forms the root of this mount.
b4e9ee8f
MK
1215.TP
1216(5)
ebdc66e2 1217mount point: the pathname of the mount point relative
0f619d1f 1218to the process's root directory.
b4e9ee8f
MK
1219.TP
1220(6)
1221mount options: per-mount options.
1222.TP
1223(7)
0f619d1f 1224optional fields: zero or more fields of the form "tag[:value]"; see below.
b4e9ee8f
MK
1225.TP
1226(8)
0f619d1f 1227separator: the end of the optional fields is marked by a single hyphen.
b4e9ee8f
MK
1228.TP
1229(9)
0f619d1f 1230filesystem type: the filesystem type in the form "type[.subtype]".
b4e9ee8f
MK
1231.TP
1232(10)
9ee4a2b6 1233mount source: filesystem-specific information or "none".
b4e9ee8f
MK
1234.TP
1235(11)
68d86eac 1236super options: per-superblock options.
b4e9ee8f
MK
1237.RE
1238.IP
966b5839
MK
1239Currently, the possible optional fields are
1240.IR shared ,
1241.IR master ,
1242.IR propagate_from ,
1243and
1244.IR unbindable .
1245See
1246.BR mount_namespaces (7)
1247for a description of these fields.
0f619d1f
MK
1248Parsers should ignore all unrecognized optional fields.
1249.IP
b4e9ee8f
MK
1250For more information on mount propagation see:
1251.I Documentation/filesystems/sharedsubtree.txt
66a9882e 1252in the Linux kernel source tree.
b4e9ee8f 1253.TP
cea61382 1254.IR /proc/[pid]/mounts " (since Linux 2.4.19)"
226cb3a8 1255This file lists all the filesystems currently mounted in the
ef5b47f6
MK
1256process's mount namespace (see
1257.BR mount_namespaces (7)).
cea61382
MK
1258The format of this file is documented in
1259.BR fstab (5).
2dad4c59 1260.IP
cea61382
MK
1261Since kernel version 2.6.15, this file is pollable:
1262after opening the file for reading, a change in this file
9ee4a2b6 1263(i.e., a filesystem mount or unmount) causes
cea61382 1264.BR select (2)
226cb3a8 1265to mark the file descriptor as having an exceptional condition, and
cea61382
MK
1266.BR poll (2)
1267and
1268.BR epoll_wait (2)
226cb3a8
MK
1269mark the file as having a priority event
1270.RB ( POLLPRI ).
1271(Before Linux 2.6.30,
1272a change in this file was indicated by the file descriptor
1273being marked as readable for
1274.BR select (2),
1275and being marked as having an error condition for
1276.BR poll (2)
1277and
1278.BR epoll_wait (2).)
cea61382 1279.TP
69119dc7 1280.IR /proc/[pid]/mountstats " (since Linux 2.6.17)"
783a6233 1281This file exports information (statistics, configuration information)
ef5b47f6
MK
1282about the mount points in the process's mount namespace (see
1283.BR mount_namespaces (7)).
b4e9ee8f 1284Lines in this file have the form:
37d5e699
MK
1285.IP
1286.in +4n
1287.EX
b4e9ee8f
MK
1288device /dev/sda7 mounted on /home with fstype ext3 [statistics]
1289( 1 ) ( 2 ) (3 ) (4)
37d5e699
MK
1290.EE
1291.in
b4e9ee8f
MK
1292.IP
1293The fields in each line are:
3bc960c2 1294.RS 7
b4e9ee8f
MK
1295.TP 5
1296(1)
1297The name of the mounted device
1298(or "nodevice" if there is no corresponding device).
1299.TP
1300(2)
9ee4a2b6 1301The mount point within the filesystem tree.
b4e9ee8f
MK
1302.TP
1303(3)
9ee4a2b6 1304The filesystem type.
b4e9ee8f
MK
1305.TP
1306(4)
1307Optional statistics and configuration information.
9ee4a2b6 1308Currently (as at Linux 2.6.26), only NFS filesystems export
b4e9ee8f
MK
1309information via this field.
1310.RE
1311.IP
90878f7c 1312This file is readable only by the owner of the process.
b4e9ee8f 1313.TP
2d3fb75b 1314.IR /proc/[pid]/net " (since Linux 2.6.25)"
9fb88bc8
MK
1315See the description of
1316.IR /proc/net .
1317.TP
b4a185e5 1318.IR /proc/[pid]/ns/ " (since Linux 3.0)"
2c4201f0 1319.\" See commit 6b4e306aa3dc94a0545eb9279475b1ab6209a31f
b4a185e5
EB
1320This is a subdirectory containing one entry for each namespace that
1321supports being manipulated by
80e63655 1322.BR setns (2).
cf8bfe6d
MK
1323For more information, see
1324.BR namespaces (7).
b4a185e5 1325.TP
69119dc7 1326.IR /proc/[pid]/numa_maps " (since Linux 2.6.14)"
610f75cc
MK
1327See
1328.BR numa (7).
7388733a 1329.TP
69119dc7 1330.IR /proc/[pid]/oom_adj " (since Linux 2.6.11)"
b4e9ee8f 1331This file can be used to adjust the score used to select which process
0425de01 1332should be killed in an out-of-memory (OOM) situation.
b4e9ee8f
MK
1333The kernel uses this value for a bit-shift operation of the process's
1334.IR oom_score
1335value:
5b8dbfd4
MK
1336valid values are in the range \-16 to +15,
1337plus the special value \-17,
b4e9ee8f
MK
1338which disables OOM-killing altogether for this process.
1339A positive score increases the likelihood of this
1340process being killed by the OOM-killer;
1341a negative score decreases the likelihood.
de8e9cc1 1342.IP
b4e9ee8f
MK
1343The default value for this file is 0;
1344a new process inherits its parent's
1345.I oom_adj
1346setting.
1347A process must be privileged
1348.RB ( CAP_SYS_RESOURCE )
1349to update this file.
f2c8b197
MK
1350.IP
1351Since Linux 2.6.36, use of this file is deprecated in favor of
1352.IR /proc/[pid]/oom_score_adj .
b4e9ee8f 1353.TP
69119dc7 1354.IR /proc/[pid]/oom_score " (since Linux 2.6.11)"
b4e9ee8f
MK
1355.\" See mm/oom_kill.c::badness() in the 2.6.25 sources
1356This file displays the current score that the kernel gives to
1357this process for the purpose of selecting a process
1358for the OOM-killer.
1359A higher score means that the process is more likely to be
1360selected by the OOM-killer.
1361The basis for this score is the amount of memory used by the process,
1362with increases (+) or decreases (\-) for factors including:
1363.\" See mm/oom_kill.c::badness() in the 2.6.25 sources
1364.RS
1365.IP * 2
1366whether the process creates a lot of children using
1367.BR fork (2)
1368(+);
1369.IP *
1370whether the process has been running a long time,
1371or has used a lot of CPU time (\-);
1372.IP *
1373whether the process has a low nice value (i.e., > 0) (+);
1374.IP *
1375whether the process is privileged (\-); and
1376.\" More precisely, if it has CAP_SYS_ADMIN or CAP_SYS_RESOURCE
1377.IP *
1378whether the process is making direct hardware access (\-).
1379.\" More precisely, if it has CAP_SYS_RAWIO
1380.RE
1381.IP
1382The
1383.I oom_score
f2c8b197
MK
1384also reflects the adjustment specified by the
1385.I oom_score_adj
1386or
b4e9ee8f
MK
1387.I oom_adj
1388setting for the process.
f2c8b197
MK
1389.TP
1390.IR /proc/[pid]/oom_score_adj " (since Linux 2.6.36)"
1391.\" Text taken from 3.7 Documentation/filesystems/proc.txt
1392This file can be used to adjust the badness heuristic used to select which
1393process gets killed in out-of-memory conditions.
2dad4c59 1394.IP
f2c8b197
MK
1395The badness heuristic assigns a value to each candidate task ranging from 0
1396(never kill) to 1000 (always kill) to determine which process is targeted.
1397The units are roughly a proportion along that range of
1398allowed memory the process may allocate from,
1399based on an estimation of its current memory and swap use.
1400For example, if a task is using all allowed memory,
1401its badness score will be 1000.
1402If it is using half of its allowed memory, its score will be 500.
2dad4c59 1403.IP
f2c8b197
MK
1404There is an additional factor included in the badness score: root
1405processes are given 3% extra memory over other tasks.
2dad4c59 1406.IP
f2c8b197 1407The amount of "allowed" memory depends on the context
0633f951 1408in which the OOM-killer was called.
f2c8b197
MK
1409If it is due to the memory assigned to the allocating task's cpuset
1410being exhausted,
1411the allowed memory represents the set of mems assigned to that
1412cpuset (see
1413.BR cpuset (7)).
1414If it is due to a mempolicy's node(s) being exhausted,
1415the allowed memory represents the set of mempolicy nodes.
1416If it is due to a memory limit (or swap limit) being reached,
1417the allowed memory is that configured limit.
1418Finally, if it is due to the entire system being out of memory, the
1419allowed memory represents all allocatable resources.
2dad4c59 1420.IP
f2c8b197 1421The value of
0633f951 1422.I oom_score_adj
f2c8b197
MK
1423is added to the badness score before it
1424is used to determine which task to kill.
1425Acceptable values range from \-1000
1426(OOM_SCORE_ADJ_MIN) to +1000 (OOM_SCORE_ADJ_MAX).
0633f951 1427This allows user space to control the preference for OOM-killing,
f2c8b197 1428ranging from always preferring a certain
f082ada4 1429task or completely disabling it from OOM killing.
f2c8b197 1430The lowest possible value, \-1000, is
0633f951 1431equivalent to disabling OOM-killing entirely for that task,
f2c8b197 1432since it will always report a badness score of 0.
2dad4c59 1433.IP
f2c8b197
MK
1434Consequently, it is very simple for user space to define
1435the amount of memory to consider for each task.
48ac01a7 1436Setting an
f2c8b197
MK
1437.I oom_score_adj
1438value of +500, for example,
1439is roughly equivalent to allowing the remainder of tasks sharing the
1440same system, cpuset, mempolicy, or memory controller resources
1441to use at least 50% more memory.
1442A value of \-500, on the other hand, would be roughly
1443equivalent to discounting 50% of the task's
1444allowed memory from being considered as scoring against the task.
2dad4c59 1445.IP
0633f951 1446For backward compatibility with previous kernels,
f2c8b197
MK
1447.I /proc/[pid]/oom_adj
1448can still be used to tune the badness score.
1449Its value is
9f1b9726 1450scaled linearly with
f2c8b197 1451.IR oom_score_adj .
2dad4c59 1452.IP
f2c8b197
MK
1453Writing to
1454.IR /proc/[pid]/oom_score_adj
1455or
1456.IR /proc/[pid]/oom_adj
1457will change the other with its scaled value.
b0aa1e51
MK
1458.TP
1459.IR /proc/[pid]/pagemap " (since Linux 2.6.25)"
1460This file shows the mapping of each of the process's virtual pages
1461into physical page frames or swap area.
1462It contains one 64-bit value for each virtual page,
1463with the bits set as follows:
1464.RS 12
1465.TP
146663
1467If set, the page is present in RAM.
1468.TP
146962
1470If set, the page is in swap space
1471.TP
147261 (since Linux 3.5)
1473The page is a file-mapped page or a shared anonymous page.
1474.TP
9bc87ed0 147560\(en56 (since Linux 3.11)
b0aa1e51
MK
1476Zero
1477.\" Not quite true; see commit 541c237c0923f567c9c4cabb8a81635baadc713f
1478.TP
b5301584 147955 (since Linux 3.11)
b0aa1e51
MK
1480PTE is soft-dirty
1481(see the kernel source file
1482.IR Documentation/vm/soft-dirty.txt ).
1483.TP
9bc87ed0 148454\(en0
b0aa1e51
MK
1485If the page is present in RAM (bit 63), then these bits
1486provide the page frame number, which can be used to index
1487.IR /proc/kpageflags
1488and
1489.IR /proc/kpagecount .
1490If the page is present in swap (bit 62),
9bc87ed0 1491then bits 4\(en0 give the swap type, and bits 54\(en5 encode the swap offset.
b0aa1e51
MK
1492.RE
1493.IP
9bc87ed0 1494Before Linux 3.11, bits 60\(en55 were
b0aa1e51
MK
1495used to encode the base-2 log of the page size.
1496.IP
1497To employ
1498.IR /proc/[pid]/pagemap
1499efficiently, use
1500.IR /proc/[pid]/maps
1501to determine which areas of memory are actually mapped and seek
1502to skip over unmapped regions.
1503.IP
1504The
1505.IR /proc/[pid]/pagemap
1506file is present only if the
1507.B CONFIG_PROC_PAGE_MONITOR
1508kernel configuration option is enabled.
2dad4c59 1509.IP
aee2f0bf
MK
1510Permission to access this file is governed by a ptrace access mode
1511.B PTRACE_MODE_READ_FSCREDS
1512check; see
1513.BR ptrace (2).
7c2905d1
MK
1514.TP
1515.IR /proc/[pid]/personality " (since Linux 2.6.28)"
1516.\" commit 478307230810d7e2a753ed220db9066dfdf88718
1517This read-only file exposes the process's execution domain, as set by
1518.BR personality (2).
1519The value is displayed in hexadecimal notation.
2dad4c59 1520.IP
4834ae91
MK
1521Permission to access this file is governed by a ptrace access mode
1522.B PTRACE_MODE_ATTACH_FSCREDS
1523check; see
1524.BR ptrace (2).
fea681da 1525.TP
69119dc7 1526.I /proc/[pid]/root
008f1ecc 1527UNIX and Linux support the idea of a per-process root of the
9ee4a2b6 1528filesystem, set by the
fea681da 1529.BR chroot (2)
c13182ef
MK
1530system call.
1531This file is a symbolic link that points to the process's
14d70713
MK
1532root directory, and behaves in the same way as
1533.IR exe ,
1534and
1535.IR fd/* .
2dad4c59 1536.IP
948f0ff4 1537Note however that this file is not merely a symbolic link.
2b312241
MF
1538It provides the same view of the filesystem (including namespaces and the
1539set of per-process mounts) as the process itself.
a77efd58
MK
1540An example illustrates this point.
1541In one terminal, we start a shell in new user and mount namespaces,
1542and in that shell we create some new mount points:
2dad4c59 1543.IP
a77efd58 1544.in +4n
37d5e699 1545.EX
a77efd58
MK
1546$ \fBPS1='sh1# ' unshare \-Urnm\fP
1547sh1# \fBmount \-t tmpfs tmpfs /etc\fP # Mount empty tmpfs at /etc
1548sh1# \fBmount \-\-bind /usr /dev\fP # Mount /usr at /dev
89f92905 1549sh1# \fBecho $$\fP
a77efd58 155027123
37d5e699 1551.EE
a77efd58 1552.in
2dad4c59 1553.IP
a77efd58
MK
1554In a second terminal window, in the initial mount namespace,
1555we look at the contents of the corresponding mounts in
1556the initial and new namespaces:
2dad4c59 1557.IP
a77efd58 1558.in +4n
37d5e699 1559.EX
89f92905 1560$ \fBPS1='sh2# ' sudo sh\fP
a77efd58
MK
1561sh2# \fBls /etc | wc \-l\fP # In initial NS
1562309
1563sh2# \fBls /proc/27123/root/etc | wc \-l\fP # /etc in other NS
15640 # The empty tmpfs dir
1565sh2# \fBls /dev | wc \-l\fP # In initial NS
1566205
1567sh2# \fBls /proc/27123/root/dev | wc \-l\fP # /dev in other NS
156811 # Actually bind
1569 # mounted to /usr
1570sh2# \fBls /usr | wc \-l\fP # /usr in initial NS
157111
37d5e699 1572.EE
a77efd58 1573.in
2dad4c59 1574.IP
afcaf646 1575.\" The following was still true as at kernel 2.6.13
3ed7270e
MK
1576In a multithreaded process, the contents of the
1577.I /proc/[pid]/root
1578symbolic link are not available if the main thread has already terminated
afcaf646
MK
1579(typically by calling
1580.BR pthread_exit (3)).
2dad4c59 1581.IP
b902fe18
MK
1582Permission to dereference or read
1583.RB ( readlink (2))
1584this symbolic link is governed by a ptrace access mode
1585.B PTRACE_MODE_READ_FSCREDS
1586check; see
1587.BR ptrace (2).
f34f0182 1588.\" FIXME Describe /proc/[pid]/projid_map
43d42cc0
MK
1589.\" Added in 3.7
1590.\" commit f76d207a66c3a53defea67e7d36c3eb1b7d6d61d
15869389
MK
1591.TP
1592.IR /proc/[pid]/seccomp " (Linux 2.6.12 to 2.6.22)"
1593This file can be used to read and change the process's
1594secure computing (seccomp) mode setting.
1595It contains the value 0 if the process is not in seccomp mode,
1596and 1 if the process is in strict seccomp mode (see
1597.BR seccomp (2)).
1598Writing 1 to this file places the process irreversibly in strict seccomp mode.
1599(Further attempts to write to the file fail with the
1600.B EPERM
1601error.)
2dad4c59 1602.IP
15869389
MK
1603In Linux 2.6.23,
1604this file went away, to be replaced by the
1605.BR prctl (2)
1606.BR PR_GET_SECCOMP
1607and
1608.BR PR_SET_SECCOMP
1609operations (and later by
1610.BR seccomp (2)
1611and the
1612.I Seccomp
1613field in
1614.IR /proc/[pid]/status ).
69119dc7 1615.\" FIXME Describe /proc/[pid]/sessionid
b3fb99e8 1616.\" commit 1e0bd7550ea9cf474b1ad4c6ff5729a507f75fdc
b4e9ee8f 1617.\" CONFIG_AUDITSYSCALL
43d42cc0 1618.\" Added in 2.6.25; read-only; only readable by real UID
bea08fec 1619.\"
69119dc7 1620.\" FIXME Describe /proc/[pid]/sched
b4e9ee8f
MK
1621.\" Added in 2.6.23
1622.\" CONFIG_SCHED_DEBUG, and additional fields if CONFIG_SCHEDSTATS
1623.\" Displays various scheduling parameters
1624.\" This file can be written, to reset stats
ef4f4031 1625.\" The set of fields exposed by this file have changed
b3fb99e8
MK
1626.\" significantly over time.
1627.\" commit 43ae34cb4cd650d1eb4460a8253a8e747ba052ac
1628.\"
69119dc7
MK
1629.\" FIXME Describe /proc/[pid]/schedstats and
1630.\" /proc/[pid]/task/[tid]/schedstats
b4e9ee8f
MK
1631.\" Added in 2.6.9
1632.\" CONFIG_SCHEDSTATS
fea681da 1633.TP
5c92b1b7 1634.IR /proc/[pid]/setgroups " (since Linux 3.19)"
ab28dba9
MK
1635See
1636.BR user_namespaces (7).
d520465b 1637.TP
69119dc7 1638.IR /proc/[pid]/smaps " (since Linux 2.6.14)"
b07b19c4 1639This file shows memory consumption for each of the process's mappings.
859503c3
MK
1640(The
1641.BR pmap (1)
1642command displays similar information,
1643in a form that may be easier for parsing.)
1f0add28 1644For each mapping there is a series of lines such as the following:
37d5e699 1645.IP
a08ea57c 1646.in +4n
37d5e699 1647.EX
9bc87ed0 164800400000\-0048a000 r\-xp 00000000 fd:03 960637 /bin/bash
95fe794d
PG
1649Size: 552 kB
1650Rss: 460 kB
1651Pss: 100 kB
1652Shared_Clean: 452 kB
1653Shared_Dirty: 0 kB
1654Private_Clean: 8 kB
1655Private_Dirty: 0 kB
1656Referenced: 460 kB
1657Anonymous: 0 kB
1658AnonHugePages: 0 kB
4ad958e1
MK
1659ShmemHugePages: 0 kB
1660ShmemPmdMapped: 0 kB
95fe794d
PG
1661Swap: 0 kB
1662KernelPageSize: 4 kB
1663MMUPageSize: 4 kB
6861f8f0
MK
1664KernelPageSize: 4 kB
1665MMUPageSize: 4 kB
95fe794d 1666Locked: 0 kB
2f057281 1667ProtectionKey: 0
eb848708 1668VmFlags: rd ex mr mw me dw
37d5e699 1669.EE
a08ea57c 1670.in
2d3fb75b 1671.IP
b07b19c4
MK
1672The first of these lines shows the same information as is displayed
1673for the mapping in
69119dc7 1674.IR /proc/[pid]/maps .
c3d59262 1675The following lines show the size of the mapping,
95fe794d 1676the amount of the mapping that is currently resident in RAM ("Rss"),
a5a3e91b 1677the process's proportional share of this mapping ("Pss"),
1f0add28 1678the number of clean and dirty shared pages in the mapping,
c7ce200d 1679and the number of clean and dirty private pages in the mapping.
95fe794d 1680"Referenced" indicates the amount of memory currently marked as
1f0add28
MK
1681referenced or accessed.
1682"Anonymous" shows the amount of memory
1683that does not belong to any file.
1684"Swap" shows how much
95fe794d 1685would-be-anonymous memory is also used, but out on swap.
2dad4c59 1686.IP
6861f8f0
MK
1687The "KernelPageSize" line (available since Linux 2.6.29)
1688is the page size used by the kernel to back the virtual memory area.
1f0add28
MK
1689This matches the size used by the MMU in the majority of cases.
1690However, one counter-example occurs on PPC64 kernels
6861f8f0 1691whereby a kernel using 64kB as a base page size may still use 4kB
1f0add28 1692pages for the MMU on older processors.
6861f8f0
MK
1693To distinguish the two attributes, the "MMUPageSize" line
1694(also available since Linux 2.6.29)
1695reports the page size used by the MMU.
2dad4c59 1696.IP
95fe794d
PG
1697The "Locked" indicates whether the mapping is locked in memory
1698or not.
2dad4c59 1699.IP
9b780b06
MK
1700The "ProtectionKey" line (available since Linux 4.9, on x86 only)
1701contains the memory protection key (see
1702.BR pkeys (7))
1703associated with the virtual memory area.
1704This entry is present only if the kernel was built with the
1705.B CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
1706configuration option.
2dad4c59 1707.IP
eb848708
MK
1708The "VmFlags" line (available since Linux 3.8)
1709represents the kernel flags associated with the virtual memory area,
1710encoded using the following two-letter codes:
2dad4c59 1711.IP
95fe794d 1712 rd - readable
1f0add28 1713 wr - writable
95fe794d
PG
1714 ex - executable
1715 sh - shared
1716 mr - may read
1717 mw - may write
1718 me - may execute
1719 ms - may share
723e333c 1720 gd - stack segment grows down
95fe794d
PG
1721 pf - pure PFN range
1722 dw - disabled write to the mapped file
1723 lo - pages are locked in memory
1724 io - memory mapped I/O area
1725 sr - sequential read advise provided
1726 rr - random read advise provided
1727 dc - do not copy area on fork
1728 de - do not expand area on remapping
1729 ac - area is accountable
1730 nr - swap space is not reserved for the area
1731 ht - area uses huge tlb pages
1732 nl - non-linear mapping
1733 ar - architecture specific flag
1734 dd - do not include area into core dump
1735 sd - soft-dirty flag
1736 mm - mixed map area
1737 hg - huge page advise flag
1738 nh - no-huge page advise flag
b5408a0f 1739 mg - mergeable advise flag
2dad4c59 1740.IP
be729d66
DH
1741"ProtectionKey" field contains the memory protection key (see
1742.BR pkeys (5))
1743associated with the virtual memory area.
f12f1b9b 1744Present only if the kernel was built with the
be729d66
DH
1745.B CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
1746configuration option. (since Linux 4.6)
2dad4c59 1747.IP
e618d945
MK
1748The
1749.IR /proc/[pid]/smaps
1750file is present only if the
1751.B CONFIG_PROC_PAGE_MONITOR
1752kernel configuration option is enabled.
b07b19c4 1753.TP
67aac6fb
MK
1754.IR /proc/[pid]/stack " (since Linux 2.6.29)"
1755.\" 2ec220e27f5040aec1e88901c1b6ea3d135787ad
1756This file provides a symbolic trace of the function calls in this
1757process's kernel stack.
1758This file is provided only if the kernel was built with the
1759.B CONFIG_STACKTRACE
1760configuration option.
2dad4c59 1761.IP
4834ae91
MK
1762Permission to access this file is governed by a ptrace access mode
1763.B PTRACE_MODE_ATTACH_FSCREDS
1764check; see
1765.BR ptrace (2).
67aac6fb 1766.TP
69119dc7 1767.I /proc/[pid]/stat
c13182ef
MK
1768Status information about the process.
1769This is used by
1770.BR ps (1).
082bf5b8
MK
1771It is defined in the kernel source file
1772.IR fs/proc/array.c "."
2dad4c59 1773.IP
fea681da
MK
1774The fields, in order, with their proper
1775.BR scanf (3)
b02b4b74
MK
1776format specifiers, are listed below.
1777Whether or not certain of these fields display valid information is governed by
1778a ptrace access mode
1779.BR PTRACE_MODE_READ_FSCREDS "\ |\ " PTRACE_MODE_NOAUDIT
1780check (refer to
1781.BR ptrace (2)).
1782If the check denies access, then the field value is displayed as 0.
1783The affected fields are indicated with the marking [PT].
2dad4c59 1784.IP
fea681da 1785.RS
62e4a418
MK
1786.TP 10
1787(1) \fIpid\fP \ %d
1788.br
1789The process ID.
fea681da 1790.TP
62e4a418
MK
1791(2) \fIcomm\fP \ %s
1792The filename of the executable, in parentheses.
c13182ef 1793This is visible whether or not the executable is swapped out.
fea681da 1794.TP
62e4a418 1795(3) \fIstate\fP \ %c
31293f37
MK
1796One of the following characters, indicating process state:
1797.RS
1798.IP R 3
1799Running
1800.IP S
1801Sleeping in an interruptible wait
1802.IP D
1803Waiting in uninterruptible
1804disk sleep
1805.IP Z
1806Zombie
1807.IP T
1808Stopped (on a signal) or (before Linux 2.6.33) trace stopped
1809.IP t
1810.\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
1811Tracing stop (Linux 2.6.33 onward)
1812.IP W
1813Paging (only before Linux 2.6.0)
1814.IP X
ef4f4031 1815Dead (from Linux 2.6.0 onward)
31293f37
MK
1816.IP x
1817.\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
1818Dead (Linux 2.6.33 to
1819.\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
18203.13 only)
1821.IP K
1822.\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
1823Wakekill (Linux 2.6.33 to
1824.\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
18253.13 only)
1826.IP W
1827.\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
1828Waking (Linux 2.6.33 to
1829.\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
18303.13 only)
1831.IP P
1832.\" commit f2530dc71cf0822f90bb63ea4600caaef33a66bb
1833Parked (Linux 3.9 to
1834.\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
18353.13 only)
1836.RE
fea681da 1837.TP
62e4a418 1838(4) \fIppid\fP \ %d
e0fdc57c 1839The PID of the parent of this process.
fea681da 1840.TP
62e4a418
MK
1841(5) \fIpgrp\fP \ %d
1842The process group ID of the process.
fea681da 1843.TP
62e4a418
MK
1844(6) \fIsession\fP \ %d
1845The session ID of the process.
fea681da 1846.TP
62e4a418
MK
1847(7) \fItty_nr\fP \ %d
1848The controlling terminal of the process.
59a40ed7
MK
1849(The minor device number is contained in the combination of bits
185031 to 20 and 7 to 0;
b97deb97 1851the major device number is in bits 15 to 8.)
fea681da 1852.TP
62e4a418 1853(8) \fItpgid\fP \ %d
fea681da 1854.\" This field and following, up to and including wchan added 0.99.1
62e4a418 1855The ID of the foreground process group of the controlling
59a40ed7 1856terminal of the process.
fea681da 1857.TP
62e4a418
MK
1858(9) \fIflags\fP \ %u
1859The kernel flags word of the process.
c13182ef 1860For bit meanings,
66a9882e 1861see the PF_* defines in the Linux kernel source file
00702acc 1862.IR include/linux/sched.h .
fea681da 1863Details depend on the kernel version.
2dad4c59 1864.IP
62e4a418 1865The format for this field was %lu before Linux 2.6.
fea681da 1866.TP
ee566744 1867(10) \fIminflt\fP \ %lu
62e4a418 1868The number of minor faults the process has made which have not
fea681da
MK
1869required loading a memory page from disk.
1870.TP
62e4a418
MK
1871(11) \fIcminflt\fP \ %lu
1872The number of minor faults that the process's
fea681da
MK
1873waited-for children have made.
1874.TP
62e4a418
MK
1875(12) \fImajflt\fP \ %lu
1876The number of major faults the process has made which have
fea681da
MK
1877required loading a memory page from disk.
1878.TP
62e4a418
MK
1879(13) \fIcmajflt\fP \ %lu
1880The number of major faults that the process's
fea681da
MK
1881waited-for children have made.
1882.TP
62e4a418
MK
1883(14) \fIutime\fP \ %lu
1884Amount of time that this process has been scheduled in user mode,
7a017e24 1885measured in clock ticks (divide by
67914165 1886.IR sysconf(_SC_CLK_TCK) ).
a1c9dc59
MK
1887This includes guest time, \fIguest_time\fP
1888(time spent running a virtual CPU, see below),
1889so that applications that are not aware of the guest time field
1890do not lose that time from their calculations.
fea681da 1891.TP
62e4a418
MK
1892(15) \fIstime\fP \ %lu
1893Amount of time that this process has been scheduled in kernel mode,
7a017e24 1894measured in clock ticks (divide by
67914165 1895.IR sysconf(_SC_CLK_TCK) ).
fea681da 1896.TP
62e4a418
MK
1897(16) \fIcutime\fP \ %ld
1898Amount of time that this process's
7a017e24
MK
1899waited-for children have been scheduled in user mode,
1900measured in clock ticks (divide by
67914165 1901.IR sysconf(_SC_CLK_TCK) ).
c13182ef 1902(See also
fea681da 1903.BR times (2).)
a1c9dc59
MK
1904This includes guest time, \fIcguest_time\fP
1905(time spent running a virtual CPU, see below).
fea681da 1906.TP
62e4a418
MK
1907(17) \fIcstime\fP \ %ld
1908Amount of time that this process's
7a017e24
MK
1909waited-for children have been scheduled in kernel mode,
1910measured in clock ticks (divide by
67914165 1911.IR sysconf(_SC_CLK_TCK) ).
fea681da 1912.TP
62e4a418
MK
1913(18) \fIpriority\fP \ %ld
1914(Explanation for Linux 2.6)
59a40ed7
MK
1915For processes running a real-time scheduling policy
1916.RI ( policy
1917below; see
1918.BR sched_setscheduler (2)),
1919this is the negated scheduling priority, minus one;
1920that is, a number in the range \-2 to \-100,
1921corresponding to real-time priorities 1 to 99.
1922For processes running under a non-real-time scheduling policy,
1923this is the raw nice value
1924.RB ( setpriority (2))
1925as represented in the kernel.
1926The kernel stores nice values as numbers
1927in the range 0 (high) to 39 (low),
1928corresponding to the user-visible nice range of \-20 to 19.
2dad4c59 1929.IP
59a40ed7
MK
1930Before Linux 2.6, this was a scaled value based on
1931the scheduler weighting given to this process.
1932.\" And back in kernel 1.2 days things were different again.
fea681da 1933.TP
62e4a418
MK
1934(19) \fInice\fP \ %ld
1935The nice value (see
59a40ed7
MK
1936.BR setpriority (2)),
1937a value in the range 19 (low priority) to \-20 (high priority).
1938.\" Back in kernel 1.2 days things were different.
fea681da
MK
1939.\" .TP
1940.\" \fIcounter\fP %ld
1941.\" The current maximum size in jiffies of the process's next timeslice,
1942.\" or what is currently left of its current timeslice, if it is the
1943.\" currently running process.
1944.\" .TP
1945.\" \fItimeout\fP %u
1946.\" The time in jiffies of the process's next timeout.
0e94f77b 1947.\" timeout was removed sometime around 2.1/2.2
aa610245 1948.TP
62e4a418
MK
1949(20) \fInum_threads\fP \ %ld
1950Number of threads in this process (since Linux 2.6).
bb83d1b9 1951Before kernel 2.6, this field was hard coded to 0 as a placeholder
0e94f77b 1952for an earlier removed field.
fea681da 1953.TP
62e4a418
MK
1954(21) \fIitrealvalue\fP \ %ld
1955The time in jiffies before the next
8bd58774
MK
1956.B SIGALRM
1957is sent to the process due to an interval timer.
0e94f77b
MK
1958Since kernel 2.6.17, this field is no longer maintained,
1959and is hard coded as 0.
fea681da 1960.TP
62e4a418
MK
1961(22) \fIstarttime\fP \ %llu
1962The time the process started after system boot.
055024ed
MK
1963In kernels before Linux 2.6, this value was expressed in jiffies.
1964Since Linux 2.6, the value is expressed in clock ticks (divide by
1965.IR sysconf(_SC_CLK_TCK) ).
2dad4c59 1966.IP
62e4a418 1967The format for this field was %lu before Linux 2.6.
fea681da 1968.TP
62e4a418
MK
1969(23) \fIvsize\fP \ %lu
1970Virtual memory size in bytes.
fea681da 1971.TP
62e4a418
MK
1972(24) \fIrss\fP \ %ld
1973Resident Set Size: number of pages the process has in real memory.
c13182ef 1974This is just the pages which
5fab2e7c 1975count toward text, data, or stack space.
c13182ef 1976This does not include pages
fea681da
MK
1977which have not been demand-loaded in, or which are swapped out.
1978.TP
62e4a418
MK
1979(25) \fIrsslim\fP \ %lu
1980Current soft limit in bytes on the rss of the process;
59a40ed7
MK
1981see the description of
1982.B RLIMIT_RSS
1983in
2b5407af 1984.BR getrlimit (2).
fea681da 1985.TP
b02b4b74 1986(26) \fIstartcode\fP \ %lu \ [PT]
62e4a418 1987The address above which program text can run.
fea681da 1988.TP
b02b4b74 1989(27) \fIendcode\fP \ %lu \ [PT]
62e4a418 1990The address below which program text can run.
fea681da 1991.TP
b02b4b74 1992(28) \fIstartstack\fP \ %lu \ [PT]
62e4a418 1993The address of the start (i.e., bottom) of the stack.
fea681da 1994.TP
b02b4b74 1995(29) \fIkstkesp\fP \ %lu \ [PT]
62e4a418 1996The current value of ESP (stack pointer), as found in the
fea681da
MK
1997kernel stack page for the process.
1998.TP
b02b4b74 1999(30) \fIkstkeip\fP \ %lu \ [PT]
62e4a418 2000The current EIP (instruction pointer).
fea681da 2001.TP
62e4a418
MK
2002(31) \fIsignal\fP \ %lu
2003The bitmap of pending signals, displayed as a decimal number.
59a40ed7 2004Obsolete, because it does not provide information on real-time signals; use
69119dc7 2005.I /proc/[pid]/status
59a40ed7 2006instead.
fea681da 2007.TP
62e4a418
MK
2008(32) \fIblocked\fP \ %lu
2009The bitmap of blocked signals, displayed as a decimal number.
59a40ed7 2010Obsolete, because it does not provide information on real-time signals; use
69119dc7 2011.I /proc/[pid]/status
59a40ed7 2012instead.
fea681da 2013.TP
62e4a418
MK
2014(33) \fIsigignore\fP \ %lu
2015The bitmap of ignored signals, displayed as a decimal number.
59a40ed7 2016Obsolete, because it does not provide information on real-time signals; use
69119dc7 2017.I /proc/[pid]/status
59a40ed7 2018instead.
fea681da 2019.TP
62e4a418
MK
2020(34) \fIsigcatch\fP \ %lu
2021The bitmap of caught signals, displayed as a decimal number.
59a40ed7 2022Obsolete, because it does not provide information on real-time signals; use
69119dc7 2023.I /proc/[pid]/status
59a40ed7 2024instead.
fea681da 2025.TP
b02b4b74 2026(35) \fIwchan\fP \ %lu \ [PT]
62e4a418 2027This is the "channel" in which the process is waiting.
2054f761
MK
2028It is the address of a location in the kernel where the process is sleeping.
2029The corresponding symbolic name can be found in
2030.IR /proc/[pid]/wchan .
fea681da 2031.TP
62e4a418 2032(36) \fInswap\fP \ %lu
0633f951 2033.\" nswap was added in 2.0
4d9b6984 2034Number of pages swapped (not maintained).
fea681da 2035.TP
62e4a418 2036(37) \fIcnswap\fP \ %lu
0633f951 2037.\" cnswap was added in 2.0
4d9b6984 2038Cumulative \fInswap\fP for child processes (not maintained).
fea681da 2039.TP
62e4a418
MK
2040(38) \fIexit_signal\fP \ %d \ (since Linux 2.1.22)
2041Signal to be sent to parent when we die.
fea681da 2042.TP
62e4a418
MK
2043(39) \fIprocessor\fP \ %d \ (since Linux 2.2.8)
2044CPU number last executed on.
568105c6 2045.TP
62e4a418
MK
2046(40) \fIrt_priority\fP \ %u \ (since Linux 2.5.19)
2047Real-time scheduling priority, a number in the range 1 to 99 for
59a40ed7
MK
2048processes scheduled under a real-time policy,
2049or 0, for non-real-time processes (see
568105c6
MK
2050.BR sched_setscheduler (2)).
2051.TP
62e4a418
MK
2052(41) \fIpolicy\fP \ %u \ (since Linux 2.5.19)
2053Scheduling policy (see
568105c6 2054.BR sched_setscheduler (2)).
cd60dedd 2055Decode using the SCHED_* constants in
59a40ed7 2056.IR linux/sched.h .
2dad4c59 2057.IP
62e4a418 2058The format for this field was %lu before Linux 2.6.22.
167450d6 2059.TP
62e4a418
MK
2060(42) \fIdelayacct_blkio_ticks\fP \ %llu \ (since Linux 2.6.18)
2061Aggregated block I/O delays, measured in clock ticks (centiseconds).
14c06953 2062.TP
62e4a418
MK
2063(43) \fIguest_time\fP \ %lu \ (since Linux 2.6.24)
2064Guest time of the process (time spent running a virtual CPU
7a017e24 2065for a guest operating system), measured in clock ticks (divide by
67914165 2066.IR sysconf(_SC_CLK_TCK) ).
14c06953 2067.TP
62e4a418
MK
2068(44) \fIcguest_time\fP \ %ld \ (since Linux 2.6.24)
2069Guest time of the process's children, measured in clock ticks (divide by
67914165 2070.IR sysconf(_SC_CLK_TCK) ).
fea681da 2071.TP
b02b4b74 2072(45) \fIstart_data\fP \ %lu \ (since Linux 3.3) \ [PT]
0be30a54 2073.\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
62e4a418 2074Address above which program initialized and
426bc8d7 2075uninitialized (BSS) data are placed.
12449ae3 2076.TP
b02b4b74 2077(46) \fIend_data\fP \ %lu \ (since Linux 3.3) \ [PT]
0be30a54 2078.\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
62e4a418 2079Address below which program initialized and
426bc8d7 2080uninitialized (BSS) data are placed.
12449ae3 2081.TP
b02b4b74 2082(47) \fIstart_brk\fP \ %lu \ (since Linux 3.3) \ [PT]
0be30a54 2083.\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
62e4a418 2084Address above which program heap can be expanded with
426bc8d7 2085.BR brk (2).
12449ae3 2086.TP
b02b4b74 2087(48) \fIarg_start\fP \ %lu \ (since Linux 3.5) \ [PT]
0be30a54 2088.\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
62e4a418 2089Address above which program command-line arguments
426bc8d7
MK
2090.RI ( argv )
2091are placed.
12449ae3 2092.TP
b02b4b74 2093(49) \fIarg_end\fP \ %lu \ (since Linux 3.5) \ [PT]
0be30a54 2094.\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
62e4a418 2095Address below program command-line arguments
426bc8d7
MK
2096.RI ( argv )
2097are placed.
12449ae3 2098.TP
b02b4b74 2099(50) \fIenv_start\fP \ %lu \ (since Linux 3.5) \ [PT]
0be30a54 2100.\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
62e4a418 2101Address above which program environment is placed.
12449ae3 2102.TP
b02b4b74 2103(51) \fIenv_end\fP \ %lu \ (since Linux 3.5) \ [PT]
0be30a54 2104.\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
62e4a418 2105Address below which program environment is placed.
12449ae3 2106.TP
b02b4b74 2107(52) \fIexit_code\fP \ %d \ (since Linux 3.5) \ [PT]
0be30a54 2108.\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
62e4a418 2109The thread's exit status in the form reported by
426bc8d7 2110.BR waitpid (2).
12449ae3 2111.RE
2112.TP
69119dc7 2113.I /proc/[pid]/statm
59a40ed7 2114Provides information about memory usage, measured in pages.
c13182ef 2115The columns are:
37d5e699 2116.IP
a08ea57c 2117.in +4n
37d5e699 2118.EX
cb42fb56 2119size (1) total program size
69119dc7 2120 (same as VmSize in \fI/proc/[pid]/status\fP)
cb42fb56 2121resident (2) resident set size
69119dc7 2122 (same as VmRSS in \fI/proc/[pid]/status\fP)
4e6fa352
MK
2123shared (3) number of resident shared pages (i.e., backed by a file)
2124 (same as RssFile+RssShmem in \fI/proc/[pid]/status\fP)
cb42fb56 2125text (4) text (code)
59a40ed7 2126.\" (not including libs; broken, includes data segment)
d133b9b3 2127lib (5) library (unused since Linux 2.6; always 0)
cb42fb56 2128data (6) data + stack
59a40ed7 2129.\" (including libs; broken, includes library text)
d133b9b3 2130dt (7) dirty pages (unused since Linux 2.6; always 0)
37d5e699 2131.EE
a08ea57c 2132.in
fea681da 2133.TP
69119dc7 2134.I /proc/[pid]/status
fea681da 2135Provides much of the information in
69119dc7 2136.I /proc/[pid]/stat
fea681da 2137and
69119dc7 2138.I /proc/[pid]/statm
fea681da 2139in a format that's easier for humans to parse.
16b5f7ba 2140Here's an example:
37d5e699 2141.IP
16b5f7ba 2142.in +4n
37d5e699 2143.EX
b43a3b30 2144.RB "$" " cat /proc/$$/status"
16b5f7ba 2145Name: bash
a79343e9 2146Umask: 0022
16b5f7ba 2147State: S (sleeping)
aac0b30f 2148Tgid: 17248
2d2dfb69 2149Ngid: 0
aac0b30f
MK
2150Pid: 17248
2151PPid: 17200
16b5f7ba
MK
2152TracerPid: 0
2153Uid: 1000 1000 1000 1000
2154Gid: 100 100 100 100
2155FDSize: 256
2156Groups: 16 33 100
aac0b30f
MK
2157NStgid: 17248
2158NSpid: 17248
2159NSpgid: 17248
2160NSsid: 17200
06b7cee0
MK
2161VmPeak: 131168 kB
2162VmSize: 131168 kB
2163VmLck: 0 kB
2164VmPin: 0 kB
2165VmHWM: 13484 kB
2166VmRSS: 13484 kB
e546617e
MK
2167RssAnon: 10264 kB
2168RssFile: 3220 kB
2169RssShmem: 0 kB
06b7cee0
MK
2170VmData: 10332 kB
2171VmStk: 136 kB
2172VmExe: 992 kB
2173VmLib: 2104 kB
2174VmPTE: 76 kB
2175VmPMD: 12 kB
2176VmSwap: 0 kB
4084d612 2177HugetlbPages: 0 kB # 4.4
16b5f7ba
MK
2178Threads: 1
2179SigQ: 0/3067
2180SigPnd: 0000000000000000
2181ShdPnd: 0000000000000000
2182SigBlk: 0000000000010000
2183SigIgn: 0000000000384004
2184SigCgt: 000000004b813efb
2185CapInh: 0000000000000000
2186CapPrm: 0000000000000000
2187CapEff: 0000000000000000
2188CapBnd: ffffffffffffffff
6112ea97 2189CapAmb: 0000000000000000
6c0ed873 2190NoNewPrivs: 0
039b6546 2191Seccomp: 0
16b5f7ba
MK
2192Cpus_allowed: 00000001
2193Cpus_allowed_list: 0
2194Mems_allowed: 1
2195Mems_allowed_list: 0
2196voluntary_ctxt_switches: 150
2197nonvoluntary_ctxt_switches: 545
37d5e699 2198.EE
16b5f7ba
MK
2199.in
2200.IP
2201The fields are as follows:
2202.RS
2203.IP * 2
2204.IR Name :
2205Command run by this process.
2206.IP *
a79343e9 2207.IR Umask :
53473996
MK
2208Process umask, expressed in octal with a leading zero; see
2209.BR umask (2).
a79343e9
MK
2210(Since Linux 4.7.)
2211.IP *
16b5f7ba 2212.IR State :
4175f999
MK
2213Current state of the process.
2214One of
16b5f7ba
MK
2215"R (running)",
2216"S (sleeping)",
2217"D (disk sleep)",
2218"T (stopped)",
2219"T (tracing stop)",
2220"Z (zombie)",
2221or
2222"X (dead)".
2223.IP *
2224.IR Tgid :
2225Thread group ID (i.e., Process ID).
2226.IP *
2d2dfb69
MK
2227.IR Ngid :
2228NUMA group ID (0 if none; since Linux 3.13).
2229.IP *
16b5f7ba
MK
2230.IR Pid :
2231Thread ID (see
2232.BR gettid (2)).
2233.IP *
a1bc91d5
MK
2234.IR PPid :
2235PID of parent process.
2236.IP *
16b5f7ba
MK
2237.IR TracerPid :
2238PID of process tracing this process (0 if not being traced).
2239.IP *
2240.IR Uid ", " Gid :
9ee4a2b6 2241Real, effective, saved set, and filesystem UIDs (GIDs).
16b5f7ba
MK
2242.IP *
2243.IR FDSize :
2244Number of file descriptor slots currently allocated.
2245.IP *
2246.IR Groups :
2247Supplementary group list.
2248.IP *
ecc9535d 2249.I NStgid :
aac0b30f
MK
2250Thread group ID (i.e., PID) in each of the PID namespaces of which
2251.I [pid]
2252is a member.
2253The leftmost entry shows the value with respect to the PID namespace
2254of the reading process,
2255followed by the value in successively nested inner namespaces.
2256.\" commit e4bc33245124db69b74a6d853ac76c2976f472d5
2257(Since Linux 4.1.)
2258.IP *
ecc9535d 2259.IR NSpid:
aac0b30f
MK
2260Thread ID in each of the PID namespaces of which
2261.I [pid]
2262is a member.
2263The fields are ordered as for
2264.IR NStgid .
2265(Since Linux 4.1.)
2266.IP *
ecc9535d 2267.IR NSpgid :
aac0b30f
MK
2268Process group ID in each of the PID namespaces of which
2269.I [pid]
2270is a member.
2271The fields are ordered as for
2272.IR NStgid .
2273(Since Linux 4.1.)
2274.IP *
ecc9535d 2275.IR NSsid :
aac0b30f
MK
2276descendant namespace session ID hierarchy
2277Session ID in each of the PID namespaces of which
2278.I [pid]
2279is a member.
2280The fields are ordered as for
2281.IR NStgid .
2282(Since Linux 4.1.)
2283.IP *
16b5f7ba
MK
2284.IR VmPeak :
2285Peak virtual memory size.
2286.IP *
2287.IR VmSize :
2288Virtual memory size.
2289.IP *
2290.IR VmLck :
fde39195
MK
2291Locked memory size (see
2292.BR mlock (3)).
16b5f7ba 2293.IP *
15789039
TY
2294.IR VmPin :
2295Pinned memory size
2296.\" commit bc3e53f682d93df677dbd5006a404722b3adfe18
2297(since Linux 3.2).
2298These are pages that can't be moved because something needs to
2299directly access physical memory.
2300.IP *
16b5f7ba
MK
2301.IR VmHWM :
2302Peak resident set size ("high water mark").
2303.IP *
2304.IR VmRSS :
2305Resident set size.
e546617e
MK
2306Note that the value here is the sum of
2307.IR RssAnon ,
2308.IR RssFile ,
2309and
2310.IR RssShmem .
2311.IP *
2312.IR RssAnon :
2313Size of resident anonymous memory.
2314.\" commit bf9683d6990589390b5178dafe8fd06808869293
2315(since Linux 4.5).
2316.IP *
2317.IR RssFile :
2318Size of resident file mappings.
2319.\" commit bf9683d6990589390b5178dafe8fd06808869293
2320(since Linux 4.5).
2321.IP *
2322.IR RssShmem :
78230722 2323Size of resident shared memory (includes System V shared memory,
4e07c70f
MK
2324mappings from
2325.BR tmpfs (5),
2326and shared anonymous mappings).
e546617e
MK
2327.\" commit bf9683d6990589390b5178dafe8fd06808869293
2328(since Linux 4.5).
16b5f7ba
MK
2329.IP *
2330.IR VmData ", " VmStk ", " VmExe :
2331Size of data, stack, and text segments.
2332.IP *
2333.IR VmLib :
2334Shared library code size.
2335.IP *
2336.IR VmPTE :
2337Page table entries size (since Linux 2.6.10).
2338.IP *
e28af9cd
MK
2339.IR VmPMD :
2340.\" commit dc6c9a35b66b520cf67e05d8ca60ebecad3b0479
73b9cbe1 2341Size of second-level page tables (since Linux 4.0).
e28af9cd 2342.IP *
ac4b0eb3 2343.IR VmSwap :
1ddc1665 2344.\" commit b084d4353ff99d824d3bc5a5c2c22c70b1fba722
fce21149
MK
2345Swapped-out virtual memory size by anonymous private pages;
2346shmem swap usage is not included (since Linux 2.6.34).
49f6dda7 2347.IP *
4084d612
MK
2348.IR HugetlbPages :
2349Size of hugetlb memory portions.
2350.\" commit 5d317b2b6536592a9b51fe65faed43d65ca9158e
2351(since Linux 4.4).
2352.IP *
16b5f7ba
MK
2353.IR Threads :
2354Number of threads in process containing this thread.
2355.IP *
6ee625eb
MK
2356.IR SigQ :
2357This field contains two slash-separated numbers that relate to
2358queued signals for the real user ID of this process.
2359The first of these is the number of currently queued
2360signals for this real user ID, and the second is the
2361resource limit on the number of queued signals for this process
2362(see the description of
2363.BR RLIMIT_SIGPENDING
2364in
2365.BR getrlimit (2)).
2366.IP *
16b5f7ba
MK
2367.IR SigPnd ", " ShdPnd :
2368Number of signals pending for thread and for process as a whole (see
2369.BR pthreads (7)
2370and
2371.BR signal (7)).
2372.IP *
2373.IR SigBlk ", " SigIgn ", " SigCgt :
2374Masks indicating signals being blocked, ignored, and caught (see
2375.BR signal (7)).
2376.IP *
2377.IR CapInh ", " CapPrm ", " CapEff :
2378Masks of capabilities enabled in inheritable, permitted, and effective sets
2379(see
2380.BR capabilities (7)).
2381.IP *
2382.IR CapBnd :
2383Capability Bounding set
7e07d950 2384(since Linux 2.6.26, see
16b5f7ba
MK
2385.BR capabilities (7)).
2386.IP *
6112ea97
MK
2387.IR CapAmb :
2388Ambient capability set
2389(since Linux 4.3, see
2390.BR capabilities (7)).
2391.IP *
6c0ed873
MK
2392.IR NoNewPrivs :
2393.\" commit af884cd4a5ae62fcf5e321fecf0ec1014730353d
2394Value of the
2395.I no_new_privs
2396bit
2397(since Linux 4.10, see
2398.BR prctl (2)).
2399.IP *
039b6546
MK
2400.IR Seccomp :
2401.\" commit 2f4b3bf6b2318cfaa177ec5a802f4d8d6afbd816
2402Seccomp mode of the process
2403(since Linux 3.8, see
2404.BR seccomp (2)).
24050 means
2406.BR SECCOMP_MODE_DISABLED ;
24071 means
2408.BR SECCOMP_MODE_STRICT ;
24092 means
2410.BR SECCOMP_MODE_FILTER .
2411This field is provided only if the kernel was built with the
2412.BR CONFIG_SECCOMP
2413kernel configuration option enabled.
2414.IP *
16b5f7ba
MK
2415.IR Cpus_allowed :
2416Mask of CPUs on which this process may run
2417(since Linux 2.6.24, see
2418.BR cpuset (7)).
2419.IP *
2420.IR Cpus_allowed_list :
2421Same as previous, but in "list format"
2422(since Linux 2.6.26, see
2423.BR cpuset (7)).
2424.IP *
2425.IR Mems_allowed :
2426Mask of memory nodes allowed to this process
2427(since Linux 2.6.24, see
2428.BR cpuset (7)).
2429.IP *
2430.IR Mems_allowed_list :
2431Same as previous, but in "list format"
2432(since Linux 2.6.26, see
2433.BR cpuset (7)).
2434.IP *
7c82878a 2435.IR voluntary_ctxt_switches ", " nonvoluntary_ctxt_switches :
16b5f7ba
MK
2436Number of voluntary and involuntary context switches (since Linux 2.6.23).
2437.RE
afb7b014
MK
2438.TP
2439.IR /proc/[pid]/syscall " (since Linux 2.6.27)"
2440.\" commit ebcb67341fee34061430f3367f2e507e52ee051b
2441This file exposes the system call number and argument registers for the
2442system call currently being executed by the process,
2443followed by the values of the stack pointer and program counter registers.
2444The values of all six argument registers are exposed,
2445although most system calls use fewer registers.
2dad4c59 2446.IP
afb7b014 2447If the process is blocked, but not in a system call,
1fb61947 2448then the file displays \-1 in place of the system call number,
afb7b014 2449followed by just the values of the stack pointer and program counter.
64fcb6e1 2450If process is not blocked, then the file contains just the string "running".
2dad4c59 2451.IP
afb7b014
MK
2452This file is present only if the kernel was configured with
2453.BR CONFIG_HAVE_ARCH_TRACEHOOK .
2dad4c59 2454.IP
4834ae91
MK
2455Permission to access this file is governed by a ptrace access mode
2456.B PTRACE_MODE_ATTACH_FSCREDS
2457check; see
2458.BR ptrace (2).
fea681da 2459.TP
69119dc7 2460.IR /proc/[pid]/task " (since Linux 2.6.0-test6)"
afcaf646
MK
2461This is a directory that contains one subdirectory
2462for each thread in the process.
69119dc7
MK
2463The name of each subdirectory is the numerical thread ID
2464.RI ( [tid] )
2465of the thread (see
afcaf646
MK
2466.BR gettid (2)).
2467Within each of these subdirectories, there is a set of
2468files with the same names and contents as under the
69119dc7 2469.I /proc/[pid]
afcaf646
MK
2470directories.
2471For attributes that are shared by all threads, the contents for
2472each of the files under the
69119dc7 2473.I task/[tid]
afcaf646 2474subdirectories will be the same as in the corresponding
c13182ef 2475file in the parent
69119dc7 2476.I /proc/[pid]
afcaf646 2477directory
c13182ef 2478(e.g., in a multithreaded process, all of the
69119dc7 2479.I task/[tid]/cwd
c13182ef 2480files will have the same value as the
69119dc7 2481.I /proc/[pid]/cwd
c13182ef 2482file in the parent directory, since all of the threads in a process
afcaf646
MK
2483share a working directory).
2484For attributes that are distinct for each thread,
c13182ef 2485the corresponding files under
69119dc7 2486.I task/[tid]
afcaf646 2487may have different values (e.g., various fields in each of the
69119dc7 2488.I task/[tid]/status
4a40c703
JH
2489files may be different for each thread),
2490.\" in particular: "children" :/
2491or they might not exist in
2492.I /proc/[pid]
2493at all.
afcaf646
MK
2494.\" The following was still true as at kernel 2.6.13
2495In a multithreaded process, the contents of the
69119dc7 2496.I /proc/[pid]/task
c13182ef 2497directory are not available if the main thread has already terminated
afcaf646
MK
2498(typically by calling
2499.BR pthread_exit (3)).
2dad4c59 2500.IP
4a40c703
JH
2501.TP
2502.IR /proc/[pid]/task/[tid]/children " (since Linux 3.5)"
2503.\" commit 818411616baf46ceba0cff6f05af3a9b294734f7
2504A space-separated list of child tasks of this task.
2505Each child task is represented by its TID.
2dad4c59 2506.IP
4a40c703 2507.\" see comments in get_children_pid() in fs/proc/array.c
45dd5092
MK
2508This option is intended for use by the checkpoint-restore (CRIU) system,
2509and reliably provides a list of children only if all of the child processes
2510are stopped or frozen.
2511It does not work properly if children of the target task exit while
4a40c703 2512the file is being read!
45dd5092 2513Exiting children may cause non-exiting children to be omitted from the list.
4a40c703 2514This makes this interface even more unreliable than classic PID-based
45dd5092
MK
2515approaches if the inspected task and its children aren't frozen,
2516and most code should probably not use this interface.
2dad4c59 2517.IP
7ded2db4
MK
2518Until Linux 4.2, the presence of this file was governed by the
2519.B CONFIG_CHECKPOINT_RESTORE
2520kernel configuration option.
2521Since Linux 4.2,
2522.\" commit 2e13ba54a2682eea24918b87ad3edf70c2cf085b
ae34c521 2523it is governed by the
7ded2db4
MK
2524.B CONFIG_PROC_CHILDREN
2525option.
afcaf646 2526.TP
1509ca0e
MK
2527.IR /proc/[pid]/timers " (since Linux 3.10)"
2528.\" commit 5ed67f05f66c41e39880a6d61358438a25f9fee5
2529.\" commit 48f6a7a511ef8823fdff39afee0320092d43a8a0
2530A list of the POSIX timers for this process.
93691c1e 2531Each timer is listed with a line that starts with the string "ID:".
1509ca0e 2532For example:
2dad4c59 2533.IP
1509ca0e 2534.in +4n
37d5e699 2535.EX
1509ca0e
MK
2536ID: 1
2537signal: 60/00007fff86e452a8
2538notify: signal/pid.2634
2539ClockID: 0
2540ID: 0
2541signal: 60/00007fff86e452a8
2542notify: signal/pid.2634
2543ClockID: 1
37d5e699 2544.EE
1509ca0e 2545.in
2dad4c59 2546.IP
1509ca0e
MK
2547The lines shown for each timer have the following meanings:
2548.RS
2549.TP
2550.I ID
2551The ID for this timer.
2552This is not the same as the timer ID returned by
2553.BR timer_create (2);
2554rather, it is the same kernel-internal ID that is available via the
2555.I si_timerid
2556field of the
2557.IR siginfo_t
2558structure (see
2559.BR sigaction (2)).
2560.TP
2561.I signal
2562This is the signal number that this timer uses to deliver notifications
2563followed by a slash, and then the
7f1ea8fb 2564.I sigev_value
1509ca0e
MK
2565value supplied to the signal handler.
2566Valid only for timers that notify via a signal.
2567.TP
2568.I notify
2569The part before the slash specifies the mechanism
2570that this timer uses to deliver notifications,
2571and is one of "thread", "signal", or "none".
2572Immediately following the slash is either the string "tid" for timers
2573with
2574.B SIGEV_THREAD_ID
2575notification, or "pid" for timers that notify by other mechanisms.
dbe6f88b
MK
2576Following the "." is the PID of the process
2577(or the kernel thread ID of the thread) that will be delivered
1509ca0e
MK
2578a signal if the timer delivers notifications via a signal.
2579.TP
2580.I ClockID
2581This field identifies the clock that the timer uses for measuring time.
2582For most clocks, this is a number that matches one of the user-space
2583.BR CLOCK_*
9d54c087 2584constants exposed via
1509ca0e
MK
2585.IR <time.h> .
2586.B CLOCK_PROCESS_CPUTIME_ID
9bc87ed0 2587timers display with a value of \-6
1509ca0e
MK
2588in this field.
2589.B CLOCK_THREAD_CPUTIME_ID
9bc87ed0 2590timers display with a value of \-2
1509ca0e
MK
2591in this field.
2592.RE
5734da6d
MK
2593.IP
2594This file is available only when the kernel was configured with
2595.BR CONFIG_CHECKPOINT_RESTORE .
1509ca0e 2596.TP
11f60142
MK
2597.IR /proc/[pid]/timerslack_ns " (since Linux 4.6)"
2598.\" commit da8b44d5a9f8bf26da637b7336508ca534d6b319
2599.\" commit 5de23d435e88996b1efe0e2cebe242074ce67c9e
2600This file exposes the process's "current" timer slack value,
2601expressed in nanoseconds.
2602The file is writable,
2603allowing the process's timer slack value to be changed.
2604Writing 0 to this file resets the "current" timer slack to the
2605"default" timer slack value.
2606For further details, see the discussion of
2607.BR PR_SET_TIMERSLACK
2608in
2609.BR prctl (2).
2dad4c59 2610.IP
5daae264
MK
2611Initially,
2612permission to access this file was governed by a ptrace access mode
a62e0e01 2613.B PTRACE_MODE_ATTACH_FSCREDS
5daae264
MK
2614check (see
2615.BR ptrace (2)).
2616However, this was subsequently deemed too strict a requirement
2617(and had the side effect that requiring a process to have the
2618.B CAP_SYS_PTRACE
2619capability would also allow it to view and change any process's memory).
2620Therefore, since Linux 4.9,
2621.\" commit 7abbaf94049914f074306d960b0f968ffe52e59f
2622only the (weaker)
2623.B CAP_SYS_NICE
2624capability is required to access this file.
11f60142 2625.TP
b1aad373
MK
2626.IR /proc/[pid]/uid_map ", " /proc/[pid]/gid_map " (since Linux 3.5)"
2627See
2628.BR user_namespaces (7).
2629.TP
2630.IR /proc/[pid]/wchan " (since Linux 2.6.0)"
2631The symbolic name corresponding to the location
2632in the kernel where the process is sleeping.
2dad4c59 2633.IP
82664739
MK
2634Permission to access this file is governed by a ptrace access mode
2635.B PTRACE_MODE_READ_FSCREDS
2636check; see
2637.BR ptrace (2).
b1aad373
MK
2638.TP
2639.I /proc/apm
2640Advanced power management version and battery information when
2641.B CONFIG_APM
2642is defined at kernel compilation time.
2643.TP
2644.I /proc/buddyinfo
2645This file contains information which is used for diagnosing memory
2646fragmentation issues.
2647Each line starts with the identification of the node and the name
2648of the zone which together identify a memory region
2649This is then
2650followed by the count of available chunks of a certain order in
2651which these zones are split.
2652The size in bytes of a certain order is given by the formula:
2dad4c59 2653.IP
b1aad373 2654 (2^order)\ *\ PAGE_SIZE
2dad4c59 2655.IP
b1aad373
MK
2656The binary buddy allocator algorithm inside the kernel will split
2657one chunk into two chunks of a smaller order (thus with half the
2658size) or combine two contiguous chunks into one larger chunk of
2659a higher order (thus with double the size) to satisfy allocation
2660requests and to counter memory fragmentation.
2661The order matches the column number, when starting to count at zero.
2dad4c59 2662.IP
b1aad373 2663For example on a x86_64 system:
2dad4c59 2664.IP
b1aad373 2665.in -12n
37d5e699 2666.EX
b1aad373
MK
2667Node 0, zone DMA 1 1 1 0 2 1 1 0 1 1 3
2668Node 0, zone DMA32 65 47 4 81 52 28 13 10 5 1 404
2669Node 0, zone Normal 216 55 189 101 84 38 37 27 5 3 587
37d5e699 2670.EE
b1aad373 2671.in
2dad4c59 2672.IP
b1aad373
MK
2673In this example, there is one node containing three zones and there
2674are 11 different chunk sizes.
2675If the page size is 4 kilobytes, then the first zone called
2676.I DMA
2677(on x86 the first 16 megabyte of memory) has 1 chunk of 4 kilobytes
2678(order 0) available and has 3 chunks of 4 megabytes (order 10) available.
2dad4c59 2679.IP
b1aad373
MK
2680If the memory is heavily fragmented, the counters for higher
2681order chunks will be zero and allocation of large contiguous areas
2682will fail.
2dad4c59 2683.IP
b1aad373
MK
2684Further information about the zones can be found in
2685.IR /proc/zoneinfo .
2686.TP
2687.I /proc/bus
2688Contains subdirectories for installed busses.
2689.TP
2690.I /proc/bus/pccard
2691Subdirectory for PCMCIA devices when
2692.B CONFIG_PCMCIA
2693is set at kernel compilation time.
2694.TP
fea681da
MK
2695.I /proc/bus/pccard/drivers
2696.TP
2697.I /proc/bus/pci
c13182ef 2698Contains various bus subdirectories and pseudo-files containing
59a40ed7 2699information about PCI busses, installed devices, and device
c13182ef
MK
2700drivers.
2701Some of these files are not ASCII.
fea681da
MK
2702.TP
2703.I /proc/bus/pci/devices
59a40ed7 2704Information about PCI devices.
c13182ef 2705They may be accessed through
fea681da
MK
2706.BR lspci (8)
2707and
2708.BR setpci (8).
2709.TP
12b23dfe
MK
2710.IR /proc/cgroups " (since Linux 2.6.24)"
2711See
2712.BR cgroups (7).
2713.TP
fea681da 2714.I /proc/cmdline
c13182ef
MK
2715Arguments passed to the Linux kernel at boot time.
2716Often done via a boot manager such as
59a40ed7
MK
2717.BR lilo (8)
2718or
2719.BR grub (8).
f6e524c4
MK
2720.TP
2721.IR /proc/config.gz " (since Linux 2.6)"
2722This file exposes the configuration options that were used
c3d9780d 2723to build the currently running kernel,
f6e524c4
MK
2724in the same format as they would be shown in the
2725.I .config
2726file that resulted when configuring the kernel (using
2727.IR "make xconfig" ,
2728.IR "make config" ,
2729or similar).
2730The file contents are compressed; view or search them using
f78ed33a
MK
2731.BR zcat (1)
2732and
2733.BR zgrep (1).
f6e524c4 2734As long as no changes have been made to the following file,
250e01ec
MK
2735the contents of
2736.I /proc/config.gz
37d5e699
MK
2737are the same as those provided by:
2738.IP
f6e524c4 2739.in +4n
37d5e699 2740.EX
c3074d70 2741cat /lib/modules/$(uname \-r)/build/.config
37d5e699 2742.EE
f6e524c4 2743.in
250e01ec
MK
2744.IP
2745.I /proc/config.gz
90878f7c 2746is provided only if the kernel is configured with
250e01ec 2747.BR CONFIG_IKCONFIG_PROC .
fea681da 2748.TP
577c0e20
MK
2749.I /proc/crypto
2750A list of the ciphers provided by the kernel crypto API.
2751For details, see the kernel
2752.I "Linux Kernel Crypto API"
2753documentation available under the kernel source directory
2754.IR Documentation/DocBook .
2755(That documentation can be built using a command such as
2756.IR "make htmldocs"
2757in the root directory of the kernel source tree.)
2758.TP
fea681da
MK
2759.I /proc/cpuinfo
2760This is a collection of CPU and system architecture dependent items,
2761for each supported architecture a different list.
2762Two common entries are \fIprocessor\fP which gives CPU number and
c13182ef
MK
2763\fIbogomips\fP; a system constant that is calculated
2764during kernel initialization.
2765SMP machines have information for
fea681da 2766each CPU.
a091f002
MK
2767The
2768.BR lscpu (1)
2769command gathers its information from this file.
fea681da
MK
2770.TP
2771.I /proc/devices
c13182ef
MK
2772Text listing of major numbers and device groups.
2773This can be used by MAKEDEV scripts for consistency with the kernel.
fea681da
MK
2774.TP
2775.IR /proc/diskstats " (since Linux 2.5.69)"
2776This file contains disk I/O statistics for each disk device.
66a9882e 2777See the Linux kernel source file
fea681da
MK
2778.I Documentation/iostats.txt
2779for further information.
2780.TP
2781.I /proc/dma
c13182ef 2782This is a list of the registered \fIISA\fP DMA (direct memory access)
fea681da
MK
2783channels in use.
2784.TP
2785.I /proc/driver
2786Empty subdirectory.
2787.TP
2788.I /proc/execdomains
2789List of the execution domains (ABI personalities).
2790.TP
2791.I /proc/fb
097585ed
MK
2792Frame buffer information when
2793.B CONFIG_FB
2794is defined during kernel compilation.
fea681da
MK
2795.TP
2796.I /proc/filesystems
9ee4a2b6
MK
2797A text listing of the filesystems which are supported by the kernel,
2798namely filesystems which were compiled into the kernel or whose kernel
6387216b
MK
2799modules are currently loaded.
2800(See also
fb477da2 2801.BR filesystems (5).)
9ee4a2b6 2802If a filesystem is marked with "nodev",
809d0164 2803this means that it does not require a block device to be mounted
9ee4a2b6 2804(e.g., virtual filesystem, network filesystem).
2dad4c59 2805.IP
809d0164
MK
2806Incidentally, this file may be used by
2807.BR mount (8)
9ee4a2b6
MK
2808when no filesystem is specified and it didn't manage to determine the
2809filesystem type.
2810Then filesystems contained in this file are tried
809d0164 2811(excepted those that are marked with "nodev").
fea681da
MK
2812.TP
2813.I /proc/fs
df352acc 2814.\" FIXME Much more needs to be said about /proc/fs
91085d85 2815.\"
df352acc
MK
2816Contains subdirectories that in turn contain files
2817with information about (certain) mounted filesystems.
fea681da
MK
2818.TP
2819.I /proc/ide
2820This directory
59a40ed7
MK
2821exists on systems with the IDE bus.
2822There are directories for each IDE channel and attached device.
c13182ef 2823Files include:
2dad4c59 2824.IP
a08ea57c 2825.in +4n
37d5e699 2826.EX
fea681da
MK
2827cache buffer size in KB
2828capacity number of sectors
2829driver driver version
2830geometry physical and logical geometry
9fdfa163 2831identify in hexadecimal
fea681da
MK
2832media media type
2833model manufacturer's model number
2834settings drive settings
9fdfa163
MK
2835smart_thresholds in hexadecimal
2836smart_values in hexadecimal
37d5e699 2837.EE
a08ea57c 2838.in
2dad4c59 2839.IP
c13182ef 2840The
fea681da
MK
2841.BR hdparm (8)
2842utility provides access to this information in a friendly format.
2843.TP
2844.I /proc/interrupts
23ec6ff0
MK
2845This is used to record the number of interrupts per CPU per IO device.
2846Since Linux 2.6.24,
2847for the i386 and x86_64 architectures, at least, this also includes
2848interrupts internal to the system (that is, not associated with a device
2849as such), such as NMI (nonmaskable interrupt), LOC (local timer interrupt),
2850and for SMP systems, TLB (TLB flush interrupt), RES (rescheduling
2851interrupt), CAL (remote function call interrupt), and possibly others.
2852Very easy to read formatting, done in ASCII.
fea681da
MK
2853.TP
2854.I /proc/iomem
2855I/O memory map in Linux 2.4.
2856.TP
2857.I /proc/ioports
c13182ef 2858This is a list of currently registered Input-Output port regions that
fea681da
MK
2859are in use.
2860.TP
2861.IR /proc/kallsyms " (since Linux 2.5.71)"
2862This holds the kernel exported symbol definitions used by the
2863.BR modules (X)
2864tools to dynamically link and bind loadable modules.
2865In Linux 2.5.47 and earlier, a similar file with slightly different syntax
2866was named
2867.IR ksyms .
2868.TP
2869.I /proc/kcore
2870This file represents the physical memory of the system and is stored
c13182ef
MK
2871in the ELF core file format.
2872With this pseudo-file, and an unstripped
9a67332e
MK
2873kernel
2874.RI ( /usr/src/linux/vmlinux )
2875binary, GDB can be used to
fea681da 2876examine the current state of any kernel data structures.
2dad4c59 2877.IP
fea681da 2878The total length of the file is the size of physical memory (RAM) plus
ee8655b5 28794\ KiB.
fea681da 2880.TP
653836fb
MK
2881.IR /proc/keys " (since Linux 2.6.10)"
2882See
2883.BR keyrings (7).
2884.TP
2885.IR /proc/key-users " (since Linux 2.6.10)"
2886See
2887.BR keyrings (7).
2888.TP
fea681da
MK
2889.I /proc/kmsg
2890This file can be used instead of the
2891.BR syslog (2)
c13182ef
MK
2892system call to read kernel messages.
2893A process must have superuser
fea681da 2894privileges to read this file, and only one process should read this
c13182ef
MK
2895file.
2896This file should not be read if a syslog process is running
fea681da
MK
2897which uses the
2898.BR syslog (2)
2899system call facility to log kernel messages.
2dad4c59 2900.IP
fea681da 2901Information in this file is retrieved with the
c4517613 2902.BR dmesg (1)
fea681da
MK
2903program.
2904.TP
ff56ac8b
MK
2905.IR /proc/kpagecount " (since Linux 2.6.25)"
2906This file contains a 64-bit count of the number of
2907times each physical page frame is mapped,
2908indexed by page frame number (see the discussion of
2909.IR /proc/[pid]/pagemap ).
2910.IP
2911The
2912.IR /proc/kpagecount
2913file is present only if the
2914.B CONFIG_PROC_PAGE_MONITOR
59d566a9
MK
2915kernel configuration option is enabled.
2916.TP
2917.IR /proc/kpageflags " (since Linux 2.6.25)"
ef4f4031 2918This file contains 64-bit masks corresponding to each physical page frame;
59d566a9
MK
2919it is indexed by page frame number (see the discussion of
2920.IR /proc/[pid]/pagemap ).
2921The bits are as follows:
2dad4c59 2922.IP
59d566a9
MK
2923 0 - KPF_LOCKED
2924 1 - KPF_ERROR
2925 2 - KPF_REFERENCED
2926 3 - KPF_UPTODATE
2927 4 - KPF_DIRTY
2928 5 - KPF_LRU
2929 6 - KPF_ACTIVE
2930 7 - KPF_SLAB
2931 8 - KPF_WRITEBACK
2932 9 - KPF_RECLAIM
2933 10 - KPF_BUDDY
2934 11 - KPF_MMAP (since Linux 2.6.31)
2935 12 - KPF_ANON (since Linux 2.6.31)
2936 13 - KPF_SWAPCACHE (since Linux 2.6.31)
2937 14 - KPF_SWAPBACKED (since Linux 2.6.31)
2938 15 - KPF_COMPOUND_HEAD (since Linux 2.6.31)
2939 16 - KPF_COMPOUND_TAIL (since Linux 2.6.31)
2940 16 - KPF_HUGE (since Linux 2.6.31)
2941 18 - KPF_UNEVICTABLE (since Linux 2.6.31)
2942 19 - KPF_HWPOISON (since Linux 2.6.31)
2943 20 - KPF_NOPAGE (since Linux 2.6.31)
2944 21 - KPF_KSM (since Linux 2.6.32)
2945 22 - KPF_THP (since Linux 3.4)
2dad4c59 2946.IP
59d566a9
MK
2947For further details on the meanings of these bits,
2948see the kernel source file
2949.IR Documentation/vm/pagemap.txt .
2950Before kernel 2.6.29,
2951.\" commit ad3bdefe877afb47480418fdb05ecd42842de65e
2952.\" commit e07a4b9217d1e97d2f3a62b6b070efdc61212110
2953.BR KPF_WRITEBACK ,
2954.BR KPF_RECLAIM ,
2955.BR KPF_BUDDY ,
2956and
2957.BR KPF_LOCKED
2958did not report correctly.
2959.IP
2960The
2961.IR /proc/kpageflags
2962file is present only if the
2963.B CONFIG_PROC_PAGE_MONITOR
ff56ac8b
MK
2964kernel configuration option is enabled.
2965.TP
93f18cbb 2966.IR /proc/ksyms " (Linux 1.1.23\(en2.5.47)"
fea681da
MK
2967See
2968.IR /proc/kallsyms .
2969.TP
2970.I /proc/loadavg
6b05dc38
MK
2971The first three fields in this file are load average figures
2972giving the number of jobs in the run queue (state R)
fea681da
MK
2973or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.
2974They are the same as the load average numbers given by
2975.BR uptime (1)
2976and other programs.
6b05dc38 2977The fourth field consists of two numbers separated by a slash (/).
78fc91ec
EDB
2978The first of these is the number of currently runnable kernel
2979scheduling entities (processes, threads).
6b05dc38
MK
2980The value after the slash is the number of kernel scheduling entities
2981that currently exist on the system.
2982The fifth field is the PID of the process that was most
2983recently created on the system.
fea681da
MK
2984.TP
2985.I /proc/locks
2986This file shows current file locks
2987.RB ( flock "(2) and " fcntl (2))
2988and leases
2989.RB ( fcntl (2)).
9f1002a1
MK
2990The
2991.BR lslocks (8)
2992command provides a bit more information about each lock.
fea681da 2993.TP
89dd5f8a 2994.IR /proc/malloc " (only up to and including Linux 2.2)"
59a40ed7 2995.\" It looks like this only ever did something back in 1.0 days
90878f7c 2996This file is present only if
89dd5f8a 2997.B CONFIG_DEBUG_MALLOC
097585ed 2998was defined during compilation.
fea681da
MK
2999.TP
3000.I /proc/meminfo
77b802ec
MK
3001This file reports statistics about memory usage on the system.
3002It is used by
fea681da
MK
3003.BR free (1)
3004to report the amount of free and used memory (both physical and swap)
3005on the system as well as the shared memory and buffers used by the
3006kernel.
3ba3d5b1
MK
3007Each line of the file consists of a parameter name, followed by a colon,
3008the value of the parameter, and an option unit of measurement (e.g., "kB").
3009The list below describes the parameter names and
3010the format specifier required to read the field value.
3011Except as noted below,
3012all of the fields have been present since at least Linux 2.6.0.
86cf87d7 3013Some fields are displayed only if the kernel was configured
3ba3d5b1
MK
3014with various options; those dependencies are noted in the list.
3015.RS
3016.TP
3017.IR MemTotal " %lu"
449dd4e2 3018Total usable RAM (i.e., physical RAM minus a few reserved
99e91586 3019bits and the kernel binary code).
3ba3d5b1
MK
3020.TP
3021.IR MemFree " %lu"
7bccb7d4
DP
3022The sum of
3023.IR LowFree + HighFree .
3ba3d5b1 3024.TP
8b4b1f68
MK
3025.IR MemAvailable " %lu (since Linux 3.14)"
3026An estimate of how much memory is available for starting new
3027applications, without swapping.
3028.TP
3ba3d5b1 3029.IR Buffers " %lu"
99e91586 3030Relatively temporary storage for raw disk blocks that
3ba3d5b1
MK
3031shouldn't get tremendously large (20MB or so).
3032.TP
3033.IR Cached " %lu"
3034In-memory cache for files read from the disk (the page cache).
3035Doesn't include
3036.IR SwapCached .
3037.TP
3038.IR SwapCached " %lu"
3039Memory that once was swapped out, is swapped back in but
3040still also is in the swap file.
fa1d2749 3041(If memory pressure is high, these pages
3ba3d5b1 3042don't need to be swapped out again because they are already
99e91586 3043in the swap file.
3ba3d5b1
MK
3044This saves I/O.)
3045.TP
3046.IR Active " %lu"
3047Memory that has been used more recently and usually not
3048reclaimed unless absolutely necessary.
3049.TP
3050.IR Inactive " %lu"
3051Memory which has been less recently used.
3052It is more eligible to be reclaimed for other purposes.
3053.TP
3054.IR Active(anon) " %lu (since Linux 2.6.28)"
3055[To be documented.]
3056.TP
3057.IR Inactive(anon) " %lu (since Linux 2.6.28)"
3058[To be documented.]
3059.TP
3060.IR Active(file) " %lu (since Linux 2.6.28)"
3061[To be documented.]
3062.TP
3063.IR Inactive(file) " %lu (since Linux 2.6.28)"
3064[To be documented.]
3065.TP
3066.IR Unevictable " %lu (since Linux 2.6.28)"
3067(From Linux 2.6.28 to 2.6.30,
3068\fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3069[To be documented.]
3070.TP
46fbfc07 3071.IR Mlocked " %lu (since Linux 2.6.28)"
3ba3d5b1
MK
3072(From Linux 2.6.28 to 2.6.30,
3073\fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3074[To be documented.]
3075.TP
3076.IR HighTotal " %lu"
3077(Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3078Total amount of highmem.
99e91586 3079Highmem is all memory above ~860MB of physical memory.
3ba3d5b1
MK
3080Highmem areas are for use by user-space programs,
3081or for the page cache.
3082The kernel must use tricks to access
3083this memory, making it slower to access than lowmem.
3084.TP
3085.IR HighFree " %lu
3086(Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3087Amount of free highmem.
3088.TP
3089.IR LowTotal " %lu
3090(Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3091Total amount of lowmem.
3092Lowmem is memory which can be used for everything that
3093highmem can be used for, but it is also available for the
3094kernel's use for its own data structures.
3095Among many other things,
99e91586 3096it is where everything from
7bccb7d4
DP
3097.I Slab
3098is allocated.
3ba3d5b1
MK
3099Bad things happen when you're out of lowmem.
3100.TP
3101.IR LowFree " %lu
3102(Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3103Amount of free lowmem.
3104.TP
3105.IR MmapCopy " %lu (since Linux 2.6.29)"
99e91586
DP
3106.RB ( CONFIG_MMU
3107is required.)
3ba3d5b1
MK
3108[To be documented.]
3109.TP
3110.IR SwapTotal " %lu"
3111Total amount of swap space available.
3112.TP
3113.IR SwapFree " %lu"
c16d4f25 3114Amount of swap space that is currently unused.
3ba3d5b1
MK
3115.TP
3116.IR Dirty " %lu"
3117Memory which is waiting to get written back to the disk.
3118.TP
3119.IR Writeback " %lu"
3120Memory which is actively being written back to the disk.
3121.TP
3122.IR AnonPages " %lu (since Linux 2.6.18)"
3123Non-file backed pages mapped into user-space page tables.
3124.TP
3125.IR Mapped " %lu"
fda70f5b
MK
3126Files which have been mapped into memory (with
3127.BR mmap (2)),
3128such as libraries.
3ba3d5b1
MK
3129.TP
3130.IR Shmem " %lu (since Linux 2.6.32)"
eb775c04
MK
3131Amount of memory consumed in
3132.BR tmpfs (5)
3133filesystems.
3ba3d5b1
MK
3134.TP
3135.IR Slab " %lu"
3136In-kernel data structures cache.
5a5bde70
MK
3137(See
3138.BR slabinfo (5).)
3ba3d5b1
MK
3139.TP
3140.IR SReclaimable " %lu (since Linux 2.6.19)"
7bccb7d4
DP
3141Part of
3142.IR Slab ,
3143that might be reclaimed, such as caches.
3ba3d5b1
MK
3144.TP
3145.IR SUnreclaim " %lu (since Linux 2.6.19)"
7bccb7d4
DP
3146Part of
3147.IR Slab ,
3148that cannot be reclaimed on memory pressure.
3ba3d5b1
MK
3149.TP
3150.IR KernelStack " %lu (since Linux 2.6.32)"
3151Amount of memory allocated to kernel stacks.
3152.TP
3153.IR PageTables " %lu (since Linux 2.6.18)"
3154Amount of memory dedicated to the lowest level of page tables.
3155.TP
3156.IR Quicklists " %lu (since Linux 2.6.27)"
3157(\fBCONFIG_QUICKLIST\fP is required.)
3158[To be documented.]
3159.TP
3160.IR NFS_Unstable " %lu (since Linux 2.6.18)"
3161NFS pages sent to the server, but not yet committed to stable storage.
3162.TP
3163.IR Bounce " %lu (since Linux 2.6.18)"
3164Memory used for block device "bounce buffers".
3165.TP
3166.IR WritebackTmp " %lu (since Linux 2.6.26)"
3167Memory used by FUSE for temporary writeback buffers.
3168.TP
3169.IR CommitLimit " %lu (since Linux 2.6.10)"
cd7b6c40
MK
3170This is the total amount of memory currently available to
3171be allocated on the system, expressed in kilobytes.
90878f7c
MK
3172This limit is adhered to
3173only if strict overcommit accounting is enabled (mode 2 in
cd7b6c40
MK
3174.IR /proc/sys/vm/overcommit_memory ).
3175The limit is calculated according to the formula described under
3176.IR /proc/sys/vm/overcommit_memory .
3177For further details, see the kernel source file
3ba3d5b1
MK
3178.IR Documentation/vm/overcommit-accounting .
3179.TP
3180.IR Committed_AS " %lu"
3181The amount of memory presently allocated on the system.
3182The committed memory is a sum of all of the memory which
3183has been allocated by processes, even if it has not been
3184"used" by them as of yet.
3185A process which allocates 1GB of memory (using
3186.BR malloc (3)
33a0ccb2 3187or similar), but touches only 300MB of that memory will show up
90878f7c 3188as using only 300MB of memory even if it has the address space
3ba3d5b1 3189allocated for the entire 1GB.
2dad4c59 3190.IP
3ba3d5b1
MK
3191This 1GB is memory which has been "committed" to by the VM
3192and can be used at any time by the allocating application.
cd7b6c40 3193With strict overcommit enabled on the system (mode 2 in
d9e0f03d 3194.IR /proc/sys/vm/overcommit_memory ),
3ba3d5b1
MK
3195allocations which would exceed the
3196.I CommitLimit
cd7b6c40 3197will not be permitted.
3ba3d5b1
MK
3198This is useful if one needs to guarantee that processes will not
3199fail due to lack of memory once that memory has been successfully allocated.
3200.TP
3201.IR VmallocTotal " %lu"
3202Total size of vmalloc memory area.
3203.TP
3204.IR VmallocUsed " %lu"
3205Amount of vmalloc area which is used.
3206.TP
3207.IR VmallocChunk " %lu"
3208Largest contiguous block of vmalloc area which is free.
3209.TP
3210.IR HardwareCorrupted " %lu (since Linux 2.6.32)"
3211(\fBCONFIG_MEMORY_FAILURE\fP is required.)
3212[To be documented.]
3213.TP
3214.IR AnonHugePages " %lu (since Linux 2.6.38)"
3215(\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
7fac88a9 3216Non-file backed huge pages mapped into user-space page tables.
3ba3d5b1 3217.TP
4ad958e1
MK
3218.IR ShmemHugePages " %lu (since Linux 4.8)"
3219(\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
4e07c70f
MK
3220Memory used by shared memory (shmem) and
3221.BR tmpfs (5)
3222allocated with huge pages
4ad958e1
MK
3223.TP
3224.IR ShmemPmdMapped " %lu (since Linux 4.8)"
3225(\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
956e74b4 3226Shared memory mapped into user space with huge pages.
4ad958e1 3227.TP
43179f55
MK
3228.IR CmaTotal " %lu (since Linux 3.1)"
3229Total CMA (Contiguous Memory Allocator) pages.
3230(\fBCONFIG_CMA\fP is required.)
3231.TP
3232.IR CmaFree " %lu (since Linux 3.1)"
3233Free CMA (Contiguous Memory Allocator) pages.
3234(\fBCONFIG_CMA\fP is required.)
3235.TP
3ba3d5b1
MK
3236.IR HugePages_Total " %lu"
3237(\fBCONFIG_HUGETLB_PAGE\fP is required.)
3238The size of the pool of huge pages.
3239.TP
3240.IR HugePages_Free " %lu"
3241(\fBCONFIG_HUGETLB_PAGE\fP is required.)
3242The number of huge pages in the pool that are not yet allocated.
3243.TP
3244.IR HugePages_Rsvd " %lu (since Linux 2.6.17)"
3245(\fBCONFIG_HUGETLB_PAGE\fP is required.)
3246This is the number of huge pages for
3247which a commitment to allocate from the pool has been made,
3248but no allocation has yet been made.
3249These reserved huge pages
3250guarantee that an application will be able to allocate a
3251huge page from the pool of huge pages at fault time.
3252.TP
aa8a6b4f 3253.IR HugePages_Surp " %lu (since Linux 2.6.24)"
3ba3d5b1
MK
3254(\fBCONFIG_HUGETLB_PAGE\fP is required.)
3255This is the number of huge pages in
3256the pool above the value in
3257.IR /proc/sys/vm/nr_hugepages .
3258The maximum number of surplus huge pages is controlled by
3259.IR /proc/sys/vm/nr_overcommit_hugepages .
3260.TP
3261.IR Hugepagesize " %lu"
3262(\fBCONFIG_HUGETLB_PAGE\fP is required.)
3263The size of huge pages.
d5268de1
MK
3264.TP
3265.IR DirectMap4k " %lu (since Linux 2.6.27)"
3266Number of bytes of RAM linearly mapped by kernel in 4kB pages.
3267(x86.)
3268.TP
3269.IR DirectMap4M " %lu (since Linux 2.6.27)"
3270Number of bytes of RAM linearly mapped by kernel in 4MB pages.
3271(x86 with
3272.BR CONFIG_X86_64
3273or
3274.BR CONFIG_X86_PAE
3275enabled.)
3276.TP
3277.IR DirectMap2M " %lu (since Linux 2.6.27)"
3278Number of bytes of RAM linearly mapped by kernel in 2MB pages.
3279(x86 with neither
3280.BR CONFIG_X86_64
3281nor
3282.BR CONFIG_X86_PAE
3283enabled.)
3284.TP
3285.IR DirectMap1G " %lu (since Linux 2.6.27)"
3286(x86 with
3287.BR CONFIG_X86_64
3288and
3289.B CONFIG_X86_DIRECT_GBPAGES
3290enabled.)
3ba3d5b1 3291.RE
fea681da 3292.TP
aa341984
MK
3293.I /proc/modules
3294A text list of the modules that have been loaded by the system.
3295See also
3296.BR lsmod (8).
3297.TP
fea681da 3298.I /proc/mounts
c1eea65a 3299Before kernel 2.4.19, this file was a list
9ee4a2b6 3300of all the filesystems currently mounted on the system.
ef5b47f6
MK
3301With the introduction of per-process mount namespaces in Linux 2.4.19 (see
3302.BR mount_namespaces (7)),
3303this file became a link to
c1eea65a 3304.IR /proc/self/mounts ,
732e54dd 3305which lists the mount points of the process's own mount namespace.
fea681da 3306The format of this file is documented in
31e9a9ec 3307.BR fstab (5).
fea681da 3308.TP
fea681da 3309.I /proc/mtrr
c13182ef 3310Memory Type Range Registers.
66a9882e 3311See the Linux kernel source file
cfe70b66 3312.I Documentation/mtrr.txt
fea681da
MK
3313for details.
3314.TP
3315.I /proc/net
ccb4bcdc
MK
3316This directory contains various files and subdirectories containing
3317information about the networking layer.
3318The files contain ASCII structures and are,
59a40ed7
MK
3319therefore, readable with
3320.BR cat (1).
c13182ef 3321However, the standard
fea681da
MK
3322.BR netstat (8)
3323suite provides much cleaner access to these files.
2dad4c59 3324.IP
9fb88bc8
MK
3325With the advent of network namespaces,
3326various information relating to the network stack is virtualized (see
3327.BR namespaces (7)).
3328Thus, since Linux 2.6.25,
3329.\" commit e9720acd728a46cb40daa52c99a979f7c4ff195c
3330.IR /proc/net
3331is a symbolic link to the directory
3332.IR /proc/self/net ,
3333which contains the same files and directories as listed below.
3334However, these files and directories now expose information
3335for the network namespace of which the process is a member.
fea681da
MK
3336.TP
3337.I /proc/net/arp
3338This holds an ASCII readable dump of the kernel ARP table used for
c13182ef 3339address resolutions.
01d0a447 3340It will show both dynamically learned and preprogrammed ARP entries.
c13182ef 3341The format is:
c1a022dc
MK
3342.IP
3343.in 7n
3344.EX
fea681da
MK
3345IP address HW type Flags HW address Mask Device
3346192.168.0.50 0x1 0x2 00:50:BF:25:68:F3 * eth0
3347192.168.0.250 0x1 0xc 00:00:00:00:00:00 * eth0
c1a022dc 3348.EE
fea681da 3349.in
c1a022dc 3350.IP
6c04f928 3351Here "IP address" is the IPv4 address of the machine and the "HW type"
c13182ef
MK
3352is the hardware type of the address from RFC\ 826.
3353The flags are the internal
9a67332e
MK
3354flags of the ARP structure (as defined in
3355.IR /usr/include/linux/if_arp.h )
3356and
6c04f928 3357the "HW address" is the data link layer mapping for that IP address if
fea681da
MK
3358it is known.
3359.TP
3360.I /proc/net/dev
c13182ef
MK
3361The dev pseudo-file contains network device status information.
3362This gives
3363the number of received and sent packets, the number of errors and
fea681da 3364collisions
c13182ef
MK
3365and other basic statistics.
3366These are used by the
fea681da 3367.BR ifconfig (8)
c13182ef
MK
3368program to report device status.
3369The format is:
c1a022dc 3370.IP
fea681da 3371.in 1n
c1a022dc 3372.EX
fea681da
MK
3373Inter-| Receive | Transmit
3374 face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
3375 lo: 2776770 11307 0 0 0 0 0 0 2776770 11307 0 0 0 0 0 0
3376 eth0: 1215645 2751 0 0 0 0 0 0 1782404 4324 0 0 0 427 0 0
3377 ppp0: 1622270 5552 1 0 0 0 0 0 354130 5669 0 0 0 0 0 0
3378 tap0: 7714 81 0 0 0 0 0 0 7714 81 0 0 0 0 0 0
c1a022dc 3379.EE
fea681da 3380.in
fea681da
MK
3381.\" .TP
3382.\" .I /proc/net/ipx
3383.\" No information.
3384.\" .TP
3385.\" .I /proc/net/ipx_route
3386.\" No information.
3387.TP
3388.I /proc/net/dev_mcast
3389Defined in
3390.IR /usr/src/linux/net/core/dev_mcast.c :
37d5e699
MK
3391.IP
3392.in +4
3393.EX
9fdfa163 3394indx interface_name dmi_u dmi_g dmi_address
fea681da
MK
33952 eth0 1 0 01005e000001
33963 eth1 1 0 01005e000001
33974 eth2 1 0 01005e000001
37d5e699 3398.EE
fea681da 3399.in
fea681da
MK
3400.TP
3401.I /proc/net/igmp
c13182ef
MK
3402Internet Group Management Protocol.
3403Defined in
fea681da
MK
3404.IR /usr/src/linux/net/core/igmp.c .
3405.TP
3406.I /proc/net/rarp
3407This file uses the same format as the
3408.I arp
3409file and contains the current reverse mapping database used to provide
3410.BR rarp (8)
c13182ef
MK
3411reverse address lookup services.
3412If RARP is not configured into the
fea681da
MK
3413kernel,
3414this file will not be present.
3415.TP
3416.I /proc/net/raw
c13182ef
MK
3417Holds a dump of the RAW socket table.
3418Much of the information is not of
fea681da 3419use
c13182ef 3420apart from debugging.
6c04f928 3421The "sl" value is the kernel hash slot for the
fea681da 3422socket,
6c04f928
MK
3423the "local_address" is the local address and protocol number pair.
3424\&"St" is
c13182ef
MK
3425the internal status of the socket.
3426The "tx_queue" and "rx_queue" are the
fea681da 3427outgoing and incoming data queue in terms of kernel memory usage.
94e9d9fe 3428The "tr", "tm\->when", and "rexmits" fields are not used by RAW.
fdc196f5
MK
3429The "uid"
3430field holds the effective UID of the creator of the socket.
fea681da
MK
3431.\" .TP
3432.\" .I /proc/net/route
3433.\" No information, but looks similar to
3434.\" .BR route (8).
3435.TP
3436.I /proc/net/snmp
c13182ef 3437This file holds the ASCII data needed for the IP, ICMP, TCP, and UDP
fea681da 3438management
763f0e47 3439information bases for an SNMP agent.
fea681da
MK
3440.TP
3441.I /proc/net/tcp
c13182ef
MK
3442Holds a dump of the TCP socket table.
3443Much of the information is not
3444of use apart from debugging.
3445The "sl" value is the kernel hash slot
6beb1671
MK
3446for the socket, the "local_address" is the local address and port number pair.
3447The "rem_address" is the remote address and port number pair
6c04f928
MK
3448(if connected).
3449\&"St" is the internal status of the socket.
3450The "tx_queue" and "rx_queue" are the
fea681da 3451outgoing and incoming data queue in terms of kernel memory usage.
94e9d9fe 3452The "tr", "tm\->when", and "rexmits" fields hold internal information of
f33774c4 3453the kernel socket state and are useful only for debugging.
fdc196f5
MK
3454The "uid"
3455field holds the effective UID of the creator of the socket.
fea681da
MK
3456.TP
3457.I /proc/net/udp
c13182ef
MK
3458Holds a dump of the UDP socket table.
3459Much of the information is not of
3460use apart from debugging.
3461The "sl" value is the kernel hash slot for the
6beb1671
MK
3462socket, the "local_address" is the local address and port number pair.
3463The "rem_address" is the remote address and port number pair
f2d607ee
MK
3464(if connected).
3465"St" is the internal status of the socket.
fea681da 3466The "tx_queue" and "rx_queue" are the outgoing and incoming data queue
c13182ef 3467in terms of kernel memory usage.
94e9d9fe 3468The "tr", "tm\->when", and "rexmits" fields
c13182ef 3469are not used by UDP.
fdc196f5
MK
3470The "uid"
3471field holds the effective UID of the creator of the socket.
fea681da 3472The format is:
c1a022dc 3473.IP
fea681da 3474.in 1n
c1a022dc 3475.EX
94e9d9fe 3476sl local_address rem_address st tx_queue rx_queue tr rexmits tm\->when uid
fea681da
MK
3477 1: 01642C89:0201 0C642C89:03FF 01 00000000:00000001 01:000071BA 00000000 0
3478 1: 00000000:0801 00000000:0000 0A 00000000:00000000 00:00000000 6F000100 0
3479 1: 00000000:0201 00000000:0000 0A 00000000:00000000 00:00000000 00000000 0
c1a022dc 3480.EE
fea681da 3481.in
c1a022dc 3482.IP
fea681da
MK
3483.TP
3484.I /proc/net/unix
008f1ecc 3485Lists the UNIX domain sockets present within the system and their
c13182ef
MK
3486status.
3487The format is:
c1a022dc
MK
3488.IP
3489.in 1n
3490.EX
fea681da
MK
3491Num RefCount Protocol Flags Type St Path
3492 0: 00000002 00000000 00000000 0001 03
3493 1: 00000001 00000000 00010000 0001 01 /dev/printer
c1a022dc
MK
3494.EE
3495.in
3496.IP
756f55f6
MK
3497The fields are as follows:
3498.RS
3499.TP 10
3500.IR Num :
3501the kernel table slot number.
3502.TP
3503.IR RefCount :
3504the number of users of the socket.
3505.TP
3506.IR Protocol :
3507currently always 0.
3508.TP
3509.IR Flags :
3510the internal kernel flags holding the status of the socket.
3511.TP
3512.IR Type :
a405066e
MK
3513the socket type.
3514For
3515.BR SOCK_STREAM
3516sockets, this is 0001; for
3517.BR SOCK_DGRAM
3518sockets, it is 0002; and for
3519.BR SOCK_SEQPACKET
3520sockets, it is 0005.
756f55f6
MK
3521.TP
3522.IR St :
3523the internal state of the socket.
3524.TP
3525.IR Path :
3526the bound path (if any) of the socket.
8f8a46fb
MK
3527Sockets in the abstract namespace are included in the list,
3528and are shown with a
3529.I Path
3530that commences with the character '@'.
756f55f6 3531.RE
fea681da 3532.TP
ed8de0e4 3533.I /proc/net/netfilter/nfnetlink_queue
6f858d5c 3534This file contains information about netfilter user-space queueing, if used.
f2d607ee
MK
3535Each line represents a queue.
3536Queues that have not been subscribed to
6f858d5c 3537by user space are not shown.
37d5e699
MK
3538.IP
3539.in +4n
3540.EX
ed8de0e4
FW
3541 1 4207 0 2 65535 0 0 0 1
3542 (1) (2) (3)(4) (5) (6) (7) (8)
37d5e699
MK
3543.EE
3544.in
ed8de0e4
FW
3545.IP
3546The fields in each line are:
3547.RS 7
3548.TP 5
3549(1)
f2d607ee
MK
3550The ID of the queue.
3551This matches what is specified in the
ed8de0e4
FW
3552.B \-\-queue\-num
3553or
3554.B \-\-queue\-balance
3555options to the
3556.BR iptables (8)
f2d607ee
MK
3557NFQUEUE target.
3558See
ed8de0e4
FW
3559.BR iptables-extensions (8)
3560for more information.
3561.TP
3562(2)
7672e08e 3563The netlink port ID subscribed to the queue.
ed8de0e4
FW
3564.TP
3565(3)
3566The number of packets currently queued and waiting to be processed by
3567the application.
3568.TP
3569(4)
f2d607ee
MK
3570The copy mode of the queue.
3571It is either 1 (metadata only) or 2
6f858d5c 3572(also copy payload data to user space).
ed8de0e4
FW
3573.TP
3574(5)
1dea597b 3575Copy range; that is, how many bytes of packet payload should be copied to
6f858d5c 3576user space at most.
ed8de0e4
FW
3577.TP
3578(6)
f2d607ee
MK
3579queue dropped.
3580Number of packets that had to be dropped by the kernel because
6f858d5c 3581too many packets are already waiting for user space to send back the mandatory
ed8de0e4
FW
3582accept/drop verdicts.
3583.TP
3584(7)
f2d607ee
MK
3585queue user dropped.
3586Number of packets that were dropped within the netlink
3587subsystem.
3588Such drops usually happen when the corresponding socket buffer is
6f858d5c 3589full; that is, user space is not able to read messages fast enough.
ed8de0e4
FW
3590.TP
3591(8)
f2d607ee
MK
3592sequence number.
3593Every queued packet is associated with a (32-bit)
ed8de0e4
FW
3594monotonically-increasing sequence number.
3595This shows the ID of the most recent packet queued.
3596.RE
3597.IP
f33774c4 3598The last number exists only for compatibility reasons and is always 1.
ed8de0e4 3599.TP
fea681da 3600.I /proc/partitions
f042d149
MK
3601Contains the major and minor numbers of each partition as well as the number
3602of 1024-byte blocks and the partition name.
fea681da
MK
3603.TP
3604.I /proc/pci
3605This is a listing of all PCI devices found during kernel initialization
3606and their configuration.
2dad4c59 3607.IP
59a40ed7
MK
3608This file has been deprecated in favor of a new
3609.I /proc
2990d781
MK
3610interface for PCI
3611.RI ( /proc/bus/pci ).
3612It became optional in Linux 2.2 (available with
3613.B CONFIG_PCI_OLD_PROC
3614set at kernel compilation).
24b74457 3615It became once more nonoptionally enabled in Linux 2.4.
2990d781
MK
3616Next, it was deprecated in Linux 2.6 (still available with
3617.B CONFIG_PCI_LEGACY_PROC
3618set), and finally removed altogether since Linux 2.6.17.
43d42cc0 3619.\" FIXME Document /proc/sched_debug (since Linux 2.6.23)
69119dc7 3620.\" See also /proc/[pid]/sched
caea7868
MK
3621.TP
3622.IR /proc/profile " (since Linux 2.4)"
3623This file is present only if the kernel was booted with the
3624.I profile=1
3625command-line option.
3626It exposes kernel profiling information in a binary format for use by
3627.BR readprofile (1).
3628Writing (e.g., an empty string) to this file resets the profiling counters;
3629on some architectures,
3630writing a binary integer "profiling multiplier" of size
3631.IR sizeof(int)
8a3ac89a 3632sets the profiling interrupt frequency.
fea681da
MK
3633.TP
3634.I /proc/scsi
59a40ed7
MK
3635A directory with the
3636.I scsi
3637mid-level pseudo-file and various SCSI low-level
2990d781
MK
3638driver directories,
3639which contain a file for each SCSI host in this system, all of
c13182ef
MK
3640which give the status of some part of the SCSI IO subsystem.
3641These files contain ASCII structures and are, therefore, readable with
2990d781 3642.BR cat (1).
2dad4c59 3643.IP
c13182ef 3644You can also write to some of the files to reconfigure the subsystem or
59a40ed7 3645switch certain features on or off.
fea681da
MK
3646.TP
3647.I /proc/scsi/scsi
c13182ef 3648This is a listing of all SCSI devices known to the kernel.
59a40ed7 3649The listing is similar to the one seen during bootup.
c13182ef 3650scsi currently supports only the \fIadd-single-device\fP command which
59a40ed7 3651allows root to add a hotplugged device to the list of known devices.
2dad4c59 3652.IP
59a40ed7 3653The command
37d5e699 3654.IP
59a40ed7 3655.in +4n
37d5e699 3656.EX
59a40ed7 3657echo \(aqscsi add-single-device 1 0 5 0\(aq > /proc/scsi/scsi
37d5e699 3658.EE
59a40ed7 3659.in
37d5e699 3660.IP
c13182ef
MK
3661will cause
3662host scsi1 to scan on SCSI channel 0 for a device on ID 5 LUN 0.
3663If there
fea681da
MK
3664is already a device known on this address or the address is invalid, an
3665error will be returned.
3666.TP
3667.I /proc/scsi/[drivername]
c13182ef
MK
3668\fI[drivername]\fP can currently be NCR53c7xx, aha152x, aha1542, aha1740,
3669aic7xxx, buslogic, eata_dma, eata_pio, fdomain, in2000, pas16, qlogic,
3670scsi_debug, seagate, t128, u15-24f, ultrastore, or wd7000.
3671These directories show up for all drivers that registered at least one
59a40ed7 3672SCSI HBA.
c13182ef 3673Every directory contains one file per registered host.
59a40ed7 3674Every host-file is named after the number the host was assigned during
c13182ef 3675initialization.
2dad4c59 3676.IP
c13182ef 3677Reading these files will usually show driver and host configuration,
f78ed33a 3678statistics, and so on.
2dad4c59 3679.IP
fea681da
MK
3680Writing to these files allows different things on different hosts.
3681For example, with the \fIlatency\fP and \fInolatency\fP commands,
3682root can switch on and off command latency measurement code in the
c13182ef
MK
3683eata_dma driver.
3684With the \fIlockup\fP and \fIunlock\fP commands,
3685root can control bus lockups simulated by the scsi_debug driver.
fea681da
MK
3686.TP
3687.I /proc/self
59a40ed7
MK
3688This directory refers to the process accessing the
3689.I /proc
9ee4a2b6 3690filesystem,
59a40ed7
MK
3691and is identical to the
3692.I /proc
3693directory named by the process ID of the same process.
fea681da
MK
3694.TP
3695.I /proc/slabinfo
c13182ef 3696Information about kernel caches.
c13182ef 3697See
fea681da
MK
3698.BR slabinfo (5)
3699for details.
3700.TP
3701.I /proc/stat
c13182ef
MK
3702kernel/system statistics.
3703Varies with architecture.
3704Common
fea681da
MK
3705entries include:
3706.RS
3707.TP
46f6dbe8
ES
3708.I cpu 10132153 290696 3084719 46828483 16683 0 25195 0 175628 0
3709.TQ
3710.I cpu0 1393280 32966 572056 13343292 6130 0 17875 0 23933 0
bfbfcd18 3711The amount of time, measured in units of
268f000b
MK
3712USER_HZ (1/100ths of a second on most architectures, use
3713.IR sysconf(_SC_CLK_TCK)
3714to obtain the right value),
b81087ab 3715.\" 1024 on Alpha and ia64
46f6dbe8
ES
3716that the system ("cpu" line) or the specific CPU ("cpu\fIN\fR" line)
3717spent in various states:
ae3b8047
MK
3718.RS
3719.TP
3720.I user
ea0841f6 3721(1) Time spent in user mode.
ae3b8047
MK
3722.TP
3723.I nice
0633f951 3724(2) Time spent in user mode with low priority (nice).
9f1b9726 3725.TP
ae3b8047 3726.I system
0633f951 3727(3) Time spent in system mode.
ae3b8047
MK
3728.TP
3729.I idle
ea0841f6 3730(4) Time spent in the idle task.
bea08fec 3731.\" FIXME . Actually, the following info about the /proc/stat 'cpu' field
e04a1f93
MK
3732.\" does not seem to be quite right (at least in 2.6.12 or 3.6):
3733.\" the idle time in /proc/uptime does not quite match this value
3734This value should be USER_HZ times the
4cb1deb7
MK
3735second entry in the
3736.I /proc/uptime
3737pseudo-file.
ae3b8047
MK
3738.TP
3739.IR iowait " (since Linux 2.5.41)"
ea0841f6 3740(5) Time waiting for I/O to complete.
e0a73a31
MK
3741This value is not reliable, for the following reasons:
3742.\" See kernel commit 9c240d757658a3ae9968dd309e674c61f07c7f48
3743.RS
3744.IP 1. 3
3745The CPU will not wait for I/O to complete;
3746iowait is the time that a task is waiting for I/O to complete.
3747When a CPU goes into idle state for outstanding task I/O,
3748another task will be scheduled on this CPU.
3749.IP 2.
3750On a multi-core CPU,
3751the task waiting for I/O to complete is not running on any CPU,
3752so the iowait of each CPU is difficult to calculate.
3753.IP 3.
3754The value in this field may
3755.I decrease
3756in certain conditions.
2d3fb75b 3757.RE
ae3b8047
MK
3758.TP
3759.IR irq " (since Linux 2.6.0-test4)"
ea0841f6 3760(6) Time servicing interrupts.
ae3b8047 3761.TP
0633f951 3762.IR softirq " (since Linux 2.6.0-test4)"
ea0841f6 3763(7) Time servicing softirqs.
ae3b8047
MK
3764.TP
3765.IR steal " (since Linux 2.6.11)"
ea0841f6 3766(8) Stolen time, which is the time spent in other operating systems when
9de1f6cc 3767running in a virtualized environment
ae3b8047
MK
3768.TP
3769.IR guest " (since Linux 2.6.24)"
0633f951 3770(9) Time spent running a virtual CPU for guest
afef1764 3771operating systems under the control of the Linux kernel.
14c06953 3772.\" See Changelog entry for 5e84cfde51cf303d368fcb48f22059f37b3872de
d4fd4120
MK
3773.TP
3774.IR guest_nice " (since Linux 2.6.33)"
3775.\" commit ce0e7b28fb75cb003cfc8d0238613aaf1c55e797
3776(10) Time spent running a niced guest (virtual CPU for guest
3777operating systems under the control of the Linux kernel).
ae3b8047 3778.RE
fea681da
MK
3779.TP
3780\fIpage 5741 1808\fP
3781The number of pages the system paged in and the number that were paged
3782out (from disk).
3783.TP
3784\fIswap 1 0\fP
3785The number of swap pages that have been brought in and out.
3786.TP
bea08fec 3787.\" FIXME . The following is not the full picture for the 'intr' of
777f5a9e 3788.\" /proc/stat on 2.6:
fea681da 3789\fIintr 1462898\fP
bfbfcd18
MK
3790This line shows counts of interrupts serviced since boot time,
3791for each of the possible system interrupts.
d63ff76e 3792The first column is the total of all interrupts serviced
d6a56978
MK
3793including unnumbered architecture specific interrupts;
3794each subsequent column is the total for that particular numbered interrupt.
d63ff76e 3795Unnumbered interrupts are not shown, only summed into the total.
fea681da
MK
3796.TP
3797\fIdisk_io: (2,0):(31,30,5764,1,2) (3,0):\fP...
636297e9 3798(major,disk_idx):(noinfo, read_io_ops, blks_read, write_io_ops, blks_written)
bfbfcd18
MK
3799.br
3800(Linux 2.4 only)
fea681da
MK
3801.TP
3802\fIctxt 115315\fP
3803The number of context switches that the system underwent.
3804.TP
3805\fIbtime 769041601\fP
f49c451a 3806boot time, in seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
fea681da
MK
3807.TP
3808\fIprocesses 86031\fP
3809Number of forks since boot.
bfbfcd18
MK
3810.TP
3811\fIprocs_running 6\fP
3812Number of processes in runnable state.
5fab2e7c 3813(Linux 2.5.45 onward.)
bfbfcd18
MK
3814.TP
3815\fIprocs_blocked 2\fP
3816Number of processes blocked waiting for I/O to complete.
5fab2e7c 3817(Linux 2.5.45 onward.)
fea681da
MK
3818.RE
3819.TP
3820.I /proc/swaps
c13182ef
MK
3821Swap areas in use.
3822See also
fea681da
MK
3823.BR swapon (8).
3824.TP
3825.I /proc/sys
3826This directory (present since 1.3.57) contains a number of files
3827and subdirectories corresponding to kernel variables.
3828These variables can be read and sometimes modified using
9ee4a2b6 3829the \fI/proc\fP filesystem, and the (deprecated)
fea681da 3830.BR sysctl (2)
c13182ef 3831system call.
2dad4c59 3832.IP
e8aa7100 3833String values may be terminated by either \(aq\\0\(aq or \(aq\\n\(aq.
2dad4c59 3834.IP
84ff8c1e
HS
3835Integer and long values may be written either in decimal or in
3836hexadecimal notation (e.g. 0x3FFF).
e8aa7100
MK
3837When writing multiple integer or long values, these may be separated
3838by any of the following whitespace characters:
3839\(aq\ \(aq, \(aq\\t\(aq, or \(aq\\n\(aq.
3840Using other separators leads to the error
84ff8c1e 3841.BR EINVAL .
fea681da 3842.TP
6ab7c0aa 3843.IR /proc/sys/abi " (since Linux 2.4.10)"
fea681da 3844This directory may contain files with application binary information.
6ab7c0aa 3845.\" On some systems, it is not present.
66a9882e 3846See the Linux kernel source file
6ab7c0aa
MK
3847.I Documentation/sysctl/abi.txt
3848for more information.
fea681da
MK
3849.TP
3850.I /proc/sys/debug
3851This directory may be empty.
3852.TP
3853.I /proc/sys/dev
e2badfdf 3854This directory contains device-specific information (e.g.,
9a67332e 3855.IR dev/cdrom/info ).
fea681da
MK
3856On
3857some systems, it may be empty.
3858.TP
3859.I /proc/sys/fs
49236d3c 3860This directory contains the files and subdirectories for kernel variables
9ee4a2b6 3861related to filesystems.
fea681da
MK
3862.TP
3863.I /proc/sys/fs/binfmt_misc
c13182ef 3864Documentation for files in this directory can be found
a2923df0
MK
3865in the Linux kernel source in the file
3866.IR Documentation/admin-guide/binfmt-misc.rst
3867(or in
3868.IR Documentation/binfmt_misc.txt
3869on older kernels).
fea681da 3870.TP
59a40ed7
MK
3871.IR /proc/sys/fs/dentry-state " (since Linux 2.2)"
3872This file contains information about the status of the
3873directory cache (dcache).
3874The file contains six numbers,
c13182ef 3875.IR nr_dentry ", " nr_unused ", " age_limit " (age in seconds), "
59a40ed7 3876.I want_pages
fea681da 3877(pages requested by system) and two dummy values.
59a40ed7
MK
3878.RS
3879.IP * 2
3880.I nr_dentry
3881is the number of allocated dentries (dcache entries).
3882This field is unused in Linux 2.2.
3883.IP *
3884.I nr_unused
3885is the number of unused dentries.
3886.IP *
3887.I age_limit
3888.\" looks like this is unused in kernels 2.2 to 2.6
3889is the age in seconds after which dcache entries
3890can be reclaimed when memory is short.
3891.IP *
3892.I want_pages
3893.\" looks like this is unused in kernels 2.2 to 2.6
c7094399 3894is nonzero when the kernel has called shrink_dcache_pages() and the
fea681da 3895dcache isn't pruned yet.
59a40ed7 3896.RE
fea681da
MK
3897.TP
3898.I /proc/sys/fs/dir-notify-enable
3899This file can be used to disable or enable the
3900.I dnotify
3901interface described in
3902.BR fcntl (2)
3903on a system-wide basis.
3904A value of 0 in this file disables the interface,
3905and a value of 1 enables it.
3906.TP
3907.I /proc/sys/fs/dquot-max
3908This file shows the maximum number of cached disk quota entries.
3909On some (2.4) systems, it is not present.
3910If the number of free cached disk quota entries is very low and
3911you have some awesome number of simultaneous system users,
3912you might want to raise the limit.
3913.TP
3914.I /proc/sys/fs/dquot-nr
3915This file shows the number of allocated disk quota
3916entries and the number of free disk quota entries.
3917.TP
24cb4a4b 3918.IR /proc/sys/fs/epoll " (since Linux 2.6.28)"
242b46af
MK
3919This directory contains the file
3920.IR max_user_watches ,
24cb4a4b
MK
3921which can be used to limit the amount of kernel memory consumed by the
3922.I epoll
3923interface.
3924For further details, see