blob: dd5c3e11d53b51be8614971295d8e24e4d0992cc [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * 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 */
vlm39ba4c42004-09-22 16:06:28 +000012#include <asn_internal.h>
vlmfa67ddc2004-06-03 03:38:44 +000013#include <NativeInteger.h>
14#include <INTEGER.h>
15#include <assert.h>
16
17/*
18 * NativeInteger basic type description.
19 */
vlmef6355b2004-09-29 13:26:15 +000020static ber_tlv_tag_t asn_DEF_NativeInteger_tags[] = {
vlmfa67ddc2004-06-03 03:38:44 +000021 (ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
22};
vlmef6355b2004-09-29 13:26:15 +000023asn_TYPE_descriptor_t asn_DEF_NativeInteger = {
vlmfa67ddc2004-06-03 03:38:44 +000024 "INTEGER", /* The ASN.1 type is still INTEGER */
vlm9de248e2004-10-20 15:50:55 +000025 "INTEGER",
vlm39ba4c42004-09-22 16:06:28 +000026 NativeInteger_free,
27 NativeInteger_print,
vlmfa67ddc2004-06-03 03:38:44 +000028 asn_generic_no_constraint,
29 NativeInteger_decode_ber,
30 NativeInteger_encode_der,
vlmd52f9b52004-10-21 14:13:48 +000031 NativeInteger_decode_xer,
vlm39ba4c42004-09-22 16:06:28 +000032 NativeInteger_encode_xer,
vlmfa67ddc2004-06-03 03:38:44 +000033 0, /* Use generic outmost tag fetcher */
vlmef6355b2004-09-29 13:26:15 +000034 asn_DEF_NativeInteger_tags,
35 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
36 asn_DEF_NativeInteger_tags, /* Same as above */
37 sizeof(asn_DEF_NativeInteger_tags) / sizeof(asn_DEF_NativeInteger_tags[0]),
vlme413c122004-08-20 13:23:42 +000038 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000039 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000040};
41
42/*
43 * Decode INTEGER type.
44 */
vlm9de248e2004-10-20 15:50:55 +000045asn_dec_rval_t
vlmef6355b2004-09-29 13:26:15 +000046NativeInteger_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
47 asn_TYPE_descriptor_t *td,
vlmfa67ddc2004-06-03 03:38:44 +000048 void **int_ptr, void *buf_ptr, size_t size, int tag_mode) {
vlmda674682004-08-11 09:07:36 +000049 int *Int = (int *)*int_ptr;
vlm9de248e2004-10-20 15:50:55 +000050 asn_dec_rval_t rval;
vlmfa67ddc2004-06-03 03:38:44 +000051 ber_tlv_len_t length;
52
53 /*
54 * If the structure is not there, allocate it.
55 */
56 if(Int == NULL) {
vlm6678cb12004-09-26 13:10:40 +000057 Int = (int *)(*int_ptr = CALLOC(1, sizeof(*Int)));
vlmfa67ddc2004-06-03 03:38:44 +000058 if(Int == NULL) {
59 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 */
vlmef6355b2004-09-29 13:26:15 +000071 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
72 tag_mode, 0, &length, 0);
vlmfa67ddc2004-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 */
vlmd86c9252004-08-25 01:34:11 +000081 buf_ptr = ((char *)buf_ptr) + rval.consumed;
vlmfa67ddc2004-06-03 03:38:44 +000082 size -= rval.consumed;
vlmb42843a2004-06-05 08:17:50 +000083 if(length > (ber_tlv_len_t)size) {
vlmfa67ddc2004-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
91 * Fill the Int, at the same time checking for overflow.
92 * If overflow occured, return with RC_FAIL.
93 */
94 {
95 INTEGER_t tmp;
96 long l;
vlmda674682004-08-11 09:07:36 +000097 tmp.buf = (uint8_t *)buf_ptr;
vlmfa67ddc2004-06-03 03:38:44 +000098 tmp.size = length;
99
vlmef6355b2004-09-29 13:26:15 +0000100 if(asn_INTEGER2long(&tmp, &l)) {
vlmfa67ddc2004-06-03 03:38:44 +0000101 rval.code = RC_FAIL;
102 rval.consumed = 0;
103 return rval;
104 }
105
106 *Int = l;
107
108 /*
109 * Note that int might be shorter than long.
110 * This expression hopefully will be optimized away
111 * by compiler.
112 */
vlmd52f9b52004-10-21 14:13:48 +0000113 if(sizeof(int) != sizeof(long) && ((long)*Int != l)) {
vlmfa67ddc2004-06-03 03:38:44 +0000114 *Int = 0; /* Safe value */
115 rval.code = RC_FAIL;
116 rval.consumed = 0;
117 return rval;
118 }
119 }
120
121 rval.code = RC_OK;
122 rval.consumed += length;
123
124 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%d)",
125 (long)rval.consumed, (long)length, td->name, *Int);
126
127 return rval;
128}
129
130/*
131 * Encode the NativeInteger using the standard INTEGER type DER encoder.
132 */
vlm39ba4c42004-09-22 16:06:28 +0000133asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +0000134NativeInteger_encode_der(asn_TYPE_descriptor_t *sd, void *ptr,
vlmfa67ddc2004-06-03 03:38:44 +0000135 int tag_mode, ber_tlv_tag_t tag,
136 asn_app_consume_bytes_f *cb, void *app_key) {
137 unsigned int Int = *(unsigned int *)ptr; /* Disable sign ext. */
vlm39ba4c42004-09-22 16:06:28 +0000138 asn_enc_rval_t erval;
vlmfa67ddc2004-06-03 03:38:44 +0000139 INTEGER_t tmp;
140
141#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
142
vlm39ba4c42004-09-22 16:06:28 +0000143 tmp.buf = (uint8_t *)&Int;
vlmfa67ddc2004-06-03 03:38:44 +0000144 tmp.size = sizeof(Int);
145
146#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
147 uint8_t buf[sizeof(int)];
148 uint8_t *p;
149
vlm978078f2004-10-27 13:24:51 +0000150 /* Prepare a fake INTEGER */
vlmfa67ddc2004-06-03 03:38:44 +0000151 for(p = buf + sizeof(buf) - 1; p >= buf; p--, Int >>= 8)
vlm978078f2004-10-27 13:24:51 +0000152 *p = Int;
vlmfa67ddc2004-06-03 03:38:44 +0000153
154 tmp.buf = buf;
155 tmp.size = sizeof(buf);
156#endif /* WORDS_BIGENDIAN */
157
158 /* Encode fake INTEGER */
159 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
160 if(erval.encoded == -1) {
161 assert(erval.structure_ptr == &tmp);
162 erval.structure_ptr = ptr;
163 }
164 return erval;
165}
166
vlmd52f9b52004-10-21 14:13:48 +0000167/*
168 * Decode the chunk of XML text encoding INTEGER.
169 */
170asn_dec_rval_t
171NativeInteger_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
172 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
173 void *buf_ptr, size_t size) {
174 asn_dec_rval_t rval;
175 INTEGER_t *st = 0;
176 int *Int = (int *)*sptr;
177
178 if(!Int) {
179 (void *)Int = *sptr = CALLOC(1, sizeof(int));
180 if(!Int) {
181 rval.code = RC_FAIL;
182 rval.consumed = 0;
183 return rval;
184 }
185 }
186
187 rval = INTEGER_decode_xer(opt_codec_ctx, td, (void **)&st, opt_mname,
188 buf_ptr, size);
189 if(rval.code == RC_OK) {
190 long l;
191 if(asn_INTEGER2long(st, &l)) {
192 rval.code = RC_FAIL;
193 rval.consumed = 0;
194 } else {
195 *Int = l;
196
197 /* int might be shorter than long */
198 if(sizeof(int) != sizeof(long) && ((long)*Int != l)) {
199 *Int = 0; /* Safe value */
200 rval.code = RC_FAIL;
201 rval.consumed = 0;
202 return rval;
203 }
204 }
205 } else {
206 rval.consumed = 0;
207 }
208 asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, st, 0);
209 return rval;
210}
211
212
vlm39ba4c42004-09-22 16:06:28 +0000213asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +0000214NativeInteger_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +0000215 int ilevel, enum xer_encoder_flags_e flags,
216 asn_app_consume_bytes_f *cb, void *app_key) {
217 char scratch[32]; /* Enough for 64-bit int */
218 asn_enc_rval_t er;
219 const int *Int = (const int *)sptr;
220
221 (void)ilevel;
222 (void)flags;
223
224 if(!Int) _ASN_ENCODE_FAILED;
225
226 er.encoded = snprintf(scratch, sizeof(scratch), "%d", *Int);
227 if(er.encoded <= 0 || (size_t)er.encoded >= sizeof(scratch)
228 || cb(scratch, er.encoded, app_key) < 0)
229 _ASN_ENCODE_FAILED;
230
231 return er;
232}
233
vlmfa67ddc2004-06-03 03:38:44 +0000234/*
235 * INTEGER specific human-readable output.
236 */
237int
vlmef6355b2004-09-29 13:26:15 +0000238NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
vlmfa67ddc2004-06-03 03:38:44 +0000239 asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +0000240 const int *Int = (const int *)sptr;
vlm7d278c42004-07-19 17:30:25 +0000241 char scratch[32]; /* Enough for 64-bit int */
vlmfa67ddc2004-06-03 03:38:44 +0000242 int ret;
243
vlmb42843a2004-06-05 08:17:50 +0000244 (void)td; /* Unused argument */
245 (void)ilevel; /* Unused argument */
246
vlmfa67ddc2004-06-03 03:38:44 +0000247 if(Int) {
248 ret = snprintf(scratch, sizeof(scratch), "%d", *Int);
vlmb42843a2004-06-05 08:17:50 +0000249 assert(ret > 0 && ret < (int)sizeof(scratch));
vlm6678cb12004-09-26 13:10:40 +0000250 return (cb(scratch, ret, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +0000251 } else {
vlm6678cb12004-09-26 13:10:40 +0000252 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +0000253 }
254}
255
256void
vlmef6355b2004-09-29 13:26:15 +0000257NativeInteger_free(asn_TYPE_descriptor_t *td, void *ptr, int contents_only) {
vlmfa67ddc2004-06-03 03:38:44 +0000258
259 if(!td || !ptr)
260 return;
261
262 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
263 td->name, contents_only, ptr);
264
265 if(!contents_only) {
266 FREEMEM(ptr);
267 }
268}
269