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 */
64 /* Maximum length of pathname to log file */
65 #define MAX_FILENAME 256
70 char buf
[MAX_MSG_SIZE
];
73 char cpumask
[100+6*MAX_CPUS
];
76 * Create a raw netlink socket and bind
78 static int create_nl_socket(int protocol
)
81 struct sockaddr_nl local
;
83 fd
= socket(AF_NETLINK
, SOCK_RAW
, protocol
);
88 if (setsockopt(fd
, SOL_SOCKET
, SO_RCVBUF
,
89 &rcvbufsz
, sizeof(rcvbufsz
)) < 0) {
90 fprintf(stderr
, "Unable to set socket rcv buf size "
96 memset(&local
, 0, sizeof(local
));
97 local
.nl_family
= AF_NETLINK
;
99 if (bind(fd
, (struct sockaddr
*) &local
, sizeof(local
)) < 0)
109 int send_cmd(int sd
, __u16 nlmsg_type
, __u32 nlmsg_pid
,
110 __u8 genl_cmd
, __u16 nla_type
,
111 void *nla_data
, int nla_len
)
114 struct sockaddr_nl nladdr
;
118 struct msgtemplate msg
;
120 msg
.n
.nlmsg_len
= NLMSG_LENGTH(GENL_HDRLEN
);
121 msg
.n
.nlmsg_type
= nlmsg_type
;
122 msg
.n
.nlmsg_flags
= NLM_F_REQUEST
;
124 msg
.n
.nlmsg_pid
= nlmsg_pid
;
125 msg
.g
.cmd
= genl_cmd
;
127 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
128 na
->nla_type
= nla_type
;
129 na
->nla_len
= nla_len
+ 1 + NLA_HDRLEN
;
130 memcpy(NLA_DATA(na
), nla_data
, nla_len
);
131 msg
.n
.nlmsg_len
+= NLMSG_ALIGN(na
->nla_len
);
134 buflen
= msg
.n
.nlmsg_len
;
135 memset(&nladdr
, 0, sizeof(nladdr
));
136 nladdr
.nl_family
= AF_NETLINK
;
137 while ((r
= sendto(sd
, buf
, buflen
, 0, (struct sockaddr
*) &nladdr
,
138 sizeof(nladdr
))) < buflen
) {
142 } else if (errno
!= EAGAIN
)
150 * Probe the controller in genetlink to find the family id
151 * for the TASKSTATS family
153 int get_family_id(int sd
)
165 strcpy(name
, TASKSTATS_GENL_NAME
);
166 rc
= send_cmd(sd
, GENL_ID_CTRL
, getpid(), CTRL_CMD_GETFAMILY
,
167 CTRL_ATTR_FAMILY_NAME
, (void *)name
,
168 strlen(TASKSTATS_GENL_NAME
)+1);
170 rep_len
= recv(sd
, &ans
, sizeof(ans
), 0);
171 if (ans
.n
.nlmsg_type
== NLMSG_ERROR
||
172 (rep_len
< 0) || !NLMSG_OK((&ans
.n
), rep_len
))
175 na
= (struct nlattr
*) GENLMSG_DATA(&ans
);
176 na
= (struct nlattr
*) ((char *) na
+ NLA_ALIGN(na
->nla_len
));
177 if (na
->nla_type
== CTRL_ATTR_FAMILY_ID
) {
178 id
= *(__u16
*) NLA_DATA(na
);
183 void print_delayacct(struct taskstats
*t
)
185 printf("\n\nCPU %15s%15s%15s%15s\n"
186 " %15llu%15llu%15llu%15llu\n"
191 "count", "real total", "virtual total", "delay total",
192 t
->cpu_count
, t
->cpu_run_real_total
, t
->cpu_run_virtual_total
,
194 "count", "delay total",
195 t
->blkio_count
, t
->blkio_delay_total
,
196 "count", "delay total", t
->swapin_count
, t
->swapin_delay_total
);
199 void print_ioacct(struct taskstats
*t
)
201 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
203 (unsigned long long)t
->read_bytes
,
204 (unsigned long long)t
->write_bytes
,
205 (unsigned long long)t
->cancelled_write_bytes
);
208 int main(int argc
, char *argv
[])
210 int c
, rc
, rep_len
, aggr_len
, len2
, cmd_type
;
227 struct msgtemplate msg
;
230 c
= getopt(argc
, argv
, "diw:r:m:t:p:v:l");
236 printf("print delayacct stats ON\n");
240 printf("printing IO accounting\n");
241 print_io_accounting
= 1;
244 strncpy(logfile
, optarg
, MAX_FILENAME
);
245 printf("write to file %s\n", logfile
);
249 rcvbufsz
= atoi(optarg
);
250 printf("receive buf size %d\n", rcvbufsz
);
252 err(1, "Invalid rcv buf size\n");
255 strncpy(cpumask
, optarg
, sizeof(cpumask
));
257 printf("cpumask %s maskset %d\n", cpumask
, maskset
);
262 err(1, "Invalid tgid\n");
263 cmd_type
= TASKSTATS_CMD_ATTR_TGID
;
268 err(1, "Invalid pid\n");
269 cmd_type
= TASKSTATS_CMD_ATTR_PID
;
272 printf("debug on\n");
276 printf("listen forever\n");
280 printf("Unknown option %d\n", c
);
286 fd
= open(logfile
, O_WRONLY
| O_CREAT
| O_TRUNC
,
287 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
);
289 perror("Cannot open output file\n");
294 if ((nl_sd
= create_nl_socket(NETLINK_GENERIC
)) < 0)
295 err(1, "error creating Netlink socket\n");
299 id
= get_family_id(nl_sd
);
301 fprintf(stderr
, "Error getting family id, errno %d\n", errno
);
304 PRINTF("family id %d\n", id
);
307 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
308 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
,
309 &cpumask
, strlen(cpumask
) + 1);
310 PRINTF("Sent register cpumask, retval %d\n", rc
);
312 fprintf(stderr
, "error sending register cpumask\n");
318 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
319 cmd_type
, &tid
, sizeof(__u32
));
320 PRINTF("Sent pid/tgid, retval %d\n", rc
);
322 fprintf(stderr
, "error sending tid/tgid cmd\n");
330 rep_len
= recv(nl_sd
, &msg
, sizeof(msg
), 0);
331 PRINTF("received %d bytes\n", rep_len
);
334 fprintf(stderr
, "nonfatal reply error: errno %d\n",
338 if (msg
.n
.nlmsg_type
== NLMSG_ERROR
||
339 !NLMSG_OK((&msg
.n
), rep_len
)) {
340 struct nlmsgerr
*err
= NLMSG_DATA(&msg
);
341 fprintf(stderr
, "fatal reply error, errno %d\n",
346 PRINTF("nlmsghdr size=%d, nlmsg_len=%d, rep_len=%d\n",
347 sizeof(struct nlmsghdr
), msg
.n
.nlmsg_len
, rep_len
);
350 rep_len
= GENLMSG_PAYLOAD(&msg
.n
);
352 na
= (struct nlattr
*) GENLMSG_DATA(&msg
);
355 while (len
< rep_len
) {
356 len
+= NLA_ALIGN(na
->nla_len
);
357 switch (na
->nla_type
) {
358 case TASKSTATS_TYPE_AGGR_TGID
:
360 case TASKSTATS_TYPE_AGGR_PID
:
361 aggr_len
= NLA_PAYLOAD(na
->nla_len
);
363 /* For nested attributes, na follows */
364 na
= (struct nlattr
*) NLA_DATA(na
);
366 while (len2
< aggr_len
) {
367 switch (na
->nla_type
) {
368 case TASKSTATS_TYPE_PID
:
369 rtid
= *(int *) NLA_DATA(na
);
371 printf("PID\t%d\n", rtid
);
373 case TASKSTATS_TYPE_TGID
:
374 rtid
= *(int *) NLA_DATA(na
);
376 printf("TGID\t%d\n", rtid
);
378 case TASKSTATS_TYPE_STATS
:
381 print_delayacct((struct taskstats
*) NLA_DATA(na
));
382 if (print_io_accounting
)
383 print_ioacct((struct taskstats
*) NLA_DATA(na
));
385 if (write(fd
, NLA_DATA(na
), na
->nla_len
) < 0) {
386 err(1,"write error\n");
393 fprintf(stderr
, "Unknown nested"
398 len2
+= NLA_ALIGN(na
->nla_len
);
399 na
= (struct nlattr
*) ((char *) na
+ len2
);
404 fprintf(stderr
, "Unknown nla_type %d\n",
408 na
= (struct nlattr
*) (GENLMSG_DATA(&msg
) + len
);
413 rc
= send_cmd(nl_sd
, id
, mypid
, TASKSTATS_CMD_GET
,
414 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
,
415 &cpumask
, strlen(cpumask
) + 1);
416 printf("Sent deregister mask, retval %d\n", rc
);
418 err(rc
, "error sending deregister cpumask\n");