Remove libustctl and libustcomm
[lttng-tools.git] / lttng / commands / enable_events.c
CommitLineData
f3ed775e
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
28#include "cmd.h"
beb8c75a 29#include "conf.h"
f3ed775e
DG
30#include "utils.h"
31
32static char *opt_event_list;
33static int opt_event_type;
34static char *opt_kernel;
35static char *opt_cmd_name;
5440dc42 36static char *opt_session_name;
f3ed775e
DG
37static int opt_pid_all;
38static int opt_userspace;
39static int opt_enable_all;
40static pid_t opt_pid;
0d63dd19 41static char *opt_kprobe;
f3ed775e
DG
42static char *opt_function_symbol;
43static char *opt_channel_name;
44
45enum {
46 OPT_HELP = 1,
47 OPT_USERSPACE,
48 OPT_TRACEPOINT,
49 OPT_MARKER,
50 OPT_KPROBE,
51 OPT_FUNCTION,
52};
53
54static struct poptOption long_options[] = {
55 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
56 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
5440dc42 57 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
f3ed775e
DG
58 {"all-events", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
59 {"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
60 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
61 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, 0, OPT_USERSPACE, 0, 0},
62 {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
63 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
64 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
65 {"marker", 0, POPT_ARG_NONE, 0, OPT_MARKER, 0, 0},
66 {"kprobe", 0, POPT_ARG_STRING, 0, OPT_KPROBE, 0, 0},
67 {"function", 0, POPT_ARG_STRING, 0, OPT_FUNCTION, 0, 0},
68 {0, 0, 0, 0, 0, 0, 0}
69};
70
71/*
72 * usage
73 */
74static void usage(FILE *ofp)
75{
76 fprintf(ofp, "usage: lttng enable-event NAME[,NAME2,...] [options] [event_options]\n");
77 fprintf(ofp, "\n");
78 fprintf(ofp, " -h, --help Show this help\n");
5440dc42 79 fprintf(ofp, " -s, --session Apply on session name\n");
f3ed775e
DG
80 fprintf(ofp, " -c, --channel Apply on this channel\n");
81 fprintf(ofp, " -a, --all-events Enable all tracepoints\n");
82 fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
83 fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
84 fprintf(ofp, " --all If -u, apply on all traceable apps\n");
85 fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
86 fprintf(ofp, "\n");
87 fprintf(ofp, "Event options:\n");
88 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
0d63dd19
DG
89 fprintf(ofp, " --kprobe [addr | symbol+offset]\n");
90 fprintf(ofp, " Kernel Kprobe. (addr or offset can be base 8,10 and 16)\n");
f3ed775e
DG
91 fprintf(ofp, " --function SYMBOL Function tracer event\n");
92 fprintf(ofp, " --marker User-space marker (deprecated)\n");
93 fprintf(ofp, "\n");
94}
95
0d63dd19
DG
96/*
97 * parse_kprobe_addr
98 *
99 * Parse kprobe options.
100 */
101static int parse_kprobe_opts(struct lttng_event *ev, char *opt)
102{
103 int ret;
104 uint64_t hex;
105 char name[LTTNG_SYMBOL_NAME_LEN];
106
107 if (opt == NULL) {
108 ret = -1;
109 goto error;
110 }
111
112 /* Check for symbol+offset */
113 ret = sscanf(opt, "%[^'+']+%li", name, &hex);
114 if (ret == 2) {
115 strncpy(ev->attr.kprobe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
116 DBG("kprobe symbol %s", ev->attr.kprobe.symbol_name);
117 if (hex == 0) {
118 ERR("Invalid kprobe offset %lu", hex);
119 ret = -1;
120 goto error;
121 }
122 ev->attr.kprobe.offset = hex;
123 DBG("kprobe offset %lu", ev->attr.kprobe.offset);
124 goto error;
125 }
126
127 /* Check for address */
128 ret = sscanf(opt, "%li", &hex);
129 if (ret > 0) {
130 if (hex == 0) {
131 ERR("Invalid kprobe address %lu", hex);
132 ret = -1;
133 goto error;
134 }
135 ev->attr.kprobe.addr = hex;
136 DBG("kprobe addr %lu", ev->attr.kprobe.addr);
137 goto error;
138 }
139
140 /* No match */
141 ret = -1;
142
143error:
144 return ret;
145}
146
f3ed775e
DG
147/*
148 * enable_events
149 *
150 * Enabling event using the lttng API.
151 */
152static int enable_events(void)
153{
154 int err, ret = CMD_SUCCESS;
b73d0b29 155 char *event_name, *channel_name = NULL;
f3ed775e
DG
156 struct lttng_event ev;
157
5440dc42 158 if (set_session_name(opt_session_name) < 0) {
f3ed775e
DG
159 ret = CMD_ERROR;
160 goto error;
161 }
162
163 if (opt_channel_name == NULL) {
164 err = asprintf(&channel_name, DEFAULT_CHANNEL_NAME);
165 if (err < 0) {
166 ret = CMD_FATAL;
167 goto error;
168 }
169 } else {
170 channel_name = opt_channel_name;
171 }
172
173 if (opt_enable_all) {
174 if (opt_kernel) {
175 ret = lttng_kernel_enable_event(NULL, channel_name);
176 goto error;
177 }
178
179 /* TODO: User-space tracer */
180 }
181
182 /* Strip event list */
183 event_name = strtok(opt_event_list, ",");
184 while (event_name != NULL) {
185 /* Kernel tracer action */
186 if (opt_kernel) {
187 DBG("Enabling kernel event %s for channel %s",
188 event_name, channel_name);
189 /* Copy name and type of the event */
190 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
191 ev.type = opt_event_type;
192
193 switch (opt_event_type) {
194 case LTTNG_EVENT_TRACEPOINTS:
195 ret = lttng_kernel_enable_event(&ev, channel_name);
ec188088
DG
196 if (ret < 0) {
197 ERR("Unable to find event %s", ev.name);
198 }
f3ed775e
DG
199 break;
200 case LTTNG_EVENT_KPROBES:
0d63dd19
DG
201 ret = parse_kprobe_opts(&ev, opt_kprobe);
202 if (ret < 0) {
203 ERR("Unable to parse kprobe options");
204 ret = 0;
205 goto error;
206 }
207
f3ed775e
DG
208 ret = lttng_kernel_enable_event(&ev, channel_name);
209 break;
210 case LTTNG_EVENT_FUNCTION:
211 strncpy(ev.attr.ftrace.symbol_name, opt_function_symbol, LTTNG_SYMBOL_NAME_LEN);
212 ret = lttng_kernel_enable_event(&ev, channel_name);
213 break;
214 default:
215 ret = CMD_NOT_IMPLEMENTED;
216 goto error;
217 }
218
219 if (ret > 0) {
220 MSG("Kernel event %s created in channel %s", event_name, channel_name);
221 }
222 } else if (opt_userspace) { /* User-space tracer action */
223 /*
224 * TODO: Waiting on lttng UST 2.0
225 */
226 if (opt_pid_all) {
227 } else if (opt_pid != 0) {
228 }
229 ret = CMD_NOT_IMPLEMENTED;
230 goto error;
231 } else {
232 ERR("Please specify a tracer (kernel or user-space)");
233 goto error;
234 }
235
236 /* Next event */
237 event_name = strtok(NULL, ",");
238 }
239
240error:
b73d0b29
MD
241 if (opt_channel_name == NULL) {
242 free(channel_name);
243 }
f3ed775e
DG
244 return ret;
245}
246
247/*
248 * cmd_enable_events
249 *
250 * Add event to trace session
251 */
252int cmd_enable_events(int argc, const char **argv)
253{
254 int opt, ret;
255 static poptContext pc;
256
257 pc = poptGetContext(NULL, argc, argv, long_options, 0);
258 poptReadDefaultConfig(pc, 0);
259
260 /* Default event type */
261 opt_event_type = LTTNG_KERNEL_TRACEPOINTS;
262
263 while ((opt = poptGetNextOpt(pc)) != -1) {
264 switch (opt) {
265 case OPT_HELP:
266 usage(stderr);
267 ret = CMD_SUCCESS;
268 goto end;
269 case OPT_USERSPACE:
270 opt_userspace = 1;
271 opt_cmd_name = poptGetOptArg(pc);
272 break;
273 case OPT_TRACEPOINT:
274 opt_event_type = LTTNG_EVENT_TRACEPOINTS;
275 break;
276 case OPT_MARKER:
277 ret = CMD_NOT_IMPLEMENTED;
278 goto end;
279 case OPT_KPROBE:
280 opt_event_type = LTTNG_EVENT_KPROBES;
0d63dd19 281 opt_kprobe = poptGetOptArg(pc);
f3ed775e
DG
282 break;
283 case OPT_FUNCTION:
284 opt_event_type = LTTNG_EVENT_FUNCTION;
285 opt_function_symbol = poptGetOptArg(pc);
286 break;
287 default:
288 usage(stderr);
289 ret = CMD_UNDEFINED;
290 goto end;
291 }
292 }
293
294 opt_event_list = (char*) poptGetArg(pc);
295 if (opt_event_list == NULL && opt_enable_all == 0) {
296 ERR("Missing event name(s).\n");
297 usage(stderr);
298 ret = CMD_SUCCESS;
299 goto end;
300 }
301
302 ret = enable_events();
303
304end:
305 return ret;
306}
This page took 0.03877 seconds and 4 git commands to generate.