Version 1.0.0-rc6
[babeltrace.git] / converter / babeltrace-log.c
1 /*
2 * babeltrace-log.c
3 *
4 * BabelTrace - Convert Text Log to CTF
5 *
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 *
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * Depends on glibc 2.10 for getline().
21 */
22
23 #define _GNU_SOURCE
24 #include <config.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <sys/mman.h>
29 #include <dirent.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <stdint.h>
33 #include <unistd.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <inttypes.h>
37
38 #include <babeltrace/babeltrace-internal.h>
39 #include <babeltrace/ctf/types.h>
40 #include <babeltrace/uuid.h>
41 #include <babeltrace/endian.h>
42
43 #define USEC_PER_SEC 1000000UL
44
45 int babeltrace_debug, babeltrace_verbose;
46
47 static char *s_outputname;
48 static int s_timestamp;
49 static int s_help;
50 static unsigned char s_uuid[BABELTRACE_UUID_LEN];
51
52 /* Metadata format string */
53 static const char metadata_fmt[] =
54 "/* CTF 1.8 */\n"
55 "typealias integer { size = 8; align = 8; signed = false; } := uint8_t;\n"
56 "typealias integer { size = 32; align = 32; signed = false; } := uint32_t;\n"
57 "typealias integer { size = 64; align = 64; signed = false; } := uint64_t;\n"
58 "\n"
59 "trace {\n"
60 " major = %u;\n" /* major (e.g. 0) */
61 " minor = %u;\n" /* minor (e.g. 1) */
62 " uuid = \"%s\";\n" /* UUID */
63 " byte_order = %s;\n" /* be or le */
64 " packet.header := struct {\n"
65 " uint32_t magic;\n"
66 " uint8_t uuid[16];\n"
67 " };\n"
68 "};\n"
69 "\n"
70 "stream {\n"
71 " packet.context := struct {\n"
72 " uint64_t content_size;\n"
73 " uint64_t packet_size;\n"
74 " };\n"
75 "%s" /* Stream event header (opt.) */
76 "};\n"
77 "\n"
78 "event {\n"
79 " name = string;\n"
80 " fields := struct { string str; };\n"
81 "};\n";
82
83 static const char metadata_stream_event_header_timestamp[] =
84 " typealias integer { size = 64; align = 64; signed = false; } := uint64_t;\n"
85 " event.header := struct {\n"
86 " uint64_t timestamp;\n"
87 " };\n";
88
89 static
90 void print_metadata(FILE *fp)
91 {
92 char uuid_str[BABELTRACE_UUID_STR_LEN];
93 unsigned int major = 0, minor = 0;
94 int ret;
95
96 ret = sscanf(VERSION, "%u.%u", &major, &minor);
97 if (ret != 2)
98 fprintf(stderr, "[warning] Incorrect babeltrace version format\n.");
99 babeltrace_uuid_unparse(s_uuid, uuid_str);
100 fprintf(fp, metadata_fmt,
101 major,
102 minor,
103 uuid_str,
104 BYTE_ORDER == LITTLE_ENDIAN ? "le" : "be",
105 s_timestamp ? metadata_stream_event_header_timestamp : "");
106 }
107
108 static
109 void write_packet_header(struct ctf_stream_pos *pos, unsigned char *uuid)
110 {
111 struct ctf_stream_pos dummy;
112
113 /* magic */
114 ctf_dummy_pos(pos, &dummy);
115 ctf_align_pos(&dummy, sizeof(uint32_t) * CHAR_BIT);
116 ctf_move_pos(&dummy, sizeof(uint32_t) * CHAR_BIT);
117 assert(!ctf_pos_packet(&dummy));
118
119 ctf_align_pos(pos, sizeof(uint32_t) * CHAR_BIT);
120 *(uint32_t *) ctf_get_pos_addr(pos) = 0xC1FC1FC1;
121 ctf_move_pos(pos, sizeof(uint32_t) * CHAR_BIT);
122
123 /* uuid */
124 ctf_dummy_pos(pos, &dummy);
125 ctf_align_pos(&dummy, sizeof(uint8_t) * CHAR_BIT);
126 ctf_move_pos(&dummy, 16 * CHAR_BIT);
127 assert(!ctf_pos_packet(&dummy));
128
129 ctf_align_pos(pos, sizeof(uint8_t) * CHAR_BIT);
130 memcpy(ctf_get_pos_addr(pos), uuid, BABELTRACE_UUID_LEN);
131 ctf_move_pos(pos, BABELTRACE_UUID_LEN * CHAR_BIT);
132 }
133
134 static
135 void write_packet_context(struct ctf_stream_pos *pos)
136 {
137 struct ctf_stream_pos dummy;
138
139 /* content_size */
140 ctf_dummy_pos(pos, &dummy);
141 ctf_align_pos(&dummy, sizeof(uint64_t) * CHAR_BIT);
142 ctf_move_pos(&dummy, sizeof(uint64_t) * CHAR_BIT);
143 assert(!ctf_pos_packet(&dummy));
144
145 ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT);
146 *(uint64_t *) ctf_get_pos_addr(pos) = ~0ULL; /* Not known yet */
147 pos->content_size_loc = (uint64_t *) ctf_get_pos_addr(pos);
148 ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT);
149
150 /* packet_size */
151 ctf_dummy_pos(pos, &dummy);
152 ctf_align_pos(&dummy, sizeof(uint64_t) * CHAR_BIT);
153 ctf_move_pos(&dummy, sizeof(uint64_t) * CHAR_BIT);
154 assert(!ctf_pos_packet(&dummy));
155
156 ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT);
157 *(uint64_t *) ctf_get_pos_addr(pos) = pos->packet_size;
158 ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT);
159 }
160
161 static
162 void write_event_header(struct ctf_stream_pos *pos, char *line,
163 char **tline, size_t len, size_t *tlen,
164 uint64_t *ts)
165 {
166 unsigned long sec, usec;
167 int ret;
168
169 if (!s_timestamp)
170 return;
171
172 /* Only need to be executed on first pass (dummy) */
173 if (pos->dummy) {
174 /* Extract time from input line */
175 ret = sscanf(line, "[%lu.%lu] ", &sec, &usec);
176 if (ret == 2) {
177 *tline = strchr(line, ']');
178 assert(*tline);
179 (*tline)++;
180 if ((*tline)[0] == ' ') {
181 (*tline)++;
182 }
183 *tlen = len + line - *tline;
184 *ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec;
185 }
186 }
187 /* timestamp */
188 ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT);
189 if (!pos->dummy)
190 *(uint64_t *) ctf_get_pos_addr(pos) = *ts;
191 ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT);
192 }
193
194 static
195 void trace_string(char *line, struct ctf_stream_pos *pos, size_t len)
196 {
197 struct ctf_stream_pos dummy;
198 int attempt = 0;
199 char *tline = line; /* tline is start of text, after timestamp */
200 size_t tlen = len;
201 uint64_t ts = 0;
202
203 printf_debug("read: %s\n", line);
204 retry:
205 ctf_dummy_pos(pos, &dummy);
206 write_event_header(&dummy, line, &tline, len, &tlen, &ts);
207 ctf_align_pos(&dummy, sizeof(uint8_t) * CHAR_BIT);
208 ctf_move_pos(&dummy, tlen * CHAR_BIT);
209 if (ctf_pos_packet(&dummy)) {
210 ctf_pos_pad_packet(pos);
211 write_packet_header(pos, s_uuid);
212 write_packet_context(pos);
213 if (attempt++ == 1) {
214 fprintf(stderr, "[Error] Line too large for packet size (%" PRIu64 "kB) (discarded)\n",
215 pos->packet_size / CHAR_BIT / 1024);
216 return;
217 }
218 goto retry;
219 }
220
221 write_event_header(pos, line, &tline, len, &tlen, &ts);
222 ctf_align_pos(pos, sizeof(uint8_t) * CHAR_BIT);
223 memcpy(ctf_get_pos_addr(pos), tline, tlen);
224 ctf_move_pos(pos, tlen * CHAR_BIT);
225 }
226
227 static
228 void trace_text(FILE *input, int output)
229 {
230 struct ctf_stream_pos pos;
231 ssize_t len;
232 char *line = NULL, *nl;
233 size_t linesize;
234 int ret;
235
236 memset(&pos, 0, sizeof(pos));
237 ret = ctf_init_pos(&pos, output, O_RDWR);
238 if (ret) {
239 fprintf(stderr, "Error in ctf_init_pos\n");
240 return;
241 }
242 write_packet_header(&pos, s_uuid);
243 write_packet_context(&pos);
244 for (;;) {
245 len = getline(&line, &linesize, input);
246 if (len < 0)
247 break;
248 nl = strrchr(line, '\n');
249 if (nl) {
250 *nl = '\0';
251 trace_string(line, &pos, nl - line + 1);
252 } else {
253 trace_string(line, &pos, strlen(line) + 1);
254 }
255 }
256 ret = ctf_fini_pos(&pos);
257 if (ret) {
258 fprintf(stderr, "Error in ctf_fini_pos\n");
259 }
260 }
261
262 static
263 void usage(FILE *fp)
264 {
265 fprintf(fp, "BabelTrace Log Converter %s\n", VERSION);
266 fprintf(fp, "\n");
267 fprintf(fp, "Convert for a text log (read from standard input) to CTF.\n");
268 fprintf(fp, "\n");
269 fprintf(fp, "usage : babeltrace-log [OPTIONS] OUTPUT\n");
270 fprintf(fp, "\n");
271 fprintf(fp, " OUTPUT Output trace path\n");
272 fprintf(fp, "\n");
273 fprintf(fp, " -t With timestamps (format: [sec.usec] string\\n)\n");
274 fprintf(fp, "\n");
275 }
276
277 static
278 int parse_args(int argc, char **argv)
279 {
280 int i;
281
282 for (i = 1; i < argc; i++) {
283 if (!strcmp(argv[i], "-t"))
284 s_timestamp = 1;
285 else if (!strcmp(argv[i], "-h")) {
286 s_help = 1;
287 return 0;
288 } else if (argv[i][0] == '-')
289 return -EINVAL;
290 else
291 s_outputname = argv[i];
292 }
293 if (!s_outputname)
294 return -EINVAL;
295 return 0;
296 }
297
298 int main(int argc, char **argv)
299 {
300 int fd, metadata_fd, ret;
301 DIR *dir;
302 int dir_fd;
303 FILE *metadata_fp;
304
305 ret = parse_args(argc, argv);
306 if (ret) {
307 fprintf(stderr, "Error: invalid argument.\n");
308 usage(stderr);
309 goto error;
310 }
311
312 if (s_help) {
313 usage(stdout);
314 exit(EXIT_SUCCESS);
315 }
316
317 ret = mkdir(s_outputname, S_IRWXU|S_IRWXG);
318 if (ret) {
319 perror("mkdir");
320 goto error;
321 }
322
323 dir = opendir(s_outputname);
324 if (!dir) {
325 perror("opendir");
326 goto error_rmdir;
327 }
328 dir_fd = dirfd(dir);
329 if (dir_fd < 0) {
330 perror("dirfd");
331 goto error_closedir;
332 }
333
334 fd = openat(dir_fd, "datastream", O_RDWR|O_CREAT,
335 S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
336 if (fd < 0) {
337 perror("openat");
338 goto error_closedirfd;
339 }
340
341 metadata_fd = openat(dir_fd, "metadata", O_RDWR|O_CREAT,
342 S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
343 if (fd < 0) {
344 perror("openat");
345 goto error_closedatastream;
346 }
347 metadata_fp = fdopen(metadata_fd, "w");
348 if (!metadata_fp) {
349 perror("fdopen");
350 goto error_closemetadatafd;
351 }
352
353 babeltrace_uuid_generate(s_uuid);
354 print_metadata(metadata_fp);
355 trace_text(stdin, fd);
356
357 ret = close(fd);
358 if (ret)
359 perror("close");
360 exit(EXIT_SUCCESS);
361
362 /* error handling */
363 error_closemetadatafd:
364 ret = close(metadata_fd);
365 if (ret)
366 perror("close");
367 error_closedatastream:
368 ret = close(fd);
369 if (ret)
370 perror("close");
371 error_closedirfd:
372 ret = close(dir_fd);
373 if (ret)
374 perror("close");
375 error_closedir:
376 ret = closedir(dir);
377 if (ret)
378 perror("closedir");
379 error_rmdir:
380 ret = rmdir(s_outputname);
381 if (ret)
382 perror("rmdir");
383 error:
384 exit(EXIT_FAILURE);
385 }
This page took 0.037233 seconds and 4 git commands to generate.