]> git.pond.sub.org Git - empserver/blob - src/lib/common/xundump.c
Update copyright notice
[empserver] / src / lib / common / xundump.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  xundump.c: Load back xdump output
28  *
29  *  Known contributors to this file:
30  *     Ron Koenderink, 2005
31  *     Markus Armbruster, 2005-2014
32  */
33
34 /*
35  * See doc/xdump!  And keep it up-to-date.
36  *
37  * Parsing of machine-readable xdump is not precise: it recognizes
38  * comments, accepts whitespace in place of single space, and accepts
39  * the full human-readable field syntax instead of its machine-
40  * readable subset.
41  *
42  * FIXME:
43  * - Normalize terminology: table/rows/columns or file/records/fields
44  * - Loading tables with NSC_STRING elements more than once leaks memory
45  * TODO:
46  * - Symbolic array indexes
47  * - Option to treat missing and unknown fields as warning, not error
48  * TODO, but hardly worth the effort:
49  * - Permit reordering of array elements
50  */
51
52 #include <config.h>
53
54 #include <ctype.h>
55 #include <limits.h>
56 #include <stdarg.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 #include <time.h>
61 #include "file.h"
62 #include "match.h"
63 #include "nat.h"
64 #include "nsc.h"
65 #include "optlist.h"
66 #include "xdump.h"
67
68 static char *fname;             /* Name of file being read */
69 static int lineno;              /* Current line number */
70
71 static int cur_type;            /* Current table's file type */
72 static int partno;              /* Counts from 0..#parts-1 */
73 static int cur_id;              /* and its index in the table */
74 static int old_nelem;
75 static unsigned char *idgap;    /* idgap && idgap[ID] iff part#0 lacks ID */
76 static int idgap_len;           /* #elements in idgap[] */
77
78 static int human;               /* Reading human-readable syntax? */
79 static int ellipsis;            /* Header ended with ...? */
80 static int nflds;               /* #fields in input records */
81 static struct castr **fldca;    /* Map field number to selector */
82 static int *fldidx;             /* Map field number to index */
83 static struct valstr *fldval;   /* Map field number to value */
84 static int *caflds;             /* Map selector number to #fields seen */
85 static int *cafldspp;           /* ditto, in previous parts */
86
87 static int gripe(char *, ...) ATTRIBUTE((format (printf, 1, 2)));
88 static int deffld(int, char *, int);
89 static int chkflds(void);
90 static int setnum(int, double);
91 static int setstr(int, char *);
92 static int setsym(int, char *);
93 static int mtsymset(int, long *);
94 static int add2symset(int, long *, char *);
95 static int xubody(FILE *);
96 static int xutail(FILE *, struct castr *);
97
98 /*
99  * Does the code hardcode indexes for table TYPE?
100  */
101 static int
102 have_hardcoded_indexes(int type)
103 {
104     return type == EF_ITEM || type == EF_SECTOR_CHR
105         || type == EF_INFRASTRUCTURE;
106 }
107
108 /*
109  * Okay to truncate table TYPE?
110  */
111 static int
112 may_truncate(int type)
113 {
114     return empfile[type].nent < 0 && !have_hardcoded_indexes(type);
115 }
116
117 /*
118  * Is TYPE's 0-th selector a usable ID?
119  */
120 static int
121 ca0_is_id(int type)
122 {
123     struct castr *ca = ef_cadef(type);
124
125     return ca[0].ca_table == type && !(ca[0].ca_flags & NSC_EXTRA);
126 }
127
128 /*
129  * Can we fill in gaps in table TYPE?
130  */
131 static int
132 can_fill_gaps(int type)
133 {
134     return (ca0_is_id(type) || type == EF_SECTOR || type == EF_REALM)
135         && !have_hardcoded_indexes(type);
136 }
137
138 /*
139  * Is table TYPE's ID-th record OBJ redundant for xundump()
140  */
141 int
142 xundump_redundant(int type, int id, void *obj)
143 {
144     char buf[EF_WITH_CADEF_MAX_ENTRY_SIZE];
145
146     if (!can_fill_gaps(type))
147         return 0;
148
149     if (may_truncate(type) && id == ef_nelem(type) - 1)
150         return 0;
151
152     ef_blank(type, id, buf);
153     if (ef_flags(type) & EFF_TYPED)
154         return ef_typedstr_eq((struct ef_typedstr *)buf,
155                               (struct ef_typedstr *)obj);
156     return !memcmp(obj, buf, empfile[type].size);
157 }
158
159 /*
160  * Gripe about the current line to stderr, return -1.
161  */
162 static int
163 gripe(char *fmt, ...)
164 {
165     va_list ap;
166
167     fprintf(stderr, "%s:%d: ", fname, lineno);
168     va_start(ap, fmt);
169     vfprintf(stderr, fmt, ap);
170     va_end(ap);
171     putc('\n', stderr);
172
173     return -1;
174 }
175
176 /* Make TYPE the current table.  */
177 static void
178 tbl_start(int type)
179 {
180     cur_type = type;
181     partno = 0;
182     cur_id = -1;
183     old_nelem = type == EF_BAD ? 0 : ef_nelem(type);
184     idgap = NULL;
185     idgap_len = 0;
186 }
187
188 /* End the current table.  */
189 static void
190 tbl_end(void)
191 {
192     free(idgap);
193     tbl_start(EF_BAD);
194 }
195
196 /*
197  * Seek to current table's ID-th object.
198  * Extend the table if necessary.
199  * Save ID in cur_id.
200  * Return the object on success, NULL on failure.
201  */
202 static void *
203 tbl_seek(int id)
204 {
205     void *obj;
206
207     if (id >= ef_nelem(cur_type)) {
208         if (!ef_ensure_space(cur_type, id, 1)) {
209             gripe("can't grow table to hold this row");
210             return NULL;
211         }
212     }
213
214     obj = ef_ptr(cur_type, id);
215     if (CANT_HAPPEN(!obj))
216         return NULL;
217     cur_id = id;
218     return obj;
219 }
220
221 /*
222  * Omit ID1..ID2-1.
223  * Reset the omitted objects to default state.
224  */
225 static void
226 omit_ids(int id1, int id2)
227 {
228     int i;
229
230     if (id1 >= id2)
231         return;
232
233     idgap = realloc(idgap, id2 * sizeof(*idgap));
234     for (i = idgap_len; i < id1; i++)
235         idgap[i] = 0;
236     for (i = id1; i < id2; i++) {
237         ef_blank(cur_type, i, ef_ptr(cur_type, i));
238         idgap[i] = 1;
239     }
240     idgap_len = id2;
241 }
242
243 /*
244  * Return the smallest non-omitted ID in ID1..ID2-1 if any, else -1.
245  */
246 static int
247 expected_id(int id1, int id2)
248 {
249     int i;
250
251     for (i = id1; i < id2; i++) {
252         if (i >= idgap_len || !idgap[i])
253             return i;
254     }
255     return -1;
256 }
257
258 /*
259  * Finish table part.
260  * If the table has variable length, truncate it.
261  * Else ensure we're omitting the same objects as the previous parts.
262  * Reset any omitted objects to default state.
263  * Return 0 on success, -1 on failure.
264  */
265 static int
266 tbl_part_done(void)
267 {
268     struct empfile *ep = &empfile[cur_type];
269
270     if (cur_id + 1 < ep->fids) {
271         if (partno == 0) {
272             if (may_truncate(cur_type)) {
273                 if (!ef_truncate(cur_type, cur_id + 1))
274                     return -1;
275             } else {
276                 if (!can_fill_gaps(cur_type))
277                     return gripe("expected %d more rows",
278                                  ep->fids - (cur_id + 1));
279                 omit_ids(cur_id + 1, ep->fids);
280             }
281         } else {
282             if (expected_id(cur_id + 1, ep->fids) >= 0)
283                 return gripe("table's first part has more rows");
284         }
285     }
286
287     partno++;
288     cur_id = -1;
289     return 0;
290 }
291
292 /*
293  * Get selector for field FLDNO.
294  * Assign the field's selector index to *IDX, unless it is null.
295  * Return the selector on success, null pointer on error.
296  */
297 static struct castr *
298 getfld(int fldno, int *idx)
299 {
300     if (fldno >= nflds) {
301         gripe("too many fields, expected only %d", nflds);
302         return NULL;
303     }
304     if (CANT_HAPPEN(fldno < 0))
305         return NULL;
306     if (idx)
307         *idx = fldidx[fldno];
308     return fldca[fldno];
309 }
310
311 /*
312  * Find the field for selector CA with index IDX.
313  * Return the field number if it exists, else -1.
314  */
315 static int
316 fld_find(struct castr *ca, int idx)
317 {
318     int i;
319
320     for (i = 0; i < nflds; i++) {
321         if (fldca[i] == ca && fldidx[i] == idx)
322             return i;
323     }
324     return -1;
325 }
326
327 /*
328  * Get the current row's ID.
329  * Current table's 0-th selector must be a usable ID.
330  * Return ID on success, -1 on failure.
331  */
332 static int
333 rowid(void)
334 {
335     struct castr *ca = ef_cadef(cur_type);
336     int fldno, id, max_id;
337
338     if (CANT_HAPPEN(partno != 0 || !ca0_is_id(cur_type)))
339         return -1;
340
341     fldno = fld_find(ca, 0);
342     if (fldno < 0)
343         return cur_id + 1;      /* ID not specified */
344     /*
345      * Field values not representable as int will be rejected by
346      * putnum() or putstr().  Leave the error reporting to them, and
347      * simply pick the next ID here.
348      */
349     if (fldval[fldno].val_type != NSC_DOUBLE)
350         return cur_id + 1;
351     id = fldval[fldno].val_as.dbl;
352     if (id != fldval[fldno].val_as.dbl)
353         return cur_id + 1;
354
355     if (id != cur_id + 1 && !can_fill_gaps(cur_type))
356         return gripe("expected %d in field %d",
357                      cur_id + 1, fldno + 1);
358     if (id <= cur_id)
359         return gripe("field %d must be > %d", fldno + 1, cur_id);
360     max_id = ef_id_limit(cur_type);
361     if (id > max_id)
362         return gripe("field %d must be <= %d", fldno + 1, max_id);
363
364     return id;
365 }
366
367 /*
368  * Find the field NAME with index IDX and value representable as long.
369  * Return the field number if it exists, else -1.
370  */
371 static int
372 fld_find_long_by_name(char *name, int idx)
373 {
374     int i;
375
376     for (i = 0; i < nflds; i++) {
377         if (!strcmp(fldca[i]->ca_name, name) && fldidx[i] == idx)
378             break;
379     }
380
381     if (i == nflds || fldval[i].val_type != NSC_DOUBLE
382         || (long)fldval[i].val_as.dbl != fldval[i].val_as.dbl)
383         return -1;
384     return i;
385 }
386
387 /*
388  * Get the current row's ID.
389  * Current table's type must be EF_SECTOR.
390  * Return ID on success, -1 on failure.
391  */
392 static int
393 rowid_sect(void)
394 {
395     int fldno_x, fldno_y, id;
396     coord x, y;
397
398     if (CANT_HAPPEN(partno != 0 || cur_type != EF_SECTOR))
399         return -1;
400
401     fldno_x = fld_find_long_by_name("xloc", 0);
402     fldno_y = fld_find_long_by_name("yloc", 0);
403     if (fldno_x < 0 || fldno_y < 0)
404         return cur_id + 1;
405
406     id = sctoff((long)fldval[fldno_x].val_as.dbl,
407                 (long)fldval[fldno_y].val_as.dbl);
408     /* Note: reporting values out of range left to putnum() */
409     if (id <= cur_id) {
410         sctoff2xy(&x, &y, cur_id);
411         return gripe("coordinates in fields %d,%d must be > %d,%d",
412                      fldno_x + 1, fldno_y + 1, x, y);
413     }
414     return id;
415 }
416
417 /*
418  * Get the current row's ID.
419  * Current table's type must be EF_REALM.
420  * Return ID on success, -1 on failure.
421  */
422 static int
423 rowid_realm(void)
424 {
425     int fldno_cnum, fldno_realm, id;
426     long realm, cnum;
427
428     if (CANT_HAPPEN(partno != 0 || cur_type != EF_REALM))
429         return -1;
430
431     fldno_cnum = fld_find_long_by_name("cnum", 0);
432     fldno_realm = fld_find_long_by_name("realm", 0);
433     if (fldno_cnum < 0 || fldno_realm < 0)
434         return cur_id + 1;
435
436     realm = (long)fldval[fldno_realm].val_as.dbl;
437     cnum = (long)fldval[fldno_cnum].val_as.dbl;
438     if (cnum < 0 || cnum >= MAXNOC)
439         return gripe("field %d must be between 0 and %d",
440                      fldno_cnum, MAXNOC);
441     if (realm < 0 || realm >= MAXNOR)
442         return gripe("field %d must be between 0 and %d",
443                      fldno_realm, MAXNOR);
444     id = realm + cnum * MAXNOR;
445     if (id <= cur_id)
446         return gripe("fields %d,%d must be > (%d,%d)",
447                      fldno_cnum + 1, fldno_realm + 1,
448                      cur_id / MAXNOR, cur_id % MAXNOR);
449     return id;
450 }
451 /*
452  * Get the current row's object.
453  * Extend the table if necessary.
454  * Save ID in cur_id.
455  * Return the object on success, NULL on failure.
456  */
457 static void *
458 rowobj(void)
459 {
460     int last_id = cur_id;
461     int id;
462     void *obj;
463
464     if (partno) {
465         id = expected_id(cur_id + 1, empfile[cur_type].fids);
466         if (id < 0) {
467             gripe("table's first part doesn't have this row");
468             return NULL;
469         }
470     } else if (ca0_is_id(cur_type)) {
471         id = rowid();
472         if (id < 0)
473             return NULL;
474     } else if (cur_type == EF_SECTOR) {
475         id = rowid_sect();
476         if (id < 0)
477             return NULL;
478     } else if (cur_type == EF_REALM) {
479         id = rowid_realm();
480         if (id < 0)
481             return NULL;
482     } else
483         id = last_id + 1;
484     if (id > ef_id_limit(cur_type)) {
485         gripe("too many rows");
486         return NULL;
487     }
488
489     obj = tbl_seek(id);
490     if (obj && !partno)
491         omit_ids(last_id + 1, id);
492     return obj;
493 }
494
495 /*
496  * Is a new value for field FLDNO required to match the old one?
497  */
498 static int
499 fldval_must_match(int fldno)
500 {
501     struct castr *ca = ef_cadef(cur_type);
502     int i = fldca[fldno] - ca;
503
504     /*
505      * Value must match if:
506      * it's for a const selector, unless the object is still blank, or
507      * it was already given in a previous part of a split table.
508      */
509     return (cur_id < old_nelem && (fldca[fldno]->ca_flags & NSC_CONST))
510         || fldidx[fldno] < cafldspp[i];
511 }
512
513 /*
514  * Set OBJ's field FLDNO to DBL.
515  * Return 0 on success, -1 on error.
516  */
517 static int
518 putnum(void *obj, int fldno, double dbl)
519 {
520     struct castr *ca = fldca[fldno];
521     int idx = fldidx[fldno];
522     char *memb_ptr;
523     double old, new;
524
525     memb_ptr = (char *)obj + ca->ca_off;
526
527     switch (ca->ca_type) {
528     case NSC_CHAR:
529         old = ((signed char *)memb_ptr)[idx];
530         new = ((signed char *)memb_ptr)[idx] = (signed char)dbl;
531         break;
532     case NSC_UCHAR:
533         old = ((unsigned char *)memb_ptr)[idx];
534         new = ((unsigned char *)memb_ptr)[idx] = (unsigned char)dbl;
535         break;
536     case NSC_SHORT:
537         old = ((short *)memb_ptr)[idx];
538         new = ((short *)memb_ptr)[idx] = (short)dbl;
539         break;
540     case NSC_USHORT:
541         old = ((unsigned short *)memb_ptr)[idx];
542         new = ((unsigned short *)memb_ptr)[idx] = (unsigned short)dbl;
543         break;
544     case NSC_INT:
545         old = ((int *)memb_ptr)[idx];
546         new = ((int *)memb_ptr)[idx] = (int)dbl;
547         break;
548     case NSC_LONG:
549         old = ((long *)memb_ptr)[idx];
550         new = ((long *)memb_ptr)[idx] = (long)dbl;
551         break;
552     case NSC_XCOORD:
553         old = ((coord *)memb_ptr)[idx];
554         /* FIXME use variant of xrel() that takes orig instead of nation */
555         if (old >= WORLD_X / 2)
556             old -= WORLD_X;
557         new = ((coord *)memb_ptr)[idx] = XNORM((coord)dbl);
558         if (new >= WORLD_X / 2)
559             new -= WORLD_X;
560         break;
561     case NSC_YCOORD:
562         old = ((coord *)memb_ptr)[idx];
563         /* FIXME use variant of yrel() that takes orig instead of nation */
564         if (old >= WORLD_Y / 2)
565             old -= WORLD_Y;
566         new = ((coord *)memb_ptr)[idx] = YNORM((coord)dbl);
567         if (new >= WORLD_Y / 2)
568             new -= WORLD_Y;
569         break;
570     case NSC_FLOAT:
571         old = ((float *)memb_ptr)[idx];
572         ((float *)memb_ptr)[idx] = (float)dbl;
573         new = dbl;              /* suppress new != dbl check */
574         break;
575     case NSC_DOUBLE:
576         old = ((double *)memb_ptr)[idx];
577         ((double *)memb_ptr)[idx] = dbl;
578         new = dbl;              /* suppress new != dbl check */
579         break;
580     case NSC_TIME:
581         old = ((time_t *)memb_ptr)[idx];
582         new = ((time_t *)memb_ptr)[idx] = (time_t)dbl;
583         break;
584     default:
585         return gripe("field %d doesn't take numbers", fldno + 1);
586     }
587
588     if (fldval_must_match(fldno) && old != dbl)
589         return gripe("value for field %d must be %g", fldno + 1, old);
590     if (new != dbl)
591         return gripe("field %d can't hold this value", fldno + 1);
592
593     return 0;
594 }
595
596 /*
597  * Set obj's field FLDNO to STR.
598  * Return 0 on success, -1 on error.
599  */
600 static int
601 putstr(void *obj, int fldno, char *str)
602 {
603     struct castr *ca = fldca[fldno];
604     int idx = fldidx[fldno];
605     int must_match, mismatch;
606     size_t sz, len;
607     char *memb_ptr, *old;
608
609     memb_ptr = (char *)obj + ca->ca_off;
610     must_match = fldval_must_match(fldno);
611     mismatch = 0;
612
613     switch (ca->ca_type) {
614     case NSC_STRING:
615         old = ((char **)memb_ptr)[idx];
616         if (must_match)
617             mismatch = old ? !str || strcmp(old, str) : !!str;
618         else
619             /* FIXME may leak old value */
620             ((char **)memb_ptr)[idx] = str ? strdup(str) : NULL;
621         len = -1;               /* unlimited */
622         break;
623     case NSC_STRINGY:
624         if (CANT_HAPPEN(idx))
625             return -1;
626         if (!str)
627             return gripe("field %d doesn't take nil", fldno + 1);
628         /* Wart: if ca_len <= 1, the terminating null may be omitted */
629         sz = ca->ca_len;
630         len = sz > 1 ? sz - 1 : sz;
631         if (strlen(str) > len)
632             return gripe("field %d takes at most %d characters",
633                          fldno + 1, (int)len);
634         old = memb_ptr;
635         if (must_match)
636             mismatch = !str || strncmp(old, str, len);
637         else
638             strncpy(memb_ptr, str, sz);
639         break;
640     default:
641         return gripe("field %d doesn't take strings", fldno + 1);
642     }
643
644     if (mismatch) {
645         if (old)
646             return gripe("value for field %d must be \"%.*s\"",
647                          fldno + 1, (int)len, old);
648         else
649             return gripe("value for field %d must be nil", fldno + 1);
650     }
651
652     return 0;
653 }
654
655 /*
656  * Save the current row's fields in its object.
657  * Return 0 on success, -1 on failure.
658  */
659 static int
660 putrow(void)
661 {
662     int i, ret = 0;
663     void *obj;
664
665     obj = rowobj();
666     if (!obj)
667         return -1;
668
669     for (i = 0; i < nflds; i++) {
670         switch (fldval[i].val_type) {
671         case NSC_DOUBLE:
672             ret |= putnum(obj, i, fldval[i].val_as.dbl);
673             break;
674         case NSC_STRING:
675             ret |= putstr(obj, i, fldval[i].val_as.str.base);
676             free(fldval[i].val_as.str.base);
677             break;
678         default:
679             CANT_REACH();
680             ret = -1;
681         }
682     }
683
684     return ret;
685 }
686
687 /*
688  * Read and ignore field separators from FP.
689  * Return first character that is not a field separator.
690  */
691 static int
692 skipfs(FILE *fp)
693 {
694     int ch;
695
696     do {
697         ch = getc(fp);
698     } while (ch == ' ' || ch == '\t');
699
700     if (ch == '#') {
701         do {
702             ch = getc(fp);
703         } while (ch != EOF && ch != '\n');
704     }
705
706     return ch;
707 }
708
709 /*
710  * Decode escape sequences in BUF.
711  * Return BUF on success, null pointer on failure.
712  */
713 static char *
714 xuesc(char *buf)
715 {
716     char *src, *dst;
717     int octal_chr, n;
718
719     dst = buf;
720     src = buf;
721     while (*src) {
722         if (*src == '\\') {
723             if (sscanf(++src, "%3o%n", &octal_chr, &n) != 1 || n != 3)
724                 return NULL;
725             *dst++ = (char)octal_chr;
726             src += 3;
727         } else
728             *dst++ = *src++;
729     }
730     *dst = '\0';
731     return buf;
732 }
733
734 /*
735  * Read an identifier from FP into BUF.
736  * BUF must have space for 1024 characters.
737  * Return number of characters read on success, -1 on failure.
738  */
739 static int
740 getid(FILE *fp, char *buf)
741 {
742     int n;
743     if (fscanf(fp, "%1023[^\"#()<>= \t\n]%n", buf, &n) != 1
744         || !isalpha(buf[0]))
745         return -1;
746     xuesc(buf);
747     return n;
748 }
749
750 /*
751  * Try to read a field name from FP.
752  * I is the field number, counting from zero.
753  * If a name is read, set fldca[I] and fldidx[I] for it, and update
754  * caflds[].
755  * Return 1 if a name or ... was read, 0 on end of line, -1 on error.
756  */
757 static int
758 xufldname(FILE *fp, int i)
759 {
760     int ch, idx;
761     char buf[1024];
762
763     ch = skipfs(fp);
764     switch (ch) {
765     case EOF:
766         return gripe("unexpected EOF");
767     case '\n':
768         nflds = i - (ellipsis != 0);
769         if (chkflds() < 0)
770             return -1;
771         lineno++;
772         return 0;
773     case '.':
774         if (getc(fp) != '.' || getc(fp) != '.')
775             return gripe("junk in header field %d", i + 1);
776         if (i == 0)
777             return gripe("header fields expected");
778         ellipsis = 1;
779         ch = skipfs(fp);
780         if (ch != EOF && ch != '\n')
781             return gripe("junk after ...");
782         ungetc(ch, fp);
783         return 1;
784     default:
785         ungetc(ch, fp);
786         if (getid(fp, buf) < 0)
787             return gripe("junk in header field %d", i + 1);
788         ch = getc(fp);
789         if (ch != '(') {
790             ungetc(ch, fp);
791             return deffld(i, buf, -1);
792         }
793         ch = getc(fp);
794         ungetc(ch, fp);
795         if (isdigit(ch) || ch == '-' || ch == '+') {
796             if (fscanf(fp, "%d", &idx) != 1)
797                 return gripe("malformed number in index of header field %d",
798                              i + 1);
799             if (idx < 0)
800                 return gripe("index must not be negative in header field %d",
801                              i + 1);
802         } else {
803             if (getid(fp, buf) < 0)
804                 return gripe("malformed index in header field %d", i + 1);
805             return gripe("symbolic index in header field %d not yet implemented",
806                          i + 1);
807         }
808         ch = getc(fp);
809         if (ch != ')')
810             return gripe("malformed index in header field %d", i + 1);
811         return deffld(i, buf, idx);
812     }
813 }
814
815 /*
816  * Try to read a field value from FP.
817  * I is the field number, counting from zero.
818  * Return 1 if a value was read, 0 on end of line, -1 on error.
819  */
820 static int
821 xufld(FILE *fp, int i)
822 {
823     int ch, j;
824     char buf[1024];
825     double dbl;
826     long set;
827
828     ch = skipfs(fp);
829     switch (ch) {
830     case EOF:
831         return gripe("unexpected EOF");
832     case '\n':
833         CANT_HAPPEN(i > nflds);
834         for (j = i; j < nflds; j++) {
835             if (CA_IS_ARRAY(fldca[j]))
836                 gripe("field '%s(%d)' missing",
837                       fldca[j]->ca_name, fldidx[j]);
838             else
839                 gripe("field '%s' missing", fldca[j]->ca_name);
840         }
841         if (i != nflds || putrow() < 0)
842             return -1;
843         lineno++;
844         return i < nflds ? -1 : 0;
845     case '+': case '-': case '.':
846     case '0': case '1': case '2': case '3': case '4':
847     case '5': case '6': case '7': case '8': case '9':
848         ungetc(ch, fp);
849         if (fscanf(fp, "%lg", &dbl) != 1)
850             return gripe("malformed number in field %d", i + 1);
851         return setnum(i, dbl);
852     case '"':
853         ch = getc(fp);
854         if (ch == '"')
855             buf[0] = 0;
856         else {
857             ungetc(ch, fp);
858             if (fscanf(fp, "%1023[^\"\n]", buf) != 1 || getc(fp) != '"')
859                 return gripe("malformed string in field %d", i + 1);
860             if (!xuesc(buf))
861                 return gripe("invalid escape sequence in field %d",
862                              i + 1);
863         }
864         return setstr(i, buf);
865     case '(':
866         if (mtsymset(i, &set) < 0)
867             return -1;
868         for (;;) {
869             ch = skipfs(fp);
870             if (ch == EOF || ch == '\n')
871                 return gripe("unmatched '(' in field %d", i + 1);
872             if (ch == ')')
873                 break;
874             ungetc(ch, fp);
875             if (getid(fp, buf) < 0)
876                 return gripe("junk in field %d", i + 1);
877             if (add2symset(i, &set, buf) < 0)
878                 return -1;
879         }
880         return setnum(i, set);
881     default:
882         ungetc(ch, fp);
883         if (getid(fp, buf) < 0)
884             return gripe("junk in field %d", i + 1);
885         if (!strcmp(buf, "nil"))
886             return setstr(i, NULL);
887         else
888             return setsym(i, buf);
889     }
890 }
891
892 /*
893  * Read fields from FP.
894  * Use PARSE() to read each field.
895  * Return number of fields read on success, -1 on error.
896  */
897 static int
898 xuflds(FILE *fp, int (*parse)(FILE *, int))
899 {
900     int i, ch, res;
901
902     for (i = 0; ; i++) {
903         res = parse(fp, i);
904         if (res < 0)
905             return -1;
906         if (res == 0)
907             return i;
908         ch = getc(fp);
909         if (ch == '\n')
910             ungetc(ch, fp);
911         else if (ch != ' ' && ch != '\t')
912             return gripe("bad field separator after field %d", i + 1);
913     }
914 }
915
916 /*
917  * Define the FLDNO-th field.
918  * If IDX is negative, define as selector NAME, else as NAME(IDX).
919  * Set fldca[FLDNO] and fldidx[FLDNO] accordingly.
920  * Update caflds[].
921  * Return 1 on success, -1 on error.
922  */
923 static int
924 deffld(int fldno, char *name, int idx)
925 {
926     struct castr *ca = ef_cadef(cur_type);
927     int res;
928
929     res = stmtch(name, ca, offsetof(struct castr, ca_name),
930                  sizeof(struct castr));
931     if (res < 0)
932         return gripe("%s header '%s' in field %d",
933                      res == M_NOTUNIQUE ? "ambiguous" : "unknown",
934                      name, fldno + 1);
935     if ((ca[res].ca_flags & NSC_EXTRA) || CANT_HAPPEN(ca[res].ca_get))
936         return gripe("extraneous header '%s' in field %d", name, fldno + 1);
937     if (CA_IS_ARRAY(&ca[res])) {
938         if (idx < 0)
939             return gripe("header '%s' requires an index in field %d",
940                          ca[res].ca_name, fldno + 1);
941         if (idx != caflds[res] && idx < ca[res].ca_len)
942             return gripe("expected header '%s(%d)' in field %d",
943                          ca[res].ca_name, caflds[res], fldno + 1);
944         if (idx >= ca[res].ca_len)
945             return gripe("unexpected header '%s(%d)' in field %d",
946                          ca[res].ca_name, idx, fldno + 1);
947     } else {
948         if (idx >= 0)
949             return gripe("header '%s' doesn't take an index in field %d",
950                          ca[res].ca_name, fldno + 1);
951         idx = 0;
952         if (caflds[res])
953             return gripe("duplicate header '%s' in field %d",
954                          ca[res].ca_name, fldno + 1);
955     }
956     fldca[fldno] = &ca[res];
957     fldidx[fldno] = idx;
958     caflds[res]++;
959     return 1;
960 }
961
962 /*
963  * Check fields in xdump are sane.
964  * Return 0 on success, -1 on error.
965  */
966 static int
967 chkflds(void)
968 {
969     struct castr *ca = ef_cadef(cur_type);
970     int i, len, cafldsmax, res = 0;
971
972     if (ellipsis)
973         return res;             /* table is split, another part expected */
974
975     /* Check for missing fields */
976     for (i = 0; ca[i].ca_name; i++) {
977         cafldsmax = MAX(caflds[i], cafldspp[i]);
978         if (ca[i].ca_flags & NSC_EXTRA)
979             continue;
980         len = CA_ARRAY_LEN(&ca[i]);
981         if (!len && !cafldsmax)
982             res = gripe("header '%s' missing", ca[i].ca_name);
983         else if (len && cafldsmax == len - 1)
984             res = gripe("header '%s(%d)' missing",
985                         ca[i].ca_name, len - 1);
986         else if (len && cafldsmax < len - 1)
987             res = gripe("header '%s(%d)' ... '%s(%d)' missing",
988                         ca[i].ca_name, cafldsmax, ca[i].ca_name, len - 1);
989     }
990
991     return res;
992 }
993
994 /*
995  * Set value of field FLDNO in current row to DBL.
996  * Return 1 on success, -1 on error.
997  */
998 static int
999 setnum(int fldno, double dbl)
1000 {
1001     if (!getfld(fldno, NULL))
1002         return -1;
1003     fldval[fldno].val_cat = NSC_VAL;
1004     fldval[fldno].val_type = NSC_DOUBLE;
1005     fldval[fldno].val_as.dbl = dbl;
1006     return 1;
1007 }
1008
1009 /*
1010  * Set value of field FLDNO in current row to STR.
1011  * Return 1 on success, -1 on error.
1012  */
1013 static int
1014 setstr(int fldno, char *str)
1015 {
1016     if (!getfld(fldno, NULL))
1017         return -1;
1018     fldval[fldno].val_cat = NSC_VAL;
1019     fldval[fldno].val_type = NSC_STRING;
1020     fldval[fldno].val_as.str.base = str ? strdup(str) : NULL;
1021     fldval[fldno].val_as.str.maxsz = INT_MAX;
1022                                 /* really SIZE_MAX, but that's C99 */
1023     return 1;
1024 }
1025
1026 /*
1027  * Resolve symbol name ID in table referred to by CA.
1028  * Use field number N for error messages.
1029  * Return index in referred table on success, -1 on failure.
1030  */
1031 static int
1032 xunsymbol(char *id, struct castr *ca, int n)
1033 {
1034     int i = ef_elt_byname(ca->ca_table, id);
1035     if (i < 0)
1036         return gripe("%s %s symbol '%s' in field %d",
1037                      i == M_NOTUNIQUE ? "ambiguous" : "unknown",
1038                      ca->ca_name, id, n + 1);
1039     return i;
1040 }
1041
1042 /*
1043  * Map symbol index to symbol value.
1044  * CA is the table, and I is the index in it.
1045  */
1046 static int
1047 symval(struct castr *ca, int i)
1048 {
1049     int type = ca->ca_table;
1050
1051     if (type != EF_BAD && ef_cadef(type) == symbol_ca)
1052         /* symbol table, value is in the table */
1053         return ((struct symbol *)ef_ptr(type, i))->value;
1054     /* value is the table index */
1055     return i;
1056 }
1057
1058 /*
1059  * Set value of field FLDNO in current object to value of symbol SYM.
1060  * Return 1 on success, -1 on error.
1061  */
1062 static int
1063 setsym(int fldno, char *sym)
1064 {
1065     struct castr *ca;
1066     int i;
1067
1068     ca = getfld(fldno, NULL);
1069     if (!ca)
1070         return -1;
1071
1072     if (ca->ca_table == EF_BAD || (ca->ca_flags & NSC_BITS))
1073         return gripe("field %d doesn't take symbols", fldno + 1);
1074
1075     i = xunsymbol(sym, ca, fldno);
1076     if (i < 0)
1077         return -1;
1078     return setnum(fldno, symval(ca, i));
1079 }
1080
1081 /*
1082  * Create an empty symbol set for field FLDNO in *SET.
1083  * Return 1 on success, -1 on error.
1084  */
1085 static int
1086 mtsymset(int fldno, long *set)
1087 {
1088     struct castr *ca;
1089
1090     ca = getfld(fldno, NULL);
1091     if (!ca)
1092         return -1;
1093
1094     if (ca->ca_table == EF_BAD || ef_cadef(ca->ca_table) != symbol_ca
1095         || !(ca->ca_flags & NSC_BITS))
1096         return gripe("field %d doesn't take symbol sets", fldno + 1);
1097     *set = 0;
1098     return 0;
1099 }
1100
1101 /*
1102  * Add a symbol to a symbol set for field FLDNO in *SET.
1103  * SYM is the name of the symbol to add.
1104  * Return 1 on success, -1 on error.
1105  */
1106 static int
1107 add2symset(int fldno, long *set, char *sym)
1108 {
1109     struct castr *ca;
1110     int i;
1111
1112     ca = getfld(fldno, NULL);
1113     if (!ca)
1114         return -1;
1115
1116     i = xunsymbol(sym, ca, fldno);
1117     if (i < 0)
1118         return -1;
1119     *set |= symval(ca, i);
1120     return 0;
1121 }
1122
1123 /*
1124  * Read an xdump table header line from FP.
1125  * Expect header for EXPECTED_TABLE, unless it is EF_BAD.
1126  * Recognize header for machine- and human-readable syntax, and set
1127  * human accordingly.
1128  * Return table type on success, -2 on EOF before header, -1 on failure.
1129  */
1130 static int
1131 xuheader(FILE *fp, int expected_table)
1132 {
1133     char name[64];
1134     int res, ch;
1135     int type;
1136
1137     while ((ch = skipfs(fp)) == '\n')
1138         lineno++;
1139     if (ch == EOF && expected_table == EF_BAD)
1140         return -2;
1141     ungetc(ch, fp);
1142
1143     human = ch == 'c';
1144     res = -1;
1145     if ((human
1146          ? fscanf(fp, "config%*[ \t]%63[^ \t#\n]%n", name, &res) != 1
1147          : fscanf(fp, "XDUMP%*[ \t]%63[^ \t#\n]%*[ \t]%*[^ \t#\n]%n",
1148                   name, &res) != 1) || res < 0)
1149         return gripe("expected xdump header");
1150
1151     type = ef_byname(name);
1152     if (type < 0)
1153         return gripe("unknown table '%s'", name);
1154     if (expected_table != EF_BAD && expected_table != type)
1155         return gripe("expected table '%s', not '%s'",
1156                      ef_nameof(expected_table), name);
1157
1158     if (!empfile[type].file
1159         || !ef_cadef(type) || !(ef_flags(type) & EFF_MEM)) {
1160         CANT_HAPPEN(expected_table != EF_BAD);
1161         return gripe("table '%s' is not permitted here", name);
1162     }
1163
1164     if (skipfs(fp) != '\n')
1165         return gripe("junk after xdump header");
1166     lineno++;
1167
1168     return type;
1169 }
1170
1171 /*
1172  * Find fields in this xdump.
1173  * If reading human-readable syntax, read a field header line from FP.
1174  * Else take fields from the table's selectors in CA[].
1175  * Set ellipsis, nflds, fldca[], fldidx[] and caflds[] accordingly.
1176  * Return 0 on success, -1 on failure.
1177  */
1178 static int
1179 xufldhdr(FILE *fp, struct castr ca[])
1180 {
1181     struct castr **fca;
1182     int *fidx;
1183     int ch, i, j, n;
1184
1185     for (i = 0; ca[i].ca_name; i++)
1186         caflds[i] = 0;
1187     ellipsis = 0;
1188
1189     if (human) {
1190         while ((ch = skipfs(fp)) == '\n')
1191             lineno++;
1192         ungetc(ch, fp);
1193         if (xuflds(fp, xufldname) < 0)
1194             return -1;
1195     } else {
1196         fca = fldca;
1197         fidx = fldidx;
1198
1199         for (i = 0; ca[i].ca_name; i++) {
1200             if ((ca[i].ca_flags & NSC_EXTRA))
1201                 continue;
1202             n = CA_ARRAY_LEN(&ca[i]);
1203             j = 0;
1204             do {
1205                 *fca++ = &ca[i];
1206                 *fidx++ = j;
1207             } while (++j < n);
1208         }
1209
1210         nflds = fidx - fldidx;
1211     }
1212
1213     return 0;
1214 }
1215
1216 /*
1217  * Read xdump footer from FP.
1218  * CA[] contains the table's selectors.
1219  * The body had RECS records.
1220  * Update cafldspp[] from caflds[].
1221  * Return 0 on success, -1 on failure.
1222  */
1223 static int
1224 xufooter(FILE *fp, struct castr ca[], int recs)
1225 {
1226     int res, n, i;
1227
1228     res = -1;
1229     if (human) {
1230         if (fscanf(fp, "config%n", &res) != 0 || res < 0)
1231             return gripe("malformed table footer");
1232     } else {
1233         if (fscanf(fp, "%d", &n) != 1)
1234             return gripe("malformed table footer");
1235         if (recs != n)
1236             return gripe("expected footer /%d", recs);
1237     }
1238     if (skipfs(fp) != '\n')
1239         return gripe("junk after table footer");
1240     if (tbl_part_done() < 0)
1241         return -1;
1242     lineno++;
1243
1244     for (i = 0; ca[i].ca_name; i++) {
1245         if (cafldspp[i] < caflds[i])
1246             cafldspp[i] = caflds[i];
1247     }
1248
1249     return 0;
1250 }
1251
1252 /*
1253  * Read an xdump table from FP.
1254  * Both machine- and human-readable xdump syntax are recognized.
1255  * Expect table EXPECTED_TABLE, unless it is EF_BAD.
1256  * Report errors to stderr.
1257  * Messages assume FP starts in the file FILE at line *PLNO.
1258  * Update *PLNO to reflect lines read from FP.
1259  * Return table type on success, -2 on EOF before header, -1 on failure.
1260  */
1261 int
1262 xundump(FILE *fp, char *file, int *plno, int expected_table)
1263 {
1264     struct castr *ca;
1265     int type, nca, nf, i, ch;
1266
1267     fname = file;
1268     lineno = *plno;
1269
1270     if ((type = xuheader(fp, expected_table)) < 0)
1271         return type;
1272
1273     ca = ef_cadef(type);
1274     if (CANT_HAPPEN(!ca))
1275         return -1;
1276
1277     nca = nf = 0;
1278     for (i = 0; ca[i].ca_name; i++) {
1279         nca++;
1280         if (!(ca[i].ca_flags & NSC_EXTRA))
1281             nf += MAX(1, CA_ARRAY_LEN(&ca[i]));
1282     }
1283     fldca = malloc(nf * sizeof(*fldca));
1284     fldidx = malloc(nf * sizeof(*fldidx));
1285     fldval = malloc(nf * sizeof(*fldval));
1286     caflds = malloc(nca * sizeof(*caflds));
1287     cafldspp = calloc(nca, sizeof(*cafldspp));
1288
1289     tbl_start(type);
1290     if (xutail(fp, ca) < 0)
1291         type = EF_BAD;
1292     tbl_end();
1293
1294     free(cafldspp);
1295     free(caflds);
1296     free(fldval);
1297     free(fldidx);
1298     free(fldca);
1299
1300     /* Skip empty lines so that callers can easily check for EOF */
1301     while ((ch = skipfs(fp)) == '\n')
1302         lineno++;
1303     ungetc(ch, fp);
1304
1305     *plno = lineno;
1306     return type;
1307 }
1308
1309 /*
1310  * Read the remainder of an xdump after the table header line from FP.
1311  * CA[] contains the table's selectors.
1312  * Return 0 on success, -1 on failure.
1313  */
1314 static int
1315 xutail(FILE *fp, struct castr *ca)
1316 {
1317     int recs;
1318
1319     for (;;) {
1320         if (xufldhdr(fp, ca) < 0)
1321             return -1;
1322         if ((recs = xubody(fp)) < 0)
1323             return -1;
1324         if (xufooter(fp, ca, recs) < 0)
1325             return -1;
1326         if (!ellipsis)
1327             return 0;
1328         if (xuheader(fp, cur_type) < 0)
1329             return -1;
1330     }
1331 }
1332
1333 /*
1334  * Read the body of an xdump table from FP.
1335  * Return number of rows read on success, -1 on failure.
1336  */
1337 static int
1338 xubody(FILE *fp)
1339 {
1340     int i, ch;
1341
1342     for (i = 0;; ++i) {
1343         while ((ch = skipfs(fp)) == '\n')
1344             lineno++;
1345         if (ch == '/')
1346             break;
1347         ungetc(ch, fp);
1348         if (xuflds(fp, xufld) < 0)
1349             return -1;
1350     }
1351     return i;
1352 }