blob: b974ebf9ed9314b59e5a528e5b8808ea04908751 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkinfc776432005-03-29 17:21:14 +00002 * Copyright (c) 2004, 2005 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/*
6 * Please read the NativeInteger.h for the explanation wrt. differences between
7 * 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 <NativeInteger.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000014
15/*
16 * NativeInteger basic type description.
17 */
Lev Walkin5e033762004-09-29 13:26:15 +000018static ber_tlv_tag_t asn_DEF_NativeInteger_tags[] = {
Lev Walkinf15320b2004-06-03 03:38:44 +000019 (ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
20};
Lev Walkin5e033762004-09-29 13:26:15 +000021asn_TYPE_descriptor_t asn_DEF_NativeInteger = {
Lev Walkinf15320b2004-06-03 03:38:44 +000022 "INTEGER", /* The ASN.1 type is still INTEGER */
Lev Walkindc06f6b2004-10-20 15:50:55 +000023 "INTEGER",
Lev Walkina9cc46e2004-09-22 16:06:28 +000024 NativeInteger_free,
25 NativeInteger_print,
Lev Walkinf15320b2004-06-03 03:38:44 +000026 asn_generic_no_constraint,
27 NativeInteger_decode_ber,
28 NativeInteger_encode_der,
Lev Walkin435cb282004-10-21 14:13:48 +000029 NativeInteger_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +000030 NativeInteger_encode_xer,
Lev Walkin59b176e2005-11-26 11:25:14 +000031 NativeInteger_decode_uper, /* Unaligned PER decoder */
Lev Walkinf15320b2004-06-03 03:38:44 +000032 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000033 asn_DEF_NativeInteger_tags,
34 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
35 asn_DEF_NativeInteger_tags, /* Same as above */
36 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
Lev Walkin59b176e2005-11-26 11:25:14 +000037 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000038 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000039 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000040};
41
42/*
43 * Decode INTEGER type.
44 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000045asn_dec_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000046NativeInteger_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
47 asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +000048 void **nint_ptr, const void *buf_ptr, size_t size, int tag_mode) {
Lev Walkine0b56e02005-02-25 12:10:27 +000049 long *native = (long *)*nint_ptr;
Lev Walkindc06f6b2004-10-20 15:50:55 +000050 asn_dec_rval_t rval;
Lev Walkinf15320b2004-06-03 03:38:44 +000051 ber_tlv_len_t length;
52
53 /*
54 * If the structure is not there, allocate it.
55 */
Lev Walkine0b56e02005-02-25 12:10:27 +000056 if(native == NULL) {
57 native = (long *)(*nint_ptr = CALLOC(1, sizeof(*native)));
58 if(native == NULL) {
Lev Walkinf15320b2004-06-03 03:38:44 +000059 rval.code = RC_FAIL;
60 rval.consumed = 0;
61 return rval;
62 }
63 }
64
65 ASN_DEBUG("Decoding %s as INTEGER (tm=%d)",
66 td->name, tag_mode);
67
68 /*
69 * Check tags.
70 */
Lev Walkin5e033762004-09-29 13:26:15 +000071 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
72 tag_mode, 0, &length, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +000073 if(rval.code != RC_OK)
74 return rval;
75
76 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
77
78 /*
79 * Make sure we have this length.
80 */
Lev Walkin8c3b8542005-03-10 18:52:02 +000081 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
Lev Walkinf15320b2004-06-03 03:38:44 +000082 size -= rval.consumed;
Lev Walkind9bd7752004-06-05 08:17:50 +000083 if(length > (ber_tlv_len_t)size) {
Lev Walkinf15320b2004-06-03 03:38:44 +000084 rval.code = RC_WMORE;
85 rval.consumed = 0;
86 return rval;
87 }
88
89 /*
90 * ASN.1 encoded INTEGER: buf_ptr, length
Lev Walkine0b56e02005-02-25 12:10:27 +000091 * Fill the native, at the same time checking for overflow.
Lev Walkinf15320b2004-06-03 03:38:44 +000092 * If overflow occured, return with RC_FAIL.
93 */
94 {
95 INTEGER_t tmp;
Lev Walkin7e033b52005-07-02 08:19:17 +000096 union {
97 const void *constbuf;
98 void *nonconstbuf;
99 } unconst_buf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000100 long l;
Lev Walkin7e033b52005-07-02 08:19:17 +0000101
102 unconst_buf.constbuf = buf_ptr;
103 tmp.buf = (uint8_t *)unconst_buf.nonconstbuf;
Lev Walkinf15320b2004-06-03 03:38:44 +0000104 tmp.size = length;
105
Lev Walkin5e033762004-09-29 13:26:15 +0000106 if(asn_INTEGER2long(&tmp, &l)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000107 rval.code = RC_FAIL;
108 rval.consumed = 0;
109 return rval;
110 }
111
Lev Walkine0b56e02005-02-25 12:10:27 +0000112 *native = l;
Lev Walkinf15320b2004-06-03 03:38:44 +0000113 }
114
115 rval.code = RC_OK;
116 rval.consumed += length;
117
Lev Walkine0b56e02005-02-25 12:10:27 +0000118 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%ld)",
119 (long)rval.consumed, (long)length, td->name, (long)*native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000120
121 return rval;
122}
123
124/*
125 * Encode the NativeInteger using the standard INTEGER type DER encoder.
126 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000127asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000128NativeInteger_encode_der(asn_TYPE_descriptor_t *sd, void *ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000129 int tag_mode, ber_tlv_tag_t tag,
130 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000131 unsigned long native = *(unsigned long *)ptr; /* Disable sign ext. */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000132 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000133 INTEGER_t tmp;
134
135#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
136
Lev Walkine0b56e02005-02-25 12:10:27 +0000137 tmp.buf = (uint8_t *)&native;
138 tmp.size = sizeof(native);
Lev Walkinf15320b2004-06-03 03:38:44 +0000139
140#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
Lev Walkine0b56e02005-02-25 12:10:27 +0000141 uint8_t buf[sizeof(native)];
Lev Walkinf15320b2004-06-03 03:38:44 +0000142 uint8_t *p;
143
Lev Walkind54f2552004-10-27 13:24:51 +0000144 /* Prepare a fake INTEGER */
Lev Walkine0b56e02005-02-25 12:10:27 +0000145 for(p = buf + sizeof(buf) - 1; p >= buf; p--, native >>= 8)
146 *p = native;
Lev Walkinf15320b2004-06-03 03:38:44 +0000147
148 tmp.buf = buf;
149 tmp.size = sizeof(buf);
150#endif /* WORDS_BIGENDIAN */
151
152 /* Encode fake INTEGER */
153 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
154 if(erval.encoded == -1) {
155 assert(erval.structure_ptr == &tmp);
156 erval.structure_ptr = ptr;
157 }
158 return erval;
159}
160
Lev Walkin435cb282004-10-21 14:13:48 +0000161/*
162 * Decode the chunk of XML text encoding INTEGER.
163 */
164asn_dec_rval_t
165NativeInteger_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
166 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000167 const void *buf_ptr, size_t size) {
Lev Walkin435cb282004-10-21 14:13:48 +0000168 asn_dec_rval_t rval;
Lev Walkin59b176e2005-11-26 11:25:14 +0000169 INTEGER_t st;
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000170 void *st_ptr = (void *)&st;
Lev Walkine0b56e02005-02-25 12:10:27 +0000171 long *native = (long *)*sptr;
Lev Walkin435cb282004-10-21 14:13:48 +0000172
Lev Walkine0b56e02005-02-25 12:10:27 +0000173 if(!native) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000174 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
175 if(!native) _ASN_DECODE_FAILED;
Lev Walkin435cb282004-10-21 14:13:48 +0000176 }
177
Lev Walkin59b176e2005-11-26 11:25:14 +0000178 memset(&st, 0, sizeof(st));
179 rval = INTEGER_decode_xer(opt_codec_ctx, td, &st_ptr,
Lev Walkinf0b7c9a2005-01-27 17:54:57 +0000180 opt_mname, buf_ptr, size);
Lev Walkin435cb282004-10-21 14:13:48 +0000181 if(rval.code == RC_OK) {
182 long l;
Lev Walkin59b176e2005-11-26 11:25:14 +0000183 if(asn_INTEGER2long(&st, &l)) {
Lev Walkin435cb282004-10-21 14:13:48 +0000184 rval.code = RC_FAIL;
185 rval.consumed = 0;
186 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000187 *native = l;
Lev Walkin435cb282004-10-21 14:13:48 +0000188 }
189 } else {
Lev Walkine0b56e02005-02-25 12:10:27 +0000190 /*
191 * Cannot restart from the middle;
192 * there is no place to save state in the native type.
193 * Request a continuation from the very beginning.
194 */
Lev Walkin435cb282004-10-21 14:13:48 +0000195 rval.consumed = 0;
196 }
Lev Walkin59b176e2005-11-26 11:25:14 +0000197 asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, &st, 1);
Lev Walkin435cb282004-10-21 14:13:48 +0000198 return rval;
199}
200
201
Lev Walkina9cc46e2004-09-22 16:06:28 +0000202asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000203NativeInteger_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000204 int ilevel, enum xer_encoder_flags_e flags,
205 asn_app_consume_bytes_f *cb, void *app_key) {
206 char scratch[32]; /* Enough for 64-bit int */
207 asn_enc_rval_t er;
Lev Walkine0b56e02005-02-25 12:10:27 +0000208 const long *native = (const long *)sptr;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000209
210 (void)ilevel;
211 (void)flags;
212
Lev Walkine0b56e02005-02-25 12:10:27 +0000213 if(!native) _ASN_ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000214
Lev Walkine0b56e02005-02-25 12:10:27 +0000215 er.encoded = snprintf(scratch, sizeof(scratch), "%ld", *native);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000216 if(er.encoded <= 0 || (size_t)er.encoded >= sizeof(scratch)
217 || cb(scratch, er.encoded, app_key) < 0)
218 _ASN_ENCODE_FAILED;
219
Lev Walkin59b176e2005-11-26 11:25:14 +0000220 _ASN_ENCODED_OK(er);
221}
222
223asn_dec_rval_t
224NativeInteger_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
225 asn_TYPE_descriptor_t *td,
226 asn_per_constraints_t *constraints, void **sptr, asn_per_data_t *pd) {
227
228 asn_dec_rval_t rval;
229 long *native = (long *)*sptr;
230 INTEGER_t tmpint;
231 void *tmpintptr = &tmpint;
232
233 (void)opt_codec_ctx;
234 ASN_DEBUG("Decoding NativeInteger %s (UPER)", td->name);
235
236 if(!native) {
237 native = (long *)(*sptr = CALLOC(1, sizeof(*native)));
238 if(!native) _ASN_DECODE_FAILED;
239 }
240
241 memset(&tmpint, 0, sizeof tmpint);
242 rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
243 &tmpintptr, pd);
Lev Walkinb2bed822005-11-27 12:40:43 +0000244 if(rval.code == RC_OK) {
Lev Walkin59b176e2005-11-26 11:25:14 +0000245 if(asn_INTEGER2long(&tmpint, native))
246 rval.code = RC_FAIL;
247 else
248 ASN_DEBUG("NativeInteger %s got value %ld",
249 td->name, *native);
Lev Walkinb2bed822005-11-27 12:40:43 +0000250 }
Lev Walkin59b176e2005-11-26 11:25:14 +0000251 asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, &tmpint, 1);
252
253 return rval;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000254}
255
Lev Walkinf15320b2004-06-03 03:38:44 +0000256/*
257 * INTEGER specific human-readable output.
258 */
259int
Lev Walkin5e033762004-09-29 13:26:15 +0000260NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000261 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine0b56e02005-02-25 12:10:27 +0000262 const long *native = (const long *)sptr;
Lev Walkindb13f512004-07-19 17:30:25 +0000263 char scratch[32]; /* Enough for 64-bit int */
Lev Walkinf15320b2004-06-03 03:38:44 +0000264 int ret;
265
Lev Walkind9bd7752004-06-05 08:17:50 +0000266 (void)td; /* Unused argument */
267 (void)ilevel; /* Unused argument */
268
Lev Walkine0b56e02005-02-25 12:10:27 +0000269 if(native) {
270 ret = snprintf(scratch, sizeof(scratch), "%ld", *native);
271 assert(ret > 0 && (size_t)ret < sizeof(scratch));
Lev Walkin8e8078a2004-09-26 13:10:40 +0000272 return (cb(scratch, ret, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000273 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000274 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000275 }
276}
277
278void
Lev Walkin5e033762004-09-29 13:26:15 +0000279NativeInteger_free(asn_TYPE_descriptor_t *td, void *ptr, int contents_only) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000280
281 if(!td || !ptr)
282 return;
283
284 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
285 td->name, contents_only, ptr);
286
287 if(!contents_only) {
288 FREEMEM(ptr);
289 }
290}
291