blob: acc6b4f37fc7bb517b3c6856215f9fa0c58cfb4f [file] [log] [blame]
Shailabh Nagarc7572492006-07-14 00:24:40 -07001Per-task statistics interface
2-----------------------------
3
4
5Taskstats is a netlink-based interface for sending per-task and
6per-process statistics from the kernel to userspace.
7
8Taskstats was designed for the following benefits:
9
10- efficiently provide statistics during lifetime of a task and on its exit
11- unified interface for multiple accounting subsystems
12- extensibility for use by future accounting patches
13
14Terminology
15-----------
16
17"pid", "tid" and "task" are used interchangeably and refer to the standard
18Linux task defined by struct task_struct. per-pid stats are the same as
19per-task stats.
20
21"tgid", "process" and "thread group" are used interchangeably and refer to the
22tasks that share an mm_struct i.e. the traditional Unix process. Despite the
23use of tgid, there is no special treatment for the task that is thread group
24leader - a process is deemed alive as long as it has any task belonging to it.
25
26Usage
27-----
28
29To get statistics during task's lifetime, userspace opens a unicast netlink
30socket (NETLINK_GENERIC family) and sends commands specifying a pid or a tgid.
31The response contains statistics for a task (if pid is specified) or the sum of
32statistics for all tasks of the process (if tgid is specified).
33
34To obtain statistics for tasks which are exiting, userspace opens a multicast
35netlink socket. Each time a task exits, two records are sent by the kernel to
36each listener on the multicast socket. The first the per-pid task's statistics
37and the second is the sum for all tasks of the process to which the task
38belongs (the task does not need to be the thread group leader). The need for
39per-tgid stats to be sent for each exiting task is explained in the per-tgid
40stats section below.
41
Shailabh Nagara3baf642006-07-14 00:24:42 -070042getdelays.c is a simple utility demonstrating usage of the taskstats interface
43for reporting delay accounting statistics.
Shailabh Nagarc7572492006-07-14 00:24:40 -070044
45Interface
46---------
47
48The user-kernel interface is encapsulated in include/linux/taskstats.h
49
50To avoid this documentation becoming obsolete as the interface evolves, only
51an outline of the current version is given. taskstats.h always overrides the
52description here.
53
54struct taskstats is the common accounting structure for both per-pid and
55per-tgid data. It is versioned and can be extended by each accounting subsystem
56that is added to the kernel. The fields and their semantics are defined in the
57taskstats.h file.
58
59The data exchanged between user and kernel space is a netlink message belonging
60to the NETLINK_GENERIC family and using the netlink attributes interface.
61The messages are in the format
62
63 +----------+- - -+-------------+-------------------+
64 | nlmsghdr | Pad | genlmsghdr | taskstats payload |
65 +----------+- - -+-------------+-------------------+
66
67
68The taskstats payload is one of the following three kinds:
69
701. Commands: Sent from user to kernel. The payload is one attribute, of type
71TASKSTATS_CMD_ATTR_PID/TGID, containing a u32 pid or tgid in the attribute
72payload. The pid/tgid denotes the task/process for which userspace wants
73statistics.
74
752. Response for a command: sent from the kernel in response to a userspace
76command. The payload is a series of three attributes of type:
77
78a) TASKSTATS_TYPE_AGGR_PID/TGID : attribute containing no payload but indicates
79a pid/tgid will be followed by some stats.
80
81b) TASKSTATS_TYPE_PID/TGID: attribute whose payload is the pid/tgid whose stats
82is being returned.
83
84c) TASKSTATS_TYPE_STATS: attribute with a struct taskstsats as payload. The
85same structure is used for both per-pid and per-tgid stats.
86
873. New message sent by kernel whenever a task exits. The payload consists of a
88 series of attributes of the following type:
89
90a) TASKSTATS_TYPE_AGGR_PID: indicates next two attributes will be pid+stats
91b) TASKSTATS_TYPE_PID: contains exiting task's pid
92c) TASKSTATS_TYPE_STATS: contains the exiting task's per-pid stats
93d) TASKSTATS_TYPE_AGGR_TGID: indicates next two attributes will be tgid+stats
94e) TASKSTATS_TYPE_TGID: contains tgid of process to which task belongs
95f) TASKSTATS_TYPE_STATS: contains the per-tgid stats for exiting task's process
96
97
98per-tgid stats
99--------------
100
101Taskstats provides per-process stats, in addition to per-task stats, since
102resource management is often done at a process granularity and aggregating task
103stats in userspace alone is inefficient and potentially inaccurate (due to lack
104of atomicity).
105
106However, maintaining per-process, in addition to per-task stats, within the
107kernel has space and time overheads. Hence the taskstats implementation
108dynamically sums up the per-task stats for each task belonging to a process
109whenever per-process stats are needed.
110
111Not maintaining per-tgid stats creates a problem when userspace is interested
112in getting these stats when the process dies i.e. the last thread of
113a process exits. It isn't possible to simply return some aggregated per-process
114statistic from the kernel.
115
116The approach taken by taskstats is to return the per-tgid stats *each* time
117a task exits, in addition to the per-pid stats for that task. Userspace can
118maintain task<->process mappings and use them to maintain the per-process stats
119in userspace, updating the aggregate appropriately as the tasks of a process
120exit.
121
122Extending taskstats
123-------------------
124
125There are two ways to extend the taskstats interface to export more
126per-task/process stats as patches to collect them get added to the kernel
127in future:
128
1291. Adding more fields to the end of the existing struct taskstats. Backward
130 compatibility is ensured by the version number within the
131 structure. Userspace will use only the fields of the struct that correspond
132 to the version its using.
133
1342. Defining separate statistic structs and using the netlink attributes
135 interface to return them. Since userspace processes each netlink attribute
136 independently, it can always ignore attributes whose type it does not
137 understand (because it is using an older version of the interface).
138
139
140Choosing between 1. and 2. is a matter of trading off flexibility and
141overhead. If only a few fields need to be added, then 1. is the preferable
142path since the kernel and userspace don't need to incur the overhead of
143processing new netlink attributes. But if the new fields expand the existing
144struct too much, requiring disparate userspace accounting utilities to
145unnecessarily receive large structures whose fields are of no interest, then
146extending the attributes structure would be worthwhile.
147
148----