Add lttng-error.h containing every API err. code
[lttng-tools.git] / src / bin / lttng / commands / enable_channels.c
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#define _GNU_SOURCE
19#include <popt.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <unistd.h>
26#include <inttypes.h>
27
28#include "../command.h"
29
30#include <src/common/sessiond-comm/sessiond-comm.h>
31
32static char *opt_channels;
33static int opt_kernel;
34static char *opt_session_name;
35static int opt_userspace;
36static struct lttng_channel chan;
37#if 0
38/* Not implemented yet */
39static char *opt_cmd_name;
40static pid_t opt_pid;
41#endif
42
43enum {
44 OPT_HELP = 1,
45 OPT_DISCARD,
46 OPT_OVERWRITE,
47 OPT_SUBBUF_SIZE,
48 OPT_NUM_SUBBUF,
49 OPT_SWITCH_TIMER,
50 OPT_READ_TIMER,
51 OPT_USERSPACE,
52 OPT_LIST_OPTIONS,
53};
54
55static struct lttng_handle *handle;
56
57static struct poptOption long_options[] = {
58 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
59 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
60 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
61 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
62#if 0
63 /* Not implemented yet */
64 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
65 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
66#else
67 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
68#endif
69 {"discard", 0, POPT_ARG_NONE, 0, OPT_DISCARD, 0, 0},
70 {"overwrite", 0, POPT_ARG_NONE, 0, OPT_OVERWRITE, 0, 0},
71 {"subbuf-size", 0, POPT_ARG_DOUBLE, 0, OPT_SUBBUF_SIZE, 0, 0},
72 {"num-subbuf", 0, POPT_ARG_INT, 0, OPT_NUM_SUBBUF, 0, 0},
73 {"switch-timer", 0, POPT_ARG_INT, 0, OPT_SWITCH_TIMER, 0, 0},
74 {"read-timer", 0, POPT_ARG_INT, 0, OPT_READ_TIMER, 0, 0},
75 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
76 {0, 0, 0, 0, 0, 0, 0}
77};
78
79/*
80 * usage
81 */
82static void usage(FILE *ofp)
83{
84 fprintf(ofp, "usage: lttng enable-channel NAME[,NAME2,...] [-u|-k] [OPTIONS]\n");
85 fprintf(ofp, "\n");
86 fprintf(ofp, "Options:\n");
87 fprintf(ofp, " -h, --help Show this help\n");
88 fprintf(ofp, " --list-options Simple listing of options\n");
89 fprintf(ofp, " -s, --session NAME Apply to session name\n");
90 fprintf(ofp, " -k, --kernel Apply to the kernel tracer\n");
91 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
92 fprintf(ofp, "\n");
93 fprintf(ofp, "Channel options:\n");
94 fprintf(ofp, " --discard Discard event when buffers are full%s\n",
95 DEFAULT_CHANNEL_OVERWRITE ? "" : " (default)");
96 fprintf(ofp, " --overwrite Flight recorder mode%s\n",
97 DEFAULT_CHANNEL_OVERWRITE ? " (default)" : "");
98 fprintf(ofp, " --subbuf-size SIZE Subbuffer size in bytes\n");
99 fprintf(ofp, " (default: %u, kernel default: %u)\n",
100 DEFAULT_CHANNEL_SUBBUF_SIZE,
101 DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE);
102 fprintf(ofp, " Needs to be a power of 2 for\n");
103 fprintf(ofp, " kernel and ust tracers\n");
104 fprintf(ofp, " --num-subbuf NUM Number of subbufers\n");
105 fprintf(ofp, " (default: %u)\n",
106 DEFAULT_CHANNEL_SUBBUF_NUM);
107 fprintf(ofp, " Needs to be a power of 2 for\n");
108 fprintf(ofp, " kernel and ust tracers\n");
109 fprintf(ofp, " --switch-timer USEC Switch timer interval in usec (default: %u)\n",
110 DEFAULT_CHANNEL_SWITCH_TIMER);
111 fprintf(ofp, " --read-timer USEC Read timer interval in usec (default: %u)\n",
112 DEFAULT_CHANNEL_READ_TIMER);
113 fprintf(ofp, "\n");
114}
115
116/*
117 * Set default attributes depending on those already defined from the command
118 * line.
119 */
120static void set_default_attr(struct lttng_domain *dom)
121{
122 struct lttng_channel_attr default_attr;
123
124 /* Set attributes */
125 lttng_channel_set_default_attr(dom, &default_attr);
126
127 if (chan.attr.overwrite == -1) {
128 chan.attr.overwrite = default_attr.overwrite;
129 }
130 if (chan.attr.subbuf_size == -1) {
131 chan.attr.subbuf_size = default_attr.subbuf_size;
132 }
133 if (chan.attr.num_subbuf == -1) {
134 chan.attr.num_subbuf = default_attr.num_subbuf;
135 }
136 if (chan.attr.switch_timer_interval == -1) {
137 chan.attr.switch_timer_interval = default_attr.switch_timer_interval;
138 }
139 if (chan.attr.read_timer_interval == -1) {
140 chan.attr.read_timer_interval = default_attr.read_timer_interval;
141 }
142 if (chan.attr.output == -1) {
143 chan.attr.output = default_attr.output;
144 }
145}
146
147/*
148 * Adding channel using the lttng API.
149 */
150static int enable_channel(char *session_name)
151{
152 int ret = CMD_SUCCESS, warn = 0;
153 char *channel_name;
154 struct lttng_domain dom;
155
156 memset(&dom, 0, sizeof(dom));
157
158 /* Create lttng domain */
159 if (opt_kernel) {
160 dom.type = LTTNG_DOMAIN_KERNEL;
161 } else if (opt_userspace) {
162 dom.type = LTTNG_DOMAIN_UST;
163 } else {
164 ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
165 ret = CMD_ERROR;
166 goto error;
167 }
168
169 set_default_attr(&dom);
170
171 handle = lttng_create_handle(session_name, &dom);
172 if (handle == NULL) {
173 ret = -1;
174 goto error;
175 }
176
177 /* Strip channel list (format: chan1,chan2,...) */
178 channel_name = strtok(opt_channels, ",");
179 while (channel_name != NULL) {
180 /* Copy channel name and normalize it */
181 strncpy(chan.name, channel_name, NAME_MAX);
182 chan.name[NAME_MAX - 1] = '\0';
183
184 DBG("Enabling channel %s", channel_name);
185
186 ret = lttng_enable_channel(handle, &chan);
187 if (ret < 0) {
188 switch (-ret) {
189 case LTTNG_ERR_KERN_CHAN_EXIST:
190 case LTTNG_ERR_UST_CHAN_EXIST:
191 WARN("Channel %s: %s (session %s", channel_name,
192 lttng_strerror(ret), session_name);
193 goto error;
194 default:
195 ERR("Channel %s: %s (session %s)", channel_name,
196 lttng_strerror(ret), session_name);
197 break;
198 }
199 warn = 1;
200 } else {
201 MSG("%s channel %s enabled for session %s",
202 opt_kernel ? "Kernel" : "UST", channel_name,
203 session_name);
204 }
205
206 /* Next event */
207 channel_name = strtok(NULL, ",");
208 }
209
210 ret = CMD_SUCCESS;
211
212error:
213 if (warn) {
214 ret = CMD_WARNING;
215 }
216
217 lttng_destroy_handle(handle);
218
219 return ret;
220}
221
222/*
223 * Default value for channel configuration.
224 */
225static void init_channel_config(void)
226{
227 /*
228 * Put -1 everywhere so we can identify those set by the command line and
229 * those needed to be set by the default values.
230 */
231 memset(&chan.attr, -1, sizeof(chan.attr));
232}
233
234/*
235 * Add channel to trace session
236 */
237int cmd_enable_channels(int argc, const char **argv)
238{
239 int opt, ret = CMD_SUCCESS;
240 static poptContext pc;
241 char *session_name = NULL;
242
243 init_channel_config();
244
245 pc = poptGetContext(NULL, argc, argv, long_options, 0);
246 poptReadDefaultConfig(pc, 0);
247
248 while ((opt = poptGetNextOpt(pc)) != -1) {
249 switch (opt) {
250 case OPT_HELP:
251 usage(stdout);
252 goto end;
253 case OPT_DISCARD:
254 chan.attr.overwrite = 0;
255 DBG("Channel set to discard");
256 break;
257 case OPT_OVERWRITE:
258 chan.attr.overwrite = 1;
259 DBG("Channel set to overwrite");
260 break;
261 case OPT_SUBBUF_SIZE:
262 /* TODO Replace atol with strtol and check for errors */
263 chan.attr.subbuf_size = atol(poptGetOptArg(pc));
264 DBG("Channel subbuf size set to %" PRIu64, chan.attr.subbuf_size);
265 break;
266 case OPT_NUM_SUBBUF:
267 /* TODO Replace atoi with strtol and check for errors */
268 chan.attr.num_subbuf = atoi(poptGetOptArg(pc));
269 DBG("Channel subbuf num set to %" PRIu64, chan.attr.num_subbuf);
270 break;
271 case OPT_SWITCH_TIMER:
272 /* TODO Replace atoi with strtol and check for errors */
273 chan.attr.switch_timer_interval = atoi(poptGetOptArg(pc));
274 DBG("Channel switch timer interval set to %d", chan.attr.switch_timer_interval);
275 break;
276 case OPT_READ_TIMER:
277 /* TODO Replace atoi with strtol and check for errors */
278 chan.attr.read_timer_interval = atoi(poptGetOptArg(pc));
279 DBG("Channel read timer interval set to %d", chan.attr.read_timer_interval);
280 break;
281 case OPT_USERSPACE:
282 opt_userspace = 1;
283 break;
284 case OPT_LIST_OPTIONS:
285 list_cmd_options(stdout, long_options);
286 goto end;
287 default:
288 usage(stderr);
289 ret = CMD_UNDEFINED;
290 goto end;
291 }
292 }
293
294 opt_channels = (char*) poptGetArg(pc);
295 if (opt_channels == NULL) {
296 ERR("Missing channel name.\n");
297 usage(stderr);
298 ret = CMD_ERROR;
299 goto end;
300 }
301
302 if (!opt_session_name) {
303 session_name = get_session_name();
304 if (session_name == NULL) {
305 ret = CMD_ERROR;
306 goto end;
307 }
308 } else {
309 session_name = opt_session_name;
310 }
311
312 ret = enable_channel(session_name);
313
314end:
315 if (!opt_session_name && session_name) {
316 free(session_name);
317 }
318 poptFreeContext(pc);
319 return ret;
320}
This page took 0.023468 seconds and 4 git commands to generate.