Update and fix UST register and session creation
[lttng-tools.git] / 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
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
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#include <inttypes.h>
28
29#include "../cmd.h"
30#include "../conf.h"
31#include "../utils.h"
32
33static char *opt_channels;
34static char *opt_kernel;
35static char *opt_cmd_name;
36static char *opt_session_name;
37static int opt_pid_all;
38static int opt_userspace;
39static pid_t opt_pid;
40static struct lttng_channel chan;
41
42enum {
43 OPT_HELP = 1,
44 OPT_DISCARD,
45 OPT_OVERWRITE,
46 OPT_SUBBUF_SIZE,
47 OPT_NUM_SUBBUF,
48 OPT_SWITCH_TIMER,
49 OPT_READ_TIMER,
50 OPT_USERSPACE,
51};
52
53static struct lttng_handle *handle;
54
55static struct poptOption long_options[] = {
56 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
57 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
58 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
59 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
60 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, 0, OPT_USERSPACE, 0, 0},
61 {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
62 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
63 {"discard", 0, POPT_ARG_NONE, 0, OPT_DISCARD, 0, 0},
64 {"overwrite", 0, POPT_ARG_NONE, 0, OPT_OVERWRITE, 0, 0},
65 {"subbuf-size", 0, POPT_ARG_DOUBLE, 0, OPT_SUBBUF_SIZE, 0, 0},
66 {"num-subbuf", 0, POPT_ARG_INT, 0, OPT_NUM_SUBBUF, 0, 0},
67 {"switch-timer", 0, POPT_ARG_INT, 0, OPT_SWITCH_TIMER, 0, 0},
68 {"read-timer", 0, POPT_ARG_INT, 0, OPT_READ_TIMER, 0, 0},
69 {0, 0, 0, 0, 0, 0, 0}
70};
71
72/*
73 * usage
74 */
75static void usage(FILE *ofp)
76{
77 fprintf(ofp, "usage: lttng enable-channel NAME[,NAME2,...] [options] [channel_options]\n");
78 fprintf(ofp, "\n");
79 fprintf(ofp, " -h, --help Show this help\n");
80 fprintf(ofp, " -s, --session Apply on session name\n");
81 fprintf(ofp, " -k, --kernel Apply on the kernel tracer\n");
82 fprintf(ofp, " -u, --userspace [CMD] Apply on the user-space tracer\n");
83 fprintf(ofp, " --all If -u, apply on all traceable apps\n");
84 fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
85 fprintf(ofp, "\n");
86 fprintf(ofp, "Channel options:\n");
87 fprintf(ofp, " --discard Discard event when buffers are full%s\n",
88 DEFAULT_CHANNEL_OVERWRITE ? "" : " (default)");
89 fprintf(ofp, " --overwrite Flight recorder mode%s\n",
90 DEFAULT_CHANNEL_OVERWRITE ? " (default)" : "");
91 fprintf(ofp, " --subbuf-size Subbuffer size in bytes\n");
92 fprintf(ofp, " (default: %u, kernel default: %u)\n",
93 DEFAULT_CHANNEL_SUBBUF_SIZE,
94 DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE);
95 fprintf(ofp, " --num-subbuf Number of subbufers\n");
96 fprintf(ofp, " (default: %u, kernel default: %u)\n",
97 DEFAULT_CHANNEL_SUBBUF_NUM,
98 DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM);
99 fprintf(ofp, " --switch-timer Switch timer interval in usec (default: %u)\n",
100 DEFAULT_CHANNEL_SWITCH_TIMER);
101 fprintf(ofp, " --read-timer Read timer interval in usec (default: %u)\n",
102 DEFAULT_CHANNEL_READ_TIMER);
103 fprintf(ofp, "\n");
104}
105
106/*
107 * enable_channel
108 *
109 * Adding channel using the lttng API.
110 */
111static int enable_channel(char *session_name)
112{
113 int ret = CMD_SUCCESS;
114 char *channel_name;
115 struct lttng_domain dom;
116
117 if (opt_kernel) {
118 dom.type = LTTNG_DOMAIN_KERNEL;
119 }
120
121 handle = lttng_create_handle(session_name, &dom);
122 if (handle == NULL) {
123 ret = -1;
124 goto error;
125 }
126
127 /* Strip event list */
128 channel_name = strtok(opt_channels, ",");
129 while (channel_name != NULL) {
130 /* Kernel tracer action */
131 if (opt_kernel) {
132 DBG("Enabling kernel channel %s", channel_name);
133
134 /* Copy channel name and normalize it */
135 strncpy(chan.name, channel_name, NAME_MAX);
136 chan.name[NAME_MAX - 1] = '\0';
137
138 ret = lttng_enable_channel(handle, &chan);
139 if (ret < 0) {
140 goto error;
141 } else {
142 MSG("Kernel channel enabled %s", channel_name);
143 }
144 } else if (opt_userspace) { /* User-space tracer action */
145 /*
146 * TODO: Waiting on lttng UST 2.0
147 */
148 if (opt_pid_all) {
149 } else if (opt_pid != 0) {
150 }
151 ret = CMD_NOT_IMPLEMENTED;
152 goto error;
153 } else {
154 ERR("Please specify a tracer (--kernel or --userspace)");
155 goto error;
156 }
157
158 /* Next event */
159 channel_name = strtok(NULL, ",");
160 }
161
162error:
163 lttng_destroy_handle(handle);
164
165 return ret;
166}
167
168/*
169 * init_channel_config
170 *
171 * Default value for channel configuration.
172 */
173static void init_channel_config(void)
174{
175 if (opt_kernel) {
176 /* kernel default */
177 chan.attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
178 chan.attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
179 chan.attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
180
181 chan.attr.subbuf_size = DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE;
182 chan.attr.num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
183 chan.attr.output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
184 } else {
185 /* default behavior, used by UST. */
186 chan.attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
187 chan.attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
188 chan.attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
189
190 chan.attr.subbuf_size = DEFAULT_CHANNEL_SUBBUF_SIZE;
191 chan.attr.num_subbuf = DEFAULT_CHANNEL_SUBBUF_NUM;
192 chan.attr.output = DEFAULT_CHANNEL_OUTPUT;
193 }
194}
195
196/*
197 * Add channel to trace session
198 */
199int cmd_enable_channels(int argc, const char **argv)
200{
201 int opt, ret;
202 static poptContext pc;
203 char *session_name = NULL;
204
205 init_channel_config();
206
207 pc = poptGetContext(NULL, argc, argv, long_options, 0);
208 poptReadDefaultConfig(pc, 0);
209
210 while ((opt = poptGetNextOpt(pc)) != -1) {
211 switch (opt) {
212 case OPT_HELP:
213 usage(stderr);
214 ret = CMD_SUCCESS;
215 goto end;
216 case OPT_USERSPACE:
217 opt_userspace = 1;
218 opt_cmd_name = poptGetOptArg(pc);
219 break;
220 case OPT_DISCARD:
221 chan.attr.overwrite = 0;
222 DBG("Channel set to discard");
223 break;
224 case OPT_OVERWRITE:
225 chan.attr.overwrite = 1;
226 DBG("Channel set to overwrite");
227 break;
228 case OPT_SUBBUF_SIZE:
229 chan.attr.subbuf_size = atol(poptGetOptArg(pc));
230 DBG("Channel subbuf size set to %" PRIu64, chan.attr.subbuf_size);
231 break;
232 case OPT_NUM_SUBBUF:
233 chan.attr.num_subbuf = atoi(poptGetOptArg(pc));
234 DBG("Channel subbuf num set to %" PRIu64, chan.attr.num_subbuf);
235 break;
236 case OPT_SWITCH_TIMER:
237 chan.attr.switch_timer_interval = atoi(poptGetOptArg(pc));
238 DBG("Channel switch timer interval set to %d", chan.attr.switch_timer_interval);
239 break;
240 case OPT_READ_TIMER:
241 chan.attr.read_timer_interval = atoi(poptGetOptArg(pc));
242 DBG("Channel read timer interval set to %d", chan.attr.read_timer_interval);
243 break;
244 default:
245 usage(stderr);
246 ret = CMD_UNDEFINED;
247 goto end;
248 }
249 }
250
251 opt_channels = (char*) poptGetArg(pc);
252 if (opt_channels == NULL) {
253 ERR("Missing channel name.\n");
254 usage(stderr);
255 ret = CMD_SUCCESS;
256 goto end;
257 }
258
259 if (!opt_session_name) {
260 session_name = get_session_name();
261 if (session_name == NULL) {
262 ret = -1;
263 goto end;
264 }
265 } else {
266 session_name = opt_session_name;
267 }
268
269 ret = enable_channel(session_name);
270
271end:
272 return ret;
273}
This page took 0.023554 seconds and 4 git commands to generate.