blob: 7a45cd97e7b1c16b4396550600d5ed5ae98f4858 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001#include "asn1fix_internal.h"
2
vlm8fbd5622004-09-10 06:07:04 +00003#define AFT_MAGIC_ANY 1 /* _fetch_tag() flag */
vlm76142452004-09-05 10:36:22 +00004
vlmfa67ddc2004-06-03 03:38:44 +00005static int _asn1f_check_if_tag_must_be_explicit(arg_t *arg, asn1p_expr_t *v);
6static int _asn1f_compare_tags(arg_t *arg, asn1p_expr_t *a, asn1p_expr_t *b);
vlm76142452004-09-05 10:36:22 +00007static int _asn1f_fix_type_tag(arg_t *arg, asn1p_expr_t *expr);
vlmfa67ddc2004-06-03 03:38:44 +00008
vlmf645aff2004-08-22 03:09:24 +00009int
10asn1f_pull_components_of(arg_t *arg) {
11 TQ_HEAD(asn1p_expr_t) list;
12 asn1p_expr_t *expr = arg->expr;
13 asn1p_expr_t *memb;
14 int r_value = 0;
15
16 switch(expr->expr_type) {
17 case ASN_CONSTR_SEQUENCE:
18 case ASN_CONSTR_SET:
19 break;
20 default:
21 return 0;
22 }
23
24 TQ_INIT(&list);
25
26 /*
27 * Look into
28 */
29 while((memb = TQ_REMOVE(&(expr->members), next))) {
30 asn1p_expr_t *coft; /* COMPONENTS OF thing itself */
31 asn1p_expr_t *terminal; /* Terminal of the referenced type */
32
33 if(memb->expr_type != A1TC_COMPONENTS_OF) {
34 TQ_ADD(&list, memb, next);
35 continue;
36 }
37
38 coft = TQ_FIRST(&memb->members);
39 assert(coft);
40 assert(!TQ_NEXT(coft, next));
41
42 /*
43 * Find the referenced type.
44 */
45 terminal = asn1f_find_terminal_type(arg, coft);
46 if(!terminal || (terminal->expr_type != expr->expr_type)) {
47 FATAL("COMPONENTS OF at line %d "
48 "must reference a %s type",
49 coft->_lineno,
50 expr->expr_type==ASN_CONSTR_SET
51 ? "SET" : "SEQUENCE"
52 );
53 TQ_ADD(&list, memb, next);
54 r_value = -1;
55 continue;
56 }
57
58 /*
59 * Clone the final structure.
60 */
61
62 coft = asn1p_expr_clone(terminal, 1 /* Skip extensions */);
63 if(!coft) return -1; /* ENOMEM */
64
65 asn1p_expr_free(memb); /* Don't need it anymore*/
66
67 /*
68 * Move all components of the cloned structure
69 * into the current one.
70 */
vlm6a02a8a2004-09-08 00:28:11 +000071 while((memb = TQ_REMOVE(&(coft->members), next))) {
vlmf645aff2004-08-22 03:09:24 +000072 TQ_ADD(&list, memb, next);
vlm6a02a8a2004-09-08 00:28:11 +000073 memb->parent_expr = expr;
74 }
vlmf645aff2004-08-22 03:09:24 +000075
76 asn1p_expr_free(coft); /* Remove wrapper */
77 }
78
79 /* Move the stuff back */
vlmb6fd3b22004-08-25 00:42:25 +000080 TQ_MOVE(&(expr->members), &list);
vlmf645aff2004-08-22 03:09:24 +000081
82 return r_value;
83}
vlmfa67ddc2004-06-03 03:38:44 +000084
vlm76142452004-09-05 10:36:22 +000085/*
86 * Fix extensibility parts inside constructed types (SEQUENCE, SET, CHOICE).
87 */
vlmfa67ddc2004-06-03 03:38:44 +000088int
89asn1f_fix_constr_ext(arg_t *arg) {
90 asn1p_expr_t *expr = arg->expr;
91 asn1p_expr_t *v;
92 TQ_HEAD(asn1p_expr_t) root_list;
93 TQ_HEAD(asn1p_expr_t) ext_list;
94 TQ_HEAD(asn1p_expr_t) *cur_list;
95 int r_value = 0;
96 int ext_count = 0;
97
98 switch(expr->expr_type) {
99 case ASN_CONSTR_SEQUENCE:
100 case ASN_CONSTR_SET:
101 case ASN_CONSTR_CHOICE:
102 break;
103 default:
104 return 0;
105 }
106
107 DEBUG("%s(%s) for line %d", __func__,
108 expr->Identifier, expr->_lineno);
109
110 TQ_INIT(&root_list);
111 TQ_INIT(&ext_list);
112 cur_list = (void *)&root_list;
113
vlm76142452004-09-05 10:36:22 +0000114 /*
115 * Split the set of fields into two lists, the root list
116 * and the extensions list.
117 */
vlmfa67ddc2004-06-03 03:38:44 +0000118 while((v = TQ_REMOVE(&(expr->members), next))) {
119 if(v->expr_type == A1TC_EXTENSIBLE) {
120 ext_count++;
121 switch(ext_count) {
122 case 1: cur_list = (void *)&ext_list; break;
123 case 2:
124 cur_list = (void *)&root_list;
125 if(v->value) {
126 FATAL("Optional extension marker "
127 "must not contain "
128 "an exception mark "
129 "at line %d", v->_lineno);
130 r_value = -1;
131 }
132 asn1p_expr_free(v);
133 continue;
134 case 3:
135 FATAL("Third extension marker "
136 "is not allowed at line %d", v->_lineno);
137 default:
138 r_value = -1;
139 }
140 }
141
142 TQ_ADD(cur_list, v, next);
143 }
144
145 /*
146 * Copy the root list and extension list back into the main list.
147 */
vlmb6fd3b22004-08-25 00:42:25 +0000148 TQ_MOVE(&(expr->members), &root_list);
vlmfa67ddc2004-06-03 03:38:44 +0000149 while((v = TQ_REMOVE(&ext_list, next)))
150 TQ_ADD(&(expr->members), v, next);
151
152 if(arg->mod->module_flags & MSF_EXTENSIBILITY_IMPLIED
vlmb6fd3b22004-08-25 00:42:25 +0000153 && ext_count == 0) {
vlmfa67ddc2004-06-03 03:38:44 +0000154 v = asn1p_expr_new(0);
155 if(v) {
156 v->Identifier = strdup("...");
157 v->expr_type = A1TC_EXTENSIBLE;
158 v->meta_type = AMT_TYPE;
vlm4f4f56d2004-07-01 00:51:31 +0000159 v->_lineno = expr->_lineno; /* The best we can do */
vlmfa67ddc2004-06-03 03:38:44 +0000160 if(v->Identifier == NULL) {
161 asn1p_expr_free(v);
162 r_value = -1;
163 } else {
vlm6a02a8a2004-09-08 00:28:11 +0000164 asn1p_expr_add(expr, v);
vlmfa67ddc2004-06-03 03:38:44 +0000165 }
166 } else {
167 r_value = -1;
168 }
169 }
170
171 return r_value;
172}
173
174
175int
vlm76142452004-09-05 10:36:22 +0000176asn1f_fix_constr_tag(arg_t *arg, int fix_top_level) {
vlmfa67ddc2004-06-03 03:38:44 +0000177 asn1p_expr_t *expr = arg->expr;
178 asn1p_expr_t *v;
vlmfa67ddc2004-06-03 03:38:44 +0000179 int root_tagged = 0; /* The root component is manually tagged */
180 int ext_tagged = 0; /* The extensions are manually tagged */
181 int component_number = 0;
182 int r_value = 0;
183
vlm76142452004-09-05 10:36:22 +0000184 DEBUG("%s(%s) for line %d", __func__,
185 expr->Identifier, expr->_lineno);
186
187 /*
188 * Fix the top-level type itself first.
189 */
190 if(fix_top_level) {
191 if(expr->tag.tag_class == TC_NOCLASS)
192 return r_value;
193
194 if(_asn1f_fix_type_tag(arg, expr))
195 r_value = -1;
196
197 return r_value;
198 }
199
vlmfa67ddc2004-06-03 03:38:44 +0000200 switch(expr->expr_type) {
201 case ASN_CONSTR_SEQUENCE:
202 case ASN_CONSTR_SET:
203 case ASN_CONSTR_CHOICE:
204 break;
205 default:
206 return 0;
207 }
208
vlmfa67ddc2004-06-03 03:38:44 +0000209 TQ_FOR(v, &(expr->members), next) {
vlmfa67ddc2004-06-03 03:38:44 +0000210
211 if(v->expr_type == A1TC_EXTENSIBLE) {
212 component_number++;
213 continue;
214 }
215
216 if(v->tag.tag_class == TC_NOCLASS) {
217 continue;
vlmfa67ddc2004-06-03 03:38:44 +0000218 }
219
vlm76142452004-09-05 10:36:22 +0000220 switch(component_number) {
221 case 0: case 2:
222 root_tagged = 1; break;
223 default:
224 ext_tagged = 1; break;
vlmfa67ddc2004-06-03 03:38:44 +0000225 }
226
vlm76142452004-09-05 10:36:22 +0000227 if(_asn1f_fix_type_tag(arg, v))
228 r_value = -1;
229
vlmfa67ddc2004-06-03 03:38:44 +0000230 }
231
232 if(ext_tagged && !root_tagged) {
233 FATAL("In %s at line %d: "
234 "extensions are tagged "
235 "but root components are not",
236 expr->Identifier, expr->_lineno);
237 r_value = -1;
vlm76142452004-09-05 10:36:22 +0000238 } else if(!root_tagged && !ext_tagged
239 && (arg->mod->module_flags & MSF_AUTOMATIC_TAGS)) {
240 /* Make a decision on automatic tagging */
vlmfa67ddc2004-06-03 03:38:44 +0000241 expr->auto_tags_OK = 1;
242 }
243
244 return r_value;
245}
246
vlm76142452004-09-05 10:36:22 +0000247static int
248_asn1f_fix_type_tag(arg_t *arg, asn1p_expr_t *expr) {
249 int must_explicit = _asn1f_check_if_tag_must_be_explicit(arg, expr);
250 int fl_impl_tags = (arg->mod->module_flags & MSF_IMPLICIT_TAGS);
251 int r_value = 0;
252
253 if(fl_impl_tags) {
254 if(expr->tag.tag_mode != TM_EXPLICIT) {
255 if(must_explicit)
256 expr->tag.tag_mode = TM_EXPLICIT;
257 else
258 expr->tag.tag_mode = TM_IMPLICIT;
259 }
260 } else {
261 if(expr->tag.tag_mode == TM_DEFAULT) {
262 expr->tag.tag_mode = TM_EXPLICIT;
263 }
264 }
265
266 /*
267 * Perform a final sanity check.
268 */
269 if(must_explicit) {
270 if(expr->tag.tag_mode == TM_IMPLICIT) {
271 FATAL("%s tagged in IMPLICIT mode "
272 "but must be EXPLICIT at line %d",
273 expr->Identifier, expr->_lineno);
274 r_value = -1;
275 } else {
276 expr->tag.tag_mode = TM_EXPLICIT;
277 }
278 }
279
280 return r_value;
281}
282
vlmfa67ddc2004-06-03 03:38:44 +0000283int
284asn1f_fix_constr_autotag(arg_t *arg) {
285 asn1p_expr_t *expr = arg->expr;
286 asn1p_expr_t *v;
287 asn1_integer_t tag_value = 0;
288 int r_value = 0;
289
290 switch(expr->expr_type) {
291 case ASN_CONSTR_SEQUENCE:
292 case ASN_CONSTR_SET:
293 case ASN_CONSTR_CHOICE:
294 if(expr->auto_tags_OK)
295 break;
296 /* Automatic tagging is not applicable */
297 /* Fall through */
298 default:
299 return 0;
300 }
301
302 DEBUG("%s(%s) for line %d", __func__,
303 expr->Identifier, expr->_lineno);
304
305 TQ_FOR(v, &(expr->members), next) {
306 int must_explicit;
307
308 if(v->expr_type == A1TC_EXTENSIBLE)
309 break;
310
vlmf645aff2004-08-22 03:09:24 +0000311 if(0) {
312 /* This may be not true in case COMPONENTS OF */
313 assert(v->tag.tag_class == TC_NOCLASS);
314 }
vlmfa67ddc2004-06-03 03:38:44 +0000315
316 must_explicit = _asn1f_check_if_tag_must_be_explicit(arg, v);
317
318 v->tag.tag_class = TC_CONTEXT_SPECIFIC;
319 v->tag.tag_mode = must_explicit ? TM_EXPLICIT : TM_IMPLICIT;
320 v->tag.tag_value = tag_value++;
321 }
322
323 return r_value;
324}
325
326/*
327 * Check that tags are distinct.
328 */
329int
330asn1f_check_constr_tags_distinct(arg_t *arg) {
331 asn1p_expr_t *expr = arg->expr;
332 asn1p_expr_t *v;
333 int r_value = 0;
334
335 switch(expr->expr_type) {
336 case ASN_CONSTR_SEQUENCE:
337 case ASN_CONSTR_SET:
338 case ASN_CONSTR_CHOICE:
339 break;
340 default:
341 return 0;
342 }
343
344 TQ_FOR(v, &(expr->members), next) {
345 /*
346 * In every series of non-mandatory components,
347 * the tags must be distinct from each other AND the
348 * tag of the following mandatory component.
349 * For SET and CHOICE treat everything as a big set of
350 * non-mandatory components.
351 */
352 if(expr->expr_type != ASN_CONSTR_SEQUENCE || v->marker) {
353 asn1p_expr_t *nv;
354 for(nv = v; (nv = TQ_NEXT(nv, next));) {
355 if(_asn1f_compare_tags(arg, v, nv))
356 r_value = -1;
357 if(expr->expr_type == ASN_CONSTR_SEQUENCE
358 && !nv->marker) break;
359 }
360 }
361 }
362
363 return r_value;
364}
365
366static int
367_asn1f_check_if_tag_must_be_explicit(arg_t *arg, asn1p_expr_t *v) {
vlm76142452004-09-05 10:36:22 +0000368 struct asn1p_type_tag_s tag;
369 struct asn1p_type_tag_s save_tag;
vlmfa67ddc2004-06-03 03:38:44 +0000370 asn1p_expr_t *reft;
vlm76142452004-09-05 10:36:22 +0000371 int ret;
372
373 /*
374 * Fetch the _next_ tag for this type.
375 */
376 save_tag = v->tag; /* Save existing tag */
377 memset(&v->tag, 0, sizeof(v->tag)); /* Remove it temporarily */
vlm8fbd5622004-09-10 06:07:04 +0000378 ret = asn1f_fetch_outmost_tag(arg->asn, arg->mod, v, &tag, 0);
vlm76142452004-09-05 10:36:22 +0000379 v->tag = save_tag; /* Restore the tag back */
380
381 if(ret == 0) return 0; /* If found tag, it's okay */
vlmfa67ddc2004-06-03 03:38:44 +0000382
vlmf645aff2004-08-22 03:09:24 +0000383 reft = asn1f_find_terminal_type(arg, v);
vlmfa67ddc2004-06-03 03:38:44 +0000384 if(reft) {
385 switch(reft->expr_type) {
vlm76142452004-09-05 10:36:22 +0000386 case ASN_TYPE_ANY:
vlmfa67ddc2004-06-03 03:38:44 +0000387 case ASN_CONSTR_CHOICE:
388 return 1;
389 default:
390 return 0;
391 }
392 }
393
394 return 0;
395}
396
397/*
398 * Check that the tags are distinct.
399 */
400static int
401_asn1f_compare_tags(arg_t *arg, asn1p_expr_t *a, asn1p_expr_t *b) {
402 struct asn1p_type_tag_s ta, tb;
403 int ra, rb;
404 int ret;
405
vlm8fbd5622004-09-10 06:07:04 +0000406 ra = asn1f_fetch_outmost_tag(arg->asn, arg->mod, a, &ta, AFT_MAGIC_ANY);
407 rb = asn1f_fetch_outmost_tag(arg->asn, arg->mod, b, &tb, AFT_MAGIC_ANY);
vlmfa67ddc2004-06-03 03:38:44 +0000408
409 /*
410 * If both tags are explicitly or implicitly given, use them.
411 */
412 if(ra == 0 && rb == 0) {
413 /*
414 * Simple case: fetched both tags.
415 */
vlm76142452004-09-05 10:36:22 +0000416
417 if((ta.tag_value == tb.tag_value
418 && ta.tag_class == tb.tag_class)
419 || ta.tag_value == -1 /* Spread IMAGINARY ANY tag... */
420 || tb.tag_value == -1 /* ...it is an evil virus, fear it! */
421 ) {
vlmfa67ddc2004-06-03 03:38:44 +0000422 char *p = (a->expr_type == A1TC_EXTENSIBLE)
423 ?"potentially ":"";
424 FATAL("Component \"%s\" at line %d %shas the same tag "
425 "with component \"%s\" at line %d",
426 a->Identifier,
427 a->_lineno,
428 p,
429 b->Identifier,
430 b->_lineno
431 );
vlm4f4f56d2004-07-01 00:51:31 +0000432 if((arg->mod->module_flags & MSF_EXTENSIBILITY_IMPLIED)
433 && (a->expr_type == A1TC_EXTENSIBLE)
434 && (b->expr_type == A1TC_EXTENSIBLE)) {
435 FATAL("The previous error is due to "
436 "improper use of "
437 "EXTENSIBILITY IMPLIED flag "
438 "of module %s",
439 arg->mod->Identifier);
440 }
vlmfa67ddc2004-06-03 03:38:44 +0000441 return -1;
442 } else {
443 /* Tags are distinct */
444 return 0;
445 }
446 }
447
448 /**********************************************************
449 * Now we must perform some very funny recursion to check
450 * multiple components of CHOICE type, etc.
451 */
452
453 DEBUG("Comparing tags %s:%x <-> %s:%x",
454 a->Identifier, a->expr_type,
455 b->Identifier, b->expr_type);
456
457 if(a->meta_type == AMT_TYPEREF) {
vlmfa67ddc2004-06-03 03:38:44 +0000458
459 DEBUG(" %s is a type reference", a->Identifier);
460
vlmf645aff2004-08-22 03:09:24 +0000461 a = asn1f_lookup_symbol(arg, a->module, a->reference);
vlmfa67ddc2004-06-03 03:38:44 +0000462 if(!a) return 0; /* Already FATAL()'ed somewhere else */
vlmf645aff2004-08-22 03:09:24 +0000463 WITH_MODULE(a->module, ret = _asn1f_compare_tags(arg, a, b));
vlmfa67ddc2004-06-03 03:38:44 +0000464 return ret;
465 }
466
467 if(a->expr_type == ASN_CONSTR_CHOICE) {
468 asn1p_expr_t *v;
469
470 DEBUG(" %s is a choice type (%d)", a->Identifier, a->_mark);
471
472 /*
473 * Iterate over members of CHOICE.
474 */
475 //if(a->_mark & TM_RECURSION) return 0;
476 TQ_FOR(v, &(a->members), next) {
477 //a->_mark |= TM_RECURSION;
478 ret = _asn1f_compare_tags(arg, v, b);
479 //a->_mark &= ~TM_RECURSION;
480 if(ret) return ret;
481 }
482 return 0;
483 }
484
485 if(b->expr_type == ASN_CONSTR_CHOICE) {
486 return _asn1f_compare_tags(arg, b, a);
487 }
488
489 if(a->_mark & TM_RECURSION) return 0;
490 if(b->_mark & TM_RECURSION) return 0;
491 a->_mark |= TM_RECURSION;
492 b->_mark |= TM_RECURSION;
493 ret = _asn1f_compare_tags(arg, b, a);
494 a->_mark &= ~TM_RECURSION;
495 b->_mark &= ~TM_RECURSION;
496
497 return ret;
498}
499