2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
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.
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.
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.
24 #include <sys/types.h>
28 #include "../command.h"
30 #include <src/common/sessiond-comm/sessiond-comm.h>
32 static char *opt_channels
;
33 static int opt_kernel
;
34 static char *opt_session_name
;
35 static int opt_userspace
;
36 static struct lttng_channel chan
;
37 static char *opt_output
;
38 static int opt_buffer_uid
;
39 static int opt_buffer_pid
;
40 static int opt_buffer_global
;
56 static struct lttng_handle
*handle
;
58 const char *output_mmap
= "mmap";
59 const char *output_splice
= "splice";
61 static struct poptOption long_options
[] = {
62 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
63 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
64 {"session", 's', POPT_ARG_STRING
, &opt_session_name
, 0, 0, 0},
65 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
66 {"userspace", 'u', POPT_ARG_NONE
, 0, OPT_USERSPACE
, 0, 0},
67 {"discard", 0, POPT_ARG_NONE
, 0, OPT_DISCARD
, 0, 0},
68 {"overwrite", 0, POPT_ARG_NONE
, 0, OPT_OVERWRITE
, 0, 0},
69 {"subbuf-size", 0, POPT_ARG_DOUBLE
, 0, OPT_SUBBUF_SIZE
, 0, 0},
70 {"num-subbuf", 0, POPT_ARG_INT
, 0, OPT_NUM_SUBBUF
, 0, 0},
71 {"switch-timer", 0, POPT_ARG_INT
, 0, OPT_SWITCH_TIMER
, 0, 0},
72 {"read-timer", 0, POPT_ARG_INT
, 0, OPT_READ_TIMER
, 0, 0},
73 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
74 {"output", 0, POPT_ARG_STRING
, &opt_output
, 0, 0, 0},
75 {"buffers-uid", 0, POPT_ARG_VAL
, &opt_buffer_uid
, 1, 0, 0},
76 {"buffers-pid", 0, POPT_ARG_VAL
, &opt_buffer_pid
, 1, 0, 0},
77 {"buffers-global", 0, POPT_ARG_VAL
, &opt_buffer_global
, 1, 0, 0},
78 {"tracefile-size", 'C', POPT_ARG_INT
, 0, OPT_TRACEFILE_SIZE
, 0, 0},
79 {"tracefile-count", 'W', POPT_ARG_INT
, 0, OPT_TRACEFILE_COUNT
, 0, 0},
86 static void usage(FILE *ofp
)
88 fprintf(ofp
, "usage: lttng enable-channel NAME[,NAME2,...] [-u|-k] [OPTIONS]\n");
90 fprintf(ofp
, "Options:\n");
91 fprintf(ofp
, " -h, --help Show this help\n");
92 fprintf(ofp
, " --list-options Simple listing of options\n");
93 fprintf(ofp
, " -s, --session NAME Apply to session name\n");
94 fprintf(ofp
, " -k, --kernel Apply to the kernel tracer\n");
95 fprintf(ofp
, " -u, --userspace Apply to the user-space tracer\n");
97 fprintf(ofp
, "Channel options:\n");
98 fprintf(ofp
, " --discard Discard event when buffers are full%s\n",
99 DEFAULT_CHANNEL_OVERWRITE
? "" : " (default)");
100 fprintf(ofp
, " --overwrite Flight recorder mode%s\n",
101 DEFAULT_CHANNEL_OVERWRITE
? " (default)" : "");
102 fprintf(ofp
, " --subbuf-size SIZE Subbuffer size in bytes\n");
103 fprintf(ofp
, " (default: %zu, kernel default: %zu)\n",
104 default_get_channel_subbuf_size(),
105 default_get_kernel_channel_subbuf_size());
106 fprintf(ofp
, " Needs to be a power of 2 for\n");
107 fprintf(ofp
, " kernel and ust tracers\n");
108 fprintf(ofp
, " --num-subbuf NUM Number of subbufers\n");
109 fprintf(ofp
, " (default: %u)\n",
110 DEFAULT_CHANNEL_SUBBUF_NUM
);
111 fprintf(ofp
, " Needs to be a power of 2 for\n");
112 fprintf(ofp
, " kernel and ust tracers\n");
113 fprintf(ofp
, " --switch-timer USEC Switch timer interval in usec (default: %u)\n",
114 DEFAULT_CHANNEL_SWITCH_TIMER
);
115 fprintf(ofp
, " --read-timer USEC Read timer interval in usec (UST default: %u, kernel default: %u)\n",
116 DEFAULT_UST_CHANNEL_READ_TIMER
, DEFAULT_KERNEL_CHANNEL_READ_TIMER
);
117 fprintf(ofp
, " --output TYPE Channel output type (Values: %s, %s)\n",
118 output_mmap
, output_splice
);
119 fprintf(ofp
, " --buffers-uid Use per UID buffer (-u only)\n");
120 fprintf(ofp
, " --buffers-pid Use per PID buffer (-u only)\n");
121 fprintf(ofp
, " --buffers-global Use shared buffer for the whole system (-k only)\n");
122 fprintf(ofp
, " -C, --tracefile-size SIZE\n");
123 fprintf(ofp
, " Maximum size of each tracefile within a stream (in bytes).\n");
124 fprintf(ofp
, " -W, --tracefile-count COUNT\n");
125 fprintf(ofp
, " Used in conjunction with -C option, this will limit the number\n");
126 fprintf(ofp
, " of files created to the specified count.\n");
131 * Set default attributes depending on those already defined from the command
134 static void set_default_attr(struct lttng_domain
*dom
)
136 struct lttng_channel_attr default_attr
;
139 lttng_channel_set_default_attr(dom
, &default_attr
);
141 if (chan
.attr
.overwrite
== -1) {
142 chan
.attr
.overwrite
= default_attr
.overwrite
;
144 if (chan
.attr
.subbuf_size
== -1) {
145 chan
.attr
.subbuf_size
= default_attr
.subbuf_size
;
147 if (chan
.attr
.num_subbuf
== -1) {
148 chan
.attr
.num_subbuf
= default_attr
.num_subbuf
;
150 if (chan
.attr
.switch_timer_interval
== -1) {
151 chan
.attr
.switch_timer_interval
= default_attr
.switch_timer_interval
;
153 if (chan
.attr
.read_timer_interval
== -1) {
154 chan
.attr
.read_timer_interval
= default_attr
.read_timer_interval
;
156 if (chan
.attr
.output
== -1) {
157 chan
.attr
.output
= default_attr
.output
;
159 if (chan
.attr
.tracefile_count
== -1) {
160 chan
.attr
.tracefile_count
= default_attr
.tracefile_count
;
162 if (chan
.attr
.tracefile_size
== -1) {
163 chan
.attr
.tracefile_size
= default_attr
.tracefile_size
;
168 * Adding channel using the lttng API.
170 static int enable_channel(char *session_name
)
172 int ret
= CMD_SUCCESS
, warn
= 0;
174 struct lttng_domain dom
;
176 memset(&dom
, 0, sizeof(dom
));
178 /* Create lttng domain */
180 dom
.type
= LTTNG_DOMAIN_KERNEL
;
181 dom
.buf_type
= LTTNG_BUFFER_GLOBAL
;
182 if (opt_buffer_uid
|| opt_buffer_pid
) {
183 ERR("Buffer type not supported for domain -k");
187 } else if (opt_userspace
) {
188 dom
.type
= LTTNG_DOMAIN_UST
;
189 if (opt_buffer_uid
) {
190 dom
.buf_type
= LTTNG_BUFFER_PER_UID
;
192 if (opt_buffer_global
) {
193 ERR("Buffer type not supported for domain -u");
197 dom
.buf_type
= LTTNG_BUFFER_PER_PID
;
200 ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
205 set_default_attr(&dom
);
207 if ((chan
.attr
.tracefile_size
> 0) &&
208 (chan
.attr
.tracefile_size
< chan
.attr
.subbuf_size
)) {
209 ERR("Tracefile_size must be greater than or equal to subbuf_size "
210 "(%" PRIu64
" < %" PRIu64
")",
211 chan
.attr
.tracefile_size
, chan
.attr
.subbuf_size
);
216 /* Setting channel output */
218 if (!strncmp(output_mmap
, opt_output
, strlen(output_mmap
))) {
219 chan
.attr
.output
= LTTNG_EVENT_MMAP
;
220 } else if (!strncmp(output_splice
, opt_output
, strlen(output_splice
))) {
221 chan
.attr
.output
= LTTNG_EVENT_SPLICE
;
223 ERR("Unknown output type %s. Possible values are: %s, %s\n",
224 opt_output
, output_mmap
, output_splice
);
231 handle
= lttng_create_handle(session_name
, &dom
);
232 if (handle
== NULL
) {
237 /* Strip channel list (format: chan1,chan2,...) */
238 channel_name
= strtok(opt_channels
, ",");
239 while (channel_name
!= NULL
) {
240 /* Copy channel name and normalize it */
241 strncpy(chan
.name
, channel_name
, NAME_MAX
);
242 chan
.name
[NAME_MAX
- 1] = '\0';
244 DBG("Enabling channel %s", channel_name
);
246 ret
= lttng_enable_channel(handle
, &chan
);
249 case LTTNG_ERR_KERN_CHAN_EXIST
:
250 case LTTNG_ERR_UST_CHAN_EXIST
:
251 WARN("Channel %s: %s (session %s)", channel_name
,
252 lttng_strerror(ret
), session_name
);
255 ERR("Channel %s: %s (session %s)", channel_name
,
256 lttng_strerror(ret
), session_name
);
261 MSG("%s channel %s enabled for session %s",
262 opt_kernel
? "Kernel" : "UST", channel_name
,
267 channel_name
= strtok(NULL
, ",");
277 lttng_destroy_handle(handle
);
283 * Default value for channel configuration.
285 static void init_channel_config(void)
288 * Put -1 everywhere so we can identify those set by the command line and
289 * those needed to be set by the default values.
291 memset(&chan
.attr
, -1, sizeof(chan
.attr
));
295 * Add channel to trace session
297 int cmd_enable_channels(int argc
, const char **argv
)
299 int opt
, ret
= CMD_SUCCESS
;
300 static poptContext pc
;
301 char *session_name
= NULL
;
303 init_channel_config();
305 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
306 poptReadDefaultConfig(pc
, 0);
308 while ((opt
= poptGetNextOpt(pc
)) != -1) {
314 chan
.attr
.overwrite
= 0;
315 DBG("Channel set to discard");
318 chan
.attr
.overwrite
= 1;
319 DBG("Channel set to overwrite");
321 case OPT_SUBBUF_SIZE
:
322 /* TODO Replace atol with strtol and check for errors */
323 chan
.attr
.subbuf_size
= atol(poptGetOptArg(pc
));
324 DBG("Channel subbuf size set to %" PRIu64
, chan
.attr
.subbuf_size
);
327 /* TODO Replace atoi with strtol and check for errors */
328 chan
.attr
.num_subbuf
= atoi(poptGetOptArg(pc
));
329 DBG("Channel subbuf num set to %" PRIu64
, chan
.attr
.num_subbuf
);
331 case OPT_SWITCH_TIMER
:
332 /* TODO Replace atoi with strtol and check for errors */
333 chan
.attr
.switch_timer_interval
= atoi(poptGetOptArg(pc
));
334 DBG("Channel switch timer interval set to %d", chan
.attr
.switch_timer_interval
);
337 /* TODO Replace atoi with strtol and check for errors */
338 chan
.attr
.read_timer_interval
= atoi(poptGetOptArg(pc
));
339 DBG("Channel read timer interval set to %d", chan
.attr
.read_timer_interval
);
344 case OPT_TRACEFILE_SIZE
:
345 chan
.attr
.tracefile_size
= atoll(poptGetOptArg(pc
));
346 DBG("Maximum tracefile size set to %" PRIu64
,
347 chan
.attr
.tracefile_size
);
349 case OPT_TRACEFILE_COUNT
:
350 chan
.attr
.tracefile_count
= atoll(poptGetOptArg(pc
));
351 DBG("Maximum tracefile count set to %" PRIu64
,
352 chan
.attr
.tracefile_count
);
354 case OPT_LIST_OPTIONS
:
355 list_cmd_options(stdout
, long_options
);
364 opt_channels
= (char*) poptGetArg(pc
);
365 if (opt_channels
== NULL
) {
366 ERR("Missing channel name.\n");
372 if (!opt_session_name
) {
373 session_name
= get_session_name();
374 if (session_name
== NULL
) {
379 session_name
= opt_session_name
;
382 ret
= enable_channel(session_name
);
385 if (!opt_session_name
&& session_name
) {