1 // SPDX-License-Identifier: GPL-2.0
5 * Builtin inject command: Examine the live mode (stdin) event stream
6 * and repipe it to stdout while optionally injecting additional
11 #include "util/color.h"
13 #include "util/vdso.h"
14 #include "util/evlist.h"
15 #include "util/evsel.h"
17 #include "util/session.h"
18 #include "util/tool.h"
19 #include "util/debug.h"
20 #include "util/build-id.h"
21 #include "util/data.h"
22 #include "util/auxtrace.h"
24 #include "util/symbol.h"
25 #include "util/synthetic-events.h"
26 #include "util/thread.h"
27 #include "util/namespaces.h"
29 #include <linux/err.h>
30 #include <subcmd/parse-options.h>
31 #include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
33 #include <linux/list.h>
34 #include <linux/string.h>
39 struct perf_tool tool;
40 struct perf_session *session;
48 bool in_place_update_dry_run;
49 const char *input_name;
50 struct perf_data output;
53 struct list_head samples;
54 struct itrace_synth_opts itrace_synth_opts;
55 char event_copy[PERF_SAMPLE_MAX_SIZE];
59 struct list_head node;
61 union perf_event event[];
64 static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
65 struct machine *machine, u8 cpumode, u32 flags);
67 static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
71 size = perf_data__write(&inject->output, buf, sz);
75 inject->bytes_written += size;
79 static int perf_event__repipe_synth(struct perf_tool *tool,
80 union perf_event *event)
82 struct perf_inject *inject = container_of(tool, struct perf_inject,
85 return output_bytes(inject, event, event->header.size);
88 static int perf_event__repipe_oe_synth(struct perf_tool *tool,
89 union perf_event *event,
90 struct ordered_events *oe __maybe_unused)
92 return perf_event__repipe_synth(tool, event);
96 static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
97 union perf_event *event __maybe_unused,
98 struct ordered_events *oe __maybe_unused)
104 static int perf_event__repipe_op2_synth(struct perf_session *session,
105 union perf_event *event)
107 return perf_event__repipe_synth(session->tool, event);
110 static int perf_event__repipe_op4_synth(struct perf_session *session,
111 union perf_event *event,
112 u64 data __maybe_unused)
114 return perf_event__repipe_synth(session->tool, event);
117 static int perf_event__repipe_attr(struct perf_tool *tool,
118 union perf_event *event,
119 struct evlist **pevlist)
121 struct perf_inject *inject = container_of(tool, struct perf_inject,
125 ret = perf_event__process_attr(tool, event, pevlist);
129 if (!inject->output.is_pipe)
132 return perf_event__repipe_synth(tool, event);
135 static int perf_event__repipe_event_update(struct perf_tool *tool,
136 union perf_event *event,
137 struct evlist **pevlist __maybe_unused)
139 return perf_event__repipe_synth(tool, event);
142 #ifdef HAVE_AUXTRACE_SUPPORT
144 static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
151 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
154 ret = output_bytes(inject, buf, ssz);
163 static s64 perf_event__repipe_auxtrace(struct perf_session *session,
164 union perf_event *event)
166 struct perf_tool *tool = session->tool;
167 struct perf_inject *inject = container_of(tool, struct perf_inject,
171 inject->have_auxtrace = true;
173 if (!inject->output.is_pipe) {
176 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
179 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
185 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
186 ret = output_bytes(inject, event, event->header.size);
189 ret = copy_bytes(inject, perf_data__fd(session->data),
190 event->auxtrace.size);
192 ret = output_bytes(inject, event,
193 event->header.size + event->auxtrace.size);
198 return event->auxtrace.size;
204 perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
205 union perf_event *event __maybe_unused)
207 pr_err("AUX area tracing not supported\n");
213 static int perf_event__repipe(struct perf_tool *tool,
214 union perf_event *event,
215 struct perf_sample *sample __maybe_unused,
216 struct machine *machine __maybe_unused)
218 return perf_event__repipe_synth(tool, event);
221 static int perf_event__drop(struct perf_tool *tool __maybe_unused,
222 union perf_event *event __maybe_unused,
223 struct perf_sample *sample __maybe_unused,
224 struct machine *machine __maybe_unused)
229 static int perf_event__drop_aux(struct perf_tool *tool,
230 union perf_event *event __maybe_unused,
231 struct perf_sample *sample,
232 struct machine *machine __maybe_unused)
234 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
237 inject->aux_id = sample->id;
242 static union perf_event *
243 perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
244 union perf_event *event,
245 struct perf_sample *sample)
247 size_t sz1 = sample->aux_sample.data - (void *)event;
248 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
249 union perf_event *ev = (union perf_event *)inject->event_copy;
251 if (sz1 > event->header.size || sz2 > event->header.size ||
252 sz1 + sz2 > event->header.size ||
253 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
256 memcpy(ev, event, sz1);
257 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
258 ev->header.size = sz1 + sz2;
259 ((u64 *)((void *)ev + sz1))[-1] = 0;
264 typedef int (*inject_handler)(struct perf_tool *tool,
265 union perf_event *event,
266 struct perf_sample *sample,
268 struct machine *machine);
270 static int perf_event__repipe_sample(struct perf_tool *tool,
271 union perf_event *event,
272 struct perf_sample *sample,
274 struct machine *machine)
276 struct perf_inject *inject = container_of(tool, struct perf_inject,
279 if (evsel && evsel->handler) {
280 inject_handler f = evsel->handler;
281 return f(tool, event, sample, evsel, machine);
284 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
286 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
287 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
289 return perf_event__repipe_synth(tool, event);
292 static int perf_event__repipe_mmap(struct perf_tool *tool,
293 union perf_event *event,
294 struct perf_sample *sample,
295 struct machine *machine)
299 err = perf_event__process_mmap(tool, event, sample, machine);
300 perf_event__repipe(tool, event, sample, machine);
306 static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
307 union perf_event *event,
308 struct perf_sample *sample,
309 struct machine *machine)
311 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
316 * if jit marker, then inject jit mmaps and generate ELF images
318 ret = jit_process(inject->session, &inject->output, machine,
319 event->mmap.filename, event->mmap.pid, event->mmap.tid, &n);
323 inject->bytes_written += n;
326 return perf_event__repipe_mmap(tool, event, sample, machine);
330 static struct dso *findnew_dso(int pid, int tid, const char *filename,
331 struct dso_id *id, struct machine *machine)
333 struct thread *thread;
334 struct nsinfo *nsi = NULL;
339 thread = machine__findnew_thread(machine, pid, tid);
340 if (thread == NULL) {
341 pr_err("cannot find or create a task %d/%d.\n", tid, pid);
345 vdso = is_vdso_map(filename);
346 nsi = nsinfo__get(thread->nsinfo);
349 /* The vdso maps are always on the host and not the
350 * container. Ensure that we don't use setns to look
353 nnsi = nsinfo__copy(nsi);
356 nnsi->need_setns = false;
359 dso = machine__findnew_vdso(machine, thread);
361 dso = machine__findnew_dso_id(machine, filename, id);
365 nsinfo__put(dso->nsinfo);
374 static int perf_event__repipe_buildid_mmap(struct perf_tool *tool,
375 union perf_event *event,
376 struct perf_sample *sample,
377 struct machine *machine)
381 dso = findnew_dso(event->mmap.pid, event->mmap.tid,
382 event->mmap.filename, NULL, machine);
384 if (dso && !dso->hit) {
386 dso__inject_build_id(dso, tool, machine, sample->cpumode, 0);
390 return perf_event__repipe(tool, event, sample, machine);
393 static int perf_event__repipe_mmap2(struct perf_tool *tool,
394 union perf_event *event,
395 struct perf_sample *sample,
396 struct machine *machine)
400 err = perf_event__process_mmap2(tool, event, sample, machine);
401 perf_event__repipe(tool, event, sample, machine);
403 if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
406 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
407 event->mmap2.filename, NULL, machine);
409 /* mark it not to inject build-id */
419 static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
420 union perf_event *event,
421 struct perf_sample *sample,
422 struct machine *machine)
424 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
429 * if jit marker, then inject jit mmaps and generate ELF images
431 ret = jit_process(inject->session, &inject->output, machine,
432 event->mmap2.filename, event->mmap2.pid, event->mmap2.tid, &n);
436 inject->bytes_written += n;
439 return perf_event__repipe_mmap2(tool, event, sample, machine);
443 static int perf_event__repipe_buildid_mmap2(struct perf_tool *tool,
444 union perf_event *event,
445 struct perf_sample *sample,
446 struct machine *machine)
448 struct dso_id dso_id = {
449 .maj = event->mmap2.maj,
450 .min = event->mmap2.min,
451 .ino = event->mmap2.ino,
452 .ino_generation = event->mmap2.ino_generation,
456 if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
457 /* cannot use dso_id since it'd have invalid info */
458 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
459 event->mmap2.filename, NULL, machine);
461 /* mark it not to inject build-id */
468 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
469 event->mmap2.filename, &dso_id, machine);
471 if (dso && !dso->hit) {
473 dso__inject_build_id(dso, tool, machine, sample->cpumode,
478 perf_event__repipe(tool, event, sample, machine);
483 static int perf_event__repipe_fork(struct perf_tool *tool,
484 union perf_event *event,
485 struct perf_sample *sample,
486 struct machine *machine)
490 err = perf_event__process_fork(tool, event, sample, machine);
491 perf_event__repipe(tool, event, sample, machine);
496 static int perf_event__repipe_comm(struct perf_tool *tool,
497 union perf_event *event,
498 struct perf_sample *sample,
499 struct machine *machine)
503 err = perf_event__process_comm(tool, event, sample, machine);
504 perf_event__repipe(tool, event, sample, machine);
509 static int perf_event__repipe_namespaces(struct perf_tool *tool,
510 union perf_event *event,
511 struct perf_sample *sample,
512 struct machine *machine)
514 int err = perf_event__process_namespaces(tool, event, sample, machine);
516 perf_event__repipe(tool, event, sample, machine);
521 static int perf_event__repipe_exit(struct perf_tool *tool,
522 union perf_event *event,
523 struct perf_sample *sample,
524 struct machine *machine)
528 err = perf_event__process_exit(tool, event, sample, machine);
529 perf_event__repipe(tool, event, sample, machine);
534 static int perf_event__repipe_tracing_data(struct perf_session *session,
535 union perf_event *event)
539 perf_event__repipe_synth(session->tool, event);
540 err = perf_event__process_tracing_data(session, event);
545 static int dso__read_build_id(struct dso *dso)
549 if (dso->has_build_id)
552 nsinfo__mountns_enter(dso->nsinfo, &nsc);
553 if (filename__read_build_id(dso->long_name, &dso->bid) > 0)
554 dso->has_build_id = true;
555 nsinfo__mountns_exit(&nsc);
557 return dso->has_build_id ? 0 : -1;
560 static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
561 struct machine *machine, u8 cpumode, u32 flags)
565 if (is_anon_memory(dso->long_name) || flags & MAP_HUGETLB)
567 if (is_no_dso_memory(dso->long_name))
570 if (dso__read_build_id(dso) < 0) {
571 pr_debug("no build_id found for %s\n", dso->long_name);
575 err = perf_event__synthesize_build_id(tool, dso, cpumode,
576 perf_event__repipe, machine);
578 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
585 int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
586 struct perf_sample *sample,
587 struct evsel *evsel __maybe_unused,
588 struct machine *machine)
590 struct addr_location al;
591 struct thread *thread;
593 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
594 if (thread == NULL) {
595 pr_err("problem processing %d event, skipping it.\n",
600 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
601 if (!al.map->dso->hit) {
602 al.map->dso->hit = 1;
603 dso__inject_build_id(al.map->dso, tool, machine,
604 sample->cpumode, al.map->flags);
610 perf_event__repipe(tool, event, sample, machine);
614 static int perf_inject__sched_process_exit(struct perf_tool *tool,
615 union perf_event *event __maybe_unused,
616 struct perf_sample *sample,
617 struct evsel *evsel __maybe_unused,
618 struct machine *machine __maybe_unused)
620 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
621 struct event_entry *ent;
623 list_for_each_entry(ent, &inject->samples, node) {
624 if (sample->tid == ent->tid) {
625 list_del_init(&ent->node);
634 static int perf_inject__sched_switch(struct perf_tool *tool,
635 union perf_event *event,
636 struct perf_sample *sample,
638 struct machine *machine)
640 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
641 struct event_entry *ent;
643 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
645 ent = malloc(event->header.size + sizeof(struct event_entry));
647 color_fprintf(stderr, PERF_COLOR_RED,
648 "Not enough memory to process sched switch event!");
652 ent->tid = sample->tid;
653 memcpy(&ent->event, event, event->header.size);
654 list_add(&ent->node, &inject->samples);
658 static int perf_inject__sched_stat(struct perf_tool *tool,
659 union perf_event *event __maybe_unused,
660 struct perf_sample *sample,
662 struct machine *machine)
664 struct event_entry *ent;
665 union perf_event *event_sw;
666 struct perf_sample sample_sw;
667 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
668 u32 pid = evsel__intval(evsel, sample, "pid");
670 list_for_each_entry(ent, &inject->samples, node) {
677 event_sw = &ent->event[0];
678 evsel__parse_sample(evsel, event_sw, &sample_sw);
680 sample_sw.period = sample->period;
681 sample_sw.time = sample->time;
682 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
683 evsel->core.attr.read_format, &sample_sw);
684 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
685 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
688 static void sig_handler(int sig __maybe_unused)
693 static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
695 struct perf_event_attr *attr = &evsel->core.attr;
696 const char *name = evsel__name(evsel);
698 if (!(attr->sample_type & sample_type)) {
699 pr_err("Samples for %s event do not have %s attribute set.",
707 static int drop_sample(struct perf_tool *tool __maybe_unused,
708 union perf_event *event __maybe_unused,
709 struct perf_sample *sample __maybe_unused,
710 struct evsel *evsel __maybe_unused,
711 struct machine *machine __maybe_unused)
716 static void strip_init(struct perf_inject *inject)
718 struct evlist *evlist = inject->session->evlist;
721 inject->tool.context_switch = perf_event__drop;
723 evlist__for_each_entry(evlist, evsel)
724 evsel->handler = drop_sample;
727 static int parse_vm_time_correlation(const struct option *opt, const char *str, int unset)
729 struct perf_inject *inject = opt->value;
736 inject->itrace_synth_opts.set = true;
737 inject->itrace_synth_opts.vm_time_correlation = true;
738 inject->in_place_update = true;
743 dry_run = skip_spaces(str);
744 if (!strncmp(dry_run, "dry-run", strlen("dry-run"))) {
745 inject->itrace_synth_opts.vm_tm_corr_dry_run = true;
746 inject->in_place_update_dry_run = true;
747 args = dry_run + strlen("dry-run");
752 inject->itrace_synth_opts.vm_tm_corr_args = strdup(args);
754 return inject->itrace_synth_opts.vm_tm_corr_args ? 0 : -ENOMEM;
757 static int __cmd_inject(struct perf_inject *inject)
760 struct perf_session *session = inject->session;
761 struct perf_data *data_out = &inject->output;
762 int fd = inject->in_place_update ? -1 : perf_data__fd(data_out);
763 u64 output_data_offset;
765 signal(SIGINT, sig_handler);
767 if (inject->build_ids || inject->sched_stat ||
768 inject->itrace_synth_opts.set || inject->build_id_all) {
769 inject->tool.mmap = perf_event__repipe_mmap;
770 inject->tool.mmap2 = perf_event__repipe_mmap2;
771 inject->tool.fork = perf_event__repipe_fork;
772 inject->tool.tracing_data = perf_event__repipe_tracing_data;
775 output_data_offset = session->header.data_offset;
777 if (inject->build_id_all) {
778 inject->tool.mmap = perf_event__repipe_buildid_mmap;
779 inject->tool.mmap2 = perf_event__repipe_buildid_mmap2;
780 } else if (inject->build_ids) {
781 inject->tool.sample = perf_event__inject_buildid;
782 } else if (inject->sched_stat) {
785 evlist__for_each_entry(session->evlist, evsel) {
786 const char *name = evsel__name(evsel);
788 if (!strcmp(name, "sched:sched_switch")) {
789 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
792 evsel->handler = perf_inject__sched_switch;
793 } else if (!strcmp(name, "sched:sched_process_exit"))
794 evsel->handler = perf_inject__sched_process_exit;
795 else if (!strncmp(name, "sched:sched_stat_", 17))
796 evsel->handler = perf_inject__sched_stat;
798 } else if (inject->itrace_synth_opts.vm_time_correlation) {
799 session->itrace_synth_opts = &inject->itrace_synth_opts;
800 memset(&inject->tool, 0, sizeof(inject->tool));
801 inject->tool.id_index = perf_event__process_id_index;
802 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
803 inject->tool.auxtrace = perf_event__process_auxtrace;
804 inject->tool.auxtrace_error = perf_event__process_auxtrace_error;
805 inject->tool.ordered_events = true;
806 inject->tool.ordering_requires_timestamps = true;
807 } else if (inject->itrace_synth_opts.set) {
808 session->itrace_synth_opts = &inject->itrace_synth_opts;
809 inject->itrace_synth_opts.inject = true;
810 inject->tool.comm = perf_event__repipe_comm;
811 inject->tool.namespaces = perf_event__repipe_namespaces;
812 inject->tool.exit = perf_event__repipe_exit;
813 inject->tool.id_index = perf_event__process_id_index;
814 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
815 inject->tool.auxtrace = perf_event__process_auxtrace;
816 inject->tool.aux = perf_event__drop_aux;
817 inject->tool.itrace_start = perf_event__drop_aux,
818 inject->tool.ordered_events = true;
819 inject->tool.ordering_requires_timestamps = true;
820 /* Allow space in the header for new attributes */
821 output_data_offset = 4096;
826 if (!inject->itrace_synth_opts.set)
827 auxtrace_index__free(&session->auxtrace_index);
829 if (!data_out->is_pipe && !inject->in_place_update)
830 lseek(fd, output_data_offset, SEEK_SET);
832 ret = perf_session__process_events(session);
836 if (!data_out->is_pipe && !inject->in_place_update) {
837 if (inject->build_ids)
838 perf_header__set_feat(&session->header,
841 * Keep all buildids when there is unprocessed AUX data because
842 * it is not known which ones the AUX trace hits.
844 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
845 inject->have_auxtrace && !inject->itrace_synth_opts.set)
846 dsos__hit_all(session);
848 * The AUX areas have been removed and replaced with
849 * synthesized hardware events, so clear the feature flag.
851 if (inject->itrace_synth_opts.set) {
852 perf_header__clear_feat(&session->header,
854 if (inject->itrace_synth_opts.last_branch ||
855 inject->itrace_synth_opts.add_last_branch)
856 perf_header__set_feat(&session->header,
857 HEADER_BRANCH_STACK);
859 session->header.data_offset = output_data_offset;
860 session->header.data_size = inject->bytes_written;
861 perf_session__write_header(session, session->evlist, fd, true);
867 int cmd_inject(int argc, const char **argv)
869 struct perf_inject inject = {
871 .sample = perf_event__repipe_sample,
872 .read = perf_event__repipe_sample,
873 .mmap = perf_event__repipe,
874 .mmap2 = perf_event__repipe,
875 .comm = perf_event__repipe,
876 .namespaces = perf_event__repipe,
877 .cgroup = perf_event__repipe,
878 .fork = perf_event__repipe,
879 .exit = perf_event__repipe,
880 .lost = perf_event__repipe,
881 .lost_samples = perf_event__repipe,
882 .aux = perf_event__repipe,
883 .itrace_start = perf_event__repipe,
884 .context_switch = perf_event__repipe,
885 .throttle = perf_event__repipe,
886 .unthrottle = perf_event__repipe,
887 .ksymbol = perf_event__repipe,
888 .bpf = perf_event__repipe,
889 .text_poke = perf_event__repipe,
890 .attr = perf_event__repipe_attr,
891 .event_update = perf_event__repipe_event_update,
892 .tracing_data = perf_event__repipe_op2_synth,
893 .finished_round = perf_event__repipe_oe_synth,
894 .build_id = perf_event__repipe_op2_synth,
895 .id_index = perf_event__repipe_op2_synth,
896 .auxtrace_info = perf_event__repipe_op2_synth,
897 .auxtrace_error = perf_event__repipe_op2_synth,
898 .time_conv = perf_event__repipe_op2_synth,
899 .thread_map = perf_event__repipe_op2_synth,
900 .cpu_map = perf_event__repipe_op2_synth,
901 .stat_config = perf_event__repipe_op2_synth,
902 .stat = perf_event__repipe_op2_synth,
903 .stat_round = perf_event__repipe_op2_synth,
904 .feature = perf_event__repipe_op2_synth,
905 .compressed = perf_event__repipe_op4_synth,
906 .auxtrace = perf_event__repipe_auxtrace,
909 .samples = LIST_HEAD_INIT(inject.samples),
912 .mode = PERF_DATA_MODE_WRITE,
916 struct perf_data data = {
917 .mode = PERF_DATA_MODE_READ,
922 struct option options[] = {
923 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
924 "Inject build-ids into the output stream"),
925 OPT_BOOLEAN(0, "buildid-all", &inject.build_id_all,
926 "Inject build-ids of all DSOs into the output stream"),
927 OPT_STRING('i', "input", &inject.input_name, "file",
929 OPT_STRING('o', "output", &inject.output.path, "file",
931 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
932 "Merge sched-stat and sched-switch for getting events "
933 "where and how long tasks slept"),
935 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
937 OPT_INCR('v', "verbose", &verbose,
938 "be more verbose (show build ids, etc)"),
939 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
940 "kallsyms pathname"),
941 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
942 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
943 NULL, "opts", "Instruction Tracing options\n"
945 itrace_parse_synth_opts),
946 OPT_BOOLEAN(0, "strip", &inject.strip,
947 "strip non-synthesized events (use with --itrace)"),
948 OPT_CALLBACK_OPTARG(0, "vm-time-correlation", &inject, NULL, "opts",
949 "correlate time between VM guests and the host",
950 parse_vm_time_correlation),
953 const char * const inject_usage[] = {
954 "perf inject [<options>]",
958 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
960 argc = parse_options(argc, argv, options, inject_usage, 0);
963 * Any (unrecognized) arguments left?
966 usage_with_options(inject_usage, options);
968 if (inject.strip && !inject.itrace_synth_opts.set) {
969 pr_err("--strip option requires --itrace option\n");
973 if (inject.in_place_update) {
974 if (!strcmp(inject.input_name, "-")) {
975 pr_err("Input file name required for in-place updating\n");
978 if (strcmp(inject.output.path, "-")) {
979 pr_err("Output file name must not be specified for in-place updating\n");
982 if (!data.force && !inject.in_place_update_dry_run) {
983 pr_err("The input file would be updated in place, "
984 "the --force option is required.\n");
987 if (!inject.in_place_update_dry_run)
988 data.in_place_update = true;
989 } else if (perf_data__open(&inject.output)) {
990 perror("failed to create output file");
994 data.path = inject.input_name;
995 inject.session = perf_session__new(&data, inject.output.is_pipe, &inject.tool);
996 if (IS_ERR(inject.session)) {
997 ret = PTR_ERR(inject.session);
998 goto out_close_output;
1001 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
1002 pr_warning("Decompression initialization failed.\n");
1004 if (inject.build_ids && !inject.build_id_all) {
1006 * to make sure the mmap records are ordered correctly
1007 * and so that the correct especially due to jitted code
1008 * mmaps. We cannot generate the buildid hit list and
1009 * inject the jit mmaps at the same time for now.
1011 inject.tool.ordered_events = true;
1012 inject.tool.ordering_requires_timestamps = true;
1015 if (inject.sched_stat) {
1016 inject.tool.ordered_events = true;
1020 if (inject.jit_mode) {
1021 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
1022 inject.tool.mmap = perf_event__jit_repipe_mmap;
1023 inject.tool.ordered_events = true;
1024 inject.tool.ordering_requires_timestamps = true;
1026 * JIT MMAP injection injects all MMAP events in one go, so it
1027 * does not obey finished_round semantics.
1029 inject.tool.finished_round = perf_event__drop_oe;
1032 ret = symbol__init(&inject.session->header.env);
1036 ret = __cmd_inject(&inject);
1039 zstd_fini(&(inject.session->zstd_data));
1040 perf_session__delete(inject.session);
1042 perf_data__close(&inject.output);
1043 free(inject.itrace_synth_opts.vm_tm_corr_args);