/* Copyright (C) 2003 Commonwealth Scientific and Industrial Research Organisation (CSIRO) Australia Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of CSIRO Australia nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ORGANISATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #include #include #include #ifndef WIN32 #include #endif #include #ifdef HAVE_INTTYPES_H # include #else # define PRId64 "I64d" #endif #include #include #include "oggz/oggz.h" #include "oggz_tools.h" /*#define DEBUG*/ #ifdef WIN32 #define strcasecmp _stricmp #endif #undef MIN #define MIN(a,b) (((a)<(b))?(a):(b)) typedef struct { OggzTable * serialno_table; OggzTable * content_types_table; OggzReadPacket read_packet; int dump_bits; int dump_char; int hide_offset; int hide_serialno; int hide_granulepos; int hide_packetno; } ODData; static char * progname; static FILE * outfile = NULL; static int truth = 1; static void usage (char * progname) { printf ("Usage: %s [options] filename\n", progname); printf ("Hexdump packets of an Ogg file, or revert an Ogg file from such a hexdump\n"); printf ("\nDump format options\n"); printf (" -b, --binary Generate a binary dump of each packet\n"); printf (" -x, --hexadecimal Generate a hexadecimal dump of each packet\n"); printf ("\nFiltering options\n"); printf (" -n, --new Only dump the first packet of each logical bitstream\n"); printf (" -c content-type, --content-type content-type\n"); printf (" Dump only the logical bitstreams for a specified\n"); printf (" content-type. Run oggz-known-codecs for a list of\n"); printf (" codec names which can be detected by this version of oggz.\n"); printf (" -s serialno, --serialno serialno\n"); printf (" Dump only the logical bitstream with specified serialno\n"); printf (" -O, --hide-offset Hide the byte offset of each packet\n"); printf (" -S, --hide-serialno Hide the serialno field of each packet\n"); printf (" -G, --hide-granulepos Hide the granulepos field of each packet\n"); printf (" -P, --hide-packetno Hide the packetno field of each packet\n"); printf ("\nMode options\n"); printf (" -r, --revert Revert an oggz-dump. Generates an Ogg bitstream\n"); printf (" as prescribed in the input oggz-dump\n"); printf ("\nMiscellaneous options\n"); printf (" -o filename, --output filename\n"); printf (" Specify output filename\n"); printf (" -h, --help Display this help and exit\n"); printf (" -v, --version Output version information and exit\n"); printf ("\n"); printf ("Please report bugs to \n"); } static void exit_out_of_memory (void) { fprintf (stderr, "%s: Out of memory\n", progname); exit (1); } static ODData * oddata_new () { ODData * oddata = malloc (sizeof (ODData)); if (oddata == NULL) return NULL; memset (oddata, 0, sizeof (ODData)); oddata->serialno_table = oggz_table_new (); if (oddata->serialno_table == NULL) { free (oddata); return NULL; } oddata->content_types_table = oggz_table_new (); if (oddata->content_types_table == NULL) { free (oddata->serialno_table); free (oddata); return NULL; } oddata->dump_bits = 0; oddata->dump_char = 1; oddata->hide_offset = 0; oddata->hide_serialno = 0; oddata->hide_granulepos = 0; oddata->hide_packetno = 0; return oddata; } static void oddata_delete (ODData * oddata) { oggz_table_delete (oddata->serialno_table); oggz_table_delete (oddata->content_types_table); free (oddata); } static void dump_char_line (unsigned char * buf, long n) { int i; fprintf (outfile, " "); for (i = 0; i < n; i++) { if (isgraph(buf[i])) fprintf (outfile, "%c", buf[i]); else if (isspace(buf[i])) fprintf (outfile, " "); else fprintf (outfile, "."); } } static void hex_dump (unsigned char * buf, long n, int dump_char) { int i; long remaining = n, count = 0; long rowlen; while (remaining > 0) { rowlen = MIN (remaining, 16); if (n > 0xffffff) fprintf (outfile, "%08lx:", count); else if (n > 0xffff) fprintf (outfile, " %06lx:", count); else fprintf (outfile, " %04lx:", count); for (i = 0; i < rowlen; i++) { if (!(i%2)) fprintf (outfile, " "); fprintf (outfile, "%02x", buf[i]); } for (; i < 16; i++) { if (!(i%2)) fprintf (outfile, " "); fprintf (outfile, " "); } if (dump_char) dump_char_line (buf, rowlen); fprintf(outfile, "\n"); remaining -= rowlen; buf += rowlen; count += rowlen; } } static void bin_dump (unsigned char * buf, long n, int dump_char) { int i, j; long remaining = n, count = 0; long rowlen; while (remaining > 0) { rowlen = MIN (remaining, 6); if (n > 0xffffff) fprintf (outfile, "%08lx:", count); else if (n > 0xffff) fprintf (outfile, " %06lx:", count); else fprintf (outfile, " %04lx:", count); for (i = 0; i < rowlen; i++) { fprintf (outfile, " "); #ifdef WORDS_BIGENDIAN for (j = 0; j < 8; j++) #else for (j = 7; j >= 0; j--) #endif fprintf (outfile, "%c", (buf[i]&(1<op; ogg_int64_t units; double time_offset; ogg_int64_t calced_gp = oggz_tell_granulepos (oggz); if (oddata->hide_offset) { fprintf (outfile, "oOo"); } else { units = oggz_tell_units (oggz); if (units == -1) { fprintf (outfile, "%" PRId64 "x", oggz_tell (oggz)); } else { time_offset = (double)units / 1000.0; ot_fprint_time (outfile, time_offset); } } fprintf (outfile, ": serialno %010lu, ", oddata->hide_serialno ? -1 : serialno); if (oddata->hide_granulepos) { fprintf (outfile, "granulepos gGg"); } else { if (op->granulepos == -1) { fprintf (outfile, "calc. gpos "); } else { fprintf (outfile, "granulepos "); } ot_fprint_granulepos (outfile, oggz, serialno, calced_gp); if (op->granulepos != -1 && op->granulepos != calced_gp) { fprintf (outfile, " ERR: file gp "); ot_fprint_granulepos (outfile, oggz, serialno, op->granulepos); } } fprintf (outfile, ", packetno %" PRId64, oddata->hide_packetno ? -1 : op->packetno); if (op->b_o_s) { fprintf (outfile, " *** bos"); } if (op->e_o_s) { fprintf (outfile, " *** eos"); } fprintf (outfile, ": "); ot_fprint_bytes (outfile, op->bytes); fputc ('\n', outfile); if (oddata->dump_bits) { bin_dump (op->packet, op->bytes, oddata->dump_char); } else { hex_dump (op->packet, op->bytes, oddata->dump_char); } fprintf (outfile, "\n"); return 0; } static int filter_page (OGGZ * oggz, const ogg_page * og, long serialno, void * user_data) { ODData * oddata = (ODData *) user_data; const char * ident; int i, n; if (ogg_page_bos ((ogg_page *)og)) { ident = ot_page_identify (oggz, og, NULL); if (ident) { n = oggz_table_size (oddata->content_types_table); for (i = 0; i < n; i++) { char * c = oggz_table_nth (oddata->content_types_table, i, NULL); if (strcasecmp (c, ident) == 0) { oggz_set_read_callback (oggz, serialno, oddata->read_packet, oddata); } } } } return 0; } static int read_new_packet (OGGZ * oggz, oggz_packet * zp, long serialno, void * user_data) { ogg_packet * op = &zp->op; if (op->b_o_s) { read_packet (oggz, zp, serialno, user_data); return OGGZ_CONTINUE; } else { return OGGZ_STOP_OK; } } static void revert_packet (OGGZ * oggz, ogg_packet * op, long serialno, int flush) { unsigned char buf[1024]; long n; int ret; #ifdef DEBUG printf ("feeding packet (%010lu) %ld bytes %s, %s\n", serialno, op->bytes, op->b_o_s ? "bos" : "not bos", op->e_o_s ? "eos" : "not eos"); #endif if ((ret = oggz_write_feed (oggz, op, serialno, flush, NULL)) != 0) { fprintf (stderr, "%s: oggz_write_feed error %d\n", progname, ret); } while ((n = oggz_write_output (oggz, buf, 1024)) > 0) { if (fwrite (buf, 1, n, outfile) < (size_t)n) break; } } static void revert_file (char * infilename) { OGGZ * oggz; FILE * infile; char line[120]; int hh, mm, ss; unsigned int offset; long current_serialno = -1, serialno; ogg_int64_t granulepos, iframe, pframe, packetno; int is_packetinfo = 0; int bos = 0, eos = 0; int line_offset = 0, consumed = 0; unsigned char * packet = NULL; long max_bytes = 0; ogg_packet op; int flush = 1; char c; if (strcmp (infilename, "-") == 0) { infile = stdin; } else { infile = fopen (infilename, "rb"); } oggz = oggz_new (OGGZ_WRITE|OGGZ_NONSTRICT|OGGZ_AUTO); if (oggz == NULL) exit_out_of_memory(); while (fgets (line, 120, infile)) { line_offset = 0; /* Skip time offsets, OR ensure line_offset is 0 */ if (sscanf (line, "%2d:%2d:%2d.%n", &hh, &mm, &ss, &line_offset) < 3) line_offset = 0; is_packetinfo = 0; if (sscanf (&line[line_offset], "%x: serialno %ld, granulepos %" PRId64 ", packetno %" PRId64 "%n", &offset, &serialno, &granulepos, &packetno, &line_offset) >= 4) { is_packetinfo = 1; } else { if (sscanf (&line[line_offset], "%x: serialno %ld, granulepos %" PRId64 "%" PRId64 ", packetno %" PRId64 "%n", &offset, &serialno, &iframe, &pframe, &packetno, &line_offset) >= 5) { int granuleshift = oggz_get_granuleshift (oggz, serialno); is_packetinfo = 1; granulepos = (iframe<= 1) { /* NUL-terminate after hex data: don't scan char representation */ line[50] = '\0'; while (nread < 16 && (sscanf (&line[line_offset], "%2x%n", &val, &consumed) > 0)) { op.bytes++; if (op.bytes > max_bytes) { unsigned char * new_packet; size_t new_size; if (max_bytes == 0) { new_size = 128; } else { new_size = max_bytes * 2; } new_packet = (unsigned char *) realloc((void *)packet, new_size); if (new_packet == NULL) { exit_out_of_memory (); } else { max_bytes = (long)new_size; packet = new_packet; op.packet = packet; } } packet[op.bytes-1] = (unsigned char) val; line_offset += consumed; nread++; } } } } /* flush any existing packets */ if (current_serialno != -1) { revert_packet (oggz, &op, current_serialno, flush); } oggz_close(oggz); fclose (infile); } int main (int argc, char ** argv) { int show_version = 0; int show_help = 0; ODData * oddata; OGGZ * oggz; char * infilename = NULL, * outfilename = NULL; int revert = 0; long serialno; int i, size; long n; int filter_serialnos = 0; int filter_content_types = 0; char * optstring = "hvbxnro:s:c:OSGP"; #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { {"help", no_argument, 0, 'h'}, {"version", no_argument, 0, 'v'}, {"binary", no_argument, 0, 'b'}, {"hexadecimal", no_argument, 0, 'x'}, {"new", no_argument, 0, 'n'}, {"revert", no_argument, 0, 'r'}, {"output", required_argument, 0, 'o'}, {"serialno", required_argument, 0, 's'}, {"content-type", required_argument, 0, 'c'}, {"hide-offset", no_argument, 0, 'O'}, {"hide-serialno", no_argument, 0, 'S'}, {"hide-granulepos", no_argument, 0, 'G'}, {"hide-packetno", no_argument, 0, 'P'}, {0,0,0,0} }; #endif ot_init (); progname = argv[0]; if (argc < 2) { usage (progname); return (1); } if (!strncmp (argv[1], "-?", 2)) { #ifdef HAVE_GETOPT_LONG ot_print_options (long_options, optstring); #else ot_print_short_options (optstring); #endif exit (0); } oddata = oddata_new (); if (oddata == NULL) exit_out_of_memory(); oddata->read_packet = read_packet; while (1) { #ifdef HAVE_GETOPT_LONG i = getopt_long(argc, argv, optstring, long_options, NULL); #else i = getopt (argc, argv, optstring); #endif if (i == -1) break; if (i == ':') { usage (progname); goto exit_err; } switch (i) { case 'h': /* help */ show_help = 1; break; case 'v': /* version */ show_version = 1; break; case 'b': /* binary */ oddata->dump_bits = 1; break; case 'n': /* new */ oddata->read_packet = read_new_packet; break; case 'o': /* output */ outfilename = optarg; break; case 'r': /* revert */ revert = 1; break; case 's': /* serialno */ filter_serialnos = 1; serialno = atol (optarg); oggz_table_insert (oddata->serialno_table, serialno, &truth); break; case 'c': /* content-type */ filter_content_types = 1; n = (long)oggz_table_size (oddata->content_types_table); oggz_table_insert (oddata->content_types_table, (long)n, optarg); break; case 'O': /* hide offset */ oddata->hide_offset = 1; break; case 'S': /* hide serialno */ oddata->hide_serialno = 1; break; case 'G': /* hide granulepos */ oddata->hide_granulepos = 1; break; case 'P': /* hide packetno */ oddata->hide_packetno = 1; break; default: break; } } if (show_version) { printf ("%s version " VERSION "\n", progname); } if (show_help) { usage (progname); } if (show_version || show_help) { goto exit_ok; } if (optind >= argc) { usage (progname); goto exit_err; } infilename = argv[optind++]; if (outfilename == NULL) { outfile = stdout; } else { outfile = fopen (outfilename, "wb"); if (outfile == NULL) { fprintf (stderr, "%s: unable to open output file %s\n", progname, outfilename); goto exit_err; } } if (revert) { if (oddata->dump_bits) { fprintf (stderr, "%s: Revert of binary dump not supported\n", progname); goto exit_err; } revert_file (infilename); } else { errno = 0; if (strcmp (infilename, "-") == 0) { oggz = oggz_open_stdio (stdin, OGGZ_READ|OGGZ_AUTO); } else { oggz = oggz_open (infilename, OGGZ_READ|OGGZ_AUTO); } if (oggz == NULL) { if (errno == 0) { fprintf (stderr, "%s: %s: OGGZ error opening input file\n", progname, infilename); } else { fprintf (stderr, "%s: %s: %s\n", progname, infilename, strerror (errno)); } goto exit_err; } if (!filter_serialnos && !filter_content_types) { oggz_set_read_callback (oggz, -1, oddata->read_packet, oddata); } else { if (filter_serialnos) { size = oggz_table_size (oddata->serialno_table); for (i = 0; i < size; i++) { oggz_table_nth (oddata->serialno_table, i, &serialno); oggz_set_read_callback (oggz, serialno, oddata->read_packet, oddata); } } if (filter_content_types) { oggz_set_read_page (oggz, -1, filter_page, oddata); } } oggz_run_set_blocksize (oggz, 1024*1024); oggz_run (oggz); oggz_close (oggz); } exit_ok: oddata_delete (oddata); exit (0); exit_err: oddata_delete (oddata); exit (1); }