2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
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.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
39 #include <lttng/lttng.h>
40 #include <common/common.h>
42 #define DEFAULT_VIEWER "babeltrace"
44 #define COPY_BUFLEN 4096
45 #define RB_CRASH_DUMP_ABI_LEN 32
47 #define RB_CRASH_DUMP_ABI_MAGIC_LEN 16
50 * The 128-bit magic number is xor'd in the process data so it does not
51 * cause a false positive when searching for buffers by scanning memory.
52 * The actual magic number is:
53 * 0x17, 0x7B, 0xF1, 0x77, 0xBF, 0x17, 0x7B, 0xF1,
54 * 0x77, 0xBF, 0x17, 0x7B, 0xF1, 0x77, 0xBF, 0x17,
56 #define RB_CRASH_DUMP_ABI_MAGIC_XOR \
58 0x17 ^ 0xFF, 0x7B ^ 0xFF, 0xF1 ^ 0xFF, 0x77 ^ 0xFF, \
59 0xBF ^ 0xFF, 0x17 ^ 0xFF, 0x7B ^ 0xFF, 0xF1 ^ 0xFF, \
60 0x77 ^ 0xFF, 0xBF ^ 0xFF, 0x17 ^ 0xFF, 0x7B ^ 0xFF, \
61 0xF1 ^ 0xFF, 0x77 ^ 0xFF, 0xBF ^ 0xFF, 0x17 ^ 0xFF, \
65 * Non-static to ensure the compiler does not optimize away the xor.
67 uint8_t lttng_crash_expected_magic_xor
[] = RB_CRASH_DUMP_ABI_MAGIC_XOR
;
69 #define RB_CRASH_ENDIAN 0x1234
70 #define RB_CRASH_ENDIAN_REVERSE 0x3412
72 enum lttng_crash_type
{
73 LTTNG_CRASH_TYPE_UST
= 0,
74 LTTNG_CRASH_TYPE_KERNEL
= 1,
77 /* LTTng ring buffer defines (copied) */
79 #define HALF_ULONG_BITS(wl) (((wl) * CHAR_BIT) >> 1)
81 #define SB_ID_OFFSET_SHIFT(wl) (HALF_ULONG_BITS(wl) + 1)
82 #define SB_ID_OFFSET_COUNT(wl) (1UL << SB_ID_OFFSET_SHIFT(wl))
83 #define SB_ID_OFFSET_MASK(wl) (~(SB_ID_OFFSET_COUNT(wl) - 1))
85 * Lowest bit of top word half belongs to noref. Used only for overwrite mode.
87 #define SB_ID_NOREF_SHIFT(wl) (SB_ID_OFFSET_SHIFT(wl) - 1)
88 #define SB_ID_NOREF_COUNT(wl) (1UL << SB_ID_NOREF_SHIFT(wl))
89 #define SB_ID_NOREF_MASK(wl) SB_ID_NOREF_COUNT(wl)
91 * In overwrite mode: lowest half of word is used for index.
92 * Limit of 2^16 subbuffers per buffer on 32-bit, 2^32 on 64-bit.
93 * In producer-consumer mode: whole word used for index.
95 #define SB_ID_INDEX_SHIFT(wl) 0
96 #define SB_ID_INDEX_COUNT(wl) (1UL << SB_ID_INDEX_SHIFT(wl))
97 #define SB_ID_INDEX_MASK(wl) (SB_ID_NOREF_COUNT(wl) - 1)
100 RING_BUFFER_OVERWRITE
= 0, /* Overwrite when buffer full */
101 RING_BUFFER_DISCARD
= 1, /* Discard when buffer full */
104 struct crash_abi_unknown
{
105 uint8_t magic
[RB_CRASH_DUMP_ABI_MAGIC_LEN
];
106 uint64_t mmap_length
; /* Overall lenght of crash record */
108 * { 0x12, 0x34 }: big endian
109 * { 0x34, 0x12 }: little endian
111 uint16_t major
; /* Major number. */
112 uint16_t minor
; /* Minor number. */
113 uint8_t word_size
; /* Word size (bytes). */
114 uint8_t layout_type
; /* enum lttng_crash_layout */
115 } __attribute__((packed
));
117 struct crash_abi_0_0
{
118 struct crash_abi_unknown parent
;
121 uint32_t prod_offset
;
122 uint32_t consumed_offset
;
123 uint32_t commit_hot_array
;
124 uint32_t commit_hot_seq
;
125 uint32_t buf_wsb_array
;
128 uint32_t sb_array_shmp_offset
;
129 uint32_t sb_backend_p_offset
;
130 uint32_t content_size
;
131 uint32_t packet_size
;
132 } __attribute__((packed
)) offset
;
135 uint8_t consumed_offset
;
136 uint8_t commit_hot_seq
;
138 uint8_t sb_array_shmp_offset
;
139 uint8_t sb_backend_p_offset
;
140 uint8_t content_size
;
142 } __attribute__((packed
)) length
;
144 uint32_t commit_hot_array
;
145 uint32_t buf_wsb_array
;
147 } __attribute__((packed
)) stride
;
149 uint64_t buf_size
; /* Size of the buffer */
150 uint64_t subbuf_size
; /* Sub-buffer size */
151 uint64_t num_subbuf
; /* Number of sub-buffers for writer */
152 uint32_t mode
; /* Buffer mode: 0: overwrite, 1: discard */
153 } __attribute__((packed
));
155 struct lttng_crash_layout
{
157 int prod_offset
, consumed_offset
,
158 commit_hot_array
, commit_hot_seq
,
159 buf_wsb_array
, buf_wsb_id
,
160 sb_array
, sb_array_shmp_offset
,
161 sb_backend_p_offset
, content_size
,
165 int prod_offset
, consumed_offset
,
166 commit_hot_seq
, buf_wsb_id
,
167 sb_array_shmp_offset
, sb_backend_p_offset
,
168 content_size
, packet_size
;
171 int commit_hot_array
, buf_wsb_array
, sb_array
;
174 int reverse_byte_order
;
177 uint64_t mmap_length
; /* Length of crash record */
178 uint64_t buf_size
; /* Size of the buffer */
179 uint64_t subbuf_size
; /* Sub-buffer size */
180 uint64_t num_subbuf
; /* Number of sub-buffers for writer */
181 uint32_t mode
; /* Buffer mode: 0: overwrite, 1: discard */
185 static char *progname
,
186 *opt_viewer_path
= DEFAULT_VIEWER
,
189 static char *input_path
;
191 int lttng_opt_quiet
, lttng_opt_verbose
, lttng_opt_mi
;
197 /* Getopt options. No first level command. */
198 static struct option long_options
[] = {
199 { "version", 0, NULL
, 'V' },
200 { "help", 0, NULL
, 'h' },
201 { "verbose", 0, NULL
, 'v' },
202 { "viewer", 1, NULL
, 'e' },
203 { "extract", 1, NULL
, 'x' },
204 { "list-options", 0, NULL
, OPT_DUMP_OPTIONS
},
205 { NULL
, 0, NULL
, 0 },
208 static void usage(FILE *ofp
)
210 fprintf(ofp
, "LTTng Crash Trace Viewer " VERSION
" - " VERSION_NAME
"%s\n\n",
211 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
);
212 fprintf(ofp
, "usage: lttng-crash [OPTIONS] FILE\n");
214 fprintf(ofp
, "Options:\n");
215 fprintf(ofp
, " -V, --version Show version.\n");
216 fprintf(ofp
, " -h, --help Show this help.\n");
217 fprintf(ofp
, " --list-options Simple listing of lttng-crash options.\n");
218 fprintf(ofp
, " -v, --verbose Increase verbosity.\n");
219 fprintf(ofp
, " -e, --viewer Specify viewer and/or options to use. This will\n"
220 " completely override the default viewers so please\n"
221 " make sure to specify the full command. The trace\n"
222 " directory paths appended at the end to the\n"
224 fprintf(ofp
, " -x, --extract PATH Extract trace(s) to specified path. Don't view\n"
227 fprintf(ofp
, "Please see the lttng-crash(1) man page for full documentation.\n");
228 fprintf(ofp
, "See http://lttng.org for updates, bug reports and news.\n");
231 static void version(FILE *ofp
)
233 fprintf(ofp
, "%s (LTTng Crash Trace Viewer) " VERSION
" - " VERSION_NAME
236 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
);
242 * List options line by line. This is mostly for bash auto completion and to
243 * avoid difficult parsing.
245 static void list_options(FILE *ofp
)
248 struct option
*option
= NULL
;
250 option
= &long_options
[i
];
251 while (option
->name
!= NULL
) {
252 fprintf(ofp
, "--%s\n", option
->name
);
254 if (isprint(option
->val
)) {
255 fprintf(ofp
, "-%c\n", option
->val
);
259 option
= &long_options
[i
];
264 * Parse command line arguments.
266 * Return 0 if OK, else -1
268 static int parse_args(int argc
, char **argv
)
277 while ((opt
= getopt_long(argc
, argv
, "+Vhvex:", long_options
, NULL
)) != -1) {
288 /* There is only 3 possible level of verbosity. (-vvv) */
289 if (lttng_opt_verbose
< 3) {
290 lttng_opt_verbose
+= 1;
294 opt_viewer_path
= strdup(optarg
);
297 opt_output_path
= strdup(optarg
);
299 case OPT_DUMP_OPTIONS
:
300 list_options(stdout
);
309 /* No leftovers, or more than one input path, print usage and quit */
310 if ((argc
- optind
) == 0 || (argc
- optind
) > 1) {
315 input_path
= argv
[optind
];
324 int copy_file(const char *file_dest
, const char *file_src
)
327 ssize_t readlen
, writelen
;
328 char buf
[COPY_BUFLEN
];
330 DBG("Copy metadata file '%s' into '%s'", file_src
, file_dest
);
332 fd_src
= open(file_src
, O_RDONLY
);
334 PERROR("Error opening %s for reading", file_src
);
337 fd_dest
= open(file_dest
, O_RDWR
| O_CREAT
| O_EXCL
,
338 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
340 PERROR("Error opening %s for writing", file_dest
);
345 readlen
= lttng_read(fd_src
, buf
, COPY_BUFLEN
);
347 PERROR("Error reading input file");
353 writelen
= lttng_write(fd_dest
, buf
, readlen
);
354 if (writelen
< readlen
) {
355 PERROR("Error writing to output file");
363 uint64_t _crash_get_field(const struct lttng_crash_layout
*layout
,
364 const char *ptr
, size_t size
)
367 case 1: return *(uint8_t *) ptr
;
368 case 2: if (layout
->reverse_byte_order
) {
369 return __bswap_16(*(uint16_t *) ptr
);
371 return *(uint16_t *) ptr
;
374 case 4: if (layout
->reverse_byte_order
) {
375 return __bswap_32(*(uint32_t *) ptr
);
377 return *(uint32_t *) ptr
;
380 case 8: if (layout
->reverse_byte_order
) {
381 return __bswap_64(*(uint64_t *) ptr
);
383 return *(uint64_t *) ptr
;
392 #define crash_get_field(layout, map, name) \
393 _crash_get_field(layout, (map) + (layout)->offset.name, \
396 #define crash_get_array_field(layout, map, array_name, idx, field_name) \
397 _crash_get_field(layout, \
398 (map) + (layout)->offset.array_name \
399 + (idx * (layout)->stride.array_name) \
400 + (layout)->offset.field_name, \
401 (layout)->length.field_name)
403 #define crash_get_hdr_raw_field(layout, hdr, name) ((hdr)->name)
405 #define crash_get_hdr_field(layout, hdr, name) \
406 _crash_get_field(layout, (const char *) &(hdr)->name, \
409 #define crash_get_layout(layout, hdr, name) \
411 (layout)->name = crash_get_hdr_field(layout, hdr, \
413 DBG("layout.%s = %" PRIu64, #name, \
414 (uint64_t) (layout)->name); \
418 int get_crash_layout_0_0(struct lttng_crash_layout
*layout
,
421 const struct crash_abi_0_0
*abi
= (const struct crash_abi_0_0
*) map
;
423 crash_get_layout(layout
, abi
, offset
.prod_offset
);
424 crash_get_layout(layout
, abi
, offset
.consumed_offset
);
425 crash_get_layout(layout
, abi
, offset
.commit_hot_array
);
426 crash_get_layout(layout
, abi
, offset
.commit_hot_seq
);
427 crash_get_layout(layout
, abi
, offset
.buf_wsb_array
);
428 crash_get_layout(layout
, abi
, offset
.buf_wsb_id
);
429 crash_get_layout(layout
, abi
, offset
.sb_array
);
430 crash_get_layout(layout
, abi
, offset
.sb_array_shmp_offset
);
431 crash_get_layout(layout
, abi
, offset
.sb_backend_p_offset
);
432 crash_get_layout(layout
, abi
, offset
.content_size
);
433 crash_get_layout(layout
, abi
, offset
.packet_size
);
435 crash_get_layout(layout
, abi
, length
.prod_offset
);
436 crash_get_layout(layout
, abi
, length
.consumed_offset
);
437 crash_get_layout(layout
, abi
, length
.commit_hot_seq
);
438 crash_get_layout(layout
, abi
, length
.buf_wsb_id
);
439 crash_get_layout(layout
, abi
, length
.sb_array_shmp_offset
);
440 crash_get_layout(layout
, abi
, length
.sb_backend_p_offset
);
441 crash_get_layout(layout
, abi
, length
.content_size
);
442 crash_get_layout(layout
, abi
, length
.packet_size
);
444 crash_get_layout(layout
, abi
, stride
.commit_hot_array
);
445 crash_get_layout(layout
, abi
, stride
.buf_wsb_array
);
446 crash_get_layout(layout
, abi
, stride
.sb_array
);
448 crash_get_layout(layout
, abi
, buf_size
);
449 crash_get_layout(layout
, abi
, subbuf_size
);
450 crash_get_layout(layout
, abi
, num_subbuf
);
451 crash_get_layout(layout
, abi
, mode
);
457 void print_dbg_magic(const uint8_t *magic
)
459 DBG("magic: 0x%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X",
460 magic
[0], magic
[1], magic
[2], magic
[3],
461 magic
[4], magic
[5], magic
[6], magic
[7],
462 magic
[8], magic
[9], magic
[10], magic
[11],
463 magic
[12], magic
[13], magic
[14], magic
[15]);
467 int check_magic(const uint8_t *magic
)
471 for (i
= 0; i
< RB_CRASH_DUMP_ABI_MAGIC_LEN
; i
++) {
472 if ((magic
[i
] ^ 0xFF) != lttng_crash_expected_magic_xor
[i
]) {
480 int get_crash_layout(struct lttng_crash_layout
*layout
, int fd
)
483 int ret
= 0, unmapret
;
484 const uint8_t *magic
;
485 uint64_t mmap_length
;
486 uint16_t major
, minor
;
488 const struct crash_abi_unknown
*abi
;
490 enum lttng_crash_type layout_type
;
492 map
= mmap(NULL
, RB_CRASH_DUMP_ABI_LEN
, PROT_READ
, MAP_PRIVATE
,
494 if (map
== MAP_FAILED
) {
495 PERROR("Mapping file");
498 abi
= (const struct crash_abi_unknown
*) map
;
499 magic
= crash_get_hdr_raw_field(layout
, abi
, magic
);
500 print_dbg_magic(magic
);
501 if (check_magic(magic
)) {
502 DBG("Unknown magic number");
503 ret
= 1; /* positive return value, skip */
506 endian
= crash_get_hdr_field(layout
, abi
, endian
);
508 case RB_CRASH_ENDIAN
:
510 case RB_CRASH_ENDIAN_REVERSE
:
511 layout
->reverse_byte_order
= 1;
514 DBG("Unknown endianness value: 0x%X", (unsigned int) endian
);
515 ret
= 1; /* positive return value, skip */
518 layout_type
= (enum lttng_crash_type
) crash_get_hdr_field(layout
, abi
, layout_type
);
519 switch (layout_type
) {
520 case LTTNG_CRASH_TYPE_UST
:
522 case LTTNG_CRASH_TYPE_KERNEL
:
523 ERR("lttng-modules buffer layout support not implemented");
524 ret
= 1; /* positive return value, skip */
527 ERR("Unknown layout type %u", (unsigned int) layout_type
);
528 ret
= 1; /* positive return value, skip */
531 mmap_length
= crash_get_hdr_field(layout
, abi
, mmap_length
);
532 DBG("mmap_length: %" PRIu64
, mmap_length
);
533 layout
->mmap_length
= mmap_length
;
534 major
= crash_get_hdr_field(layout
, abi
, major
);
535 DBG("major: %u", major
);
536 minor
= crash_get_hdr_field(layout
, abi
, minor
);
537 DBG("minor: %u", minor
);
538 word_size
= crash_get_hdr_field(layout
, abi
, word_size
);
539 DBG("word_size: %u", word_size
);
544 ret
= get_crash_layout_0_0(layout
, map
);
550 ERR("Unsupported crash ABI %u.%u\n", major
, minor
);
555 ERR("Unsupported crash ABI %u.%u\n", major
, minor
);
559 layout
->word_size
= word_size
;
561 unmapret
= munmap(map
, RB_CRASH_DUMP_ABI_LEN
);
568 /* buf_trunc mask selects only the buffer number. */
570 uint64_t buf_trunc(uint64_t offset
, uint64_t buf_size
)
572 return offset
& ~(buf_size
- 1);
575 /* subbuf_trunc mask selects the subbuffer number. */
577 uint64_t subbuf_trunc(uint64_t offset
, uint64_t subbuf_size
)
579 return offset
& ~(subbuf_size
- 1);
582 /* buf_offset mask selects only the offset within the current buffer. */
584 uint64_t buf_offset(uint64_t offset
, uint64_t buf_size
)
586 return offset
& (buf_size
- 1);
589 /* subbuf_offset mask selects the offset within the current subbuffer. */
591 uint64_t subbuf_offset(uint64_t offset
, uint64_t subbuf_size
)
593 return offset
& (subbuf_size
- 1);
596 /* subbuf_index returns the index of the current subbuffer within the buffer. */
598 uint64_t subbuf_index(uint64_t offset
, uint64_t buf_size
, uint64_t subbuf_size
)
600 return buf_offset(offset
, buf_size
) / subbuf_size
;
604 uint64_t subbuffer_id_get_index(uint32_t mode
, uint64_t id
,
607 if (mode
== RING_BUFFER_OVERWRITE
)
608 return id
& SB_ID_INDEX_MASK(wl
);
614 int copy_crash_subbuf(const struct lttng_crash_layout
*layout
,
615 int fd_dest
, char *buf
, uint64_t offset
)
617 uint64_t buf_size
, subbuf_size
, num_subbuf
, sbidx
, id
,
618 sb_bindex
, rpages_offset
, p_offset
, seq_cc
,
619 committed
, commit_count_mask
, consumed_cur
,
625 * Get the current subbuffer by applying the proper mask to
626 * "offset", and looking up the subbuf location within the
630 buf_size
= layout
->buf_size
;
631 subbuf_size
= layout
->subbuf_size
;
632 num_subbuf
= layout
->num_subbuf
;
634 switch (layout
->word_size
) {
635 case 4: commit_count_mask
= 0xFFFFFFFFULL
/ num_subbuf
;
637 case 8: commit_count_mask
= 0xFFFFFFFFFFFFFFFFULL
/ num_subbuf
;
640 ERR("Unsupported word size: %u",
641 (unsigned int) layout
->word_size
);
645 DBG("Copy crash subbuffer at offset %lu", offset
);
646 sbidx
= subbuf_index(offset
, buf_size
, subbuf_size
);
649 * Find where the seq cc is located. Compute length of data to
652 seq_cc
= crash_get_array_field(layout
, buf
, commit_hot_array
,
653 sbidx
, commit_hot_seq
);
654 consumed_cur
= crash_get_field(layout
, buf
, consumed_offset
);
657 * Check that the buffer we are getting is after or at
658 * consumed_cur position.
660 if ((long) subbuf_trunc(offset
, subbuf_size
)
661 - (long) subbuf_trunc(consumed_cur
, subbuf_size
) < 0) {
662 DBG("No data: position is before consumed_cur");
667 * Check if subbuffer has been fully committed.
669 if (((seq_cc
- subbuf_size
) & commit_count_mask
)
670 - (buf_trunc(offset
, buf_size
) / num_subbuf
)
672 committed
= subbuf_size
;
674 committed
= subbuf_offset(seq_cc
, subbuf_size
);
676 DBG("No data committed, seq_cc: %" PRIu64
, seq_cc
);
681 /* Find actual physical offset in subbuffer table */
682 id
= crash_get_array_field(layout
, buf
, buf_wsb_array
,
684 sb_bindex
= subbuffer_id_get_index(layout
->mode
, id
,
686 rpages_offset
= crash_get_array_field(layout
, buf
, sb_array
,
687 sb_bindex
, sb_array_shmp_offset
);
688 p_offset
= crash_get_field(layout
, buf
+ rpages_offset
,
689 sb_backend_p_offset
);
690 subbuf_ptr
= buf
+ p_offset
;
692 if (committed
== subbuf_size
) {
694 * Packet header can be used.
696 if (layout
->length
.packet_size
) {
698 subbuf_ptr
+ layout
->offset
.packet_size
,
699 layout
->length
.packet_size
);
700 if (layout
->reverse_byte_order
) {
701 packet_size
= __bswap_64(packet_size
);
703 packet_size
/= CHAR_BIT
;
705 packet_size
= subbuf_size
;
711 * Find where to patch the sub-buffer header with actual
712 * readable data len and packet len, derived from seq
713 * cc. Patch it in our in-memory copy.
715 patch_size
= committed
* CHAR_BIT
;
716 if (layout
->reverse_byte_order
) {
717 patch_size
= __bswap_64(patch_size
);
719 if (layout
->length
.content_size
) {
720 memcpy(subbuf_ptr
+ layout
->offset
.content_size
,
721 &patch_size
, layout
->length
.content_size
);
723 if (layout
->length
.packet_size
) {
724 memcpy(subbuf_ptr
+ layout
->offset
.packet_size
,
725 &patch_size
, layout
->length
.packet_size
);
727 packet_size
= committed
;
731 * Copy packet into fd_dest.
733 writelen
= lttng_write(fd_dest
, subbuf_ptr
, packet_size
);
734 if (writelen
< packet_size
) {
735 PERROR("Error writing to output file");
738 DBG("Copied %" PRIu64
" bytes of data", packet_size
);
746 int copy_crash_data(const struct lttng_crash_layout
*layout
, int fd_dest
,
750 int ret
= 0, has_data
= 0;
753 uint64_t prod_offset
, consumed_offset
;
754 uint64_t offset
, subbuf_size
;
757 ret
= fstat(fd_src
, &statbuf
);
761 src_file_len
= layout
->mmap_length
;
762 buf
= zmalloc(src_file_len
);
766 readlen
= lttng_read(fd_src
, buf
, src_file_len
);
768 PERROR("Error reading input file");
773 prod_offset
= crash_get_field(layout
, buf
, prod_offset
);
774 DBG("prod_offset: 0x%" PRIx64
, prod_offset
);
775 consumed_offset
= crash_get_field(layout
, buf
, consumed_offset
);
776 DBG("consumed_offset: 0x%" PRIx64
, consumed_offset
);
777 subbuf_size
= layout
->subbuf_size
;
779 for (offset
= consumed_offset
; offset
< prod_offset
;
780 offset
+= subbuf_size
) {
781 ret
= copy_crash_subbuf(layout
, fd_dest
, buf
, offset
);
791 if (ret
&& ret
!= -ENODATA
) {
802 int extract_file(int output_dir_fd
, const char *output_file
,
803 int input_dir_fd
, const char *input_file
)
805 int fd_dest
, fd_src
, ret
= 0, closeret
;
806 struct lttng_crash_layout layout
;
808 layout
.reverse_byte_order
= 0; /* For reading magic number */
810 DBG("Extract file '%s'", input_file
);
811 fd_src
= openat(input_dir_fd
, input_file
, O_RDONLY
);
813 PERROR("Error opening '%s' for reading",
819 /* Query the crash ABI layout */
820 ret
= get_crash_layout(&layout
, fd_src
);
825 fd_dest
= openat(output_dir_fd
, output_file
,
826 O_RDWR
| O_CREAT
| O_EXCL
,
827 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
829 PERROR("Error opening '%s' for writing",
835 ret
= copy_crash_data(&layout
, fd_dest
, fd_src
);
841 closeret
= close(fd_dest
);
845 if (ret
== -ENODATA
) {
846 closeret
= unlinkat(output_dir_fd
, output_file
, 0);
852 closeret
= close(fd_src
);
861 int extract_all_files(const char *output_path
,
862 const char *input_path
)
864 DIR *input_dir
, *output_dir
;
865 int input_dir_fd
, output_dir_fd
, ret
= 0, closeret
;
866 struct dirent
*entry
; /* input */
868 /* Open input directory */
869 input_dir
= opendir(input_path
);
871 PERROR("Cannot open '%s' path", input_path
);
874 input_dir_fd
= dirfd(input_dir
);
875 if (input_dir_fd
< 0) {
880 /* Open output directory */
881 output_dir
= opendir(output_path
);
883 PERROR("Cannot open '%s' path", output_path
);
886 output_dir_fd
= dirfd(output_dir
);
887 if (output_dir_fd
< 0) {
892 while ((entry
= readdir(input_dir
))) {
893 if (!strcmp(entry
->d_name
, ".")
894 || !strcmp(entry
->d_name
, ".."))
896 ret
= extract_file(output_dir_fd
, entry
->d_name
,
897 input_dir_fd
, entry
->d_name
);
898 if (ret
== -ENODATA
) {
899 DBG("No data in file '%s', skipping", entry
->d_name
);
902 } else if (ret
< 0) {
904 } else if (ret
> 0) {
905 DBG("Skipping file '%s'", entry
->d_name
);
910 closeret
= closedir(output_dir
);
914 closeret
= closedir(input_dir
);
922 int extract_one_trace(const char *output_path
,
923 const char *input_path
)
925 char dest
[PATH_MAX
], src
[PATH_MAX
];
928 DBG("Extract crash trace '%s' into '%s'", input_path
, output_path
);
931 strncpy(dest
, output_path
, PATH_MAX
);
932 dest
[PATH_MAX
- 1] = '\0';
933 strncat(dest
, "/metadata", PATH_MAX
- strlen(dest
) - 1);
935 strncpy(src
, input_path
, PATH_MAX
);
936 src
[PATH_MAX
- 1] = '\0';
937 strncat(src
, "/metadata", PATH_MAX
- strlen(dest
) - 1);
939 ret
= copy_file(dest
, src
);
944 /* Extract each other file that has expected header */
945 return extract_all_files(output_path
, input_path
);
949 int extract_trace_recursive(const char *output_path
,
950 const char *input_path
)
953 int dir_fd
, ret
= 0, closeret
;
954 struct dirent
*entry
;
958 dir
= opendir(input_path
);
960 PERROR("Cannot open '%s' path", input_path
);
969 while ((entry
= readdir(dir
))) {
970 if (!strcmp(entry
->d_name
, ".")
971 || !strcmp(entry
->d_name
, "..")) {
974 switch (entry
->d_type
) {
977 char output_subpath
[PATH_MAX
];
978 char input_subpath
[PATH_MAX
];
980 strncpy(output_subpath
, output_path
,
981 sizeof(output_subpath
));
982 output_subpath
[sizeof(output_subpath
) - 1] = '\0';
983 strncat(output_subpath
, "/",
984 sizeof(output_subpath
) - strlen(output_subpath
) - 1);
985 strncat(output_subpath
, entry
->d_name
,
986 sizeof(output_subpath
) - strlen(output_subpath
) - 1);
988 ret
= mkdir(output_subpath
, S_IRWXU
| S_IRWXG
);
995 strncpy(input_subpath
, input_path
,
996 sizeof(input_subpath
));
997 input_subpath
[sizeof(input_subpath
) - 1] = '\0';
998 strncat(input_subpath
, "/",
999 sizeof(input_subpath
) - strlen(input_subpath
) - 1);
1000 strncat(input_subpath
, entry
->d_name
,
1001 sizeof(input_subpath
) - strlen(input_subpath
) - 1);
1003 ret
= extract_trace_recursive(output_subpath
,
1011 if (!strcmp(entry
->d_name
, "metadata")) {
1012 ret
= extract_one_trace(output_path
,
1015 WARN("Error extracting trace '%s', continuing anyway.",
1020 /* Ignore other files */
1028 closeret
= closedir(dir
);
1036 int delete_trace(const char *trace_path
)
1039 int trace_dir_fd
, ret
= 0, closeret
;
1040 struct dirent
*entry
;
1042 /* Open trace directory */
1043 trace_dir
= opendir(trace_path
);
1045 PERROR("Cannot open '%s' path", trace_path
);
1048 trace_dir_fd
= dirfd(trace_dir
);
1049 if (trace_dir_fd
< 0) {
1054 while ((entry
= readdir(trace_dir
))) {
1055 if (!strcmp(entry
->d_name
, ".")
1056 || !strcmp(entry
->d_name
, "..")) {
1059 switch (entry
->d_type
) {
1061 unlinkat(trace_dir_fd
, entry
->d_name
, AT_REMOVEDIR
);
1064 unlinkat(trace_dir_fd
, entry
->d_name
, 0);
1072 closeret
= closedir(trace_dir
);
1077 ret
= rmdir(trace_path
);
1083 int view_trace(const char *viewer_path
, const char *trace_path
)
1092 } else if (pid
> 0) {
1096 pid
= waitpid(pid
, &status
, 0);
1097 if (pid
< 0 || !WIFEXITED(status
)) {
1104 ret
= execlp(viewer_path
, viewer_path
,
1105 trace_path
, (char *) NULL
);
1110 exit(EXIT_SUCCESS
); /* Never reached */
1118 int main(int argc
, char *argv
[])
1120 int ret
, has_warning
= 0;
1121 const char *output_path
= NULL
;
1122 char tmppath
[] = "/tmp/lttng-crash-XXXXXX";
1124 progname
= argv
[0] ? argv
[0] : "lttng-crash";
1126 ret
= parse_args(argc
, argv
);
1129 } else if (ret
< 0) {
1133 if (opt_output_path
) {
1134 output_path
= opt_output_path
;
1135 ret
= mkdir(output_path
, S_IRWXU
| S_IRWXG
);
1141 output_path
= mkdtemp(tmppath
);
1148 ret
= extract_trace_recursive(output_path
, input_path
);
1151 } else if (ret
> 0) {
1154 if (!opt_output_path
) {
1156 ret
= view_trace(opt_viewer_path
, output_path
);
1160 /* unlink temporary trace */
1161 ret
= delete_trace(output_path
);