blob: 11e86739456d82bcd336d4d722573654bee4d517 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Shailabh Nagara3baf642006-07-14 00:24:42 -07002/* getdelays.c
3 *
4 * Utility to get per-pid and per-tgid delay accounting statistics
5 * Also illustrates usage of the taskstats interface
6 *
7 * Copyright (C) Shailabh Nagar, IBM Corp. 2005
8 * Copyright (C) Balbir Singh, IBM Corp. 2006
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -07009 * Copyright (c) Jay Lan, SGI. 2006
Shailabh Nagara3baf642006-07-14 00:24:42 -070010 *
Andrew Mortond2f7bf12006-12-10 02:19:55 -080011 * Compile with
12 * gcc -I/usr/src/linux/include getdelays.c -o getdelays
Shailabh Nagara3baf642006-07-14 00:24:42 -070013 */
14
15#include <stdio.h>
16#include <stdlib.h>
17#include <errno.h>
18#include <unistd.h>
19#include <poll.h>
20#include <string.h>
21#include <fcntl.h>
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <sys/socket.h>
Mel Gormandb9e5672010-10-27 15:34:42 -070025#include <sys/wait.h>
Shailabh Nagara3baf642006-07-14 00:24:42 -070026#include <signal.h>
27
28#include <linux/genetlink.h>
29#include <linux/taskstats.h>
Balbir Singh546040d2007-11-14 16:59:14 -080030#include <linux/cgroupstats.h>
Shailabh Nagara3baf642006-07-14 00:24:42 -070031
32/*
33 * Generic macros for dealing with netlink sockets. Might be duplicated
34 * elsewhere. It is recommended that commercial grade applications use
35 * libnl or libnetlink and use the interfaces provided by the library
36 */
37#define GENLMSG_DATA(glh) ((void *)(NLMSG_DATA(glh) + GENL_HDRLEN))
38#define GENLMSG_PAYLOAD(glh) (NLMSG_PAYLOAD(glh, 0) - GENL_HDRLEN)
39#define NLA_DATA(na) ((void *)((char*)(na) + NLA_HDRLEN))
40#define NLA_PAYLOAD(len) (len - NLA_HDRLEN)
41
Andrew Mortond2f7bf12006-12-10 02:19:55 -080042#define err(code, fmt, arg...) \
43 do { \
44 fprintf(stderr, fmt, ##arg); \
45 exit(code); \
46 } while (0)
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070047
Andrew Mortond2f7bf12006-12-10 02:19:55 -080048int done;
49int rcvbufsz;
50char name[100];
51int dbg;
52int print_delays;
Andrew Mortoncf709842006-12-10 02:19:56 -080053int print_io_accounting;
Maxim Uvarovb663a792007-07-15 23:40:48 -070054int print_task_context_switch_counts;
Andrew Mortond2f7bf12006-12-10 02:19:55 -080055
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070056#define PRINTF(fmt, arg...) { \
57 if (dbg) { \
58 printf(fmt, ##arg); \
59 } \
60 }
61
62/* Maximum size of response requested or message sent */
Oleg Nesterov88040232006-11-02 22:07:26 -080063#define MAX_MSG_SIZE 1024
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070064/* Maximum number of cpus expected to be specified in a cpumask */
65#define MAX_CPUS 32
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070066
67struct msgtemplate {
68 struct nlmsghdr n;
69 struct genlmsghdr g;
70 char buf[MAX_MSG_SIZE];
71};
72
73char cpumask[100+6*MAX_CPUS];
Shailabh Nagara3baf642006-07-14 00:24:42 -070074
Randy Dunlapf16825b2007-05-08 00:30:13 -070075static void usage(void)
76{
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");
Balbir Singh546040d2007-11-14 16:59:14 -080083 fprintf(stderr, " -C: container path\n");
Randy Dunlapf16825b2007-05-08 00:30:13 -070084}
85
Shailabh Nagara3baf642006-07-14 00:24:42 -070086/*
87 * Create a raw netlink socket and bind
88 */
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070089static int create_nl_socket(int protocol)
Shailabh Nagara3baf642006-07-14 00:24:42 -070090{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070091 int fd;
92 struct sockaddr_nl local;
Shailabh Nagara3baf642006-07-14 00:24:42 -070093
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -070094 fd = socket(AF_NETLINK, SOCK_RAW, protocol);
95 if (fd < 0)
96 return -1;
97
98 if (rcvbufsz)
99 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF,
100 &rcvbufsz, sizeof(rcvbufsz)) < 0) {
Jesper Juhl0de4b952012-08-08 20:56:14 +0200101 fprintf(stderr, "Unable to set socket rcv buf size to %d\n",
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800102 rcvbufsz);
Jesper Juhl0de4b952012-08-08 20:56:14 +0200103 goto error;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700104 }
105
106 memset(&local, 0, sizeof(local));
107 local.nl_family = AF_NETLINK;
108
109 if (bind(fd, (struct sockaddr *) &local, sizeof(local)) < 0)
110 goto error;
111
112 return fd;
113error:
114 close(fd);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700115 return -1;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700116}
117
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700118
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700119static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700120 __u8 genl_cmd, __u16 nla_type,
121 void *nla_data, int nla_len)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700122{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700123 struct nlattr *na;
124 struct sockaddr_nl nladdr;
125 int r, buflen;
126 char *buf;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700127
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700128 struct msgtemplate msg;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700129
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700130 msg.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
131 msg.n.nlmsg_type = nlmsg_type;
132 msg.n.nlmsg_flags = NLM_F_REQUEST;
133 msg.n.nlmsg_seq = 0;
134 msg.n.nlmsg_pid = nlmsg_pid;
135 msg.g.cmd = genl_cmd;
136 msg.g.version = 0x1;
137 na = (struct nlattr *) GENLMSG_DATA(&msg);
138 na->nla_type = nla_type;
David Ahern4054ab62020-04-01 21:02:25 -0700139 na->nla_len = nla_len + NLA_HDRLEN;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700140 memcpy(NLA_DATA(na), nla_data, nla_len);
141 msg.n.nlmsg_len += NLMSG_ALIGN(na->nla_len);
142
143 buf = (char *) &msg;
144 buflen = msg.n.nlmsg_len ;
145 memset(&nladdr, 0, sizeof(nladdr));
146 nladdr.nl_family = AF_NETLINK;
147 while ((r = sendto(sd, buf, buflen, 0, (struct sockaddr *) &nladdr,
148 sizeof(nladdr))) < buflen) {
149 if (r > 0) {
150 buf += r;
151 buflen -= r;
152 } else if (errno != EAGAIN)
153 return -1;
154 }
155 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700156}
157
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700158
Shailabh Nagara3baf642006-07-14 00:24:42 -0700159/*
160 * Probe the controller in genetlink to find the family id
161 * for the TASKSTATS family
162 */
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700163static int get_family_id(int sd)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700164{
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700165 struct {
166 struct nlmsghdr n;
167 struct genlmsghdr g;
168 char buf[256];
169 } ans;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700170
Randy Dunlap10e6f322008-02-08 04:21:56 -0800171 int id = 0, rc;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700172 struct nlattr *na;
173 int rep_len;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700174
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700175 strcpy(name, TASKSTATS_GENL_NAME);
176 rc = send_cmd(sd, GENL_ID_CTRL, getpid(), CTRL_CMD_GETFAMILY,
177 CTRL_ATTR_FAMILY_NAME, (void *)name,
178 strlen(TASKSTATS_GENL_NAME)+1);
Andrew Morton4ed960b2011-05-26 16:25:15 -0700179 if (rc < 0)
180 return 0; /* sendto() failure? */
Shailabh Nagara3baf642006-07-14 00:24:42 -0700181
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700182 rep_len = recv(sd, &ans, sizeof(ans), 0);
183 if (ans.n.nlmsg_type == NLMSG_ERROR ||
184 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len))
185 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700186
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700187 na = (struct nlattr *) GENLMSG_DATA(&ans);
188 na = (struct nlattr *) ((char *) na + NLA_ALIGN(na->nla_len));
189 if (na->nla_type == CTRL_ATTR_FAMILY_ID) {
190 id = *(__u16 *) NLA_DATA(na);
191 }
192 return id;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700193}
194
Wu Fengguang02d54f02011-05-26 16:25:16 -0700195#define average_ms(t, c) (t / 1000000ULL / (c ? c : 1))
196
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700197static void print_delayacct(struct taskstats *t)
Shailabh Nagara3baf642006-07-14 00:24:42 -0700198{
Wu Fengguang02d54f02011-05-26 16:25:16 -0700199 printf("\n\nCPU %15s%15s%15s%15s%15s\n"
200 " %15llu%15llu%15llu%15llu%15.3fms\n"
201 "IO %15s%15s%15s\n"
202 " %15llu%15llu%15llums\n"
203 "SWAP %15s%15s%15s\n"
204 " %15llu%15llu%15llums\n"
205 "RECLAIM %12s%15s%15s\n"
Johannes Weinerb1d29ba2018-10-26 15:06:08 -0700206 " %15llu%15llu%15llums\n"
207 "THRASHING%12s%15s%15s\n"
wangyong5bf18282022-01-19 18:10:15 -0800208 " %15llu%15llu%15llums\n"
209 "COMPACT %12s%15s%15s\n"
Wu Fengguang02d54f02011-05-26 16:25:16 -0700210 " %15llu%15llu%15llums\n",
211 "count", "real total", "virtual total",
212 "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700213 (unsigned long long)t->cpu_count,
214 (unsigned long long)t->cpu_run_real_total,
215 (unsigned long long)t->cpu_run_virtual_total,
216 (unsigned long long)t->cpu_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700217 average_ms((double)t->cpu_delay_total, t->cpu_count),
218 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700219 (unsigned long long)t->blkio_count,
220 (unsigned long long)t->blkio_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700221 average_ms(t->blkio_delay_total, t->blkio_count),
222 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700223 (unsigned long long)t->swapin_count,
224 (unsigned long long)t->swapin_delay_total,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700225 average_ms(t->swapin_delay_total, t->swapin_count),
226 "count", "delay total", "delay average",
Randy Dunlap66659312008-08-12 15:09:10 -0700227 (unsigned long long)t->freepages_count,
Wu Fengguang02d54f02011-05-26 16:25:16 -0700228 (unsigned long long)t->freepages_delay_total,
Johannes Weinerb1d29ba2018-10-26 15:06:08 -0700229 average_ms(t->freepages_delay_total, t->freepages_count),
230 "count", "delay total", "delay average",
231 (unsigned long long)t->thrashing_count,
232 (unsigned long long)t->thrashing_delay_total,
wangyong5bf18282022-01-19 18:10:15 -0800233 average_ms(t->thrashing_delay_total, t->thrashing_count),
234 "count", "delay total", "delay average",
235 (unsigned long long)t->compact_count,
236 (unsigned long long)t->compact_delay_total,
237 average_ms(t->compact_delay_total, t->compact_count));
Shailabh Nagara3baf642006-07-14 00:24:42 -0700238}
239
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700240static void task_context_switch_counts(struct taskstats *t)
Maxim Uvarovb663a792007-07-15 23:40:48 -0700241{
242 printf("\n\nTask %15s%15s\n"
Randy Dunlap10e6f322008-02-08 04:21:56 -0800243 " %15llu%15llu\n",
Maxim Uvarovb663a792007-07-15 23:40:48 -0700244 "voluntary", "nonvoluntary",
Randy Dunlap66659312008-08-12 15:09:10 -0700245 (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw);
Maxim Uvarovb663a792007-07-15 23:40:48 -0700246}
247
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700248static void print_cgroupstats(struct cgroupstats *c)
Balbir Singh546040d2007-11-14 16:59:14 -0800249{
250 printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
Randy Dunlap66659312008-08-12 15:09:10 -0700251 "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping,
252 (unsigned long long)c->nr_io_wait,
253 (unsigned long long)c->nr_running,
254 (unsigned long long)c->nr_stopped,
255 (unsigned long long)c->nr_uninterruptible);
Balbir Singh546040d2007-11-14 16:59:14 -0800256}
257
258
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -0700259static void print_ioacct(struct taskstats *t)
Andrew Mortoncf709842006-12-10 02:19:56 -0800260{
261 printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
262 t->ac_comm,
263 (unsigned long long)t->read_bytes,
264 (unsigned long long)t->write_bytes,
265 (unsigned long long)t->cancelled_write_bytes);
266}
267
Shailabh Nagara3baf642006-07-14 00:24:42 -0700268int main(int argc, char *argv[])
269{
Jaswinder Singh Rajputb8d9a862009-06-16 15:33:46 -0700270 int c, rc, rep_len, aggr_len, len2;
271 int cmd_type = TASKSTATS_CMD_ATTR_UNSPEC;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700272 __u16 id;
273 __u32 mypid;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700274
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700275 struct nlattr *na;
276 int nl_sd = -1;
277 int len = 0;
278 pid_t tid = 0;
279 pid_t rtid = 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700280
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700281 int fd = 0;
282 int count = 0;
283 int write_file = 0;
284 int maskset = 0;
Scott Wiersdorf7f76c402007-05-08 00:30:25 -0700285 char *logfile = NULL;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700286 int loop = 0;
Balbir Singh546040d2007-11-14 16:59:14 -0800287 int containerset = 0;
Kees Cook8da01af2013-07-03 15:09:08 -0700288 char *containerpath = NULL;
Balbir Singh546040d2007-11-14 16:59:14 -0800289 int cfd = 0;
Mel Gormandb9e5672010-10-27 15:34:42 -0700290 int forking = 0;
291 sigset_t sigset;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700292
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700293 struct msgtemplate msg;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700294
Mel Gormandb9e5672010-10-27 15:34:42 -0700295 while (!forking) {
296 c = getopt(argc, argv, "qdiw:r:m:t:p:vlC:c:");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700297 if (c < 0)
298 break;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700299
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700300 switch (c) {
301 case 'd':
302 printf("print delayacct stats ON\n");
303 print_delays = 1;
304 break;
Andrew Mortoncf709842006-12-10 02:19:56 -0800305 case 'i':
306 printf("printing IO accounting\n");
307 print_io_accounting = 1;
308 break;
Maxim Uvarovb663a792007-07-15 23:40:48 -0700309 case 'q':
310 printf("printing task/process context switch rates\n");
311 print_task_context_switch_counts = 1;
312 break;
Balbir Singh546040d2007-11-14 16:59:14 -0800313 case 'C':
314 containerset = 1;
Kees Cook8da01af2013-07-03 15:09:08 -0700315 containerpath = optarg;
Balbir Singh546040d2007-11-14 16:59:14 -0800316 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700317 case 'w':
Scott Wiersdorf7f76c402007-05-08 00:30:25 -0700318 logfile = strdup(optarg);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700319 printf("write to file %s\n", logfile);
320 write_file = 1;
321 break;
322 case 'r':
323 rcvbufsz = atoi(optarg);
324 printf("receive buf size %d\n", rcvbufsz);
325 if (rcvbufsz < 0)
326 err(1, "Invalid rcv buf size\n");
327 break;
328 case 'm':
329 strncpy(cpumask, optarg, sizeof(cpumask));
Rickard Strandqvist88e15ce2014-06-23 13:22:04 -0700330 cpumask[sizeof(cpumask) - 1] = '\0';
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700331 maskset = 1;
332 printf("cpumask %s maskset %d\n", cpumask, maskset);
333 break;
334 case 't':
335 tid = atoi(optarg);
336 if (!tid)
337 err(1, "Invalid tgid\n");
338 cmd_type = TASKSTATS_CMD_ATTR_TGID;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700339 break;
340 case 'p':
341 tid = atoi(optarg);
342 if (!tid)
343 err(1, "Invalid pid\n");
344 cmd_type = TASKSTATS_CMD_ATTR_PID;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700345 break;
Mel Gormandb9e5672010-10-27 15:34:42 -0700346 case 'c':
347
348 /* Block SIGCHLD for sigwait() later */
349 if (sigemptyset(&sigset) == -1)
350 err(1, "Failed to empty sigset");
351 if (sigaddset(&sigset, SIGCHLD))
352 err(1, "Failed to set sigchld in sigset");
353 sigprocmask(SIG_BLOCK, &sigset, NULL);
354
355 /* fork/exec a child */
356 tid = fork();
357 if (tid < 0)
358 err(1, "Fork failed\n");
359 if (tid == 0)
360 if (execvp(argv[optind - 1],
361 &argv[optind - 1]) < 0)
362 exit(-1);
363
364 /* Set the command type and avoid further processing */
365 cmd_type = TASKSTATS_CMD_ATTR_PID;
366 forking = 1;
367 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700368 case 'v':
369 printf("debug on\n");
370 dbg = 1;
371 break;
372 case 'l':
373 printf("listen forever\n");
374 loop = 1;
375 break;
376 default:
Randy Dunlapf16825b2007-05-08 00:30:13 -0700377 usage();
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700378 exit(-1);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700379 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700380 }
381
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700382 if (write_file) {
383 fd = open(logfile, O_WRONLY | O_CREAT | O_TRUNC,
384 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
385 if (fd == -1) {
386 perror("Cannot open output file\n");
387 exit(1);
388 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700389 }
390
Markus Elfring563c17c2015-12-24 11:05:32 +0100391 nl_sd = create_nl_socket(NETLINK_GENERIC);
392 if (nl_sd < 0)
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700393 err(1, "error creating Netlink socket\n");
394
395
396 mypid = getpid();
397 id = get_family_id(nl_sd);
398 if (!id) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800399 fprintf(stderr, "Error getting family id, errno %d\n", errno);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700400 goto err;
401 }
402 PRINTF("family id %d\n", id);
403
404 if (maskset) {
405 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
406 TASKSTATS_CMD_ATTR_REGISTER_CPUMASK,
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700407 &cpumask, strlen(cpumask) + 1);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700408 PRINTF("Sent register cpumask, retval %d\n", rc);
409 if (rc < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800410 fprintf(stderr, "error sending register cpumask\n");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700411 goto err;
412 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700413 }
414
Balbir Singh546040d2007-11-14 16:59:14 -0800415 if (tid && containerset) {
416 fprintf(stderr, "Select either -t or -C, not both\n");
417 goto err;
418 }
419
Mel Gormandb9e5672010-10-27 15:34:42 -0700420 /*
421 * If we forked a child, wait for it to exit. Cannot use waitpid()
422 * as all the delicious data would be reaped as part of the wait
423 */
424 if (tid && forking) {
425 int sig_received;
426 sigwait(&sigset, &sig_received);
427 }
428
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700429 if (tid) {
430 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
431 cmd_type, &tid, sizeof(__u32));
432 PRINTF("Sent pid/tgid, retval %d\n", rc);
433 if (rc < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800434 fprintf(stderr, "error sending tid/tgid cmd\n");
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700435 goto done;
436 }
437 }
Shailabh Nagara3baf642006-07-14 00:24:42 -0700438
Balbir Singh546040d2007-11-14 16:59:14 -0800439 if (containerset) {
440 cfd = open(containerpath, O_RDONLY);
441 if (cfd < 0) {
442 perror("error opening container file");
443 goto err;
444 }
445 rc = send_cmd(nl_sd, id, mypid, CGROUPSTATS_CMD_GET,
446 CGROUPSTATS_CMD_ATTR_FD, &cfd, sizeof(__u32));
447 if (rc < 0) {
448 perror("error sending cgroupstats command");
449 goto err;
450 }
451 }
Marcus Meissner65a67bd2009-01-15 13:51:00 -0800452 if (!maskset && !tid && !containerset) {
453 usage();
454 goto err;
455 }
Balbir Singh546040d2007-11-14 16:59:14 -0800456
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700457 do {
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700458 rep_len = recv(nl_sd, &msg, sizeof(msg), 0);
459 PRINTF("received %d bytes\n", rep_len);
460
461 if (rep_len < 0) {
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800462 fprintf(stderr, "nonfatal reply error: errno %d\n",
463 errno);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700464 continue;
465 }
466 if (msg.n.nlmsg_type == NLMSG_ERROR ||
467 !NLMSG_OK((&msg.n), rep_len)) {
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700468 struct nlmsgerr *err = NLMSG_DATA(&msg);
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800469 fprintf(stderr, "fatal reply error, errno %d\n",
470 err->error);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700471 goto done;
472 }
473
Randy Dunlap10e6f322008-02-08 04:21:56 -0800474 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700475 sizeof(struct nlmsghdr), msg.n.nlmsg_len, rep_len);
476
477
478 rep_len = GENLMSG_PAYLOAD(&msg.n);
479
480 na = (struct nlattr *) GENLMSG_DATA(&msg);
481 len = 0;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700482 while (len < rep_len) {
483 len += NLA_ALIGN(na->nla_len);
484 switch (na->nla_type) {
485 case TASKSTATS_TYPE_AGGR_TGID:
486 /* Fall through */
487 case TASKSTATS_TYPE_AGGR_PID:
488 aggr_len = NLA_PAYLOAD(na->nla_len);
489 len2 = 0;
490 /* For nested attributes, na follows */
491 na = (struct nlattr *) NLA_DATA(na);
492 done = 0;
493 while (len2 < aggr_len) {
494 switch (na->nla_type) {
495 case TASKSTATS_TYPE_PID:
496 rtid = *(int *) NLA_DATA(na);
497 if (print_delays)
498 printf("PID\t%d\n", rtid);
499 break;
500 case TASKSTATS_TYPE_TGID:
501 rtid = *(int *) NLA_DATA(na);
502 if (print_delays)
503 printf("TGID\t%d\n", rtid);
504 break;
505 case TASKSTATS_TYPE_STATS:
506 count++;
507 if (print_delays)
508 print_delayacct((struct taskstats *) NLA_DATA(na));
Andrew Mortoncf709842006-12-10 02:19:56 -0800509 if (print_io_accounting)
510 print_ioacct((struct taskstats *) NLA_DATA(na));
Maxim Uvarovb663a792007-07-15 23:40:48 -0700511 if (print_task_context_switch_counts)
512 task_context_switch_counts((struct taskstats *) NLA_DATA(na));
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700513 if (fd) {
514 if (write(fd, NLA_DATA(na), na->nla_len) < 0) {
515 err(1,"write error\n");
516 }
517 }
518 if (!loop)
519 goto done;
520 break;
Nicolas Dichtel570d8e92016-04-27 17:53:08 +0200521 case TASKSTATS_TYPE_NULL:
522 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700523 default:
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800524 fprintf(stderr, "Unknown nested"
525 " nla_type %d\n",
526 na->nla_type);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700527 break;
528 }
529 len2 += NLA_ALIGN(na->nla_len);
Nicolas Dichtel570d8e92016-04-27 17:53:08 +0200530 na = (struct nlattr *)((char *)na +
531 NLA_ALIGN(na->nla_len));
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700532 }
533 break;
534
Balbir Singh546040d2007-11-14 16:59:14 -0800535 case CGROUPSTATS_TYPE_CGROUP_STATS:
536 print_cgroupstats(NLA_DATA(na));
537 break;
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700538 default:
Andrew Mortond2f7bf12006-12-10 02:19:55 -0800539 fprintf(stderr, "Unknown nla_type %d\n",
540 na->nla_type);
Jeff Mahoney4be2c952010-12-21 17:24:30 -0800541 case TASKSTATS_TYPE_NULL:
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700542 break;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700543 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700544 na = (struct nlattr *) (GENLMSG_DATA(&msg) + len);
Shailabh Nagara3baf642006-07-14 00:24:42 -0700545 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700546 } while (loop);
547done:
548 if (maskset) {
549 rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET,
550 TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK,
Balbir Singh7d1bdca2006-09-30 23:28:54 -0700551 &cpumask, strlen(cpumask) + 1);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700552 printf("Sent deregister mask, retval %d\n", rc);
553 if (rc < 0)
554 err(rc, "error sending deregister cpumask\n");
Shailabh Nagara3baf642006-07-14 00:24:42 -0700555 }
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700556err:
557 close(nl_sd);
558 if (fd)
559 close(fd);
Balbir Singh546040d2007-11-14 16:59:14 -0800560 if (cfd)
561 close(cfd);
Shailabh Nagar9e06d3f2006-07-14 00:24:45 -0700562 return 0;
Shailabh Nagara3baf642006-07-14 00:24:42 -0700563}