2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #include <asn_internal.h>
6 #include <asn_codecs_prim.h>
10 * Decode an always-primitive type.
13 ber_decode_primitive(const asn_codec_ctx_t *opt_codec_ctx,
14 const asn_TYPE_descriptor_t *td, void **sptr,
15 const void *buf_ptr, size_t size, int tag_mode) {
16 ASN__PRIMITIVE_TYPE_t *st = (ASN__PRIMITIVE_TYPE_t *)*sptr;
18 ber_tlv_len_t length = 0; /* =0 to avoid [incorrect] warning. */
21 * If the structure is not there, allocate it.
24 st = (ASN__PRIMITIVE_TYPE_t *)CALLOC(1, sizeof(*st));
25 if(st == NULL) ASN__DECODE_FAILED;
29 ASN_DEBUG("Decoding %s as plain primitive (tm=%d)",
33 * Check tags and extract value length.
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)
40 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
43 * Make sure we have this length.
45 buf_ptr = ((const char *)buf_ptr) + rval.consumed;
46 size -= rval.consumed;
47 if(length > (ber_tlv_len_t)size) {
53 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) {
61 st->buf = (uint8_t *)MALLOC(length + 1);
67 memcpy(st->buf, buf_ptr, length);
68 st->buf[length] = '\0'; /* Just in case */
71 rval.consumed += length;
73 ASN_DEBUG("Took %ld/%ld bytes to encode %s",
75 (long)length, td->name);
81 * Encode an always-primitive type using DER.
84 der_encode_primitive(const asn_TYPE_descriptor_t *td, const void *sptr,
85 int tag_mode, ber_tlv_tag_t tag,
86 asn_app_consume_bytes_f *cb, void *app_key) {
88 const ASN__PRIMITIVE_TYPE_t *st = (const ASN__PRIMITIVE_TYPE_t *)sptr;
90 ASN_DEBUG("%s %s as a primitive type (tm=%d)",
91 cb?"Encoding":"Estimating", td->name, tag_mode);
93 erval.encoded = der_write_tags(td, st->size, tag_mode, 0, tag,
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;
103 if(cb(st->buf, st->size, app_key) < 0) {
105 erval.failed_type = td;
106 erval.structure_ptr = sptr;
110 assert(st->buf || st->size == 0);
113 erval.encoded += st->size;
114 ASN__ENCODED_OK(erval);
118 ASN__PRIMITIVE_TYPE_free(const asn_TYPE_descriptor_t *td, void *sptr,
119 enum asn_struct_free_method method) {
120 ASN__PRIMITIVE_TYPE_t *st = (ASN__PRIMITIVE_TYPE_t *)sptr;
125 ASN_DEBUG("Freeing %s as a primitive type", td->name);
131 case ASFM_FREE_EVERYTHING:
134 case ASFM_FREE_UNDERLYING:
136 case ASFM_FREE_UNDERLYING_AND_RESET:
137 memset(sptr, 0, sizeof(ASN__PRIMITIVE_TYPE_t));
144 * Local internal type passed around as an argument.
147 const asn_TYPE_descriptor_t *type_descriptor;
149 xer_primitive_body_decoder_f *prim_body_decoder;
150 int decoded_something;
155 * Since some kinds of primitive values can be encoded using value-specific
156 * tags (<MINUS-INFINITY>, <enum-element>, etc), the primitive decoder must
157 * be supplied with such tags to parse them as needed.
160 xer_decode__unexpected_tag(void *key, const void *chunk_buf, size_t chunk_size) {
161 struct xdp_arg_s *arg = (struct xdp_arg_s *)key;
162 enum xer_pbd_rval bret;
165 * The chunk_buf is guaranteed to start at '<'.
167 assert(chunk_size && ((const char *)chunk_buf)[0] == 0x3c);
170 * Decoding was performed once already. Prohibit doing it again.
172 if(arg->decoded_something)
175 bret = arg->prim_body_decoder(arg->type_descriptor,
176 arg->struct_key, chunk_buf, chunk_size);
178 case XPBD_SYSTEM_FAILURE:
179 case XPBD_DECODER_LIMIT:
180 case XPBD_BROKEN_ENCODING:
182 case XPBD_BODY_CONSUMED:
183 /* Tag decoded successfully */
184 arg->decoded_something = 1;
186 case XPBD_NOT_BODY_IGNORE: /* Safe to proceed further */
194 xer_decode__primitive_body(void *key, const void *chunk_buf, size_t chunk_size, int have_more) {
195 struct xdp_arg_s *arg = (struct xdp_arg_s *)key;
196 enum xer_pbd_rval bret;
197 size_t lead_wsp_size;
199 if(arg->decoded_something) {
200 if(xer_whitespace_span(chunk_buf, chunk_size) == chunk_size) {
203 * "<INTEGER>123<!--/--> </INTEGER>"
204 * ^- chunk_buf position.
209 * Decoding was done once already. Prohibit doing it again.
216 * If we've received something like "1", we can't really
217 * tell whether it is really `1` or `123`, until we know
218 * that there is no more data coming.
219 * The have_more argument will be set to 1 once something
220 * like this is available to the caller of this callback:
227 lead_wsp_size = xer_whitespace_span(chunk_buf, chunk_size);
228 chunk_buf = (const char *)chunk_buf + lead_wsp_size;
229 chunk_size -= lead_wsp_size;
231 bret = arg->prim_body_decoder(arg->type_descriptor,
232 arg->struct_key, chunk_buf, chunk_size);
234 case XPBD_SYSTEM_FAILURE:
235 case XPBD_DECODER_LIMIT:
236 case XPBD_BROKEN_ENCODING:
238 case XPBD_BODY_CONSUMED:
239 /* Tag decoded successfully */
240 arg->decoded_something = 1;
242 case XPBD_NOT_BODY_IGNORE: /* Safe to proceed further */
243 return lead_wsp_size + chunk_size;
251 xer_decode_primitive(const asn_codec_ctx_t *opt_codec_ctx,
252 const asn_TYPE_descriptor_t *td, void **sptr,
253 size_t struct_size, const char *opt_mname,
254 const void *buf_ptr, size_t size,
255 xer_primitive_body_decoder_f *prim_body_decoder) {
256 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
257 asn_struct_ctx_t s_ctx;
258 struct xdp_arg_s s_arg;
262 * Create the structure if does not exist.
265 *sptr = CALLOC(1, struct_size);
266 if(!*sptr) ASN__DECODE_FAILED;
269 memset(&s_ctx, 0, sizeof(s_ctx));
270 s_arg.type_descriptor = td;
271 s_arg.struct_key = *sptr;
272 s_arg.prim_body_decoder = prim_body_decoder;
273 s_arg.decoded_something = 0;
276 rc = xer_decode_general(opt_codec_ctx, &s_ctx, &s_arg,
277 xml_tag, buf_ptr, size,
278 xer_decode__unexpected_tag, xer_decode__primitive_body);
281 if(!s_arg.decoded_something) {
283 ASN_DEBUG("Primitive body is not recognized, "
284 "supplying empty one");
286 * Decoding opportunity has come and gone.
287 * Where's the result?
288 * Try to feed with empty body, see if it eats it.
290 if(prim_body_decoder(s_arg.type_descriptor,
291 s_arg.struct_key, &ch, 0)
292 != XPBD_BODY_CONSUMED) {
294 * This decoder does not like empty stuff.
302 * Redo the whole thing later.
303 * We don't have a context to save intermediate parsing state.