blob: fd6861500e42782b416780596011ddf660a3af93 [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 Walkincd2f48e2017-08-10 02:14:59 -070027 NativeInteger_compare,
Lev Walkinf15320b2004-06-03 03:38:44 +000028 asn_generic_no_constraint,
29 NativeInteger_decode_ber,
30 NativeInteger_encode_der,
Lev Walkin435cb282004-10-21 14:13:48 +000031 NativeInteger_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +000032 NativeInteger_encode_xer,
Lev Walkincc159472017-07-06 08:26:36 -070033#ifdef ASN_DISABLE_OER_SUPPORT
34 0,
35 0,
36#else
Lev Walkin9ae018e2017-07-24 01:45:57 +040037 NativeInteger_decode_oer, /* OER decoder */
38 NativeInteger_encode_oer, /* Canonical OER encoder */
Lev Walkincc159472017-07-06 08:26:36 -070039#endif /* ASN_DISABLE_OER_SUPPORT */
Lev Walkinb33425f2017-07-14 14:59:52 +040040#ifdef ASN_DISABLE_PER_SUPPORT
41 0,
42 0,
43#else
44 NativeInteger_decode_uper, /* Unaligned PER decoder */
45 NativeInteger_encode_uper, /* Unaligned PER encoder */
46#endif /* ASN_DISABLE_PER_SUPPORT */
Lev Walkinf15320b2004-06-03 03:38:44 +000047 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000048 asn_DEF_NativeInteger_tags,
49 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
50 asn_DEF_NativeInteger_tags, /* Same as above */
51 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
Lev Walkin76780762017-07-07 10:07:30 -070052 0, /* No OER visible constraints */
Lev Walkin59b176e2005-11-26 11:25:14 +000053 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000054 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000055 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000056};
57
58/*
59 * Decode INTEGER type.
60 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000061asn_dec_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000062NativeInteger_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
63 asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +000064 void **nint_ptr, const void *buf_ptr, size_t size, int tag_mode) {
Lev Walkind62a6622017-08-22 02:31:02 -070065 const asn_INTEGER_specifics_t *specs =
66 (const asn_INTEGER_specifics_t *)td->specifics;
67 long *native = (long *)*nint_ptr;
Lev Walkindc06f6b2004-10-20 15:50:55 +000068 asn_dec_rval_t rval;
Lev Walkinf15320b2004-06-03 03:38:44 +000069 ber_tlv_len_t length;
70
71 /*
72 * If the structure is not there, allocate it.
73 */
Lev Walkine0b56e02005-02-25 12:10:27 +000074 if(native == NULL) {
75 native = (long *)(*nint_ptr = CALLOC(1, sizeof(*native)));
76 if(native == NULL) {
Lev Walkinf15320b2004-06-03 03:38:44 +000077 rval.code = RC_FAIL;
78 rval.consumed = 0;
79 return rval;
80 }
81 }
82
83 ASN_DEBUG("Decoding %s as INTEGER (tm=%d)",
84 td->name, tag_mode);
85
86 /*
87 * Check tags.
88 */
Lev Walkin5e033762004-09-29 13:26:15 +000089 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
90 tag_mode, 0, &length, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000091 if(rval.code != RC_OK)
92 return rval;
93
94 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
95
96 /*
97 * Make sure we have this length.
98 */
Lev Walkin8c3b8542005-03-10 18:52:02 +000099 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
Lev Walkinf15320b2004-06-03 03:38:44 +0000100 size -= rval.consumed;
Lev Walkind9bd7752004-06-05 08:17:50 +0000101 if(length > (ber_tlv_len_t)size) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000102 rval.code = RC_WMORE;
103 rval.consumed = 0;
104 return rval;
105 }
106
107 /*
108 * ASN.1 encoded INTEGER: buf_ptr, length
Lev Walkine0b56e02005-02-25 12:10:27 +0000109 * Fill the native, at the same time checking for overflow.
Lev Walkinf15320b2004-06-03 03:38:44 +0000110 * If overflow occured, return with RC_FAIL.
111 */
112 {
113 INTEGER_t tmp;
Lev Walkin7e033b52005-07-02 08:19:17 +0000114 union {
115 const void *constbuf;
116 void *nonconstbuf;
117 } unconst_buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000118 long l;
Lev Walkin7e033b52005-07-02 08:19:17 +0000119
120 unconst_buf.constbuf = buf_ptr;
121 tmp.buf = (uint8_t *)unconst_buf.nonconstbuf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000122 tmp.size = length;
123
Lev Walkin8bb57a22007-12-03 13:41:36 +0000124 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700125 ? asn_INTEGER2ulong(&tmp, (unsigned long *)&l) /* sic */
Lev Walkin8bb57a22007-12-03 13:41:36 +0000126 : asn_INTEGER2long(&tmp, &l)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000127 rval.code = RC_FAIL;
128 rval.consumed = 0;
129 return rval;
130 }
131
Lev Walkine0b56e02005-02-25 12:10:27 +0000132 *native = l;
Lev Walkinf15320b2004-06-03 03:38:44 +0000133 }
134
135 rval.code = RC_OK;
136 rval.consumed += length;
137
Lev Walkine0b56e02005-02-25 12:10:27 +0000138 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%ld)",
139 (long)rval.consumed, (long)length, td->name, (long)*native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000140
141 return rval;
142}
143
144/*
145 * Encode the NativeInteger using the standard INTEGER type DER encoder.
146 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000147asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000148NativeInteger_encode_der(asn_TYPE_descriptor_t *sd, void *ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000149 int tag_mode, ber_tlv_tag_t tag,
150 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000151 unsigned long native = *(unsigned long *)ptr; /* Disable sign ext. */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000152 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000153 INTEGER_t tmp;
154
155#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
156
Lev Walkine0b56e02005-02-25 12:10:27 +0000157 tmp.buf = (uint8_t *)&native;
158 tmp.size = sizeof(native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000159
160#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
Lev Walkine0b56e02005-02-25 12:10:27 +0000161 uint8_t buf[sizeof(native)];
Lev Walkinf15320b2004-06-03 03:38:44 +0000162 uint8_t *p;
163
Lev Walkind54f2552004-10-27 13:24:51 +0000164 /* Prepare a fake INTEGER */
Lev Walkine0b56e02005-02-25 12:10:27 +0000165 for(p = buf + sizeof(buf) - 1; p >= buf; p--, native >>= 8)
Lev Walkinf3c089e2007-11-13 23:53:13 +0000166 *p = (uint8_t)native;
Lev Walkinf15320b2004-06-03 03:38:44 +0000167
168 tmp.buf = buf;
169 tmp.size = sizeof(buf);
170#endif /* WORDS_BIGENDIAN */
171
172 /* Encode fake INTEGER */
173 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
174 if(erval.encoded == -1) {
175 assert(erval.structure_ptr == &tmp);
176 erval.structure_ptr = ptr;
177 }
178 return erval;
179}
180
Lev Walkin435cb282004-10-21 14:13:48 +0000181/*
182 * Decode the chunk of XML text encoding INTEGER.
183 */
184asn_dec_rval_t
185NativeInteger_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
186 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000187 const void *buf_ptr, size_t size) {
Lev Walkind62a6622017-08-22 02:31:02 -0700188 const asn_INTEGER_specifics_t *specs =
189 (const asn_INTEGER_specifics_t *)td->specifics;
190 asn_dec_rval_t rval;
Lev Walkin59b176e2005-11-26 11:25:14 +0000191 INTEGER_t st;
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000192 void *st_ptr = (void *)&st;
Lev Walkine0b56e02005-02-25 12:10:27 +0000193 long *native = (long *)*sptr;
Lev Walkin435cb282004-10-21 14:13:48 +0000194
Lev Walkine0b56e02005-02-25 12:10:27 +0000195 if(!native) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000196 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
Lev Walkin7c1dc052016-03-14 03:08:15 -0700197 if(!native) ASN__DECODE_FAILED;
Lev Walkin435cb282004-10-21 14:13:48 +0000198 }
199
Lev Walkin59b176e2005-11-26 11:25:14 +0000200 memset(&st, 0, sizeof(st));
201 rval = INTEGER_decode_xer(opt_codec_ctx, td, &st_ptr,
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000202 opt_mname, buf_ptr, size);
Lev Walkin435cb282004-10-21 14:13:48 +0000203 if(rval.code == RC_OK) {
204 long l;
Lev Walkin8bb57a22007-12-03 13:41:36 +0000205 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700206 ? asn_INTEGER2ulong(&st, (unsigned long *)&l) /* sic */
Lev Walkin8bb57a22007-12-03 13:41:36 +0000207 : asn_INTEGER2long(&st, &l)) {
Lev Walkin435cb282004-10-21 14:13:48 +0000208 rval.code = RC_FAIL;
209 rval.consumed = 0;
210 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000211 *native = l;
Lev Walkin435cb282004-10-21 14:13:48 +0000212 }
213 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000214 /*
215 * Cannot restart from the middle;
216 * there is no place to save state in the native type.
217 * Request a continuation from the very beginning.
218 */
Lev Walkin435cb282004-10-21 14:13:48 +0000219 rval.consumed = 0;
220 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000221 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &st);
Lev Walkin435cb282004-10-21 14:13:48 +0000222 return rval;
223}
224
225
Lev Walkina9cc46e2004-09-22 16:06:28 +0000226asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000227NativeInteger_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000228 int ilevel, enum xer_encoder_flags_e flags,
229 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkind62a6622017-08-22 02:31:02 -0700230 const asn_INTEGER_specifics_t *specs =
231 (const asn_INTEGER_specifics_t *)td->specifics;
232 char scratch[32]; /* Enough for 64-bit int */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000233 asn_enc_rval_t er;
Lev Walkine0b56e02005-02-25 12:10:27 +0000234 const long *native = (const long *)sptr;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000235
236 (void)ilevel;
237 (void)flags;
238
Lev Walkin7c1dc052016-03-14 03:08:15 -0700239 if(!native) ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000240
Lev Walkin8bb57a22007-12-03 13:41:36 +0000241 er.encoded = snprintf(scratch, sizeof(scratch),
242 (specs && specs->field_unsigned)
243 ? "%lu" : "%ld", *native);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000244 if(er.encoded <= 0 || (size_t)er.encoded >= sizeof(scratch)
245 || cb(scratch, er.encoded, app_key) < 0)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700246 ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000247
Lev Walkin7c1dc052016-03-14 03:08:15 -0700248 ASN__ENCODED_OK(er);
Lev Walkin59b176e2005-11-26 11:25:14 +0000249}
250
Lev Walkin62d76872017-08-05 22:49:42 -0700251#ifndef ASN_DISABLE_PER_SUPPORT
252
Lev Walkin59b176e2005-11-26 11:25:14 +0000253asn_dec_rval_t
254NativeInteger_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
Lev Walkin494fb702017-08-07 20:07:00 -0700255 asn_TYPE_descriptor_t *td,
256 const asn_per_constraints_t *constraints, void **sptr,
257 asn_per_data_t *pd) {
Lev Walkind62a6622017-08-22 02:31:02 -0700258 const asn_INTEGER_specifics_t *specs =
259 (const asn_INTEGER_specifics_t *)td->specifics;
260 asn_dec_rval_t rval;
Lev Walkin59b176e2005-11-26 11:25:14 +0000261 long *native = (long *)*sptr;
262 INTEGER_t tmpint;
263 void *tmpintptr = &tmpint;
264
265 (void)opt_codec_ctx;
266 ASN_DEBUG("Decoding NativeInteger %s (UPER)", td->name);
267
268 if(!native) {
269 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
Lev Walkin7c1dc052016-03-14 03:08:15 -0700270 if(!native) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +0000271 }
272
273 memset(&tmpint, 0, sizeof tmpint);
274 rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
275 &tmpintptr, pd);
Lev Walkinb2bed822005-11-27 12:40:43 +0000276 if(rval.code == RC_OK) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000277 if((specs&&specs->field_unsigned)
Lev Walkinaaae9bf2010-10-24 16:56:30 -0700278 ? asn_INTEGER2ulong(&tmpint, (unsigned long *)native)
Lev Walkin8bb57a22007-12-03 13:41:36 +0000279 : asn_INTEGER2long(&tmpint, native))
Lev Walkin59b176e2005-11-26 11:25:14 +0000280 rval.code = RC_FAIL;
281 else
282 ASN_DEBUG("NativeInteger %s got value %ld",
283 td->name, *native);
Lev Walkinb2bed822005-11-27 12:40:43 +0000284 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000285 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
Lev Walkin59b176e2005-11-26 11:25:14 +0000286
287 return rval;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000288}
289
Lev Walkin523de9e2006-08-18 01:34:18 +0000290asn_enc_rval_t
291NativeInteger_encode_uper(asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -0700292 const asn_per_constraints_t *constraints, void *sptr,
293 asn_per_outp_t *po) {
Lev Walkind62a6622017-08-22 02:31:02 -0700294 const asn_INTEGER_specifics_t *specs =
295 (const asn_INTEGER_specifics_t *)td->specifics;
296 asn_enc_rval_t er;
Lev Walkin523de9e2006-08-18 01:34:18 +0000297 long native;
298 INTEGER_t tmpint;
299
Lev Walkin7c1dc052016-03-14 03:08:15 -0700300 if(!sptr) ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000301
302 native = *(long *)sptr;
303
304 ASN_DEBUG("Encoding NativeInteger %s %ld (UPER)", td->name, native);
305
306 memset(&tmpint, 0, sizeof(tmpint));
Lev Walkin8bb57a22007-12-03 13:41:36 +0000307 if((specs&&specs->field_unsigned)
308 ? asn_ulong2INTEGER(&tmpint, native)
309 : asn_long2INTEGER(&tmpint, native))
Lev Walkin7c1dc052016-03-14 03:08:15 -0700310 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +0000311 er = INTEGER_encode_uper(td, constraints, &tmpint, po);
312 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
313 return er;
314}
315
Lev Walkin62d76872017-08-05 22:49:42 -0700316#endif /* ASN_DISABLE_PER_SUPPORT */
317
Lev Walkinf15320b2004-06-03 03:38:44 +0000318/*
319 * INTEGER specific human-readable output.
320 */
321int
Lev Walkin5e033762004-09-29 13:26:15 +0000322NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000323 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkind62a6622017-08-22 02:31:02 -0700324 const asn_INTEGER_specifics_t *specs =
325 (const asn_INTEGER_specifics_t *)td->specifics;
326 const long *native = (const long *)sptr;
Lev Walkindb13f512004-07-19 17:30:25 +0000327 char scratch[32]; /* Enough for 64-bit int */
Lev Walkinf15320b2004-06-03 03:38:44 +0000328 int ret;
329
Lev Walkind9bd7752004-06-05 08:17:50 +0000330 (void)td; /* Unused argument */
331 (void)ilevel; /* Unused argument */
332
Lev Walkine0b56e02005-02-25 12:10:27 +0000333 if(native) {
Lev Walkin8bb57a22007-12-03 13:41:36 +0000334 ret = snprintf(scratch, sizeof(scratch),
335 (specs && specs->field_unsigned)
336 ? "%lu" : "%ld", *native);
Lev Walkine0b56e02005-02-25 12:10:27 +0000337 assert(ret > 0 && (size_t)ret < sizeof(scratch));
Lev Walkin8e8078a2004-09-26 13:10:40 +0000338 return (cb(scratch, ret, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000339 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000340 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000341 }
342}
343
344void
Lev Walkinf6853ce2017-08-11 00:50:27 -0700345NativeInteger_free(const asn_TYPE_descriptor_t *td, void *ptr,
346 int contents_only) {
347 if(!td || !ptr)
Lev Walkinf15320b2004-06-03 03:38:44 +0000348 return;
349
350 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
351 td->name, contents_only, ptr);
352
353 if(!contents_only) {
354 FREEMEM(ptr);
355 }
356}
357
Lev Walkincd2f48e2017-08-10 02:14:59 -0700358int
359NativeInteger_compare(const asn_TYPE_descriptor_t *td, const void *aptr, const void *bptr) {
360 (void)td;
361
362 if(aptr && bptr) {
363 const asn_INTEGER_specifics_t *specs =
364 (const asn_INTEGER_specifics_t *)td->specifics;
Lev Walkinf6853ce2017-08-11 00:50:27 -0700365 if(specs && specs->field_unsigned) {
Lev Walkincd2f48e2017-08-10 02:14:59 -0700366 const unsigned long *a = aptr;
367 const unsigned long *b = bptr;
368 if(*a < *b) {
369 return -1;
370 } else if(*a > *b) {
371 return 1;
372 } else {
Lev Walkinf6853ce2017-08-11 00:50:27 -0700373 return 0;
Lev Walkincd2f48e2017-08-10 02:14:59 -0700374 }
375 } else {
376 const long *a = aptr;
377 const long *b = bptr;
378 if(*a < *b) {
379 return -1;
380 } else if(*a > *b) {
381 return 1;
382 } else {
Lev Walkinf6853ce2017-08-11 00:50:27 -0700383 return 0;
Lev Walkincd2f48e2017-08-10 02:14:59 -0700384 }
385 }
386 } else if(!aptr) {
387 return -1;
388 } else {
389 return 1;
390 }
391}