blob: 4e5c63937adafc40a56b67fe5b3d9482220907d5 [file] [log] [blame]
Lev Walkin4fd73182004-10-21 11:20:50 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#include <asn_internal.h>
6#include <asn_codecs_prim.h>
Lev Walkin4fd73182004-10-21 11:20:50 +00007#include <errno.h>
8
9/*
10 * Decode an always-primitive type.
11 */
12asn_dec_rval_t
13ber_decode_primitive(asn_codec_ctx_t *opt_codec_ctx,
14 asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +000015 void **sptr, const void *buf_ptr, size_t size, int tag_mode) {
Lev Walkin4fd73182004-10-21 11:20:50 +000016 ASN__PRIMITIVE_TYPE_t *st = (ASN__PRIMITIVE_TYPE_t *)*sptr;
17 asn_dec_rval_t rval;
18 ber_tlv_len_t length;
19
20 /*
21 * If the structure is not there, allocate it.
22 */
23 if(st == NULL) {
Lev Walkin8484ed82004-12-14 13:31:01 +000024 st = (ASN__PRIMITIVE_TYPE_t *)CALLOC(1, sizeof(*st));
Lev Walkin00918812006-09-18 21:19:32 +000025 if(st == NULL) _ASN_DECODE_FAILED;
Lev Walkin8484ed82004-12-14 13:31:01 +000026 *sptr = (void *)st;
Lev Walkin4fd73182004-10-21 11:20:50 +000027 }
28
29 ASN_DEBUG("Decoding %s as plain primitive (tm=%d)",
30 td->name, tag_mode);
31
32 /*
33 * Check tags and extract value length.
34 */
35 rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
36 tag_mode, 0, &length, 0);
37 if(rval.code != RC_OK)
38 return rval;
39
40 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
41
42 /*
43 * Make sure we have this length.
44 */
Lev Walkin8c3b8542005-03-10 18:52:02 +000045 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
Lev Walkin4fd73182004-10-21 11:20:50 +000046 size -= rval.consumed;
47 if(length > (ber_tlv_len_t)size) {
48 rval.code = RC_WMORE;
49 rval.consumed = 0;
50 return rval;
51 }
52
Lev Walkin4efbfb72005-02-25 14:20:30 +000053 st->size = (int)length;
54 /* The following better be optimized away. */
55 if(sizeof(st->size) != sizeof(length)
56 && (ber_tlv_len_t)st->size != length) {
57 st->size = 0;
Lev Walkin00918812006-09-18 21:19:32 +000058 _ASN_DECODE_FAILED;
Lev Walkin4efbfb72005-02-25 14:20:30 +000059 }
60
Lev Walkin4fd73182004-10-21 11:20:50 +000061 st->buf = (uint8_t *)MALLOC(length + 1);
Lev Walkin4efbfb72005-02-25 14:20:30 +000062 if(!st->buf) {
63 st->size = 0;
Lev Walkin00918812006-09-18 21:19:32 +000064 _ASN_DECODE_FAILED;
Lev Walkin4fd73182004-10-21 11:20:50 +000065 }
66
67 memcpy(st->buf, buf_ptr, length);
68 st->buf[length] = '\0'; /* Just in case */
69
70 rval.code = RC_OK;
71 rval.consumed += length;
72
73 ASN_DEBUG("Took %ld/%ld bytes to encode %s",
74 (long)rval.consumed,
75 (long)length, td->name);
76
77 return rval;
78}
79
80/*
81 * Encode an always-primitive type using DER.
82 */
83asn_enc_rval_t
84der_encode_primitive(asn_TYPE_descriptor_t *td, void *sptr,
85 int tag_mode, ber_tlv_tag_t tag,
86 asn_app_consume_bytes_f *cb, void *app_key) {
87 asn_enc_rval_t erval;
88 ASN__PRIMITIVE_TYPE_t *st = (ASN__PRIMITIVE_TYPE_t *)sptr;
89
90 ASN_DEBUG("%s %s as a primitive type (tm=%d)",
91 cb?"Encoding":"Estimating", td->name, tag_mode);
92
93 erval.encoded = der_write_tags(td, st->size, tag_mode, 0, tag,
94 cb, app_key);
95 ASN_DEBUG("%s wrote tags %d", td->name, (int)erval.encoded);
96 if(erval.encoded == -1) {
97 erval.failed_type = td;
98 erval.structure_ptr = sptr;
99 return erval;
100 }
101
102 if(cb && st->buf) {
103 if(cb(st->buf, st->size, app_key) < 0) {
104 erval.encoded = -1;
105 erval.failed_type = td;
106 erval.structure_ptr = sptr;
107 return erval;
108 }
109 } else {
110 assert(st->buf || st->size == 0);
111 }
112
113 erval.encoded += st->size;
Lev Walkin59b176e2005-11-26 11:25:14 +0000114 _ASN_ENCODED_OK(erval);
Lev Walkin4fd73182004-10-21 11:20:50 +0000115}
116
117void
118ASN__PRIMITIVE_TYPE_free(asn_TYPE_descriptor_t *td, void *sptr,
119 int contents_only) {
120 ASN__PRIMITIVE_TYPE_t *st = (ASN__PRIMITIVE_TYPE_t *)sptr;
121
122 if(!td || !sptr)
123 return;
124
125 ASN_DEBUG("Freeing %s as a primitive type", td->name);
126
127 if(st->buf)
128 FREEMEM(st->buf);
129
130 if(!contents_only)
131 FREEMEM(st);
132}
133
134
135/*
136 * Local internal type passed around as an argument.
137 */
138struct xdp_arg_s {
Lev Walkine0b56e02005-02-25 12:10:27 +0000139 asn_TYPE_descriptor_t *type_descriptor;
Lev Walkin8471cec2004-10-21 14:02:19 +0000140 void *struct_key;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000141 xer_primitive_body_decoder_f *prim_body_decoder;
Lev Walkin4fd73182004-10-21 11:20:50 +0000142 int decoded_something;
143 int want_more;
144};
145
Lev Walkin0be3a992004-10-21 12:11:57 +0000146
Lev Walkin0fab1a62005-03-09 22:19:25 +0000147static int
148xer_decode__unexpected_tag(void *key, const void *chunk_buf, size_t chunk_size) {
Lev Walkin4fd73182004-10-21 11:20:50 +0000149 struct xdp_arg_s *arg = (struct xdp_arg_s *)key;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000150 enum xer_pbd_rval bret;
Lev Walkin4fd73182004-10-21 11:20:50 +0000151
152 if(arg->decoded_something) {
Lev Walkindde25b32004-10-22 08:17:16 +0000153 if(xer_is_whitespace(chunk_buf, chunk_size))
Lev Walkin4efbfb72005-02-25 14:20:30 +0000154 return 0; /* Skip it. */
Lev Walkin4fd73182004-10-21 11:20:50 +0000155 /*
156 * Decoding was done once already. Prohibit doing it again.
157 */
158 return -1;
159 }
160
Lev Walkin0fab1a62005-03-09 22:19:25 +0000161 bret = arg->prim_body_decoder(arg->type_descriptor,
Lev Walkine0b56e02005-02-25 12:10:27 +0000162 arg->struct_key, chunk_buf, chunk_size);
Lev Walkin0fab1a62005-03-09 22:19:25 +0000163 switch(bret) {
164 case XPBD_SYSTEM_FAILURE:
165 case XPBD_DECODER_LIMIT:
166 case XPBD_BROKEN_ENCODING:
167 break;
168 case XPBD_BODY_CONSUMED:
Lev Walkin4fd73182004-10-21 11:20:50 +0000169 /* Tag decoded successfully */
170 arg->decoded_something = 1;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000171 /* Fall through */
172 case XPBD_NOT_BODY_IGNORE: /* Safe to proceed further */
Lev Walkin4fd73182004-10-21 11:20:50 +0000173 return 0;
174 }
Lev Walkin0fab1a62005-03-09 22:19:25 +0000175
176 return -1;
Lev Walkin4fd73182004-10-21 11:20:50 +0000177}
178
179static ssize_t
Lev Walkin0fab1a62005-03-09 22:19:25 +0000180xer_decode__body(void *key, const void *chunk_buf, size_t chunk_size, int have_more) {
Lev Walkin4fd73182004-10-21 11:20:50 +0000181 struct xdp_arg_s *arg = (struct xdp_arg_s *)key;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000182 enum xer_pbd_rval bret;
Lev Walkin4fd73182004-10-21 11:20:50 +0000183
184 if(arg->decoded_something) {
Lev Walkindde25b32004-10-22 08:17:16 +0000185 if(xer_is_whitespace(chunk_buf, chunk_size))
Lev Walkin0be3a992004-10-21 12:11:57 +0000186 return chunk_size;
Lev Walkin4fd73182004-10-21 11:20:50 +0000187 /*
188 * Decoding was done once already. Prohibit doing it again.
189 */
190 return -1;
191 }
192
193 if(!have_more) {
194 /*
195 * If we've received something like "1", we can't really
196 * tell whether it is really `1` or `123`, until we know
197 * that there is no more data coming.
198 * The have_more argument will be set to 1 once something
199 * like this is available to the caller of this callback:
200 * "1<tag_start..."
201 */
202 arg->want_more = 1;
203 return -1;
204 }
205
Lev Walkin0fab1a62005-03-09 22:19:25 +0000206 bret = arg->prim_body_decoder(arg->type_descriptor,
Lev Walkine0b56e02005-02-25 12:10:27 +0000207 arg->struct_key, chunk_buf, chunk_size);
Lev Walkin0fab1a62005-03-09 22:19:25 +0000208 switch(bret) {
209 case XPBD_SYSTEM_FAILURE:
210 case XPBD_DECODER_LIMIT:
211 case XPBD_BROKEN_ENCODING:
212 break;
213 case XPBD_BODY_CONSUMED:
214 /* Tag decoded successfully */
Lev Walkin4fd73182004-10-21 11:20:50 +0000215 arg->decoded_something = 1;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000216 /* Fall through */
217 case XPBD_NOT_BODY_IGNORE: /* Safe to proceed further */
218 return chunk_size;
Lev Walkin4fd73182004-10-21 11:20:50 +0000219 }
Lev Walkin0fab1a62005-03-09 22:19:25 +0000220
221 return -1;
Lev Walkin4fd73182004-10-21 11:20:50 +0000222}
223
224
225asn_dec_rval_t
226xer_decode_primitive(asn_codec_ctx_t *opt_codec_ctx,
227 asn_TYPE_descriptor_t *td,
Lev Walkin8471cec2004-10-21 14:02:19 +0000228 void **sptr,
229 size_t struct_size,
Lev Walkin4fd73182004-10-21 11:20:50 +0000230 const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000231 const void *buf_ptr, size_t size,
Lev Walkin0fab1a62005-03-09 22:19:25 +0000232 xer_primitive_body_decoder_f *prim_body_decoder
Lev Walkin4fd73182004-10-21 11:20:50 +0000233) {
234 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
235 asn_struct_ctx_t s_ctx;
236 struct xdp_arg_s s_arg;
237 asn_dec_rval_t rc;
238
239 /*
240 * Create the structure if does not exist.
241 */
242 if(!*sptr) {
Lev Walkin8471cec2004-10-21 14:02:19 +0000243 *sptr = CALLOC(1, struct_size);
Lev Walkin00918812006-09-18 21:19:32 +0000244 if(!*sptr) _ASN_DECODE_FAILED;
Lev Walkin4fd73182004-10-21 11:20:50 +0000245 }
246
247 memset(&s_ctx, 0, sizeof(s_ctx));
Lev Walkine0b56e02005-02-25 12:10:27 +0000248 s_arg.type_descriptor = td;
Lev Walkin8471cec2004-10-21 14:02:19 +0000249 s_arg.struct_key = *sptr;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000250 s_arg.prim_body_decoder = prim_body_decoder;
Lev Walkin4fd73182004-10-21 11:20:50 +0000251 s_arg.decoded_something = 0;
252 s_arg.want_more = 0;
253
254 rc = xer_decode_general(opt_codec_ctx, &s_ctx, &s_arg,
255 xml_tag, buf_ptr, size,
256 xer_decode__unexpected_tag, xer_decode__body);
257 switch(rc.code) {
258 case RC_OK:
259 if(!s_arg.decoded_something) {
Lev Walkin36b8b822004-10-23 11:19:43 +0000260 char ch;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000261 ASN_DEBUG("Primitive body is not recognized, "
262 "supplying empty one");
263 /*
264 * Decoding opportunity has come and gone.
265 * Where's the result?
266 * Try to feed with empty body, see if it eats it.
267 */
268 if(prim_body_decoder(s_arg.type_descriptor,
269 s_arg.struct_key, &ch, 0)
270 != XPBD_BODY_CONSUMED) {
Lev Walkin28eee292004-10-23 10:17:34 +0000271 /*
272 * This decoder does not like empty stuff.
273 */
Lev Walkin00918812006-09-18 21:19:32 +0000274 _ASN_DECODE_FAILED;
Lev Walkin28eee292004-10-23 10:17:34 +0000275 }
Lev Walkin4fd73182004-10-21 11:20:50 +0000276 }
277 break;
278 case RC_WMORE:
279 /*
280 * Redo the whole thing later.
281 * We don't have a context to save intermediate parsing state.
282 */
283 rc.consumed = 0;
284 break;
285 case RC_FAIL:
286 rc.consumed = 0;
287 if(s_arg.want_more)
288 rc.code = RC_WMORE;
Lev Walkin00918812006-09-18 21:19:32 +0000289 else
290 _ASN_DECODE_FAILED;
Lev Walkin4fd73182004-10-21 11:20:50 +0000291 break;
292 }
293 return rc;
294}
295