blob: c49c6d209649be01dfbe92b229de2e7bc2531f34 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin523de9e2006-08-18 01:34:18 +00002 * Copyright (c) 2004, 2005, 2006 Lev Walkin <vlm@lionet.info>.
3 * All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
6/*
Lev Walkin41635d32006-03-18 05:06:57 +00007 * Read the NativeInteger.h for the explanation wrt. differences between
Lev Walkinf15320b2004-06-03 03:38:44 +00008 * INTEGER and NativeInteger.
9 * Basically, both are decoders and encoders of ASN.1 INTEGER type, but this
10 * implementation deals with the standard (machine-specific) representation
11 * of them instead of using the platform-independent buffer.
12 */
Lev Walkina9cc46e2004-09-22 16:06:28 +000013#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000014#include <NativeInteger.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000015
16/*
17 * NativeInteger basic type description.
18 */
Wim Lewis18c2ec92014-07-29 11:30:10 -070019static const ber_tlv_tag_t asn_DEF_NativeInteger_tags[] = {
Lev Walkinf15320b2004-06-03 03:38:44 +000020 (ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
21};
Lev Walkin5e033762004-09-29 13:26:15 +000022asn_TYPE_descriptor_t asn_DEF_NativeInteger = {
Lev Walkinf15320b2004-06-03 03:38:44 +000023 "INTEGER", /* The ASN.1 type is still INTEGER */
Lev Walkindc06f6b2004-10-20 15:50:55 +000024 "INTEGER",
Lev Walkina9cc46e2004-09-22 16:06:28 +000025 NativeInteger_free,
26 NativeInteger_print,
Lev Walkinf15320b2004-06-03 03:38:44 +000027 asn_generic_no_constraint,
28 NativeInteger_decode_ber,
29 NativeInteger_encode_der,
Lev Walkin435cb282004-10-21 14:13:48 +000030 NativeInteger_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +000031 NativeInteger_encode_xer,
Lev Walkincc159472017-07-06 08:26:36 -070032#ifdef ASN_DISABLE_OER_SUPPORT
33 0,
34 0,
35#else
Lev Walkin9ae018e2017-07-24 01:45:57 +040036 NativeInteger_decode_oer, /* OER decoder */
37 NativeInteger_encode_oer, /* Canonical OER encoder */
Lev Walkincc159472017-07-06 08:26:36 -070038#endif /* ASN_DISABLE_OER_SUPPORT */
Lev Walkinb33425f2017-07-14 14:59:52 +040039#ifdef ASN_DISABLE_PER_SUPPORT
40 0,
41 0,
42#else
43 NativeInteger_decode_uper, /* Unaligned PER decoder */
44 NativeInteger_encode_uper, /* Unaligned PER encoder */
45#endif /* ASN_DISABLE_PER_SUPPORT */
Lev Walkinf15320b2004-06-03 03:38:44 +000046 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000047 asn_DEF_NativeInteger_tags,
48 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
49 asn_DEF_NativeInteger_tags, /* Same as above */
50 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
Lev Walkin76780762017-07-07 10:07:30 -070051 0, /* No OER visible constraints */
Lev Walkin59b176e2005-11-26 11:25:14 +000052 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000053 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000054 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000055};
56
57/*
58 * Decode INTEGER type.
59 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000060asn_dec_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000061NativeInteger_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
62 asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +000063 void **nint_ptr, const void *buf_ptr, size_t size, int tag_mode) {
Lev Walkin8bb57a22007-12-03 13:41:36 +000064 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkine0b56e02005-02-25 12:10:27 +000065 long *native = (long *)*nint_ptr;
Lev Walkindc06f6b2004-10-20 15:50:55 +000066 asn_dec_rval_t rval;
Lev Walkinf15320b2004-06-03 03:38:44 +000067 ber_tlv_len_t length;
68
69 /*
70 * If the structure is not there, allocate it.
71 */
Lev Walkine0b56e02005-02-25 12:10:27 +000072 if(native == NULL) {
73 native = (long *)(*nint_ptr = CALLOC(1, sizeof(*native)));
74 if(native == NULL) {
Lev Walkinf15320b2004-06-03 03:38:44 +000075 rval.code = RC_FAIL;
76 rval.consumed = 0;
77 return rval;
78 }
79 }
80
81 ASN_DEBUG("Decoding %s as INTEGER (tm=%d)",
82 td->name, tag_mode);
83
84 /*
85 * Check tags.
86 */
Lev Walkin5e033762004-09-29 13:26:15 +000087 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
88 tag_mode, 0, &length, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000089 if(rval.code != RC_OK)
90 return rval;
91
92 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
93
94 /*
95 * Make sure we have this length.
96 */
Lev Walkin8c3b8542005-03-10 18:52:02 +000097 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
Lev Walkinf15320b2004-06-03 03:38:44 +000098 size -= rval.consumed;
Lev Walkind9bd7752004-06-05 08:17:50 +000099 if(length > (ber_tlv_len_t)size) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000100 rval.code = RC_WMORE;
101 rval.consumed = 0;
102 return rval;
103 }
104
105 /*
106 * ASN.1 encoded INTEGER: buf_ptr, length
Lev Walkine0b56e02005-02-25 12:10:27 +0000107 * Fill the native, at the same time checking for overflow.
Lev Walkinf15320b2004-06-03 03:38:44 +0000108 * If overflow occured, return with RC_FAIL.
109 */
110 {
111 INTEGER_t tmp;
Lev Walkin7e033b52005-07-02 08:19:17 +0000112 union {
113 const void *constbuf;
114 void *nonconstbuf;
115 } unconst_buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000116 long l;
Lev Walkin7e033b52005-07-02 08:19:17 +0000117
118 unconst_buf.constbuf = buf_ptr;
119 tmp.buf = (uint8_t *)unconst_buf.nonconstbuf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000120 tmp.size = length;
121
Lev Walkin8bb57a22007-12-03 13:41:36 +0000122 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700123 ? asn_INTEGER2ulong(&tmp, (unsigned long *)&l) /* sic */
Lev Walkin8bb57a22007-12-03 13:41:36 +0000124 : asn_INTEGER2long(&tmp, &l)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000125 rval.code = RC_FAIL;
126 rval.consumed = 0;
127 return rval;
128 }
129
Lev Walkine0b56e02005-02-25 12:10:27 +0000130 *native = l;
Lev Walkinf15320b2004-06-03 03:38:44 +0000131 }
132
133 rval.code = RC_OK;
134 rval.consumed += length;
135
Lev Walkine0b56e02005-02-25 12:10:27 +0000136 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%ld)",
137 (long)rval.consumed, (long)length, td->name, (long)*native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000138
139 return rval;
140}
141
142/*
143 * Encode the NativeInteger using the standard INTEGER type DER encoder.
144 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000145asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000146NativeInteger_encode_der(asn_TYPE_descriptor_t *sd, void *ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000147 int tag_mode, ber_tlv_tag_t tag,
148 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000149 unsigned long native = *(unsigned long *)ptr; /* Disable sign ext. */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000150 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000151 INTEGER_t tmp;
152
153#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
154
Lev Walkine0b56e02005-02-25 12:10:27 +0000155 tmp.buf = (uint8_t *)&native;
156 tmp.size = sizeof(native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000157
158#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
Lev Walkine0b56e02005-02-25 12:10:27 +0000159 uint8_t buf[sizeof(native)];
Lev Walkinf15320b2004-06-03 03:38:44 +0000160 uint8_t *p;
161
Lev Walkind54f2552004-10-27 13:24:51 +0000162 /* Prepare a fake INTEGER */
Lev Walkine0b56e02005-02-25 12:10:27 +0000163 for(p = buf + sizeof(buf) - 1; p >= buf; p--, native >>= 8)
Lev Walkinf3c089e2007-11-13 23:53:13 +0000164 *p = (uint8_t)native;
Lev Walkinf15320b2004-06-03 03:38:44 +0000165
166 tmp.buf = buf;
167 tmp.size = sizeof(buf);
168#endif /* WORDS_BIGENDIAN */
169
170 /* Encode fake INTEGER */
171 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
172 if(erval.encoded == -1) {
173 assert(erval.structure_ptr == &tmp);
174 erval.structure_ptr = ptr;
175 }
176 return erval;
177}
178
Lev Walkin435cb282004-10-21 14:13:48 +0000179/*
180 * Decode the chunk of XML text encoding INTEGER.
181 */
182asn_dec_rval_t
183NativeInteger_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
184 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000185 const void *buf_ptr, size_t size) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000186 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkin435cb282004-10-21 14:13:48 +0000187 asn_dec_rval_t rval;
Lev Walkin59b176e2005-11-26 11:25:14 +0000188 INTEGER_t st;
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000189 void *st_ptr = (void *)&st;
Lev Walkine0b56e02005-02-25 12:10:27 +0000190 long *native = (long *)*sptr;
Lev Walkin435cb282004-10-21 14:13:48 +0000191
Lev Walkine0b56e02005-02-25 12:10:27 +0000192 if(!native) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000193 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
Lev Walkin7c1dc052016-03-14 03:08:15 -0700194 if(!native) ASN__DECODE_FAILED;
Lev Walkin435cb282004-10-21 14:13:48 +0000195 }
196
Lev Walkin59b176e2005-11-26 11:25:14 +0000197 memset(&st, 0, sizeof(st));
198 rval = INTEGER_decode_xer(opt_codec_ctx, td, &st_ptr,
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000199 opt_mname, buf_ptr, size);
Lev Walkin435cb282004-10-21 14:13:48 +0000200 if(rval.code == RC_OK) {
201 long l;
Lev Walkin8bb57a22007-12-03 13:41:36 +0000202 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700203 ? asn_INTEGER2ulong(&st, (unsigned long *)&l) /* sic */
Lev Walkin8bb57a22007-12-03 13:41:36 +0000204 : asn_INTEGER2long(&st, &l)) {
Lev Walkin435cb282004-10-21 14:13:48 +0000205 rval.code = RC_FAIL;
206 rval.consumed = 0;
207 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000208 *native = l;
Lev Walkin435cb282004-10-21 14:13:48 +0000209 }
210 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000211 /*
212 * Cannot restart from the middle;
213 * there is no place to save state in the native type.
214 * Request a continuation from the very beginning.
215 */
Lev Walkin435cb282004-10-21 14:13:48 +0000216 rval.consumed = 0;
217 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000218 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &st);
Lev Walkin435cb282004-10-21 14:13:48 +0000219 return rval;
220}
221
222
Lev Walkina9cc46e2004-09-22 16:06:28 +0000223asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000224NativeInteger_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000225 int ilevel, enum xer_encoder_flags_e flags,
226 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000227 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000228 char scratch[32]; /* Enough for 64-bit int */
229 asn_enc_rval_t er;
Lev Walkine0b56e02005-02-25 12:10:27 +0000230 const long *native = (const long *)sptr;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000231
232 (void)ilevel;
233 (void)flags;
234
Lev Walkin7c1dc052016-03-14 03:08:15 -0700235 if(!native) ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000236
Lev Walkin8bb57a22007-12-03 13:41:36 +0000237 er.encoded = snprintf(scratch, sizeof(scratch),
238 (specs && specs->field_unsigned)
239 ? "%lu" : "%ld", *native);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000240 if(er.encoded <= 0 || (size_t)er.encoded >= sizeof(scratch)
241 || cb(scratch, er.encoded, app_key) < 0)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700242 ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000243
Lev Walkin7c1dc052016-03-14 03:08:15 -0700244 ASN__ENCODED_OK(er);
Lev Walkin59b176e2005-11-26 11:25:14 +0000245}
246
Lev Walkin62d76872017-08-05 22:49:42 -0700247#ifndef ASN_DISABLE_PER_SUPPORT
248
Lev Walkin59b176e2005-11-26 11:25:14 +0000249asn_dec_rval_t
250NativeInteger_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
Lev Walkin494fb702017-08-07 20:07:00 -0700251 asn_TYPE_descriptor_t *td,
252 const asn_per_constraints_t *constraints, void **sptr,
253 asn_per_data_t *pd) {
254 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkin59b176e2005-11-26 11:25:14 +0000255 asn_dec_rval_t rval;
256 long *native = (long *)*sptr;
257 INTEGER_t tmpint;
258 void *tmpintptr = &tmpint;
259
260 (void)opt_codec_ctx;
261 ASN_DEBUG("Decoding NativeInteger %s (UPER)", td->name);
262
263 if(!native) {
264 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
Lev Walkin7c1dc052016-03-14 03:08:15 -0700265 if(!native) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000266 }
267
268 memset(&tmpint, 0, sizeof tmpint);
269 rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
270 &tmpintptr, pd);
Lev Walkinb2bed822005-11-27 12:40:43 +0000271 if(rval.code == RC_OK) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000272 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700273 ? asn_INTEGER2ulong(&tmpint, (unsigned long *)native)
Lev Walkin8bb57a22007-12-03 13:41:36 +0000274 : asn_INTEGER2long(&tmpint, native))
Lev Walkin59b176e2005-11-26 11:25:14 +0000275 rval.code = RC_FAIL;
276 else
277 ASN_DEBUG("NativeInteger %s got value %ld",
278 td->name, *native);
Lev Walkinb2bed822005-11-27 12:40:43 +0000279 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000280 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
Lev Walkin59b176e2005-11-26 11:25:14 +0000281
282 return rval;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000283}
284
Lev Walkin523de9e2006-08-18 01:34:18 +0000285asn_enc_rval_t
286NativeInteger_encode_uper(asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -0700287 const asn_per_constraints_t *constraints, void *sptr,
288 asn_per_outp_t *po) {
289 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkin523de9e2006-08-18 01:34:18 +0000290 asn_enc_rval_t er;
291 long native;
292 INTEGER_t tmpint;
293
Lev Walkin7c1dc052016-03-14 03:08:15 -0700294 if(!sptr) ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000295
296 native = *(long *)sptr;
297
298 ASN_DEBUG("Encoding NativeInteger %s %ld (UPER)", td->name, native);
299
300 memset(&tmpint, 0, sizeof(tmpint));
Lev Walkin8bb57a22007-12-03 13:41:36 +0000301 if((specs&&specs->field_unsigned)
302 ? asn_ulong2INTEGER(&tmpint, native)
303 : asn_long2INTEGER(&tmpint, native))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700304 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000305 er = INTEGER_encode_uper(td, constraints, &tmpint, po);
306 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
307 return er;
308}
309
Lev Walkin62d76872017-08-05 22:49:42 -0700310#endif /* ASN_DISABLE_PER_SUPPORT */
311
Lev Walkinf15320b2004-06-03 03:38:44 +0000312/*
313 * INTEGER specific human-readable output.
314 */
315int
Lev Walkin5e033762004-09-29 13:26:15 +0000316NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000317 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000318 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
Lev Walkine0b56e02005-02-25 12:10:27 +0000319 const long *native = (const long *)sptr;
Lev Walkindb13f512004-07-19 17:30:25 +0000320 char scratch[32]; /* Enough for 64-bit int */
Lev Walkinf15320b2004-06-03 03:38:44 +0000321 int ret;
322
Lev Walkind9bd7752004-06-05 08:17:50 +0000323 (void)td; /* Unused argument */
324 (void)ilevel; /* Unused argument */
325
Lev Walkine0b56e02005-02-25 12:10:27 +0000326 if(native) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000327 ret = snprintf(scratch, sizeof(scratch),
328 (specs && specs->field_unsigned)
329 ? "%lu" : "%ld", *native);
Lev Walkine0b56e02005-02-25 12:10:27 +0000330 assert(ret > 0 && (size_t)ret < sizeof(scratch));
Lev Walkin8e8078a2004-09-26 13:10:40 +0000331 return (cb(scratch, ret, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000332 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000333 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000334 }
335}
336
337void
Lev Walkin5e033762004-09-29 13:26:15 +0000338NativeInteger_free(asn_TYPE_descriptor_t *td, void *ptr, int contents_only) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000339
340 if(!td || !ptr)
341 return;
342
343 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
344 td->name, contents_only, ptr);
345
346 if(!contents_only) {
347 FREEMEM(ptr);
348 }
349}
350