Change --jul-port-tcp and jul.port to use agent namespace
[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 #include <assert.h>
30
31 #include <common/mi-lttng.h>
32
33 #include "../command.h"
34
35 static int opt_event_type;
36 static char *opt_kernel;
37 static int opt_userspace;
38 #if 0
39 /* Not implemented yet */
40 static char *opt_cmd_name;
41 static pid_t opt_pid;
42 #endif
43
44 enum {
45 OPT_HELP = 1,
46 OPT_TRACEPOINT,
47 OPT_MARKER,
48 OPT_PROBE,
49 OPT_FUNCTION,
50 OPT_FUNCTION_ENTRY,
51 OPT_SYSCALL,
52 OPT_USERSPACE,
53 OPT_LIST_OPTIONS,
54 };
55
56 static struct lttng_handle *handle;
57 static struct mi_writer *writer;
58
59 static struct poptOption long_options[] = {
60 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
61 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
62 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
63 #if 0
64 /* Not implemented yet */
65 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
66 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
67 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
68 {"marker", 0, POPT_ARG_NONE, 0, OPT_MARKER, 0, 0},
69 {"probe", 0, POPT_ARG_NONE, 0, OPT_PROBE, 0, 0},
70 #else
71 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
72 {"function", 0, POPT_ARG_NONE, 0, OPT_FUNCTION, 0, 0},
73 #endif
74 #if 0
75 /*
76 * Removed from options to discourage its use. Not in kernel
77 * tracer anymore.
78 */
79 {"function:entry", 0, POPT_ARG_NONE, 0, OPT_FUNCTION_ENTRY, 0, 0},
80 {"syscall", 0, POPT_ARG_NONE, 0, OPT_SYSCALL, 0, 0},
81 #endif
82 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
83 {0, 0, 0, 0, 0, 0, 0}
84 };
85
86 /*
87 * usage
88 */
89 static void usage(FILE *ofp)
90 {
91 fprintf(ofp, "usage: lttng calibrate [-k|-u] [OPTIONS]\n");
92 fprintf(ofp, "\n");
93 fprintf(ofp, "Options:\n");
94 fprintf(ofp, " -h, --help Show this help\n");
95 fprintf(ofp, " --list-options Simple listing of options\n");
96 fprintf(ofp, " -k, --kernel Apply to the kernel tracer\n");
97 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
98 fprintf(ofp, "\n");
99 fprintf(ofp, "Calibrate options:\n");
100 fprintf(ofp, " --function Dynamic function entry/return probe (default)\n");
101 #if 0
102 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
103 fprintf(ofp, " --probe\n");
104 fprintf(ofp, " Dynamic probe.\n");
105 #if 0
106 fprintf(ofp, " --function:entry symbol\n");
107 fprintf(ofp, " Function tracer event\n");
108 #endif
109 fprintf(ofp, " --syscall System call eventl\n");
110 fprintf(ofp, " --marker User-space marker (deprecated)\n");
111 #endif
112 fprintf(ofp, "\n");
113 }
114
115 /*
116 * Calibrate LTTng.
117 *
118 * Returns a CMD_* error.
119 */
120 static int calibrate_lttng(void)
121 {
122 int ret = CMD_SUCCESS;
123 struct lttng_domain dom;
124 struct lttng_calibrate calibrate;
125
126 memset(&dom, 0, sizeof(dom));
127 memset(&calibrate, 0, sizeof(calibrate));
128
129 /* Create lttng domain */
130 if (opt_kernel) {
131 dom.type = LTTNG_DOMAIN_KERNEL;
132 } else if (opt_userspace) {
133 dom.type = LTTNG_DOMAIN_UST;
134 } else {
135 print_missing_domain();
136 ret = CMD_ERROR;
137 goto error;
138 }
139
140 handle = lttng_create_handle(NULL, &dom);
141 if (handle == NULL) {
142 ret = CMD_ERROR;
143 goto error;
144 }
145
146 switch (opt_event_type) {
147 case LTTNG_EVENT_TRACEPOINT:
148 DBG("Calibrating kernel tracepoints");
149 break;
150 case LTTNG_EVENT_PROBE:
151 DBG("Calibrating kernel probes");
152 break;
153 case LTTNG_EVENT_FUNCTION:
154 DBG("Calibrating kernel functions");
155 calibrate.type = LTTNG_CALIBRATE_FUNCTION;
156 ret = lttng_calibrate(handle, &calibrate);
157 if (ret < 0) {
158 ERR("%s", lttng_strerror(ret));
159 goto error;
160 }
161 MSG("%s calibration done", opt_kernel ? "Kernel" : "UST");
162 break;
163 case LTTNG_EVENT_FUNCTION_ENTRY:
164 DBG("Calibrating kernel function entry");
165 break;
166 case LTTNG_EVENT_SYSCALL:
167 DBG("Calibrating kernel syscall");
168 break;
169 default:
170 ret = CMD_UNDEFINED;
171 goto error;
172 }
173
174 if (lttng_opt_mi) {
175 assert(writer);
176 ret = mi_lttng_calibrate(writer, &calibrate);
177 if (ret) {
178 ret = CMD_ERROR;
179 goto error;
180 }
181 }
182
183 error:
184 lttng_destroy_handle(handle);
185
186 return ret;
187 }
188
189 /*
190 * Calibrate LTTng tracer.
191 *
192 * Returns a CMD_* error.
193 */
194 int cmd_calibrate(int argc, const char **argv)
195 {
196 int opt, ret = CMD_SUCCESS, command_ret = CMD_SUCCESS, success = 1;
197 static poptContext pc;
198
199 pc = poptGetContext(NULL, argc, argv, long_options, 0);
200 poptReadDefaultConfig(pc, 0);
201
202 /* Default event type */
203 opt_event_type = LTTNG_EVENT_FUNCTION;
204
205 while ((opt = poptGetNextOpt(pc)) != -1) {
206 switch (opt) {
207 case OPT_HELP:
208 usage(stdout);
209 goto end;
210 case OPT_TRACEPOINT:
211 ret = CMD_UNDEFINED;
212 goto end;
213 case OPT_MARKER:
214 ret = CMD_UNDEFINED;
215 goto end;
216 case OPT_PROBE:
217 ret = CMD_UNDEFINED;
218 break;
219 case OPT_FUNCTION:
220 opt_event_type = LTTNG_EVENT_FUNCTION;
221 break;
222 case OPT_FUNCTION_ENTRY:
223 ret = CMD_UNDEFINED;
224 goto end;
225 case OPT_SYSCALL:
226 ret = CMD_UNDEFINED;
227 goto end;
228 case OPT_USERSPACE:
229 opt_userspace = 1;
230 break;
231 case OPT_LIST_OPTIONS:
232 list_cmd_options(stdout, long_options);
233 goto end;
234 default:
235 usage(stderr);
236 ret = CMD_UNDEFINED;
237 goto end;
238 }
239 }
240
241 /* Mi check */
242 if (lttng_opt_mi) {
243 writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi);
244 if (!writer) {
245 ret = -LTTNG_ERR_NOMEM;
246 goto end;
247 }
248
249 /* Open command element */
250 ret = mi_lttng_writer_command_open(writer,
251 mi_lttng_element_command_calibrate);
252 if (ret) {
253 ret = CMD_ERROR;
254 goto end;
255 }
256
257 /* Open output element */
258 ret = mi_lttng_writer_open_element(writer,
259 mi_lttng_element_command_output);
260 if (ret) {
261 ret = CMD_ERROR;
262 goto end;
263 }
264 }
265
266 command_ret = calibrate_lttng();
267 if (command_ret) {
268 success = 0;
269 }
270
271 /* Mi closing */
272 if (lttng_opt_mi) {
273 /* Close output element */
274 ret = mi_lttng_writer_close_element(writer);
275 if (ret) {
276 ret = CMD_ERROR;
277 goto end;
278 }
279
280 /* Success ? */
281 ret = mi_lttng_writer_write_element_bool(writer,
282 mi_lttng_element_command_success, success);
283 if (ret) {
284 ret = CMD_ERROR;
285 goto end;
286 }
287
288 /* Command element close */
289 ret = mi_lttng_writer_command_close(writer);
290 if (ret) {
291 ret = CMD_ERROR;
292 goto end;
293 }
294 }
295
296 end:
297 /* Mi clean-up */
298 if (writer && mi_lttng_writer_destroy(writer)) {
299 /* Preserve original error code */
300 ret = ret ? ret : -LTTNG_ERR_MI_IO_FAIL;
301 }
302
303 /* Overwrite ret if an error occurred during calibrate_lttng() */
304 ret = command_ret ? command_ret : ret;
305
306 poptFreeContext(pc);
307 return ret;
308 }
This page took 0.034961 seconds and 4 git commands to generate.