Author | Tokens | Token Proportion | Commits | Commit Proportion |
---|---|---|---|---|
Jiri Olsa | 2609 | 39.02% | 10 | 17.86% |
Sebastian Andrzej Siewior | 1755 | 26.25% | 3 | 5.36% |
Wang Nan | 1703 | 25.47% | 14 | 25.00% |
Geneviève Bastien | 473 | 7.07% | 2 | 3.57% |
Arnaldo Carvalho de Melo | 45 | 0.67% | 13 | 23.21% |
Tzvetomir Stoyanov (VMware) | 31 | 0.46% | 3 | 5.36% |
He Kuang | 24 | 0.36% | 1 | 1.79% |
Masami Hiramatsu | 16 | 0.24% | 1 | 1.79% |
Mamatha Inamdar | 10 | 0.15% | 1 | 1.79% |
Yunlong Song | 6 | 0.09% | 1 | 1.79% |
Hari Bathini | 5 | 0.07% | 1 | 1.79% |
Thomas Gleixner | 2 | 0.03% | 1 | 1.79% |
Ilya Leoshkevich | 2 | 0.03% | 1 | 1.79% |
Tzvetomir Stoyanov | 2 | 0.03% | 1 | 1.79% |
Shawn Landden | 1 | 0.01% | 1 | 1.79% |
Nicholas Fraser | 1 | 0.01% | 1 | 1.79% |
Ingo Molnar | 1 | 0.01% | 1 | 1.79% |
Total | 6686 | 56 |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698
// SPDX-License-Identifier: GPL-2.0-only /* * CTF writing support via babeltrace. * * Copyright (C) 2014, Jiri Olsa <jolsa@redhat.com> * Copyright (C) 2014, Sebastian Andrzej Siewior <bigeasy@linutronix.de> */ #include <errno.h> #include <inttypes.h> #include <linux/compiler.h> #include <linux/kernel.h> #include <linux/zalloc.h> #include <babeltrace/ctf-writer/writer.h> #include <babeltrace/ctf-writer/clock.h> #include <babeltrace/ctf-writer/stream.h> #include <babeltrace/ctf-writer/event.h> #include <babeltrace/ctf-writer/event-types.h> #include <babeltrace/ctf-writer/event-fields.h> #include <babeltrace/ctf-ir/utils.h> #include <babeltrace/ctf/events.h> #include <traceevent/event-parse.h> #include "asm/bug.h" #include "data-convert.h" #include "session.h" #include "debug.h" #include "tool.h" #include "evlist.h" #include "evsel.h" #include "machine.h" #include "config.h" #include <linux/ctype.h> #include <linux/err.h> #include <linux/time64.h> #include "util.h" #include "clockid.h" #define pr_N(n, fmt, ...) \ eprintf(n, debug_data_convert, fmt, ##__VA_ARGS__) #define pr(fmt, ...) pr_N(1, pr_fmt(fmt), ##__VA_ARGS__) #define pr2(fmt, ...) pr_N(2, pr_fmt(fmt), ##__VA_ARGS__) #define pr_time2(t, fmt, ...) pr_time_N(2, debug_data_convert, t, pr_fmt(fmt), ##__VA_ARGS__) struct evsel_priv { struct bt_ctf_event_class *event_class; }; #define MAX_CPUS 4096 struct ctf_stream { struct bt_ctf_stream *stream; int cpu; u32 count; }; struct ctf_writer { /* writer primitives */ struct bt_ctf_writer *writer; struct ctf_stream **stream; int stream_cnt; struct bt_ctf_stream_class *stream_class; struct bt_ctf_clock *clock; /* data types */ union { struct { struct bt_ctf_field_type *s64; struct bt_ctf_field_type *u64; struct bt_ctf_field_type *s32; struct bt_ctf_field_type *u32; struct bt_ctf_field_type *string; struct bt_ctf_field_type *u32_hex; struct bt_ctf_field_type *u64_hex; }; struct bt_ctf_field_type *array[6]; } data; struct bt_ctf_event_class *comm_class; struct bt_ctf_event_class *exit_class; struct bt_ctf_event_class *fork_class; struct bt_ctf_event_class *mmap_class; struct bt_ctf_event_class *mmap2_class; }; struct convert { struct perf_tool tool; struct ctf_writer writer; u64 events_size; u64 events_count; u64 non_sample_count; /* Ordered events configured queue size. */ u64 queue_size; }; static int value_set(struct bt_ctf_field_type *type, struct bt_ctf_event *event, const char *name, u64 val) { struct bt_ctf_field *field; bool sign = bt_ctf_field_type_integer_get_signed(type); int ret; field = bt_ctf_field_create(type); if (!field) { pr_err("failed to create a field %s\n", name); return -1; } if (sign) { ret = bt_ctf_field_signed_integer_set_value(field, val); if (ret) { pr_err("failed to set field value %s\n", name); goto err; } } else { ret = bt_ctf_field_unsigned_integer_set_value(field, val); if (ret) { pr_err("failed to set field value %s\n", name); goto err; } } ret = bt_ctf_event_set_payload(event, name, field); if (ret) { pr_err("failed to set payload %s\n", name); goto err; } pr2(" SET [%s = %" PRIu64 "]\n", name, val); err: bt_ctf_field_put(field); return ret; } #define __FUNC_VALUE_SET(_name, _val_type) \ static __maybe_unused int value_set_##_name(struct ctf_writer *cw, \ struct bt_ctf_event *event, \ const char *name, \ _val_type val) \ { \ struct bt_ctf_field_type *type = cw->data._name; \ return value_set(type, event, name, (u64) val); \ } #define FUNC_VALUE_SET(_name) __FUNC_VALUE_SET(_name, _name) FUNC_VALUE_SET(s32) FUNC_VALUE_SET(u32) FUNC_VALUE_SET(s64) FUNC_VALUE_SET(u64) __FUNC_VALUE_SET(u64_hex, u64) static int string_set_value(struct bt_ctf_field *field, const char *string); static __maybe_unused int value_set_string(struct ctf_writer *cw, struct bt_ctf_event *event, const char *name, const char *string) { struct bt_ctf_field_type *type = cw->data.string; struct bt_ctf_field *field; int ret = 0; field = bt_ctf_field_create(type); if (!field) { pr_err("failed to create a field %s\n", name); return -1; } ret = string_set_value(field, string); if (ret) { pr_err("failed to set value %s\n", name); goto err_put_field; } ret = bt_ctf_event_set_payload(event, name, field); if (ret) pr_err("failed to set payload %s\n", name); err_put_field: bt_ctf_field_put(field); return ret; } static struct bt_ctf_field_type* get_tracepoint_field_type(struct ctf_writer *cw, struct tep_format_field *field) { unsigned long flags = field->flags; if (flags & TEP_FIELD_IS_STRING) return cw->data.string; if (!(flags & TEP_FIELD_IS_SIGNED)) { /* unsigned long are mostly pointers */ if (flags & TEP_FIELD_IS_LONG || flags & TEP_FIELD_IS_POINTER) return cw->data.u64_hex; } if (flags & TEP_FIELD_IS_SIGNED) { if (field->size == 8) return cw->data.s64; else return cw->data.s32; } if (field->size == 8) return cw->data.u64; else return cw->data.u32; } static unsigned long long adjust_signedness(unsigned long long value_int, int size) { unsigned long long value_mask; /* * value_mask = (1 << (size * 8 - 1)) - 1. * Directly set value_mask for code readers. */ switch (size) { case 1: value_mask = 0x7fULL; break; case 2: value_mask = 0x7fffULL; break; case 4: value_mask = 0x7fffffffULL; break; case 8: /* * For 64 bit value, return it self. There is no need * to fill high bit. */ /* Fall through */ default: /* BUG! */ return value_int; } /* If it is a positive value, don't adjust. */ if ((value_int & (~0ULL - value_mask)) == 0) return value_int; /* Fill upper part of value_int with 1 to make it a negative long long. */ return (value_int & value_mask) | ~value_mask; } static int string_set_value(struct bt_ctf_field *field, const char *string) { char *buffer = NULL; size_t len = strlen(string), i, p; int err; for (i = p = 0; i < len; i++, p++) { if (isprint(string[i])) { if (!buffer) continue; buffer[p] = string[i]; } else { char numstr[5]; snprintf(numstr, sizeof(numstr), "\\x%02x", (unsigned int)(string[i]) & 0xff); if (!buffer) { buffer = zalloc(i + (len - i) * 4 + 2); if (!buffer) { pr_err("failed to set unprintable string '%s'\n", string); return bt_ctf_field_string_set_value(field, "UNPRINTABLE-STRING"); } if (i > 0) strncpy(buffer, string, i); } memcpy(buffer + p, numstr, 4); p += 3; } } if (!buffer) return bt_ctf_field_string_set_value(field, string); err = bt_ctf_field_string_set_value(field, buffer); free(buffer); return err; } static int add_tracepoint_field_value(struct ctf_writer *cw, struct bt_ctf_event_class *event_class, struct bt_ctf_event *event, struct perf_sample *sample, struct tep_format_field *fmtf) { struct bt_ctf_field_type *type; struct bt_ctf_field *array_field; struct bt_ctf_field *field; const char *name = fmtf->name; void *data = sample->raw_data; unsigned long flags = fmtf->flags; unsigned int n_items; unsigned int i; unsigned int offset; unsigned int len; int ret; name = fmtf->alias; offset = fmtf->offset; len = fmtf->size; if (flags & TEP_FIELD_IS_STRING) flags &= ~TEP_FIELD_IS_ARRAY; if (flags & TEP_FIELD_IS_DYNAMIC) { unsigned long long tmp_val; tmp_val = tep_read_number(fmtf->event->tep, data + offset, len); offset = tmp_val; len = offset >> 16; offset &= 0xffff; if (flags & TEP_FIELD_IS_RELATIVE) offset += fmtf->offset + fmtf->size; } if (flags & TEP_FIELD_IS_ARRAY) { type = bt_ctf_event_class_get_field_by_name( event_class, name); array_field = bt_ctf_field_create(type); bt_ctf_field_type_put(type); if (!array_field) { pr_err("Failed to create array type %s\n", name); return -1; } len = fmtf->size / fmtf->arraylen; n_items = fmtf->arraylen; } else { n_items = 1; array_field = NULL; } type = get_tracepoint_field_type(cw, fmtf); for (i = 0; i < n_items; i++) { if (flags & TEP_FIELD_IS_ARRAY) field = bt_ctf_field_array_get_field(array_field, i); else field = bt_ctf_field_create(type); if (!field) { pr_err("failed to create a field %s\n", name); return -1; } if (flags & TEP_FIELD_IS_STRING) ret = string_set_value(field, data + offset + i * len); else { unsigned long long value_int; value_int = tep_read_number( fmtf->event->tep, data + offset + i * len, len); if (!(flags & TEP_FIELD_IS_SIGNED)) ret = bt_ctf_field_unsigned_integer_set_value( field, value_int); else ret = bt_ctf_field_signed_integer_set_value( field, adjust_signedness(value_int, len)); } if (ret) { pr_err("failed to set file value %s\n", name); goto err_put_field; } if (!(flags & TEP_FIELD_IS_ARRAY)) { ret = bt_ctf_event_set_payload(event, name, field); if (ret) { pr_err("failed to set payload %s\n", name); goto err_put_field; } } bt_ctf_field_put(field); } if (flags & TEP_FIELD_IS_ARRAY) { ret = bt_ctf_event_set_payload(event, name, array_field); if (ret) { pr_err("Failed add payload array %s\n", name); return -1; } bt_ctf_field_put(array_field); } return 0; err_put_field: bt_ctf_field_put(field); return -1; } static int add_tracepoint_fields_values(struct ctf_writer *cw, struct bt_ctf_event_class *event_class, struct bt_ctf_event *event, struct tep_format_field *fields, struct perf_sample *sample) { struct tep_format_field *field; int ret; for (field = fields; field; field = field->next) { ret = add_tracepoint_field_value(cw, event_class, event, sample, field); if (ret) return -1; } return 0; } static int add_tracepoint_values(struct ctf_writer *cw, struct bt_ctf_event_class *event_class, struct bt_ctf_event *event, struct evsel *evsel, struct perf_sample *sample) { struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; struct tep_format_field *fields = evsel->tp_format->format.fields; int ret; ret = add_tracepoint_fields_values(cw, event_class, event, common_fields, sample); if (!ret) ret = add_tracepoint_fields_values(cw, event_class, event, fields, sample); return ret; } static int add_bpf_output_values(struct bt_ctf_event_class *event_class, struct bt_ctf_event *event, struct perf_sample *sample) { struct bt_ctf_field_type *len_type, *seq_type; struct bt_ctf_field *len_field, *seq_field; unsigned int raw_size = sample->raw_size; unsigned int nr_elements = raw_size / sizeof(u32); unsigned int i; int ret; if (nr_elements * sizeof(u32) != raw_size) pr_warning("Incorrect raw_size (%u) in bpf output event, skip %zu bytes\n", raw_size, nr_elements * sizeof(u32) - raw_size); len_type = bt_ctf_event_class_get_field_by_name(event_class, "raw_len"); len_field = bt_ctf_field_create(len_type); if (!len_field) { pr_err("failed to create 'raw_len' for bpf output event\n"); ret = -1; goto put_len_type; } ret = bt_ctf_field_unsigned_integer_set_value(len_field, nr_elements); if (ret) { pr_err("failed to set field value for raw_len\n"); goto put_len_field; } ret = bt_ctf_event_set_payload(event, "raw_len", len_field); if (ret) { pr_err("failed to set payload to raw_len\n"); goto put_len_field; } seq_type = bt_ctf_event_class_get_field_by_name(event_class, "raw_data"); seq_field = bt_ctf_field_create(seq_type); if (!seq_field) { pr_err("failed to create 'raw_data' for bpf output event\n"); ret = -1; goto put_seq_type; } ret = bt_ctf_field_sequence_set_length(seq_field, len_field); if (ret) { pr_err("failed to set length of 'raw_data'\n"); goto put_seq_field; } for (i = 0; i < nr_elements; i++) { struct bt_ctf_field *elem_field = bt_ctf_field_sequence_get_field(seq_field, i); ret = bt_ctf_field_unsigned_integer_set_value(elem_field, ((u32 *)(sample->raw_data))[i]); bt_ctf_field_put(elem_field); if (ret) { pr_err("failed to set raw_data[%d]\n", i); goto put_seq_field; } } ret = bt_ctf_event_set_payload(event, "raw_data", seq_field); if (ret) pr_err("failed to set payload for raw_data\n"); put_seq_field: bt_ctf_field_put(seq_field); put_seq_type: bt_ctf_field_type_put(seq_type); put_len_field: bt_ctf_field_put(len_field); put_len_type: bt_ctf_field_type_put(len_type); return ret; } static int add_callchain_output_values(struct bt_ctf_event_class *event_class, struct bt_ctf_event *event, struct ip_callchain *callchain) { struct bt_ctf_field_type *len_type, *seq_type; struct bt_ctf_field *len_field, *seq_field; unsigned int nr_elements = callchain->nr; unsigned int i; int ret; len_type = bt_ctf_event_class_get_field_by_name( event_class, "perf_callchain_size"); len_field = bt_ctf_field_create(len_type); if (!len_field) { pr_err("failed to create 'perf_callchain_size' for callchain output event\n"); ret = -1; goto put_len_type; } ret = bt_ctf_field_unsigned_integer_set_value(len_field, nr_elements); if (ret) { pr_err("failed to set field value for perf_callchain_size\n"); goto put_len_field; } ret = bt_ctf_event_set_payload(event, "perf_callchain_size", len_field); if (ret) { pr_err("failed to set payload to perf_callchain_size\n"); goto put_len_field; } seq_type = bt_ctf_event_class_get_field_by_name( event_class, "perf_callchain"); seq_field = bt_ctf_field_create(seq_type); if (!seq_field) { pr_err("failed to create 'perf_callchain' for callchain output event\n"); ret = -1; goto put_seq_type; } ret = bt_ctf_field_sequence_set_length(seq_field, len_field); if (ret) { pr_err("failed to set length of 'perf_callchain'\n"); goto put_seq_field; } for (i = 0; i < nr_elements; i++) { struct bt_ctf_field *elem_field = bt_ctf_field_sequence_get_field(seq_field, i); ret = bt_ctf_field_unsigned_integer_set_value(elem_field, ((u64 *)(callchain->ips))[i]); bt_ctf_field_put(elem_field); if (ret) { pr_err("failed to set callchain[%d]\n", i); goto put_seq_field; } } ret = bt_ctf_event_set_payload(event, "perf_callchain", seq_field); if (ret) pr_err("failed to set payload for raw_data\n"); put_seq_field: bt_ctf_field_put(seq_field); put_seq_type: bt_ctf_field_type_put(seq_type); put_len_field: bt_ctf_field_put(len_field); put_len_type: bt_ctf_field_type_put(len_type); return ret; } static int add_generic_values(struct ctf_writer *cw, struct bt_ctf_event *event, struct evsel *evsel, struct perf_sample *sample) { u64 type = evsel->core.attr.sample_type; int ret; /* * missing: * PERF_SAMPLE_TIME - not needed as we have it in * ctf event header * PERF_SAMPLE_READ - TODO * PERF_SAMPLE_RAW - tracepoint fields are handled separately * PERF_SAMPLE_BRANCH_STACK - TODO * PERF_SAMPLE_REGS_USER - TODO * PERF_SAMPLE_STACK_USER - TODO */ if (type & PERF_SAMPLE_IP) { ret = value_set_u64_hex(cw, event, "perf_ip", sample->ip); if (ret) return -1; } if (type & PERF_SAMPLE_TID) { ret = value_set_s32(cw, event, "perf_tid", sample->tid); if (ret) return -1; ret = value_set_s32(cw, event, "perf_pid", sample->pid); if (ret) return -1; } if ((type & PERF_SAMPLE_ID) || (type & PERF_SAMPLE_IDENTIFIER)) { ret = value_set_u64(cw, event, "perf_id", sample->id); if (ret) return -1; } if (type & PERF_SAMPLE_STREAM_ID) { ret = value_set_u64(cw, event, "perf_stream_id", sample->stream_id); if (ret) return -1; } if (type & PERF_SAMPLE_PERIOD) { ret = value_set_u64(cw, event, "perf_period", sample->period); if (ret) return -1; } if (type & PERF_SAMPLE_WEIGHT) { ret = value_set_u64(cw, event, "perf_weight", sample->weight); if (ret) return -1; } if (type & PERF_SAMPLE_DATA_SRC) { ret = value_set_u64(cw, event, "perf_data_src", sample->data_src); if (ret) return -1; } if (type & PERF_SAMPLE_TRANSACTION) { ret = value_set_u64(cw, event, "perf_transaction", sample->transaction); if (ret) return -1; } return 0; } static int ctf_stream__flush(struct ctf_stream *cs) { int err = 0; if (cs) { err = bt_ctf_stream_flush(cs->stream); if (err) pr_err("CTF stream %d flush failed\n", cs->cpu); pr("Flush stream for cpu %d (%u samples)\n", cs->cpu, cs->count); cs->count = 0; } return err; } static struct ctf_stream *ctf_stream__create(struct ctf_writer *cw, int cpu) { struct ctf_stream *cs; struct bt_ctf_field *pkt_ctx = NULL; struct bt_ctf_field *cpu_field = NULL; struct bt_ctf_stream *stream = NULL; int ret; cs = zalloc(sizeof(*cs)); if (!cs) { pr_err("Failed to allocate ctf stream\n"); return NULL; } stream = bt_ctf_writer_create_stream(cw->writer, cw->stream_class); if (!stream) { pr_err("Failed to create CTF stream\n"); goto out; } pkt_ctx = bt_ctf_stream_get_packet_context(stream); if (!pkt_ctx) { pr_err("Failed to obtain packet context\n"); goto out; } cpu_field = bt_ctf_field_structure_get_field(pkt_ctx, "cpu_id"); bt_ctf_field_put(pkt_ctx); if (!cpu_field) { pr_err("Failed to obtain cpu field\n"); goto out; } ret = bt_ctf_field_unsigned_integer_set_value(cpu_field, (u32) cpu); if (ret) { pr_err("Failed to update CPU number\n"); goto out; } bt_ctf_field_put(cpu_field); cs->cpu = cpu; cs->stream = stream; return cs; out: if (cpu_field) bt_ctf_field_put(cpu_field); if (stream) bt_ctf_stream_put(stream); free(cs); return NULL; } static void ctf_stream__delete(struct ctf_stream *cs) { if (cs) { bt_ctf_stream_put(cs->stream); free(cs); } } static struct ctf_stream *ctf_stream(struct ctf_writer *cw, int cpu) { struct ctf_stream *cs = cw->stream[cpu]; if (!cs) { cs = ctf_stream__create(cw, cpu); cw->stream[cpu] = cs; } return cs; } static int get_sample_cpu(struct ctf_writer *cw, struct perf_sample *sample, struct evsel *evsel) { int cpu = 0; if (evsel->core.attr.sample_type & PERF_SAMPLE_CPU) cpu = sample->cpu; if (cpu > cw->stream_cnt) { pr_err("Event was recorded for CPU %d, limit is at %d.\n", cpu, cw->stream_cnt); cpu = 0; } return cpu; } #define STREAM_FLUSH_COUNT 100000 /* * Currently we have no other way to determine the * time for the stream flush other than keep track * of the number of events and check it against * threshold. */ static bool is_flush_needed(struct ctf_stream *cs) { return cs->count >= STREAM_FLUSH_COUNT; } static int process_sample_event(struct perf_tool *tool, union perf_event *_event, struct perf_sample *sample, struct evsel *evsel, struct machine *machine __maybe_unused) { struct convert *c = container_of(tool, struct convert, tool); struct evsel_priv *priv = evsel->priv; struct ctf_writer *cw = &c->writer; struct ctf_stream *cs; struct bt_ctf_event_class *event_class; struct bt_ctf_event *event; int ret; unsigned long type = evsel->core.attr.sample_type; if (WARN_ONCE(!priv, "Failed to setup all events.\n")) return 0; event_class = priv->event_class; /* update stats */ c->events_count++; c->events_size += _event->header.size; pr_time2(sample->time, "sample %" PRIu64 "\n", c->events_count); event = bt_ctf_event_create(event_class); if (!event) { pr_err("Failed to create an CTF event\n"); return -1; } bt_ctf_clock_set_time(cw->clock, sample->time); ret = add_generic_values(cw, event, evsel, sample); if (ret) return -1; if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT) { ret = add_tracepoint_values(cw, event_class, event, evsel, sample); if (ret) return -1; } if (type & PERF_SAMPLE_CALLCHAIN) { ret = add_callchain_output_values(event_class, event, sample->callchain); if (ret) return -1; } if (evsel__is_bpf_output(evsel)) { ret = add_bpf_output_values(event_class, event, sample); if (ret) return -1; } cs = ctf_stream(cw, get_sample_cpu(cw, sample, evsel)); if (cs) { if (is_flush_needed(cs)) ctf_stream__flush(cs); cs->count++; bt_ctf_stream_append_event(cs->stream, event); } bt_ctf_event_put(event); return cs ? 0 : -1; } #define __NON_SAMPLE_SET_FIELD(_name, _type, _field) \ do { \ ret = value_set_##_type(cw, event, #_field, _event->_name._field);\ if (ret) \ return -1; \ } while(0) #define __FUNC_PROCESS_NON_SAMPLE(_name, body) \ static int process_##_name##_event(struct perf_tool *tool, \ union perf_event *_event, \ struct perf_sample *sample, \ struct machine *machine) \ { \ struct convert *c = container_of(tool, struct convert, tool);\ struct ctf_writer *cw = &c->writer; \ struct bt_ctf_event_class *event_class = cw->_name##_class;\ struct bt_ctf_event *event; \ struct ctf_stream *cs; \ int ret; \ \ c->non_sample_count++; \ c->events_size += _event->header.size; \ event = bt_ctf_event_create(event_class); \ if (!event) { \ pr_err("Failed to create an CTF event\n"); \ return -1; \ } \ \ bt_ctf_clock_set_time(cw->clock, sample->time); \ body \ cs = ctf_stream(cw, 0); \ if (cs) { \ if (is_flush_needed(cs)) \ ctf_stream__flush(cs); \ \ cs->count++; \ bt_ctf_stream_append_event(cs->stream, event); \ } \ bt_ctf_event_put(event); \ \ return perf_event__process_##_name(tool, _event, sample, machine);\ } __FUNC_PROCESS_NON_SAMPLE(comm, __NON_SAMPLE_SET_FIELD(comm, u32, pid); __NON_SAMPLE_SET_FIELD(comm, u32, tid); __NON_SAMPLE_SET_FIELD(comm, string, comm); ) __FUNC_PROCESS_NON_SAMPLE(fork, __NON_SAMPLE_SET_FIELD(fork, u32, pid); __NON_SAMPLE_SET_FIELD(fork, u32, ppid); __NON_SAMPLE_SET_FIELD(fork, u32, tid); __NON_SAMPLE_SET_FIELD(fork, u32, ptid); __NON_SAMPLE_SET_FIELD(fork, u64, time); ) __FUNC_PROCESS_NON_SAMPLE(exit, __NON_SAMPLE_SET_FIELD(fork, u32, pid); __NON_SAMPLE_SET_FIELD(fork, u32, ppid); __NON_SAMPLE_SET_FIELD(fork, u32, tid); __NON_SAMPLE_SET_FIELD(fork, u32, ptid); __NON_SAMPLE_SET_FIELD(fork, u64, time); ) __FUNC_PROCESS_NON_SAMPLE(mmap, __NON_SAMPLE_SET_FIELD(mmap, u32, pid); __NON_SAMPLE_SET_FIELD(mmap, u32, tid); __NON_SAMPLE_SET_FIELD(mmap, u64_hex, start); __NON_SAMPLE_SET_FIELD(mmap, string, filename); ) __FUNC_PROCESS_NON_SAMPLE(mmap2, __NON_SAMPLE_SET_FIELD(mmap2, u32, pid); __NON_SAMPLE_SET_FIELD(mmap2, u32, tid); __NON_SAMPLE_SET_FIELD(mmap2, u64_hex, start); __NON_SAMPLE_SET_FIELD(mmap2, string, filename); ) #undef __NON_SAMPLE_SET_FIELD #undef __FUNC_PROCESS_NON_SAMPLE /* If dup < 0, add a prefix. Else, add _dupl_X suffix. */ static char *change_name(char *name, char *orig_name, int dup) { char *new_name = NULL; size_t len; if (!name) name = orig_name; if (dup >= 10) goto out; /* * Add '_' prefix to potential keywork. According to * Mathieu Desnoyers (https://lore.kernel.org/lkml/1074266107.40857.1422045946295.JavaMail.zimbra@efficios.com), * further CTF spec updating may require us to use '$'. */ if (dup < 0) len = strlen(name) + sizeof("_"); else len = strlen(orig_name) + sizeof("_dupl_X"); new_name = malloc(len); if (!new_name) goto out; if (dup < 0) snprintf(new_name, len, "_%s", name); else snprintf(new_name, len, "%s_dupl_%d", orig_name, dup); out: if (name != orig_name) free(name); return new_name; } static int event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, struct tep_format_field *field) { struct bt_ctf_field_type *t = NULL; char *name; int dup = 1; int ret; /* alias was already assigned */ if (field->alias != field->name) return bt_ctf_event_class_add_field(event_class, type, (char *)field->alias); name = field->name; /* If 'name' is a keywork, add prefix. */ if (bt_ctf_validate_identifier(name)) name = change_name(name, field->name, -1); if (!name) { pr_err("Failed to fix invalid identifier."); return -1; } while ((t = bt_ctf_event_class_get_field_by_name(event_class, name))) { bt_ctf_field_type_put(t); name = change_name(name, field->name, dup++); if (!name) { pr_err("Failed to create dup name for '%s'\n", field->name); return -1; } } ret = bt_ctf_event_class_add_field(event_class, type, name); if (!ret) field->alias = name; return ret; } static int add_tracepoint_fields_types(struct ctf_writer *cw, struct tep_format_field *fields, struct bt_ctf_event_class *event_class) { struct tep_format_field *field; int ret; for (field = fields; field; field = field->next) { struct bt_ctf_field_type *type; unsigned long flags = field->flags; pr2(" field '%s'\n", field->name); type = get_tracepoint_field_type(cw, field); if (!type) return -1; /* * A string is an array of chars. For this we use the string * type and don't care that it is an array. What we don't * support is an array of strings. */ if (flags & TEP_FIELD_IS_STRING) flags &= ~TEP_FIELD_IS_ARRAY; if (flags & TEP_FIELD_IS_ARRAY) type = bt_ctf_field_type_array_create(type, field->arraylen); ret = event_class_add_field(event_class, type, field); if (flags & TEP_FIELD_IS_ARRAY) bt_ctf_field_type_put(type); if (ret) { pr_err("Failed to add field '%s': %d\n", field->name, ret); return -1; } } return 0; } static int add_tracepoint_types(struct ctf_writer *cw, struct evsel *evsel, struct bt_ctf_event_class *class) { struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; struct tep_format_field *fields = evsel->tp_format->format.fields; int ret; ret = add_tracepoint_fields_types(cw, common_fields, class); if (!ret) ret = add_tracepoint_fields_types(cw, fields, class); return ret; } static int add_bpf_output_types(struct ctf_writer *cw, struct bt_ctf_event_class *class) { struct bt_ctf_field_type *len_type = cw->data.u32; struct bt_ctf_field_type *seq_base_type = cw->data.u32_hex; struct bt_ctf_field_type *seq_type; int ret; ret = bt_ctf_event_class_add_field(class, len_type, "raw_len"); if (ret) return ret; seq_type = bt_ctf_field_type_sequence_create(seq_base_type, "raw_len"); if (!seq_type) return -1; return bt_ctf_event_class_add_field(class, seq_type, "raw_data"); } static int add_generic_types(struct ctf_writer *cw, struct evsel *evsel, struct bt_ctf_event_class *event_class) { u64 type = evsel->core.attr.sample_type; /* * missing: * PERF_SAMPLE_TIME - not needed as we have it in * ctf event header * PERF_SAMPLE_READ - TODO * PERF_SAMPLE_CALLCHAIN - TODO * PERF_SAMPLE_RAW - tracepoint fields and BPF output * are handled separately * PERF_SAMPLE_BRANCH_STACK - TODO * PERF_SAMPLE_REGS_USER - TODO * PERF_SAMPLE_STACK_USER - TODO */ #define ADD_FIELD(cl, t, n) \ do { \ pr2(" field '%s'\n", n); \ if (bt_ctf_event_class_add_field(cl, t, n)) { \ pr_err("Failed to add field '%s';\n", n); \ return -1; \ } \ } while (0) if (type & PERF_SAMPLE_IP) ADD_FIELD(event_class, cw->data.u64_hex, "perf_ip"); if (type & PERF_SAMPLE_TID) { ADD_FIELD(event_class, cw->data.s32, "perf_tid"); ADD_FIELD(event_class, cw->data.s32, "perf_pid"); } if ((type & PERF_SAMPLE_ID) || (type & PERF_SAMPLE_IDENTIFIER)) ADD_FIELD(event_class, cw->data.u64, "perf_id"); if (type & PERF_SAMPLE_STREAM_ID) ADD_FIELD(event_class, cw->data.u64, "perf_stream_id"); if (type & PERF_SAMPLE_PERIOD) ADD_FIELD(event_class, cw->data.u64, "perf_period"); if (type & PERF_SAMPLE_WEIGHT) ADD_FIELD(event_class, cw->data.u64, "perf_weight"); if (type & PERF_SAMPLE_DATA_SRC) ADD_FIELD(event_class, cw->data.u64, "perf_data_src"); if (type & PERF_SAMPLE_TRANSACTION) ADD_FIELD(event_class, cw->data.u64, "perf_transaction"); if (type & PERF_SAMPLE_CALLCHAIN) { ADD_FIELD(event_class, cw->data.u32, "perf_callchain_size"); ADD_FIELD(event_class, bt_ctf_field_type_sequence_create( cw->data.u64_hex, "perf_callchain_size"), "perf_callchain"); } #undef ADD_FIELD return 0; } static int add_event(struct ctf_writer *cw, struct evsel *evsel) { struct bt_ctf_event_class *event_class; struct evsel_priv *priv; const char *name = evsel__name(evsel); int ret; pr("Adding event '%s' (type %d)\n", name, evsel->core.attr.type); event_class = bt_ctf_event_class_create(name); if (!event_class) return -1; ret = add_generic_types(cw, evsel, event_class); if (ret) goto err; if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT) { ret = add_tracepoint_types(cw, evsel, event_class); if (ret) goto err; } if (evsel__is_bpf_output(evsel)) { ret = add_bpf_output_types(cw, event_class); if (ret) goto err; } ret = bt_ctf_stream_class_add_event_class(cw->stream_class, event_class); if (ret) { pr("Failed to add event class into stream.\n"); goto err; } priv = malloc(sizeof(*priv)); if (!priv) goto err; priv->event_class = event_class; evsel->priv = priv; return 0; err: bt_ctf_event_class_put(event_class); pr_err("Failed to add event '%s'.\n", name); return -1; } static int setup_events(struct ctf_writer *cw, struct perf_session *session) { struct evlist *evlist = session->evlist; struct evsel *evsel; int ret; evlist__for_each_entry(evlist, evsel) { ret = add_event(cw, evsel); if (ret) return ret; } return 0; } #define __NON_SAMPLE_ADD_FIELD(t, n) \ do { \ pr2(" field '%s'\n", #n); \ if (bt_ctf_event_class_add_field(event_class, cw->data.t, #n)) {\ pr_err("Failed to add field '%s';\n", #n);\ return -1; \ } \ } while(0) #define __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(_name, body) \ static int add_##_name##_event(struct ctf_writer *cw) \ { \ struct bt_ctf_event_class *event_class; \ int ret; \ \ pr("Adding "#_name" event\n"); \ event_class = bt_ctf_event_class_create("perf_" #_name);\ if (!event_class) \ return -1; \ body \ \ ret = bt_ctf_stream_class_add_event_class(cw->stream_class, event_class);\ if (ret) { \ pr("Failed to add event class '"#_name"' into stream.\n");\ return ret; \ } \ \ cw->_name##_class = event_class; \ bt_ctf_event_class_put(event_class); \ return 0; \ } __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(comm, __NON_SAMPLE_ADD_FIELD(u32, pid); __NON_SAMPLE_ADD_FIELD(u32, tid); __NON_SAMPLE_ADD_FIELD(string, comm); ) __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(fork, __NON_SAMPLE_ADD_FIELD(u32, pid); __NON_SAMPLE_ADD_FIELD(u32, ppid); __NON_SAMPLE_ADD_FIELD(u32, tid); __NON_SAMPLE_ADD_FIELD(u32, ptid); __NON_SAMPLE_ADD_FIELD(u64, time); ) __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(exit, __NON_SAMPLE_ADD_FIELD(u32, pid); __NON_SAMPLE_ADD_FIELD(u32, ppid); __NON_SAMPLE_ADD_FIELD(u32, tid); __NON_SAMPLE_ADD_FIELD(u32, ptid); __NON_SAMPLE_ADD_FIELD(u64, time); ) __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(mmap, __NON_SAMPLE_ADD_FIELD(u32, pid); __NON_SAMPLE_ADD_FIELD(u32, tid); __NON_SAMPLE_ADD_FIELD(u64_hex, start); __NON_SAMPLE_ADD_FIELD(string, filename); ) __FUNC_ADD_NON_SAMPLE_EVENT_CLASS(mmap2, __NON_SAMPLE_ADD_FIELD(u32, pid); __NON_SAMPLE_ADD_FIELD(u32, tid); __NON_SAMPLE_ADD_FIELD(u64_hex, start); __NON_SAMPLE_ADD_FIELD(string, filename); ) #undef __NON_SAMPLE_ADD_FIELD #undef __FUNC_ADD_NON_SAMPLE_EVENT_CLASS static int setup_non_sample_events(struct ctf_writer *cw, struct perf_session *session __maybe_unused) { int ret; ret = add_comm_event(cw); if (ret) return ret; ret = add_exit_event(cw); if (ret) return ret; ret = add_fork_event(cw); if (ret) return ret; ret = add_mmap_event(cw); if (ret) return ret; ret = add_mmap2_event(cw); if (ret) return ret; return 0; } static void cleanup_events(struct perf_session *session) { struct evlist *evlist = session->evlist; struct evsel *evsel; evlist__for_each_entry(evlist, evsel) { struct evsel_priv *priv; priv = evsel->priv; bt_ctf_event_class_put(priv->event_class); zfree(&evsel->priv); } evlist__delete(evlist); session->evlist = NULL; } static int setup_streams(struct ctf_writer *cw, struct perf_session *session) { struct ctf_stream **stream; struct perf_header *ph = &session->header; int ncpus; /* * Try to get the number of cpus used in the data file, * if not present fallback to the MAX_CPUS. */ ncpus = ph->env.nr_cpus_avail ?: MAX_CPUS; stream = zalloc(sizeof(*stream) * ncpus); if (!stream) { pr_err("Failed to allocate streams.\n"); return -ENOMEM; } cw->stream = stream; cw->stream_cnt = ncpus; return 0; } static void free_streams(struct ctf_writer *cw) { int cpu; for (cpu = 0; cpu < cw->stream_cnt; cpu++) ctf_stream__delete(cw->stream[cpu]); zfree(&cw->stream); } static int ctf_writer__setup_env(struct ctf_writer *cw, struct perf_session *session) { struct perf_header *header = &session->header; struct bt_ctf_writer *writer = cw->writer; #define ADD(__n, __v) \ do { \ if (bt_ctf_writer_add_environment_field(writer, __n, __v)) \ return -1; \ } while (0) ADD("host", header->env.hostname); ADD("sysname", "Linux"); ADD("release", header->env.os_release); ADD("version", header->env.version); ADD("machine", header->env.arch); ADD("domain", "kernel"); ADD("tracer_name", "perf"); #undef ADD return 0; } static int ctf_writer__setup_clock(struct ctf_writer *cw, struct perf_session *session, bool tod) { struct bt_ctf_clock *clock = cw->clock; const char *desc = "perf clock"; int64_t offset = 0; if (tod) { struct perf_env *env = &session->header.env; if (!env->clock.enabled) { pr_err("Can't provide --tod time, missing clock data. " "Please record with -k/--clockid option.\n"); return -1; } desc = clockid_name(env->clock.clockid); offset = env->clock.tod_ns - env->clock.clockid_ns; } #define SET(__n, __v) \ do { \ if (bt_ctf_clock_set_##__n(clock, __v)) \ return -1; \ } while (0) SET(frequency, 1000000000); SET(offset, offset); SET(description, desc); SET(precision, 10); SET(is_absolute, 0); #undef SET return 0; } static struct bt_ctf_field_type *create_int_type(int size, bool sign, bool hex) { struct bt_ctf_field_type *type; type = bt_ctf_field_type_integer_create(size); if (!type) return NULL; if (sign && bt_ctf_field_type_integer_set_signed(type, 1)) goto err; if (hex && bt_ctf_field_type_integer_set_base(type, BT_CTF_INTEGER_BASE_HEXADECIMAL)) goto err; #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ bt_ctf_field_type_set_byte_order(type, BT_CTF_BYTE_ORDER_BIG_ENDIAN); #else bt_ctf_field_type_set_byte_order(type, BT_CTF_BYTE_ORDER_LITTLE_ENDIAN); #endif pr2("Created type: INTEGER %d-bit %ssigned %s\n", size, sign ? "un" : "", hex ? "hex" : ""); return type; err: bt_ctf_field_type_put(type); return NULL; } static void ctf_writer__cleanup_data(struct ctf_writer *cw) { unsigned int i; for (i = 0; i < ARRAY_SIZE(cw->data.array); i++) bt_ctf_field_type_put(cw->data.array[i]); } static int ctf_writer__init_data(struct ctf_writer *cw) { #define CREATE_INT_TYPE(type, size, sign, hex) \ do { \ (type) = create_int_type(size, sign, hex); \ if (!(type)) \ goto err; \ } while (0) CREATE_INT_TYPE(cw->data.s64, 64, true, false); CREATE_INT_TYPE(cw->data.u64, 64, false, false); CREATE_INT_TYPE(cw->data.s32, 32, true, false); CREATE_INT_TYPE(cw->data.u32, 32, false, false); CREATE_INT_TYPE(cw->data.u32_hex, 32, false, true); CREATE_INT_TYPE(cw->data.u64_hex, 64, false, true); cw->data.string = bt_ctf_field_type_string_create(); if (cw->data.string) return 0; err: ctf_writer__cleanup_data(cw); pr_err("Failed to create data types.\n"); return -1; } static void ctf_writer__cleanup(struct ctf_writer *cw) { ctf_writer__cleanup_data(cw); bt_ctf_clock_put(cw->clock); free_streams(cw); bt_ctf_stream_class_put(cw->stream_class); bt_ctf_writer_put(cw->writer); /* and NULL all the pointers */ memset(cw, 0, sizeof(*cw)); } static int ctf_writer__init(struct ctf_writer *cw, const char *path, struct perf_session *session, bool tod) { struct bt_ctf_writer *writer; struct bt_ctf_stream_class *stream_class; struct bt_ctf_clock *clock; struct bt_ctf_field_type *pkt_ctx_type; int ret; /* CTF writer */ writer = bt_ctf_writer_create(path); if (!writer) goto err; cw->writer = writer; /* CTF clock */ clock = bt_ctf_clock_create("perf_clock"); if (!clock) { pr("Failed to create CTF clock.\n"); goto err_cleanup; } cw->clock = clock; if (ctf_writer__setup_clock(cw, session, tod)) { pr("Failed to setup CTF clock.\n"); goto err_cleanup; } /* CTF stream class */ stream_class = bt_ctf_stream_class_create("perf_stream"); if (!stream_class) { pr("Failed to create CTF stream class.\n"); goto err_cleanup; } cw->stream_class = stream_class; /* CTF clock stream setup */ if (bt_ctf_stream_class_set_clock(stream_class, clock)) { pr("Failed to assign CTF clock to stream class.\n"); goto err_cleanup; } if (ctf_writer__init_data(cw)) goto err_cleanup; /* Add cpu_id for packet context */ pkt_ctx_type = bt_ctf_stream_class_get_packet_context_type(stream_class); if (!pkt_ctx_type) goto err_cleanup; ret = bt_ctf_field_type_structure_add_field(pkt_ctx_type, cw->data.u32, "cpu_id"); bt_ctf_field_type_put(pkt_ctx_type); if (ret) goto err_cleanup; /* CTF clock writer setup */ if (bt_ctf_writer_add_clock(writer, clock)) { pr("Failed to assign CTF clock to writer.\n"); goto err_cleanup; } return 0; err_cleanup: ctf_writer__cleanup(cw); err: pr_err("Failed to setup CTF writer.\n"); return -1; } static int ctf_writer__flush_streams(struct ctf_writer *cw) { int cpu, ret = 0; for (cpu = 0; cpu < cw->stream_cnt && !ret; cpu++) ret = ctf_stream__flush(cw->stream[cpu]); return ret; } static int convert__config(const char *var, const char *value, void *cb) { struct convert *c = cb; if (!strcmp(var, "convert.queue-size")) return perf_config_u64(&c->queue_size, var, value); return 0; } int bt_convert__perf2ctf(const char *input, const char *path, struct perf_data_convert_opts *opts) { struct perf_session *session; struct perf_data data = { .path = input, .mode = PERF_DATA_MODE_READ, .force = opts->force, }; struct convert c = { .tool = { .sample = process_sample_event, .mmap = perf_event__process_mmap, .mmap2 = perf_event__process_mmap2, .comm = perf_event__process_comm, .exit = perf_event__process_exit, .fork = perf_event__process_fork, .lost = perf_event__process_lost, .tracing_data = perf_event__process_tracing_data, .build_id = perf_event__process_build_id, .namespaces = perf_event__process_namespaces, .ordered_events = true, .ordering_requires_timestamps = true, }, }; struct ctf_writer *cw = &c.writer; int err; if (opts->all) { c.tool.comm = process_comm_event; c.tool.exit = process_exit_event; c.tool.fork = process_fork_event; c.tool.mmap = process_mmap_event; c.tool.mmap2 = process_mmap2_event; } err = perf_config(convert__config, &c); if (err) return err; err = -1; /* perf.data session */ session = perf_session__new(&data, &c.tool); if (IS_ERR(session)) return PTR_ERR(session); /* CTF writer */ if (ctf_writer__init(cw, path, session, opts->tod)) goto free_session; if (c.queue_size) { ordered_events__set_alloc_size(&session->ordered_events, c.queue_size); } /* CTF writer env/clock setup */ if (ctf_writer__setup_env(cw, session)) goto free_writer; /* CTF events setup */ if (setup_events(cw, session)) goto free_writer; if (opts->all && setup_non_sample_events(cw, session)) goto free_writer; if (setup_streams(cw, session)) goto free_writer; err = perf_session__process_events(session); if (!err) err = ctf_writer__flush_streams(cw); else pr_err("Error during conversion.\n"); fprintf(stderr, "[ perf data convert: Converted '%s' into CTF data '%s' ]\n", data.path, path); fprintf(stderr, "[ perf data convert: Converted and wrote %.3f MB (%" PRIu64 " samples", (double) c.events_size / 1024.0 / 1024.0, c.events_count); if (!c.non_sample_count) fprintf(stderr, ") ]\n"); else fprintf(stderr, ", %" PRIu64 " non-samples) ]\n", c.non_sample_count); cleanup_events(session); perf_session__delete(session); ctf_writer__cleanup(cw); return err; free_writer: ctf_writer__cleanup(cw); free_session: perf_session__delete(session); pr_err("Error during conversion setup.\n"); return err; }
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with Cregit http://github.com/cregit/cregit
Version 2.0-RC1