Mi: mi backend + mi for command version
[lttng-tools.git] / src / bin / lttng / commands / calibrate.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
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.
8 *
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.
13 *
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.
17 */
18
19 #define _GNU_SOURCE
20 #include <popt.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26 #include <unistd.h>
27 #include <inttypes.h>
28 #include <ctype.h>
29
30 #include "../command.h"
31
32 static int opt_event_type;
33 static char *opt_kernel;
34 static int opt_userspace;
35 #if 0
36 /* Not implemented yet */
37 static char *opt_cmd_name;
38 static pid_t opt_pid;
39 #endif
40
41 enum {
42 OPT_HELP = 1,
43 OPT_TRACEPOINT,
44 OPT_MARKER,
45 OPT_PROBE,
46 OPT_FUNCTION,
47 OPT_FUNCTION_ENTRY,
48 OPT_SYSCALL,
49 OPT_USERSPACE,
50 OPT_LIST_OPTIONS,
51 };
52
53 static struct lttng_handle *handle;
54
55 static struct poptOption long_options[] = {
56 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
57 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
58 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
59 #if 0
60 /* Not implemented yet */
61 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
62 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
63 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
64 {"marker", 0, POPT_ARG_NONE, 0, OPT_MARKER, 0, 0},
65 {"probe", 0, POPT_ARG_NONE, 0, OPT_PROBE, 0, 0},
66 #else
67 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
68 {"function", 0, POPT_ARG_NONE, 0, OPT_FUNCTION, 0, 0},
69 #endif
70 #if 0
71 /*
72 * Removed from options to discourage its use. Not in kernel
73 * tracer anymore.
74 */
75 {"function:entry", 0, POPT_ARG_NONE, 0, OPT_FUNCTION_ENTRY, 0, 0},
76 {"syscall", 0, POPT_ARG_NONE, 0, OPT_SYSCALL, 0, 0},
77 #endif
78 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
79 {0, 0, 0, 0, 0, 0, 0}
80 };
81
82 /*
83 * usage
84 */
85 static void usage(FILE *ofp)
86 {
87 fprintf(ofp, "usage: lttng calibrate [-k|-u] [OPTIONS]\n");
88 fprintf(ofp, "\n");
89 fprintf(ofp, "Options:\n");
90 fprintf(ofp, " -h, --help Show this help\n");
91 fprintf(ofp, " --list-options Simple listing of options\n");
92 fprintf(ofp, " -k, --kernel Apply to the kernel tracer\n");
93 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
94 fprintf(ofp, "\n");
95 fprintf(ofp, "Calibrate options:\n");
96 fprintf(ofp, " --function Dynamic function entry/return probe (default)\n");
97 #if 0
98 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
99 fprintf(ofp, " --probe\n");
100 fprintf(ofp, " Dynamic probe.\n");
101 #if 0
102 fprintf(ofp, " --function:entry symbol\n");
103 fprintf(ofp, " Function tracer event\n");
104 #endif
105 fprintf(ofp, " --syscall System call eventl\n");
106 fprintf(ofp, " --marker User-space marker (deprecated)\n");
107 #endif
108 fprintf(ofp, "\n");
109 }
110
111 /*
112 * Calibrate LTTng.
113 *
114 * Returns a CMD_* error.
115 */
116 static int calibrate_lttng(void)
117 {
118 int ret = CMD_SUCCESS;
119 struct lttng_domain dom;
120 struct lttng_calibrate calibrate;
121
122 memset(&dom, 0, sizeof(dom));
123 memset(&calibrate, 0, sizeof(calibrate));
124
125 /* Create lttng domain */
126 if (opt_kernel) {
127 dom.type = LTTNG_DOMAIN_KERNEL;
128 } else if (opt_userspace) {
129 dom.type = LTTNG_DOMAIN_UST;
130 } else {
131 print_missing_domain();
132 ret = CMD_ERROR;
133 goto error;
134 }
135
136 /* TODO: mi support */
137 if (lttng_opt_mi) {
138 ret = -LTTNG_ERR_MI_NOT_IMPLEMENTED;
139 ERR("mi option not supported");
140 goto error;
141 }
142
143 handle = lttng_create_handle(NULL, &dom);
144 if (handle == NULL) {
145 ret = CMD_ERROR;
146 goto error;
147 }
148
149 switch (opt_event_type) {
150 case LTTNG_EVENT_TRACEPOINT:
151 DBG("Calibrating kernel tracepoints");
152 break;
153 case LTTNG_EVENT_PROBE:
154 DBG("Calibrating kernel probes");
155 break;
156 case LTTNG_EVENT_FUNCTION:
157 DBG("Calibrating kernel functions");
158 calibrate.type = LTTNG_CALIBRATE_FUNCTION;
159 ret = lttng_calibrate(handle, &calibrate);
160 if (ret < 0) {
161 ERR("%s", lttng_strerror(ret));
162 goto error;
163 }
164 MSG("%s calibration done", opt_kernel ? "Kernel" : "UST");
165 break;
166 case LTTNG_EVENT_FUNCTION_ENTRY:
167 DBG("Calibrating kernel function entry");
168 break;
169 case LTTNG_EVENT_SYSCALL:
170 DBG("Calibrating kernel syscall");
171 break;
172 default:
173 ret = CMD_UNDEFINED;
174 goto error;
175 }
176
177 ret = CMD_SUCCESS;
178
179 error:
180 lttng_destroy_handle(handle);
181
182 return ret;
183 }
184
185 /*
186 * Calibrate LTTng tracer.
187 *
188 * Returns a CMD_* error.
189 */
190 int cmd_calibrate(int argc, const char **argv)
191 {
192 int opt, ret = CMD_SUCCESS;
193 static poptContext pc;
194
195 pc = poptGetContext(NULL, argc, argv, long_options, 0);
196 poptReadDefaultConfig(pc, 0);
197
198 /* Default event type */
199 opt_event_type = LTTNG_EVENT_FUNCTION;
200
201 while ((opt = poptGetNextOpt(pc)) != -1) {
202 switch (opt) {
203 case OPT_HELP:
204 usage(stdout);
205 goto end;
206 case OPT_TRACEPOINT:
207 ret = CMD_UNDEFINED;
208 goto end;
209 case OPT_MARKER:
210 ret = CMD_UNDEFINED;
211 goto end;
212 case OPT_PROBE:
213 ret = CMD_UNDEFINED;
214 break;
215 case OPT_FUNCTION:
216 opt_event_type = LTTNG_EVENT_FUNCTION;
217 break;
218 case OPT_FUNCTION_ENTRY:
219 ret = CMD_UNDEFINED;
220 goto end;
221 case OPT_SYSCALL:
222 ret = CMD_UNDEFINED;
223 goto end;
224 case OPT_USERSPACE:
225 opt_userspace = 1;
226 break;
227 case OPT_LIST_OPTIONS:
228 list_cmd_options(stdout, long_options);
229 goto end;
230 default:
231 usage(stderr);
232 ret = CMD_UNDEFINED;
233 goto end;
234 }
235 }
236
237 ret = calibrate_lttng();
238
239 end:
240 poptFreeContext(pc);
241 return ret;
242 }
This page took 0.033908 seconds and 4 git commands to generate.