]> git.pond.sub.org Git - empserver/blob - src/lib/common/ef_verify.c
(verify_row): uid check was too strict.
[empserver] / src / lib / common / ef_verify.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program 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 2 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, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  ef_verify.c: Verify game configuration
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  */
33
34 #include <config.h>
35
36 #include <stdarg.h>
37 #include <stdio.h>
38
39 #include "prototypes.h"
40 #include "file.h"
41 #include "nsc.h"
42
43 static void verify_fail(int, int, struct castr *, char *, ...)
44     ATTRIBUTE((format (printf, 4, 5)));
45
46 static void
47 verify_fail(int type, int row, struct castr *ca, char *fmt, ...)
48 {
49     int i;
50     va_list ap;
51
52     /* Find base table of view, if any */
53     for (i = 0; empfile[i].cache == empfile[type].cache; i++) ;
54
55     fprintf(stderr, "%s %s uid %d field %s: ",
56             EF_IS_GAME_STATE(i) ? "File" : "Config",
57             ef_nameof(type), row, ca->ca_name);
58     va_start(ap, fmt);
59     vfprintf(stderr, fmt, ap);
60     va_end(ap);
61     putc('\n', stderr);
62 }
63
64 static int
65 verify_row(int type, int row)
66 {
67     struct castr *ca = ef_cadef(type);
68     void *row_ref;
69     int i, j, k, n;
70     struct castr *ca_sym;
71     struct valstr val;
72     int ret_val = 0; 
73     int in_mem = (ef_flags(type) & EFF_MEM) != 0; 
74  
75     if (in_mem)
76         row_ref = ef_ptr(type, row); 
77     else {
78         row_ref = malloc(empfile[type].size); 
79         ef_read(type, row, row_ref);
80     }
81
82     for (i = 0; ca[i].ca_name; ++i) {
83         if (ca[i].ca_flags & NSC_EXTRA)
84             continue;
85         n = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0;
86         j = 0;
87         do {
88             if (ca[i].ca_table == EF_BAD)
89                 continue;
90             /* FIXME use xdeval() */
91             val.val_type = ca[i].ca_type;
92             val.val_cat = NSC_OFF;
93             val.val_as.sym.off = ca[i].ca_off;
94             val.val_as.sym.len = ca[i].ca_len;
95             val.val_as.sym.idx = j;
96             nstr_exec_val(&val, 0, row_ref, NSC_NOTYPE);
97             if (val.val_type != NSC_LONG && val.val_type != NSC_TYPEID)
98                 continue;
99             ca_sym = ef_cadef(ca[i].ca_table);
100             if (ca[i].ca_flags & NSC_BITS) {
101                 /* symbol set */
102                 if (CANT_HAPPEN(ca_sym != symbol_ca)) {
103                     ret_val = -1;
104                     continue;
105                 }
106                 for (k = 0; k < (int)sizeof(long) * 8; k++) {
107                     if (val.val_as.lng & (1L << k))
108                         if (!symbol_by_value(1L << k,
109                                              ef_ptr(ca[i].ca_table, 0))) {
110                             verify_fail(type, row, &ca[i],
111                                         "bit %d is not in symbol table %s",
112                                         k, ef_nameof(ca[i].ca_table));
113                             ret_val = -1;
114                         }
115                 }
116             } else if (ca[i].ca_table == type && i == 0) {
117                 /* uid */
118                 /* Some files contain zeroed records, cope */
119                 /* TODO tighten this check */
120                 if (val.val_as.lng == 0)
121                     continue;
122                 if (val.val_as.lng != row) {
123                     verify_fail(type, row, &ca[i],
124                                 "value is %ld instead of %d",
125                                 val.val_as.lng, row);
126                     ret_val = -1;
127                 }
128
129             } else if (ca_sym == symbol_ca) {
130                 /* symbol */
131                 if (!symbol_by_value(val.val_as.lng,
132                                      ef_ptr(ca[i].ca_table, 0))) {
133                     verify_fail(type, row, &ca[i],
134                                 "value %ld is not in symbol table %s",
135                                 val.val_as.lng, ef_nameof(ca[i].ca_table));
136                     ret_val = -1;
137                 }
138             } else {
139                 /* table index */
140                 if (val.val_as.lng >= ef_nelem(ca[i].ca_table)
141                     || val.val_as.lng < -1) {
142                     verify_fail(type, row, &ca[i],
143                         "value %ld indexes table %s out of bounds 0..%d",
144                         val.val_as.lng, ef_nameof(ca[i].ca_table),
145                         ef_nelem(ca[i].ca_table));
146                     ret_val = -1;
147                 }
148             }
149         } while (++j < n);
150     } 
151     if (!in_mem)
152         free(row_ref);
153     return ret_val;
154 }
155
156 int
157 ef_verify()
158 {
159     struct empfile *ep;
160     int retval = 0;
161     int i;
162
163     for (ep = empfile; ep->name; ep++) {
164         if (!ef_cadef(ep->uid))
165             continue;
166         for (i = 0; i < ef_nelem(ep->uid); i++) {
167             retval += verify_row(ep->uid, i);
168         }
169     }
170     return retval;
171 }