blob: 992a344bd4475aa439d3a03564383e0766082ed8 [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 Walkinb1ef3962004-08-20 13:24:28 +0000109 if(flags & APF_DEBUG_CONSTRAINTS)
110 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 Walkinf15320b2004-06-03 03:38:44 +0000193 case ATV_INTEGER:
Lev Walkin33c16ba2004-09-24 21:01:43 +0000194 printf("%" PRIdASN, val->value.v_integer);
Lev Walkinf15320b2004-06-03 03:38:44 +0000195 return 0;
196 case ATV_MIN: printf("MIN"); return 0;
197 case ATV_MAX: printf("MAX"); return 0;
198 case ATV_FALSE: printf("FALSE"); return 0;
199 case ATV_TRUE: printf("TRUE"); return 0;
Lev Walkin1e448d32005-03-24 14:26:38 +0000200 case ATV_TUPLE:
201 printf("{%d, %d}",
202 (int)(val->value.v_integer >> 4),
203 (int)(val->value.v_integer & 0x0f));
204 return 0;
205 case ATV_QUADRUPLE:
206 printf("{%d, %d, %d, %d}",
207 (int)((val->value.v_integer >> 24) & 0xff),
208 (int)((val->value.v_integer >> 16) & 0xff),
209 (int)((val->value.v_integer >> 8) & 0xff),
210 (int)((val->value.v_integer >> 0) & 0xff)
211 );
212 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000213 case ATV_STRING:
214 {
Lev Walkin84fbd722005-06-15 18:41:50 +0000215 char *p = (char *)val->value.string.buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000216 putchar('"');
217 if(strchr(p, '"')) {
218 /* Mask quotes */
219 for(; *p; p++) {
220 if(*p == '"')
221 putchar(*p);
222 putchar(*p);
223 }
224 } else {
225 fputs(p, stdout);
226 }
227 putchar('"');
228 }
229 return 0;
230 case ATV_UNPARSED:
Lev Walkin84fbd722005-06-15 18:41:50 +0000231 fputs((char *)val->value.string.buf, stdout);
Lev Walkinf15320b2004-06-03 03:38:44 +0000232 return 0;
233 case ATV_BITVECTOR:
234 {
235 uint8_t *bitvector;
236 int bits;
237 int i;
238
239 bitvector = val->value.binary_vector.bits;
240 bits = val->value.binary_vector.size_in_bits;
241
242 printf("'");
243 if(bits%8) {
244 for(i = 0; i < bits; i++) {
245 uint8_t uc;
246 uc = bitvector[i>>3];
247 putchar(((uc >> (7-(i%8)))&1)?'1':'0');
248 }
249 printf("'B");
250 } else {
251 char hextable[16] = "0123456789ABCDEF";
252 for(i = 0; i < (bits>>3); i++) {
253 putchar(hextable[bitvector[i] >> 4]);
254 putchar(hextable[bitvector[i] & 0x0f]);
255 }
256 printf("'H");
257 }
Lev Walkin043af0d2005-02-24 21:07:35 +0000258 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000259 }
Lev Walkinb1e07082004-09-15 11:44:55 +0000260 case ATV_REFERENCED:
261 return asn1print_ref(val->value.reference, flags);
262 case ATV_CHOICE_IDENTIFIER:
263 printf("%s: ", val->value.choice_identifier.identifier);
264 return asn1print_value(val->value.choice_identifier.value, flags);
Lev Walkinf15320b2004-06-03 03:38:44 +0000265 }
266
267 assert(val->type || !"Unknown");
268
269 return 0;
270}
271
272static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000273asn1print_constraint(asn1p_constraint_t *ct, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000274 int symno = 0;
275
276 if(ct == 0) return 0;
277
278 if(ct->type == ACT_CA_SET)
279 printf("(");
280
281 switch(ct->type) {
Lev Walkinff7dd142005-03-20 12:58:00 +0000282 case ACT_EL_TYPE:
283 asn1print_value(ct->value, flags);
284 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000285 case ACT_EL_VALUE:
286 asn1print_value(ct->value, flags);
287 break;
288 case ACT_EL_RANGE:
289 case ACT_EL_LLRANGE:
290 case ACT_EL_RLRANGE:
291 case ACT_EL_ULRANGE:
292 asn1print_value(ct->range_start, flags);
293 switch(ct->type) {
294 case ACT_EL_RANGE: printf(".."); break;
295 case ACT_EL_LLRANGE: printf("<.."); break;
296 case ACT_EL_RLRANGE: printf("..<"); break;
297 case ACT_EL_ULRANGE: printf("<..<"); break;
298 default: printf("?..?"); break;
299 }
300 asn1print_value(ct->range_stop, flags);
301 break;
302 case ACT_EL_EXT:
303 printf("...");
304 break;
305 case ACT_CT_SIZE:
306 case ACT_CT_FROM:
307 switch(ct->type) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000308 case ACT_CT_SIZE: printf("SIZE("); break;
309 case ACT_CT_FROM: printf("FROM("); break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000310 default: printf("??? ("); break;
311 }
312 assert(ct->el_count != 0);
313 assert(ct->el_count == 1);
314 asn1print_constraint(ct->elements[0], flags);
315 printf(")");
316 break;
317 case ACT_CT_WCOMP:
Lev Walkine596bf02005-03-28 15:01:27 +0000318 assert(ct->el_count != 0);
319 assert(ct->el_count == 1);
320 printf("WITH COMPONENT (");
321 asn1print_constraint(ct->elements[0], flags);
322 printf(")");
Lev Walkin8638f0d2005-03-28 07:50:06 +0000323 break;
Lev Walkine596bf02005-03-28 15:01:27 +0000324 case ACT_CT_WCOMPS: {
325 unsigned int i;
326 printf("WITH COMPONENTS { ");
327 for(i = 0; i < ct->el_count; i++) {
328 asn1p_constraint_t *cel = ct->elements[i];
329 if(i) printf(", ");
330 fwrite(cel->value->value.string.buf,
331 1, cel->value->value.string.size,
332 stdout);
333 if(cel->el_count) {
334 assert(cel->el_count == 1);
335 printf(" ");
336 asn1print_constraint(cel->elements[0],
337 flags);
338 }
339 switch(cel->presence) {
340 case ACPRES_DEFAULT: break;
341 case ACPRES_PRESENT: printf(" PRESENT"); break;
342 case ACPRES_ABSENT: printf(" ABSENT"); break;
343 case ACPRES_OPTIONAL: printf(" OPTIONAL");break;
344 }
345 }
346 printf(" }");
347 }
Lev Walkin8638f0d2005-03-28 07:50:06 +0000348 break;
Lev Walkin1893ddf2005-03-20 14:28:32 +0000349 case ACT_CT_CTDBY:
350 printf("CONSTRAINED BY ");
351 assert(ct->value->type == ATV_UNPARSED);
352 fwrite(ct->value->value.string.buf,
353 1, ct->value->value.string.size, stdout);
Lev Walkinf15320b2004-06-03 03:38:44 +0000354 break;
355 case ACT_CA_SET: symno++;
356 case ACT_CA_CRC: symno++;
357 case ACT_CA_CSV: symno++;
358 case ACT_CA_UNI: symno++;
359 case ACT_CA_INT: symno++;
360 case ACT_CA_EXC:
361 {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000362 char *symtable[] = { " EXCEPT ", " ^ ", " | ", ",",
Lev Walkinf15320b2004-06-03 03:38:44 +0000363 "", "(" };
Lev Walkin0056aec2004-09-05 10:38:50 +0000364 unsigned int i;
Lev Walkinf15320b2004-06-03 03:38:44 +0000365 for(i = 0; i < ct->el_count; i++) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000366 if(i) fputs(symtable[symno], stdout);
367 if(ct->type == ACT_CA_CRC) fputs("{", stdout);
Lev Walkin1e448d32005-03-24 14:26:38 +0000368 asn1print_constraint(ct->elements[i], flags);
Lev Walkinf15320b2004-06-03 03:38:44 +0000369 if(ct->type == ACT_CA_CRC) fputs("}", stdout);
370 if(i+1 < ct->el_count
371 && ct->type == ACT_CA_SET)
372 fputs(")", stdout);
373 }
374 }
375 break;
Lev Walkin1e448d32005-03-24 14:26:38 +0000376 case ACT_CA_AEX:
377 assert(ct->el_count == 1);
378 printf("ALL EXCEPT ");
379 asn1print_constraint(ct->elements[0], flags);
380 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000381 case ACT_INVALID:
382 assert(ct->type != ACT_INVALID);
383 break;
384 }
385
386 if(ct->type == ACT_CA_SET)
387 printf(")");
388
389 return 0;
390}
391
392static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000393asn1print_params(asn1p_paramlist_t *pl, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000394 if(pl) {
395 int i;
396 printf("{");
397 for(i = 0; i < pl->params_count; i++) {
398 if(i) printf(", ");
399 if(pl->params[i].governor) {
400 asn1print_ref(pl->params[i].governor, flags);
401 printf(":");
402 }
403 printf("%s", pl->params[i].argument);
404 }
405 printf("}");
406 }
407
408 return 0;
409}
410
411static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000412asn1print_with_syntax(asn1p_wsyntx_t *wx, enum asn1print_flags flags) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000413 if(wx) {
414 asn1p_wsyntx_chunk_t *wc;
415 printf(" WITH SYNTAX {");
416 TQ_FOR(wc, &(wx->chunks), next) {
417 if(wc->ref) {
418 asn1print_ref(wc->ref, flags);
419 } else {
420 fwrite(wc->buf, 1, wc->len, stdout);
421 }
422 }
423 printf("}\n");
424 }
425
426 return 0;
427}
428
429static int
Lev Walkin3140e0e2004-08-18 04:50:37 +0000430asn1print_crange_value(asn1cnst_edge_t *edge, int as_char) {
431 switch(edge->type) {
432 case ARE_MIN: printf("MIN"); break;
433 case ARE_MAX: printf("MAX"); break;
434 case ARE_VALUE:
435 if(as_char) {
436 printf("\"%c\"", (unsigned char)edge->value);
437 } else {
Lev Walkin33c16ba2004-09-24 21:01:43 +0000438 printf("%" PRIdASN, edge->value);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000439 }
440 }
441 return 0;
442}
443
444static int
Lev Walkine8e87f12004-08-25 02:00:03 +0000445asn1print_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 +0000446 asn1cnst_range_t *range;
447 int as_char = (type==ACT_CT_FROM);
448 int i;
449
Lev Walkin4b553412005-08-14 14:45:44 +0000450 range = asn1constraint_compute_PER_range(expr_type, ct, type, 0, 0,
451 strict_PER_visible ? CPR_strict_PER_visibility : 0);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000452 if(!range) return -1;
453
Lev Walkine8e87f12004-08-25 02:00:03 +0000454 if(range->incompatible
455 || (strict_PER_visible && range->not_PER_visible)) {
456 asn1constraint_range_free(range);
457 return 0;
458 }
459
Lev Walkin3140e0e2004-08-18 04:50:37 +0000460 switch(type) {
461 case ACT_CT_FROM: printf("(FROM("); break;
462 case ACT_CT_SIZE: printf("(SIZE("); break;
463 default: printf("("); break;
464 }
465 for(i = -1; i < range->el_count; i++) {
466 asn1cnst_range_t *r;
467 if(i == -1) {
468 if(range->el_count) continue;
469 r = range;
470 } else {
471 r = range->elements[i];
472 }
473 if(i > 0) {
474 printf(" | ");
475 }
476 asn1print_crange_value(&r->left, as_char);
477 if(r->left.type != r->right.type
478 || r->left.value != r->right.value) {
479 printf("..");
480 asn1print_crange_value(&r->right, as_char);
481 }
482 }
483 if(range->extensible)
484 printf(",...");
485 printf(type==ACT_EL_RANGE?")":"))");
486
487 if(range->empty_constraint)
488 printf(":Empty!");
489
490 asn1constraint_range_free(range);
491 return 0;
492}
493
494static int
495asn1print_constraint_explain(asn1p_expr_type_e expr_type,
Lev Walkine8e87f12004-08-25 02:00:03 +0000496 asn1p_constraint_t *ct, int s_PV) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000497
Lev Walkine8e87f12004-08-25 02:00:03 +0000498 asn1print_constraint_explain_type(expr_type, ct, ACT_EL_RANGE, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000499 printf(" ");
Lev Walkine8e87f12004-08-25 02:00:03 +0000500 asn1print_constraint_explain_type(expr_type, ct, ACT_CT_SIZE, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000501 printf(" ");
Lev Walkine8e87f12004-08-25 02:00:03 +0000502 asn1print_constraint_explain_type(expr_type, ct, ACT_CT_FROM, s_PV);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000503
504 return 0;
505}
506
507static int
508asn1print_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 +0000509 int SEQ_OF = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000510
Lev Walkinf4069d22005-02-15 07:06:05 +0000511 if(flags & APF_LINE_COMMENTS && !(flags & APF_NOINDENT))
Lev Walkinf7484512004-10-13 09:13:56 +0000512 INDENT("-- #line %d\n", tc->_lineno);
Lev Walkinef625402005-09-05 05:17:57 +0000513
514 /* Reconstruct compiler directive information */
515 if((tc->marker.flags & EM_INDIRECT)
516 && (tc->marker.flags & EM_OMITABLE) != EM_OMITABLE) {
517 if((flags & APF_NOINDENT))
518 printf(" --<ASN1C.RepresentAsPointer>-- ");
519 else
520 INDENT("--<ASN1C.RepresentAsPointer>--\n");
521 }
522
Lev Walkinf15320b2004-06-03 03:38:44 +0000523 if(tc->Identifier)
524 INDENT("%s", tc->Identifier);
525
526 if(tc->params) {
527 asn1print_params(tc->params, flags);
528 }
529
530 if(tc->meta_type != AMT_VALUE
Lev Walkinc74ea222004-08-25 02:27:47 +0000531 && tc->meta_type != AMT_VALUESET
Lev Walkinf15320b2004-06-03 03:38:44 +0000532 && tc->expr_type != A1TC_EXTENSIBLE) {
533 if(level) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000534 if(tc->Identifier && !(flags & APF_NOINDENT))
Lev Walkinf15320b2004-06-03 03:38:44 +0000535 printf("\t");
536 } else {
537 printf(" ::=");
538 }
539 }
540
541 if(tc->tag.tag_class) {
542 printf(" ");
543 asn1print_tag(tc, flags);
544 }
545
546 switch(tc->expr_type) {
547 case A1TC_EXTENSIBLE:
548 if(tc->value) {
549 printf("!");
550 asn1print_value(tc->value, flags);
551 }
552 break;
Lev Walkinfd151ce2004-08-22 03:08:51 +0000553 case A1TC_COMPONENTS_OF:
554 SEQ_OF = 1; /* Equivalent to SET OF for printint purposes */
555 printf(" COMPONENTS OF");
556 break;
Lev Walkinf4069d22005-02-15 07:06:05 +0000557 case A1TC_PARAMETRIZED:
558 flags |= APF_NOINDENT;
Lev Walkinf15320b2004-06-03 03:38:44 +0000559 case A1TC_REFERENCE:
560 case A1TC_UNIVERVAL:
Lev Walkinf15320b2004-06-03 03:38:44 +0000561 break;
562 case A1TC_CLASSDEF:
563 printf(" CLASS");
564 break;
Lev Walkin9c2285a2006-03-09 08:49:26 +0000565 case A1TC_CLASSFIELD_TFS ... A1TC_CLASSFIELD_OSFS:
Lev Walkinf15320b2004-06-03 03:38:44 +0000566 /* Nothing to print here */
567 break;
Lev Walkinb1ef3962004-08-20 13:24:28 +0000568 case ASN_CONSTR_SET_OF:
569 case ASN_CONSTR_SEQUENCE_OF:
570 SEQ_OF = 1;
571 if(tc->expr_type == ASN_CONSTR_SET_OF)
572 printf(" SET");
573 else
574 printf(" SEQUENCE");
575 if(tc->constraints) {
576 printf(" ");
577 asn1print_constraint(tc->constraints, flags);
578 }
579 printf(" OF");
580 break;
Lev Walkinf15320b2004-06-03 03:38:44 +0000581 default:
582 {
583 char *p = ASN_EXPR_TYPE2STR(tc->expr_type);
584 printf(" %s", p?p:"<unknown type!>");
585 }
586 break;
587 }
588
Lev Walkinb9d0ae32005-06-02 04:06:24 +0000589 /*
590 * Put the name of the referred type.
591 */
Lev Walkinf15320b2004-06-03 03:38:44 +0000592 if(tc->reference) {
Lev Walkinb9d0ae32005-06-02 04:06:24 +0000593 printf(" ");
Lev Walkinf15320b2004-06-03 03:38:44 +0000594 asn1print_ref(tc->reference, flags);
595 }
596
Lev Walkinc74ea222004-08-25 02:27:47 +0000597 if(tc->meta_type == AMT_VALUESET)
598 printf(" ::=");
599
Lev Walkinf15320b2004-06-03 03:38:44 +0000600 /*
601 * Display the descendants (children) of the current type.
602 */
Lev Walkinc74ea222004-08-25 02:27:47 +0000603 if(TQ_FIRST(&(tc->members))
604 || (tc->expr_type & ASN_CONSTR_MASK)
605 || tc->meta_type == AMT_VALUESET
606 || tc->meta_type == AMT_OBJECT
Lev Walkin9c2285a2006-03-09 08:49:26 +0000607 || tc->meta_type == AMT_OBJECTCLASS
608 || tc->meta_type == AMT_OBJECTFIELD
Lev Walkinc74ea222004-08-25 02:27:47 +0000609 ) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000610 asn1p_expr_t *se; /* SubExpression */
Lev Walkin9c2285a2006-03-09 08:49:26 +0000611 int put_braces = (!SEQ_OF) /* Don't need 'em, if SET OF... */
612 && (tc->meta_type != AMT_OBJECTFIELD);
Lev Walkinf15320b2004-06-03 03:38:44 +0000613
Lev Walkinc74ea222004-08-25 02:27:47 +0000614 if(put_braces) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000615 if(flags & APF_NOINDENT) {
616 printf("{");
617 if(!TQ_FIRST(&tc->members))
618 printf("}");
619 } else {
620 printf(" {");
621 if(TQ_FIRST(&tc->members))
622 printf("\n");
623 else
624 printf(" }");
625 }
Lev Walkinc74ea222004-08-25 02:27:47 +0000626 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000627
628 TQ_FOR(se, &(tc->members), next) {
629 /*
Lev Walkinfd151ce2004-08-22 03:08:51 +0000630 * Print the expression as it were a stand-alone type.
Lev Walkinf15320b2004-06-03 03:38:44 +0000631 */
Lev Walkinf7484512004-10-13 09:13:56 +0000632 asn1print_expr(asn, mod, se, flags, level + 1);
Lev Walkinb1e07082004-09-15 11:44:55 +0000633 if((se->marker.flags & EM_DEFAULT) == EM_DEFAULT) {
634 printf(" DEFAULT ");
635 asn1print_value(se->marker.default_value, flags);
636 } else if((se->marker.flags & EM_OPTIONAL)
637 == EM_OPTIONAL) {
Lev Walkin6e8da2b2004-09-10 08:21:27 +0000638 printf(" OPTIONAL");
Lev Walkinb1e07082004-09-15 11:44:55 +0000639 }
Lev Walkinef625402005-09-05 05:17:57 +0000640 if(TQ_NEXT(se, next)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000641 printf(",");
Lev Walkinef625402005-09-05 05:17:57 +0000642 if(!(flags & APF_NOINDENT))
643 INDENT("\n");
644 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000645 }
646
Lev Walkinc74ea222004-08-25 02:27:47 +0000647 if(put_braces && TQ_FIRST(&tc->members)) {
Lev Walkinf4069d22005-02-15 07:06:05 +0000648 if(!(flags & APF_NOINDENT))
649 printf("\n");
Lev Walkinf15320b2004-06-03 03:38:44 +0000650 INDENT("}");
651 }
652 }
653
654 if(tc->with_syntax)
655 asn1print_with_syntax(tc->with_syntax, flags);
656
Lev Walkinb1ef3962004-08-20 13:24:28 +0000657 if(!SEQ_OF && tc->constraints) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000658 printf(" ");
659 asn1print_constraint(tc->constraints, flags);
660 }
Lev Walkin3140e0e2004-08-18 04:50:37 +0000661
Lev Walkinf15320b2004-06-03 03:38:44 +0000662 if(tc->unique) {
663 printf(" UNIQUE");
664 }
665
666 if(tc->meta_type == AMT_VALUE
667 && tc->expr_type != A1TC_EXTENSIBLE) {
Lev Walkin0056aec2004-09-05 10:38:50 +0000668 if(tc->expr_type == A1TC_UNIVERVAL) {
Lev Walkinb1e07082004-09-15 11:44:55 +0000669 if(tc->value) {
670 printf("(");
671 asn1print_value(tc->value, flags);
672 printf(")");
673 }
Lev Walkin0056aec2004-09-05 10:38:50 +0000674 } else {
675 printf(" ::= ");
676 asn1print_value(tc->value, flags);
677 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000678 }
679
Lev Walkinfd151ce2004-08-22 03:08:51 +0000680 /*
Lev Walkinf4069d22005-02-15 07:06:05 +0000681 * The following section exists entirely for debugging.
Lev Walkinfd151ce2004-08-22 03:08:51 +0000682 */
Lev Walkinb1ef3962004-08-20 13:24:28 +0000683 if(flags & APF_DEBUG_CONSTRAINTS
684 && tc->expr_type != A1TC_EXTENSIBLE) {
Lev Walkin3140e0e2004-08-18 04:50:37 +0000685 asn1p_expr_t *top_parent;
686
687 if(tc->combined_constraints) {
688 printf("\n-- Combined constraints: ");
689 asn1print_constraint(tc->combined_constraints, flags);
690 }
691
Lev Walkine4d6ab82004-09-22 16:05:13 +0000692 top_parent = asn1f_find_terminal_type_ex(asn, tc);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000693 if(top_parent) {
Lev Walkine8e87f12004-08-25 02:00:03 +0000694 printf("\n-- Practical constraints (%s): ",
695 top_parent->Identifier);
696 asn1print_constraint_explain(top_parent->expr_type,
697 tc->combined_constraints, 0);
Lev Walkinb1ef3962004-08-20 13:24:28 +0000698 printf("\n-- PER-visible constraints (%s): ",
699 top_parent->Identifier);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000700 asn1print_constraint_explain(top_parent->expr_type,
Lev Walkine8e87f12004-08-25 02:00:03 +0000701 tc->combined_constraints, 1);
Lev Walkin3140e0e2004-08-18 04:50:37 +0000702 }
Lev Walkinb1ef3962004-08-20 13:24:28 +0000703 printf("\n");
Lev Walkin3140e0e2004-08-18 04:50:37 +0000704 }
705
Lev Walkinf15320b2004-06-03 03:38:44 +0000706 return 0;
707}
Lev Walkin3140e0e2004-08-18 04:50:37 +0000708
Lev Walkinf7484512004-10-13 09:13:56 +0000709
710static int
711asn1print_expr_dtd(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *expr, enum asn1print_flags flags, int level) {
712 asn1p_expr_t *se;
713 int expr_unordered = 0;
Lev Walkinef39f7e2004-10-14 05:11:25 +0000714 int dont_involve_children = 0;
Lev Walkinf7484512004-10-13 09:13:56 +0000715
716 switch(expr->meta_type) {
717 case AMT_TYPE:
718 case AMT_TYPEREF:
719 break;
720 default:
721 if(expr->expr_type == A1TC_UNIVERVAL)
722 break;
723 return 0;
724 }
725
726 if(!expr->Identifier) return 0;
727
Lev Walkinf7484512004-10-13 09:13:56 +0000728 if(flags & APF_LINE_COMMENTS)
729 INDENT("<!-- #line %d -->\n", expr->_lineno);
730 INDENT("<!ELEMENT %s", expr->Identifier);
731
732 if(expr->expr_type == A1TC_REFERENCE) {
733 se = asn1f_find_terminal_type_ex(asn, expr);
734 if(!se) {
Lev Walkinef39f7e2004-10-14 05:11:25 +0000735 printf(" (ANY)");
Lev Walkinf7484512004-10-13 09:13:56 +0000736 return 0;
737 }
738 expr = se;
Lev Walkinef39f7e2004-10-14 05:11:25 +0000739 dont_involve_children = 1;
Lev Walkinf7484512004-10-13 09:13:56 +0000740 }
741
Lev Walkind7963aa2005-03-10 15:16:56 +0000742 if(expr->expr_type == ASN_CONSTR_CHOICE
743 || expr->expr_type == ASN_CONSTR_SEQUENCE_OF
744 || expr->expr_type == ASN_CONSTR_SET_OF
745 || expr->expr_type == ASN_CONSTR_SET
Lev Walkin112d69e2005-03-09 20:52:15 +0000746 || expr->expr_type == ASN_BASIC_INTEGER
747 || expr->expr_type == ASN_BASIC_ENUMERATED) {
748 expr_unordered = 1;
749 }
750
Lev Walkinf7484512004-10-13 09:13:56 +0000751 if(TQ_FIRST(&expr->members)) {
752 int extensible = 0;
753 printf(" (");
754 TQ_FOR(se, &(expr->members), next) {
755 if(se->expr_type == A1TC_EXTENSIBLE) {
756 extensible = 1;
757 continue;
758 } else if(!se->Identifier
759 && se->expr_type == A1TC_REFERENCE) {
760 asn1print_ref(se->reference, flags);
761 } else if(se->Identifier) {
762 printf("%s", se->Identifier);
763 } else {
764 printf("ANY");
765 }
766 if(expr->expr_type != ASN_CONSTR_SET
767 && expr->expr_type != ASN_CONSTR_CHOICE
768 && expr->expr_type != ASN_BASIC_INTEGER
769 && expr->expr_type != ASN_BASIC_ENUMERATED) {
770 if(expr_unordered)
771 printf("*");
772 else if(se->marker.flags)
773 printf("?");
774 }
775 if(TQ_NEXT(se, next)
776 && TQ_NEXT(se, next)->expr_type != A1TC_EXTENSIBLE) {
777 printf(expr_unordered?"|":", ");
778 }
779 }
780 if(extensible) {
781 printf(expr_unordered?"|":", ");
782 printf("ANY");
783 if(expr->expr_type != ASN_CONSTR_SET
784 && expr->expr_type != ASN_CONSTR_CHOICE
785 && expr->expr_type != ASN_BASIC_INTEGER
786 && expr->expr_type != ASN_BASIC_ENUMERATED)
787 printf("*");
788 }
789
790 printf(")");
791 if(expr->expr_type == ASN_CONSTR_SET)
792 printf("*");
793
Lev Walkinef39f7e2004-10-14 05:11:25 +0000794 } else switch(expr->expr_type) {
795 case ASN_BASIC_BOOLEAN:
Lev Walkin112d69e2005-03-09 20:52:15 +0000796 printf(" (true|false)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000797 break;
798 case ASN_CONSTR_CHOICE:
799 case ASN_CONSTR_SET:
800 case ASN_CONSTR_SET_OF:
801 case ASN_CONSTR_SEQUENCE:
802 case ASN_CONSTR_SEQUENCE_OF:
803 case ASN_BASIC_NULL:
804 case A1TC_UNIVERVAL:
Lev Walkinf7484512004-10-13 09:13:56 +0000805 printf(" EMPTY");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000806 break;
807 case ASN_TYPE_ANY:
808 printf(" ANY");
809 break;
810 case ASN_BASIC_BIT_STRING:
811 case ASN_BASIC_OCTET_STRING:
812 case ASN_BASIC_OBJECT_IDENTIFIER:
813 case ASN_BASIC_RELATIVE_OID:
Lev Walkincc116532004-10-15 06:01:54 +0000814 case ASN_BASIC_INTEGER:
Lev Walkinef39f7e2004-10-14 05:11:25 +0000815 case ASN_BASIC_UTCTime:
816 case ASN_BASIC_GeneralizedTime:
Lev Walkinef39f7e2004-10-14 05:11:25 +0000817 case ASN_STRING_NumericString:
818 case ASN_STRING_PrintableString:
Lev Walkincc116532004-10-15 06:01:54 +0000819 printf(" (#PCDATA)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000820 break;
821 case ASN_STRING_VisibleString:
822 case ASN_STRING_ISO646String:
823 /* Entity references, but not XML elements may be present */
Lev Walkinf7484512004-10-13 09:13:56 +0000824 printf(" (#PCDATA)");
Lev Walkinef39f7e2004-10-14 05:11:25 +0000825 break;
826 case ASN_BASIC_REAL: /* e.g. <MINUS-INFINITY/> */
827 case ASN_BASIC_ENUMERATED: /* e.g. <enumIdentifier1/> */
828 default:
829 /*
830 * XML elements are allowed.
831 * For example, a UTF8String may contain "<bel/>".
832 */
833 printf(" ANY");
Lev Walkinf7484512004-10-13 09:13:56 +0000834 }
835 printf(">\n");
836
837 /*
838 * Display the descendants (children) of the current type.
839 */
Lev Walkinef39f7e2004-10-14 05:11:25 +0000840 if(!dont_involve_children) {
841 TQ_FOR(se, &(expr->members), next) {
842 if(se->expr_type == A1TC_EXTENSIBLE) continue;
843 asn1print_expr_dtd(asn, mod, se, flags, level + 1);
844 }
Lev Walkinf7484512004-10-13 09:13:56 +0000845 }
846
847 return 0;
848}