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;
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 to %d\n",
105 memset(&local, 0, sizeof(local));
106 local.nl_family = AF_NETLINK;
108 if (bind(fd, (struct sockaddr *) &local, sizeof(local)) < 0)
118 static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
119 __u8 genl_cmd, __u16 nla_type,
120 void *nla_data, int nla_len)
123 struct sockaddr_nl nladdr;
127 struct msgtemplate msg;
129 msg.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
130 msg.n.nlmsg_type = nlmsg_type;
131 msg.n.nlmsg_flags = NLM_F_REQUEST;
133 msg.n.nlmsg_pid = nlmsg_pid;
134 msg.g.cmd = genl_cmd;
136 na = (struct nlattr *) GENLMSG_DATA(&msg);
137 na->nla_type = nla_type;
138 na->nla_len = nla_len + 1 + NLA_HDRLEN;
139 memcpy(NLA_DATA(na), nla_data, nla_len);
140 msg.n.nlmsg_len += NLMSG_ALIGN(na->nla_len);
143 buflen = msg.n.nlmsg_len ;
144 memset(&nladdr, 0, sizeof(nladdr));
145 nladdr.nl_family = AF_NETLINK;
146 while ((r = sendto(sd, buf, buflen, 0, (struct sockaddr *) &nladdr,
147 sizeof(nladdr))) < buflen) {
151 } else if (errno != EAGAIN)
159 * Probe the controller in genetlink to find the family id
160 * for the TASKSTATS family
162 static int get_family_id(int sd)
174 strcpy(name, TASKSTATS_GENL_NAME);
175 rc = send_cmd(sd, GENL_ID_CTRL, getpid(), CTRL_CMD_GETFAMILY,
176 CTRL_ATTR_FAMILY_NAME, (void *)name,
177 strlen(TASKSTATS_GENL_NAME)+1);
179 return 0; /* sendto() failure? */
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 #define average_ms(t, c) (t / 1000000ULL / (c ? c : 1))
196 static void print_delayacct(struct taskstats *t)
198 printf("\n\nCPU %15s%15s%15s%15s%15s\n"
199 " %15llu%15llu%15llu%15llu%15.3fms\n"
201 " %15llu%15llu%15llums\n"
202 "SWAP %15s%15s%15s\n"
203 " %15llu%15llu%15llums\n"
204 "RECLAIM %12s%15s%15s\n"
205 " %15llu%15llu%15llums\n",
206 "count", "real total", "virtual total",
207 "delay total", "delay average",
208 (unsigned long long)t->cpu_count,
209 (unsigned long long)t->cpu_run_real_total,
210 (unsigned long long)t->cpu_run_virtual_total,
211 (unsigned long long)t->cpu_delay_total,
212 average_ms((double)t->cpu_delay_total, t->cpu_count),
213 "count", "delay total", "delay average",
214 (unsigned long long)t->blkio_count,
215 (unsigned long long)t->blkio_delay_total,
216 average_ms(t->blkio_delay_total, t->blkio_count),
217 "count", "delay total", "delay average",
218 (unsigned long long)t->swapin_count,
219 (unsigned long long)t->swapin_delay_total,
220 average_ms(t->swapin_delay_total, t->swapin_count),
221 "count", "delay total", "delay average",
222 (unsigned long long)t->freepages_count,
223 (unsigned long long)t->freepages_delay_total,
224 average_ms(t->freepages_delay_total, t->freepages_count));
227 static void task_context_switch_counts(struct taskstats *t)
229 printf("\n\nTask %15s%15s\n"
231 "voluntary", "nonvoluntary",
232 (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw);
235 static void print_cgroupstats(struct cgroupstats *c)
237 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
238 "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping,
239 (unsigned long long)c->nr_io_wait,
240 (unsigned long long)c->nr_running,
241 (unsigned long long)c->nr_stopped,
242 (unsigned long long)c->nr_uninterruptible);
246 static void print_ioacct(struct taskstats *t)
248 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
250 (unsigned long long)t->read_bytes,
251 (unsigned long long)t->write_bytes,
252 (unsigned long long)t->cancelled_write_bytes);
255 int main(int argc, char *argv[])
257 int c, rc, rep_len, aggr_len, len2;
258 int cmd_type = TASKSTATS_CMD_ATTR_UNSPEC;
272 char *logfile = NULL;
274 int containerset = 0;
275 char *containerpath = NULL;
280 struct msgtemplate msg;
283 c = getopt(argc, argv, "qdiw:r:m:t:p:vlC:c:");
289 printf("print delayacct stats ON\n");
293 printf("printing IO accounting\n");
294 print_io_accounting = 1;
297 printf("printing task/process context switch rates\n");
298 print_task_context_switch_counts = 1;
302 containerpath = optarg;
305 logfile = strdup(optarg);
306 printf("write to file %s\n", logfile);
310 rcvbufsz = atoi(optarg);
311 printf("receive buf size %d\n", rcvbufsz);
313 err(1, "Invalid rcv buf size\n");
316 strncpy(cpumask, optarg, sizeof(cpumask));
317 cpumask[sizeof(cpumask) - 1] = '\0';
319 printf("cpumask %s maskset %d\n", cpumask, maskset);
324 err(1, "Invalid tgid\n");
325 cmd_type = TASKSTATS_CMD_ATTR_TGID;
330 err(1, "Invalid pid\n");
331 cmd_type = TASKSTATS_CMD_ATTR_PID;
335 /* Block SIGCHLD for sigwait() later */
336 if (sigemptyset(&sigset) == -1)
337 err(1, "Failed to empty sigset");
338 if (sigaddset(&sigset, SIGCHLD))
339 err(1, "Failed to set sigchld in sigset");
340 sigprocmask(SIG_BLOCK, &sigset, NULL);
342 /* fork/exec a child */
345 err(1, "Fork failed\n");
347 if (execvp(argv[optind - 1],
348 &argv[optind - 1]) < 0)
351 /* Set the command type and avoid further processing */
352 cmd_type = TASKSTATS_CMD_ATTR_PID;
356 printf("debug on\n");
360 printf("listen forever\n");
370 fd = open(logfile, O_WRONLY | O_CREAT | O_TRUNC,
371 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
373 perror("Cannot open output file\n");
378 if ((nl_sd = create_nl_socket(NETLINK_GENERIC)) < 0)
379 err(1, "error creating Netlink socket\n");
383 id = get_family_id(nl_sd);
385 fprintf(stderr, "Error getting family id, errno %d\n", errno);
388 PRINTF("family id %d\n", id);
391 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
392 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK,
393 &cpumask, strlen(cpumask) + 1);
394 PRINTF("Sent register cpumask, retval %d\n", rc);
396 fprintf(stderr, "error sending register cpumask\n");
401 if (tid && containerset) {
402 fprintf(stderr, "Select either -t or -C, not both\n");
407 * If we forked a child, wait for it to exit. Cannot use waitpid()
408 * as all the delicious data would be reaped as part of the wait
410 if (tid && forking) {
412 sigwait(&sigset, &sig_received);
416 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
417 cmd_type, &tid, sizeof(__u32));
418 PRINTF("Sent pid/tgid, retval %d\n", rc);
420 fprintf(stderr, "error sending tid/tgid cmd\n");
426 cfd = open(containerpath, O_RDONLY);
428 perror("error opening container file");
431 rc = send_cmd(nl_sd, id, mypid, CGROUPSTATS_CMD_GET,
432 CGROUPSTATS_CMD_ATTR_FD, &cfd, sizeof(__u32));
434 perror("error sending cgroupstats command");
438 if (!maskset && !tid && !containerset) {
444 rep_len = recv(nl_sd, &msg, sizeof(msg), 0);
445 PRINTF("received %d bytes\n", rep_len);
448 fprintf(stderr, "nonfatal reply error: errno %d\n",
452 if (msg.n.nlmsg_type == NLMSG_ERROR ||
453 !NLMSG_OK((&msg.n), rep_len)) {
454 struct nlmsgerr *err = NLMSG_DATA(&msg);
455 fprintf(stderr, "fatal reply error, errno %d\n",
460 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
461 sizeof(struct nlmsghdr), msg.n.nlmsg_len, rep_len);
464 rep_len = GENLMSG_PAYLOAD(&msg.n);
466 na = (struct nlattr *) GENLMSG_DATA(&msg);
468 while (len < rep_len) {
469 len += NLA_ALIGN(na->nla_len);
470 switch (na->nla_type) {
471 case TASKSTATS_TYPE_AGGR_TGID:
473 case TASKSTATS_TYPE_AGGR_PID:
474 aggr_len = NLA_PAYLOAD(na->nla_len);
476 /* For nested attributes, na follows */
477 na = (struct nlattr *) NLA_DATA(na);
479 while (len2 < aggr_len) {
480 switch (na->nla_type) {
481 case TASKSTATS_TYPE_PID:
482 rtid = *(int *) NLA_DATA(na);
484 printf("PID\t%d\n", rtid);
486 case TASKSTATS_TYPE_TGID:
487 rtid = *(int *) NLA_DATA(na);
489 printf("TGID\t%d\n", rtid);
491 case TASKSTATS_TYPE_STATS:
494 print_delayacct((struct taskstats *) NLA_DATA(na));
495 if (print_io_accounting)
496 print_ioacct((struct taskstats *) NLA_DATA(na));
497 if (print_task_context_switch_counts)
498 task_context_switch_counts((struct taskstats *) NLA_DATA(na));
500 if (write(fd, NLA_DATA(na), na->nla_len) < 0) {
501 err(1,"write error\n");
508 fprintf(stderr, "Unknown nested"
513 len2 += NLA_ALIGN(na->nla_len);
514 na = (struct nlattr *) ((char *) na + len2);
518 case CGROUPSTATS_TYPE_CGROUP_STATS:
519 print_cgroupstats(NLA_DATA(na));
522 fprintf(stderr, "Unknown nla_type %d\n",
524 case TASKSTATS_TYPE_NULL:
527 na = (struct nlattr *) (GENLMSG_DATA(&msg) + len);
532 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
533 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK,
534 &cpumask, strlen(cpumask) + 1);
535 printf("Sent deregister mask, retval %d\n", rc);
537 err(rc, "error sending deregister cpumask\n");