Merge branch 'master' of ssh://router/data/git/fio
[fio.git] / stat.c
CommitLineData
3c39a379
JA
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
5c4e1dbc 5#include <sys/stat.h>
3c39a379
JA
6#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
3c39a379
JA
11
12static struct itimerval itimer;
5c4e1dbc 13static struct list_head disk_list = LIST_HEAD_INIT(disk_list);
3c39a379
JA
14
15static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus)
16{
17 unsigned in_flight;
18 char line[256];
19 FILE *f;
20 char *p;
21
22 f = fopen(du->path, "r");
23 if (!f)
24 return 1;
25
26 p = fgets(line, sizeof(line), f);
27 if (!p) {
28 fclose(f);
29 return 1;
30 }
31
32 if (sscanf(p, "%u %u %llu %u %u %u %llu %u %u %u %u\n", &dus->ios[0], &dus->merges[0], &dus->sectors[0], &dus->ticks[0], &dus->ios[1], &dus->merges[1], &dus->sectors[1], &dus->ticks[1], &in_flight, &dus->io_ticks, &dus->time_in_queue) != 11) {
33 fclose(f);
34 return 1;
35 }
36
37 fclose(f);
38 return 0;
39}
40
41static void update_io_tick_disk(struct disk_util *du)
42{
43 struct disk_util_stat __dus, *dus, *ldus;
44 struct timeval t;
45
46 if (get_io_ticks(du, &__dus))
47 return;
48
49 dus = &du->dus;
50 ldus = &du->last_dus;
51
52 dus->sectors[0] += (__dus.sectors[0] - ldus->sectors[0]);
53 dus->sectors[1] += (__dus.sectors[1] - ldus->sectors[1]);
54 dus->ios[0] += (__dus.ios[0] - ldus->ios[0]);
55 dus->ios[1] += (__dus.ios[1] - ldus->ios[1]);
56 dus->merges[0] += (__dus.merges[0] - ldus->merges[0]);
57 dus->merges[1] += (__dus.merges[1] - ldus->merges[1]);
58 dus->ticks[0] += (__dus.ticks[0] - ldus->ticks[0]);
59 dus->ticks[1] += (__dus.ticks[1] - ldus->ticks[1]);
60 dus->io_ticks += (__dus.io_ticks - ldus->io_ticks);
61 dus->time_in_queue += (__dus.time_in_queue - ldus->time_in_queue);
62
63 gettimeofday(&t, NULL);
64 du->msec += mtime_since(&du->time, &t);
65 memcpy(&du->time, &t, sizeof(t));
66 memcpy(ldus, &__dus, sizeof(__dus));
67}
68
69void update_io_ticks(void)
70{
71 struct list_head *entry;
72 struct disk_util *du;
73
74 list_for_each(entry, &disk_list) {
75 du = list_entry(entry, struct disk_util, list);
76 update_io_tick_disk(du);
77 }
78}
79
80static int disk_util_exists(dev_t dev)
81{
82 struct list_head *entry;
83 struct disk_util *du;
84
85 list_for_each(entry, &disk_list) {
86 du = list_entry(entry, struct disk_util, list);
87
88 if (du->dev == dev)
89 return 1;
90 }
91
92 return 0;
93}
94
95static void disk_util_add(dev_t dev, char *path)
96{
97 struct disk_util *du = malloc(sizeof(*du));
98
99 memset(du, 0, sizeof(*du));
100 INIT_LIST_HEAD(&du->list);
101 sprintf(du->path, "%s/stat", path);
102 du->name = strdup(basename(path));
103 du->dev = dev;
104
105 gettimeofday(&du->time, NULL);
106 get_io_ticks(du, &du->last_dus);
107
108 list_add_tail(&du->list, &disk_list);
109}
110
111static int check_dev_match(dev_t dev, char *path)
112{
113 unsigned int major, minor;
114 char line[256], *p;
115 FILE *f;
116
117 f = fopen(path, "r");
118 if (!f) {
119 perror("open path");
120 return 1;
121 }
122
123 p = fgets(line, sizeof(line), f);
124 if (!p) {
125 fclose(f);
126 return 1;
127 }
128
129 if (sscanf(p, "%u:%u", &major, &minor) != 2) {
130 fclose(f);
131 return 1;
132 }
133
134 if (((major << 8) | minor) == dev) {
135 fclose(f);
136 return 0;
137 }
138
139 fclose(f);
140 return 1;
141}
142
143static int find_block_dir(dev_t dev, char *path)
144{
145 struct dirent *dir;
146 struct stat st;
147 int found = 0;
148 DIR *D;
149
150 D = opendir(path);
151 if (!D)
152 return 0;
153
154 while ((dir = readdir(D)) != NULL) {
155 char full_path[256];
156
157 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
158 continue;
3c39a379
JA
159
160 sprintf(full_path, "%s/%s", path, dir->d_name);
161
162 if (!strcmp(dir->d_name, "dev")) {
163 if (!check_dev_match(dev, full_path)) {
164 found = 1;
165 break;
166 }
167 }
168
3307d653 169 if (lstat(full_path, &st) == -1) {
3c39a379
JA
170 perror("stat");
171 break;
172 }
173
174 if (!S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))
175 continue;
176
177 found = find_block_dir(dev, full_path);
178 if (found) {
179 strcpy(path, full_path);
180 break;
181 }
182 }
183
184 closedir(D);
185 return found;
186}
187
188void init_disk_util(struct thread_data *td)
189{
53cdc686 190 struct fio_file *f;
3c39a379
JA
191 struct stat st;
192 char foo[256], tmp[256];
193 dev_t dev;
194 char *p;
195
196 if (!td->do_disk_util)
197 return;
198
53cdc686
JA
199 /*
200 * Just use the same file, they are on the same device.
201 */
202 f = &td->files[0];
203 if (!stat(f->file_name, &st)) {
3c39a379
JA
204 if (S_ISBLK(st.st_mode))
205 dev = st.st_rdev;
206 else
207 dev = st.st_dev;
208 } else {
209 /*
210 * must be a file, open "." in that path
211 */
53cdc686 212 strcpy(foo, f->file_name);
3c39a379
JA
213 p = dirname(foo);
214 if (stat(p, &st)) {
215 perror("disk util stat");
216 return;
217 }
218
219 dev = st.st_dev;
220 }
221
222 if (disk_util_exists(dev))
223 return;
224
225 sprintf(foo, "/sys/block");
226 if (!find_block_dir(dev, foo))
227 return;
228
229 /*
230 * If there's a ../queue/ directory there, we are inside a partition.
231 * Check if that is the case and jump back. For loop/md/dm etc we
232 * are already in the right spot.
233 */
234 sprintf(tmp, "%s/../queue", foo);
235 if (!stat(tmp, &st)) {
236 p = dirname(foo);
237 sprintf(tmp, "%s/queue", p);
238 if (stat(tmp, &st)) {
3b70d7e5 239 log_err("unknown sysfs layout\n");
3c39a379
JA
240 return;
241 }
242 sprintf(foo, "%s", p);
243 }
244
245 td->sysfs_root = strdup(foo);
246 disk_util_add(dev, foo);
247}
248
249void disk_util_timer_arm(void)
250{
251 itimer.it_value.tv_sec = 0;
252 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
253 setitimer(ITIMER_REAL, &itimer, NULL);
254}
255
256void update_rusage_stat(struct thread_data *td)
257{
258 if (!(td->runtime[0] + td->runtime[1]))
259 return;
260
261 getrusage(RUSAGE_SELF, &td->ru_end);
262
263 td->usr_time += mtime_since(&td->ru_start.ru_utime, &td->ru_end.ru_utime);
264 td->sys_time += mtime_since(&td->ru_start.ru_stime, &td->ru_end.ru_stime);
265 td->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
266
267
268 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
269}
270
271static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
272 double *mean, double *dev)
273{
274 double n;
275
276 if (is->samples == 0)
277 return 0;
278
279 *min = is->min_val;
280 *max = is->max_val;
281
282 n = (double) is->samples;
283 *mean = (double) is->val / n;
284 *dev = sqrt(((double) is->val_sq - (*mean * *mean) / n) / (n - 1));
3c39a379
JA
285
286 return 1;
287}
288
289static void show_group_stats(struct group_run_stats *rs, int id)
290{
eb8bbf48 291 fprintf(f_out, "\nRun status group %d (all jobs):\n", id);
3c39a379
JA
292
293 if (rs->max_run[DDIR_READ])
eb8bbf48 294 fprintf(f_out, " READ: io=%lluMiB, aggrb=%llu, minb=%llu, maxb=%llu, mint=%llumsec, maxt=%llumsec\n", rs->io_kb[0] >> 10, rs->agg[0], rs->min_bw[0], rs->max_bw[0], rs->min_run[0], rs->max_run[0]);
3c39a379 295 if (rs->max_run[DDIR_WRITE])
eb8bbf48 296 fprintf(f_out, " WRITE: io=%lluMiB, aggrb=%llu, minb=%llu, maxb=%llu, mint=%llumsec, maxt=%llumsec\n", rs->io_kb[1] >> 10, rs->agg[1], rs->min_bw[1], rs->max_bw[1], rs->min_run[1], rs->max_run[1]);
3c39a379
JA
297}
298
299static void show_disk_util(void)
300{
301 struct disk_util_stat *dus;
302 struct list_head *entry;
303 struct disk_util *du;
304 double util;
305
eb8bbf48 306 fprintf(f_out, "\nDisk stats (read/write):\n");
3c39a379
JA
307
308 list_for_each(entry, &disk_list) {
309 du = list_entry(entry, struct disk_util, list);
310 dus = &du->dus;
311
312 util = (double) 100 * du->dus.io_ticks / (double) du->msec;
313 if (util > 100.0)
314 util = 100.0;
315
eb8bbf48 316 fprintf(f_out, " %s: ios=%u/%u, merge=%u/%u, ticks=%u/%u, in_queue=%u, util=%3.2f%%\n", du->name, dus->ios[0], dus->ios[1], dus->merges[0], dus->merges[1], dus->ticks[0], dus->ticks[1], dus->time_in_queue, util);
3c39a379
JA
317 }
318}
319
320static void show_ddir_status(struct thread_data *td, struct group_run_stats *rs,
321 int ddir)
322{
323 char *ddir_str[] = { "read ", "write" };
324 unsigned long min, max;
325 unsigned long long bw;
326 double mean, dev;
327
328 if (!td->runtime[ddir])
329 return;
330
331 bw = td->io_bytes[ddir] / td->runtime[ddir];
eb8bbf48 332 fprintf(f_out, " %s: io=%6lluMiB, bw=%6lluKiB/s, runt=%6lumsec\n", ddir_str[ddir], td->io_bytes[ddir] >> 20, bw, td->runtime[ddir]);
3c39a379
JA
333
334 if (calc_lat(&td->slat_stat[ddir], &min, &max, &mean, &dev))
eb8bbf48 335 fprintf(f_out, " slat (msec): min=%5lu, max=%5lu, avg=%5.02f, dev=%5.02f\n", min, max, mean, dev);
3c39a379
JA
336
337 if (calc_lat(&td->clat_stat[ddir], &min, &max, &mean, &dev))
eb8bbf48 338 fprintf(f_out, " clat (msec): min=%5lu, max=%5lu, avg=%5.02f, dev=%5.02f\n", min, max, mean, dev);
3c39a379
JA
339
340 if (calc_lat(&td->bw_stat[ddir], &min, &max, &mean, &dev)) {
341 double p_of_agg;
342
343 p_of_agg = mean * 100 / (double) rs->agg[ddir];
eb8bbf48 344 fprintf(f_out, " bw (KiB/s) : min=%5lu, max=%5lu, per=%3.2f%%, avg=%5.02f, dev=%5.02f\n", min, max, p_of_agg, mean, dev);
3c39a379
JA
345 }
346}
347
348static void show_thread_status(struct thread_data *td,
349 struct group_run_stats *rs)
350{
351 double usr_cpu, sys_cpu;
352
353 if (!(td->io_bytes[0] + td->io_bytes[1]) && !td->error)
354 return;
355
eb8bbf48 356 fprintf(f_out, "%s: (groupid=%d): err=%2d:\n",td->name, td->groupid, td->error);
3c39a379
JA
357
358 show_ddir_status(td, rs, td->ddir);
359 if (td->io_bytes[td->ddir ^ 1])
360 show_ddir_status(td, rs, td->ddir ^ 1);
361
362 if (td->runtime[0] + td->runtime[1]) {
363 double runt = td->runtime[0] + td->runtime[1];
364
365 usr_cpu = (double) td->usr_time * 100 / runt;
366 sys_cpu = (double) td->sys_time * 100 / runt;
367 } else {
368 usr_cpu = 0;
369 sys_cpu = 0;
370 }
371
eb8bbf48 372 fprintf(f_out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu\n", usr_cpu, sys_cpu, td->ctx);
3c39a379
JA
373}
374
c6ae0a5b
JA
375static void show_ddir_status_terse(struct thread_data *td,
376 struct group_run_stats *rs, int ddir)
377{
378 unsigned long min, max;
379 unsigned long long bw;
380 double mean, dev;
381
382 bw = 0;
383 if (td->runtime[ddir])
384 bw = td->io_bytes[ddir] / td->runtime[ddir];
385
386 fprintf(f_out, ",%llu,%llu,%lu", td->io_bytes[ddir] >> 10, bw, td->runtime[ddir]);
387
388 if (calc_lat(&td->slat_stat[ddir], &min, &max, &mean, &dev))
389 fprintf(f_out, ",%lu,%lu,%f,%f", min, max, mean, dev);
390 else
391 fprintf(f_out, ",%lu,%lu,%f,%f", 0UL, 0UL, 0.0, 0.0);
392
393 if (calc_lat(&td->clat_stat[ddir], &min, &max, &mean, &dev))
394 fprintf(f_out, ",%lu,%lu,%f,%f", min, max, mean, dev);
395 else
396 fprintf(f_out, ",%lu,%lu,%f,%f", 0UL, 0UL, 0.0, 0.0);
397
398 if (calc_lat(&td->bw_stat[ddir], &min, &max, &mean, &dev)) {
399 double p_of_agg;
400
401 p_of_agg = mean * 100 / (double) rs->agg[ddir];
402 fprintf(f_out, ",%lu,%lu,%f%%,%f,%f", min, max, p_of_agg, mean, dev);
403 } else
404 fprintf(f_out, ",%lu,%lu,%f%%,%f,%f", 0UL, 0UL, 0.0, 0.0, 0.0);
405
406}
407
408
409static void show_thread_status_terse(struct thread_data *td,
410 struct group_run_stats *rs)
411{
412 double usr_cpu, sys_cpu;
413
414 fprintf(f_out, "%s,%d,%d",td->name, td->groupid, td->error);
415
416 show_ddir_status_terse(td, rs, 0);
417 show_ddir_status_terse(td, rs, 1);
418
419 if (td->runtime[0] + td->runtime[1]) {
420 double runt = td->runtime[0] + td->runtime[1];
421
422 usr_cpu = (double) td->usr_time * 100 / runt;
423 sys_cpu = (double) td->sys_time * 100 / runt;
424 } else {
425 usr_cpu = 0;
426 sys_cpu = 0;
427 }
428
429 fprintf(f_out, ",%f%%,%f%%,%lu\n", usr_cpu, sys_cpu, td->ctx);
430}
431
3c39a379
JA
432void show_run_stats(void)
433{
434 struct group_run_stats *runstats, *rs;
435 struct thread_data *td;
436 int i;
437
438 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
439
440 for (i = 0; i < groupid + 1; i++) {
441 rs = &runstats[i];
442
443 memset(rs, 0, sizeof(*rs));
444 rs->min_bw[0] = rs->min_run[0] = ~0UL;
445 rs->min_bw[1] = rs->min_run[1] = ~0UL;
446 }
447
448 for (i = 0; i < thread_number; i++) {
449 unsigned long long rbw, wbw;
450
451 td = &threads[i];
452
453 if (td->error) {
eb8bbf48 454 fprintf(f_out, "%s: %s\n", td->name, td->verror);
3c39a379
JA
455 continue;
456 }
457
458 rs = &runstats[td->groupid];
459
460 if (td->runtime[0] < rs->min_run[0] || !rs->min_run[0])
461 rs->min_run[0] = td->runtime[0];
462 if (td->runtime[0] > rs->max_run[0])
463 rs->max_run[0] = td->runtime[0];
464 if (td->runtime[1] < rs->min_run[1] || !rs->min_run[1])
465 rs->min_run[1] = td->runtime[1];
466 if (td->runtime[1] > rs->max_run[1])
467 rs->max_run[1] = td->runtime[1];
468
469 rbw = wbw = 0;
470 if (td->runtime[0])
471 rbw = td->io_bytes[0] / (unsigned long long) td->runtime[0];
472 if (td->runtime[1])
473 wbw = td->io_bytes[1] / (unsigned long long) td->runtime[1];
474
475 if (rbw < rs->min_bw[0])
476 rs->min_bw[0] = rbw;
477 if (wbw < rs->min_bw[1])
478 rs->min_bw[1] = wbw;
479 if (rbw > rs->max_bw[0])
480 rs->max_bw[0] = rbw;
481 if (wbw > rs->max_bw[1])
482 rs->max_bw[1] = wbw;
483
484 rs->io_kb[0] += td->io_bytes[0] >> 10;
485 rs->io_kb[1] += td->io_bytes[1] >> 10;
486 }
487
488 for (i = 0; i < groupid + 1; i++) {
489 rs = &runstats[i];
490
491 if (rs->max_run[0])
492 rs->agg[0] = (rs->io_kb[0]*1024) / rs->max_run[0];
493 if (rs->max_run[1])
494 rs->agg[1] = (rs->io_kb[1]*1024) / rs->max_run[1];
495 }
496
497 /*
498 * don't overwrite last signal output
499 */
c6ae0a5b
JA
500 if (!terse_output)
501 printf("\n");
3c39a379
JA
502
503 for (i = 0; i < thread_number; i++) {
504 td = &threads[i];
505 rs = &runstats[td->groupid];
506
c6ae0a5b
JA
507 if (terse_output)
508 show_thread_status_terse(td, rs);
509 else
510 show_thread_status(td, rs);
3c39a379
JA
511 }
512
c6ae0a5b
JA
513 if (!terse_output) {
514 for (i = 0; i < groupid + 1; i++)
515 show_group_stats(&runstats[i], i);
3c39a379 516
c6ae0a5b
JA
517 show_disk_util();
518 }
3c39a379
JA
519}
520
521static inline void add_stat_sample(struct io_stat *is, unsigned long val)
522{
523 if (val > is->max_val)
524 is->max_val = val;
525 if (val < is->min_val)
526 is->min_val = val;
527
528 is->val += val;
529 is->val_sq += val * val;
530 is->samples++;
531}
532
533static void add_log_sample(struct thread_data *td, struct io_log *iolog,
534 unsigned long val, int ddir)
535{
536 if (iolog->nr_samples == iolog->max_samples) {
537 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
538
539 iolog->log = realloc(iolog->log, new_size);
540 iolog->max_samples <<= 1;
541 }
542
543 iolog->log[iolog->nr_samples].val = val;
544 iolog->log[iolog->nr_samples].time = mtime_since_now(&td->epoch);
545 iolog->log[iolog->nr_samples].ddir = ddir;
546 iolog->nr_samples++;
547}
548
549void add_clat_sample(struct thread_data *td, int ddir, unsigned long msec)
550{
551 add_stat_sample(&td->clat_stat[ddir], msec);
552
553 if (td->clat_log)
554 add_log_sample(td, td->clat_log, msec, ddir);
555}
556
557void add_slat_sample(struct thread_data *td, int ddir, unsigned long msec)
558{
559 add_stat_sample(&td->slat_stat[ddir], msec);
560
561 if (td->slat_log)
562 add_log_sample(td, td->slat_log, msec, ddir);
563}
564
565void add_bw_sample(struct thread_data *td, int ddir)
566{
567 unsigned long spent = mtime_since_now(&td->stat_sample_time[ddir]);
568 unsigned long rate;
569
570 if (spent < td->bw_avg_time)
571 return;
572
573 rate = (td->this_io_bytes[ddir] - td->stat_io_bytes[ddir]) / spent;
574 add_stat_sample(&td->bw_stat[ddir], rate);
575
576 if (td->bw_log)
577 add_log_sample(td, td->bw_log, rate, ddir);
578
579 gettimeofday(&td->stat_sample_time[ddir], NULL);
580 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
581}
582
583