2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
32 #include <common/mi-lttng.h>
34 #include "../command.h"
36 static int opt_event_type
;
37 static char *opt_kernel
;
38 static int opt_userspace
;
40 /* Not implemented yet */
41 static char *opt_cmd_name
;
57 static struct lttng_handle
*handle
;
58 static struct mi_writer
*writer
;
60 static struct poptOption long_options
[] = {
61 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
62 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
63 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
65 /* Not implemented yet */
66 {"userspace", 'u', POPT_ARG_STRING
| POPT_ARGFLAG_OPTIONAL
, &opt_cmd_name
, OPT_USERSPACE
, 0, 0},
67 {"pid", 'p', POPT_ARG_INT
, &opt_pid
, 0, 0, 0},
68 {"tracepoint", 0, POPT_ARG_NONE
, 0, OPT_TRACEPOINT
, 0, 0},
69 {"marker", 0, POPT_ARG_NONE
, 0, OPT_MARKER
, 0, 0},
70 {"probe", 0, POPT_ARG_NONE
, 0, OPT_PROBE
, 0, 0},
72 {"userspace", 'u', POPT_ARG_NONE
, 0, OPT_USERSPACE
, 0, 0},
73 {"function", 0, POPT_ARG_NONE
, 0, OPT_FUNCTION
, 0, 0},
77 * Removed from options to discourage its use. Not in kernel
80 {"function:entry", 0, POPT_ARG_NONE
, 0, OPT_FUNCTION_ENTRY
, 0, 0},
81 {"syscall", 0, POPT_ARG_NONE
, 0, OPT_SYSCALL
, 0, 0},
83 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
90 static void usage(FILE *ofp
)
92 fprintf(ofp
, "usage: lttng calibrate [-k|-u] [OPTIONS]\n");
94 fprintf(ofp
, "Options:\n");
95 fprintf(ofp
, " -h, --help Show this help\n");
96 fprintf(ofp
, " --list-options Simple listing of options\n");
97 fprintf(ofp
, " -k, --kernel Apply to the kernel tracer\n");
98 fprintf(ofp
, " -u, --userspace Apply to the user-space tracer\n");
100 fprintf(ofp
, "Calibrate options:\n");
101 fprintf(ofp
, " --function Dynamic function entry/return probe (default)\n");
103 fprintf(ofp
, " --tracepoint Tracepoint event (default)\n");
104 fprintf(ofp
, " --probe\n");
105 fprintf(ofp
, " Dynamic probe.\n");
107 fprintf(ofp
, " --function:entry symbol\n");
108 fprintf(ofp
, " Function tracer event\n");
110 fprintf(ofp
, " --syscall System call eventl\n");
111 fprintf(ofp
, " --marker User-space marker (deprecated)\n");
119 * Returns a CMD_* error.
121 static int calibrate_lttng(void)
123 int ret
= CMD_SUCCESS
;
124 struct lttng_domain dom
;
125 struct lttng_calibrate calibrate
;
127 memset(&dom
, 0, sizeof(dom
));
128 memset(&calibrate
, 0, sizeof(calibrate
));
130 /* Create lttng domain */
132 dom
.type
= LTTNG_DOMAIN_KERNEL
;
133 } else if (opt_userspace
) {
134 dom
.type
= LTTNG_DOMAIN_UST
;
136 print_missing_domain();
141 handle
= lttng_create_handle(NULL
, &dom
);
142 if (handle
== NULL
) {
147 switch (opt_event_type
) {
148 case LTTNG_EVENT_TRACEPOINT
:
149 DBG("Calibrating kernel tracepoints");
151 case LTTNG_EVENT_PROBE
:
152 DBG("Calibrating kernel probes");
154 case LTTNG_EVENT_FUNCTION
:
155 DBG("Calibrating kernel functions");
156 calibrate
.type
= LTTNG_CALIBRATE_FUNCTION
;
157 ret
= lttng_calibrate(handle
, &calibrate
);
159 ERR("%s", lttng_strerror(ret
));
162 MSG("%s calibration done", opt_kernel
? "Kernel" : "UST");
164 case LTTNG_EVENT_FUNCTION_ENTRY
:
165 DBG("Calibrating kernel function entry");
167 case LTTNG_EVENT_SYSCALL
:
168 DBG("Calibrating kernel syscall");
177 ret
= mi_lttng_calibrate(writer
, &calibrate
);
185 lttng_destroy_handle(handle
);
191 * Calibrate LTTng tracer.
193 * Returns a CMD_* error.
195 int cmd_calibrate(int argc
, const char **argv
)
197 int opt
, ret
= CMD_SUCCESS
, command_ret
= CMD_SUCCESS
, success
= 1;
198 static poptContext pc
;
200 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
201 poptReadDefaultConfig(pc
, 0);
203 /* Default event type */
204 opt_event_type
= LTTNG_EVENT_FUNCTION
;
206 while ((opt
= poptGetNextOpt(pc
)) != -1) {
221 opt_event_type
= LTTNG_EVENT_FUNCTION
;
223 case OPT_FUNCTION_ENTRY
:
232 case OPT_LIST_OPTIONS
:
233 list_cmd_options(stdout
, long_options
);
244 writer
= mi_lttng_writer_create(fileno(stdout
), lttng_opt_mi
);
246 ret
= -LTTNG_ERR_NOMEM
;
250 /* Open command element */
251 ret
= mi_lttng_writer_command_open(writer
,
252 mi_lttng_element_command_calibrate
);
258 /* Open output element */
259 ret
= mi_lttng_writer_open_element(writer
,
260 mi_lttng_element_command_output
);
267 command_ret
= calibrate_lttng();
274 /* Close output element */
275 ret
= mi_lttng_writer_close_element(writer
);
282 ret
= mi_lttng_writer_write_element_bool(writer
,
283 mi_lttng_element_command_success
, success
);
289 /* Command element close */
290 ret
= mi_lttng_writer_command_close(writer
);
299 if (writer
&& mi_lttng_writer_destroy(writer
)) {
300 /* Preserve original error code */
301 ret
= ret
? ret
: -LTTNG_ERR_MI_IO_FAIL
;
304 /* Overwrite ret if an error occurred during calibrate_lttng() */
305 ret
= command_ret
? command_ret
: ret
;