blob: 8650f332456a7848f957643b391eb6724636f701 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin39248f12007-07-23 07:47:04 +00002 * Copyright (c) 2004, 2007 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
Lev Walkin41635d32006-03-18 05:06:57 +00006 * Read the NativeInteger.h for the explanation wrt. differences between
Lev Walkinf15320b2004-06-03 03:38:44 +00007 * INTEGER and NativeInteger.
8 * Basically, both are decoders and encoders of ASN.1 INTEGER type, but this
9 * implementation deals with the standard (machine-specific) representation
10 * of them instead of using the platform-independent buffer.
11 */
Lev Walkina9cc46e2004-09-22 16:06:28 +000012#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000013#include <NativeEnumerated.h>
14
15/*
16 * NativeEnumerated basic type description.
17 */
Wim Lewis18c2ec92014-07-29 11:30:10 -070018static const ber_tlv_tag_t asn_DEF_NativeEnumerated_tags[] = {
Lev Walkinf15320b2004-06-03 03:38:44 +000019 (ASN_TAG_CLASS_UNIVERSAL | (10 << 2))
20};
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080021asn_TYPE_operation_t asn_OP_NativeEnumerated = {
Lev Walkina9cc46e2004-09-22 16:06:28 +000022 NativeInteger_free,
23 NativeInteger_print,
Lev Walkincd2f48e2017-08-10 02:14:59 -070024 NativeInteger_compare,
Lev Walkinf15320b2004-06-03 03:38:44 +000025 asn_generic_no_constraint,
26 NativeInteger_decode_ber,
27 NativeInteger_encode_der,
Lev Walkin435cb282004-10-21 14:13:48 +000028 NativeInteger_decode_xer,
Lev Walkinc2350112005-03-29 17:19:53 +000029 NativeEnumerated_encode_xer,
Lev Walkincc159472017-07-06 08:26:36 -070030#ifdef ASN_DISABLE_OER_SUPPORT
31 0,
32 0,
33#else
Lev Walkinf9f3e062017-08-27 20:34:58 -070034 NativeEnumerated_decode_oer,
35 NativeEnumerated_encode_oer,
Lev Walkincc159472017-07-06 08:26:36 -070036#endif /* ASN_DISABLE_OER_SUPPORT */
Lev Walkinb33425f2017-07-14 14:59:52 +040037#ifdef ASN_DISABLE_PER_SUPPORT
38 0,
39 0,
40#else
41 NativeEnumerated_decode_uper,
42 NativeEnumerated_encode_uper,
43#endif /* ASN_DISABLE_PER_SUPPORT */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080044 0 /* Use generic outmost tag fetcher */
45};
46asn_TYPE_descriptor_t asn_DEF_NativeEnumerated = {
47 "ENUMERATED", /* The ASN.1 type is still ENUMERATED */
48 "ENUMERATED",
49 &asn_OP_NativeEnumerated,
50 asn_generic_no_constraint,
Lev Walkin5e033762004-09-29 13:26:15 +000051 asn_DEF_NativeEnumerated_tags,
52 sizeof(asn_DEF_NativeEnumerated_tags) / sizeof(asn_DEF_NativeEnumerated_tags[0]),
53 asn_DEF_NativeEnumerated_tags, /* Same as above */
54 sizeof(asn_DEF_NativeEnumerated_tags) / sizeof(asn_DEF_NativeEnumerated_tags[0]),
Lev Walkin76780762017-07-07 10:07:30 -070055 0, /* No OER visible constraints */
Lev Walkin59b176e2005-11-26 11:25:14 +000056 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000057 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000058 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000059};
Lev Walkin449f8322004-08-20 13:23:42 +000060
Lev Walkinc2350112005-03-29 17:19:53 +000061asn_enc_rval_t
62NativeEnumerated_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
63 int ilevel, enum xer_encoder_flags_e flags,
64 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkind62a6622017-08-22 02:31:02 -070065 const asn_INTEGER_specifics_t *specs =
66 (const asn_INTEGER_specifics_t *)td->specifics;
67 asn_enc_rval_t er;
68 const long *native = (const long *)sptr;
Lev Walkinc2350112005-03-29 17:19:53 +000069 const asn_INTEGER_enum_map_t *el;
70
71 (void)ilevel;
72 (void)flags;
73
Lev Walkin7c1dc052016-03-14 03:08:15 -070074 if(!native) ASN__ENCODE_FAILED;
Lev Walkinc2350112005-03-29 17:19:53 +000075
76 el = INTEGER_map_value2enum(specs, *native);
77 if(el) {
78 size_t srcsize = el->enum_len + 5;
79 char *src = (char *)alloca(srcsize);
80
81 er.encoded = snprintf(src, srcsize, "<%s/>", el->enum_name);
82 assert(er.encoded > 0 && (size_t)er.encoded < srcsize);
Lev Walkin7c1dc052016-03-14 03:08:15 -070083 if(cb(src, er.encoded, app_key) < 0) ASN__ENCODE_FAILED;
84 ASN__ENCODED_OK(er);
Lev Walkinc2350112005-03-29 17:19:53 +000085 } else {
86 ASN_DEBUG("ASN.1 forbids dealing with "
87 "unknown value of ENUMERATED type");
Lev Walkin7c1dc052016-03-14 03:08:15 -070088 ASN__ENCODE_FAILED;
Lev Walkinc2350112005-03-29 17:19:53 +000089 }
Lev Walkin59b176e2005-11-26 11:25:14 +000090}
Lev Walkinc2350112005-03-29 17:19:53 +000091
Lev Walkin59b176e2005-11-26 11:25:14 +000092asn_dec_rval_t
Lev Walkin523de9e2006-08-18 01:34:18 +000093NativeEnumerated_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
Lev Walkin494fb702017-08-07 20:07:00 -070094 asn_TYPE_descriptor_t *td, const asn_per_constraints_t *constraints,
Lev Walkin523de9e2006-08-18 01:34:18 +000095 void **sptr, asn_per_data_t *pd) {
Lev Walkind62a6622017-08-22 02:31:02 -070096 const asn_INTEGER_specifics_t *specs =
97 (const asn_INTEGER_specifics_t *)td->specifics;
98 asn_dec_rval_t rval = { RC_OK, 0 };
Lev Walkin59b176e2005-11-26 11:25:14 +000099 long *native = (long *)*sptr;
Lev Walkin494fb702017-08-07 20:07:00 -0700100 const asn_per_constraint_t *ct;
Lev Walkin59b176e2005-11-26 11:25:14 +0000101 long value;
102
103 (void)opt_codec_ctx;
104
105 if(constraints) ct = &constraints->value;
106 else if(td->per_constraints) ct = &td->per_constraints->value;
Lev Walkin7c1dc052016-03-14 03:08:15 -0700107 else ASN__DECODE_FAILED; /* Mandatory! */
108 if(!specs) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000109
110 if(!native) {
111 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
Lev Walkin7c1dc052016-03-14 03:08:15 -0700112 if(!native) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000113 }
114
115 ASN_DEBUG("Decoding %s as NativeEnumerated", td->name);
116
117 if(ct->flags & APC_EXTENSIBLE) {
118 int inext = per_get_few_bits(pd, 1);
Lev Walkin7c1dc052016-03-14 03:08:15 -0700119 if(inext < 0) ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000120 if(inext) ct = 0;
121 }
122
123 if(ct && ct->range_bits >= 0) {
124 value = per_get_few_bits(pd, ct->range_bits);
Lev Walkin7c1dc052016-03-14 03:08:15 -0700125 if(value < 0) ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000126 if(value >= (specs->extension
127 ? specs->extension - 1 : specs->map_count))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700128 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000129 } else {
130 if(!specs->extension)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700131 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000132 /*
133 * X.691, #10.6: normally small non-negative whole number;
134 */
135 value = uper_get_nsnnwn(pd);
Lev Walkin7c1dc052016-03-14 03:08:15 -0700136 if(value < 0) ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000137 value += specs->extension - 1;
138 if(value >= specs->map_count)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700139 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000140 }
141
142 *native = specs->value2enum[value].nat_value;
143 ASN_DEBUG("Decoded %s = %ld", td->name, *native);
144
145 return rval;
Lev Walkinc2350112005-03-29 17:19:53 +0000146}
147
Lev Walkin523de9e2006-08-18 01:34:18 +0000148static int
149NativeEnumerated__compar_value2enum(const void *ap, const void *bp) {
150 const asn_INTEGER_enum_map_t *a = ap;
151 const asn_INTEGER_enum_map_t *b = bp;
152 if(a->nat_value == b->nat_value)
153 return 0;
154 if(a->nat_value < b->nat_value)
155 return -1;
156 return 1;
157}
158
159asn_enc_rval_t
160NativeEnumerated_encode_uper(asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -0700161 const asn_per_constraints_t *constraints,
162 void *sptr, asn_per_outp_t *po) {
Lev Walkind62a6622017-08-22 02:31:02 -0700163 const asn_INTEGER_specifics_t *specs =
164 (const asn_INTEGER_specifics_t *)td->specifics;
165 asn_enc_rval_t er;
Lev Walkin523de9e2006-08-18 01:34:18 +0000166 long native, value;
Lev Walkin494fb702017-08-07 20:07:00 -0700167 const asn_per_constraint_t *ct;
Lev Walkin523de9e2006-08-18 01:34:18 +0000168 int inext = 0;
169 asn_INTEGER_enum_map_t key;
Wim Lewisfb6344e2014-07-28 12:16:01 -0700170 const asn_INTEGER_enum_map_t *kf;
Lev Walkin523de9e2006-08-18 01:34:18 +0000171
Lev Walkin7c1dc052016-03-14 03:08:15 -0700172 if(!sptr) ASN__ENCODE_FAILED;
173 if(!specs) ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000174
175 if(constraints) ct = &constraints->value;
176 else if(td->per_constraints) ct = &td->per_constraints->value;
Lev Walkin7c1dc052016-03-14 03:08:15 -0700177 else ASN__ENCODE_FAILED; /* Mandatory! */
Lev Walkin523de9e2006-08-18 01:34:18 +0000178
179 ASN_DEBUG("Encoding %s as NativeEnumerated", td->name);
180
181 er.encoded = 0;
182
183 native = *(long *)sptr;
Lev Walkin7c1dc052016-03-14 03:08:15 -0700184 if(native < 0) ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000185
186 key.nat_value = native;
187 kf = bsearch(&key, specs->value2enum, specs->map_count,
188 sizeof(key), NativeEnumerated__compar_value2enum);
189 if(!kf) {
190 ASN_DEBUG("No element corresponds to %ld", native);
Lev Walkin7c1dc052016-03-14 03:08:15 -0700191 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000192 }
193 value = kf - specs->value2enum;
194
195 if(ct->range_bits >= 0) {
196 int cmpWith = specs->extension
197 ? specs->extension - 1 : specs->map_count;
198 if(value >= cmpWith)
199 inext = 1;
200 }
201 if(ct->flags & APC_EXTENSIBLE) {
Lev Walkin39248f12007-07-23 07:47:04 +0000202 if(per_put_few_bits(po, inext, 1))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700203 ASN__ENCODE_FAILED;
Lev Walkined502112007-07-23 09:57:00 +0000204 if(inext) ct = 0;
Lev Walkin523de9e2006-08-18 01:34:18 +0000205 } else if(inext) {
Lev Walkin7c1dc052016-03-14 03:08:15 -0700206 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000207 }
208
209 if(ct && ct->range_bits >= 0) {
210 if(per_put_few_bits(po, value, ct->range_bits))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700211 ASN__ENCODE_FAILED;
212 ASN__ENCODED_OK(er);
Lev Walkin523de9e2006-08-18 01:34:18 +0000213 }
214
215 if(!specs->extension)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700216 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000217
218 /*
219 * X.691, #10.6: normally small non-negative whole number;
220 */
Lev Walkin8bb57a22007-12-03 13:41:36 +0000221 ASN_DEBUG("value = %ld, ext = %d, inext = %d, res = %ld",
Lev Walkin39248f12007-07-23 07:47:04 +0000222 value, specs->extension, inext,
223 value - (inext ? (specs->extension - 1) : 0));
224 if(uper_put_nsnnwn(po, value - (inext ? (specs->extension - 1) : 0)))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700225 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000226
Lev Walkin7c1dc052016-03-14 03:08:15 -0700227 ASN__ENCODED_OK(er);
Lev Walkin523de9e2006-08-18 01:34:18 +0000228}
229