blob: 9a9e373e551cc89faabf667a012c56afa387467b [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkincd2f48e2017-08-10 02:14:59 -07002 * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>.
Lev Walkinc61f3862005-02-14 17:21:22 +00003 * All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00006#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00007#include <constr_SEQUENCE.h>
Lev Walkinf6853ce2017-08-11 00:50:27 -07008#include <OPEN_TYPE.h>
Lev Walkin9218bc12007-06-27 04:09:37 +00009#include <per_opentype.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000010
11/*
12 * Number of bytes left for this structure.
13 * (ctx->left) indicates the number of bytes _transferred_ for the structure.
14 * (size) contains the number of bytes in the buffer passed.
15 */
Lev Walkinec1ffd42004-08-18 04:53:32 +000016#define LEFT ((size<(size_t)ctx->left)?size:(size_t)ctx->left)
Lev Walkinf15320b2004-06-03 03:38:44 +000017
18/*
19 * If the subprocessor function returns with an indication that it wants
20 * more data, it may well be a fatal decoding problem, because the
21 * size is constrained by the <TLV>'s L, even if the buffer size allows
22 * reading more data.
23 * For example, consider the buffer containing the following TLVs:
24 * <T:5><L:1><V> <T:6>...
25 * The TLV length clearly indicates that one byte is expected in V, but
26 * if the V processor returns with "want more data" even if the buffer
27 * contains way more data than the V processor have seen.
28 */
Lev Walkind9bd7752004-06-05 08:17:50 +000029#define SIZE_VIOLATION (ctx->left >= 0 && (size_t)ctx->left <= size)
Lev Walkinf15320b2004-06-03 03:38:44 +000030
31/*
32 * This macro "eats" the part of the buffer which is definitely "consumed",
33 * i.e. was correctly converted into local representation or rightfully skipped.
34 */
Lev Walkincc6a9102004-09-23 22:06:26 +000035#undef ADVANCE
Lev Walkinf15320b2004-06-03 03:38:44 +000036#define ADVANCE(num_bytes) do { \
37 size_t num = num_bytes; \
Lev Walkinaa61a0f2014-01-13 23:08:47 -080038 ptr = ((const char *)ptr) + num; \
Lev Walkinf15320b2004-06-03 03:38:44 +000039 size -= num; \
40 if(ctx->left >= 0) \
41 ctx->left -= num; \
42 consumed_myself += num; \
43 } while(0)
44
45/*
46 * Switch to the next phase of parsing.
47 */
Lev Walkincc6a9102004-09-23 22:06:26 +000048#undef NEXT_PHASE
49#undef PHASE_OUT
Lev Walkinf15320b2004-06-03 03:38:44 +000050#define NEXT_PHASE(ctx) do { \
51 ctx->phase++; \
52 ctx->step = 0; \
53 } while(0)
54#define PHASE_OUT(ctx) do { ctx->phase = 10; } while(0)
55
56/*
57 * Return a standardized complex structure.
58 */
Lev Walkincc6a9102004-09-23 22:06:26 +000059#undef RETURN
Lev Walkinf15320b2004-06-03 03:38:44 +000060#define RETURN(_code) do { \
61 rval.code = _code; \
62 rval.consumed = consumed_myself;\
63 return rval; \
64 } while(0)
65
66/*
67 * Check whether we are inside the extensions group.
68 */
69#define IN_EXTENSION_GROUP(specs, memb_idx) \
Lev Walkin494fb702017-08-07 20:07:00 -070070 ( (((signed)(memb_idx)) > (specs)->ext_after) \
71 &&(((signed)(memb_idx)) < (specs)->ext_before))
Lev Walkinf15320b2004-06-03 03:38:44 +000072
Lev Walkin4c36e302004-06-06 07:20:02 +000073
74/*
75 * Tags are canonically sorted in the tag2element map.
76 */
77static int
78_t2e_cmp(const void *ap, const void *bp) {
Lev Walkin5e033762004-09-29 13:26:15 +000079 const asn_TYPE_tag2member_t *a = (const asn_TYPE_tag2member_t *)ap;
80 const asn_TYPE_tag2member_t *b = (const asn_TYPE_tag2member_t *)bp;
Lev Walkinc2346572004-08-11 09:07:36 +000081
Lev Walkin4c36e302004-06-06 07:20:02 +000082 int a_class = BER_TAG_CLASS(a->el_tag);
83 int b_class = BER_TAG_CLASS(b->el_tag);
84
85 if(a_class == b_class) {
86 ber_tlv_tag_t a_value = BER_TAG_VALUE(a->el_tag);
87 ber_tlv_tag_t b_value = BER_TAG_VALUE(b->el_tag);
88
Lev Walkin924fa032004-06-14 13:42:23 +000089 if(a_value == b_value) {
Lev Walkin50299c12004-06-14 14:11:14 +000090 if(a->el_no > b->el_no)
91 return 1;
Lev Walkin924fa032004-06-14 13:42:23 +000092 /*
93 * Important: we do not check
Lev Walkin50299c12004-06-14 14:11:14 +000094 * for a->el_no <= b->el_no!
Lev Walkin924fa032004-06-14 13:42:23 +000095 */
Lev Walkin4c36e302004-06-06 07:20:02 +000096 return 0;
Lev Walkin924fa032004-06-14 13:42:23 +000097 } else if(a_value < b_value)
Lev Walkin4c36e302004-06-06 07:20:02 +000098 return -1;
99 else
100 return 1;
101 } else if(a_class < b_class) {
102 return -1;
103 } else {
104 return 1;
105 }
106}
107
108
Lev Walkinf15320b2004-06-03 03:38:44 +0000109/*
110 * The decoder of the SEQUENCE type.
111 */
Lev Walkindc06f6b2004-10-20 15:50:55 +0000112asn_dec_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000113SEQUENCE_decode_ber(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000114 void **struct_ptr, const void *ptr, size_t size, int tag_mode) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000115 /*
116 * Bring closer parts of structure description.
117 */
Lev Walkin5e033762004-09-29 13:26:15 +0000118 asn_SEQUENCE_specifics_t *specs = (asn_SEQUENCE_specifics_t *)td->specifics;
119 asn_TYPE_member_t *elements = td->elements;
Lev Walkinf15320b2004-06-03 03:38:44 +0000120
121 /*
122 * Parts of the structure being constructed.
123 */
124 void *st = *struct_ptr; /* Target structure. */
Lev Walkin5e033762004-09-29 13:26:15 +0000125 asn_struct_ctx_t *ctx; /* Decoder context */
Lev Walkinf15320b2004-06-03 03:38:44 +0000126
127 ber_tlv_tag_t tlv_tag; /* T from TLV */
Lev Walkindc06f6b2004-10-20 15:50:55 +0000128 asn_dec_rval_t rval; /* Return code from subparsers */
Lev Walkinf15320b2004-06-03 03:38:44 +0000129
130 ssize_t consumed_myself = 0; /* Consumed bytes from ptr */
Lev Walkin494fb702017-08-07 20:07:00 -0700131 size_t edx; /* SEQUENCE element's index */
Lev Walkinf15320b2004-06-03 03:38:44 +0000132
Lev Walkin449f8322004-08-20 13:23:42 +0000133 ASN_DEBUG("Decoding %s as SEQUENCE", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000134
135 /*
136 * Create the target structure if it is not present already.
137 */
138 if(st == 0) {
139 st = *struct_ptr = CALLOC(1, specs->struct_size);
140 if(st == 0) {
141 RETURN(RC_FAIL);
142 }
143 }
144
145 /*
146 * Restore parsing context.
147 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800148 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000149
150 /*
151 * Start to parse where left previously
152 */
153 switch(ctx->phase) {
154 case 0:
155 /*
156 * PHASE 0.
157 * Check that the set of tags associated with given structure
158 * perfectly fits our expectations.
159 */
160
Lev Walkin5e033762004-09-29 13:26:15 +0000161 rval = ber_check_tags(opt_codec_ctx, td, ctx, ptr, size,
Lev Walkin8e8078a2004-09-26 13:10:40 +0000162 tag_mode, 1, &ctx->left, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +0000163 if(rval.code != RC_OK) {
164 ASN_DEBUG("%s tagging check failed: %d",
Lev Walkin449f8322004-08-20 13:23:42 +0000165 td->name, rval.code);
Lev Walkin566a5672004-10-05 06:36:57 +0000166 return rval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000167 }
168
169 if(ctx->left >= 0)
170 ctx->left += rval.consumed; /* ?Substracted below! */
171 ADVANCE(rval.consumed);
172
173 NEXT_PHASE(ctx);
174
175 ASN_DEBUG("Structure consumes %ld bytes, buffer %ld",
176 (long)ctx->left, (long)size);
177
178 /* Fall through */
179 case 1:
180 /*
181 * PHASE 1.
182 * From the place where we've left it previously,
183 * try to decode the next member from the list of
184 * this structure's elements.
185 * (ctx->step) stores the member being processed
186 * between invocations and the microphase {0,1} of parsing
187 * that member:
188 * step = (<member_number> * 2 + <microphase>).
189 */
Lev Walkin494fb702017-08-07 20:07:00 -0700190 for(edx = ((size_t)ctx->step >> 1); edx < td->elements_count;
Lev Walkinf15320b2004-06-03 03:38:44 +0000191 edx++, ctx->step = (ctx->step & ~1) + 2) {
192 void *memb_ptr; /* Pointer to the member */
Lev Walkinc2346572004-08-11 09:07:36 +0000193 void **memb_ptr2; /* Pointer to that pointer */
Lev Walkinf15320b2004-06-03 03:38:44 +0000194 ssize_t tag_len; /* Length of TLV's T */
Lev Walkin494fb702017-08-07 20:07:00 -0700195 size_t opt_edx_end; /* Next non-optional element */
196 size_t n;
Lev Walkin4c36e302004-06-06 07:20:02 +0000197 int use_bsearch;
Lev Walkinf15320b2004-06-03 03:38:44 +0000198
199 if(ctx->step & 1)
200 goto microphase2;
201
202 /*
203 * MICROPHASE 1: Synchronize decoding.
204 */
Lev Walkinf6853ce2017-08-11 00:50:27 -0700205 ASN_DEBUG("In %s SEQUENCE left %d, edx=%u flags=%d"
Lev Walkincc93b0f2004-09-10 09:18:20 +0000206 " opt=%d ec=%d",
207 td->name, (int)ctx->left, edx,
208 elements[edx].flags, elements[edx].optional,
209 td->elements_count);
Lev Walkinf15320b2004-06-03 03:38:44 +0000210
211 if(ctx->left == 0 /* No more stuff is expected */
212 && (
213 /* Explicit OPTIONAL specification reaches the end */
Lev Walkincc93b0f2004-09-10 09:18:20 +0000214 (edx + elements[edx].optional
215 == td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000216 ||
217 /* All extensions are optional */
218 (IN_EXTENSION_GROUP(specs, edx)
Lev Walkin494fb702017-08-07 20:07:00 -0700219 && specs->ext_before > (signed)td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000220 )
221 ) {
Lev Walkin449f8322004-08-20 13:23:42 +0000222 ASN_DEBUG("End of SEQUENCE %s", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000223 /*
224 * Found the legitimate end of the structure.
225 */
226 PHASE_OUT(ctx);
227 RETURN(RC_OK);
228 }
229
230 /*
231 * Fetch the T from TLV.
232 */
233 tag_len = ber_fetch_tag(ptr, LEFT, &tlv_tag);
Lev Walkin906654e2004-09-10 15:49:15 +0000234 ASN_DEBUG("Current tag in %s SEQUENCE for element %d "
Lev Walkincc6a9102004-09-23 22:06:26 +0000235 "(%s) is %s encoded in %d bytes, of frame %ld",
Lev Walkin906654e2004-09-10 15:49:15 +0000236 td->name, edx, elements[edx].name,
237 ber_tlv_tag_string(tlv_tag), (int)tag_len, (long)LEFT);
Lev Walkinf15320b2004-06-03 03:38:44 +0000238 switch(tag_len) {
239 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
240 /* Fall through */
241 case -1: RETURN(RC_FAIL);
242 }
243
Lev Walkin8c3b8542005-03-10 18:52:02 +0000244 if(ctx->left < 0 && ((const uint8_t *)ptr)[0] == 0) {
Lev Walkin566a5672004-10-05 06:36:57 +0000245 if(LEFT < 2) {
246 if(SIZE_VIOLATION)
247 RETURN(RC_FAIL);
248 else
249 RETURN(RC_WMORE);
Lev Walkin8c3b8542005-03-10 18:52:02 +0000250 } else if(((const uint8_t *)ptr)[1] == 0) {
Lev Walkin494fb702017-08-07 20:07:00 -0700251 ASN_DEBUG("edx = %zu, opt = %d, ec=%d",
Lev Walkin566a5672004-10-05 06:36:57 +0000252 edx, elements[edx].optional,
253 td->elements_count);
254 if((edx + elements[edx].optional
255 == td->elements_count)
256 || (IN_EXTENSION_GROUP(specs, edx)
257 && specs->ext_before
Lev Walkin494fb702017-08-07 20:07:00 -0700258 > (signed)td->elements_count)) {
Lev Walkin566a5672004-10-05 06:36:57 +0000259 /*
260 * Yeah, baby! Found the terminator
261 * of the indefinite length structure.
262 */
263 /*
264 * Proceed to the canonical
265 * finalization function.
266 * No advancing is necessary.
267 */
268 goto phase3;
269 }
270 }
271 }
272
Lev Walkinf15320b2004-06-03 03:38:44 +0000273 /*
274 * Find the next available type with this tag.
275 */
Lev Walkin4c36e302004-06-06 07:20:02 +0000276 use_bsearch = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000277 opt_edx_end = edx + elements[edx].optional + 1;
Lev Walkin449f8322004-08-20 13:23:42 +0000278 if(opt_edx_end > td->elements_count)
279 opt_edx_end = td->elements_count; /* Cap */
Lev Walkinf9dbd9a2004-07-01 00:48:04 +0000280 else if(opt_edx_end - edx > 8) {
Lev Walkin924fa032004-06-14 13:42:23 +0000281 /* Limit the scope of linear search... */
Lev Walkinf9dbd9a2004-07-01 00:48:04 +0000282 opt_edx_end = edx + 8;
Lev Walkin4c36e302004-06-06 07:20:02 +0000283 use_bsearch = 1;
Lev Walkin924fa032004-06-14 13:42:23 +0000284 /* ... and resort to bsearch() */
Lev Walkin4c36e302004-06-06 07:20:02 +0000285 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000286 for(n = edx; n < opt_edx_end; n++) {
287 if(BER_TAGS_EQUAL(tlv_tag, elements[n].tag)) {
288 /*
289 * Found element corresponding to the tag
290 * being looked at.
291 * Reposition over the right element.
292 */
293 edx = n;
Lev Walkin4c36e302004-06-06 07:20:02 +0000294 ctx->step = 1 + 2 * edx; /* Remember! */
295 goto microphase2;
Lev Walkinb9189732004-09-10 09:37:12 +0000296 } else if(elements[n].flags & ATF_OPEN_TYPE) {
297 /*
298 * This is the ANY type, which may bear
299 * any flag whatsoever.
300 */
301 edx = n;
302 ctx->step = 1 + 2 * edx; /* Remember! */
303 goto microphase2;
Lev Walkin4c36e302004-06-06 07:20:02 +0000304 } else if(elements[n].tag == (ber_tlv_tag_t)-1) {
305 use_bsearch = 1;
Lev Walkinf15320b2004-06-03 03:38:44 +0000306 break;
307 }
308 }
Lev Walkin4c36e302004-06-06 07:20:02 +0000309 if(use_bsearch) {
310 /*
Lev Walkin4e0704f2004-09-04 06:17:35 +0000311 * Resort to a binary search over
Lev Walkin4c36e302004-06-06 07:20:02 +0000312 * sorted array of tags.
313 */
Wim Lewisfb6344e2014-07-28 12:16:01 -0700314 const asn_TYPE_tag2member_t *t2m;
Lev Walkin5e033762004-09-29 13:26:15 +0000315 asn_TYPE_tag2member_t key;
Lev Walkin4c36e302004-06-06 07:20:02 +0000316 key.el_tag = tlv_tag;
Lev Walkin924fa032004-06-14 13:42:23 +0000317 key.el_no = edx;
Wim Lewisfb6344e2014-07-28 12:16:01 -0700318 t2m = (const asn_TYPE_tag2member_t *)bsearch(&key,
Lev Walkinc2346572004-08-11 09:07:36 +0000319 specs->tag2el, specs->tag2el_count,
Lev Walkin4c36e302004-06-06 07:20:02 +0000320 sizeof(specs->tag2el[0]), _t2e_cmp);
Lev Walkin924fa032004-06-14 13:42:23 +0000321 if(t2m) {
Wim Lewisfb6344e2014-07-28 12:16:01 -0700322 const asn_TYPE_tag2member_t *best = 0;
323 const asn_TYPE_tag2member_t *t2m_f, *t2m_l;
Lev Walkin494fb702017-08-07 20:07:00 -0700324 size_t edx_max = edx + elements[edx].optional;
Lev Walkin4c36e302004-06-06 07:20:02 +0000325 /*
326 * Rewind to the first element with that tag,
327 * `cause bsearch() does not guarantee order.
328 */
Lev Walkin924fa032004-06-14 13:42:23 +0000329 t2m_f = t2m + t2m->toff_first;
330 t2m_l = t2m + t2m->toff_last;
331 for(t2m = t2m_f; t2m <= t2m_l; t2m++) {
332 if(t2m->el_no > edx_max) break;
333 if(t2m->el_no < edx) continue;
334 best = t2m;
335 }
336 if(best) {
337 edx = best->el_no;
338 ctx->step = 1 + 2 * edx;
339 goto microphase2;
340 }
Lev Walkin4c36e302004-06-06 07:20:02 +0000341 }
342 n = opt_edx_end;
343 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000344 if(n == opt_edx_end) {
345 /*
346 * If tag is unknown, it may be either
347 * an unknown (thus, incorrect) tag,
348 * or an extension (...),
349 * or an end of the indefinite-length structure.
350 */
Lev Walkin7cbbc902006-10-03 06:39:36 +0000351 if(!IN_EXTENSION_GROUP(specs,
352 edx + elements[edx].optional)) {
Lev Walkin566a5672004-10-05 06:36:57 +0000353 ASN_DEBUG("Unexpected tag %s (at %d)",
354 ber_tlv_tag_string(tlv_tag), edx);
Lev Walkin4c36e302004-06-06 07:20:02 +0000355 ASN_DEBUG("Expected tag %s (%s)%s",
Lev Walkinf15320b2004-06-03 03:38:44 +0000356 ber_tlv_tag_string(elements[edx].tag),
Lev Walkin4c36e302004-06-06 07:20:02 +0000357 elements[edx].name,
Lev Walkinf15320b2004-06-03 03:38:44 +0000358 elements[edx].optional
359 ?" or alternatives":"");
360 RETURN(RC_FAIL);
Lev Walkinf15320b2004-06-03 03:38:44 +0000361 } else {
362 /* Skip this tag */
363 ssize_t skip;
Lev Walkin7cbbc902006-10-03 06:39:36 +0000364 edx += elements[edx].optional;
Lev Walkinf15320b2004-06-03 03:38:44 +0000365
Lev Walkin7cbbc902006-10-03 06:39:36 +0000366 ASN_DEBUG("Skipping unexpected %s (at %d)",
367 ber_tlv_tag_string(tlv_tag), edx);
Lev Walkinbaaa24f2004-09-29 14:19:14 +0000368 skip = ber_skip_length(opt_codec_ctx,
Lev Walkinf15320b2004-06-03 03:38:44 +0000369 BER_TLV_CONSTRUCTED(ptr),
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800370 (const char *)ptr + tag_len,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000371 LEFT - tag_len);
Lev Walkinf15320b2004-06-03 03:38:44 +0000372 ASN_DEBUG("Skip length %d in %s",
Lev Walkin449f8322004-08-20 13:23:42 +0000373 (int)skip, td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000374 switch(skip) {
375 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
376 /* Fall through */
377 case -1: RETURN(RC_FAIL);
378 }
379
380 ADVANCE(skip + tag_len);
381 ctx->step -= 2;
382 edx--;
383 continue; /* Try again with the next tag */
384 }
385 }
386
387 /*
388 * MICROPHASE 2: Invoke the member-specific decoder.
389 */
390 ctx->step |= 1; /* Confirm entering next microphase */
391 microphase2:
Lev Walkin449f8322004-08-20 13:23:42 +0000392 ASN_DEBUG("Inside SEQUENCE %s MF2", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000393
394 /*
395 * Compute the position of the member inside a structure,
396 * and also a type of containment (it may be contained
397 * as pointer or using inline inclusion).
398 */
Lev Walkincc93b0f2004-09-10 09:18:20 +0000399 if(elements[edx].flags & ATF_POINTER) {
400 /* Member is a pointer to another structure */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800401 memb_ptr2 = (void **)((char *)st + elements[edx].memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000402 } else {
403 /*
404 * A pointer to a pointer
405 * holding the start of the structure
406 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800407 memb_ptr = (char *)st + elements[edx].memb_offset;
Lev Walkinf15320b2004-06-03 03:38:44 +0000408 memb_ptr2 = &memb_ptr;
409 }
410 /*
411 * Invoke the member fetch routine according to member's type
412 */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800413 rval = elements[edx].type->op->ber_decoder(opt_codec_ctx,
Lev Walkinc2346572004-08-11 09:07:36 +0000414 elements[edx].type,
Lev Walkinf15320b2004-06-03 03:38:44 +0000415 memb_ptr2, ptr, LEFT,
416 elements[edx].tag_mode);
Lev Walkin60b7cff2004-09-04 04:44:11 +0000417 ASN_DEBUG("In %s SEQUENCE decoded %d %s of %d "
Lev Walkin5beb7de2004-09-24 20:59:27 +0000418 "in %d bytes rval.code %d, size=%d",
Lev Walkin449f8322004-08-20 13:23:42 +0000419 td->name, edx, elements[edx].type->name,
Lev Walkin5beb7de2004-09-24 20:59:27 +0000420 (int)LEFT, (int)rval.consumed, rval.code, (int)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000421 switch(rval.code) {
422 case RC_OK:
423 break;
424 case RC_WMORE: /* More data expected */
425 if(!SIZE_VIOLATION) {
426 ADVANCE(rval.consumed);
427 RETURN(RC_WMORE);
428 }
Lev Walkin5beb7de2004-09-24 20:59:27 +0000429 ASN_DEBUG("Size violation (c->l=%ld <= s=%ld)",
430 (long)ctx->left, (long)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000431 /* Fall through */
432 case RC_FAIL: /* Fatal error */
433 RETURN(RC_FAIL);
434 } /* switch(rval) */
435
436 ADVANCE(rval.consumed);
437 } /* for(all structure members) */
438
439 phase3:
440 ctx->phase = 3;
441 case 3: /* 00 and other tags expected */
442 case 4: /* only 00's expected */
443
444 ASN_DEBUG("SEQUENCE %s Leftover: %ld, size = %ld",
Lev Walkin449f8322004-08-20 13:23:42 +0000445 td->name, (long)ctx->left, (long)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000446
447 /*
448 * Skip everything until the end of the SEQUENCE.
449 */
450 while(ctx->left) {
451 ssize_t tl, ll;
452
453 tl = ber_fetch_tag(ptr, LEFT, &tlv_tag);
454 switch(tl) {
455 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
456 /* Fall through */
457 case -1: RETURN(RC_FAIL);
458 }
459
460 /*
461 * If expected <0><0>...
462 */
463 if(ctx->left < 0
Lev Walkin8c3b8542005-03-10 18:52:02 +0000464 && ((const uint8_t *)ptr)[0] == 0) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000465 if(LEFT < 2) {
466 if(SIZE_VIOLATION)
467 RETURN(RC_FAIL);
468 else
469 RETURN(RC_WMORE);
Lev Walkin8c3b8542005-03-10 18:52:02 +0000470 } else if(((const uint8_t *)ptr)[1] == 0) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000471 /*
472 * Correctly finished with <0><0>.
473 */
474 ADVANCE(2);
475 ctx->left++;
476 ctx->phase = 4;
477 continue;
478 }
479 }
480
Lev Walkin449f8322004-08-20 13:23:42 +0000481 if(!IN_EXTENSION_GROUP(specs, td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000482 || ctx->phase == 4) {
483 ASN_DEBUG("Unexpected continuation "
484 "of a non-extensible type "
485 "%s (SEQUENCE): %s",
Lev Walkin449f8322004-08-20 13:23:42 +0000486 td->name,
Lev Walkinf15320b2004-06-03 03:38:44 +0000487 ber_tlv_tag_string(tlv_tag));
488 RETURN(RC_FAIL);
489 }
490
Lev Walkinbaaa24f2004-09-29 14:19:14 +0000491 ll = ber_skip_length(opt_codec_ctx,
Lev Walkinf15320b2004-06-03 03:38:44 +0000492 BER_TLV_CONSTRUCTED(ptr),
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800493 (const char *)ptr + tl, LEFT - tl);
Lev Walkinf15320b2004-06-03 03:38:44 +0000494 switch(ll) {
495 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
496 /* Fall through */
497 case -1: RETURN(RC_FAIL);
498 }
499
500 ADVANCE(tl + ll);
501 }
502
503 PHASE_OUT(ctx);
504 }
505
506 RETURN(RC_OK);
507}
508
Lev Walkin4c36e302004-06-06 07:20:02 +0000509
Lev Walkinf15320b2004-06-03 03:38:44 +0000510/*
511 * The DER encoder of the SEQUENCE type.
512 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000513asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000514SEQUENCE_encode_der(asn_TYPE_descriptor_t *td,
Lev Walkinac589332005-08-22 14:19:28 +0000515 void *sptr, int tag_mode, ber_tlv_tag_t tag,
Lev Walkinf15320b2004-06-03 03:38:44 +0000516 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000517 size_t computed_size = 0;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000518 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000519 ssize_t ret;
Lev Walkin494fb702017-08-07 20:07:00 -0700520 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000521
522 ASN_DEBUG("%s %s as SEQUENCE",
Lev Walkin449f8322004-08-20 13:23:42 +0000523 cb?"Encoding":"Estimating", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000524
525 /*
526 * Gather the length of the underlying members sequence.
527 */
Lev Walkin449f8322004-08-20 13:23:42 +0000528 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000529 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +0000530 void *memb_ptr;
Lev Walkincc93b0f2004-09-10 09:18:20 +0000531 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800532 memb_ptr = *(void **)((char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +0000533 if(!memb_ptr) {
534 if(elm->optional) continue;
535 /* Mandatory element is missing */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700536 ASN__ENCODE_FAILED;
Lev Walkinac589332005-08-22 14:19:28 +0000537 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000538 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800539 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000540 }
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800541 erval = elm->type->op->der_encoder(elm->type, memb_ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000542 elm->tag_mode, elm->tag,
543 0, 0);
544 if(erval.encoded == -1)
545 return erval;
546 computed_size += erval.encoded;
547 ASN_DEBUG("Member %d %s estimated %ld bytes",
548 edx, elm->name, (long)erval.encoded);
549 }
550
551 /*
552 * Encode the TLV for the sequence itself.
553 */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000554 ret = der_write_tags(td, computed_size, tag_mode, 1, tag, cb, app_key);
Lev Walkinf15320b2004-06-03 03:38:44 +0000555 ASN_DEBUG("Wrote tags: %ld (+%ld)", (long)ret, (long)computed_size);
Lev Walkinac589332005-08-22 14:19:28 +0000556 if(ret == -1)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700557 ASN__ENCODE_FAILED;
Lev Walkinf15320b2004-06-03 03:38:44 +0000558 erval.encoded = computed_size + ret;
559
Lev Walkin7c1dc052016-03-14 03:08:15 -0700560 if(!cb) ASN__ENCODED_OK(erval);
Lev Walkinf15320b2004-06-03 03:38:44 +0000561
562 /*
563 * Encode all members.
564 */
Lev Walkin449f8322004-08-20 13:23:42 +0000565 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000566 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkina9cc46e2004-09-22 16:06:28 +0000567 asn_enc_rval_t tmperval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000568 void *memb_ptr;
569
Lev Walkincc93b0f2004-09-10 09:18:20 +0000570 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800571 memb_ptr = *(void **)((char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000572 if(!memb_ptr) continue;
573 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800574 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000575 }
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800576 tmperval = elm->type->op->der_encoder(elm->type, memb_ptr,
Lev Walkinf15320b2004-06-03 03:38:44 +0000577 elm->tag_mode, elm->tag,
578 cb, app_key);
579 if(tmperval.encoded == -1)
580 return tmperval;
581 computed_size -= tmperval.encoded;
Lev Walkina6a926a2005-03-02 01:54:28 +0000582 ASN_DEBUG("Member %d %s of SEQUENCE %s encoded in %ld bytes",
583 edx, elm->name, td->name, (long)tmperval.encoded);
Lev Walkinf15320b2004-06-03 03:38:44 +0000584 }
585
Lev Walkinac589332005-08-22 14:19:28 +0000586 if(computed_size != 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000587 /*
588 * Encoded size is not equal to the computed size.
589 */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700590 ASN__ENCODE_FAILED;
Lev Walkinf15320b2004-06-03 03:38:44 +0000591
Lev Walkin7c1dc052016-03-14 03:08:15 -0700592 ASN__ENCODED_OK(erval);
Lev Walkinf15320b2004-06-03 03:38:44 +0000593}
594
Lev Walkinc61f3862005-02-14 17:21:22 +0000595
Lev Walkin1bbc2002004-10-23 13:27:30 +0000596#undef XER_ADVANCE
597#define XER_ADVANCE(num_bytes) do { \
598 size_t num = num_bytes; \
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800599 buf_ptr = ((const char *)buf_ptr) + num;\
Lev Walkin1bbc2002004-10-23 13:27:30 +0000600 size -= num; \
601 consumed_myself += num; \
602 } while(0)
603
Lev Walkinc61f3862005-02-14 17:21:22 +0000604/*
605 * Decode the XER (XML) data.
606 */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000607asn_dec_rval_t
608SEQUENCE_decode_xer(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
609 void **struct_ptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000610 const void *buf_ptr, size_t size) {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000611 /*
612 * Bring closer parts of structure description.
613 */
Lev Walkinc61f3862005-02-14 17:21:22 +0000614 asn_SEQUENCE_specifics_t *specs
615 = (asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000616 asn_TYPE_member_t *elements = td->elements;
617 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
618
619 /*
Lev Walkinc61f3862005-02-14 17:21:22 +0000620 * ... and parts of the structure being constructed.
Lev Walkin1bbc2002004-10-23 13:27:30 +0000621 */
622 void *st = *struct_ptr; /* Target structure. */
623 asn_struct_ctx_t *ctx; /* Decoder context */
624
Lev Walkinc61f3862005-02-14 17:21:22 +0000625 asn_dec_rval_t rval; /* Return value from a decoder */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000626 ssize_t consumed_myself = 0; /* Consumed bytes from ptr */
Lev Walkin494fb702017-08-07 20:07:00 -0700627 size_t edx; /* Element index */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000628
629 /*
630 * Create the target structure if it is not present already.
631 */
632 if(st == 0) {
633 st = *struct_ptr = CALLOC(1, specs->struct_size);
634 if(st == 0) RETURN(RC_FAIL);
635 }
636
637 /*
638 * Restore parsing context.
639 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800640 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000641
642
643 /*
644 * Phases of XER/XML processing:
645 * Phase 0: Check that the opening tag matches our expectations.
646 * Phase 1: Processing body and reacting on closing tag.
647 * Phase 2: Processing inner type.
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000648 * Phase 3: Skipping unknown extensions.
649 * Phase 4: PHASED OUT
Lev Walkin1bbc2002004-10-23 13:27:30 +0000650 */
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000651 for(edx = ctx->step; ctx->phase <= 3;) {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000652 pxer_chunk_type_e ch_type; /* XER chunk type */
653 ssize_t ch_size; /* Chunk size */
654 xer_check_tag_e tcv; /* Tag check value */
655 asn_TYPE_member_t *elm;
656
657 /*
Lev Walkinc61f3862005-02-14 17:21:22 +0000658 * Go inside the inner member of a sequence.
Lev Walkin1bbc2002004-10-23 13:27:30 +0000659 */
660 if(ctx->phase == 2) {
661 asn_dec_rval_t tmprval;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000662 void *memb_ptr; /* Pointer to the member */
663 void **memb_ptr2; /* Pointer to that pointer */
664
Lev Walkinabf68892004-10-26 10:12:14 +0000665 elm = &td->elements[edx];
666
Lev Walkin1bbc2002004-10-23 13:27:30 +0000667 if(elm->flags & ATF_POINTER) {
668 /* Member is a pointer to another structure */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800669 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000670 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800671 memb_ptr = (char *)st + elm->memb_offset;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000672 memb_ptr2 = &memb_ptr;
673 }
674
Lev Walkinc61f3862005-02-14 17:21:22 +0000675 /* Invoke the inner type decoder, m.b. multiple times */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800676 tmprval = elm->type->op->xer_decoder(opt_codec_ctx,
Lev Walkin1bbc2002004-10-23 13:27:30 +0000677 elm->type, memb_ptr2, elm->name,
678 buf_ptr, size);
679 XER_ADVANCE(tmprval.consumed);
680 if(tmprval.code != RC_OK)
681 RETURN(tmprval.code);
Lev Walkinc61f3862005-02-14 17:21:22 +0000682 ctx->phase = 1; /* Back to body processing */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000683 ctx->step = ++edx;
Lev Walkinc61f3862005-02-14 17:21:22 +0000684 ASN_DEBUG("XER/SEQUENCE phase => %d, step => %d",
685 ctx->phase, ctx->step);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000686 /* Fall through */
687 }
688
689 /*
690 * Get the next part of the XML stream.
691 */
Lev Walkin1e443962005-02-18 18:06:36 +0000692 ch_size = xer_next_token(&ctx->context, buf_ptr, size,
693 &ch_type);
Lev Walkin97363482016-01-24 19:23:02 -0800694 if(ch_size == -1) {
695 RETURN(RC_FAIL);
696 } else {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000697 switch(ch_type) {
Lev Walkin97363482016-01-24 19:23:02 -0800698 case PXER_WMORE:
699 RETURN(RC_WMORE);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000700 case PXER_COMMENT: /* Got XML comment */
701 case PXER_TEXT: /* Ignore free-standing text */
702 XER_ADVANCE(ch_size); /* Skip silently */
703 continue;
704 case PXER_TAG:
705 break; /* Check the rest down there */
706 }
707 }
708
Lev Walkinc61f3862005-02-14 17:21:22 +0000709 tcv = xer_check_tag(buf_ptr, ch_size, xml_tag);
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000710 ASN_DEBUG("XER/SEQUENCE: tcv = %d, ph=%d [%s]",
711 tcv, ctx->phase, xml_tag);
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000712
713 /* Skip the extensions section */
714 if(ctx->phase == 3) {
715 switch(xer_skip_unknown(tcv, &ctx->left)) {
716 case -1:
717 ctx->phase = 4;
718 RETURN(RC_FAIL);
719 case 0:
720 XER_ADVANCE(ch_size);
721 continue;
722 case 1:
723 XER_ADVANCE(ch_size);
724 ctx->phase = 1;
725 continue;
726 case 2:
727 ctx->phase = 1;
728 break;
729 }
730 }
731
Lev Walkin1bbc2002004-10-23 13:27:30 +0000732 switch(tcv) {
733 case XCT_CLOSING:
734 if(ctx->phase == 0) break;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000735 ctx->phase = 0;
736 /* Fall through */
737 case XCT_BOTH:
738 if(ctx->phase == 0) {
739 if(edx >= td->elements_count
740 ||
741 /* Explicit OPTIONAL specs reaches the end */
742 (edx + elements[edx].optional
743 == td->elements_count)
744 ||
745 /* All extensions are optional */
746 (IN_EXTENSION_GROUP(specs, edx)
747 && specs->ext_before
Lev Walkin494fb702017-08-07 20:07:00 -0700748 > (signed)td->elements_count)
Lev Walkin1bbc2002004-10-23 13:27:30 +0000749 ) {
750 XER_ADVANCE(ch_size);
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000751 ctx->phase = 4; /* Phase out */
Lev Walkinc61f3862005-02-14 17:21:22 +0000752 RETURN(RC_OK);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000753 } else {
754 ASN_DEBUG("Premature end of XER SEQUENCE");
755 RETURN(RC_FAIL);
756 }
757 }
758 /* Fall through */
759 case XCT_OPENING:
760 if(ctx->phase == 0) {
761 XER_ADVANCE(ch_size);
762 ctx->phase = 1; /* Processing body phase */
763 continue;
764 }
Lev Walkinda3ca412004-10-23 14:58:15 +0000765 /* Fall through */
Lev Walkin904e65b2005-02-18 14:23:48 +0000766 case XCT_UNKNOWN_OP:
767 case XCT_UNKNOWN_BO:
Lev Walkin1bbc2002004-10-23 13:27:30 +0000768
Lev Walkin02666192005-07-03 05:31:02 +0000769 ASN_DEBUG("XER/SEQUENCE: tcv=%d, ph=%d, edx=%d",
770 tcv, ctx->phase, edx);
771 if(ctx->phase != 1) {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000772 break; /* Really unexpected */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000773 }
Lev Walkin02666192005-07-03 05:31:02 +0000774
775 if(edx < td->elements_count) {
776 /*
777 * Search which member corresponds to this tag.
778 */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800779 size_t n;
780 size_t edx_end = edx + elements[edx].optional + 1;
Lev Walkin02666192005-07-03 05:31:02 +0000781 if(edx_end > td->elements_count)
782 edx_end = td->elements_count;
783 for(n = edx; n < edx_end; n++) {
784 elm = &td->elements[n];
785 tcv = xer_check_tag(buf_ptr,
786 ch_size, elm->name);
787 switch(tcv) {
788 case XCT_BOTH:
789 case XCT_OPENING:
790 /*
791 * Process this member.
792 */
793 ctx->step = edx = n;
794 ctx->phase = 2;
795 break;
796 case XCT_UNKNOWN_OP:
797 case XCT_UNKNOWN_BO:
798 continue;
799 default:
800 n = edx_end;
801 break; /* Phase out */
802 }
803 break;
804 }
805 if(n != edx_end)
806 continue;
807 } else {
808 ASN_DEBUG("Out of defined members: %d/%d",
809 edx, td->elements_count);
810 }
Lev Walkin904e65b2005-02-18 14:23:48 +0000811
812 /* It is expected extension */
813 if(IN_EXTENSION_GROUP(specs,
Lev Walkin02666192005-07-03 05:31:02 +0000814 edx + (edx < td->elements_count
815 ? elements[edx].optional : 0))) {
816 ASN_DEBUG("Got anticipated extension at %d",
817 edx);
Lev Walkin904e65b2005-02-18 14:23:48 +0000818 /*
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000819 * Check for (XCT_BOTH or XCT_UNKNOWN_BO)
820 * By using a mask. Only record a pure
821 * <opening> tags.
Lev Walkin904e65b2005-02-18 14:23:48 +0000822 */
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000823 if(tcv & XCT_CLOSING) {
824 /* Found </extension> without body */
825 } else {
826 ctx->left = 1;
827 ctx->phase = 3; /* Skip ...'s */
828 }
829 XER_ADVANCE(ch_size);
830 continue;
Lev Walkin904e65b2005-02-18 14:23:48 +0000831 }
832
833 /* Fall through */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000834 default:
835 break;
836 }
837
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000838 ASN_DEBUG("Unexpected XML tag in SEQUENCE [%c%c%c%c%c%c]",
839 size>0?((const char *)buf_ptr)[0]:'.',
840 size>1?((const char *)buf_ptr)[1]:'.',
841 size>2?((const char *)buf_ptr)[2]:'.',
842 size>3?((const char *)buf_ptr)[3]:'.',
843 size>4?((const char *)buf_ptr)[4]:'.',
844 size>5?((const char *)buf_ptr)[5]:'.');
Lev Walkin1bbc2002004-10-23 13:27:30 +0000845 break;
846 }
847
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000848 ctx->phase = 4; /* "Phase out" on hard failure */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000849 RETURN(RC_FAIL);
850}
851
Lev Walkina9cc46e2004-09-22 16:06:28 +0000852asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000853SEQUENCE_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000854 int ilevel, enum xer_encoder_flags_e flags,
855 asn_app_consume_bytes_f *cb, void *app_key) {
856 asn_enc_rval_t er;
857 int xcan = (flags & XER_F_CANONICAL);
Lev Walkin494fb702017-08-07 20:07:00 -0700858 size_t edx;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000859
860 if(!sptr)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700861 ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000862
863 er.encoded = 0;
864
865 for(edx = 0; edx < td->elements_count; edx++) {
866 asn_enc_rval_t tmper;
Lev Walkin5e033762004-09-29 13:26:15 +0000867 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkina9cc46e2004-09-22 16:06:28 +0000868 void *memb_ptr;
869 const char *mname = elm->name;
870 unsigned int mlen = strlen(mname);
871
872 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800873 memb_ptr = *(void **)((char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +0000874 if(!memb_ptr) {
875 if(elm->optional)
876 continue;
877 /* Mandatory element is missing */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700878 ASN__ENCODE_FAILED;
Lev Walkinac589332005-08-22 14:19:28 +0000879 }
Lev Walkina9cc46e2004-09-22 16:06:28 +0000880 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800881 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000882 }
883
Lev Walkinc6cac8e2016-03-14 02:57:07 -0700884 if(!xcan) ASN__TEXT_INDENT(1, ilevel);
Lev Walkin7c1dc052016-03-14 03:08:15 -0700885 ASN__CALLBACK3("<", 1, mname, mlen, ">", 1);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000886
887 /* Print the member itself */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800888 tmper = elm->type->op->xer_encoder(elm->type, memb_ptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000889 ilevel + 1, flags, cb, app_key);
890 if(tmper.encoded == -1) return tmper;
891
Lev Walkin7c1dc052016-03-14 03:08:15 -0700892 ASN__CALLBACK3("</", 2, mname, mlen, ">", 1);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000893 er.encoded += 5 + (2 * mlen) + tmper.encoded;
894 }
895
Lev Walkinc6cac8e2016-03-14 02:57:07 -0700896 if(!xcan) ASN__TEXT_INDENT(1, ilevel - 1);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000897
Lev Walkin7c1dc052016-03-14 03:08:15 -0700898 ASN__ENCODED_OK(er);
Lev Walkin942fd082004-10-03 09:13:02 +0000899cb_failed:
Lev Walkin7c1dc052016-03-14 03:08:15 -0700900 ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000901}
902
Lev Walkinf15320b2004-06-03 03:38:44 +0000903int
Lev Walkin5e033762004-09-29 13:26:15 +0000904SEQUENCE_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000905 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin494fb702017-08-07 20:07:00 -0700906 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000907 int ret;
908
Lev Walkin8e8078a2004-09-26 13:10:40 +0000909 if(!sptr) return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000910
911 /* Dump preamble */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000912 if(cb(td->name, strlen(td->name), app_key) < 0
913 || cb(" ::= {", 6, app_key) < 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000914 return -1;
915
Lev Walkin449f8322004-08-20 13:23:42 +0000916 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000917 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +0000918 const void *memb_ptr;
919
Lev Walkincc93b0f2004-09-10 09:18:20 +0000920 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800921 memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +0000922 if(!memb_ptr) {
923 if(elm->optional) continue;
924 /* Print <absent> line */
925 /* Fall through */
926 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000927 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800928 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000929 }
930
931 /* Indentation */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000932 _i_INDENT(1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000933
934 /* Print the member's name and stuff */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000935 if(cb(elm->name, strlen(elm->name), app_key) < 0
936 || cb(": ", 2, app_key) < 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000937 return -1;
938
939 /* Print the member itself */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800940 ret = elm->type->op->print_struct(elm->type, memb_ptr, ilevel + 1,
Lev Walkinf15320b2004-06-03 03:38:44 +0000941 cb, app_key);
942 if(ret) return ret;
Lev Walkinf15320b2004-06-03 03:38:44 +0000943 }
944
Lev Walkin8e8078a2004-09-26 13:10:40 +0000945 ilevel--;
946 _i_INDENT(1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000947
Lev Walkin8e8078a2004-09-26 13:10:40 +0000948 return (cb("}", 1, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000949}
950
951void
Lev Walkin8d99d7b2017-08-25 01:06:00 -0700952SEQUENCE_free(const asn_TYPE_descriptor_t *td, void *sptr,
953 enum asn_struct_free_method method) {
Lev Walkinf6853ce2017-08-11 00:50:27 -0700954 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000955
956 if(!td || !sptr)
957 return;
958
959 ASN_DEBUG("Freeing %s as SEQUENCE", td->name);
960
Lev Walkin449f8322004-08-20 13:23:42 +0000961 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000962 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +0000963 void *memb_ptr;
Lev Walkincc93b0f2004-09-10 09:18:20 +0000964 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800965 memb_ptr = *(void **)((char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000966 if(memb_ptr)
Lev Walkinadcb5862006-03-17 02:11:12 +0000967 ASN_STRUCT_FREE(*elm->type, memb_ptr);
Lev Walkinf15320b2004-06-03 03:38:44 +0000968 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800969 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkinadcb5862006-03-17 02:11:12 +0000970 ASN_STRUCT_FREE_CONTENTS_ONLY(*elm->type, memb_ptr);
Lev Walkinf15320b2004-06-03 03:38:44 +0000971 }
972 }
973
Lev Walkin8d99d7b2017-08-25 01:06:00 -0700974 switch(method) {
975 case ASFM_FREE_EVERYTHING:
976 FREEMEM(sptr);
977 break;
978 case ASFM_FREE_UNDERLYING:
979 break;
980 case ASFM_FREE_UNDERLYING_AND_RESET:
981 memset(sptr, 0,
982 ((asn_SEQUENCE_specifics_t *)(td->specifics))->struct_size);
983 break;
984 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000985}
986
987int
Lev Walkin5e033762004-09-29 13:26:15 +0000988SEQUENCE_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +0000989 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkin494fb702017-08-07 20:07:00 -0700990 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000991
992 if(!sptr) {
Lev Walkin7c1dc052016-03-14 03:08:15 -0700993 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +0000994 "%s: value not given (%s:%d)",
995 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +0000996 return -1;
997 }
998
999 /*
1000 * Iterate over structure members and check their validity.
1001 */
Lev Walkin449f8322004-08-20 13:23:42 +00001002 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +00001003 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +00001004 const void *memb_ptr;
1005
Lev Walkincc93b0f2004-09-10 09:18:20 +00001006 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001007 memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +00001008 if(!memb_ptr) {
1009 if(elm->optional)
1010 continue;
Lev Walkin7c1dc052016-03-14 03:08:15 -07001011 ASN__CTFAIL(app_key, td, sptr,
Lev Walkinac589332005-08-22 14:19:28 +00001012 "%s: mandatory element %s absent (%s:%d)",
1013 td->name, elm->name, __FILE__, __LINE__);
1014 return -1;
1015 }
Lev Walkinf15320b2004-06-03 03:38:44 +00001016 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001017 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +00001018 }
1019
Lev Walkin449f8322004-08-20 13:23:42 +00001020 if(elm->memb_constraints) {
1021 int ret = elm->memb_constraints(elm->type, memb_ptr,
Lev Walkin1eded352006-07-13 11:19:01 +00001022 ctfailcb, app_key);
Lev Walkin449f8322004-08-20 13:23:42 +00001023 if(ret) return ret;
1024 } else {
1025 int ret = elm->type->check_constraints(elm->type,
Lev Walkin1eded352006-07-13 11:19:01 +00001026 memb_ptr, ctfailcb, app_key);
Lev Walkin449f8322004-08-20 13:23:42 +00001027 if(ret) return ret;
1028 /*
1029 * Cannot inherit it earlier:
1030 * need to make sure we get the updated version.
1031 */
1032 elm->memb_constraints = elm->type->check_constraints;
1033 }
Lev Walkinf15320b2004-06-03 03:38:44 +00001034 }
1035
1036 return 0;
1037}
Lev Walkin59b176e2005-11-26 11:25:14 +00001038
1039asn_dec_rval_t
1040SEQUENCE_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -07001041 const asn_per_constraints_t *constraints, void **sptr,
1042 asn_per_data_t *pd) {
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001043 asn_SEQUENCE_specifics_t *specs = (asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin59b176e2005-11-26 11:25:14 +00001044 void *st = *sptr; /* Target structure. */
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001045 int extpresent; /* Extension additions are present */
Lev Walkin59b176e2005-11-26 11:25:14 +00001046 uint8_t *opres; /* Presence of optional root members */
1047 asn_per_data_t opmd;
1048 asn_dec_rval_t rv;
Lev Walkin494fb702017-08-07 20:07:00 -07001049 size_t edx;
Lev Walkin59b176e2005-11-26 11:25:14 +00001050
1051 (void)constraints;
1052
Lev Walkin7c1dc052016-03-14 03:08:15 -07001053 if(ASN__STACK_OVERFLOW_CHECK(opt_codec_ctx))
1054 ASN__DECODE_FAILED;
Lev Walkin1d9e8dd2005-12-07 05:46:03 +00001055
Lev Walkin59b176e2005-11-26 11:25:14 +00001056 if(!st) {
1057 st = *sptr = CALLOC(1, specs->struct_size);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001058 if(!st) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001059 }
1060
1061 ASN_DEBUG("Decoding %s as SEQUENCE (UPER)", td->name);
1062
1063 /* Handle extensions */
1064 if(specs->ext_before >= 0) {
1065 extpresent = per_get_few_bits(pd, 1);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001066 if(extpresent < 0) ASN__DECODE_STARVED;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001067 } else {
1068 extpresent = 0;
Lev Walkin59b176e2005-11-26 11:25:14 +00001069 }
1070
1071 /* Prepare a place and read-in the presence bitmap */
Lev Walkin73a5cc62007-06-24 08:45:31 +00001072 memset(&opmd, 0, sizeof(opmd));
Lev Walkin59b176e2005-11-26 11:25:14 +00001073 if(specs->roms_count) {
1074 opres = (uint8_t *)MALLOC(((specs->roms_count + 7) >> 3) + 1);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001075 if(!opres) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001076 /* Get the presence map */
1077 if(per_get_many_bits(pd, opres, 0, specs->roms_count)) {
1078 FREEMEM(opres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001079 ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001080 }
1081 opmd.buffer = opres;
Lev Walkin59b176e2005-11-26 11:25:14 +00001082 opmd.nbits = specs->roms_count;
1083 ASN_DEBUG("Read in presence bitmap for %s of %d bits (%x..)",
1084 td->name, specs->roms_count, *opres);
1085 } else {
1086 opres = 0;
Lev Walkin59b176e2005-11-26 11:25:14 +00001087 }
1088
1089 /*
1090 * Get the sequence ROOT elements.
1091 */
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001092 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001093 asn_TYPE_member_t *elm = &td->elements[edx];
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001094 void *memb_ptr; /* Pointer to the member */
Lev Walkin59b176e2005-11-26 11:25:14 +00001095 void **memb_ptr2; /* Pointer to that pointer */
1096
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001097 if(IN_EXTENSION_GROUP(specs, edx))
1098 continue;
1099
Lev Walkin59b176e2005-11-26 11:25:14 +00001100 /* Fetch the pointer to this member */
1101 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001102 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin59b176e2005-11-26 11:25:14 +00001103 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001104 memb_ptr = (char *)st + elm->memb_offset;
Lev Walkin59b176e2005-11-26 11:25:14 +00001105 memb_ptr2 = &memb_ptr;
1106 }
1107
1108 /* Deal with optionality */
1109 if(elm->optional) {
1110 int present = per_get_few_bits(&opmd, 1);
1111 ASN_DEBUG("Member %s->%s is optional, p=%d (%d->%d)",
1112 td->name, elm->name, present,
1113 (int)opmd.nboff, (int)opmd.nbits);
1114 if(present == 0) {
1115 /* This element is not present */
1116 if(elm->default_value) {
1117 /* Fill-in DEFAULT */
Lev Walkin523de9e2006-08-18 01:34:18 +00001118 if(elm->default_value(1, memb_ptr2)) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001119 FREEMEM(opres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001120 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001121 }
Lev Walkin8032f7a2007-06-27 01:54:57 +00001122 ASN_DEBUG("Filled-in default");
Lev Walkin59b176e2005-11-26 11:25:14 +00001123 }
1124 /* The member is just not present */
1125 continue;
1126 }
1127 /* Fall through */
1128 }
1129
1130 /* Fetch the member from the stream */
Lev Walkinf6853ce2017-08-11 00:50:27 -07001131 ASN_DEBUG("Decoding member \"%s\" in %s", elm->name, td->name);
Lev Walkin9de6cd82017-08-10 05:47:46 -07001132
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001133 if((elm->flags & ATF_OPEN_TYPE) && elm->type_selector) {
1134 rv = OPEN_TYPE_uper_get(opt_codec_ctx, td, st, elm, pd);
1135 } else {
1136 rv = elm->type->op->uper_decoder(opt_codec_ctx, elm->type,
1137 elm->per_constraints, memb_ptr2, pd);
1138 }
1139 if(rv.code != RC_OK) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001140 ASN_DEBUG("Failed decode %s in %s",
1141 elm->name, td->name);
1142 FREEMEM(opres);
1143 return rv;
1144 }
1145 }
1146
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001147 /* Optionality map is not needed anymore */
1148 FREEMEM(opres);
1149
Lev Walkin59b176e2005-11-26 11:25:14 +00001150 /*
1151 * Deal with extensions.
1152 */
1153 if(extpresent) {
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001154 ssize_t bmlength;
1155 uint8_t *epres; /* Presence of extension members */
1156 asn_per_data_t epmd;
Lev Walkin59b176e2005-11-26 11:25:14 +00001157
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001158 bmlength = uper_get_nslength(pd);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001159 if(bmlength < 0) ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001160
Lev Walkinaaae9bf2010-10-24 16:56:30 -07001161 ASN_DEBUG("Extensions %ld present in %s", (long)bmlength, td->name);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001162
1163 epres = (uint8_t *)MALLOC((bmlength + 15) >> 3);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001164 if(!epres) ASN__DECODE_STARVED;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001165
1166 /* Get the extensions map */
Simo Sorcece71d912015-09-03 16:34:20 -04001167 if(per_get_many_bits(pd, epres, 0, bmlength)) {
1168 FREEMEM(epres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001169 ASN__DECODE_STARVED;
Simo Sorcece71d912015-09-03 16:34:20 -04001170 }
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001171
Lev Walkin73a5cc62007-06-24 08:45:31 +00001172 memset(&epmd, 0, sizeof(epmd));
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001173 epmd.buffer = epres;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001174 epmd.nbits = bmlength;
Lev Walkinaaae9bf2010-10-24 16:56:30 -07001175 ASN_DEBUG("Read in extensions bitmap for %s of %ld bits (%x..)",
1176 td->name, (long)bmlength, *epres);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001177
1178 /* Go over extensions and read them in */
1179 for(edx = specs->ext_after + 1; edx < td->elements_count; edx++) {
1180 asn_TYPE_member_t *elm = &td->elements[edx];
1181 void *memb_ptr; /* Pointer to the member */
1182 void **memb_ptr2; /* Pointer to that pointer */
1183 int present;
1184
1185 if(!IN_EXTENSION_GROUP(specs, edx)) {
1186 ASN_DEBUG("%d is not extension", edx);
1187 continue;
1188 }
1189
1190 /* Fetch the pointer to this member */
1191 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001192 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001193 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001194 memb_ptr = (void *)((char *)st + elm->memb_offset);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001195 memb_ptr2 = &memb_ptr;
1196 }
1197
1198 present = per_get_few_bits(&epmd, 1);
1199 if(present <= 0) {
1200 if(present < 0) break; /* No more extensions */
1201 continue;
1202 }
1203
1204 ASN_DEBUG("Decoding member %s in %s %p", elm->name, td->name, *memb_ptr2);
Lev Walkin9218bc12007-06-27 04:09:37 +00001205 rv = uper_open_type_get(opt_codec_ctx, elm->type,
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001206 elm->per_constraints, memb_ptr2, pd);
1207 if(rv.code != RC_OK) {
1208 FREEMEM(epres);
1209 return rv;
1210 }
1211 }
1212
1213 /* Skip over overflow extensions which aren't present
1214 * in this system's version of the protocol */
Lev Walkin06230f72007-06-26 09:52:44 +00001215 for(;;) {
Lev Walkina2987ea2007-06-26 23:56:54 +00001216 ASN_DEBUG("Getting overflow extensions");
Lev Walkin06230f72007-06-26 09:52:44 +00001217 switch(per_get_few_bits(&epmd, 1)) {
1218 case -1: break;
1219 case 0: continue;
1220 default:
Lev Walkin9218bc12007-06-27 04:09:37 +00001221 if(uper_open_type_skip(opt_codec_ctx, pd)) {
Lev Walkin06230f72007-06-26 09:52:44 +00001222 FREEMEM(epres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001223 ASN__DECODE_STARVED;
Lev Walkin06230f72007-06-26 09:52:44 +00001224 }
Lev Walkin59b176e2005-11-26 11:25:14 +00001225 }
Lev Walkin06230f72007-06-26 09:52:44 +00001226 break;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001227 }
Lev Walkin59b176e2005-11-26 11:25:14 +00001228
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001229 FREEMEM(epres);
1230 }
1231
1232 /* Fill DEFAULT members in extensions */
1233 for(edx = specs->roms_count; edx < specs->roms_count
1234 + specs->aoms_count; edx++) {
1235 asn_TYPE_member_t *elm = &td->elements[edx];
1236 void **memb_ptr2; /* Pointer to member pointer */
1237
1238 if(!elm->default_value) continue;
1239
1240 /* Fetch the pointer to this member */
1241 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001242 memb_ptr2 = (void **)((char *)st
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001243 + elm->memb_offset);
1244 if(*memb_ptr2) continue;
1245 } else {
1246 continue; /* Extensions are all optionals */
1247 }
1248
1249 /* Set default value */
1250 if(elm->default_value(1, memb_ptr2)) {
Lev Walkin7c1dc052016-03-14 03:08:15 -07001251 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001252 }
1253 }
1254
1255 rv.consumed = 0;
1256 rv.code = RC_OK;
1257 return rv;
1258}
1259
Lev Walkin62258e22007-06-23 23:50:25 +00001260static int
1261SEQUENCE_handle_extensions(asn_TYPE_descriptor_t *td, void *sptr,
1262 asn_per_outp_t *po1, asn_per_outp_t *po2) {
1263 asn_SEQUENCE_specifics_t *specs
1264 = (asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001265 int exts_present = 0;
1266 int exts_count = 0;
Lev Walkin494fb702017-08-07 20:07:00 -07001267 size_t edx;
Lev Walkin62258e22007-06-23 23:50:25 +00001268
1269 if(specs->ext_before < 0)
1270 return 0;
1271
1272 /* Find out which extensions are present */
1273 for(edx = specs->ext_after + 1; edx < td->elements_count; edx++) {
1274 asn_TYPE_member_t *elm = &td->elements[edx];
1275 void *memb_ptr; /* Pointer to the member */
1276 void **memb_ptr2; /* Pointer to that pointer */
1277 int present;
1278
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001279 if(!IN_EXTENSION_GROUP(specs, edx)) {
Lev Walkin06230f72007-06-26 09:52:44 +00001280 ASN_DEBUG("%s (@%d) is not extension", elm->type->name, edx);
Lev Walkin62258e22007-06-23 23:50:25 +00001281 continue;
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001282 }
Lev Walkin62258e22007-06-23 23:50:25 +00001283
1284 /* Fetch the pointer to this member */
1285 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001286 memb_ptr2 = (void **)((char *)sptr + elm->memb_offset);
Lev Walkin62258e22007-06-23 23:50:25 +00001287 present = (*memb_ptr2 != 0);
1288 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001289 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkin62258e22007-06-23 23:50:25 +00001290 memb_ptr2 = &memb_ptr;
1291 present = 1;
1292 }
1293
Lev Walkin06230f72007-06-26 09:52:44 +00001294 ASN_DEBUG("checking %s (@%d) present => %d",
1295 elm->type->name, edx, present);
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001296 exts_count++;
1297 exts_present += present;
Lev Walkin62258e22007-06-23 23:50:25 +00001298
1299 /* Encode as presence marker */
1300 if(po1 && per_put_few_bits(po1, present, 1))
1301 return -1;
1302 /* Encode as open type field */
Lev Walkin9218bc12007-06-27 04:09:37 +00001303 if(po2 && present && uper_open_type_put(elm->type,
Lev Walkin62258e22007-06-23 23:50:25 +00001304 elm->per_constraints, *memb_ptr2, po2))
1305 return -1;
1306
1307 }
1308
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001309 return exts_present ? exts_count : 0;
Lev Walkin62258e22007-06-23 23:50:25 +00001310}
1311
Lev Walkin523de9e2006-08-18 01:34:18 +00001312asn_enc_rval_t
1313SEQUENCE_encode_uper(asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -07001314 const asn_per_constraints_t *constraints, void *sptr,
1315 asn_per_outp_t *po) {
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001316 asn_SEQUENCE_specifics_t *specs
Lev Walkin523de9e2006-08-18 01:34:18 +00001317 = (asn_SEQUENCE_specifics_t *)td->specifics;
1318 asn_enc_rval_t er;
Lev Walkin62258e22007-06-23 23:50:25 +00001319 int n_extensions;
Lev Walkin494fb702017-08-07 20:07:00 -07001320 size_t edx;
1321 size_t i;
Lev Walkin523de9e2006-08-18 01:34:18 +00001322
1323 (void)constraints;
1324
1325 if(!sptr)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001326 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001327
1328 er.encoded = 0;
1329
1330 ASN_DEBUG("Encoding %s as SEQUENCE (UPER)", td->name);
Lev Walkin62258e22007-06-23 23:50:25 +00001331
1332
1333 /*
1334 * X.691#18.1 Whether structure is extensible
1335 * and whether to encode extensions
1336 */
1337 if(specs->ext_before >= 0) {
1338 n_extensions = SEQUENCE_handle_extensions(td, sptr, 0, 0);
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001339 if(n_extensions < 0)
Lev Walkin494fb702017-08-07 20:07:00 -07001340 ASN__ENCODE_FAILED;
1341 if(per_put_few_bits(po, n_extensions ? 1 : 0, 1))
1342 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001343 } else {
1344 n_extensions = 0; /* There are no extensions to encode */
1345 }
Lev Walkin523de9e2006-08-18 01:34:18 +00001346
1347 /* Encode a presence bitmap */
1348 for(i = 0; i < specs->roms_count; i++) {
Lev Walkinc46b7cb2006-08-18 02:27:55 +00001349 asn_TYPE_member_t *elm;
Lev Walkin523de9e2006-08-18 01:34:18 +00001350 void *memb_ptr; /* Pointer to the member */
1351 void **memb_ptr2; /* Pointer to that pointer */
Lev Walkin523de9e2006-08-18 01:34:18 +00001352 int present;
1353
Lev Walkinc46b7cb2006-08-18 02:27:55 +00001354 edx = specs->oms[i];
1355 elm = &td->elements[edx];
1356
Lev Walkin523de9e2006-08-18 01:34:18 +00001357 /* Fetch the pointer to this member */
1358 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001359 memb_ptr2 = (void **)((char *)sptr + elm->memb_offset);
Lev Walkin523de9e2006-08-18 01:34:18 +00001360 present = (*memb_ptr2 != 0);
1361 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001362 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkin523de9e2006-08-18 01:34:18 +00001363 memb_ptr2 = &memb_ptr;
1364 present = 1;
1365 }
1366
1367 /* Eliminate default values */
1368 if(present && elm->default_value
1369 && elm->default_value(0, memb_ptr2) == 1)
1370 present = 0;
1371
1372 ASN_DEBUG("Element %s %s %s->%s is %s",
1373 elm->flags & ATF_POINTER ? "ptr" : "inline",
1374 elm->default_value ? "def" : "wtv",
1375 td->name, elm->name, present ? "present" : "absent");
1376 if(per_put_few_bits(po, present, 1))
Lev Walkin7c1dc052016-03-14 03:08:15 -07001377 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001378 }
1379
1380 /*
Lev Walkin62258e22007-06-23 23:50:25 +00001381 * Encode the sequence ROOT elements.
Lev Walkin523de9e2006-08-18 01:34:18 +00001382 */
Lev Walkin62258e22007-06-23 23:50:25 +00001383 ASN_DEBUG("ext_after = %d, ec = %d, eb = %d", specs->ext_after, td->elements_count, specs->ext_before);
Lev Walkin4d22b622007-07-23 09:58:25 +00001384 for(edx = 0; edx < ((specs->ext_after < 0)
1385 ? td->elements_count : specs->ext_before - 1); edx++) {
1386
Lev Walkin523de9e2006-08-18 01:34:18 +00001387 asn_TYPE_member_t *elm = &td->elements[edx];
1388 void *memb_ptr; /* Pointer to the member */
1389 void **memb_ptr2; /* Pointer to that pointer */
1390
Lev Walkin4d22b622007-07-23 09:58:25 +00001391 if(IN_EXTENSION_GROUP(specs, edx))
1392 continue;
1393
Lev Walkina2987ea2007-06-26 23:56:54 +00001394 ASN_DEBUG("About to encode %s", elm->type->name);
1395
Lev Walkin523de9e2006-08-18 01:34:18 +00001396 /* Fetch the pointer to this member */
1397 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001398 memb_ptr2 = (void **)((char *)sptr + elm->memb_offset);
Lev Walkin523de9e2006-08-18 01:34:18 +00001399 if(!*memb_ptr2) {
1400 ASN_DEBUG("Element %s %d not present",
1401 elm->name, edx);
1402 if(elm->optional)
1403 continue;
1404 /* Mandatory element is missing */
Lev Walkin7c1dc052016-03-14 03:08:15 -07001405 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001406 }
1407 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001408 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkin523de9e2006-08-18 01:34:18 +00001409 memb_ptr2 = &memb_ptr;
1410 }
1411
1412 /* Eliminate default values */
Lev Walkindbd091a2007-06-27 02:11:08 +00001413 if(elm->default_value && elm->default_value(0, memb_ptr2) == 1)
Lev Walkin523de9e2006-08-18 01:34:18 +00001414 continue;
1415
Lev Walkin4d22b622007-07-23 09:58:25 +00001416 ASN_DEBUG("Encoding %s->%s", td->name, elm->name);
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001417 er = elm->type->op->uper_encoder(elm->type, elm->per_constraints,
Lev Walkin523de9e2006-08-18 01:34:18 +00001418 *memb_ptr2, po);
1419 if(er.encoded == -1)
1420 return er;
1421 }
1422
Lev Walkin62258e22007-06-23 23:50:25 +00001423 /* No extensions to encode */
Lev Walkin7c1dc052016-03-14 03:08:15 -07001424 if(!n_extensions) ASN__ENCODED_OK(er);
Lev Walkin62258e22007-06-23 23:50:25 +00001425
1426 ASN_DEBUG("Length of %d bit-map", n_extensions);
1427 /* #18.8. Write down the presence bit-map length. */
1428 if(uper_put_nslength(po, n_extensions))
Lev Walkin7c1dc052016-03-14 03:08:15 -07001429 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001430
1431 ASN_DEBUG("Bit-map of %d elements", n_extensions);
1432 /* #18.7. Encoding the extensions presence bit-map. */
1433 /* TODO: act upon NOTE in #18.7 for canonical PER */
1434 if(SEQUENCE_handle_extensions(td, sptr, po, 0) != n_extensions)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001435 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001436
1437 ASN_DEBUG("Writing %d extensions", n_extensions);
1438 /* #18.9. Encode extensions as open type fields. */
1439 if(SEQUENCE_handle_extensions(td, sptr, 0, po) != n_extensions)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001440 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001441
Lev Walkin7c1dc052016-03-14 03:08:15 -07001442 ASN__ENCODED_OK(er);
Lev Walkin523de9e2006-08-18 01:34:18 +00001443}
1444
Lev Walkincd2f48e2017-08-10 02:14:59 -07001445int
1446SEQUENCE_compare(const asn_TYPE_descriptor_t *td, const void *aptr,
1447 const void *bptr) {
1448 size_t edx;
1449
1450 for(edx = 0; edx < td->elements_count; edx++) {
1451 asn_TYPE_member_t *elm = &td->elements[edx];
1452 const void *amemb;
1453 const void *bmemb;
1454 int ret;
1455
1456 if(elm->flags & ATF_POINTER) {
1457 amemb =
1458 *(const void *const *)((const char *)aptr + elm->memb_offset);
1459 bmemb =
1460 *(const void *const *)((const char *)bptr + elm->memb_offset);
1461 if(!amemb) {
1462 if(!bmemb) continue;
1463 return -1;
1464 } else if(!bmemb) {
1465 return 1;
1466 }
1467 } else {
1468 amemb = (const void *)((const char *)aptr + elm->memb_offset);
1469 bmemb = (const void *)((const char *)bptr + elm->memb_offset);
1470 }
1471
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001472 ret = elm->type->op->compare_struct(elm->type, amemb, bmemb);
Lev Walkincd2f48e2017-08-10 02:14:59 -07001473 if(ret != 0) return ret;
1474 }
1475
1476 return 0;
1477}
1478
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001479asn_TYPE_operation_t asn_OP_SEQUENCE = {
1480 SEQUENCE_free,
1481 SEQUENCE_print,
1482 SEQUENCE_compare,
1483 SEQUENCE_constraint,
1484 SEQUENCE_decode_ber,
1485 SEQUENCE_encode_der,
1486 SEQUENCE_decode_xer,
1487 SEQUENCE_encode_xer,
1488#ifdef ASN_DISABLE_OER_SUPPORT
1489 0,
1490 0,
1491#else
1492 SEQUENCE_decode_oer,
1493 SEQUENCE_encode_oer,
1494#endif /* ASN_DISABLE_OER_SUPPORT */
1495#ifdef ASN_DISABLE_PER_SUPPORT
1496 0,
1497 0,
1498#else
1499 SEQUENCE_decode_uper,
1500 SEQUENCE_encode_uper,
1501#endif /* ASN_DISABLE_PER_SUPPORT */
1502 0 /* Use generic outmost tag fetcher */
1503};
1504