blob: 124576f2dc0c97811ac5f144e1729150d498ede5 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001#include "asn1fix_internal.h"
Lev Walkin4efbfb72005-02-25 14:20:30 +00002#include "asn1fix.h"
Lev Walkinf15320b2004-06-03 03:38:44 +00003
4/* Print everything to stderr */
5static void _default_error_logger(int _severity, const char *fmt, ...);
6
7/*
8 * Internal check functions.
9 */
Lev Walkind24c62d2004-09-15 11:47:23 +000010static int asn1f_fix_module__phase_1(arg_t *arg);
11static int asn1f_fix_module__phase_2(arg_t *arg);
Lev Walkinf15320b2004-06-03 03:38:44 +000012static int asn1f_fix_simple(arg_t *arg); /* For INTEGER/ENUMERATED */
13static int asn1f_fix_constructed(arg_t *arg); /* For SEQUENCE/SET/CHOICE */
Lev Walkin1ef05162004-08-25 00:42:25 +000014static int asn1f_resolve_constraints(arg_t *arg); /* For subtype constraints */
15static int asn1f_check_constraints(arg_t *arg); /* For subtype constraints */
Lev Walkinf593f102005-02-22 07:59:59 +000016static int asn1f_check_duplicate(arg_t *arg);
Lev Walkin1dec5802005-03-04 09:02:27 +000017static int asn1f_apply_unique_index(arg_t *arg);
Lev Walkina00d6b32006-03-21 03:40:38 +000018static int phase_1_1(arg_t *arg, int prm2);
Lev Walkinf15320b2004-06-03 03:38:44 +000019
Lev Walkinb45e0672004-08-18 05:42:05 +000020arg_t a1f_replace_me_with_proper_interface_arg;
Lev Walkinf15320b2004-06-03 03:38:44 +000021
22/*
23 * Scan every module defined here in search for inconsistences.
24 */
25int
26asn1f_process(asn1p_t *asn, enum asn1f_flags flags,
27 error_logger_f error_logger) {
28 arg_t arg;
29 int fatals = 0;
30 int warnings = 0;
Lev Walkin4533a5f2005-03-18 04:22:41 +000031 int ret;
Lev Walkinf15320b2004-06-03 03:38:44 +000032
33 /*
34 * Check validity of arguments.
35 */
36 if(asn == NULL) {
37 errno = EINVAL;
38 return -1;
39 }
40
41 /*
42 * If errors handler is not specified, default to internal one.
43 */
44 if(error_logger == 0) {
45 error_logger = _default_error_logger;
46 }
47
48 memset(&arg, 0, sizeof(arg));
49 arg.asn = asn;
50 arg.eh = error_logger;
51
52 if(flags & A1F_DEBUG) {
53 arg.debug = arg.eh;
54 arg.debug(-1, "Called %s() with flags %d", __func__, flags);
55 flags &= ~A1F_DEBUG;
56 }
57
Lev Walkin5253da42004-08-20 13:25:56 +000058 /* Allow SIZE() constraint for INTEGER and other types */
59 if(flags & A1F_EXTENDED_SizeConstraint) {
60 arg.flags |= A1F_EXTENDED_SizeConstraint;
61 flags &= ~A1F_EXTENDED_SizeConstraint;
62 if(arg.debug) {
63 arg.debug(-1,
64 "Extended SizeConstraint support enabled");
65 }
66 }
67
Lev Walkinb45e0672004-08-18 05:42:05 +000068 a1f_replace_me_with_proper_interface_arg = arg;
69
Lev Walkinf15320b2004-06-03 03:38:44 +000070 /*
71 * Check that we haven't missed an unknown flag.
72 */
73 if(flags) {
74 errno = EINVAL;
75 return -1;
76 }
77
78 /*
79 * Process each module in the list.
Lev Walkinf593f102005-02-22 07:59:59 +000080 * PHASE I.
Lev Walkinf15320b2004-06-03 03:38:44 +000081 */
82 TQ_FOR(arg.mod, &(asn->modules), mod_next) {
Lev Walkin4533a5f2005-03-18 04:22:41 +000083 ret = asn1f_fix_module__phase_1(&arg);
Lev Walkinf15320b2004-06-03 03:38:44 +000084 /*
85 * These lines are used for illustration purposes.
86 * RET2RVAL() is used everywhere else.
87 */
88 if(ret == -1) fatals++;
89 if(ret == 1) warnings++;
90 }
Lev Walkinf593f102005-02-22 07:59:59 +000091 /* PHASE II. */
Lev Walkind24c62d2004-09-15 11:47:23 +000092 TQ_FOR(arg.mod, &(asn->modules), mod_next) {
Lev Walkin4533a5f2005-03-18 04:22:41 +000093 ret = asn1f_fix_module__phase_2(&arg);
Lev Walkind24c62d2004-09-15 11:47:23 +000094 if(ret == -1) fatals++;
95 if(ret == 1) warnings++;
96 }
97
98 memset(&a1f_replace_me_with_proper_interface_arg, 0, sizeof(arg_t));
Lev Walkinf15320b2004-06-03 03:38:44 +000099
100 /*
101 * Compute a return value.
102 */
103 return fatals?-1:warnings?1:0;
104}
105
106/*
107 * Check the internals of a single module.
108 */
109static int
Lev Walkind24c62d2004-09-15 11:47:23 +0000110asn1f_fix_module__phase_1(arg_t *arg) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000111 asn1p_expr_t *expr;
112 int rvalue = 0;
Lev Walkin1ef05162004-08-25 00:42:25 +0000113 int ret;
Lev Walkin4533a5f2005-03-18 04:22:41 +0000114 asn1p_module_t *omod;
115
116 /*
117 * Check that we don't have a similarly named module.
118 */
119 TQ_FOR(omod, &arg->asn->modules, mod_next) {
120 int sameNames;
121 if(omod == arg->mod) break;
Lev Walkinb36317c2005-08-12 10:09:10 +0000122 sameNames = strcmp(omod->ModuleName, arg->mod->ModuleName)?0:1;
Lev Walkin4533a5f2005-03-18 04:22:41 +0000123 if(omod->module_oid && arg->mod->module_oid) {
124 /* Compare only the OID. */
125 if(asn1p_oid_compare(omod->module_oid,
126 arg->mod->module_oid) == 0) {
Lev Walkin1a447952005-03-18 04:26:12 +0000127 FATAL("ASN.1 module %s in %s "
Lev Walkin4533a5f2005-03-18 04:22:41 +0000128 "has the same OBJECT IDENTIFIER"
Lev Walkin1a447952005-03-18 04:26:12 +0000129 " as module %s",
Lev Walkinb36317c2005-08-12 10:09:10 +0000130 omod->ModuleName,
Lev Walkin1a447952005-03-18 04:26:12 +0000131 omod->source_file_name,
Lev Walkinb36317c2005-08-12 10:09:10 +0000132 arg->mod->ModuleName
Lev Walkin4533a5f2005-03-18 04:22:41 +0000133 );
134 RET2RVAL(-1, rvalue);
135 } else if(sameNames) {
Lev Walkinb36317c2005-08-12 10:09:10 +0000136 WARNING("ASN.1 module %s is defined more than once, with different OIDs", omod->ModuleName);
Lev Walkin4533a5f2005-03-18 04:22:41 +0000137 RET2RVAL(1, rvalue);
138 }
139 } else if(sameNames) {
140 FATAL("ASN.1 module %s is defined more than once",
Lev Walkinb36317c2005-08-12 10:09:10 +0000141 omod->ModuleName);
Lev Walkin4533a5f2005-03-18 04:22:41 +0000142 RET2RVAL(-1, rvalue);
143 }
144 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000145
Lev Walkinb45e0672004-08-18 05:42:05 +0000146 switch((arg->mod->module_flags & MSF_MASK_TAGS)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000147 case MSF_NOFLAGS:
148 case MSF_EXPLICIT_TAGS:
149 case MSF_IMPLICIT_TAGS:
150 case MSF_AUTOMATIC_TAGS:
151 break;
152 default:
153 FATAL("Module %s defined with ambiguous global tagging mode",
Lev Walkinb36317c2005-08-12 10:09:10 +0000154 arg->mod->ModuleName);
Lev Walkinf15320b2004-06-03 03:38:44 +0000155 RET2RVAL(-1, rvalue);
156 }
157
Lev Walkinb45e0672004-08-18 05:42:05 +0000158 switch((arg->mod->module_flags & MSF_MASK_INSTRUCTIONS)) {
159 case MSF_NOFLAGS:
Lev Walkin4ec3b4c2004-08-22 03:09:24 +0000160 /*
161 * arg->mod->module_flags |= MSF_TAG_INSTRUCTIONS;
162 */
Lev Walkinb45e0672004-08-18 05:42:05 +0000163 break;
164 case MSF_unk_INSTRUCTIONS:
165 WARNING("Module %s defined with unrecognized "
Lev Walkinb36317c2005-08-12 10:09:10 +0000166 "encoding reference", arg->mod->ModuleName);
Lev Walkinb45e0672004-08-18 05:42:05 +0000167 RET2RVAL(1, rvalue);
168 /* Fall through */
169 case MSF_TAG_INSTRUCTIONS:
170 case MSF_XER_INSTRUCTIONS:
171 break;
172 default:
173 FATAL("Module %s defined with ambiguous encoding reference",
Lev Walkinb36317c2005-08-12 10:09:10 +0000174 arg->mod->ModuleName);
Lev Walkinb45e0672004-08-18 05:42:05 +0000175 RET2RVAL(-1, rvalue);
176 }
177
Lev Walkinf15320b2004-06-03 03:38:44 +0000178 /*
179 * Do various non-recursive transformations.
Lev Walkinf15320b2004-06-03 03:38:44 +0000180 */
181 TQ_FOR(expr, &(arg->mod->members), next) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000182 arg->expr = expr;
Lev Walkina00d6b32006-03-21 03:40:38 +0000183 ret = phase_1_1(arg, 0);
Lev Walkinf593f102005-02-22 07:59:59 +0000184 RET2RVAL(ret, rvalue);
Lev Walkinf15320b2004-06-03 03:38:44 +0000185 /*
186 * Make sure everybody's behaving well.
187 */
188 assert(arg->expr == expr);
189 }
Lev Walkina00d6b32006-03-21 03:40:38 +0000190 TQ_FOR(expr, &(arg->mod->members), next) {
191 arg->expr = expr;
192 ret = phase_1_1(arg, 1);
193 RET2RVAL(ret, rvalue);
194 assert(arg->expr == expr);
195 }
196
197
Lev Walkinf15320b2004-06-03 03:38:44 +0000198
199 /*
200 * 5. Automatic tagging
201 */
202 TQ_FOR(expr, &(arg->mod->members), next) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000203
204 arg->expr = expr;
205
206 ret = asn1f_recurse_expr(arg, asn1f_fix_constr_autotag);
207 RET2RVAL(ret, rvalue);
208
209 assert(arg->expr == expr);
210 }
211
212 /*
213 * 8. fix BIT STRING
214 * 9. fix spaces in cstrings
215 */
216 TQ_FOR(expr, &(arg->mod->members), next) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000217 arg->expr = expr;
218
219 ret = asn1f_recurse_expr(arg, asn1f_fix_bit_string);
220 RET2RVAL(ret, rvalue);
221
222 ret = asn1f_recurse_expr(arg, asn1f_fix_cstring);
223 RET2RVAL(ret, rvalue);
224
225 assert(arg->expr == expr);
226 }
227
228 /*
229 * ... Check for tags distinctness.
230 */
231 TQ_FOR(expr, &(arg->mod->members), next) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000232 arg->expr = expr;
233
234 ret = asn1f_recurse_expr(arg, asn1f_check_constr_tags_distinct);
235 RET2RVAL(ret, rvalue);
236
237 assert(arg->expr == expr);
238 }
239
Lev Walkind24c62d2004-09-15 11:47:23 +0000240 return rvalue;
241}
242
243static int
244asn1f_fix_module__phase_2(arg_t *arg) {
245 asn1p_expr_t *expr;
246 int rvalue = 0;
247 int ret;
248
Lev Walkin1ef05162004-08-25 00:42:25 +0000249 TQ_FOR(expr, &(arg->mod->members), next) {
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +0800250
Lev Walkin1ef05162004-08-25 00:42:25 +0000251 arg->expr = expr;
252
Lev Walkinb25fa062004-09-29 13:17:06 +0000253 /*
Lev Walkin3645c1c2004-10-31 00:11:50 +0000254 * Dereference DEFAULT values.
255 */
256 ret = asn1f_recurse_expr(arg, asn1f_fix_dereference_defaults);
257 RET2RVAL(ret, rvalue);
258
259 /*
Lev Walkinb25fa062004-09-29 13:17:06 +0000260 * Check semantic validity of constraints.
261 */
Lev Walkin1ef05162004-08-25 00:42:25 +0000262 ret = asn1f_recurse_expr(arg, asn1f_check_constraints);
263 RET2RVAL(ret, rvalue);
264
Lev Walkin1dec5802005-03-04 09:02:27 +0000265 /*
266 * Uniquely tag each inner type.
267 */
268 asn1f_apply_unique_index(0);
269 ret = asn1f_recurse_expr(arg, asn1f_apply_unique_index);
270 RET2RVAL(ret, rvalue);
271
Lev Walkin1ef05162004-08-25 00:42:25 +0000272 assert(arg->expr == expr);
273 }
274
Lev Walkinf15320b2004-06-03 03:38:44 +0000275 return rvalue;
276}
277
Lev Walkinf15320b2004-06-03 03:38:44 +0000278static int
Lev Walkina00d6b32006-03-21 03:40:38 +0000279phase_1_1(arg_t *arg, int prm2) {
280 asn1p_expr_t *expr = arg->expr;
281 int rvalue = 0;
282 int ret;
283
284 if(expr->lhs_params && expr->spec_index == -1) {
285 int i;
286 if(!prm2)
287 /* Do not process the parameterized type just yet */
288 return 0;
289 for(i = 0; i < expr->specializations.pspecs_count; i++) {
290 arg->expr = expr->specializations.pspec[i].my_clone;
291 ret = phase_1_1(arg, 0);
292 RET2RVAL(ret, rvalue);
293 }
294 arg->expr = expr; /* revert */
295 return rvalue;
296 } else if(prm2) {
297 return 0; /* Already done! */
298 }
299
300 /* Check whether this type is a duplicate */
301 if(!expr->lhs_params) {
302 ret = asn1f_check_duplicate(arg);
303 RET2RVAL(ret, rvalue);
304 }
305
306 DEBUG("=== Now processing \"%s\" (%d/0x%x) at line %d ===",
307 expr->Identifier, expr->meta_type, expr->expr_type,
308 expr->_lineno);
309 assert(expr->meta_type != AMT_INVALID);
310
311 /*
312 * 2.1 Pre-process simple types (ENUMERATED, INTEGER, etc).
313 */
314 ret = asn1f_recurse_expr(arg, asn1f_fix_simple);
315 RET2RVAL(ret, rvalue);
316
317 /*
318 * 2.5.4
319 */
320 ret = asn1f_recurse_expr(arg, asn1f_fix_dereference_types);
321 RET2RVAL(ret, rvalue);
322
323 /*
324 * Fix tagging of top-level types.
325 */
326 ret = asn1f_fix_constr_tag(arg, 1);
327 RET2RVAL(ret, rvalue);
328
329 /*
330 * 2.[234] Process SEQUENCE/SET/CHOICE types.
331 */
332 ret = asn1f_recurse_expr(arg, asn1f_fix_constructed);
333 RET2RVAL(ret, rvalue);
334
335 /*
336 * 2.5.5
337 */
338 ret = asn1f_recurse_expr(arg, asn1f_fix_dereference_values);
339 RET2RVAL(ret, rvalue);
340
341 /*
342 * Parse class objects and fill up the object class with data.
343 */
344 ret = asn1f_parse_class_object(arg);
345 RET2RVAL(ret, rvalue);
346
347 /*
348 * Resolve references in constraints.
349 */
350 ret = asn1f_recurse_expr(arg, asn1f_resolve_constraints);
351 RET2RVAL(ret, rvalue);
352
353 /*
354 * 6. INTEGER value processed at 2.5.4.
355 */
356
357 return rvalue;
358}
359
360static int
Lev Walkinf15320b2004-06-03 03:38:44 +0000361asn1f_fix_simple(arg_t *arg) {
362 int rvalue = 0;
363 int ret;
364
365 ret = asn1f_fix_enum(arg);
366 RET2RVAL(ret, rvalue);
367
368 ret = asn1f_fix_integer(arg);
369 RET2RVAL(ret, rvalue);
370
371 return rvalue;
372}
373
374static int
375asn1f_fix_constructed(arg_t *arg) {
376 int rvalue = 0;
377 int ret;
378
379 switch(arg->expr->expr_type) {
380 case ASN_CONSTR_SEQUENCE:
381 case ASN_CONSTR_SET:
382 case ASN_CONSTR_CHOICE:
383 break;
384 default:
385 return 0;
386 }
387
388 /* Check identifier distinctness */
Lev Walkinfbfc7bc2006-08-28 02:45:44 +0000389 ret = asn1f_check_unique_expr(arg);
Lev Walkinf15320b2004-06-03 03:38:44 +0000390 RET2RVAL(ret, rvalue);
391
392 /* Fix extensibility */
393 ret = asn1f_fix_constr_ext(arg);
394 RET2RVAL(ret, rvalue);
395
396 /* Fix tagging */
Lev Walkind541c252004-09-05 10:36:22 +0000397 ret = asn1f_fix_constr_tag(arg, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +0000398 RET2RVAL(ret, rvalue);
399
Lev Walkin4ec3b4c2004-08-22 03:09:24 +0000400 /* Import COMPONENTS OF stuff */
401 ret = asn1f_pull_components_of(arg);
402 RET2RVAL(ret, rvalue);
403
Lev Walkinf15320b2004-06-03 03:38:44 +0000404 return rvalue;
405}
406
407static int
Lev Walkin1ef05162004-08-25 00:42:25 +0000408asn1f_resolve_constraints(arg_t *arg) {
Lev Walkinb45e0672004-08-18 05:42:05 +0000409 asn1p_expr_t *top_parent;
Lev Walkin5253da42004-08-20 13:25:56 +0000410 asn1p_expr_type_e etype;
Lev Walkinf15320b2004-06-03 03:38:44 +0000411 int rvalue = 0;
412 int ret;
413
Lev Walkin4ec3b4c2004-08-22 03:09:24 +0000414 top_parent = asn1f_find_terminal_type(arg, arg->expr);
Lev Walkin5253da42004-08-20 13:25:56 +0000415 if(top_parent)
416 etype = top_parent->expr_type;
417 else etype = A1TC_INVALID;
418
Lev Walkin03850182005-03-10 10:02:50 +0000419 DEBUG("(%s)", arg->expr->Identifier);
Lev Walkind541c252004-09-05 10:36:22 +0000420
Lev Walkin7ec9b4c2005-03-20 12:57:21 +0000421 ret = asn1constraint_resolve(arg, arg->expr->constraints, etype, 0);
Lev Walkinb45e0672004-08-18 05:42:05 +0000422 RET2RVAL(ret, rvalue);
Lev Walkinf15320b2004-06-03 03:38:44 +0000423
Lev Walkin1ef05162004-08-25 00:42:25 +0000424 return rvalue;
425}
426
427static int
428asn1f_check_constraints(arg_t *arg) {
429 static enum asn1p_constraint_type_e test_types[] = {
430 ACT_EL_RANGE, ACT_CT_SIZE, ACT_CT_FROM };
431 asn1p_expr_t *top_parent;
432 asn1cnst_range_t *range;
433 asn1p_expr_type_e etype;
434 unsigned int i;
435 int rvalue = 0;
436 int ret;
437
Lev Walkin03850182005-03-10 10:02:50 +0000438 DEBUG("(%s{%d/%d})",
Lev Walkind541c252004-09-05 10:36:22 +0000439 arg->expr->Identifier,
440 arg->expr->meta_type, arg->expr->expr_type);
441
Lev Walkin1ef05162004-08-25 00:42:25 +0000442 top_parent = asn1f_find_terminal_type(arg, arg->expr);
443 if(!top_parent)
444 return 0;
445 etype = top_parent->expr_type;
446
Lev Walkinb45e0672004-08-18 05:42:05 +0000447 ret = asn1constraint_pullup(arg);
448 RET2RVAL(ret, rvalue);
449
Lev Walkin1ef05162004-08-25 00:42:25 +0000450 for(i = 0; i < sizeof(test_types)/sizeof(test_types[0]); i++) {
Lev Walkina28cbb92017-07-31 20:20:17 -0700451 range = asn1constraint_compute_constraint_range(
452 arg->expr->Identifier,
Lev Walkinb9fa7802004-08-25 02:04:39 +0000453 etype,
Lev Walkin1ef05162004-08-25 00:42:25 +0000454 arg->expr->combined_constraints,
Lev Walkin4b553412005-08-14 14:45:44 +0000455 test_types[i], 0, 0,
456 CPR_noflags /* ignore -fbless-SIZE */);
Lev Walkind541c252004-09-05 10:36:22 +0000457 if(!range && errno == EPERM) {
Lev Walkin9288d1c2005-03-10 11:27:13 +0000458 FATAL("This error happened for \"%s\" (meta %d) "
459 "at line %d",
Lev Walkind541c252004-09-05 10:36:22 +0000460 arg->expr->Identifier,
461 arg->expr->meta_type,
462 arg->expr->_lineno);
Lev Walkin1ef05162004-08-25 00:42:25 +0000463 return -1;
Lev Walkind541c252004-09-05 10:36:22 +0000464 }
Lev Walkin1ef05162004-08-25 00:42:25 +0000465 asn1constraint_range_free(range);
Lev Walkinb45e0672004-08-18 05:42:05 +0000466 }
Lev Walkin1ef05162004-08-25 00:42:25 +0000467
Lev Walkinf15320b2004-06-03 03:38:44 +0000468 return rvalue;
469}
470
Lev Walkinf593f102005-02-22 07:59:59 +0000471static int
472asn1f_check_duplicate(arg_t *arg) {
473 arg_t tmparg = *arg;
Lev Walkin9c2285a2006-03-09 08:49:26 +0000474 int rvalue = 0;
Lev Walkinf593f102005-02-22 07:59:59 +0000475
476 /*
477 * This is a linear scan in search of a similar type.
478 * The linear scan is just fine for the task, no need to over-optimize.
479 */
480 TQ_FOR(tmparg.mod, &arg->asn->modules, mod_next) {
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000481 int critical = 1; /* FATAL */
482
483 if((arg->mod->_tags & MT_STANDARD_MODULE)
484 != (tmparg.mod->_tags & MT_STANDARD_MODULE)) {
485 /* Ignore clashes with standard module */
486 critical = 0; /* WARNING */
487 }
488
Lev Walkinf593f102005-02-22 07:59:59 +0000489 TQ_FOR(tmparg.expr, &(tmparg.mod->members), next) {
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000490 int diff_files; /* different files */
491
Lev Walkinf593f102005-02-22 07:59:59 +0000492 assert(tmparg.expr->Identifier);
493 assert(arg->expr->Identifier);
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000494
Lev Walkin0c0bca62006-03-21 04:48:15 +0000495 if(arg->expr->spec_index != -1)
496 continue;
497
Lev Walkinf593f102005-02-22 07:59:59 +0000498 if(tmparg.expr == arg->expr) break;
499
500 if(strcmp(tmparg.expr->Identifier,
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000501 arg->expr->Identifier))
502 continue;
503
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +0800504 /* resolve clash of Identifier in different modules */
505 int oid_exist = (tmparg.expr->module->module_oid && arg->expr->module->module_oid);
506 if ((!oid_exist && strcmp(tmparg.expr->module->ModuleName, arg->expr->module->ModuleName)) ||
507 (oid_exist && !asn1p_oid_compare(tmparg.expr->module->module_oid, arg->expr->module->module_oid))) {
508
509 tmparg.expr->_mark |= TM_NAMECLASH;
510 arg->expr->_mark |= TM_NAMECLASH;
511 continue;
512 }
513
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000514 diff_files = strcmp(arg->mod->source_file_name,
515 tmparg.mod->source_file_name) ? 1 : 0;
516
517 LOG(critical,
518 "ASN.1 expression \"%s\" at line %d of module %s\n"
519 "clashes with expression \"%s\" at line %d of module %s"
520 "%s%s%s.\n"
Lev Walkin41635d32006-03-18 05:06:57 +0000521 "Rename or remove either instance "
522 "to resolve the conflict",
Lev Walkin1a7cbd72006-03-07 10:39:42 +0000523 arg->expr->Identifier,
524 arg->expr->_lineno,
525 arg->mod->ModuleName,
526 tmparg.expr->Identifier,
527 tmparg.expr->_lineno,
528 tmparg.mod->ModuleName,
529 diff_files ? " (" : "",
530 diff_files ? tmparg.mod->source_file_name : "",
531 diff_files ? ")" : "");
532 if(critical)
Lev Walkinf593f102005-02-22 07:59:59 +0000533 return -1;
Lev Walkin9c2285a2006-03-09 08:49:26 +0000534 RET2RVAL(1, rvalue);
Lev Walkinf593f102005-02-22 07:59:59 +0000535 }
536 if(tmparg.mod == arg->mod) break;
537 }
538
Lev Walkin9c2285a2006-03-09 08:49:26 +0000539 return rvalue;
Lev Walkinf593f102005-02-22 07:59:59 +0000540}
541
Lev Walkin1dec5802005-03-04 09:02:27 +0000542static int
543asn1f_apply_unique_index(arg_t *arg) {
544 static int unique_index;
545 if(!arg) { unique_index = 0; return 0; }
546
Lev Walkin1dec5802005-03-04 09:02:27 +0000547 arg->expr->_type_unique_index = ++unique_index;
548
549 return 0;
550}
551
Lev Walkinf15320b2004-06-03 03:38:44 +0000552/*
553 * Print everything to stderr
554 */
555static void
556_default_error_logger(int _severity, const char *fmt, ...) {
557 va_list ap;
558 char *pfx = "";
559
560 switch(_severity) {
561 case -1: pfx = "DEBUG: "; break;
562 case 0: pfx = "WARNING: "; break;
563 case 1: pfx = "FATAL: "; break;
564 }
565
566 fprintf(stderr, "%s", pfx);
567 va_start(ap, fmt);
568 vfprintf(stderr, fmt, ap);
569 va_end(ap);
570 fprintf(stderr, "\n");
571}