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>
27 #include <linux/genetlink.h>
28 #include <linux/taskstats.h>
29 #include <linux/cgroupstats.h>
32 * Generic macros for dealing with netlink sockets. Might be duplicated
33 * elsewhere. It is recommended that commercial grade applications use
34 * libnl or libnetlink and use the interfaces provided by the library
36 #define GENLMSG_DATA(glh) ((void *)(NLMSG_DATA(glh) + GENL_HDRLEN))
37 #define GENLMSG_PAYLOAD(glh) (NLMSG_PAYLOAD(glh, 0) - GENL_HDRLEN)
38 #define NLA_DATA(na) ((void *)((char*)(na) + NLA_HDRLEN))
39 #define NLA_PAYLOAD(len) (len - NLA_HDRLEN)
41 #define err(code, fmt, arg...) \
43 fprintf(stderr, fmt, ##arg); \
52 int print_io_accounting
;
53 int print_task_context_switch_counts
;
56 #define PRINTF(fmt, arg...) { \
62 /* Maximum size of response requested or message sent */
63 #define MAX_MSG_SIZE 1024
64 /* Maximum number of cpus expected to be specified in a cpumask */
70 char buf
[MAX_MSG_SIZE
];
73 char cpumask
[100+6*MAX_CPUS
];
75 static void usage(void)
77 fprintf(stderr
, "getdelays [-dilv] [-w logfile] [-r bufsize] "
78 "[-m cpumask] [-t tgid] [-p pid]\n");
79 fprintf(stderr
, " -d: print delayacct stats\n");
80 fprintf(stderr
, " -i: print IO accounting (works only with -p)\n");
81 fprintf(stderr
, " -l: listen forever\n");
82 fprintf(stderr
, " -v: debug on\n");
83 fprintf(stderr
, " -C: container path\n");
87 * Create a raw netlink socket and bind
89 static int create_nl_socket(int protocol
)
92 struct sockaddr_nl local
;
94 fd
= socket(AF_NETLINK
, SOCK_RAW
, protocol
);
99 if (setsockopt(fd
, SOL_SOCKET
, SO_RCVBUF
,
100 &rcvbufsz
, sizeof(rcvbufsz
)) < 0) {
101 fprintf(stderr
, "Unable to set socket rcv buf size "
107 memset(&local
, 0, sizeof(local
));
108 local
.nl_family
= AF_NETLINK
;
110 if (bind(fd
, (struct sockaddr
*) &local
, sizeof(local
)) < 0)
120 static int send_cmd(int sd
, __u16 nlmsg_type
, __u32 nlmsg_pid
,
121 __u8 genl_cmd
, __u16 nla_type
,
122 void *nla_data
, int nla_len
)
125 struct sockaddr_nl nladdr
;
129 struct msgtemplate msg
;
131 msg
.n
.nlmsg_len
= NLMSG_LENGTH(GENL_HDRLEN
);
132 msg
.n
.nlmsg_type
= nlmsg_type
;
133 msg
.n
.nlmsg_flags
= NLM_F_REQUEST
;
135 msg
.n
.nlmsg_pid
= nlmsg_pid
;
136 msg
.g
.cmd
= genl_cmd
;
138 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
139 na
->nla_type
= nla_type
;
140 na
->nla_len
= nla_len
+ 1 + NLA_HDRLEN
;
141 memcpy(NLA_DATA(na
), nla_data
, nla_len
);
142 msg
.n
.nlmsg_len
+= NLMSG_ALIGN(na
->nla_len
);
145 buflen
= msg
.n
.nlmsg_len
;
146 memset(&nladdr
, 0, sizeof(nladdr
));
147 nladdr
.nl_family
= AF_NETLINK
;
148 while ((r
= sendto(sd
, buf
, buflen
, 0, (struct sockaddr
*) &nladdr
,
149 sizeof(nladdr
))) < buflen
) {
153 } else if (errno
!= EAGAIN
)
161 * Probe the controller in genetlink to find the family id
162 * for the TASKSTATS family
164 static int get_family_id(int sd
)
176 strcpy(name
, TASKSTATS_GENL_NAME
);
177 rc
= send_cmd(sd
, GENL_ID_CTRL
, getpid(), CTRL_CMD_GETFAMILY
,
178 CTRL_ATTR_FAMILY_NAME
, (void *)name
,
179 strlen(TASKSTATS_GENL_NAME
)+1);
181 rep_len
= recv(sd
, &ans
, sizeof(ans
), 0);
182 if (ans
.n
.nlmsg_type
== NLMSG_ERROR
||
183 (rep_len
< 0) || !NLMSG_OK((&ans
.n
), rep_len
))
186 na
= (struct nlattr
*) GENLMSG_DATA(&ans
);
187 na
= (struct nlattr
*) ((char *) na
+ NLA_ALIGN(na
->nla_len
));
188 if (na
->nla_type
== CTRL_ATTR_FAMILY_ID
) {
189 id
= *(__u16
*) NLA_DATA(na
);
194 static void print_delayacct(struct taskstats
*t
)
196 printf("\n\nCPU %15s%15s%15s%15s\n"
197 " %15llu%15llu%15llu%15llu\n"
204 "count", "real total", "virtual total", "delay total",
205 (unsigned long long)t
->cpu_count
,
206 (unsigned long long)t
->cpu_run_real_total
,
207 (unsigned long long)t
->cpu_run_virtual_total
,
208 (unsigned long long)t
->cpu_delay_total
,
209 "count", "delay total",
210 (unsigned long long)t
->blkio_count
,
211 (unsigned long long)t
->blkio_delay_total
,
212 "count", "delay total",
213 (unsigned long long)t
->swapin_count
,
214 (unsigned long long)t
->swapin_delay_total
,
215 "count", "delay total",
216 (unsigned long long)t
->freepages_count
,
217 (unsigned long long)t
->freepages_delay_total
);
220 static void task_context_switch_counts(struct taskstats
*t
)
222 printf("\n\nTask %15s%15s\n"
224 "voluntary", "nonvoluntary",
225 (unsigned long long)t
->nvcsw
, (unsigned long long)t
->nivcsw
);
228 static void print_cgroupstats(struct cgroupstats
*c
)
230 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
231 "uninterruptible %llu\n", (unsigned long long)c
->nr_sleeping
,
232 (unsigned long long)c
->nr_io_wait
,
233 (unsigned long long)c
->nr_running
,
234 (unsigned long long)c
->nr_stopped
,
235 (unsigned long long)c
->nr_uninterruptible
);
239 static void print_ioacct(struct taskstats
*t
)
241 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
243 (unsigned long long)t
->read_bytes
,
244 (unsigned long long)t
->write_bytes
,
245 (unsigned long long)t
->cancelled_write_bytes
);
248 int main(int argc
, char *argv
[])
250 int c
, rc
, rep_len
, aggr_len
, len2
;
251 int cmd_type
= TASKSTATS_CMD_ATTR_UNSPEC
;
265 char *logfile
= NULL
;
267 int containerset
= 0;
268 char containerpath
[1024];
273 struct msgtemplate msg
;
276 c
= getopt(argc
, argv
, "qdiw:r:m:t:p:vlC:c:");
282 printf("print delayacct stats ON\n");
286 printf("printing IO accounting\n");
287 print_io_accounting
= 1;
290 printf("printing task/process context switch rates\n");
291 print_task_context_switch_counts
= 1;
295 strncpy(containerpath
, optarg
, strlen(optarg
) + 1);
298 logfile
= strdup(optarg
);
299 printf("write to file %s\n", logfile
);
303 rcvbufsz
= atoi(optarg
);
304 printf("receive buf size %d\n", rcvbufsz
);
306 err(1, "Invalid rcv buf size\n");
309 strncpy(cpumask
, optarg
, sizeof(cpumask
));
311 printf("cpumask %s maskset %d\n", cpumask
, maskset
);
316 err(1, "Invalid tgid\n");
317 cmd_type
= TASKSTATS_CMD_ATTR_TGID
;
322 err(1, "Invalid pid\n");
323 cmd_type
= TASKSTATS_CMD_ATTR_PID
;
327 /* Block SIGCHLD for sigwait() later */
328 if (sigemptyset(&sigset
) == -1)
329 err(1, "Failed to empty sigset");
330 if (sigaddset(&sigset
, SIGCHLD
))
331 err(1, "Failed to set sigchld in sigset");
332 sigprocmask(SIG_BLOCK
, &sigset
, NULL
);
334 /* fork/exec a child */
337 err(1, "Fork failed\n");
339 if (execvp(argv
[optind
- 1],
340 &argv
[optind
- 1]) < 0)
343 /* Set the command type and avoid further processing */
344 cmd_type
= TASKSTATS_CMD_ATTR_PID
;
348 printf("debug on\n");
352 printf("listen forever\n");
362 fd
= open(logfile
, O_WRONLY
| O_CREAT
| O_TRUNC
,
363 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
);
365 perror("Cannot open output file\n");
370 if ((nl_sd
= create_nl_socket(NETLINK_GENERIC
)) < 0)
371 err(1, "error creating Netlink socket\n");
375 id
= get_family_id(nl_sd
);
377 fprintf(stderr
, "Error getting family id, errno %d\n", errno
);
380 PRINTF("family id %d\n", id
);
383 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
384 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
,
385 &cpumask
, strlen(cpumask
) + 1);
386 PRINTF("Sent register cpumask, retval %d\n", rc
);
388 fprintf(stderr
, "error sending register cpumask\n");
393 if (tid
&& containerset
) {
394 fprintf(stderr
, "Select either -t or -C, not both\n");
399 * If we forked a child, wait for it to exit. Cannot use waitpid()
400 * as all the delicious data would be reaped as part of the wait
402 if (tid
&& forking
) {
404 sigwait(&sigset
, &sig_received
);
408 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
409 cmd_type
, &tid
, sizeof(__u32
));
410 PRINTF("Sent pid/tgid, retval %d\n", rc
);
412 fprintf(stderr
, "error sending tid/tgid cmd\n");
418 cfd
= open(containerpath
, O_RDONLY
);
420 perror("error opening container file");
423 rc
= send_cmd(nl_sd
, id
, mypid
, CGROUPSTATS_CMD_GET
,
424 CGROUPSTATS_CMD_ATTR_FD
, &cfd
, sizeof(__u32
));
426 perror("error sending cgroupstats command");
430 if (!maskset
&& !tid
&& !containerset
) {
438 rep_len
= recv(nl_sd
, &msg
, sizeof(msg
), 0);
439 PRINTF("received %d bytes\n", rep_len
);
442 fprintf(stderr
, "nonfatal reply error: errno %d\n",
446 if (msg
.n
.nlmsg_type
== NLMSG_ERROR
||
447 !NLMSG_OK((&msg
.n
), rep_len
)) {
448 struct nlmsgerr
*err
= NLMSG_DATA(&msg
);
449 fprintf(stderr
, "fatal reply error, errno %d\n",
454 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
455 sizeof(struct nlmsghdr
), msg
.n
.nlmsg_len
, rep_len
);
458 rep_len
= GENLMSG_PAYLOAD(&msg
.n
);
460 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
463 while (len
< rep_len
) {
464 len
+= NLA_ALIGN(na
->nla_len
);
465 switch (na
->nla_type
) {
466 case TASKSTATS_TYPE_AGGR_TGID
:
468 case TASKSTATS_TYPE_AGGR_PID
:
469 aggr_len
= NLA_PAYLOAD(na
->nla_len
);
471 /* For nested attributes, na follows */
472 na
= (struct nlattr
*) NLA_DATA(na
);
474 while (len2
< aggr_len
) {
475 switch (na
->nla_type
) {
476 case TASKSTATS_TYPE_PID
:
477 rtid
= *(int *) NLA_DATA(na
);
479 printf("PID\t%d\n", rtid
);
481 case TASKSTATS_TYPE_TGID
:
482 rtid
= *(int *) NLA_DATA(na
);
484 printf("TGID\t%d\n", rtid
);
486 case TASKSTATS_TYPE_STATS
:
489 print_delayacct((struct taskstats
*) NLA_DATA(na
));
490 if (print_io_accounting
)
491 print_ioacct((struct taskstats
*) NLA_DATA(na
));
492 if (print_task_context_switch_counts
)
493 task_context_switch_counts((struct taskstats
*) NLA_DATA(na
));
495 if (write(fd
, NLA_DATA(na
), na
->nla_len
) < 0) {
496 err(1,"write error\n");
503 fprintf(stderr
, "Unknown nested"
508 len2
+= NLA_ALIGN(na
->nla_len
);
509 na
= (struct nlattr
*) ((char *) na
+ len2
);
513 case CGROUPSTATS_TYPE_CGROUP_STATS
:
514 print_cgroupstats(NLA_DATA(na
));
517 fprintf(stderr
, "Unknown nla_type %d\n",
519 case TASKSTATS_TYPE_NULL
:
522 na
= (struct nlattr
*) (GENLMSG_DATA(&msg
) + len
);
527 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
528 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
,
529 &cpumask
, strlen(cpumask
) + 1);
530 printf("Sent deregister mask, retval %d\n", rc
);
532 err(rc
, "error sending deregister cpumask\n");