blob: 34599f6186cd77d38106e171ec3b24cb29638afa [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 */
Lev Walkin5e033762004-09-29 13:26:15 +000019static 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 Walkin59b176e2005-11-26 11:25:14 +000032 NativeInteger_decode_uper, /* Unaligned PER decoder */
Lev Walkin523de9e2006-08-18 01:34:18 +000033 NativeInteger_encode_uper, /* Unaligned PER encoder */
Lev Walkinf15320b2004-06-03 03:38:44 +000034 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000035 asn_DEF_NativeInteger_tags,
36 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
37 asn_DEF_NativeInteger_tags, /* Same as above */
38 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
Lev Walkin59b176e2005-11-26 11:25:14 +000039 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000040 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000041 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000042};
43
44/*
45 * Decode INTEGER type.
46 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000047asn_dec_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000048NativeInteger_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
49 asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +000050 void **nint_ptr, const void *buf_ptr, size_t size, int tag_mode) {
Lev Walkine0b56e02005-02-25 12:10:27 +000051 long *native = (long *)*nint_ptr;
Lev Walkindc06f6b2004-10-20 15:50:55 +000052 asn_dec_rval_t rval;
Lev Walkinf15320b2004-06-03 03:38:44 +000053 ber_tlv_len_t length;
54
55 /*
56 * If the structure is not there, allocate it.
57 */
Lev Walkine0b56e02005-02-25 12:10:27 +000058 if(native == NULL) {
59 native = (long *)(*nint_ptr = CALLOC(1, sizeof(*native)));
60 if(native == NULL) {
Lev Walkinf15320b2004-06-03 03:38:44 +000061 rval.code = RC_FAIL;
62 rval.consumed = 0;
63 return rval;
64 }
65 }
66
67 ASN_DEBUG("Decoding %s as INTEGER (tm=%d)",
68 td->name, tag_mode);
69
70 /*
71 * Check tags.
72 */
Lev Walkin5e033762004-09-29 13:26:15 +000073 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
74 tag_mode, 0, &length, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000075 if(rval.code != RC_OK)
76 return rval;
77
78 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
79
80 /*
81 * Make sure we have this length.
82 */
Lev Walkin8c3b8542005-03-10 18:52:02 +000083 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
Lev Walkinf15320b2004-06-03 03:38:44 +000084 size -= rval.consumed;
Lev Walkind9bd7752004-06-05 08:17:50 +000085 if(length > (ber_tlv_len_t)size) {
Lev Walkinf15320b2004-06-03 03:38:44 +000086 rval.code = RC_WMORE;
87 rval.consumed = 0;
88 return rval;
89 }
90
91 /*
92 * ASN.1 encoded INTEGER: buf_ptr, length
Lev Walkine0b56e02005-02-25 12:10:27 +000093 * Fill the native, at the same time checking for overflow.
Lev Walkinf15320b2004-06-03 03:38:44 +000094 * If overflow occured, return with RC_FAIL.
95 */
96 {
97 INTEGER_t tmp;
Lev Walkin7e033b52005-07-02 08:19:17 +000098 union {
99 const void *constbuf;
100 void *nonconstbuf;
101 } unconst_buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000102 long l;
Lev Walkin7e033b52005-07-02 08:19:17 +0000103
104 unconst_buf.constbuf = buf_ptr;
105 tmp.buf = (uint8_t *)unconst_buf.nonconstbuf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000106 tmp.size = length;
107
Lev Walkin5e033762004-09-29 13:26:15 +0000108 if(asn_INTEGER2long(&tmp, &l)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000109 rval.code = RC_FAIL;
110 rval.consumed = 0;
111 return rval;
112 }
113
Lev Walkine0b56e02005-02-25 12:10:27 +0000114 *native = l;
Lev Walkinf15320b2004-06-03 03:38:44 +0000115 }
116
117 rval.code = RC_OK;
118 rval.consumed += length;
119
Lev Walkine0b56e02005-02-25 12:10:27 +0000120 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%ld)",
121 (long)rval.consumed, (long)length, td->name, (long)*native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000122
123 return rval;
124}
125
126/*
127 * Encode the NativeInteger using the standard INTEGER type DER encoder.
128 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000129asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000130NativeInteger_encode_der(asn_TYPE_descriptor_t *sd, void *ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000131 int tag_mode, ber_tlv_tag_t tag,
132 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000133 unsigned long native = *(unsigned long *)ptr; /* Disable sign ext. */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000134 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000135 INTEGER_t tmp;
136
137#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
138
Lev Walkine0b56e02005-02-25 12:10:27 +0000139 tmp.buf = (uint8_t *)&native;
140 tmp.size = sizeof(native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000141
142#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
Lev Walkine0b56e02005-02-25 12:10:27 +0000143 uint8_t buf[sizeof(native)];
Lev Walkinf15320b2004-06-03 03:38:44 +0000144 uint8_t *p;
145
Lev Walkind54f2552004-10-27 13:24:51 +0000146 /* Prepare a fake INTEGER */
Lev Walkine0b56e02005-02-25 12:10:27 +0000147 for(p = buf + sizeof(buf) - 1; p >= buf; p--, native >>= 8)
148 *p = native;
Lev Walkinf15320b2004-06-03 03:38:44 +0000149
150 tmp.buf = buf;
151 tmp.size = sizeof(buf);
152#endif /* WORDS_BIGENDIAN */
153
154 /* Encode fake INTEGER */
155 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
156 if(erval.encoded == -1) {
157 assert(erval.structure_ptr == &tmp);
158 erval.structure_ptr = ptr;
159 }
160 return erval;
161}
162
Lev Walkin435cb282004-10-21 14:13:48 +0000163/*
164 * Decode the chunk of XML text encoding INTEGER.
165 */
166asn_dec_rval_t
167NativeInteger_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
168 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000169 const void *buf_ptr, size_t size) {
Lev Walkin435cb282004-10-21 14:13:48 +0000170 asn_dec_rval_t rval;
Lev Walkin59b176e2005-11-26 11:25:14 +0000171 INTEGER_t st;
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000172 void *st_ptr = (void *)&st;
Lev Walkine0b56e02005-02-25 12:10:27 +0000173 long *native = (long *)*sptr;
Lev Walkin435cb282004-10-21 14:13:48 +0000174
Lev Walkine0b56e02005-02-25 12:10:27 +0000175 if(!native) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000176 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
177 if(!native) _ASN_DECODE_FAILED;
Lev Walkin435cb282004-10-21 14:13:48 +0000178 }
179
Lev Walkin59b176e2005-11-26 11:25:14 +0000180 memset(&st, 0, sizeof(st));
181 rval = INTEGER_decode_xer(opt_codec_ctx, td, &st_ptr,
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000182 opt_mname, buf_ptr, size);
Lev Walkin435cb282004-10-21 14:13:48 +0000183 if(rval.code == RC_OK) {
184 long l;
Lev Walkin59b176e2005-11-26 11:25:14 +0000185 if(asn_INTEGER2long(&st, &l)) {
Lev Walkin435cb282004-10-21 14:13:48 +0000186 rval.code = RC_FAIL;
187 rval.consumed = 0;
188 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000189 *native = l;
Lev Walkin435cb282004-10-21 14:13:48 +0000190 }
191 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000192 /*
193 * Cannot restart from the middle;
194 * there is no place to save state in the native type.
195 * Request a continuation from the very beginning.
196 */
Lev Walkin435cb282004-10-21 14:13:48 +0000197 rval.consumed = 0;
198 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000199 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &st);
Lev Walkin435cb282004-10-21 14:13:48 +0000200 return rval;
201}
202
203
Lev Walkina9cc46e2004-09-22 16:06:28 +0000204asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000205NativeInteger_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000206 int ilevel, enum xer_encoder_flags_e flags,
207 asn_app_consume_bytes_f *cb, void *app_key) {
208 char scratch[32]; /* Enough for 64-bit int */
209 asn_enc_rval_t er;
Lev Walkine0b56e02005-02-25 12:10:27 +0000210 const long *native = (const long *)sptr;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000211
212 (void)ilevel;
213 (void)flags;
214
Lev Walkine0b56e02005-02-25 12:10:27 +0000215 if(!native) _ASN_ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000216
Lev Walkine0b56e02005-02-25 12:10:27 +0000217 er.encoded = snprintf(scratch, sizeof(scratch), "%ld", *native);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000218 if(er.encoded <= 0 || (size_t)er.encoded >= sizeof(scratch)
219 || cb(scratch, er.encoded, app_key) < 0)
220 _ASN_ENCODE_FAILED;
221
Lev Walkin59b176e2005-11-26 11:25:14 +0000222 _ASN_ENCODED_OK(er);
223}
224
225asn_dec_rval_t
226NativeInteger_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
227 asn_TYPE_descriptor_t *td,
228 asn_per_constraints_t *constraints, void **sptr, asn_per_data_t *pd) {
229
230 asn_dec_rval_t rval;
231 long *native = (long *)*sptr;
232 INTEGER_t tmpint;
233 void *tmpintptr = &tmpint;
234
235 (void)opt_codec_ctx;
236 ASN_DEBUG("Decoding NativeInteger %s (UPER)", td->name);
237
238 if(!native) {
239 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
240 if(!native) _ASN_DECODE_FAILED;
241 }
242
243 memset(&tmpint, 0, sizeof tmpint);
244 rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
245 &tmpintptr, pd);
Lev Walkinb2bed822005-11-27 12:40:43 +0000246 if(rval.code == RC_OK) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000247 if(asn_INTEGER2long(&tmpint, native))
248 rval.code = RC_FAIL;
249 else
250 ASN_DEBUG("NativeInteger %s got value %ld",
251 td->name, *native);
Lev Walkinb2bed822005-11-27 12:40:43 +0000252 }
Lev Walkinadcb5862006-03-17 02:11:12 +0000253 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
Lev Walkin59b176e2005-11-26 11:25:14 +0000254
255 return rval;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000256}
257
Lev Walkin523de9e2006-08-18 01:34:18 +0000258asn_enc_rval_t
259NativeInteger_encode_uper(asn_TYPE_descriptor_t *td,
260 asn_per_constraints_t *constraints, void *sptr, asn_per_outp_t *po) {
261 asn_enc_rval_t er;
262 long native;
263 INTEGER_t tmpint;
264
265 if(!sptr) _ASN_ENCODE_FAILED;
266
267 native = *(long *)sptr;
268
269 ASN_DEBUG("Encoding NativeInteger %s %ld (UPER)", td->name, native);
270
271 memset(&tmpint, 0, sizeof(tmpint));
272 if(asn_long2INTEGER(&tmpint, native))
273 _ASN_ENCODE_FAILED;
274 er = INTEGER_encode_uper(td, constraints, &tmpint, po);
275 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_INTEGER, &tmpint);
276 return er;
277}
278
Lev Walkinf15320b2004-06-03 03:38:44 +0000279/*
280 * INTEGER specific human-readable output.
281 */
282int
Lev Walkin5e033762004-09-29 13:26:15 +0000283NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000284 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000285 const long *native = (const long *)sptr;
Lev Walkindb13f512004-07-19 17:30:25 +0000286 char scratch[32]; /* Enough for 64-bit int */
Lev Walkinf15320b2004-06-03 03:38:44 +0000287 int ret;
288
Lev Walkind9bd7752004-06-05 08:17:50 +0000289 (void)td; /* Unused argument */
290 (void)ilevel; /* Unused argument */
291
Lev Walkine0b56e02005-02-25 12:10:27 +0000292 if(native) {
293 ret = snprintf(scratch, sizeof(scratch), "%ld", *native);
294 assert(ret > 0 && (size_t)ret < sizeof(scratch));
Lev Walkin8e8078a2004-09-26 13:10:40 +0000295 return (cb(scratch, ret, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000296 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000297 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000298 }
299}
300
301void
Lev Walkin5e033762004-09-29 13:26:15 +0000302NativeInteger_free(asn_TYPE_descriptor_t *td, void *ptr, int contents_only) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000303
304 if(!td || !ptr)
305 return;
306
307 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
308 td->name, contents_only, ptr);
309
310 if(!contents_only) {
311 FREEMEM(ptr);
312 }
313}
314