Create stream files relative to a stream's current trace chunk
[lttng-tools.git] / src / bin / lttng / commands / rotate.c
1 /*
2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
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 _LGPL_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 #include <ctype.h>
28 #include <assert.h>
29
30 #include <common/sessiond-comm/sessiond-comm.h>
31 #include <common/mi-lttng.h>
32
33 #include "../command.h"
34 #include <lttng/rotation.h>
35 #include <lttng/location.h>
36
37 static char *opt_session_name;
38 static int opt_no_wait;
39 static struct mi_writer *writer;
40
41 #ifdef LTTNG_EMBED_HELP
42 static const char help_msg[] =
43 #include <lttng-rotate.1.h>
44 ;
45 #endif
46
47 enum {
48 OPT_HELP = 1,
49 OPT_LIST_OPTIONS,
50 };
51
52 static struct poptOption long_options[] = {
53 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
54 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
55 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
56 {"no-wait", 'n', POPT_ARG_VAL, &opt_no_wait, 1, 0, 0},
57 {0, 0, 0, 0, 0, 0, 0}
58 };
59
60 static int output_trace_archive_location(
61 const struct lttng_trace_archive_location *location,
62 const char *session_name)
63 {
64 int ret = 0;
65 enum lttng_trace_archive_location_type location_type;
66 enum lttng_trace_archive_location_status status;
67 bool printed_location = false;
68
69 location_type = lttng_trace_archive_location_get_type(location);
70
71 _MSG("Trace chunk archive for session %s is now readable",
72 session_name);
73 switch (location_type) {
74 case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL:
75 {
76 const char *absolute_path;
77
78 status = lttng_trace_archive_location_local_get_absolute_path(
79 location, &absolute_path);
80 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
81 ret = -1;
82 goto end;
83 }
84 MSG(" at %s", absolute_path);
85 printed_location = true;
86 break;
87 }
88 case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY:
89 {
90 uint16_t control_port, data_port;
91 const char *host, *relative_path, *protocol_str;
92 enum lttng_trace_archive_location_relay_protocol_type protocol;
93
94 /* Fetch all relay location parameters. */
95 status = lttng_trace_archive_location_relay_get_protocol_type(
96 location, &protocol);
97 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
98 ret = -1;
99 goto end;
100 }
101
102 status = lttng_trace_archive_location_relay_get_host(
103 location, &host);
104 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
105 ret = -1;
106 goto end;
107 }
108
109 status = lttng_trace_archive_location_relay_get_control_port(
110 location, &control_port);
111 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
112 ret = -1;
113 goto end;
114 }
115
116 status = lttng_trace_archive_location_relay_get_data_port(
117 location, &data_port);
118 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
119 ret = -1;
120 goto end;
121 }
122
123 status = lttng_trace_archive_location_relay_get_relative_path(
124 location, &relative_path);
125 if (status != LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK) {
126 ret = -1;
127 goto end;
128 }
129
130 switch (protocol) {
131 case LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP:
132 protocol_str = "tcp";
133 break;
134 default:
135 protocol_str = "unknown";
136 break;
137 }
138
139 MSG(" on relay %s://%s/%s [control port %" PRIu16 ", data port %"
140 PRIu16 "]", protocol_str, host,
141 relative_path, control_port, data_port);
142 printed_location = true;
143 break;
144 }
145 default:
146 break;
147 }
148 end:
149 if (!printed_location) {
150 MSG(" at an unknown location");
151 }
152 return ret;
153 }
154
155 static int rotate_tracing(char *session_name)
156 {
157 int ret;
158 enum cmd_error_code cmd_ret = CMD_SUCCESS;
159 struct lttng_rotation_handle *handle = NULL;
160 enum lttng_rotation_status rotation_status;
161 enum lttng_rotation_state rotation_state = LTTNG_ROTATION_STATE_ONGOING;
162 const struct lttng_trace_archive_location *location = NULL;
163 bool print_location = true;
164
165 DBG("Rotating the output files of session %s", session_name);
166
167 ret = lttng_rotate_session(session_name, NULL, &handle);
168 if (ret < 0) {
169 switch (-ret) {
170 case LTTNG_ERR_SESSION_NOT_STARTED:
171 WARN("Tracing session %s not started yet", session_name);
172 cmd_ret = CMD_WARNING;
173 goto end;
174 default:
175 ERR("%s", lttng_strerror(ret));
176 goto error;
177 }
178 }
179
180 if (opt_no_wait) {
181 rotation_state = LTTNG_ROTATION_STATE_ONGOING;
182 goto skip_wait;
183 }
184
185 _MSG("Waiting for rotation to complete");
186 ret = fflush(stdout);
187 if (ret) {
188 PERROR("fflush");
189 goto error;
190 }
191
192 do {
193 rotation_status = lttng_rotation_handle_get_state(handle,
194 &rotation_state);
195 if (rotation_status != LTTNG_ROTATION_STATUS_OK) {
196 MSG("");
197 ERR("Failed to query the state of the rotation.");
198 goto error;
199 }
200
201 if (rotation_state == LTTNG_ROTATION_STATE_ONGOING) {
202 ret = usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
203 if (ret) {
204 PERROR("\nusleep");
205 goto error;
206 }
207 _MSG(".");
208
209 ret = fflush(stdout);
210 if (ret) {
211 PERROR("\nfflush");
212 goto error;
213 }
214 }
215 } while (rotation_state == LTTNG_ROTATION_STATE_ONGOING);
216 MSG("");
217
218 skip_wait:
219 switch (rotation_state) {
220 case LTTNG_ROTATION_STATE_COMPLETED:
221 rotation_status = lttng_rotation_handle_get_archive_location(
222 handle, &location);
223 if (rotation_status != LTTNG_ROTATION_STATUS_OK) {
224 ERR("Failed to retrieve the rotation's completed chunk archive location.");
225 cmd_ret = CMD_ERROR;
226 }
227 break;
228 case LTTNG_ROTATION_STATE_EXPIRED:
229 break;
230 case LTTNG_ROTATION_STATE_ERROR:
231 ERR("Failed to retrieve rotation state.");
232 goto error;
233 case LTTNG_ROTATION_STATE_ONGOING:
234 MSG("Rotation ongoing for session %s", session_name);
235 print_location = false;
236 break;
237 default:
238 ERR("Unexpected rotation state encountered.");
239 goto error;
240 }
241
242 if (!lttng_opt_mi && print_location) {
243 ret = output_trace_archive_location(location,
244 session_name);
245 } else if (lttng_opt_mi) {
246 ret = mi_lttng_rotate(writer, session_name, rotation_state,
247 location);
248 }
249
250 if (ret < 0) {
251 cmd_ret = CMD_ERROR;
252 }
253
254 end:
255 lttng_rotation_handle_destroy(handle);
256 return cmd_ret;
257 error:
258 cmd_ret = CMD_ERROR;
259 goto end;
260 }
261
262 /*
263 * cmd_rotate
264 *
265 * The 'rotate <options>' first level command
266 */
267 int cmd_rotate(int argc, const char **argv)
268 {
269 int opt, ret;
270 enum cmd_error_code cmd_ret = CMD_SUCCESS;
271 int popt_ret;
272 static poptContext pc;
273 char *session_name = NULL;
274 bool free_session_name = false;
275
276 pc = poptGetContext(NULL, argc, argv, long_options, 0);
277 popt_ret = poptReadDefaultConfig(pc, 0);
278 if (popt_ret) {
279 ERR("poptReadDefaultConfig");
280 goto error;
281 }
282
283 while ((opt = poptGetNextOpt(pc)) != -1) {
284 switch (opt) {
285 case OPT_HELP:
286 SHOW_HELP();
287 goto end;
288 case OPT_LIST_OPTIONS:
289 list_cmd_options(stdout, long_options);
290 goto end;
291 default:
292 cmd_ret = CMD_UNDEFINED;
293 goto end;
294 }
295 }
296
297 opt_session_name = (char*) poptGetArg(pc);
298
299 if (!opt_session_name) {
300 session_name = get_session_name();
301 if (!session_name) {
302 goto error;
303 }
304 free_session_name = true;
305 } else {
306 session_name = opt_session_name;
307 }
308
309 /* Mi check */
310 if (lttng_opt_mi) {
311 writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi);
312 if (!writer) {
313 goto error;
314 }
315
316 /* Open rotate command */
317 ret = mi_lttng_writer_command_open(writer,
318 mi_lttng_element_command_rotate);
319 if (ret) {
320 goto error;
321 }
322
323 /* Open output element */
324 ret = mi_lttng_writer_open_element(writer,
325 mi_lttng_element_command_output);
326 if (ret) {
327 goto error;
328 }
329 }
330
331 cmd_ret = rotate_tracing(session_name);
332
333 /* Mi closing */
334 if (lttng_opt_mi) {
335 /* Close output element */
336 ret = mi_lttng_writer_close_element(writer);
337 if (ret) {
338 goto error;
339 }
340 /* Success ? */
341 ret = mi_lttng_writer_write_element_bool(writer,
342 mi_lttng_element_command_success,
343 cmd_ret == CMD_SUCCESS);
344 if (ret) {
345 goto error;
346 }
347
348 /* Command element close */
349 ret = mi_lttng_writer_command_close(writer);
350 if (ret) {
351 goto error;
352 }
353 }
354
355 /* Mi clean-up */
356 if (writer && mi_lttng_writer_destroy(writer)) {
357 goto error;
358 }
359 end:
360 poptFreeContext(pc);
361 if (free_session_name) {
362 free(session_name);
363 }
364
365 return cmd_ret;
366 error:
367 cmd_ret = CMD_ERROR;
368 goto end;
369 }
This page took 0.035649 seconds and 4 git commands to generate.