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>
24 #include <sys/types.h>
27 #include <linux/genetlink.h>
28 #include <linux/taskstats.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;
54 #define PRINTF(fmt, arg...) { \
60 /* Maximum size of response requested or message sent */
61 #define MAX_MSG_SIZE 1024
62 /* Maximum number of cpus expected to be specified in a cpumask */
68 char buf[MAX_MSG_SIZE];
71 char cpumask[100+6*MAX_CPUS];
73 static void usage(void)
75 fprintf(stderr, "getdelays [-dilv] [-w logfile] [-r bufsize] "
76 "[-m cpumask] [-t tgid] [-p pid]\n");
77 fprintf(stderr, " -d: print delayacct stats\n");
78 fprintf(stderr, " -i: print IO accounting (works only with -p)\n");
79 fprintf(stderr, " -l: listen forever\n");
80 fprintf(stderr, " -v: debug on\n");
84 * Create a raw netlink socket and bind
86 static int create_nl_socket(int protocol)
89 struct sockaddr_nl local;
91 fd = socket(AF_NETLINK, SOCK_RAW, protocol);
96 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF,
97 &rcvbufsz, sizeof(rcvbufsz)) < 0) {
98 fprintf(stderr, "Unable to set socket rcv buf size "
104 memset(&local, 0, sizeof(local));
105 local.nl_family = AF_NETLINK;
107 if (bind(fd, (struct sockaddr *) &local, sizeof(local)) < 0)
117 int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
118 __u8 genl_cmd, __u16 nla_type,
119 void *nla_data, int nla_len)
122 struct sockaddr_nl nladdr;
126 struct msgtemplate msg;
128 msg.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
129 msg.n.nlmsg_type = nlmsg_type;
130 msg.n.nlmsg_flags = NLM_F_REQUEST;
132 msg.n.nlmsg_pid = nlmsg_pid;
133 msg.g.cmd = genl_cmd;
135 na = (struct nlattr *) GENLMSG_DATA(&msg);
136 na->nla_type = nla_type;
137 na->nla_len = nla_len + 1 + NLA_HDRLEN;
138 memcpy(NLA_DATA(na), nla_data, nla_len);
139 msg.n.nlmsg_len += NLMSG_ALIGN(na->nla_len);
142 buflen = msg.n.nlmsg_len ;
143 memset(&nladdr, 0, sizeof(nladdr));
144 nladdr.nl_family = AF_NETLINK;
145 while ((r = sendto(sd, buf, buflen, 0, (struct sockaddr *) &nladdr,
146 sizeof(nladdr))) < buflen) {
150 } else if (errno != EAGAIN)
158 * Probe the controller in genetlink to find the family id
159 * for the TASKSTATS family
161 int get_family_id(int sd)
173 strcpy(name, TASKSTATS_GENL_NAME);
174 rc = send_cmd(sd, GENL_ID_CTRL, getpid(), CTRL_CMD_GETFAMILY,
175 CTRL_ATTR_FAMILY_NAME, (void *)name,
176 strlen(TASKSTATS_GENL_NAME)+1);
178 rep_len = recv(sd, &ans, sizeof(ans), 0);
179 if (ans.n.nlmsg_type == NLMSG_ERROR ||
180 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len))
183 na = (struct nlattr *) GENLMSG_DATA(&ans);
184 na = (struct nlattr *) ((char *) na + NLA_ALIGN(na->nla_len));
185 if (na->nla_type == CTRL_ATTR_FAMILY_ID) {
186 id = *(__u16 *) NLA_DATA(na);
191 void print_delayacct(struct taskstats *t)
193 printf("\n\nCPU %15s%15s%15s%15s\n"
194 " %15llu%15llu%15llu%15llu\n"
199 "count", "real total", "virtual total", "delay total",
200 t->cpu_count, t->cpu_run_real_total, t->cpu_run_virtual_total,
202 "count", "delay total",
203 t->blkio_count, t->blkio_delay_total,
204 "count", "delay total", t->swapin_count, t->swapin_delay_total);
207 void print_ioacct(struct taskstats *t)
209 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
211 (unsigned long long)t->read_bytes,
212 (unsigned long long)t->write_bytes,
213 (unsigned long long)t->cancelled_write_bytes);
216 int main(int argc, char *argv[])
218 int c, rc, rep_len, aggr_len, len2, cmd_type;
232 char *logfile = NULL;
235 struct msgtemplate msg;
238 c = getopt(argc, argv, "diw:r:m:t:p:vl");
244 printf("print delayacct stats ON\n");
248 printf("printing IO accounting\n");
249 print_io_accounting = 1;
252 logfile = strdup(optarg);
253 printf("write to file %s\n", logfile);
257 rcvbufsz = atoi(optarg);
258 printf("receive buf size %d\n", rcvbufsz);
260 err(1, "Invalid rcv buf size\n");
263 strncpy(cpumask, optarg, sizeof(cpumask));
265 printf("cpumask %s maskset %d\n", cpumask, maskset);
270 err(1, "Invalid tgid\n");
271 cmd_type = TASKSTATS_CMD_ATTR_TGID;
276 err(1, "Invalid pid\n");
277 cmd_type = TASKSTATS_CMD_ATTR_PID;
280 printf("debug on\n");
284 printf("listen forever\n");
294 fd = open(logfile, O_WRONLY | O_CREAT | O_TRUNC,
295 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
297 perror("Cannot open output file\n");
302 if ((nl_sd = create_nl_socket(NETLINK_GENERIC)) < 0)
303 err(1, "error creating Netlink socket\n");
307 id = get_family_id(nl_sd);
309 fprintf(stderr, "Error getting family id, errno %d\n", errno);
312 PRINTF("family id %d\n", id);
315 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
316 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK,
317 &cpumask, strlen(cpumask) + 1);
318 PRINTF("Sent register cpumask, retval %d\n", rc);
320 fprintf(stderr, "error sending register cpumask\n");
326 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
327 cmd_type, &tid, sizeof(__u32));
328 PRINTF("Sent pid/tgid, retval %d\n", rc);
330 fprintf(stderr, "error sending tid/tgid cmd\n");
338 rep_len = recv(nl_sd, &msg, sizeof(msg), 0);
339 PRINTF("received %d bytes\n", rep_len);
342 fprintf(stderr, "nonfatal reply error: errno %d\n",
346 if (msg.n.nlmsg_type == NLMSG_ERROR ||
347 !NLMSG_OK((&msg.n), rep_len)) {
348 struct nlmsgerr *err = NLMSG_DATA(&msg);
349 fprintf(stderr, "fatal reply error, errno %d\n",
354 PRINTF("nlmsghdr size=%d, nlmsg_len=%d, rep_len=%d\n",
355 sizeof(struct nlmsghdr), msg.n.nlmsg_len, rep_len);
358 rep_len = GENLMSG_PAYLOAD(&msg.n);
360 na = (struct nlattr *) GENLMSG_DATA(&msg);
363 while (len < rep_len) {
364 len += NLA_ALIGN(na->nla_len);
365 switch (na->nla_type) {
366 case TASKSTATS_TYPE_AGGR_TGID:
368 case TASKSTATS_TYPE_AGGR_PID:
369 aggr_len = NLA_PAYLOAD(na->nla_len);
371 /* For nested attributes, na follows */
372 na = (struct nlattr *) NLA_DATA(na);
374 while (len2 < aggr_len) {
375 switch (na->nla_type) {
376 case TASKSTATS_TYPE_PID:
377 rtid = *(int *) NLA_DATA(na);
379 printf("PID\t%d\n", rtid);
381 case TASKSTATS_TYPE_TGID:
382 rtid = *(int *) NLA_DATA(na);
384 printf("TGID\t%d\n", rtid);
386 case TASKSTATS_TYPE_STATS:
389 print_delayacct((struct taskstats *) NLA_DATA(na));
390 if (print_io_accounting)
391 print_ioacct((struct taskstats *) NLA_DATA(na));
393 if (write(fd, NLA_DATA(na), na->nla_len) < 0) {
394 err(1,"write error\n");
401 fprintf(stderr, "Unknown nested"
406 len2 += NLA_ALIGN(na->nla_len);
407 na = (struct nlattr *) ((char *) na + len2);
412 fprintf(stderr, "Unknown nla_type %d\n",
416 na = (struct nlattr *) (GENLMSG_DATA(&msg) + len);
421 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
422 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK,
423 &cpumask, strlen(cpumask) + 1);
424 printf("Sent deregister mask, retval %d\n", rc);
426 err(rc, "error sending deregister cpumask\n");