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
|
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <inttypes.h>
#include <stdio_ext.h>
#include <assert.h>
#include "uftrace.h"
#include "utils/utils.h"
#include "utils/symbol.h"
#include "utils/filter.h"
#include "utils/fstack.h"
#include "utils/field.h"
#include "utils/graph.h"
static LIST_HEAD(output_fields);
struct graph_backtrace {
struct list_head list;
int len;
int hit;
uint64_t time;
uint64_t addr[];
};
struct session_graph {
struct uftrace_graph ug;
struct graph_backtrace *bt_curr;
struct list_head bt_list;
struct session_graph *next;
char *func;
};
struct task_graph {
struct uftrace_task_graph utg;
struct graph_backtrace *bt_curr;
int enabled;
};
static bool full_graph = false;
static struct session_graph *graph_list = NULL;
static void print_total_time(struct field_data *fd)
{
struct uftrace_graph_node *node = fd->arg;
uint64_t d;
d = node->time;
print_time_unit(d);
}
static void print_self_time(struct field_data *fd)
{
struct uftrace_graph_node *node = fd->arg;
uint64_t d;
d = node->time - node->child_time;
print_time_unit(d);
}
static void print_addr(struct field_data *fd)
{
struct uftrace_graph_node *node = fd->arg;
/* uftrace records (truncated) 48-bit addresses */
int width = sizeof(long) == 4 ? 8 : 12;
pr_out("%*lx", width, node->addr);
}
static struct display_field field_total_time= {
.id = GRAPH_F_TOTAL_TIME,
.name = "total-time",
.alias = "total",
.header = "TOTAL TIME",
.length = 10,
.print = print_total_time,
.list = LIST_HEAD_INIT(field_total_time.list),
};
static struct display_field field_self_time= {
.id = GRAPH_F_SELF_TIME,
.name = "self-time",
.alias = "self",
.header = " SELF TIME",
.length = 10,
.print = print_self_time,
.list = LIST_HEAD_INIT(field_self_time.list),
};
static struct display_field field_addr = {
.id = GRAPH_F_ADDR,
.name = "address",
.alias = "addr",
#if __SIZEOF_LONG == 4
.header = " ADDR ",
.length = 8,
#else
.header = " ADDRESS ",
.length = 12,
#endif
.print = print_addr,
.list = LIST_HEAD_INIT(field_addr.list),
};
/* index of this table should be matched to display_field_id */
static struct display_field *field_table[] = {
&field_total_time,
&field_self_time,
&field_addr,
};
static void setup_default_field(struct list_head *fields, struct opts *opts)
{
add_field(fields, field_table[GRAPH_F_TOTAL_TIME]);
}
static void print_field(struct uftrace_graph_node *node)
{
struct field_data fd = {
.arg = node,
};
if (print_field_data(&output_fields, &fd, 2))
pr_out(" : ");
}
static int create_graph(struct uftrace_session *sess, void *func)
{
struct session_graph *graph = xzalloc(sizeof(*graph));
pr_dbg("create graph for session %.*s (%s)\n",
SESSION_ID_LEN, sess->sid, sess->exename);
graph->func = xstrdup(full_graph ? basename(sess->exename) : func);
INIT_LIST_HEAD(&graph->bt_list);
graph_init(&graph->ug, sess);
graph->ug.root.name = graph->func;
graph->next = graph_list;
graph_list = graph;
return 0;
}
static void setup_graph_list(struct ftrace_file_handle *handle, struct opts *opts,
char *func)
{
struct session_graph *graph;
walk_sessions(&handle->sessions, create_graph, func);
graph = graph_list;
while (graph) {
graph->ug.kernel_only = opts->kernel_only;
graph = graph->next;
}
}
static struct uftrace_graph * get_graph(struct ftrace_task_handle *task,
uint64_t time, uint64_t addr)
{
struct session_graph *graph;
struct uftrace_session_link *sessions = &task->h->sessions;
struct uftrace_session *sess;
sess = find_task_session(sessions, task->tid, time);
if (sess == NULL)
sess = find_task_session(sessions, task->t->pid, time);
if (sess == NULL)
sess = find_task_session(sessions, task->t->ppid, time);
if (sess == NULL) {
struct uftrace_session *fsess = sessions->first;
if (is_kernel_address(&fsess->symtabs, addr))
sess = fsess;
else
return NULL;
}
graph = graph_list;
while (graph) {
if (graph->ug.sess == sess)
return &graph->ug;
graph = graph->next;
}
return NULL;
}
static int start_graph(struct task_graph *tg);
static struct task_graph * get_task_graph(struct ftrace_task_handle *task,
uint64_t time, uint64_t addr)
{
struct task_graph *tg;
struct uftrace_graph *graph;
tg = (struct task_graph *)graph_get_task(task, sizeof(*tg));
graph = get_graph(task, time, addr);
if (tg->utg.graph && tg->utg.graph != graph) {
pr_dbg("detect new session: %.*s\n",
SESSION_ID_LEN, graph->sess->sid);
tg->utg.new_sess = true;
}
tg->utg.graph = graph;
if (full_graph && tg->utg.node == NULL)
start_graph(tg);
return tg;
}
static int save_backtrace_addr(struct task_graph *tg)
{
int i;
int skip = 0;
struct graph_backtrace *bt;
struct ftrace_task_handle *task = tg->utg.task;
struct session_graph *graph = (struct session_graph *)tg->utg.graph;
int len = task->stack_count;
uint64_t addrs[len];
if (graph->ug.kernel_only) {
skip = task->user_stack_count;
len -= skip;
}
if (len == 0)
return 0;
for (i = len - 1; i >= 0; i--)
addrs[i] = task->func_stack[i + skip].addr;
list_for_each_entry(bt, &graph->bt_list, list) {
if (len == bt->len &&
!memcmp(addrs, bt->addr, len * sizeof(*addrs)))
goto found;
}
bt = xmalloc(sizeof(*bt) + len * sizeof(*addrs));
bt->len = len;
bt->hit = 0;
bt->time = 0;
memcpy(bt->addr, addrs, len * sizeof(*addrs));
list_add(&bt->list, &graph->bt_list);
found:
bt->hit++;
tg->bt_curr = bt;
return 0;
}
static void save_backtrace_time(struct task_graph *tg)
{
struct ftrace_task_handle *task = tg->utg.task;
struct fstack *fstack = &task->func_stack[task->stack_count];
if (tg->bt_curr)
tg->bt_curr->time += fstack->total_time;
tg->bt_curr = NULL;
}
static int print_backtrace(struct session_graph *graph)
{
int i = 0, k;
struct graph_backtrace *bt;
struct sym *sym;
char *symname;
list_for_each_entry(bt, &graph->bt_list, list) {
pr_out(" backtrace #%d: hit %d, time ", i++, bt->hit);
print_time_unit(bt->time);
pr_out("\n");
for (k = 0; k < bt->len; k++) {
sym = find_symtabs(&graph->ug.sess->symtabs, bt->addr[k]);
if (sym == NULL)
sym = session_find_dlsym(graph->ug.sess,
bt->time, bt->addr[k]);
symname = symbol_getname(sym, bt->addr[k]);
pr_out(" [%d] %s (%#lx)\n", k, symname, bt->addr[k]);
symbol_putname(sym, symname);
}
pr_out("\n");
}
return 0;
}
static int start_graph(struct task_graph *tg)
{
if (!tg->enabled++) {
save_backtrace_addr(tg);
pr_dbg("start graph for task %d\n", tg->utg.task->tid);
tg->utg.node = &tg->utg.graph->root;
tg->utg.node->addr = tg->utg.task->rstack->addr;
tg->utg.node->nr_calls++;
}
return 0;
}
static int end_graph(struct task_graph *tg)
{
if (!tg->enabled)
return 0;
if (!--tg->enabled) {
save_backtrace_time(tg);
tg->utg.lost = false;
pr_dbg("end graph for task %d\n", tg->utg.task->tid);
}
return 0;
}
static void pr_indent(bool *indent_mask, int indent, bool line)
{
int i;
int last = -1;
for (i = 0; i < indent; i++) {
if (line && indent_mask[i])
last = i;
}
for (i = 0; i < indent; i++) {
if (!line || i < last) {
if (indent_mask[i])
pr_out(" | ");
else
pr_out(" ");
}
else {
if (i == last)
pr_out(" +-");
else
pr_out("---");
}
}
}
static void print_graph_node(struct uftrace_graph *graph,
struct uftrace_graph_node *node,
bool *indent_mask,
int indent, bool needs_line)
{
char *symname = node->name;
struct uftrace_graph_node *parent = node->parent;
struct uftrace_graph_node *child;
int orig_indent = indent;
/* XXX: what if it clashes with existing function address */
if (node->addr == EVENT_ID_PERF_SCHED_IN)
symname = "linux:schedule";
print_field(node);
pr_indent(indent_mask, indent, needs_line);
/* FIXME: it should count fork+exec properly */
if (full_graph && node == &graph->root)
pr_out("(%d) %s\n", 1, symname);
else
pr_out("(%d) %s\n", node->nr_calls, symname);
if (node->nr_edges > 1) {
pr_dbg2("add mask (%d) for %s\n", indent, symname);
indent_mask[indent++] = true;
}
/* clear parent indent mask at the last node */
if (parent && parent->nr_edges > 1 && orig_indent > 0 &&
parent->head.prev == &node->list)
indent_mask[orig_indent - 1] = false;
needs_line = (node->nr_edges > 1);
list_for_each_entry(child, &node->head, list) {
print_graph_node(graph, child, indent_mask, indent, needs_line);
if (&child->list != node->head.prev) {
/* print blank line between siblings */
if (print_empty_field(&output_fields, 2))
pr_out(" : ");
pr_indent(indent_mask, indent, false);
pr_out("\n");
}
}
indent_mask[orig_indent] = false;
pr_dbg2("del mask (%d) for %s\n", orig_indent, symname);
}
static int print_graph(struct session_graph *graph, struct opts *opts)
{
bool *indent_mask;
/* skip empty graph */
if (list_empty(&graph->bt_list) && graph->ug.root.time == 0 &&
graph->ug.root.nr_edges == 0)
return 0;
pr_out("# Function Call Graph for '%s' (session: %.16s)\n",
graph->func, graph->ug.sess->sid);
if (!full_graph && !list_empty(&graph->bt_list)) {
pr_out("=============== BACKTRACE ===============\n");
print_backtrace(graph);
}
setup_field(&output_fields, opts, &setup_default_field, field_table, ARRAY_SIZE(field_table));
if (graph->ug.root.time || graph->ug.root.nr_edges) {
pr_out("========== FUNCTION CALL GRAPH ==========\n");
print_header(&output_fields, "# ", 2);
indent_mask = xcalloc(opts->max_stack, sizeof(*indent_mask));
print_graph_node(&graph->ug, &graph->ug.root, indent_mask, 0,
graph->ug.root.nr_edges > 1);
free(indent_mask);
pr_out("\n");
}
return 1;
}
static void build_graph_node(struct ftrace_task_handle *task, uint64_t time,
uint64_t addr, int type, char *func)
{
struct task_graph *tg;
struct sym *sym = NULL;
char *name;
tg = get_task_graph(task, time, addr);
sym = find_symtabs(&tg->utg.graph->sess->symtabs, addr);
if (sym == NULL)
sym = session_find_dlsym(tg->utg.graph->sess, time, addr);
name = symbol_getname(sym, addr);
if (tg->enabled) {
graph_add_node(&tg->utg, type, name,
sizeof(struct uftrace_graph_node));
}
/* cannot find a session for this record */
if (tg->utg.graph == NULL)
goto out;
if (type == UFTRACE_EVENT)
goto out;
if (full_graph)
goto out;
if (!strcmp(name, func)) {
if (type == UFTRACE_ENTRY)
start_graph(tg);
else if (type == UFTRACE_EXIT)
end_graph(tg);
}
out:
symbol_putname(sym, name);
}
static void build_graph(struct opts *opts, struct ftrace_file_handle *handle,
char *func)
{
struct ftrace_task_handle *task;
struct session_graph *graph;
uint64_t prev_time = 0;
int i;
setup_graph_list(handle, opts, func);
while (!read_rstack(handle, &task) && !uftrace_done) {
struct uftrace_record *frs = task->rstack;
if (!fstack_check_opts(task, opts))
continue;
if (!fstack_check_filter(task))
continue;
if (frs->type == UFTRACE_EVENT) {
if (frs->addr != EVENT_ID_PERF_SCHED_IN &&
frs->addr != EVENT_ID_PERF_SCHED_OUT)
continue;
}
if (frs->type == UFTRACE_LOST) {
struct task_graph *tg;
struct uftrace_session *fsess;
if (opts->kernel_skip_out && !task->user_stack_count)
continue;
pr_dbg("*** LOST ***\n");
/* add partial duration of kernel functions before LOST */
while (task->stack_count >= task->user_stack_count) {
struct fstack *fstack;
fstack = &task->func_stack[task->stack_count];
if (fstack_enabled && fstack->valid &&
!(fstack->flags & FSTACK_FL_NORECORD)) {
build_graph_node(task, prev_time,
fstack->addr,
UFTRACE_EXIT, func);
}
fstack_exit(task);
task->stack_count--;
}
/* force to find a session for kernel function */
fsess = task->h->sessions.first;
tg = get_task_graph(task, prev_time,
fsess->symtabs.kernel_base + 1);
tg->utg.lost = true;
if (tg->enabled && is_kernel_address(&fsess->symtabs,
tg->utg.node->addr))
pr_dbg("not returning to user after LOST\n");
continue;
}
if (prev_time > frs->time) {
pr_warn("inverted time: broken data?\n");
return;
}
prev_time = frs->time;
if (task->stack_count >= opts->max_stack)
continue;
build_graph_node(task, frs->time, frs->addr, frs->type, func);
}
/* add duration of remaining functions */
for (i = 0; i < handle->nr_tasks; i++) {
uint64_t last_time;
struct fstack *fstack;
task = &handle->tasks[i];
if (task->stack_count == 0)
continue;
last_time = task->rstack->time;
if (handle->time_range.stop)
last_time = handle->time_range.stop;
while (--task->stack_count >= 0) {
fstack = &task->func_stack[task->stack_count];
if (fstack->addr == 0)
continue;
if (fstack->total_time > last_time)
continue;
fstack->total_time = last_time - fstack->total_time;
if (fstack->child_time > fstack->total_time)
fstack->total_time = fstack->child_time;
if (task->stack_count > 0)
fstack[-1].child_time += fstack->total_time;
build_graph_node(task, last_time, fstack->addr,
UFTRACE_EXIT, func);
}
}
if (!full_graph || uftrace_done)
return;
/* account execution time of each graph */
graph = graph_list;
while (graph) {
struct uftrace_graph_node *node;
list_for_each_entry(node, &graph->ug.root.head, list) {
graph->ug.root.time += node->time;
graph->ug.root.child_time += node->time;
}
graph = graph->next;
}
}
struct find_func_data {
char *name;
bool found;
};
static int find_func(struct uftrace_session *s, void *arg)
{
struct find_func_data *data = arg;
struct symtabs *symtabs = &s->symtabs;
if (find_symname(&symtabs->symtab, data->name))
data->found = true;
else if (find_symname(&symtabs->dsymtab, data->name))
data->found = true;
return data->found;
}
static void synthesize_depth_trigger(struct opts *opts,
struct ftrace_file_handle *handle,
char *func)
{
size_t old_len = opts->trigger ? strlen(opts->trigger) : 0;
size_t new_len = strlen(func) + 32;
struct find_func_data ffd = {
.name = func,
};
walk_sessions(&handle->sessions, find_func, &ffd);
opts->trigger = xrealloc(opts->trigger, old_len + new_len);
snprintf(opts->trigger + old_len, new_len,
"%s%s@%sdepth=%d", old_len ? ";" : "",
func, ffd.found ? "" : "kernel,", opts->depth);
}
int command_graph(int argc, char *argv[], struct opts *opts)
{
int ret;
struct ftrace_file_handle handle;
struct session_graph *graph;
char *func;
struct graph_backtrace *bt, *btmp;
__fsetlocking(outfp, FSETLOCKING_BYCALLER);
__fsetlocking(logfp, FSETLOCKING_BYCALLER);
if (argc > 0)
func = argv[0];
else {
func = "_start";
full_graph = true;
}
ret = open_data_file(opts, &handle);
if (ret < 0) {
pr_warn("cannot open record data: %s: %m\n", opts->dirname);
return -1;
}
if (opts->depth != OPT_DEPTH_DEFAULT) {
/*
* Applying depth filter before the function might
* lead to undesired result. Set a synthetic depth
* trigger to prevent the function from filtering out.
*/
synthesize_depth_trigger(opts, &handle, func);
}
fstack_setup_filters(opts, &handle);
build_graph(opts, &handle, func);
graph = graph_list;
while (graph && !uftrace_done) {
ret += print_graph(graph, opts);
graph = graph->next;
}
if (!ret && !uftrace_done) {
pr_out("uftrace: cannot find graph for '%s'\n", func);
if (opts_has_filter(opts))
pr_out("\t please check your filter settings.\n");
}
while (graph_list) {
graph = graph_list;
graph_list = graph->next;
free(graph->func);
list_for_each_entry_safe(bt, btmp, &graph->bt_list, list) {
list_del(&bt->list);
free(bt);
}
graph_destroy(&graph->ug);
free(graph);
}
graph_remove_task();
close_data_file(opts, &handle);
return 0;
}
|