]> git.pond.sub.org Git - empserver/blob - src/lib/common/ef_verify.c
New nstr_mksymval() to create symbolic values
[empserver] / src / lib / common / ef_verify.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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 #include <stdlib.h>
39 #include "file.h"
40 #include "misc.h"
41 #include "nsc.h"
42 #include "product.h"
43
44 static void verify_fail(int, int, struct castr *, int, char *, ...)
45     ATTRIBUTE((format (printf, 5, 6)));
46
47 static void
48 verify_fail(int type, int row, struct castr *ca, int idx, char *fmt, ...)
49 {
50     int i;
51     va_list ap;
52
53     /* Find base table of view, if any */
54     for (i = 0; empfile[i].cache == empfile[type].cache; i++) ;
55
56     fprintf(stderr, "%s %s uid %d",
57             EF_IS_GAME_STATE(i) ? "File" : "Config",
58             ef_nameof(type), row);
59     if (ca) {
60         fprintf(stderr, " field %s", ca->ca_name);
61         if (ca->ca_type != NSC_STRINGY && ca->ca_len != 0)
62             fprintf(stderr, "(%d)", idx);
63     }
64     fprintf(stderr, ": ");
65     va_start(ap, fmt);
66     vfprintf(stderr, fmt, ap);
67     va_end(ap);
68     putc('\n', stderr);
69 }
70
71 static int
72 verify_row(int type, int row)
73 {
74     struct castr *ca = ef_cadef(type);
75     struct emptypedstr *row_ref;
76     int i, j, k, n;
77     struct castr *ca_sym;
78     struct valstr val;
79     int ret_val = 0;
80     int flags = ef_flags(type);
81  
82     if (flags & EFF_MEM)
83         row_ref = ef_ptr(type, row); 
84     else {
85         row_ref = malloc(empfile[type].size); 
86         ef_read(type, row, row_ref);
87     }
88
89     if ((flags & EFF_TYPED) && !EF_IS_VIEW(type)) {
90         if (row_ref->ef_type != type || row_ref->uid != row) {
91             verify_fail(type, row, NULL, 0, "header corrupt");
92             ret_val = -1;
93         }
94     }
95
96     for (i = 0; ca[i].ca_name; ++i) {
97         if (ca[i].ca_flags & NSC_EXTRA)
98             continue;
99         n = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0;
100         j = 0;
101         do {
102             if (ca[i].ca_table == EF_BAD)
103                 continue;
104             nstr_mksymval(&val, &ca[i], j);
105             nstr_exec_val(&val, 0, row_ref, NSC_NOTYPE);
106             if (val.val_type != NSC_LONG)
107                 continue;
108             ca_sym = ef_cadef(ca[i].ca_table);
109             if (ca[i].ca_flags & NSC_BITS) {
110                 /* symbol set */
111                 if (CANT_HAPPEN(ca_sym != symbol_ca)) {
112                     ret_val = -1;
113                     continue;
114                 }
115                 for (k = 0; k < (int)sizeof(long) * 8; k++) {
116                     if (val.val_as.lng & (1L << k))
117                         if (!symbol_by_value(1L << k,
118                                              ef_ptr(ca[i].ca_table, 0))) {
119                             verify_fail(type, row, &ca[i], j,
120                                         "bit %d is not in symbol table %s",
121                                         k, ef_nameof(ca[i].ca_table));
122                             ret_val = -1;
123                         }
124                 }
125             } else if (ca[i].ca_table == type && i == 0) {
126                 /* uid */
127                 /* Some files contain zeroed records, cope */
128                 /* TODO tighten this check */
129                 if (val.val_as.lng == 0)
130                     continue;
131                 if (val.val_as.lng != row) {
132                     verify_fail(type, row, &ca[i], j,
133                                 "value is %ld instead of %d",
134                                 val.val_as.lng, row);
135                     ret_val = -1;
136                 }
137
138             } else if (ca_sym == symbol_ca) {
139                 /* symbol */
140                 if (!symbol_by_value(val.val_as.lng,
141                                      ef_ptr(ca[i].ca_table, 0))) {
142                     verify_fail(type, row, &ca[i], j,
143                                 "value %ld is not in symbol table %s",
144                                 val.val_as.lng, ef_nameof(ca[i].ca_table));
145                     ret_val = -1;
146                 }
147             } else {
148                 /* table index */
149                 if (val.val_as.lng >= ef_nelem(ca[i].ca_table)
150                     || val.val_as.lng < -1) {
151                     verify_fail(type, row, &ca[i], j,
152                         "value %ld indexes table %s out of bounds 0..%d",
153                         val.val_as.lng, ef_nameof(ca[i].ca_table),
154                         ef_nelem(ca[i].ca_table));
155                     ret_val = -1;
156                 }
157             }
158         } while (++j < n);
159     } 
160     if (!(flags & EFF_MEM))
161         free(row_ref);
162     return ret_val;
163 }
164
165 int
166 ef_verify()
167 {
168     struct empfile *ep;
169     int retval = 0;
170     int i;
171
172     for (ep = empfile; ep->name; ep++) {
173         if (!ef_cadef(ep->uid))
174             continue;
175         for (i = 0; i < ef_nelem(ep->uid); i++) {
176             retval += verify_row(ep->uid, i);
177         }
178     }
179
180     /* Special checks */
181     for (i = 0; pchr[i].p_sname; i++) {
182         if ((pchr[i].p_type >= 0) == (pchr[i].p_level >= 0)) {
183             fprintf(stderr,
184                 "Config %s uid %d field level doesn't match field type\n",
185                 ef_nameof(EF_PRODUCT), i);
186             retval = -1;
187         }
188     }
189
190     return retval;
191 }