blob: 961e4731d29913823f370e80cc126f994ce12136 [file] [log] [blame]
Shailabh Nagara3baf642006-07-14 00:24:42 -07001/* getdelays.c
2 *
3 * Utility to get per-pid and per-tgid delay accounting statistics
4 * Also illustrates usage of the taskstats interface
5 *
6 * Copyright (C) Shailabh Nagar, IBM Corp. 2005
7 * Copyright (C) Balbir Singh, IBM Corp. 2006
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -07008 * Copyright (c) Jay Lan, SGI. 2006
Shailabh Nagara3baf642006-07-14 00:24:42 -07009 *
Andrew Mortond2f7bf12006-12-10 02:19:55 -080010 * Compile with
11 * gcc -I/usr/src/linux/include getdelays.c -o getdelays
Shailabh Nagara3baf642006-07-14 00:24:42 -070012 */
13
14#include <stdio.h>
15#include <stdlib.h>
16#include <errno.h>
17#include <unistd.h>
18#include <poll.h>
19#include <string.h>
20#include <fcntl.h>
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <sys/socket.h>
Mel Gormandb9e5672010-10-27 15:34:42 -070024#include <sys/wait.h>
Shailabh Nagara3baf642006-07-14 00:24:42 -070025#include <signal.h>
26
27#include <linux/genetlink.h>
28#include <linux/taskstats.h>
Balbir Singh546040d2007-11-14 16:59:14 -080029#include <linux/cgroupstats.h>
Shailabh Nagara3baf642006-07-14 00:24:42 -070030
31/*
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
35 */
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)
40
Andrew Mortond2f7bf12006-12-10 02:19:55 -080041#define err(code, fmt, arg...) \
42 do { \
43 fprintf(stderr, fmt, ##arg); \
44 exit(code); \
45 } while (0)
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070046
Andrew Mortond2f7bf12006-12-10 02:19:55 -080047int done;
48int rcvbufsz;
49char name[100];
50int dbg;
51int print_delays;
Andrew Mortoncf709842006-12-10 02:19:56 -080052int print_io_accounting;
Maxim Uvarovb663a792007-07-15 23:40:48 -070053int print_task_context_switch_counts;
Andrew Mortond2f7bf12006-12-10 02:19:55 -080054
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070055#define PRINTF(fmt, arg...) { \
56 if (dbg) { \
57 printf(fmt, ##arg); \
58 } \
59 }
60
61/* Maximum size of response requested or message sent */
Oleg Nesterov88040232006-11-02 22:07:26 -080062#define MAX_MSG_SIZE 1024
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070063/* Maximum number of cpus expected to be specified in a cpumask */
64#define MAX_CPUS 32
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070065
66struct msgtemplate {
67 struct nlmsghdr n;
68 struct genlmsghdr g;
69 char buf[MAX_MSG_SIZE];
70};
71
72char cpumask[100+6*MAX_CPUS];
Shailabh Nagara3baf642006-07-14 00:24:42 -070073
Randy Dunlapf16825b2007-05-08 00:30:13 -070074static void usage(void)
75{
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");
Balbir Singh546040d2007-11-14 16:59:14 -080082 fprintf(stderr, " -C: container path\n");
Randy Dunlapf16825b2007-05-08 00:30:13 -070083}
84
Shailabh Nagara3baf642006-07-14 00:24:42 -070085/*
86 * Create a raw netlink socket and bind
87 */
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070088static int create_nl_socket(int protocol)
Shailabh Nagara3baf642006-07-14 00:24:42 -070089{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070090 int fd;
91 struct sockaddr_nl local;
Shailabh Nagara3baf642006-07-14 00:24:42 -070092
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070093 fd = socket(AF_NETLINK, SOCK_RAW, protocol);
94 if (fd < 0)
95 return -1;
96
97 if (rcvbufsz)
98 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF,
99 &rcvbufsz, sizeof(rcvbufsz)) < 0) {
Jesper Juhl0de4b952012-08-08 20:56:14 +0200100 fprintf(stderr, "Unable to set socket rcv buf size to %d\n",
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800101 rcvbufsz);
Jesper Juhl0de4b952012-08-08 20:56:14 +0200102 goto error;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700103 }
104
105 memset(&local, 0, sizeof(local));
106 local.nl_family = AF_NETLINK;
107
108 if (bind(fd, (struct sockaddr *) &local, sizeof(local)) < 0)
109 goto error;
110
111 return fd;
112error:
113 close(fd);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700114 return -1;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700115}
116
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700117
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700118static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700119 __u8 genl_cmd, __u16 nla_type,
120 void *nla_data, int nla_len)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700121{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700122 struct nlattr *na;
123 struct sockaddr_nl nladdr;
124 int r, buflen;
125 char *buf;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700126
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700127 struct msgtemplate msg;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700128
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700129 msg.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
130 msg.n.nlmsg_type = nlmsg_type;
131 msg.n.nlmsg_flags = NLM_F_REQUEST;
132 msg.n.nlmsg_seq = 0;
133 msg.n.nlmsg_pid = nlmsg_pid;
134 msg.g.cmd = genl_cmd;
135 msg.g.version = 0x1;
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);
141
142 buf = (char *) &msg;
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) {
148 if (r > 0) {
149 buf += r;
150 buflen -= r;
151 } else if (errno != EAGAIN)
152 return -1;
153 }
154 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700155}
156
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700157
Shailabh Nagara3baf642006-07-14 00:24:42 -0700158/*
159 * Probe the controller in genetlink to find the family id
160 * for the TASKSTATS family
161 */
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700162static int get_family_id(int sd)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700163{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700164 struct {
165 struct nlmsghdr n;
166 struct genlmsghdr g;
167 char buf[256];
168 } ans;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700169
Randy Dunlap10e6f322008-02-08 04:21:56 -0800170 int id = 0, rc;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700171 struct nlattr *na;
172 int rep_len;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700173
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700174 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);
Andrew Morton4ed960b2011-05-26 16:25:15 -0700178 if (rc < 0)
179 return 0; /* sendto() failure? */
Shailabh Nagara3baf642006-07-14 00:24:42 -0700180
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700181 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))
184 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700185
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700186 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);
190 }
191 return id;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700192}
193
Wu Fengguang02d54f02011-05-26 16:25:16 -0700194#define average_ms(t, c) (t / 1000000ULL / (c ? c : 1))
195
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700196static void print_delayacct(struct taskstats *t)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700197{
Wu Fengguang02d54f02011-05-26 16:25:16 -0700198 printf("\n\nCPU %15s%15s%15s%15s%15s\n"
199 " %15llu%15llu%15llu%15llu%15.3fms\n"
200 "IO %15s%15s%15s\n"
201 " %15llu%15llu%15llums\n"
202 "SWAP %15s%15s%15s\n"
203 " %15llu%15llu%15llums\n"
204 "RECLAIM %12s%15s%15s\n"
Johannes Weinerd6687a22018-10-26 15:06:08 -0700205 " %15llu%15llu%15llums\n"
206 "THRASHING%12s%15s%15s\n"
Wu Fengguang02d54f02011-05-26 16:25:16 -0700207 " %15llu%15llu%15llums\n",
208 "count", "real total", "virtual total",
209 "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700210 (unsigned long long)t->cpu_count,
211 (unsigned long long)t->cpu_run_real_total,
212 (unsigned long long)t->cpu_run_virtual_total,
213 (unsigned long long)t->cpu_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700214 average_ms((double)t->cpu_delay_total, t->cpu_count),
215 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700216 (unsigned long long)t->blkio_count,
217 (unsigned long long)t->blkio_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700218 average_ms(t->blkio_delay_total, t->blkio_count),
219 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700220 (unsigned long long)t->swapin_count,
221 (unsigned long long)t->swapin_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700222 average_ms(t->swapin_delay_total, t->swapin_count),
223 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700224 (unsigned long long)t->freepages_count,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700225 (unsigned long long)t->freepages_delay_total,
Johannes Weinerd6687a22018-10-26 15:06:08 -0700226 average_ms(t->freepages_delay_total, t->freepages_count),
227 "count", "delay total", "delay average",
228 (unsigned long long)t->thrashing_count,
229 (unsigned long long)t->thrashing_delay_total,
230 average_ms(t->thrashing_delay_total, t->thrashing_count));
Shailabh Nagara3baf642006-07-14 00:24:42 -0700231}
232
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700233static void task_context_switch_counts(struct taskstats *t)
Maxim Uvarovb663a792007-07-15 23:40:48 -0700234{
235 printf("\n\nTask %15s%15s\n"
Randy Dunlap10e6f322008-02-08 04:21:56 -0800236 " %15llu%15llu\n",
Maxim Uvarovb663a792007-07-15 23:40:48 -0700237 "voluntary", "nonvoluntary",
Randy Dunlap66659312008-08-12 15:09:10 -0700238 (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw);
Maxim Uvarovb663a792007-07-15 23:40:48 -0700239}
240
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700241static void print_cgroupstats(struct cgroupstats *c)
Balbir Singh546040d2007-11-14 16:59:14 -0800242{
243 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
Randy Dunlap66659312008-08-12 15:09:10 -0700244 "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping,
245 (unsigned long long)c->nr_io_wait,
246 (unsigned long long)c->nr_running,
247 (unsigned long long)c->nr_stopped,
248 (unsigned long long)c->nr_uninterruptible);
Balbir Singh546040d2007-11-14 16:59:14 -0800249}
250
251
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700252static void print_ioacct(struct taskstats *t)
Andrew Mortoncf709842006-12-10 02:19:56 -0800253{
254 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
255 t->ac_comm,
256 (unsigned long long)t->read_bytes,
257 (unsigned long long)t->write_bytes,
258 (unsigned long long)t->cancelled_write_bytes);
259}
260
Shailabh Nagara3baf642006-07-14 00:24:42 -0700261int main(int argc, char *argv[])
262{
Jaswinder Singh Rajputb8d9a862009-06-16 15:33:46 -0700263 int c, rc, rep_len, aggr_len, len2;
264 int cmd_type = TASKSTATS_CMD_ATTR_UNSPEC;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700265 __u16 id;
266 __u32 mypid;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700267
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700268 struct nlattr *na;
269 int nl_sd = -1;
270 int len = 0;
271 pid_t tid = 0;
272 pid_t rtid = 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700273
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700274 int fd = 0;
275 int count = 0;
276 int write_file = 0;
277 int maskset = 0;
Scott Wiersdorf7f76c402007-05-08 00:30:25 -0700278 char *logfile = NULL;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700279 int loop = 0;
Balbir Singh546040d2007-11-14 16:59:14 -0800280 int containerset = 0;
Kees Cook8da01af2013-07-03 15:09:08 -0700281 char *containerpath = NULL;
Balbir Singh546040d2007-11-14 16:59:14 -0800282 int cfd = 0;
Mel Gormandb9e5672010-10-27 15:34:42 -0700283 int forking = 0;
284 sigset_t sigset;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700285
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700286 struct msgtemplate msg;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700287
Mel Gormandb9e5672010-10-27 15:34:42 -0700288 while (!forking) {
289 c = getopt(argc, argv, "qdiw:r:m:t:p:vlC:c:");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700290 if (c < 0)
291 break;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700292
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700293 switch (c) {
294 case 'd':
295 printf("print delayacct stats ON\n");
296 print_delays = 1;
297 break;
Andrew Mortoncf709842006-12-10 02:19:56 -0800298 case 'i':
299 printf("printing IO accounting\n");
300 print_io_accounting = 1;
301 break;
Maxim Uvarovb663a792007-07-15 23:40:48 -0700302 case 'q':
303 printf("printing task/process context switch rates\n");
304 print_task_context_switch_counts = 1;
305 break;
Balbir Singh546040d2007-11-14 16:59:14 -0800306 case 'C':
307 containerset = 1;
Kees Cook8da01af2013-07-03 15:09:08 -0700308 containerpath = optarg;
Balbir Singh546040d2007-11-14 16:59:14 -0800309 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700310 case 'w':
Scott Wiersdorf7f76c402007-05-08 00:30:25 -0700311 logfile = strdup(optarg);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700312 printf("write to file %s\n", logfile);
313 write_file = 1;
314 break;
315 case 'r':
316 rcvbufsz = atoi(optarg);
317 printf("receive buf size %d\n", rcvbufsz);
318 if (rcvbufsz < 0)
319 err(1, "Invalid rcv buf size\n");
320 break;
321 case 'm':
322 strncpy(cpumask, optarg, sizeof(cpumask));
Rickard Strandqvist88e15ce2014-06-23 13:22:04 -0700323 cpumask[sizeof(cpumask) - 1] = '\0';
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700324 maskset = 1;
325 printf("cpumask %s maskset %d\n", cpumask, maskset);
326 break;
327 case 't':
328 tid = atoi(optarg);
329 if (!tid)
330 err(1, "Invalid tgid\n");
331 cmd_type = TASKSTATS_CMD_ATTR_TGID;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700332 break;
333 case 'p':
334 tid = atoi(optarg);
335 if (!tid)
336 err(1, "Invalid pid\n");
337 cmd_type = TASKSTATS_CMD_ATTR_PID;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700338 break;
Mel Gormandb9e5672010-10-27 15:34:42 -0700339 case 'c':
340
341 /* Block SIGCHLD for sigwait() later */
342 if (sigemptyset(&sigset) == -1)
343 err(1, "Failed to empty sigset");
344 if (sigaddset(&sigset, SIGCHLD))
345 err(1, "Failed to set sigchld in sigset");
346 sigprocmask(SIG_BLOCK, &sigset, NULL);
347
348 /* fork/exec a child */
349 tid = fork();
350 if (tid < 0)
351 err(1, "Fork failed\n");
352 if (tid == 0)
353 if (execvp(argv[optind - 1],
354 &argv[optind - 1]) < 0)
355 exit(-1);
356
357 /* Set the command type and avoid further processing */
358 cmd_type = TASKSTATS_CMD_ATTR_PID;
359 forking = 1;
360 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700361 case 'v':
362 printf("debug on\n");
363 dbg = 1;
364 break;
365 case 'l':
366 printf("listen forever\n");
367 loop = 1;
368 break;
369 default:
Randy Dunlapf16825b2007-05-08 00:30:13 -0700370 usage();
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700371 exit(-1);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700372 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700373 }
374
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700375 if (write_file) {
376 fd = open(logfile, O_WRONLY | O_CREAT | O_TRUNC,
377 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
378 if (fd == -1) {
379 perror("Cannot open output file\n");
380 exit(1);
381 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700382 }
383
Markus Elfring563c17c2015-12-24 11:05:32 +0100384 nl_sd = create_nl_socket(NETLINK_GENERIC);
385 if (nl_sd < 0)
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700386 err(1, "error creating Netlink socket\n");
387
388
389 mypid = getpid();
390 id = get_family_id(nl_sd);
391 if (!id) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800392 fprintf(stderr, "Error getting family id, errno %d\n", errno);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700393 goto err;
394 }
395 PRINTF("family id %d\n", id);
396
397 if (maskset) {
398 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
399 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK,
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700400 &cpumask, strlen(cpumask) + 1);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700401 PRINTF("Sent register cpumask, retval %d\n", rc);
402 if (rc < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800403 fprintf(stderr, "error sending register cpumask\n");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700404 goto err;
405 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700406 }
407
Balbir Singh546040d2007-11-14 16:59:14 -0800408 if (tid && containerset) {
409 fprintf(stderr, "Select either -t or -C, not both\n");
410 goto err;
411 }
412
Mel Gormandb9e5672010-10-27 15:34:42 -0700413 /*
414 * If we forked a child, wait for it to exit. Cannot use waitpid()
415 * as all the delicious data would be reaped as part of the wait
416 */
417 if (tid && forking) {
418 int sig_received;
419 sigwait(&sigset, &sig_received);
420 }
421
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700422 if (tid) {
423 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
424 cmd_type, &tid, sizeof(__u32));
425 PRINTF("Sent pid/tgid, retval %d\n", rc);
426 if (rc < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800427 fprintf(stderr, "error sending tid/tgid cmd\n");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700428 goto done;
429 }
430 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700431
Balbir Singh546040d2007-11-14 16:59:14 -0800432 if (containerset) {
433 cfd = open(containerpath, O_RDONLY);
434 if (cfd < 0) {
435 perror("error opening container file");
436 goto err;
437 }
438 rc = send_cmd(nl_sd, id, mypid, CGROUPSTATS_CMD_GET,
439 CGROUPSTATS_CMD_ATTR_FD, &cfd, sizeof(__u32));
440 if (rc < 0) {
441 perror("error sending cgroupstats command");
442 goto err;
443 }
444 }
Marcus Meissner65a67bd2009-01-15 13:51:00 -0800445 if (!maskset && !tid && !containerset) {
446 usage();
447 goto err;
448 }
Balbir Singh546040d2007-11-14 16:59:14 -0800449
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700450 do {
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700451 rep_len = recv(nl_sd, &msg, sizeof(msg), 0);
452 PRINTF("received %d bytes\n", rep_len);
453
454 if (rep_len < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800455 fprintf(stderr, "nonfatal reply error: errno %d\n",
456 errno);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700457 continue;
458 }
459 if (msg.n.nlmsg_type == NLMSG_ERROR ||
460 !NLMSG_OK((&msg.n), rep_len)) {
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700461 struct nlmsgerr *err = NLMSG_DATA(&msg);
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800462 fprintf(stderr, "fatal reply error, errno %d\n",
463 err->error);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700464 goto done;
465 }
466
Randy Dunlap10e6f322008-02-08 04:21:56 -0800467 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700468 sizeof(struct nlmsghdr), msg.n.nlmsg_len, rep_len);
469
470
471 rep_len = GENLMSG_PAYLOAD(&msg.n);
472
473 na = (struct nlattr *) GENLMSG_DATA(&msg);
474 len = 0;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700475 while (len < rep_len) {
476 len += NLA_ALIGN(na->nla_len);
477 switch (na->nla_type) {
478 case TASKSTATS_TYPE_AGGR_TGID:
479 /* Fall through */
480 case TASKSTATS_TYPE_AGGR_PID:
481 aggr_len = NLA_PAYLOAD(na->nla_len);
482 len2 = 0;
483 /* For nested attributes, na follows */
484 na = (struct nlattr *) NLA_DATA(na);
485 done = 0;
486 while (len2 < aggr_len) {
487 switch (na->nla_type) {
488 case TASKSTATS_TYPE_PID:
489 rtid = *(int *) NLA_DATA(na);
490 if (print_delays)
491 printf("PID\t%d\n", rtid);
492 break;
493 case TASKSTATS_TYPE_TGID:
494 rtid = *(int *) NLA_DATA(na);
495 if (print_delays)
496 printf("TGID\t%d\n", rtid);
497 break;
498 case TASKSTATS_TYPE_STATS:
499 count++;
500 if (print_delays)
501 print_delayacct((struct taskstats *) NLA_DATA(na));
Andrew Mortoncf709842006-12-10 02:19:56 -0800502 if (print_io_accounting)
503 print_ioacct((struct taskstats *) NLA_DATA(na));
Maxim Uvarovb663a792007-07-15 23:40:48 -0700504 if (print_task_context_switch_counts)
505 task_context_switch_counts((struct taskstats *) NLA_DATA(na));
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700506 if (fd) {
507 if (write(fd, NLA_DATA(na), na->nla_len) < 0) {
508 err(1,"write error\n");
509 }
510 }
511 if (!loop)
512 goto done;
513 break;
Nicolas Dichtel570d8e92016-04-27 17:53:08 +0200514 case TASKSTATS_TYPE_NULL:
515 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700516 default:
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800517 fprintf(stderr, "Unknown nested"
518 " nla_type %d\n",
519 na->nla_type);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700520 break;
521 }
522 len2 += NLA_ALIGN(na->nla_len);
Nicolas Dichtel570d8e92016-04-27 17:53:08 +0200523 na = (struct nlattr *)((char *)na +
524 NLA_ALIGN(na->nla_len));
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700525 }
526 break;
527
Balbir Singh546040d2007-11-14 16:59:14 -0800528 case CGROUPSTATS_TYPE_CGROUP_STATS:
529 print_cgroupstats(NLA_DATA(na));
530 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700531 default:
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800532 fprintf(stderr, "Unknown nla_type %d\n",
533 na->nla_type);
Jeff Mahoney4be2c952010-12-21 17:24:30 -0800534 case TASKSTATS_TYPE_NULL:
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700535 break;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700536 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700537 na = (struct nlattr *) (GENLMSG_DATA(&msg) + len);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700538 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700539 } while (loop);
540done:
541 if (maskset) {
542 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
543 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK,
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700544 &cpumask, strlen(cpumask) + 1);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700545 printf("Sent deregister mask, retval %d\n", rc);
546 if (rc < 0)
547 err(rc, "error sending deregister cpumask\n");
Shailabh Nagara3baf642006-07-14 00:24:42 -0700548 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700549err:
550 close(nl_sd);
551 if (fd)
552 close(fd);
Balbir Singh546040d2007-11-14 16:59:14 -0800553 if (cfd)
554 close(cfd);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700555 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700556}