3 * Utility to get per-pid and per-tgid delay accounting statistics
4 * Also illustrates usage of the taskstats interface
6 * Copyright (C) Shailabh Nagar, IBM Corp. 2005
7 * Copyright (C) Balbir Singh, IBM Corp. 2006
8 * Copyright (c) Jay Lan, SGI. 2006
11 * gcc -I/usr/src/linux/include getdelays.c -o getdelays
21 #include <sys/types.h>
23 #include <sys/socket.h>
26 #include <linux/genetlink.h>
27 #include <linux/taskstats.h>
28 #include <linux/cgroupstats.h>
31 * Generic macros for dealing with netlink sockets. Might be duplicated
32 * elsewhere. It is recommended that commercial grade applications use
33 * libnl or libnetlink and use the interfaces provided by the library
35 #define GENLMSG_DATA(glh) ((void *)(NLMSG_DATA(glh) + GENL_HDRLEN))
36 #define GENLMSG_PAYLOAD(glh) (NLMSG_PAYLOAD(glh, 0) - GENL_HDRLEN)
37 #define NLA_DATA(na) ((void *)((char*)(na) + NLA_HDRLEN))
38 #define NLA_PAYLOAD(len) (len - NLA_HDRLEN)
40 #define err(code, fmt, arg...) \
42 fprintf(stderr, fmt, ##arg); \
51 int print_io_accounting
;
52 int print_task_context_switch_counts
;
55 #define PRINTF(fmt, arg...) { \
61 /* Maximum size of response requested or message sent */
62 #define MAX_MSG_SIZE 1024
63 /* Maximum number of cpus expected to be specified in a cpumask */
69 char buf
[MAX_MSG_SIZE
];
72 char cpumask
[100+6*MAX_CPUS
];
74 static void usage(void)
76 fprintf(stderr
, "getdelays [-dilv] [-w logfile] [-r bufsize] "
77 "[-m cpumask] [-t tgid] [-p pid]\n");
78 fprintf(stderr
, " -d: print delayacct stats\n");
79 fprintf(stderr
, " -i: print IO accounting (works only with -p)\n");
80 fprintf(stderr
, " -l: listen forever\n");
81 fprintf(stderr
, " -v: debug on\n");
82 fprintf(stderr
, " -C: container path\n");
86 * Create a raw netlink socket and bind
88 static int create_nl_socket(int protocol
)
91 struct sockaddr_nl local
;
93 fd
= socket(AF_NETLINK
, SOCK_RAW
, protocol
);
98 if (setsockopt(fd
, SOL_SOCKET
, SO_RCVBUF
,
99 &rcvbufsz
, sizeof(rcvbufsz
)) < 0) {
100 fprintf(stderr
, "Unable to set socket rcv buf size "
106 memset(&local
, 0, sizeof(local
));
107 local
.nl_family
= AF_NETLINK
;
109 if (bind(fd
, (struct sockaddr
*) &local
, sizeof(local
)) < 0)
119 static int send_cmd(int sd
, __u16 nlmsg_type
, __u32 nlmsg_pid
,
120 __u8 genl_cmd
, __u16 nla_type
,
121 void *nla_data
, int nla_len
)
124 struct sockaddr_nl nladdr
;
128 struct msgtemplate msg
;
130 msg
.n
.nlmsg_len
= NLMSG_LENGTH(GENL_HDRLEN
);
131 msg
.n
.nlmsg_type
= nlmsg_type
;
132 msg
.n
.nlmsg_flags
= NLM_F_REQUEST
;
134 msg
.n
.nlmsg_pid
= nlmsg_pid
;
135 msg
.g
.cmd
= genl_cmd
;
137 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
138 na
->nla_type
= nla_type
;
139 na
->nla_len
= nla_len
+ 1 + NLA_HDRLEN
;
140 memcpy(NLA_DATA(na
), nla_data
, nla_len
);
141 msg
.n
.nlmsg_len
+= NLMSG_ALIGN(na
->nla_len
);
144 buflen
= msg
.n
.nlmsg_len
;
145 memset(&nladdr
, 0, sizeof(nladdr
));
146 nladdr
.nl_family
= AF_NETLINK
;
147 while ((r
= sendto(sd
, buf
, buflen
, 0, (struct sockaddr
*) &nladdr
,
148 sizeof(nladdr
))) < buflen
) {
152 } else if (errno
!= EAGAIN
)
160 * Probe the controller in genetlink to find the family id
161 * for the TASKSTATS family
163 static int get_family_id(int sd
)
175 strcpy(name
, TASKSTATS_GENL_NAME
);
176 rc
= send_cmd(sd
, GENL_ID_CTRL
, getpid(), CTRL_CMD_GETFAMILY
,
177 CTRL_ATTR_FAMILY_NAME
, (void *)name
,
178 strlen(TASKSTATS_GENL_NAME
)+1);
180 rep_len
= recv(sd
, &ans
, sizeof(ans
), 0);
181 if (ans
.n
.nlmsg_type
== NLMSG_ERROR
||
182 (rep_len
< 0) || !NLMSG_OK((&ans
.n
), rep_len
))
185 na
= (struct nlattr
*) GENLMSG_DATA(&ans
);
186 na
= (struct nlattr
*) ((char *) na
+ NLA_ALIGN(na
->nla_len
));
187 if (na
->nla_type
== CTRL_ATTR_FAMILY_ID
) {
188 id
= *(__u16
*) NLA_DATA(na
);
193 static void print_delayacct(struct taskstats
*t
)
195 printf("\n\nCPU %15s%15s%15s%15s\n"
196 " %15llu%15llu%15llu%15llu\n"
203 "count", "real total", "virtual total", "delay total",
204 (unsigned long long)t
->cpu_count
,
205 (unsigned long long)t
->cpu_run_real_total
,
206 (unsigned long long)t
->cpu_run_virtual_total
,
207 (unsigned long long)t
->cpu_delay_total
,
208 "count", "delay total",
209 (unsigned long long)t
->blkio_count
,
210 (unsigned long long)t
->blkio_delay_total
,
211 "count", "delay total",
212 (unsigned long long)t
->swapin_count
,
213 (unsigned long long)t
->swapin_delay_total
,
214 "count", "delay total",
215 (unsigned long long)t
->freepages_count
,
216 (unsigned long long)t
->freepages_delay_total
);
219 static void task_context_switch_counts(struct taskstats
*t
)
221 printf("\n\nTask %15s%15s\n"
223 "voluntary", "nonvoluntary",
224 (unsigned long long)t
->nvcsw
, (unsigned long long)t
->nivcsw
);
227 static void print_cgroupstats(struct cgroupstats
*c
)
229 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
230 "uninterruptible %llu\n", (unsigned long long)c
->nr_sleeping
,
231 (unsigned long long)c
->nr_io_wait
,
232 (unsigned long long)c
->nr_running
,
233 (unsigned long long)c
->nr_stopped
,
234 (unsigned long long)c
->nr_uninterruptible
);
238 static void print_ioacct(struct taskstats
*t
)
240 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
242 (unsigned long long)t
->read_bytes
,
243 (unsigned long long)t
->write_bytes
,
244 (unsigned long long)t
->cancelled_write_bytes
);
247 int main(int argc
, char *argv
[])
249 int c
, rc
, rep_len
, aggr_len
, len2
;
250 int cmd_type
= TASKSTATS_CMD_ATTR_UNSPEC
;
264 char *logfile
= NULL
;
266 int containerset
= 0;
267 char containerpath
[1024];
270 struct msgtemplate msg
;
273 c
= getopt(argc
, argv
, "qdiw:r:m:t:p:vlC:");
279 printf("print delayacct stats ON\n");
283 printf("printing IO accounting\n");
284 print_io_accounting
= 1;
287 printf("printing task/process context switch rates\n");
288 print_task_context_switch_counts
= 1;
292 strncpy(containerpath
, optarg
, strlen(optarg
) + 1);
295 logfile
= strdup(optarg
);
296 printf("write to file %s\n", logfile
);
300 rcvbufsz
= atoi(optarg
);
301 printf("receive buf size %d\n", rcvbufsz
);
303 err(1, "Invalid rcv buf size\n");
306 strncpy(cpumask
, optarg
, sizeof(cpumask
));
308 printf("cpumask %s maskset %d\n", cpumask
, maskset
);
313 err(1, "Invalid tgid\n");
314 cmd_type
= TASKSTATS_CMD_ATTR_TGID
;
319 err(1, "Invalid pid\n");
320 cmd_type
= TASKSTATS_CMD_ATTR_PID
;
323 printf("debug on\n");
327 printf("listen forever\n");
337 fd
= open(logfile
, O_WRONLY
| O_CREAT
| O_TRUNC
,
338 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
);
340 perror("Cannot open output file\n");
345 if ((nl_sd
= create_nl_socket(NETLINK_GENERIC
)) < 0)
346 err(1, "error creating Netlink socket\n");
350 id
= get_family_id(nl_sd
);
352 fprintf(stderr
, "Error getting family id, errno %d\n", errno
);
355 PRINTF("family id %d\n", id
);
358 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
359 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
,
360 &cpumask
, strlen(cpumask
) + 1);
361 PRINTF("Sent register cpumask, retval %d\n", rc
);
363 fprintf(stderr
, "error sending register cpumask\n");
368 if (tid
&& containerset
) {
369 fprintf(stderr
, "Select either -t or -C, not both\n");
374 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
375 cmd_type
, &tid
, sizeof(__u32
));
376 PRINTF("Sent pid/tgid, retval %d\n", rc
);
378 fprintf(stderr
, "error sending tid/tgid cmd\n");
384 cfd
= open(containerpath
, O_RDONLY
);
386 perror("error opening container file");
389 rc
= send_cmd(nl_sd
, id
, mypid
, CGROUPSTATS_CMD_GET
,
390 CGROUPSTATS_CMD_ATTR_FD
, &cfd
, sizeof(__u32
));
392 perror("error sending cgroupstats command");
396 if (!maskset
&& !tid
&& !containerset
) {
404 rep_len
= recv(nl_sd
, &msg
, sizeof(msg
), 0);
405 PRINTF("received %d bytes\n", rep_len
);
408 fprintf(stderr
, "nonfatal reply error: errno %d\n",
412 if (msg
.n
.nlmsg_type
== NLMSG_ERROR
||
413 !NLMSG_OK((&msg
.n
), rep_len
)) {
414 struct nlmsgerr
*err
= NLMSG_DATA(&msg
);
415 fprintf(stderr
, "fatal reply error, errno %d\n",
420 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
421 sizeof(struct nlmsghdr
), msg
.n
.nlmsg_len
, rep_len
);
424 rep_len
= GENLMSG_PAYLOAD(&msg
.n
);
426 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
429 while (len
< rep_len
) {
430 len
+= NLA_ALIGN(na
->nla_len
);
431 switch (na
->nla_type
) {
432 case TASKSTATS_TYPE_AGGR_TGID
:
434 case TASKSTATS_TYPE_AGGR_PID
:
435 aggr_len
= NLA_PAYLOAD(na
->nla_len
);
437 /* For nested attributes, na follows */
438 na
= (struct nlattr
*) NLA_DATA(na
);
440 while (len2
< aggr_len
) {
441 switch (na
->nla_type
) {
442 case TASKSTATS_TYPE_PID
:
443 rtid
= *(int *) NLA_DATA(na
);
445 printf("PID\t%d\n", rtid
);
447 case TASKSTATS_TYPE_TGID
:
448 rtid
= *(int *) NLA_DATA(na
);
450 printf("TGID\t%d\n", rtid
);
452 case TASKSTATS_TYPE_STATS
:
455 print_delayacct((struct taskstats
*) NLA_DATA(na
));
456 if (print_io_accounting
)
457 print_ioacct((struct taskstats
*) NLA_DATA(na
));
458 if (print_task_context_switch_counts
)
459 task_context_switch_counts((struct taskstats
*) NLA_DATA(na
));
461 if (write(fd
, NLA_DATA(na
), na
->nla_len
) < 0) {
462 err(1,"write error\n");
469 fprintf(stderr
, "Unknown nested"
474 len2
+= NLA_ALIGN(na
->nla_len
);
475 na
= (struct nlattr
*) ((char *) na
+ len2
);
479 case CGROUPSTATS_TYPE_CGROUP_STATS
:
480 print_cgroupstats(NLA_DATA(na
));
483 fprintf(stderr
, "Unknown nla_type %d\n",
487 na
= (struct nlattr
*) (GENLMSG_DATA(&msg
) + len
);
492 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
493 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
,
494 &cpumask
, strlen(cpumask
) + 1);
495 printf("Sent deregister mask, retval %d\n", rc
);
497 err(rc
, "error sending deregister cpumask\n");