aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1fix
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-03-20 11:07:34 +0000
committerLev Walkin <vlm@lionet.info>2005-03-20 11:07:34 +0000
commita7247f9ad2e0459b2d826952576c9dcd65ced37f (patch)
tree293c763ba0cd499d6f1e7e6cca68533909c069d5 /libasn1fix
parentd36ac7206c54cd764d361b6a9717bc09030636c6 (diff)
string type compatibility
Diffstat (limited to 'libasn1fix')
-rw-r--r--libasn1fix/asn1fix_compat.c27
-rw-r--r--libasn1fix/asn1fix_value.c9
2 files changed, 28 insertions, 8 deletions
diff --git a/libasn1fix/asn1fix_compat.c b/libasn1fix/asn1fix_compat.c
index 2efa8e85..064e38e5 100644
--- a/libasn1fix/asn1fix_compat.c
+++ b/libasn1fix/asn1fix_compat.c
@@ -23,25 +23,37 @@ asn1f_check_type_compatibility(arg_t *arg, asn1p_expr_t *a, asn1p_expr_t *b) {
assert(atype != A1TC_REFERENCE);
assert(btype != A1TC_REFERENCE);
+ if(a == b)
+ return 0; /* Fairly obviously */
+
if(atype != btype) {
/*
- * Limited compatibility.
+ * Limited cross-compatibility of integer types.
*/
if((atype == A1TC_UNIVERVAL && btype == ASN_BASIC_INTEGER)
|| (atype == A1TC_UNIVERVAL && btype == ASN_BASIC_ENUMERATED)
)
return 0;
+
+ /* Limited cross-compatibility of string types */
+ if((atype & ASN_STRING_MASK)
+ && (btype & ASN_STRING_MASK)) {
+ /* X.680, B.5 */
+ int akm = (atype & ASN_STRING_KM_MASK)
+ || atype == ASN_STRING_UTF8String;
+ int bkm = (btype & ASN_STRING_KM_MASK)
+ || btype == ASN_STRING_UTF8String;
+ return (akm == bkm) ? 0 : -1;
+ }
+
DEBUG("\t%s and %s are not compatible",
a->Identifier, b->Identifier);
return -1; /* Fairly obviously */
}
- if(a == b)
- return 0; /* Fairly obviously */
-
switch(atype) {
case ASN_BASIC_INTEGER:
- /* All integers are compatible */
+ /* All integers are compatible, X.680, B.4.5 */
return 0;
case ASN_BASIC_ENUMERATED:
/*
@@ -55,6 +67,11 @@ asn1f_check_type_compatibility(arg_t *arg, asn1p_expr_t *a, asn1p_expr_t *b) {
}
return 0;
default:
+ if((atype & ASN_STRING_MASK)
+ && (btype & ASN_STRING_MASK)) {
+ /* String type is compatible with the same type */
+ return 0;
+ }
/* Compatibility is not defined yet */
DEBUG("\tCompatibility rule is not defined for %s and %s",
a->Identifier, b->Identifier);
diff --git a/libasn1fix/asn1fix_value.c b/libasn1fix/asn1fix_value.c
index 161d9a38..18d86866 100644
--- a/libasn1fix/asn1fix_value.c
+++ b/libasn1fix/asn1fix_value.c
@@ -79,6 +79,11 @@ asn1f_value_resolve(arg_t *arg, asn1p_expr_t *expr, const enum asn1p_constraint_
type_expr, val_type_expr);
if(ret == -1) {
switch(type_expr->expr_type) {
+ default:
+ if(!(type_expr->expr_type & ASN_STRING_MASK))
+ break;
+ /* Compatibility rules are not defined */
+ /* Fall through */
case ASN_BASIC_INTEGER:
case ASN_BASIC_ENUMERATED:
FATAL("Incompatible type of \"%s\" (%s) at line %d "
@@ -96,10 +101,8 @@ asn1f_value_resolve(arg_t *arg, asn1p_expr_t *expr, const enum asn1p_constraint_
* We can't deal with OIDs inheritance properly yet.
*/
return 0;
- default:
- break;
}
- WARNING("Incompatible type of \"%s\" (%s) at line %d "
+ WARNING("Possibly incompatible type of \"%s\" (%s) at line %d "
"with \"%s\" (%s) at line %d",
type_expr->Identifier,
ASN_EXPR_TYPE2STR(type_expr->expr_type),