blob: 3462d1afee7d73d198ee82ac8ad67c1ea4b6c020 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001#include <stdio.h>
2#include <string.h>
3#include <errno.h>
4#include <assert.h>
5
6#include <asn1parser.h>
Lev Walkin3140e0e2004-08-18 04:50:37 +00007#include <asn1fix_export.h>
Lev Walkin9095ada2004-08-18 05:41:05 +00008#include <asn1fix_crange.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00009
10#include "asn1print.h"
11
12#define INDENT(fmt, args...) do { \
Lev Walkinf4069d22005-02-15 07:06:05 +000013 if(!(flags & APF_NOINDENT)) { \
14 int __i = level; \
15 while(__i--) printf(" "); \
16 } \
Lev Walkinf15320b2004-06-03 03:38:44 +000017 printf(fmt, ##args); \
18 } while(0)
19
Lev Walkin3140e0e2004-08-18 04:50:37 +000020static int asn1print_module(asn1p_t *asn, asn1p_module_t *mod, enum asn1print_flags flags);
Lev Walkind6db8022005-03-18 03:53:05 +000021static int asn1print_oid(int prior_len, asn1p_oid_t *oid, enum asn1print_flags flags);
Lev Walkin3140e0e2004-08-18 04:50:37 +000022static int asn1print_ref(asn1p_ref_t *ref, enum asn1print_flags flags);
23static int asn1print_tag(asn1p_expr_t *tc, enum asn1print_flags flags);
24static int asn1print_params(asn1p_paramlist_t *pl,enum asn1print_flags flags);
25static int asn1print_with_syntax(asn1p_wsyntx_t *wx, enum asn1print_flags flags);
26static int asn1print_constraint(asn1p_constraint_t *, enum asn1print_flags);
27static int asn1print_value(asn1p_value_t *val, enum asn1print_flags flags);
Lev Walkinf7484512004-10-13 09:13:56 +000028static int asn1print_expr(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *tc, enum asn1print_flags flags, int level);
29static int asn1print_expr_dtd(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *tc, enum asn1print_flags flags, int level);
Lev Walkinf15320b2004-06-03 03:38:44 +000030
31/*
32 * Print the contents of the parsed ASN tree.
33 */
34int
Lev Walkin3140e0e2004-08-18 04:50:37 +000035asn1print(asn1p_t *asn, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +000036 asn1p_module_t *mod;
Lev Walkinc70c2ef2004-09-30 06:38:21 +000037 int modno = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +000038
39 if(asn == NULL) {
40 errno = EINVAL;
41 return -1;
42 }
43
Lev Walkinf7484512004-10-13 09:13:56 +000044 if(flags & APF_PRINT_XML_DTD)
45 printf("<!-- XML DTD generated by asn1c-" VERSION " -->\n\n");
46
Lev Walkinf15320b2004-06-03 03:38:44 +000047 TQ_FOR(mod, &(asn->modules), mod_next) {
Lev Walkin6b3ff542006-03-06 14:51:00 +000048 if(mod->_tags & MT_STANDARD_MODULE)
49 return 0; /* Ignore modules imported from skeletons */
Lev Walkinc70c2ef2004-09-30 06:38:21 +000050 if(modno++) printf("\n");
Lev Walkin3140e0e2004-08-18 04:50:37 +000051 asn1print_module(asn, mod, flags);
Lev Walkinf15320b2004-06-03 03:38:44 +000052 }
53
Lev Walkin112d69e2005-03-09 20:52:15 +000054 if(flags & APF_PRINT_XML_DTD) {
55 /* Values for BOOLEAN */
56 printf("<!ELEMENT true EMPTY>\n");
57 printf("<!ELEMENT false EMPTY>\n");
58 }
59
Lev Walkinf15320b2004-06-03 03:38:44 +000060 return 0;
61}
62
63static int
Lev Walkin3140e0e2004-08-18 04:50:37 +000064asn1print_module(asn1p_t *asn, asn1p_module_t *mod, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +000065 asn1p_expr_t *tc;
66
Lev Walkinf7484512004-10-13 09:13:56 +000067 if(flags & APF_PRINT_XML_DTD)
68 printf("<!-- ASN.1 module\n");
69
Lev Walkinb36317c2005-08-12 10:09:10 +000070 printf("%s ", mod->ModuleName);
Lev Walkinf15320b2004-06-03 03:38:44 +000071 if(mod->module_oid) {
Lev Walkinb36317c2005-08-12 10:09:10 +000072 asn1print_oid(strlen(mod->ModuleName), mod->module_oid, flags);
Lev Walkinf15320b2004-06-03 03:38:44 +000073 printf("\n");
74 }
75
Lev Walkinf7484512004-10-13 09:13:56 +000076 if(flags & APF_PRINT_XML_DTD) {
77 if(mod->source_file_name
78 && strcmp(mod->source_file_name, "-"))
79 printf("found in %s", mod->source_file_name);
80 printf(" -->\n\n");
81
82 TQ_FOR(tc, &(mod->members), next) {
83 asn1print_expr_dtd(asn, mod, tc, flags, 0);
84 }
85
86 return 0;
87 }
88
Lev Walkinf15320b2004-06-03 03:38:44 +000089 printf("DEFINITIONS");
90
Lev Walkin3140e0e2004-08-18 04:50:37 +000091 if(mod->module_flags & MSF_TAG_INSTRUCTIONS)
92 printf(" TAG INSTRUCTIONS");
93 if(mod->module_flags & MSF_XER_INSTRUCTIONS)
94 printf(" XER INSTRUCTIONS");
Lev Walkinf15320b2004-06-03 03:38:44 +000095 if(mod->module_flags & MSF_EXPLICIT_TAGS)
96 printf(" EXPLICIT TAGS");
97 if(mod->module_flags & MSF_IMPLICIT_TAGS)
98 printf(" IMPLICIT TAGS");
99 if(mod->module_flags & MSF_AUTOMATIC_TAGS)
100 printf(" AUTOMATIC TAGS");
101 if(mod->module_flags & MSF_EXTENSIBILITY_IMPLIED)
102 printf(" EXTENSIBILITY IMPLIED");
103
104 printf(" ::=\n");
105 printf("BEGIN\n\n");
106
107 TQ_FOR(tc, &(mod->members), next) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000108 asn1print_expr(asn, mod, tc, flags, 0);
Lev Walkind370e9f2006-03-16 10:03:35 +0000109 if(flags & APF_PRINT_CONSTRAINTS)
Lev Walkinb1ef3962004-08-20 13:24:28 +0000110 printf("\n");
111 else
112 printf("\n\n");
Lev Walkinf15320b2004-06-03 03:38:44 +0000113 }
114
115 printf("END\n");
116
117 return 0;
118}
119
120static int
Lev Walkind6db8022005-03-18 03:53:05 +0000121asn1print_oid(int prior_len, asn1p_oid_t *oid, enum asn1print_flags flags) {
122 size_t accum = prior_len;
Lev Walkinf15320b2004-06-03 03:38:44 +0000123 int ac;
Lev Walkinf15320b2004-06-03 03:38:44 +0000124
Lev Walkind9bd7752004-06-05 08:17:50 +0000125 (void)flags; /* Unused argument */
126
Lev Walkinf15320b2004-06-03 03:38:44 +0000127 printf("{");
128 for(ac = 0; ac < oid->arcs_count; ac++) {
Lev Walkin4efbfb72005-02-25 14:20:30 +0000129 const char *arcname = oid->arcs[ac].name;
130
Lev Walkin5b7eeaf2005-03-28 17:52:43 +0000131 if(accum + strlen(arcname ? arcname : "") > 72) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000132 printf("\n\t");
Lev Walkin5b7eeaf2005-03-28 17:52:43 +0000133 accum = 8;
Lev Walkind6db8022005-03-18 03:53:05 +0000134 } else {
135 accum += printf(" ");
Lev Walkin4efbfb72005-02-25 14:20:30 +0000136 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000137
Lev Walkin4efbfb72005-02-25 14:20:30 +0000138 if(arcname) {
Lev Walkind6db8022005-03-18 03:53:05 +0000139 accum += printf("%s", arcname);
Lev Walkin0056aec2004-09-05 10:38:50 +0000140 if(oid->arcs[ac].number >= 0) {
Lev Walkind6db8022005-03-18 03:53:05 +0000141 accum += printf("(%" PRIdASN ")",
142 oid->arcs[ac].number);
Lev Walkin0056aec2004-09-05 10:38:50 +0000143 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000144 } else {
Lev Walkind6db8022005-03-18 03:53:05 +0000145 accum += printf("%" PRIdASN, oid->arcs[ac].number);
Lev Walkinf15320b2004-06-03 03:38:44 +0000146 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000147 }
148 printf(" }");
149
150 return 0;
151}
152
153static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000154asn1print_ref(asn1p_ref_t *ref, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000155 int cc;
156
Lev Walkind9bd7752004-06-05 08:17:50 +0000157 (void)flags; /* Unused argument */
158
Lev Walkinf15320b2004-06-03 03:38:44 +0000159 for(cc = 0; cc < ref->comp_count; cc++) {
160 if(cc) printf(".");
161 printf("%s", ref->components[cc].name);
162 }
163
164 return 0;
165}
166
167static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000168asn1print_tag(asn1p_expr_t *tc, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000169 struct asn1p_type_tag_s *tag = &tc->tag;
170
Lev Walkind9bd7752004-06-05 08:17:50 +0000171 (void)flags; /* Unused argument */
172
Lev Walkin71160962005-06-02 05:21:53 +0000173 printf("%s", asn1p_tag2string(tag, 0));
Lev Walkinf15320b2004-06-03 03:38:44 +0000174
175 return 0;
176}
177
178static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000179asn1print_value(asn1p_value_t *val, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000180
181 if(val == NULL)
182 return 0;
183
184 switch(val->type) {
185 case ATV_NOVALUE:
186 break;
Lev Walkinb1e07082004-09-15 11:44:55 +0000187 case ATV_NULL:
188 printf("NULL");
189 return 0;
190 case ATV_REAL:
191 printf("%f", val->value.v_double);
192 return 0;
Lev Walkina9532f42006-09-17 04:52:50 +0000193 case ATV_TYPE:
194 asn1print_expr(val->value.v_type->module->asn1p,
195 val->value.v_type->module,
196 val->value.v_type, flags, 0);
197 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000198 case ATV_INTEGER:
Lev Walkin33c16ba2004-09-24 21:01:43 +0000199 printf("%" PRIdASN, val->value.v_integer);
Lev Walkinf15320b2004-06-03 03:38:44 +0000200 return 0;
201 case ATV_MIN: printf("MIN"); return 0;
202 case ATV_MAX: printf("MAX"); return 0;
203 case ATV_FALSE: printf("FALSE"); return 0;
204 case ATV_TRUE: printf("TRUE"); return 0;
Lev Walkin1e448d32005-03-24 14:26:38 +0000205 case ATV_TUPLE:
206 printf("{%d, %d}",
207 (int)(val->value.v_integer >> 4),
208 (int)(val->value.v_integer & 0x0f));
209 return 0;
210 case ATV_QUADRUPLE:
211 printf("{%d, %d, %d, %d}",
212 (int)((val->value.v_integer >> 24) & 0xff),
213 (int)((val->value.v_integer >> 16) & 0xff),
214 (int)((val->value.v_integer >> 8) & 0xff),
215 (int)((val->value.v_integer >> 0) & 0xff)
216 );
217 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000218 case ATV_STRING:
219 {
Lev Walkin84fbd722005-06-15 18:41:50 +0000220 char *p = (char *)val->value.string.buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000221 putchar('"');
222 if(strchr(p, '"')) {
223 /* Mask quotes */
224 for(; *p; p++) {
225 if(*p == '"')
226 putchar(*p);
227 putchar(*p);
228 }
229 } else {
230 fputs(p, stdout);
231 }
232 putchar('"');
233 }
234 return 0;
235 case ATV_UNPARSED:
Lev Walkin84fbd722005-06-15 18:41:50 +0000236 fputs((char *)val->value.string.buf, stdout);
Lev Walkinf15320b2004-06-03 03:38:44 +0000237 return 0;
238 case ATV_BITVECTOR:
239 {
240 uint8_t *bitvector;
241 int bits;
242 int i;
243
244 bitvector = val->value.binary_vector.bits;
245 bits = val->value.binary_vector.size_in_bits;
246
247 printf("'");
248 if(bits%8) {
249 for(i = 0; i < bits; i++) {
250 uint8_t uc;
251 uc = bitvector[i>>3];
252 putchar(((uc >> (7-(i%8)))&1)?'1':'0');
253 }
254 printf("'B");
255 } else {
256 char hextable[16] = "0123456789ABCDEF";
257 for(i = 0; i < (bits>>3); i++) {
258 putchar(hextable[bitvector[i] >> 4]);
259 putchar(hextable[bitvector[i] & 0x0f]);
260 }
261 printf("'H");
262 }
Lev Walkin043af0d2005-02-24 21:07:35 +0000263 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000264 }
Lev Walkinb1e07082004-09-15 11:44:55 +0000265 case ATV_REFERENCED:
266 return asn1print_ref(val->value.reference, flags);
Lev Walkin5045dfa2006-03-21 09:41:28 +0000267 case ATV_VALUESET:
268 return asn1print_constraint(val->value.constraint, flags);
Lev Walkinb1e07082004-09-15 11:44:55 +0000269 case ATV_CHOICE_IDENTIFIER:
270 printf("%s: ", val->value.choice_identifier.identifier);
271 return asn1print_value(val->value.choice_identifier.value, flags);
Lev Walkinf15320b2004-06-03 03:38:44 +0000272 }
273
274 assert(val->type || !"Unknown");
275
276 return 0;
277}
278
279static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000280asn1print_constraint(asn1p_constraint_t *ct, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000281 int symno = 0;
282
283 if(ct == 0) return 0;
284
285 if(ct->type == ACT_CA_SET)
286 printf("(");
287
288 switch(ct->type) {
Lev Walkinff7dd142005-03-20 12:58:00 +0000289 case ACT_EL_TYPE:
Lev Walkin5045dfa2006-03-21 09:41:28 +0000290 asn1print_value(ct->containedSubtype, flags);
Lev Walkinff7dd142005-03-20 12:58:00 +0000291 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000292 case ACT_EL_VALUE:
293 asn1print_value(ct->value, flags);
294 break;
295 case ACT_EL_RANGE:
296 case ACT_EL_LLRANGE:
297 case ACT_EL_RLRANGE:
298 case ACT_EL_ULRANGE:
299 asn1print_value(ct->range_start, flags);
300 switch(ct->type) {
301 case ACT_EL_RANGE: printf(".."); break;
302 case ACT_EL_LLRANGE: printf("<.."); break;
303 case ACT_EL_RLRANGE: printf("..<"); break;
304 case ACT_EL_ULRANGE: printf("<..<"); break;
305 default: printf("?..?"); break;
306 }
307 asn1print_value(ct->range_stop, flags);
308 break;
309 case ACT_EL_EXT:
310 printf("...");
311 break;
312 case ACT_CT_SIZE:
313 case ACT_CT_FROM:
314 switch(ct->type) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000315 case ACT_CT_SIZE: printf("SIZE("); break;
316 case ACT_CT_FROM: printf("FROM("); break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000317 default: printf("??? ("); break;
318 }
319 assert(ct->el_count != 0);
320 assert(ct->el_count == 1);
321 asn1print_constraint(ct->elements[0], flags);
322 printf(")");
323 break;
324 case ACT_CT_WCOMP:
Lev Walkine596bf02005-03-28 15:01:27 +0000325 assert(ct->el_count != 0);
326 assert(ct->el_count == 1);
327 printf("WITH COMPONENT (");
328 asn1print_constraint(ct->elements[0], flags);
329 printf(")");
Lev Walkin8638f0d2005-03-28 07:50:06 +0000330 break;
Lev Walkine596bf02005-03-28 15:01:27 +0000331 case ACT_CT_WCOMPS: {
332 unsigned int i;
333 printf("WITH COMPONENTS { ");
334 for(i = 0; i < ct->el_count; i++) {
335 asn1p_constraint_t *cel = ct->elements[i];
336 if(i) printf(", ");
337 fwrite(cel->value->value.string.buf,
338 1, cel->value->value.string.size,
339 stdout);
340 if(cel->el_count) {
341 assert(cel->el_count == 1);
342 printf(" ");
343 asn1print_constraint(cel->elements[0],
344 flags);
345 }
346 switch(cel->presence) {
347 case ACPRES_DEFAULT: break;
348 case ACPRES_PRESENT: printf(" PRESENT"); break;
349 case ACPRES_ABSENT: printf(" ABSENT"); break;
350 case ACPRES_OPTIONAL: printf(" OPTIONAL");break;
351 }
352 }
353 printf(" }");
354 }
Lev Walkin8638f0d2005-03-28 07:50:06 +0000355 break;
Lev Walkin1893ddf2005-03-20 14:28:32 +0000356 case ACT_CT_CTDBY:
Lev Walkina9532f42006-09-17 04:52:50 +0000357 printf("(CONSTRAINED BY ");
Lev Walkin1893ddf2005-03-20 14:28:32 +0000358 assert(ct->value->type == ATV_UNPARSED);
359 fwrite(ct->value->value.string.buf,
360 1, ct->value->value.string.size, stdout);
Lev Walkina9532f42006-09-17 04:52:50 +0000361 printf(")");
362 break;
363 case ACT_CT_CTNG:
364 printf("(CONTAINING ");
365 asn1print_expr(ct->value->value.v_type->module->asn1p,
366 ct->value->value.v_type->module,
367 ct->value->value.v_type,
368 flags, 1);
369 printf(")");
Lev Walkinf15320b2004-06-03 03:38:44 +0000370 break;
371 case ACT_CA_SET: symno++;
372 case ACT_CA_CRC: symno++;
373 case ACT_CA_CSV: symno++;
374 case ACT_CA_UNI: symno++;
375 case ACT_CA_INT: symno++;
376 case ACT_CA_EXC:
377 {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000378 char *symtable[] = { " EXCEPT ", " ^ ", " | ", ",",
Lev Walkinf15320b2004-06-03 03:38:44 +0000379 "", "(" };
Lev Walkin0056aec2004-09-05 10:38:50 +0000380 unsigned int i;
Lev Walkina9532f42006-09-17 04:52:50 +0000381 if(ct->type == ACT_CA_CRC) fputs("(", stdout);
Lev Walkinf15320b2004-06-03 03:38:44 +0000382 for(i = 0; i < ct->el_count; i++) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000383 if(i) fputs(symtable[symno], stdout);
384 if(ct->type == ACT_CA_CRC) fputs("{", stdout);
Lev Walkin1e448d32005-03-24 14:26:38 +0000385 asn1print_constraint(ct->elements[i], flags);
Lev Walkinf15320b2004-06-03 03:38:44 +0000386 if(ct->type == ACT_CA_CRC) fputs("}", stdout);
387 if(i+1 < ct->el_count
388 && ct->type == ACT_CA_SET)
389 fputs(")", stdout);
390 }
Lev Walkina9532f42006-09-17 04:52:50 +0000391 if(ct->type == ACT_CA_CRC) fputs(")", stdout);
Lev Walkinf15320b2004-06-03 03:38:44 +0000392 }
393 break;
Lev Walkin1e448d32005-03-24 14:26:38 +0000394 case ACT_CA_AEX:
395 assert(ct->el_count == 1);
396 printf("ALL EXCEPT ");
397 asn1print_constraint(ct->elements[0], flags);
398 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000399 case ACT_INVALID:
400 assert(ct->type != ACT_INVALID);
401 break;
402 }
403
404 if(ct->type == ACT_CA_SET)
405 printf(")");
406
407 return 0;
408}
409
410static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000411asn1print_params(asn1p_paramlist_t *pl, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000412 if(pl) {
413 int i;
414 printf("{");
415 for(i = 0; i < pl->params_count; i++) {
416 if(i) printf(", ");
417 if(pl->params[i].governor) {
418 asn1print_ref(pl->params[i].governor, flags);
419 printf(":");
420 }
421 printf("%s", pl->params[i].argument);
422 }
423 printf("}");
424 }
425
426 return 0;
427}
428
429static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000430asn1print_with_syntax(asn1p_wsyntx_t *wx, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000431 if(wx) {
432 asn1p_wsyntx_chunk_t *wc;
Lev Walkinf15320b2004-06-03 03:38:44 +0000433 TQ_FOR(wc, &(wx->chunks), next) {
Lev Walkin9d542d22006-03-14 16:31:37 +0000434 switch(wc->type) {
435 case WC_LITERAL:
Lev Walkin57074f12006-03-16 05:11:14 +0000436 case WC_WHITESPACE:
Lev Walkind370e9f2006-03-16 10:03:35 +0000437 case WC_FIELD:
Lev Walkin9d542d22006-03-14 16:31:37 +0000438 printf("%s", wc->content.token);
439 break;
Lev Walkin9d542d22006-03-14 16:31:37 +0000440 case WC_OPTIONALGROUP:
441 printf("[");
442 asn1print_with_syntax(wc->content.syntax,flags);
443 printf("]");
444 break;
445 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000446 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000447 }
448
449 return 0;
450}
451
452static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000453asn1print_crange_value(asn1cnst_edge_t *edge, int as_char) {
454 switch(edge->type) {
455 case ARE_MIN: printf("MIN"); break;
456 case ARE_MAX: printf("MAX"); break;
457 case ARE_VALUE:
458 if(as_char) {
459 printf("\"%c\"", (unsigned char)edge->value);
460 } else {
Lev Walkin33c16ba2004-09-24 21:01:43 +0000461 printf("%" PRIdASN, edge->value);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000462 }
463 }
464 return 0;
465}
466
467static int
Lev Walkine8e87f12004-08-25 02:00:03 +0000468asn1print_constraint_explain_type(asn1p_expr_type_e expr_type, asn1p_constraint_t *ct, enum asn1p_constraint_type_e type, int strict_PER_visible) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000469 asn1cnst_range_t *range;
470 int as_char = (type==ACT_CT_FROM);
471 int i;
472
Lev Walkin4b553412005-08-14 14:45:44 +0000473 range = asn1constraint_compute_PER_range(expr_type, ct, type, 0, 0,
474 strict_PER_visible ? CPR_strict_PER_visibility : 0);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000475 if(!range) return -1;
476
Lev Walkine8e87f12004-08-25 02:00:03 +0000477 if(range->incompatible
478 || (strict_PER_visible && range->not_PER_visible)) {
479 asn1constraint_range_free(range);
480 return 0;
481 }
482
Lev Walkin3140e0e2004-08-18 04:50:37 +0000483 switch(type) {
484 case ACT_CT_FROM: printf("(FROM("); break;
485 case ACT_CT_SIZE: printf("(SIZE("); break;
486 default: printf("("); break;
487 }
488 for(i = -1; i < range->el_count; i++) {
489 asn1cnst_range_t *r;
490 if(i == -1) {
491 if(range->el_count) continue;
492 r = range;
493 } else {
494 r = range->elements[i];
495 }
496 if(i > 0) {
497 printf(" | ");
498 }
499 asn1print_crange_value(&r->left, as_char);
500 if(r->left.type != r->right.type
501 || r->left.value != r->right.value) {
502 printf("..");
503 asn1print_crange_value(&r->right, as_char);
504 }
505 }
506 if(range->extensible)
507 printf(",...");
508 printf(type==ACT_EL_RANGE?")":"))");
509
510 if(range->empty_constraint)
511 printf(":Empty!");
512
513 asn1constraint_range_free(range);
514 return 0;
515}
516
517static int
518asn1print_constraint_explain(asn1p_expr_type_e expr_type,
Lev Walkine8e87f12004-08-25 02:00:03 +0000519 asn1p_constraint_t *ct, int s_PV) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000520
Lev Walkine8e87f12004-08-25 02:00:03 +0000521 asn1print_constraint_explain_type(expr_type, ct, ACT_EL_RANGE, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000522 printf(" ");
Lev Walkine8e87f12004-08-25 02:00:03 +0000523 asn1print_constraint_explain_type(expr_type, ct, ACT_CT_SIZE, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000524 printf(" ");
Lev Walkine8e87f12004-08-25 02:00:03 +0000525 asn1print_constraint_explain_type(expr_type, ct, ACT_CT_FROM, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000526
527 return 0;
528}
529
530static int
531asn1print_expr(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *tc, enum asn1print_flags flags, int level) {
Lev Walkinb1ef3962004-08-20 13:24:28 +0000532 int SEQ_OF = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000533
Lev Walkinf4069d22005-02-15 07:06:05 +0000534 if(flags & APF_LINE_COMMENTS && !(flags & APF_NOINDENT))
Lev Walkinf7484512004-10-13 09:13:56 +0000535 INDENT("-- #line %d\n", tc->_lineno);
Lev Walkinef625402005-09-05 05:17:57 +0000536
537 /* Reconstruct compiler directive information */
538 if((tc->marker.flags & EM_INDIRECT)
539 && (tc->marker.flags & EM_OMITABLE) != EM_OMITABLE) {
540 if((flags & APF_NOINDENT))
541 printf(" --<ASN1C.RepresentAsPointer>-- ");
542 else
543 INDENT("--<ASN1C.RepresentAsPointer>--\n");
544 }
545
Lev Walkina00d6b32006-03-21 03:40:38 +0000546 if(tc->Identifier
547 && (!(tc->meta_type == AMT_VALUE && tc->expr_type == A1TC_REFERENCE)
548 || level == 0))
Lev Walkinf15320b2004-06-03 03:38:44 +0000549 INDENT("%s", tc->Identifier);
550
Lev Walkina00d6b32006-03-21 03:40:38 +0000551 if(tc->lhs_params) {
552 asn1print_params(tc->lhs_params, flags);
Lev Walkinf15320b2004-06-03 03:38:44 +0000553 }
554
555 if(tc->meta_type != AMT_VALUE
Lev Walkinc74ea222004-08-25 02:27:47 +0000556 && tc->meta_type != AMT_VALUESET
Lev Walkinf15320b2004-06-03 03:38:44 +0000557 && tc->expr_type != A1TC_EXTENSIBLE) {
558 if(level) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000559 if(tc->Identifier && !(flags & APF_NOINDENT))
Lev Walkinf15320b2004-06-03 03:38:44 +0000560 printf("\t");
561 } else {
562 printf(" ::=");
563 }
564 }
565
566 if(tc->tag.tag_class) {
567 printf(" ");
568 asn1print_tag(tc, flags);
569 }
570
571 switch(tc->expr_type) {
572 case A1TC_EXTENSIBLE:
573 if(tc->value) {
574 printf("!");
575 asn1print_value(tc->value, flags);
576 }
577 break;
Lev Walkinfd151ce2004-08-22 03:08:51 +0000578 case A1TC_COMPONENTS_OF:
579 SEQ_OF = 1; /* Equivalent to SET OF for printint purposes */
580 printf(" COMPONENTS OF");
581 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000582 case A1TC_REFERENCE:
583 case A1TC_UNIVERVAL:
Lev Walkinf15320b2004-06-03 03:38:44 +0000584 break;
585 case A1TC_CLASSDEF:
586 printf(" CLASS");
587 break;
Lev Walkin9c2285a2006-03-09 08:49:26 +0000588 case A1TC_CLASSFIELD_TFS ... A1TC_CLASSFIELD_OSFS:
Lev Walkinf15320b2004-06-03 03:38:44 +0000589 /* Nothing to print here */
590 break;
Lev Walkinb1ef3962004-08-20 13:24:28 +0000591 case ASN_CONSTR_SET_OF:
592 case ASN_CONSTR_SEQUENCE_OF:
593 SEQ_OF = 1;
594 if(tc->expr_type == ASN_CONSTR_SET_OF)
595 printf(" SET");
596 else
597 printf(" SEQUENCE");
598 if(tc->constraints) {
599 printf(" ");
600 asn1print_constraint(tc->constraints, flags);
601 }
602 printf(" OF");
603 break;
Lev Walkin5045dfa2006-03-21 09:41:28 +0000604 case A1TC_VALUESET:
605 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000606 default:
607 {
608 char *p = ASN_EXPR_TYPE2STR(tc->expr_type);
609 printf(" %s", p?p:"<unknown type!>");
610 }
611 break;
612 }
613
Lev Walkinb9d0ae32005-06-02 04:06:24 +0000614 /*
615 * Put the name of the referred type.
616 */
Lev Walkinf15320b2004-06-03 03:38:44 +0000617 if(tc->reference) {
Lev Walkinb9d0ae32005-06-02 04:06:24 +0000618 printf(" ");
Lev Walkinf15320b2004-06-03 03:38:44 +0000619 asn1print_ref(tc->reference, flags);
620 }
621
Lev Walkin5045dfa2006-03-21 09:41:28 +0000622 if(tc->meta_type == AMT_VALUESET && level == 0)
Lev Walkinc74ea222004-08-25 02:27:47 +0000623 printf(" ::=");
624
Lev Walkinf15320b2004-06-03 03:38:44 +0000625 /*
626 * Display the descendants (children) of the current type.
627 */
Lev Walkinc74ea222004-08-25 02:27:47 +0000628 if(TQ_FIRST(&(tc->members))
629 || (tc->expr_type & ASN_CONSTR_MASK)
Lev Walkinc74ea222004-08-25 02:27:47 +0000630 || tc->meta_type == AMT_OBJECT
Lev Walkin9c2285a2006-03-09 08:49:26 +0000631 || tc->meta_type == AMT_OBJECTCLASS
632 || tc->meta_type == AMT_OBJECTFIELD
Lev Walkinc74ea222004-08-25 02:27:47 +0000633 ) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000634 asn1p_expr_t *se; /* SubExpression */
Lev Walkin9c2285a2006-03-09 08:49:26 +0000635 int put_braces = (!SEQ_OF) /* Don't need 'em, if SET OF... */
636 && (tc->meta_type != AMT_OBJECTFIELD);
Lev Walkinf15320b2004-06-03 03:38:44 +0000637
Lev Walkinc74ea222004-08-25 02:27:47 +0000638 if(put_braces) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000639 if(flags & APF_NOINDENT) {
640 printf("{");
641 if(!TQ_FIRST(&tc->members))
642 printf("}");
643 } else {
644 printf(" {");
645 if(TQ_FIRST(&tc->members))
646 printf("\n");
647 else
648 printf(" }");
649 }
Lev Walkinc74ea222004-08-25 02:27:47 +0000650 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000651
652 TQ_FOR(se, &(tc->members), next) {
653 /*
Lev Walkinfd151ce2004-08-22 03:08:51 +0000654 * Print the expression as it were a stand-alone type.
Lev Walkinf15320b2004-06-03 03:38:44 +0000655 */
Lev Walkinf7484512004-10-13 09:13:56 +0000656 asn1print_expr(asn, mod, se, flags, level + 1);
Lev Walkinb1e07082004-09-15 11:44:55 +0000657 if((se->marker.flags & EM_DEFAULT) == EM_DEFAULT) {
658 printf(" DEFAULT ");
659 asn1print_value(se->marker.default_value, flags);
660 } else if((se->marker.flags & EM_OPTIONAL)
661 == EM_OPTIONAL) {
Lev Walkin6e8da2b2004-09-10 08:21:27 +0000662 printf(" OPTIONAL");
Lev Walkinb1e07082004-09-15 11:44:55 +0000663 }
Lev Walkinef625402005-09-05 05:17:57 +0000664 if(TQ_NEXT(se, next)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000665 printf(",");
Lev Walkinef625402005-09-05 05:17:57 +0000666 if(!(flags & APF_NOINDENT))
667 INDENT("\n");
668 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000669 }
670
Lev Walkinc74ea222004-08-25 02:27:47 +0000671 if(put_braces && TQ_FIRST(&tc->members)) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000672 if(!(flags & APF_NOINDENT))
673 printf("\n");
Lev Walkinf15320b2004-06-03 03:38:44 +0000674 INDENT("}");
675 }
676 }
677
Lev Walkin9d542d22006-03-14 16:31:37 +0000678 if(tc->with_syntax) {
679 printf(" WITH SYNTAX {");
Lev Walkinf15320b2004-06-03 03:38:44 +0000680 asn1print_with_syntax(tc->with_syntax, flags);
Lev Walkin9d542d22006-03-14 16:31:37 +0000681 printf("}\n");
682 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000683
Lev Walkina00d6b32006-03-21 03:40:38 +0000684 /* Right hand specialization */
685 if(tc->rhs_pspecs) {
686 asn1p_expr_t *se;
687 printf("{");
688 TQ_FOR(se, &(tc->rhs_pspecs->members), next) {
689 asn1print_expr(asn, mod, se, flags, level + 1);
Lev Walkin0c0bca62006-03-21 04:48:15 +0000690 if(TQ_NEXT(se, next)) printf(", ");
Lev Walkina00d6b32006-03-21 03:40:38 +0000691 }
692 printf("}");
693 }
694
Lev Walkinb1ef3962004-08-20 13:24:28 +0000695 if(!SEQ_OF && tc->constraints) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000696 printf(" ");
Lev Walkin557f27d2006-03-21 07:46:48 +0000697 if(tc->meta_type == AMT_VALUESET)
698 printf("{");
Lev Walkinf15320b2004-06-03 03:38:44 +0000699 asn1print_constraint(tc->constraints, flags);
Lev Walkin557f27d2006-03-21 07:46:48 +0000700 if(tc->meta_type == AMT_VALUESET)
701 printf("}");
Lev Walkinf15320b2004-06-03 03:38:44 +0000702 }
Lev Walkin3140e0e2004-08-18 04:50:37 +0000703
Lev Walkinf15320b2004-06-03 03:38:44 +0000704 if(tc->unique) {
705 printf(" UNIQUE");
706 }
707
708 if(tc->meta_type == AMT_VALUE
709 && tc->expr_type != A1TC_EXTENSIBLE) {
Lev Walkin0056aec2004-09-05 10:38:50 +0000710 if(tc->expr_type == A1TC_UNIVERVAL) {
Lev Walkinb1e07082004-09-15 11:44:55 +0000711 if(tc->value) {
712 printf("(");
713 asn1print_value(tc->value, flags);
714 printf(")");
715 }
Lev Walkin0056aec2004-09-05 10:38:50 +0000716 } else {
Lev Walkina00d6b32006-03-21 03:40:38 +0000717 if(level == 0) printf(" ::= ");
Lev Walkin0056aec2004-09-05 10:38:50 +0000718 asn1print_value(tc->value, flags);
719 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000720 }
721
Lev Walkinfd151ce2004-08-22 03:08:51 +0000722 /*
Lev Walkinf4069d22005-02-15 07:06:05 +0000723 * The following section exists entirely for debugging.
Lev Walkinfd151ce2004-08-22 03:08:51 +0000724 */
Lev Walkind370e9f2006-03-16 10:03:35 +0000725 if(flags & APF_PRINT_CONSTRAINTS
Lev Walkinb1ef3962004-08-20 13:24:28 +0000726 && tc->expr_type != A1TC_EXTENSIBLE) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000727 asn1p_expr_t *top_parent;
728
729 if(tc->combined_constraints) {
730 printf("\n-- Combined constraints: ");
731 asn1print_constraint(tc->combined_constraints, flags);
732 }
733
Lev Walkine4d6ab82004-09-22 16:05:13 +0000734 top_parent = asn1f_find_terminal_type_ex(asn, tc);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000735 if(top_parent) {
Lev Walkine8e87f12004-08-25 02:00:03 +0000736 printf("\n-- Practical constraints (%s): ",
737 top_parent->Identifier);
738 asn1print_constraint_explain(top_parent->expr_type,
739 tc->combined_constraints, 0);
Lev Walkinb1ef3962004-08-20 13:24:28 +0000740 printf("\n-- PER-visible constraints (%s): ",
741 top_parent->Identifier);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000742 asn1print_constraint_explain(top_parent->expr_type,
Lev Walkine8e87f12004-08-25 02:00:03 +0000743 tc->combined_constraints, 1);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000744 }
Lev Walkinb1ef3962004-08-20 13:24:28 +0000745 printf("\n");
Lev Walkin3140e0e2004-08-18 04:50:37 +0000746 }
747
Lev Walkind370e9f2006-03-16 10:03:35 +0000748 if(flags & APF_PRINT_CLASS_MATRIX
749 && tc->expr_type == A1TC_CLASSDEF) do {
750 int r, col, maxidlen;
751 if(tc->object_class_matrix.rows == 0) {
752 printf("\n-- Class matrix is empty");
753 break;
754 }
755 printf("\n-- Class matrix has %d entr%s:\n",
756 tc->object_class_matrix.rows,
757 tc->object_class_matrix.rows==1 ? "y" : "ies");
758 maxidlen = tc->object_class_matrix.max_identifier_length;
759 for(r = -1; r < tc->object_class_matrix.rows; r++) {
760 struct asn1p_ioc_row_s *row;
761 row = tc->object_class_matrix.row[r<0?0:r];
762 if(r < 0) printf("-- %s", r > 9 ? " " : "");
763 else printf("-- [%*d]", r > 9 ? 2 : 1, r+1);
764 for(col = 0; col < row->columns; col++) {
765 struct asn1p_ioc_cell_s *cell;
766 cell = &row->column[col];
767 if(r < 0) {
768 printf("[%*s]", maxidlen,
769 cell->field->Identifier);
770 continue;
771 }
772 if(!cell->value) {
773 printf(" %*s ", maxidlen, "<no entry>");
774 continue;
775 }
776 printf(" %*s ", maxidlen,
777 cell->value->Identifier);
778 }
779 printf("\n");
780 }
781 } while(0);
782
Lev Walkina00d6b32006-03-21 03:40:38 +0000783 if(flags & APF_PRINT_CLASS_MATRIX
784 && tc->lhs_params) do {
785 int i;
786 if(tc->specializations.pspecs_count == 0) {
787 printf("\n-- No specializations found\n");
788 break;
789 }
790 printf("\n-- Specializations list has %d entr%s:\n",
791 tc->specializations.pspecs_count,
792 tc->specializations.pspecs_count == 1 ? "y" : "ies");
793 for(i = 0; i < tc->specializations.pspecs_count; i++) {
794 asn1p_expr_t *se;
795 struct asn1p_pspec_s *pspec;
796 pspec = &tc->specializations.pspec[i];
797 printf("-- ");
798 TQ_FOR(se, &(pspec->rhs_pspecs->members), next) {
799 asn1print_expr(asn, mod, se, flags, level+1);
800 }
801 printf("\n");
802 }
803 } while(0);
804
Lev Walkinf15320b2004-06-03 03:38:44 +0000805 return 0;
806}
Lev Walkin3140e0e2004-08-18 04:50:37 +0000807
Lev Walkinf7484512004-10-13 09:13:56 +0000808
809static int
810asn1print_expr_dtd(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *expr, enum asn1print_flags flags, int level) {
811 asn1p_expr_t *se;
812 int expr_unordered = 0;
Lev Walkinef39f7e2004-10-14 05:11:25 +0000813 int dont_involve_children = 0;
Lev Walkinf7484512004-10-13 09:13:56 +0000814
815 switch(expr->meta_type) {
816 case AMT_TYPE:
817 case AMT_TYPEREF:
818 break;
819 default:
820 if(expr->expr_type == A1TC_UNIVERVAL)
821 break;
822 return 0;
823 }
824
825 if(!expr->Identifier) return 0;
826
Lev Walkinf7484512004-10-13 09:13:56 +0000827 if(flags & APF_LINE_COMMENTS)
828 INDENT("<!-- #line %d -->\n", expr->_lineno);
829 INDENT("<!ELEMENT %s", expr->Identifier);
830
831 if(expr->expr_type == A1TC_REFERENCE) {
832 se = asn1f_find_terminal_type_ex(asn, expr);
833 if(!se) {
Lev Walkinef39f7e2004-10-14 05:11:25 +0000834 printf(" (ANY)");
Lev Walkinf7484512004-10-13 09:13:56 +0000835 return 0;
836 }
837 expr = se;
Lev Walkinef39f7e2004-10-14 05:11:25 +0000838 dont_involve_children = 1;
Lev Walkinf7484512004-10-13 09:13:56 +0000839 }
840
Lev Walkind7963aa2005-03-10 15:16:56 +0000841 if(expr->expr_type == ASN_CONSTR_CHOICE
842 || expr->expr_type == ASN_CONSTR_SEQUENCE_OF
843 || expr->expr_type == ASN_CONSTR_SET_OF
844 || expr->expr_type == ASN_CONSTR_SET
Lev Walkin112d69e2005-03-09 20:52:15 +0000845 || expr->expr_type == ASN_BASIC_INTEGER
846 || expr->expr_type == ASN_BASIC_ENUMERATED) {
847 expr_unordered = 1;
848 }
849
Lev Walkinf7484512004-10-13 09:13:56 +0000850 if(TQ_FIRST(&expr->members)) {
851 int extensible = 0;
852 printf(" (");
853 TQ_FOR(se, &(expr->members), next) {
854 if(se->expr_type == A1TC_EXTENSIBLE) {
855 extensible = 1;
856 continue;
857 } else if(!se->Identifier
858 && se->expr_type == A1TC_REFERENCE) {
859 asn1print_ref(se->reference, flags);
860 } else if(se->Identifier) {
861 printf("%s", se->Identifier);
862 } else {
863 printf("ANY");
864 }
865 if(expr->expr_type != ASN_CONSTR_SET
866 && expr->expr_type != ASN_CONSTR_CHOICE
867 && expr->expr_type != ASN_BASIC_INTEGER
868 && expr->expr_type != ASN_BASIC_ENUMERATED) {
869 if(expr_unordered)
870 printf("*");
871 else if(se->marker.flags)
872 printf("?");
873 }
874 if(TQ_NEXT(se, next)
875 && TQ_NEXT(se, next)->expr_type != A1TC_EXTENSIBLE) {
876 printf(expr_unordered?"|":", ");
877 }
878 }
879 if(extensible) {
880 printf(expr_unordered?"|":", ");
881 printf("ANY");
882 if(expr->expr_type != ASN_CONSTR_SET
883 && expr->expr_type != ASN_CONSTR_CHOICE
884 && expr->expr_type != ASN_BASIC_INTEGER
885 && expr->expr_type != ASN_BASIC_ENUMERATED)
886 printf("*");
887 }
888
889 printf(")");
890 if(expr->expr_type == ASN_CONSTR_SET)
891 printf("*");
892
Lev Walkinef39f7e2004-10-14 05:11:25 +0000893 } else switch(expr->expr_type) {
894 case ASN_BASIC_BOOLEAN:
Lev Walkin112d69e2005-03-09 20:52:15 +0000895 printf(" (true|false)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000896 break;
897 case ASN_CONSTR_CHOICE:
898 case ASN_CONSTR_SET:
899 case ASN_CONSTR_SET_OF:
900 case ASN_CONSTR_SEQUENCE:
901 case ASN_CONSTR_SEQUENCE_OF:
902 case ASN_BASIC_NULL:
903 case A1TC_UNIVERVAL:
Lev Walkinf7484512004-10-13 09:13:56 +0000904 printf(" EMPTY");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000905 break;
906 case ASN_TYPE_ANY:
907 printf(" ANY");
908 break;
909 case ASN_BASIC_BIT_STRING:
910 case ASN_BASIC_OCTET_STRING:
911 case ASN_BASIC_OBJECT_IDENTIFIER:
912 case ASN_BASIC_RELATIVE_OID:
Lev Walkincc116532004-10-15 06:01:54 +0000913 case ASN_BASIC_INTEGER:
Lev Walkinef39f7e2004-10-14 05:11:25 +0000914 case ASN_BASIC_UTCTime:
915 case ASN_BASIC_GeneralizedTime:
Lev Walkinef39f7e2004-10-14 05:11:25 +0000916 case ASN_STRING_NumericString:
917 case ASN_STRING_PrintableString:
Lev Walkincc116532004-10-15 06:01:54 +0000918 printf(" (#PCDATA)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000919 break;
920 case ASN_STRING_VisibleString:
921 case ASN_STRING_ISO646String:
922 /* Entity references, but not XML elements may be present */
Lev Walkinf7484512004-10-13 09:13:56 +0000923 printf(" (#PCDATA)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000924 break;
925 case ASN_BASIC_REAL: /* e.g. <MINUS-INFINITY/> */
926 case ASN_BASIC_ENUMERATED: /* e.g. <enumIdentifier1/> */
927 default:
928 /*
929 * XML elements are allowed.
930 * For example, a UTF8String may contain "<bel/>".
931 */
932 printf(" ANY");
Lev Walkinf7484512004-10-13 09:13:56 +0000933 }
934 printf(">\n");
935
936 /*
937 * Display the descendants (children) of the current type.
938 */
Lev Walkinef39f7e2004-10-14 05:11:25 +0000939 if(!dont_involve_children) {
940 TQ_FOR(se, &(expr->members), next) {
941 if(se->expr_type == A1TC_EXTENSIBLE) continue;
942 asn1print_expr_dtd(asn, mod, se, flags, level + 1);
943 }
Lev Walkinf7484512004-10-13 09:13:56 +0000944 }
945
946 return 0;
947}