X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=dump.c;h=7f3c2b8c75174a045f9666ff379af99efaef5aa3;hb=96c7d3dc94c2e3f2d587e42382b541c5ec70ec9a;hp=ce87e86b2d9b396486b26aa86a9573c6dd36ea55;hpb=94d6bf282238ff6f4d4f354624cc3cffa2468882;p=pspp diff --git a/dump.c b/dump.c index ce87e86b2d..7f3c2b8c75 100644 --- a/dump.c +++ b/dump.c @@ -1,34 +1,22 @@ +#include +#include +#include +#include #include #include #include #include #include #include +#include #include +#include "u8-mbtouc.h" +static const char *filename; static uint8_t *data; static size_t n; -static bool -all_ascii(const uint8_t *p, size_t n) -{ - for (size_t i = 0; i < n; i++) - if (p[i] < 32 || p[i] > 126) - return false; - return true; -} - -static size_t -find(const char *target, size_t target_len) -{ - const uint8_t *pos = (const uint8_t *) memmem (data, n, target, target_len); - if (!pos) - { - fprintf (stderr, "not found\n"); - exit(1); - } - return pos - data; -} +int version; size_t pos; @@ -36,6 +24,12 @@ size_t pos; #define STR(x) XSTR(x) #define WHERE __FILE__":" STR(__LINE__) +static uint8_t +get_byte(void) +{ + return data[pos++]; +} + static unsigned int get_u32(void) { @@ -45,6 +39,33 @@ get_u32(void) return x; } +static unsigned long long int +get_u64(void) +{ + uint64_t x; + memcpy(&x, &data[pos], 8); + pos += 8; + return x; +} + +static unsigned int +get_be32(void) +{ + uint32_t x; + x = (data[pos] << 24) | (data[pos + 1] << 16) | (data[pos + 2] << 8) | data[pos + 3]; + pos += 4; + return x; +} + +static unsigned int +get_u16(void) +{ + uint16_t x; + memcpy(&x, &data[pos], 2); + pos += 2; + return x; +} + static double get_double(void) { @@ -54,6 +75,15 @@ get_double(void) return x; } +static double __attribute__((unused)) +get_float(void) +{ + float x; + memcpy(&x, &data[pos], 4); + pos += 4; + return x; +} + static bool match_u32(uint32_t x) { @@ -75,10 +105,52 @@ match_u32_assert(uint32_t x, const char *where) } #define match_u32_assert(x) match_u32_assert(x, WHERE) +static bool __attribute__((unused)) +match_u64(uint64_t x) +{ + if (get_u64() == x) + return true; + pos -= 8; + return false; +} + +static void __attribute__((unused)) +match_u64_assert(uint64_t x, const char *where) +{ + unsigned long long int y = get_u64(); + if (x != y) + { + fprintf(stderr, "%s: 0x%x: expected u64:%llu, got u64:%llu\n", where, pos - 8, x, y); + exit(1); + } +} +#define match_u64_assert(x) match_u64_assert(x, WHERE) + +static bool __attribute__((unused)) +match_be32(uint32_t x) +{ + if (get_be32() == x) + return true; + pos -= 4; + return false; +} + +static void +match_be32_assert(uint32_t x, const char *where) +{ + unsigned int y = get_be32(); + if (x != y) + { + fprintf(stderr, "%s: 0x%x: expected be%u, got be%u\n", where, pos - 4, x, y); + exit(1); + } +} +#define match_be32_assert(x) match_be32_assert(x, WHERE) + static bool match_byte(uint8_t b) { - if (data[pos] == b) + if (pos < n && data[pos] == b) { pos++; return true; @@ -98,315 +170,1154 @@ match_byte_assert(uint8_t b, const char *where) } #define match_byte_assert(b) match_byte_assert(b, WHERE) +static bool +get_bool(void) +{ + if (match_byte(0)) + return false; + match_byte_assert(1); + return true; +} + +static bool __attribute__((unused)) +all_utf8(const char *p_) +{ + const uint8_t *p = (const uint8_t *) p_; + size_t len = strlen ((char *) p); + for (size_t ofs = 0, mblen; ofs < len; ofs += mblen) + { + ucs4_t uc; + + mblen = u8_mbtouc (&uc, p + ofs, len - ofs); + if ((uc < 32 && uc != '\n') || uc == 127 || uc == 0xfffd) + return false; + } + return true; +} + static char * -get_string(void) +get_string(const char *where) { - if (data[pos + 1] == 0 && data[pos + 2] == 0 && data[pos + 3] == 0 - && all_ascii(&data[pos + 4], data[pos])) + if (1 + /*data[pos + 1] == 0 && data[pos + 2] == 0 && data[pos + 3] == 0*/ + /*&& all_ascii(&data[pos + 4], data[pos])*/) { - int len = data[pos]; + int len = data[pos] + data[pos + 1] * 256; char *s = malloc(len + 1); memcpy(s, &data[pos + 4], len); s[len] = 0; - pos += 4 + data[pos]; + pos += 4 + len; return s; } else { - fprintf(stderr, "0x%x: expected string\n", pos); + fprintf(stderr, "%s: 0x%x: expected string\n", where, pos); exit(1); } } +#define get_string() get_string(WHERE) + +static char * +get_string_be(const char *where) +{ + if (1 + /*data[pos + 1] == 0 && data[pos + 2] == 0 && data[pos + 3] == 0*/ + /*&& all_ascii(&data[pos + 4], data[pos])*/) + { + int len = data[pos + 2] * 256 + data[pos + 3]; + char *s = malloc(len + 1); + + memcpy(s, &data[pos + 4], len); + s[len] = 0; + pos += 4 + len; + return s; + } + else + { + fprintf(stderr, "%s: 0x%x: expected string\n", where, pos); + exit(1); + } +} +#define get_string_be() get_string_be(WHERE) + +static int +get_end(void) +{ + int len = get_u32(); + return pos + len; +} + +static void __attribute__((unused)) +hex_dump(FILE *stream, int ofs, int n) +{ + for (int i = 0; i < n; i++) + { + int c = data[ofs + i]; +#if 1 + if (i && !(i % 16)) + putc('-', stream); + else + putc(' ', stream); +#endif + fprintf(stream, "%02x", c); + } + for (int i = 0; i < n; i++) + { + int c = data[ofs + i]; + putc(c >= 32 && c < 127 ? c : '.', stream); + } + putc('\n', stream); +} + +static char * +dump_counted_string(void) +{ + int inner_end = get_end(); + if (pos == inner_end) + return NULL; + + if (match_u32(5)) + { + match_u32_assert(0); + match_byte_assert(0x58); + } + else + match_u32_assert(0); + + char *s = NULL; + if (match_byte(0x31)) + s = get_string(); + else + match_byte_assert(0x58); + if (pos != inner_end) + { + fprintf(stderr, "inner end discrepancy\n"); + exit(1); + } + return s; +} static void -dump_category(int level) +dump_style(FILE *stream) { - for (int i = 0; i <= level; i++) - printf (" "); - - match_byte (0); - match_byte (0); - match_byte (0); - match_byte (0); - if (match_byte (3)) - { - get_string(); - match_byte_assert (0x58); - get_string(); - printf("string \"%s\"", get_string()); - match_byte (0); - match_byte_assert (1); - match_byte (0); - match_byte (0); - match_byte (0); - match_byte (1); + if (match_byte(0x58)) + return; + + match_byte_assert(0x31); + if (get_bool()) + printf (" bold=\"yes\""); + if (get_bool()) + printf (" italic=\"yes\""); + if (get_bool()) + printf (" underline=\"yes\""); + if (!get_bool()) + printf (" show=\"no\""); + char *fg = get_string(); /* foreground */ + char *bg = get_string(); /* background */ + char *font = get_string(); /* font */ + int size = get_byte() * (72. / 96.); + fprintf(stream, " fgcolor=\"%s\" bgcolor=\"%s\" font=\"%s\" size=\"%dpt\"", + fg, bg, font, size); +} + +static void +dump_style2(FILE *stream) +{ + if (match_byte(0x58)) + return; + + match_byte_assert(0x31); + uint32_t halign = get_u32(); + printf (" halign=\"%s\"", + halign == 0 ? "center" + : halign == 2 ? "left" + : halign == 4 ? "right" + : halign == 6 ? "decimal" + : halign == 0xffffffad ? "mixed" + : ""); + int valign = get_u32(); + printf (" valign=\"%s\"", + valign == 0 ? "center" + : valign == 1 ? "top" + : valign == 3 ? "bottom" + : ""); + printf (" offset=\"%gpt\"", get_double()); + int l = get_u16(); + int r = get_u16(); + int t = get_u16(); + int b = get_u16(); + printf (" margins=\"%d %d %d %d\"", l, r, t, b); +} + +static char * +dump_nested_string(FILE *stream) +{ + char *s = NULL; + + match_byte_assert (0); + match_byte_assert (0); + int outer_end = get_end(); + s = dump_counted_string(); + if (s) + fprintf(stream, " \"%s\"", s); + dump_style(stream); + match_byte_assert(0x58); + if (pos != outer_end) + { + fprintf(stderr, "outer end discrepancy\n"); + exit(1); } - else if (match_byte (5)) + + return s; +} + +static void +dump_value_modifier(FILE *stream) +{ + if (match_byte (0x31)) { - match_byte_assert (0x58); - printf ("variable \"%s\"", get_string()); - get_string(); - if (!match_byte (3)) - match_byte_assert (2); - match_byte (0); - match_byte (0); - match_byte (0); + if (match_u32 (0)) + { + fprintf(stream, "\n"); + return; + } + + int outer_end = get_end(); + + /* This counted-string appears to be a template string, + e.g. "Design\: [:^1:]1 Within Subjects Design\: [:^1:]2". */ + char *template = dump_counted_string(); + if (template) + fprintf(stream, " template=\"%s\"", template); + + dump_style(stream); + dump_style2(stream); + if (pos != outer_end) + { + fprintf(stderr, "outer end discrepancy\n"); + exit(1); + } + fprintf(stream, "/>\n"); + } + else + { + int count = get_u32(); + fprintf(stream, "\n"); + } } - else if (match_byte (2)) + else + match_byte_assert (0x58); +} + +static const char * +format_to_string (int type) +{ + static char tmp[16]; + switch (type) + { + case 1: return "A"; + case 2: return "AHEX"; + case 3: return "COMMA"; + case 4: return "DOLLAR"; + case 5: case 40: return "F"; + case 6: return "IB"; + case 7: return "PIBHEX"; + case 8: return "P"; + case 9: return "PIB"; + case 10: return "PK"; + case 11: return "RB"; + case 12: return "RBHEX"; + case 15: return "Z"; + case 16: return "N"; + case 17: return "E"; + case 20: return "DATE"; + case 21: return "TIME"; + case 22: return "DATETIME"; + case 23: return "ADATE"; + case 24: return "JDATE"; + case 25: return "DTIME"; + case 26: return "WKDAY"; + case 27: return "MONTH"; + case 28: return "MOYR"; + case 29: return "QYR"; + case 30: return "WKYR"; + case 31: return "PCT"; + case 32: return "DOT"; + case 33: return "CCA"; + case 34: return "CCB"; + case 35: return "CCC"; + case 36: return "CCD"; + case 37: return "CCE"; + case 38: return "EDATE"; + case 39: return "SDATE"; + default: + abort(); + sprintf(tmp, "<%d>", type); + return tmp; + } +} + +static void +dump_value(FILE *stream, int level) +{ + match_byte(0); + match_byte(0); + match_byte(0); + match_byte(0); + + for (int i = 0; i <= level; i++) + fprintf (stream, " "); + + printf ("%02x: value (%d)\n", pos, data[pos]); + if (match_byte (1)) { unsigned int format; - char *var, *vallab; double value; - match_byte_assert (0x58); + dump_value_modifier(stream); format = get_u32 (); value = get_double (); - var = get_string (); - vallab = get_string (); - printf ("value %g format %d(%d.%d) var \"%s\" vallab \"%s\"", - value, format >> 16, (format >> 8) & 0xff, format & 0xff, var, vallab); - if (!match_u32 (3)) - match_u32_assert (2); + fprintf (stream, "\n", + DBL_DIG, value, format_to_string(format >> 16), (format >> 8) & 0xff, format & 0xff); } - else if (match_byte (1)) + else if (match_byte (2)) { unsigned int format; + char *var, *vallab; double value; - match_byte_assert (0x58); + dump_value_modifier (stream); format = get_u32 (); value = get_double (); - printf ("value %g format %d(%d.%d)", value, format >> 16, (format >> 8) & 0xff, format & 0xff); - match_byte (1); - match_byte (0); - match_byte (0); - match_byte (0); - match_byte (1); + var = get_string (); + vallab = get_string (); + fprintf (stream, "> 16), (format >> 8) & 0xff, format & 0xff); + if (var[0]) + fprintf (stream, " variable=\"%s\"", var); + if (vallab[0]) + fprintf (stream, " label=\"%s\"", vallab); + fprintf (stream, "/>\n"); + if (!match_byte (1) && !match_byte(2)) + match_byte_assert (3); } - else + else if (match_byte (3)) { - int subn; - - match_byte_assert (0x31); - match_u32_assert (0); - match_u32_assert (0); - subn = get_u32 (); - printf ("nested %d bytes", subn); - pos += subn; - printf ("; \"%s\"", get_string()); - fprintf (stderr, "got %02x\n", data[pos]); - match_byte (1); - match_byte (0); - match_byte (0); - match_byte (0); - goto next; + char *text = get_string(); + dump_value_modifier(stream); + char *identifier = get_string(); + char *text_eng = get_string(); + fprintf (stream, "\n"); + if (!match_byte (0)) + match_byte_assert(1); } + else if (match_byte (4)) + { + unsigned int format; + char *var, *vallab, *value; - if (match_u32 (2)) - get_u32 (); - else if (match_u32 (1)) + dump_value_modifier(stream); + format = get_u32 (); + vallab = get_string (); + var = get_string (); + if (!match_byte(1) && !match_byte(2)) + match_byte_assert (3); + value = get_string (); + fprintf (stream, "> 16), (format >> 8) & 0xff, format & 0xff); + if (var[0]) + fprintf (stream, " variable=\"%s\"", var); + if (vallab[0]) + fprintf (stream, " label=\"%s\"/>\n", vallab); + fprintf (stream, "/>\n"); + } + else if (match_byte (5)) { - match_byte (0); - match_byte (0); - match_byte (0); - get_u32 (); + dump_value_modifier(stream); + char *name = get_string (); + char *label = get_string (); + fprintf (stream, "\n"); + if (!match_byte(1) && !match_byte(2)) + match_byte_assert(3); } else { - match_u32_assert (0); - get_u32 (); + printf ("else %#x\n", pos); + dump_value_modifier(stream); + + char *base = get_string(); + int x = get_u32(); + fprintf (stream, "\n"); } -next:; - int n_categories = get_u32(); - if (n_categories > 0) - printf (", %d subcategories:", n_categories); - printf("\n"); - for (int i = 0; i < n_categories; i++) - dump_category (level + 1); +} + +static int +compare_int(const void *a_, const void *b_) +{ + const int *a = a_; + const int *b = b_; + return *a < *b ? -1 : *a > *b; } static void -dump_dim(void) +check_permutation(int *a, int n, const char *name) { - int n_categories; - if (match_byte(3)) + int b[n]; + memcpy(b, a, n * sizeof *a); + qsort(b, n, sizeof *b, compare_int); + for (int i = 0; i < n; i++) + if (b[i] != i) + { + fprintf(stderr, "bad %s permutation:", name); + for (int i = 0; i < n; i++) + fprintf(stderr, " %d", a[i]); + putc('\n', stderr); + exit(1); + } +} + +static void +dump_category(FILE *stream, int level, int **indexes, int *allocated_indexes, + int *n_indexes) +{ + for (int i = 0; i <= level; i++) + fprintf (stream, " "); + printf ("\n"); + dump_value (stream, level + 1); + + bool merge = get_bool(); + match_byte_assert (0); + int unindexed = get_bool(); + + int x = get_u32 (); + pos -= 4; + if (!match_u32 (0)) + match_u32_assert (2); + + int indx = get_u32(); + int n_categories = get_u32(); + if (indx == -1) { - get_string(); - match_byte_assert(0x58); - get_string(); - printf("string \"%s\": ", get_string()); - match_byte_assert(1); + if (merge) + { + for (int i = 0; i <= level + 1; i++) + fprintf (stream, " "); + fprintf (stream, "\n"); + } + assert (unindexed); } - else if (match_byte(5)) + else { - match_byte_assert(0x58); - printf("variable \"%s\": ", get_string()); - get_string(); - if (!match_byte(2)) - match_byte_assert(3); + assert (!merge); + assert (!unindexed); + assert (x == 2); + assert (n_categories == 0); + if (*n_indexes >= *allocated_indexes) + { + *allocated_indexes = *allocated_indexes ? 2 * *allocated_indexes : 16; + *indexes = realloc(*indexes, *allocated_indexes * sizeof **indexes); + } + (*indexes)[(*n_indexes)++] = indx; } - else + + if (n_categories == 0) { - fprintf(stderr, "%08x: unexpected byte\n", pos); - exit(1); + for (int i = 0; i <= level + 1; i++) + fprintf (stream, " "); + fprintf (stream, "%d\n", indx); } + for (int i = 0; i < n_categories; i++) + dump_category (stream, level + 1, indexes, allocated_indexes, n_indexes); + for (int i = 0; i <= level; i++) + fprintf (stream, " "); + printf ("\n"); +} - match_byte_assert(0); +static int +dump_dim(int indx) +{ + int n_categories; + + printf ("\n", indx); + dump_value (stdout, 0); + + /* This byte is usually 0 but many other values have been spotted. + No visible effect. */ + pos++; + + /* This byte can cause data to be oddly replicated. */ if (!match_byte(0) && !match_byte(1)) match_byte_assert(2); - match_u32_assert(2); - if (!match_byte(0)) - match_byte_assert(1); - match_byte(0); - match_byte(0); - match_byte(0); - match_byte(0); - get_u32(); - match_byte(0); - match_byte(0); - match_byte(0); - match_byte(0); + + if (!match_u32(0)) + match_u32_assert(2); + + bool show_dim_label = get_bool(); + if (show_dim_label) + printf(" \n"); + + bool hide_all_labels = get_bool(); + if (hide_all_labels) + printf(" \n"); + + match_byte_assert(1); + if (!match_u32(UINT32_MAX)) + match_u32_assert(indx); + n_categories = get_u32(); - printf("%d nested categories\n", n_categories); + + int *indexes = NULL; + int n_indexes = 0; + int allocated_indexes = 0; for (int i = 0; i < n_categories; i++) - dump_category (0); + dump_category (stdout, 0, &indexes, &allocated_indexes, &n_indexes); + check_permutation(indexes, n_indexes, "categories"); + + fprintf (stdout, "\n"); + return n_indexes; } +int n_dims; +static int dim_n_cats[64]; +#define MAX_DIMS (sizeof dim_n_cats / sizeof *dim_n_cats) + static void dump_dims(void) { - int n_dims = get_u32(); + n_dims = get_u32(); + assert(n_dims < MAX_DIMS); + for (int i = 0; i < n_dims; i++) + dim_n_cats[i] = dump_dim (i); +} + +static void +dump_data(void) +{ + /* The first three numbers add to the number of dimensions. */ + int l = get_u32(); + int r = get_u32(); + int c = n_dims - l - r; + match_u32_assert(c); - printf ("%u dimensions\n", n_dims); + /* The next n_dims numbers are a permutation of the dimension numbers. */ + int a[n_dims]; for (int i = 0; i < n_dims; i++) { - printf("\n"); - dump_dim (); + int dim = get_u32(); + a[i] = dim; + + const char *name = i < l ? "layer" : i < l + r ? "row" : "column"; + printf ("<%s dimension=\"%d\"/>\n", name, dim); } + check_permutation(a, n_dims, "dimensions"); + + int x = get_u32(); + printf ("\n"); + for (int i = 0; i < x; i++) + { + unsigned int indx = get_u32(); + printf (" \n"); + match_u32_assert(0); + if (version == 1) + match_byte(0); + dump_value(stdout, 1); + fprintf (stdout, " \n"); + } + printf ("\n"); } -int -main(int argc, char *argv[]) +static void +dump_title(void) { - size_t start; - struct stat s; + printf ("\n"); + dump_value(stdout, 0); + match_byte(1); + printf ("\n"); + + printf ("\n"); + dump_value(stdout, 0); + match_byte(1); + printf ("\n"); + + match_byte_assert(0x31); - if (isatty(STDIN_FILENO)) + printf ("\n"); + dump_value(stdout, 0); + match_byte(1); + printf ("\n"); + + if (match_byte(0x31)) { - fprintf(stderr, "redirect stdin from a .bin file\n"); - exit(1); + printf ("\n"); + dump_value(stdout, 0); + printf ("\n"); } - if (fstat(STDIN_FILENO, &s)) + else + match_byte_assert(0x58); + if (match_byte(0x31)) { - perror("fstat"); - exit(1); + printf ("\n"); + dump_value(stdout, 0); + printf ("\n"); } - n = s.st_size; - data = malloc(n); - if (!data) + else + match_byte_assert(0x58); + + int n_footnotes = get_u32(); + for (int i = 0; i < n_footnotes; i++) { - perror("malloc"); - exit(1); + printf ("\n", i); + dump_value(stdout, 0); + /* Custom footnote marker string. */ + if (match_byte (0x31)) + dump_value(stdout, 0); + else + match_byte_assert (0x58); + int n = get_u32(); + if (n >= 0) + { + /* Appears to be the number of references to a footnote. */ + printf (" \n", n); + } + else if (n == -2) + { + /* The user deleted the footnote references. */ + printf (" \n"); + } + else + assert(0); + printf ("\n"); } - if (read(STDIN_FILENO, data, n) != n) +} + +static void +dump_fonts(void) +{ + match_byte(0); + for (int i = 1; i <= 8; i++) { - perror("read"); - exit(1); + printf ("