1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
|
/*
* Copyright (C) 2012 Fusion-io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License v2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Parts of this file were imported from Jens Axboe's blktrace sources (also GPL)
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <inttypes.h>
#include <string.h>
#include <asm/types.h>
#include <errno.h>
#include <sys/mman.h>
#include <time.h>
#include <math.h>
#include <dirent.h>
#include "plot.h"
#include "blkparse.h"
#include "list.h"
#include "tracers.h"
#include "../blktrace_api.h"
#define IO_HASH_TABLE_BITS 11
#define IO_HASH_TABLE_SIZE (1 << IO_HASH_TABLE_BITS)
static struct list_head io_hash_table[IO_HASH_TABLE_SIZE];
static u64 ios_in_flight = 0;
#define PROCESS_HASH_TABLE_BITS 7
#define PROCESS_HASH_TABLE_SIZE (1 << PROCESS_HASH_TABLE_BITS)
static struct list_head process_hash_table[PROCESS_HASH_TABLE_SIZE];
extern int plot_io_action;
extern int io_per_process;
#define BLK_DATADIR(a) (((a) >> BLK_TC_SHIFT) & (BLK_TC_READ | BLK_TC_WRITE))
#define BLK_TA_MASK (((1 << BLK_TC_SHIFT) - 1) & ~__BLK_TA_CGROUP)
struct pending_io {
/* sector offset of this IO */
u64 sector;
/* dev_t for this IO */
u32 device;
/* time this IO was dispatched */
u64 dispatch_time;
/* time this IO was finished */
u64 completion_time;
struct list_head hash_list;
/* process which queued this IO */
u32 pid;
};
struct pid_map {
struct list_head hash_list;
u32 pid;
int index;
char name[0];
};
u64 get_record_time(struct trace *trace)
{
return trace->io->time;
}
void init_io_hash_table(void)
{
int i;
struct list_head *head;
for (i = 0; i < IO_HASH_TABLE_SIZE; i++) {
head = io_hash_table + i;
INIT_LIST_HEAD(head);
}
}
/* taken from the kernel hash.h */
static inline u64 hash_sector(u64 val)
{
u64 hash = val;
/* Sigh, gcc can't optimise this alone like it does for 32 bits. */
u64 n = hash;
n <<= 18;
hash -= n;
n <<= 33;
hash -= n;
n <<= 3;
hash += n;
n <<= 3;
hash -= n;
n <<= 4;
hash += n;
n <<= 2;
hash += n;
/* High bits are more random, so use them. */
return hash >> (64 - IO_HASH_TABLE_BITS);
}
static int io_hash_table_insert(struct pending_io *ins_pio)
{
u64 sector = ins_pio->sector;
u32 dev = ins_pio->device;
int slot = hash_sector(sector);
struct list_head *head;
struct pending_io *pio;
head = io_hash_table + slot;
list_for_each_entry(pio, head, hash_list) {
if (pio->sector == sector && pio->device == dev)
return -EEXIST;
}
list_add_tail(&ins_pio->hash_list, head);
return 0;
}
static struct pending_io *io_hash_table_search(u64 sector, u32 dev)
{
int slot = hash_sector(sector);
struct list_head *head;
struct pending_io *pio;
head = io_hash_table + slot;
list_for_each_entry(pio, head, hash_list) {
if (pio->sector == sector && pio->device == dev)
return pio;
}
return NULL;
}
static struct pending_io *hash_queued_io(struct blk_io_trace *io)
{
struct pending_io *pio;
int ret;
pio = calloc(1, sizeof(*pio));
pio->sector = io->sector;
pio->device = io->device;
pio->pid = io->pid;
ret = io_hash_table_insert(pio);
if (ret < 0) {
/* crud, the IO is there already */
free(pio);
return NULL;
}
return pio;
}
static struct pending_io *hash_dispatched_io(struct blk_io_trace *io)
{
struct pending_io *pio;
pio = io_hash_table_search(io->sector, io->device);
if (!pio) {
pio = hash_queued_io(io);
if (!pio)
return NULL;
}
pio->dispatch_time = io->time;
return pio;
}
static struct pending_io *hash_completed_io(struct blk_io_trace *io)
{
struct pending_io *pio;
pio = io_hash_table_search(io->sector, io->device);
if (!pio)
return NULL;
return pio;
}
void init_process_hash_table(void)
{
int i;
struct list_head *head;
for (i = 0; i < PROCESS_HASH_TABLE_SIZE; i++) {
head = process_hash_table + i;
INIT_LIST_HEAD(head);
}
}
static u32 hash_pid(u32 pid)
{
u32 hash = pid;
hash ^= pid >> 3;
hash ^= pid >> 3;
hash ^= pid >> 4;
hash ^= pid >> 6;
return (hash & (PROCESS_HASH_TABLE_SIZE - 1));
}
static struct pid_map *process_hash_search(u32 pid)
{
int slot = hash_pid(pid);
struct list_head *head;
struct pid_map *pm;
head = process_hash_table + slot;
list_for_each_entry(pm, head, hash_list) {
if (pm->pid == pid)
return pm;
}
return NULL;
}
static struct pid_map *process_hash_insert(u32 pid, char *name)
{
int slot = hash_pid(pid);
struct pid_map *pm;
int old_index = 0;
char buf[16];
pm = process_hash_search(pid);
if (pm) {
/* Entry exists and name shouldn't be changed? */
if (!name || !strcmp(name, pm->name))
return pm;
list_del(&pm->hash_list);
old_index = pm->index;
free(pm);
}
if (!name) {
sprintf(buf, "[%u]", pid);
name = buf;
}
pm = malloc(sizeof(struct pid_map) + strlen(name) + 1);
pm->pid = pid;
pm->index = old_index;
strcpy(pm->name, name);
list_add_tail(&pm->hash_list, process_hash_table + slot);
return pm;
}
static void handle_notify(struct trace *trace)
{
struct blk_io_trace *io = trace->io;
void *payload = (char *)io + sizeof(*io);
int pdu_len = io->pdu_len;
u32 two32[2];
if (io->action & __BLK_TN_CGROUP) {
payload += sizeof(struct blk_io_cgroup_payload);
pdu_len -= sizeof(struct blk_io_cgroup_payload);
}
if ((io->action & ~__BLK_TN_CGROUP) == BLK_TN_PROCESS) {
if (io_per_process)
process_hash_insert(io->pid, payload);
return;
}
if ((io->action & ~__BLK_TN_CGROUP) != BLK_TN_TIMESTAMP)
return;
if (pdu_len != sizeof(two32))
return;
memcpy(two32, payload, sizeof(two32));
trace->start_timestamp = io->time;
trace->abs_start_time.tv_sec = two32[0];
trace->abs_start_time.tv_nsec = two32[1];
if (trace->abs_start_time.tv_nsec < 0) {
trace->abs_start_time.tv_sec--;
trace->abs_start_time.tv_nsec += 1000000000;
}
}
int next_record(struct trace *trace)
{
int skip = trace->io->pdu_len;
u64 offset;
trace->cur += sizeof(*trace->io) + skip;
offset = trace->cur - trace->start;
if (offset >= trace->len)
return 1;
trace->io = (struct blk_io_trace *)trace->cur;
return 0;
}
void first_record(struct trace *trace)
{
trace->cur = trace->start;
trace->io = (struct blk_io_trace *)trace->cur;
}
static int is_io_event(struct blk_io_trace *test)
{
char *message;
if (!(test->action & BLK_TC_ACT(BLK_TC_NOTIFY)))
return 1;
if ((test->action & ~__BLK_TN_CGROUP) == BLK_TN_MESSAGE) {
int len = test->pdu_len;
message = (char *)(test + 1);
if (test->action & __BLK_TN_CGROUP) {
len -= sizeof(struct blk_io_cgroup_payload);
message += sizeof(struct blk_io_cgroup_payload);
}
if (len < 3)
return 0;
if (strncmp(message, "fio ", 4) == 0) {
return 1;
}
}
return 0;
}
u64 find_last_time(struct trace *trace)
{
char *p = trace->start + trace->len;
struct blk_io_trace *test;
int search_len = 0;
u64 found = 0;
if (trace->len < sizeof(*trace->io))
return 0;
p -= sizeof(*trace->io);
while (p >= trace->start) {
test = (struct blk_io_trace *)p;
if (CHECK_MAGIC(test) && is_io_event(test)) {
u64 offset = p - trace->start;
if (offset + sizeof(*test) + test->pdu_len == trace->len) {
return test->time;
}
}
p--;
search_len++;
if (search_len > 8192) {
break;
}
}
/* searching backwards didn't work out, we'll have to scan the file */
first_record(trace);
while (1) {
if (is_io_event(trace->io))
found = trace->io->time;
if (next_record(trace))
break;
}
first_record(trace);
return found;
}
static int parse_fio_bank_message(struct trace *trace, u64 *bank_ret, u64 *offset_ret,
u64 *num_banks_ret)
{
char *s;
char *next;
char *message;
struct blk_io_trace *test = trace->io;
int len = test->pdu_len;
u64 bank;
u64 offset;
u64 num_banks;
if (!(test->action & BLK_TC_ACT(BLK_TC_NOTIFY)))
return -1;
if ((test->action & ~__BLK_TN_CGROUP) != BLK_TN_MESSAGE)
return -1;
message = (char *)(test + 1);
if (test->action & __BLK_TN_CGROUP) {
len -= sizeof(struct blk_io_cgroup_payload);
message += sizeof(struct blk_io_cgroup_payload);
}
/* the message is fio rw bank offset num_banks */
if (len < 3)
return -1;
if (strncmp(message, "fio r ", 6) != 0)
return -1;
message = strndup(message, len);
s = strchr(message, ' ');
if (!s)
goto out;
s++;
s = strchr(s, ' ');
if (!s)
goto out;
bank = strtoll(s, &next, 10);
if (s == next)
goto out;
s = next;
offset = strtoll(s, &next, 10);
if (s == next)
goto out;
s = next;
num_banks = strtoll(s, &next, 10);
if (s == next)
goto out;
*bank_ret = bank;
*offset_ret = offset;
*num_banks_ret = num_banks;
return 0;
out:
free(message);
return -1;
}
static struct dev_info *lookup_dev(struct trace *trace, struct blk_io_trace *io)
{
u32 dev = io->device;
int i;
struct dev_info *di = NULL;
for (i = 0; i < trace->num_devices; i++) {
if (trace->devices[i].device == dev) {
di = trace->devices + i;
goto found;
}
}
i = trace->num_devices++;
if (i >= MAX_DEVICES_PER_TRACE) {
fprintf(stderr, "Trace contains too many devices (%d)\n", i);
exit(1);
}
di = trace->devices + i;
di->device = dev;
found:
return di;
}
static void map_devices(struct trace *trace)
{
struct dev_info *di;
u64 found;
u64 map_start = 0;
int i;
first_record(trace);
while (1) {
if (!(trace->io->action & BLK_TC_ACT(BLK_TC_NOTIFY))) {
di = lookup_dev(trace, trace->io);
found = trace->io->sector << 9;
if (found < di->min)
di->min = found;
found += trace->io->bytes;
if (di->max < found)
di->max = found;
}
if (next_record(trace))
break;
}
first_record(trace);
for (i = 0; i < trace->num_devices; i++) {
di = trace->devices + i;
di->map = map_start;
map_start += di->max - di->min;
}
}
static u64 map_io(struct trace *trace, struct blk_io_trace *io)
{
struct dev_info *di = lookup_dev(trace, io);
u64 val = trace->io->sector << 9;
return di->map + val - di->min;
}
void find_extreme_offsets(struct trace *trace, u64 *min_ret, u64 *max_ret, u64 *max_bank_ret,
u64 *max_offset_ret)
{
u64 found = 0;
u64 max = 0, min = ~(u64)0;
u64 max_bank = 0;
u64 max_bank_offset = 0;
u64 num_banks = 0;
map_devices(trace);
first_record(trace);
while (1) {
if (!(trace->io->action & BLK_TC_ACT(BLK_TC_NOTIFY))) {
found = map_io(trace, trace->io);
if (found < min)
min = found;
found += trace->io->bytes;
if (max < found)
max = found;
} else {
u64 bank;
u64 offset;
if (!parse_fio_bank_message(trace, &bank,
&offset, &num_banks)) {
if (bank > max_bank)
max_bank = bank;
if (offset > max_bank_offset)
max_bank_offset = offset;
}
}
if (next_record(trace))
break;
}
first_record(trace);
*min_ret = min;
*max_ret = max;
*max_bank_ret = max_bank;
*max_offset_ret = max_bank_offset;
}
static void check_io_types(struct trace *trace)
{
struct blk_io_trace *io = trace->io;
int action = io->action & BLK_TA_MASK;
if (!(io->action & BLK_TC_ACT(BLK_TC_NOTIFY))) {
switch (action) {
case __BLK_TA_COMPLETE:
trace->found_completion = 1;
break;
case __BLK_TA_ISSUE:
trace->found_issue = 1;
break;
case __BLK_TA_QUEUE:
trace->found_queue = 1;
break;
};
}
}
int filter_outliers(struct trace *trace, u64 min_offset, u64 max_offset,
u64 *yzoom_min, u64 *yzoom_max)
{
int hits[11];
u64 max_per_bucket[11];
u64 min_per_bucket[11];
u64 bytes_per_bucket = (max_offset - min_offset + 1) / 10;
int slot;
int fat_count = 0;
memset(hits, 0, sizeof(int) * 11);
memset(max_per_bucket, 0, sizeof(u64) * 11);
memset(min_per_bucket, 0xff, sizeof(u64) * 11);
first_record(trace);
while (1) {
check_io_types(trace);
if (!(trace->io->action & BLK_TC_ACT(BLK_TC_NOTIFY)) &&
(trace->io->action & BLK_TA_MASK) == __BLK_TA_QUEUE) {
u64 off = map_io(trace, trace->io) - min_offset;
slot = (int)(off / bytes_per_bucket);
hits[slot]++;
if (off < min_per_bucket[slot])
min_per_bucket[slot] = off;
off += trace->io->bytes;
slot = (int)(off / bytes_per_bucket);
hits[slot]++;
if (off > max_per_bucket[slot])
max_per_bucket[slot] = off;
}
if (next_record(trace))
break;
}
first_record(trace);
for (slot = 0; slot < 11; slot++) {
if (hits[slot] > fat_count) {
fat_count = hits[slot];
}
}
*yzoom_max = max_offset;
for (slot = 10; slot >= 0; slot--) {
double d = hits[slot];
if (d >= (double)fat_count * .05) {
*yzoom_max = max_per_bucket[slot] + min_offset;
break;
}
}
*yzoom_min = min_offset;
for (slot = 0; slot < 10; slot++) {
double d = hits[slot];
if (d >= (double)fat_count * .05) {
*yzoom_min = min_per_bucket[slot] + min_offset;
break;
}
}
return 0;
}
static char footer[] = ".blktrace.0";
static int footer_len = sizeof(footer) - 1;
static int match_trace(char *name, int *len)
{
int match_len;
int footer_start;
match_len = strlen(name);
if (match_len <= footer_len)
return 0;
footer_start = match_len - footer_len;
if (strcmp(name + footer_start, footer) != 0)
return 0;
if (len)
*len = match_len;
return 1;
}
struct tracelist {
struct tracelist *next;
char *name;
};
static struct tracelist *traces_list(char *dir_name, int *len)
{
int count = 0;
struct tracelist *traces = NULL;
int dlen = strlen(dir_name);
DIR *dir = opendir(dir_name);
if (!dir)
return NULL;
while (1) {
int n = 0;
struct tracelist *tl;
struct dirent *d = readdir(dir);
if (!d)
break;
if (!match_trace(d->d_name, &n))
continue;
n += dlen + 1; /* dir + '/' + file */
/* Allocate space for tracelist + filename */
tl = calloc(1, sizeof(struct tracelist) + (sizeof(char) * (n + 1)));
if (!tl) {
closedir(dir);
return NULL;
}
tl->next = traces;
tl->name = (char *)(tl + 1);
snprintf(tl->name, n, "%s/%s", dir_name, d->d_name);
traces = tl;
count++;
}
closedir(dir);
if (len)
*len = count;
return traces;
}
static void traces_free(struct tracelist *traces)
{
while (traces) {
struct tracelist *tl = traces;
traces = traces->next;
free(tl);
}
}
static int dump_traces(struct tracelist *traces, int count, char *dumpfile)
{
struct tracelist *tl;
char **argv = NULL;
int argc = 0;
int i;
int err = 0;
argc = count * 2; /* {"-i", trace } */
argc += 4; /* See below */
argv = calloc(argc + 1, sizeof(char *));
if (!argv)
return -errno;
i = 0;
argv[i++] = "blkparse";
argv[i++] = "-O";
argv[i++] = "-d";
argv[i++] = dumpfile;
for (tl = traces; tl != NULL; tl = tl->next) {
argv[i++] = "-i";
argv[i++] = tl->name;
}
err = run_program(argc, argv, 1, NULL, NULL);
if (err)
fprintf(stderr, "%s exited with %d, expected 0\n", argv[0], err);
free(argv);
return err;
}
static char *find_trace_file(char *filename)
{
int ret;
struct stat st;
char *dot;
int found_dir = 0;
char *dumpfile;
int len = strlen(filename);
/* look for an exact match of whatever they pass in.
* If it is a file, assume it is the dump file.
* If a directory, remember that it existed so we
* can combine traces in that directory later
*/
ret = stat(filename, &st);
if (ret == 0) {
if (S_ISREG(st.st_mode))
return strdup(filename);
if (S_ISDIR(st.st_mode))
found_dir = 1;
}
if (found_dir) {
int i;
/* Eat up trailing '/'s */
for (i = len - 1; filename[i] == '/'; i--)
filename[i] = '\0';
}
/*
* try tacking .dump onto the end and see if that already
* has been generated
*/
ret = asprintf(&dumpfile, "%s.dump", filename);
if (ret == -1) {
perror("Error building dump file name");
return NULL;
}
ret = stat(dumpfile, &st);
if (ret == 0)
return dumpfile;
/*
* try to generate the .dump from all the traces in
* a single dir.
*/
if (found_dir) {
int count;
struct tracelist *traces = traces_list(filename, &count);
if (traces) {
ret = dump_traces(traces, count, dumpfile);
traces_free(traces);
if (ret == 0)
return dumpfile;
}
}
free(dumpfile);
/*
* try to generate the .dump from all the blktrace
* files for a named trace
*/
dot = strrchr(filename, '.');
if (!dot || strcmp(".dump", dot) != 0) {
struct tracelist trace = {0 ,NULL};
if (dot && dot != filename)
len = dot - filename;
ret = asprintf(&trace.name, "%*s.blktrace.0", len, filename);
if (ret == -1)
return NULL;
ret = asprintf(&dumpfile, "%*s.dump", len, filename);
if (ret == -1) {
free(trace.name);
return NULL;
}
ret = dump_traces(&trace, 1, dumpfile);
if (ret == 0) {
free(trace.name);
return dumpfile;
}
free(trace.name);
free(dumpfile);
}
return NULL;
}
struct trace *open_trace(char *filename)
{
int fd;
char *p;
struct stat st;
int ret;
struct trace *trace;
char *found_filename;
trace = calloc(1, sizeof(*trace));
if (!trace) {
fprintf(stderr, "unable to allocate memory for trace\n");
return NULL;
}
found_filename = find_trace_file(filename);
if (!found_filename) {
fprintf(stderr, "Unable to find trace file %s\n", filename);
goto fail;
}
filename = found_filename;
fd = open(filename, O_RDONLY);
if (fd < 0) {
fprintf(stderr, "Unable to open trace file %s err %s\n", filename, strerror(errno));
goto fail;
}
ret = fstat(fd, &st);
if (ret < 0) {
fprintf(stderr, "stat failed on %s err %s\n", filename, strerror(errno));
goto fail_fd;
}
p = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
if (p == MAP_FAILED) {
fprintf(stderr, "Unable to mmap trace file %s, err %s\n", filename, strerror(errno));
goto fail_fd;
}
trace->fd = fd;
trace->len = st.st_size;
trace->start = p;
trace->cur = p;
trace->io = (struct blk_io_trace *)p;
return trace;
fail_fd:
close(fd);
fail:
free(trace);
return NULL;
}
static inline int tput_event(struct trace *trace)
{
if (trace->found_completion)
return __BLK_TA_COMPLETE;
if (trace->found_issue)
return __BLK_TA_ISSUE;
if (trace->found_queue)
return __BLK_TA_QUEUE;
return __BLK_TA_COMPLETE;
}
int action_char_to_num(char action)
{
switch (action) {
case 'Q':
return __BLK_TA_QUEUE;
case 'D':
return __BLK_TA_ISSUE;
case 'C':
return __BLK_TA_COMPLETE;
}
return -1;
}
static inline int io_event(struct trace *trace)
{
if (plot_io_action)
return plot_io_action;
if (trace->found_queue)
return __BLK_TA_QUEUE;
if (trace->found_issue)
return __BLK_TA_ISSUE;
if (trace->found_completion)
return __BLK_TA_COMPLETE;
return __BLK_TA_COMPLETE;
}
void add_tput(struct trace *trace, struct graph_line_data *writes_gld,
struct graph_line_data *reads_gld)
{
struct blk_io_trace *io = trace->io;
struct graph_line_data *gld;
int action = io->action & BLK_TA_MASK;
int seconds;
if (io->action & BLK_TC_ACT(BLK_TC_NOTIFY))
return;
if (action != tput_event(trace))
return;
if (BLK_DATADIR(io->action) & BLK_TC_READ)
gld = reads_gld;
else
gld = writes_gld;
seconds = SECONDS(io->time);
gld->data[seconds].sum += io->bytes;
gld->data[seconds].count = 1;
if (gld->data[seconds].sum > gld->max)
gld->max = gld->data[seconds].sum;
}
#define GDD_PTR_ALLOC_STEP 16
static struct pid_map *get_pid_map(struct trace_file *tf, u32 pid)
{
struct pid_map *pm;
if (!io_per_process) {
if (!tf->io_plots)
tf->io_plots = 1;
return NULL;
}
pm = process_hash_insert(pid, NULL);
/* New entry? */
if (!pm->index) {
if (tf->io_plots == tf->io_plots_allocated) {
tf->io_plots_allocated += GDD_PTR_ALLOC_STEP;
tf->gdd_reads = realloc(tf->gdd_reads, tf->io_plots_allocated * sizeof(struct graph_dot_data *));
if (!tf->gdd_reads)
abort();
tf->gdd_writes = realloc(tf->gdd_writes, tf->io_plots_allocated * sizeof(struct graph_dot_data *));
if (!tf->gdd_writes)
abort();
memset(tf->gdd_reads + tf->io_plots_allocated - GDD_PTR_ALLOC_STEP,
0, GDD_PTR_ALLOC_STEP * sizeof(struct graph_dot_data *));
memset(tf->gdd_writes + tf->io_plots_allocated - GDD_PTR_ALLOC_STEP,
0, GDD_PTR_ALLOC_STEP * sizeof(struct graph_dot_data *));
}
pm->index = tf->io_plots++;
return pm;
}
return pm;
}
void add_io(struct trace *trace, struct trace_file *tf)
{
struct blk_io_trace *io = trace->io;
int action = io->action & BLK_TA_MASK;
u64 offset;
int index;
char *label;
struct pid_map *pm;
if (io->action & BLK_TC_ACT(BLK_TC_NOTIFY))
return;
if (action != io_event(trace))
return;
offset = map_io(trace, io);
pm = get_pid_map(tf, io->pid);
if (!pm) {
index = 0;
label = "";
} else {
index = pm->index;
label = pm->name;
}
if (BLK_DATADIR(io->action) & BLK_TC_READ) {
if (!tf->gdd_reads[index])
tf->gdd_reads[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_offset, tf->stop_seconds, pick_color(), strdup(label));
set_gdd_bit(tf->gdd_reads[index], offset, io->bytes, io->time);
} else if (BLK_DATADIR(io->action) & BLK_TC_WRITE) {
if (!tf->gdd_writes[index])
tf->gdd_writes[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_offset, tf->stop_seconds, pick_color(), strdup(label));
set_gdd_bit(tf->gdd_writes[index], offset, io->bytes, io->time);
}
}
void add_pending_io(struct trace *trace, struct graph_line_data *gld)
{
unsigned int seconds;
struct blk_io_trace *io = trace->io;
int action = io->action & BLK_TA_MASK;
double avg;
struct pending_io *pio;
if (io->action & BLK_TC_ACT(BLK_TC_NOTIFY))
return;
if (action == __BLK_TA_QUEUE) {
if (io->sector == 0)
return;
/*
* If D (issue) events are available, use them for I/O
* accounting. Nothing needs to be done for Q.
*/
if (trace->found_issue)
return;
/*
* If there are no D or C events, then all that can be
* done is to account the Q event (and make sure not to
* add the I/O to the hash, because it will never be
* removed).
*/
if (!trace->found_completion)
goto account_io;
/*
* When there are no ISSUE events, count depth and
* latency from queue events.
*/
pio = hash_queued_io(trace->io);
if (pio) {
pio->dispatch_time = io->time;
goto account_io;
}
return;
}
if (action == __BLK_TA_REQUEUE) {
if (ios_in_flight > 0)
ios_in_flight--;
return;
}
if (action != __BLK_TA_ISSUE)
return;
pio = hash_dispatched_io(trace->io);
if (!pio)
return;
if (!trace->found_completion) {
list_del(&pio->hash_list);
free(pio);
}
account_io:
ios_in_flight++;
seconds = SECONDS(io->time);
gld->data[seconds].sum += ios_in_flight;
gld->data[seconds].count++;
avg = (double)gld->data[seconds].sum / gld->data[seconds].count;
if (gld->max < (u64)avg) {
gld->max = avg;
}
}
void add_completed_io(struct trace *trace,
struct graph_line_data *latency_gld)
{
struct blk_io_trace *io = trace->io;
int seconds;
int action = io->action & BLK_TA_MASK;
struct pending_io *pio;
double avg;
u64 latency;
if (io->action & BLK_TC_ACT(BLK_TC_NOTIFY))
return;
if (action != __BLK_TA_COMPLETE)
return;
seconds = SECONDS(io->time);
pio = hash_completed_io(trace->io);
if (!pio)
return;
if (ios_in_flight > 0)
ios_in_flight--;
if (io->time >= pio->dispatch_time) {
latency = io->time - pio->dispatch_time;
latency_gld->data[seconds].sum += latency;
latency_gld->data[seconds].count++;
}
list_del(&pio->hash_list);
free(pio);
avg = (double)latency_gld->data[seconds].sum /
latency_gld->data[seconds].count;
if (latency_gld->max < (u64)avg) {
latency_gld->max = avg;
}
}
void add_iop(struct trace *trace, struct graph_line_data *gld)
{
struct blk_io_trace *io = trace->io;
int action = io->action & BLK_TA_MASK;
int seconds;
if (io->action & BLK_TC_ACT(BLK_TC_NOTIFY))
return;
/* iops and tput use the same events */
if (action != tput_event(trace))
return;
seconds = SECONDS(io->time);
gld->data[seconds].sum += 1;
gld->data[seconds].count = 1;
if (gld->data[seconds].sum > gld->max)
gld->max = gld->data[seconds].sum;
}
void check_record(struct trace *trace)
{
handle_notify(trace);
}
|