blob: b023db136ef3ee3581e8c8e5c5129ed20a0b51f4 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Tom Zanussi82d156c2010-01-27 02:27:55 -06002/*
3 * trace-event-scripting. Scripting engine common and initialization code.
4 *
5 * Copyright (C) 2009-2010 Tom Zanussi <tzanussi@gmail.com>
Tom Zanussi82d156c2010-01-27 02:27:55 -06006 */
7
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
Tom Zanussi82d156c2010-01-27 02:27:55 -060011#include <errno.h>
12
13#include "../perf.h"
Arnaldo Carvalho de Melo9a8860b2016-10-25 17:30:05 -030014#include "debug.h"
Tom Zanussi82d156c2010-01-27 02:27:55 -060015#include "util.h"
16#include "trace-event.h"
17
18struct scripting_context *scripting_context;
19
Adrian Hunterd445dd22014-08-15 22:08:37 +030020static int flush_script_unsupported(void)
21{
22 return 0;
23}
24
Tom Zanussi82d156c2010-01-27 02:27:55 -060025static int stop_script_unsupported(void)
26{
27 return 0;
28}
29
Irina Tirdea1d037ca2012-09-11 01:15:03 +030030static void process_event_unsupported(union perf_event *event __maybe_unused,
31 struct perf_sample *sample __maybe_unused,
32 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -030033 struct addr_location *al __maybe_unused)
Tom Zanussi82d156c2010-01-27 02:27:55 -060034{
35}
36
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060037static void print_python_unsupported_msg(void)
38{
39 fprintf(stderr, "Python scripting not supported."
40 " Install libpython and rebuild perf to enable it.\n"
41 "For example:\n # apt-get install python-dev (ubuntu)"
42 "\n # yum install python-devel (Fedora)"
43 "\n etc.\n");
44}
45
Irina Tirdea1d037ca2012-09-11 01:15:03 +030046static int python_start_script_unsupported(const char *script __maybe_unused,
47 int argc __maybe_unused,
48 const char **argv __maybe_unused)
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060049{
50 print_python_unsupported_msg();
51
52 return -1;
53}
54
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -040055static int python_generate_script_unsupported(struct tep_handle *pevent
Irina Tirdea1d037ca2012-09-11 01:15:03 +030056 __maybe_unused,
57 const char *outfile
58 __maybe_unused)
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060059{
60 print_python_unsupported_msg();
61
62 return -1;
63}
64
65struct scripting_ops python_scripting_unsupported_ops = {
66 .name = "Python",
67 .start_script = python_start_script_unsupported,
Adrian Hunterd445dd22014-08-15 22:08:37 +030068 .flush_script = flush_script_unsupported,
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060069 .stop_script = stop_script_unsupported,
70 .process_event = process_event_unsupported,
71 .generate_script = python_generate_script_unsupported,
72};
73
74static void register_python_scripting(struct scripting_ops *scripting_ops)
75{
Arnaldo Carvalho de Melocf346d52016-10-25 17:20:47 -030076 if (scripting_context == NULL)
77 scripting_context = malloc(sizeof(*scripting_context));
Arnaldo Carvalho de Melo9a8860b2016-10-25 17:30:05 -030078
79 if (scripting_context == NULL ||
80 script_spec_register("Python", scripting_ops) ||
81 script_spec_register("py", scripting_ops)) {
82 pr_err("Error registering Python script extension: disabling it\n");
83 zfree(&scripting_context);
84 }
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060085}
86
Jin Yao90ce61b2018-04-09 18:26:47 +080087#ifndef HAVE_LIBPYTHON_SUPPORT
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060088void setup_python_scripting(void)
89{
90 register_python_scripting(&python_scripting_unsupported_ops);
91}
92#else
Stephane Eranian0f940cb2010-09-21 00:45:01 +020093extern struct scripting_ops python_scripting_ops;
Tom Zanussi7e4b21b2010-01-27 02:27:57 -060094
95void setup_python_scripting(void)
96{
97 register_python_scripting(&python_scripting_ops);
98}
99#endif
100
Tom Zanussi82d156c2010-01-27 02:27:55 -0600101static void print_perl_unsupported_msg(void)
102{
103 fprintf(stderr, "Perl scripting not supported."
104 " Install libperl and rebuild perf to enable it.\n"
105 "For example:\n # apt-get install libperl-dev (ubuntu)"
106 "\n # yum install 'perl(ExtUtils::Embed)' (Fedora)"
107 "\n etc.\n");
108}
109
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300110static int perl_start_script_unsupported(const char *script __maybe_unused,
111 int argc __maybe_unused,
112 const char **argv __maybe_unused)
Tom Zanussi82d156c2010-01-27 02:27:55 -0600113{
114 print_perl_unsupported_msg();
115
116 return -1;
117}
118
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -0400119static int perl_generate_script_unsupported(struct tep_handle *pevent
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300120 __maybe_unused,
121 const char *outfile __maybe_unused)
Tom Zanussi82d156c2010-01-27 02:27:55 -0600122{
123 print_perl_unsupported_msg();
124
125 return -1;
126}
127
128struct scripting_ops perl_scripting_unsupported_ops = {
129 .name = "Perl",
130 .start_script = perl_start_script_unsupported,
Adrian Hunterd445dd22014-08-15 22:08:37 +0300131 .flush_script = flush_script_unsupported,
Tom Zanussi82d156c2010-01-27 02:27:55 -0600132 .stop_script = stop_script_unsupported,
133 .process_event = process_event_unsupported,
134 .generate_script = perl_generate_script_unsupported,
135};
136
137static void register_perl_scripting(struct scripting_ops *scripting_ops)
138{
Arnaldo Carvalho de Melocf346d52016-10-25 17:20:47 -0300139 if (scripting_context == NULL)
140 scripting_context = malloc(sizeof(*scripting_context));
Arnaldo Carvalho de Melo9a8860b2016-10-25 17:30:05 -0300141
142 if (scripting_context == NULL ||
143 script_spec_register("Perl", scripting_ops) ||
144 script_spec_register("pl", scripting_ops)) {
145 pr_err("Error registering Perl script extension: disabling it\n");
146 zfree(&scripting_context);
147 }
Tom Zanussi82d156c2010-01-27 02:27:55 -0600148}
149
Jin Yao90ce61b2018-04-09 18:26:47 +0800150#ifndef HAVE_LIBPERL_SUPPORT
Tom Zanussi82d156c2010-01-27 02:27:55 -0600151void setup_perl_scripting(void)
152{
153 register_perl_scripting(&perl_scripting_unsupported_ops);
154}
155#else
Stephane Eranian0f940cb2010-09-21 00:45:01 +0200156extern struct scripting_ops perl_scripting_ops;
Tom Zanussi82d156c2010-01-27 02:27:55 -0600157
158void setup_perl_scripting(void)
159{
160 register_perl_scripting(&perl_scripting_ops);
161}
162#endif