blob: d080ccb0b9c1e288251f279e2cc49f4c05144343 [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 Walkin20696a42017-10-17 21:27:33 -0700113SEQUENCE_decode_ber(const asn_codec_ctx_t *opt_codec_ctx,
114 const asn_TYPE_descriptor_t *td, void **struct_ptr,
115 const void *ptr, size_t size, int tag_mode) {
116 /*
Lev Walkinf15320b2004-06-03 03:38:44 +0000117 * Bring closer parts of structure description.
118 */
Lev Walkind84f6032017-10-03 16:33:59 -0700119 const asn_SEQUENCE_specifics_t *specs = (const asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin20696a42017-10-17 21:27:33 -0700120 const asn_TYPE_member_t *elements = td->elements;
Lev Walkinf15320b2004-06-03 03:38:44 +0000121
Lev Walkin20696a42017-10-17 21:27:33 -0700122 /*
Lev Walkinf15320b2004-06-03 03:38:44 +0000123 * Parts of the structure being constructed.
124 */
125 void *st = *struct_ptr; /* Target structure. */
Lev Walkin5e033762004-09-29 13:26:15 +0000126 asn_struct_ctx_t *ctx; /* Decoder context */
Lev Walkinf15320b2004-06-03 03:38:44 +0000127
128 ber_tlv_tag_t tlv_tag; /* T from TLV */
Lev Walkindc06f6b2004-10-20 15:50:55 +0000129 asn_dec_rval_t rval; /* Return code from subparsers */
Lev Walkinf15320b2004-06-03 03:38:44 +0000130
131 ssize_t consumed_myself = 0; /* Consumed bytes from ptr */
Lev Walkin494fb702017-08-07 20:07:00 -0700132 size_t edx; /* SEQUENCE element's index */
Lev Walkinf15320b2004-06-03 03:38:44 +0000133
Lev Walkin449f8322004-08-20 13:23:42 +0000134 ASN_DEBUG("Decoding %s as SEQUENCE", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000135
136 /*
137 * Create the target structure if it is not present already.
138 */
139 if(st == 0) {
140 st = *struct_ptr = CALLOC(1, specs->struct_size);
141 if(st == 0) {
142 RETURN(RC_FAIL);
143 }
144 }
145
146 /*
147 * Restore parsing context.
148 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800149 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000150
151 /*
152 * Start to parse where left previously
153 */
154 switch(ctx->phase) {
155 case 0:
156 /*
157 * PHASE 0.
158 * Check that the set of tags associated with given structure
159 * perfectly fits our expectations.
160 */
161
Lev Walkin5e033762004-09-29 13:26:15 +0000162 rval = ber_check_tags(opt_codec_ctx, td, ctx, ptr, size,
Lev Walkin8e8078a2004-09-26 13:10:40 +0000163 tag_mode, 1, &ctx->left, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +0000164 if(rval.code != RC_OK) {
165 ASN_DEBUG("%s tagging check failed: %d",
Lev Walkin449f8322004-08-20 13:23:42 +0000166 td->name, rval.code);
Lev Walkin566a5672004-10-05 06:36:57 +0000167 return rval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000168 }
169
170 if(ctx->left >= 0)
171 ctx->left += rval.consumed; /* ?Substracted below! */
172 ADVANCE(rval.consumed);
173
174 NEXT_PHASE(ctx);
175
176 ASN_DEBUG("Structure consumes %ld bytes, buffer %ld",
177 (long)ctx->left, (long)size);
178
179 /* Fall through */
180 case 1:
181 /*
182 * PHASE 1.
183 * From the place where we've left it previously,
184 * try to decode the next member from the list of
185 * this structure's elements.
186 * (ctx->step) stores the member being processed
187 * between invocations and the microphase {0,1} of parsing
188 * that member:
189 * step = (<member_number> * 2 + <microphase>).
190 */
Lev Walkin494fb702017-08-07 20:07:00 -0700191 for(edx = ((size_t)ctx->step >> 1); edx < td->elements_count;
Lev Walkinf15320b2004-06-03 03:38:44 +0000192 edx++, ctx->step = (ctx->step & ~1) + 2) {
193 void *memb_ptr; /* Pointer to the member */
Lev Walkinc2346572004-08-11 09:07:36 +0000194 void **memb_ptr2; /* Pointer to that pointer */
Lev Walkinf15320b2004-06-03 03:38:44 +0000195 ssize_t tag_len; /* Length of TLV's T */
Lev Walkin494fb702017-08-07 20:07:00 -0700196 size_t opt_edx_end; /* Next non-optional element */
197 size_t n;
Lev Walkin4c36e302004-06-06 07:20:02 +0000198 int use_bsearch;
Lev Walkinf15320b2004-06-03 03:38:44 +0000199
200 if(ctx->step & 1)
201 goto microphase2;
202
203 /*
204 * MICROPHASE 1: Synchronize decoding.
205 */
Lev Walkin24810022017-08-25 12:16:11 -0700206 ASN_DEBUG("In %s SEQUENCE left %d, edx=%zu flags=%d"
Lev Walkincc93b0f2004-09-10 09:18:20 +0000207 " opt=%d ec=%d",
208 td->name, (int)ctx->left, edx,
209 elements[edx].flags, elements[edx].optional,
210 td->elements_count);
Lev Walkinf15320b2004-06-03 03:38:44 +0000211
212 if(ctx->left == 0 /* No more stuff is expected */
213 && (
214 /* Explicit OPTIONAL specification reaches the end */
Lev Walkincc93b0f2004-09-10 09:18:20 +0000215 (edx + elements[edx].optional
216 == td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000217 ||
218 /* All extensions are optional */
219 (IN_EXTENSION_GROUP(specs, edx)
Lev Walkin494fb702017-08-07 20:07:00 -0700220 && specs->ext_before > (signed)td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000221 )
222 ) {
Lev Walkin449f8322004-08-20 13:23:42 +0000223 ASN_DEBUG("End of SEQUENCE %s", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000224 /*
225 * Found the legitimate end of the structure.
226 */
227 PHASE_OUT(ctx);
228 RETURN(RC_OK);
229 }
230
231 /*
232 * Fetch the T from TLV.
233 */
234 tag_len = ber_fetch_tag(ptr, LEFT, &tlv_tag);
Lev Walkin24810022017-08-25 12:16:11 -0700235 ASN_DEBUG("Current tag in %s SEQUENCE for element %zu "
Lev Walkincc6a9102004-09-23 22:06:26 +0000236 "(%s) is %s encoded in %d bytes, of frame %ld",
Lev Walkin906654e2004-09-10 15:49:15 +0000237 td->name, edx, elements[edx].name,
238 ber_tlv_tag_string(tlv_tag), (int)tag_len, (long)LEFT);
Lev Walkinf15320b2004-06-03 03:38:44 +0000239 switch(tag_len) {
240 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
241 /* Fall through */
242 case -1: RETURN(RC_FAIL);
243 }
244
Lev Walkin8c3b8542005-03-10 18:52:02 +0000245 if(ctx->left < 0 && ((const uint8_t *)ptr)[0] == 0) {
Lev Walkin566a5672004-10-05 06:36:57 +0000246 if(LEFT < 2) {
247 if(SIZE_VIOLATION)
248 RETURN(RC_FAIL);
249 else
250 RETURN(RC_WMORE);
Lev Walkin8c3b8542005-03-10 18:52:02 +0000251 } else if(((const uint8_t *)ptr)[1] == 0) {
Lev Walkin494fb702017-08-07 20:07:00 -0700252 ASN_DEBUG("edx = %zu, opt = %d, ec=%d",
Lev Walkin566a5672004-10-05 06:36:57 +0000253 edx, elements[edx].optional,
254 td->elements_count);
255 if((edx + elements[edx].optional
256 == td->elements_count)
257 || (IN_EXTENSION_GROUP(specs, edx)
258 && specs->ext_before
Lev Walkin494fb702017-08-07 20:07:00 -0700259 > (signed)td->elements_count)) {
Lev Walkin566a5672004-10-05 06:36:57 +0000260 /*
261 * Yeah, baby! Found the terminator
262 * of the indefinite length structure.
263 */
264 /*
265 * Proceed to the canonical
266 * finalization function.
267 * No advancing is necessary.
268 */
269 goto phase3;
270 }
271 }
272 }
273
Lev Walkinf15320b2004-06-03 03:38:44 +0000274 /*
275 * Find the next available type with this tag.
276 */
Lev Walkin4c36e302004-06-06 07:20:02 +0000277 use_bsearch = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000278 opt_edx_end = edx + elements[edx].optional + 1;
Lev Walkin449f8322004-08-20 13:23:42 +0000279 if(opt_edx_end > td->elements_count)
280 opt_edx_end = td->elements_count; /* Cap */
Lev Walkinf9dbd9a2004-07-01 00:48:04 +0000281 else if(opt_edx_end - edx > 8) {
Lev Walkin924fa032004-06-14 13:42:23 +0000282 /* Limit the scope of linear search... */
Lev Walkinf9dbd9a2004-07-01 00:48:04 +0000283 opt_edx_end = edx + 8;
Lev Walkin4c36e302004-06-06 07:20:02 +0000284 use_bsearch = 1;
Lev Walkin924fa032004-06-14 13:42:23 +0000285 /* ... and resort to bsearch() */
Lev Walkin4c36e302004-06-06 07:20:02 +0000286 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000287 for(n = edx; n < opt_edx_end; n++) {
288 if(BER_TAGS_EQUAL(tlv_tag, elements[n].tag)) {
289 /*
290 * Found element corresponding to the tag
291 * being looked at.
292 * Reposition over the right element.
293 */
294 edx = n;
Lev Walkin4c36e302004-06-06 07:20:02 +0000295 ctx->step = 1 + 2 * edx; /* Remember! */
296 goto microphase2;
Lev Walkin14fd3e52017-08-27 01:38:45 -0700297 } else if(elements[n].flags & ATF_ANY_TYPE) {
Lev Walkinb9189732004-09-10 09:37:12 +0000298 /*
299 * This is the ANY type, which may bear
300 * any flag whatsoever.
301 */
302 edx = n;
303 ctx->step = 1 + 2 * edx; /* Remember! */
304 goto microphase2;
Lev Walkin4c36e302004-06-06 07:20:02 +0000305 } else if(elements[n].tag == (ber_tlv_tag_t)-1) {
306 use_bsearch = 1;
Lev Walkinf15320b2004-06-03 03:38:44 +0000307 break;
308 }
309 }
Lev Walkin4c36e302004-06-06 07:20:02 +0000310 if(use_bsearch) {
311 /*
Lev Walkin4e0704f2004-09-04 06:17:35 +0000312 * Resort to a binary search over
Lev Walkin4c36e302004-06-06 07:20:02 +0000313 * sorted array of tags.
314 */
Wim Lewisfb6344e2014-07-28 12:16:01 -0700315 const asn_TYPE_tag2member_t *t2m;
Lev Walkineff98a52017-09-13 22:24:35 +0000316 asn_TYPE_tag2member_t key = {0, 0, 0, 0};
317 key.el_tag = tlv_tag;
318 key.el_no = edx;
Wim Lewisfb6344e2014-07-28 12:16:01 -0700319 t2m = (const asn_TYPE_tag2member_t *)bsearch(&key,
Lev Walkinc2346572004-08-11 09:07:36 +0000320 specs->tag2el, specs->tag2el_count,
Lev Walkin4c36e302004-06-06 07:20:02 +0000321 sizeof(specs->tag2el[0]), _t2e_cmp);
Lev Walkin924fa032004-06-14 13:42:23 +0000322 if(t2m) {
Wim Lewisfb6344e2014-07-28 12:16:01 -0700323 const asn_TYPE_tag2member_t *best = 0;
324 const asn_TYPE_tag2member_t *t2m_f, *t2m_l;
Lev Walkin494fb702017-08-07 20:07:00 -0700325 size_t edx_max = edx + elements[edx].optional;
Lev Walkin4c36e302004-06-06 07:20:02 +0000326 /*
327 * Rewind to the first element with that tag,
328 * `cause bsearch() does not guarantee order.
329 */
Lev Walkin924fa032004-06-14 13:42:23 +0000330 t2m_f = t2m + t2m->toff_first;
331 t2m_l = t2m + t2m->toff_last;
332 for(t2m = t2m_f; t2m <= t2m_l; t2m++) {
333 if(t2m->el_no > edx_max) break;
334 if(t2m->el_no < edx) continue;
335 best = t2m;
336 }
337 if(best) {
338 edx = best->el_no;
339 ctx->step = 1 + 2 * edx;
340 goto microphase2;
341 }
Lev Walkin4c36e302004-06-06 07:20:02 +0000342 }
343 n = opt_edx_end;
344 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000345 if(n == opt_edx_end) {
346 /*
347 * If tag is unknown, it may be either
348 * an unknown (thus, incorrect) tag,
349 * or an extension (...),
350 * or an end of the indefinite-length structure.
351 */
Lev Walkin7cbbc902006-10-03 06:39:36 +0000352 if(!IN_EXTENSION_GROUP(specs,
353 edx + elements[edx].optional)) {
Lev Walkin24810022017-08-25 12:16:11 -0700354 ASN_DEBUG("Unexpected tag %s (at %zu)",
Lev Walkin566a5672004-10-05 06:36:57 +0000355 ber_tlv_tag_string(tlv_tag), edx);
Lev Walkin4c36e302004-06-06 07:20:02 +0000356 ASN_DEBUG("Expected tag %s (%s)%s",
Lev Walkinf15320b2004-06-03 03:38:44 +0000357 ber_tlv_tag_string(elements[edx].tag),
Lev Walkin4c36e302004-06-06 07:20:02 +0000358 elements[edx].name,
Lev Walkinf15320b2004-06-03 03:38:44 +0000359 elements[edx].optional
360 ?" or alternatives":"");
361 RETURN(RC_FAIL);
Lev Walkinf15320b2004-06-03 03:38:44 +0000362 } else {
363 /* Skip this tag */
364 ssize_t skip;
Lev Walkin7cbbc902006-10-03 06:39:36 +0000365 edx += elements[edx].optional;
Lev Walkinf15320b2004-06-03 03:38:44 +0000366
Lev Walkin24810022017-08-25 12:16:11 -0700367 ASN_DEBUG("Skipping unexpected %s (at %zu)",
Lev Walkin7cbbc902006-10-03 06:39:36 +0000368 ber_tlv_tag_string(tlv_tag), edx);
Lev Walkinbaaa24f2004-09-29 14:19:14 +0000369 skip = ber_skip_length(opt_codec_ctx,
Lev Walkinf15320b2004-06-03 03:38:44 +0000370 BER_TLV_CONSTRUCTED(ptr),
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800371 (const char *)ptr + tag_len,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000372 LEFT - tag_len);
Lev Walkinf15320b2004-06-03 03:38:44 +0000373 ASN_DEBUG("Skip length %d in %s",
Lev Walkin449f8322004-08-20 13:23:42 +0000374 (int)skip, td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000375 switch(skip) {
376 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
377 /* Fall through */
378 case -1: RETURN(RC_FAIL);
379 }
380
381 ADVANCE(skip + tag_len);
382 ctx->step -= 2;
383 edx--;
384 continue; /* Try again with the next tag */
385 }
386 }
387
388 /*
389 * MICROPHASE 2: Invoke the member-specific decoder.
390 */
391 ctx->step |= 1; /* Confirm entering next microphase */
392 microphase2:
Lev Walkin449f8322004-08-20 13:23:42 +0000393 ASN_DEBUG("Inside SEQUENCE %s MF2", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000394
395 /*
396 * Compute the position of the member inside a structure,
397 * and also a type of containment (it may be contained
398 * as pointer or using inline inclusion).
399 */
Lev Walkincc93b0f2004-09-10 09:18:20 +0000400 if(elements[edx].flags & ATF_POINTER) {
401 /* Member is a pointer to another structure */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800402 memb_ptr2 = (void **)((char *)st + elements[edx].memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000403 } else {
404 /*
405 * A pointer to a pointer
406 * holding the start of the structure
407 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800408 memb_ptr = (char *)st + elements[edx].memb_offset;
Lev Walkinf15320b2004-06-03 03:38:44 +0000409 memb_ptr2 = &memb_ptr;
410 }
411 /*
412 * Invoke the member fetch routine according to member's type
413 */
Lev Walkin75b6fe42017-08-27 01:03:22 -0700414 if(elements[edx].flags & ATF_OPEN_TYPE) {
Lev Walkinc10d30a2017-08-27 00:38:21 -0700415 rval = OPEN_TYPE_ber_get(opt_codec_ctx, td, st, &elements[edx], ptr, LEFT);
416 } else {
417 rval = elements[edx].type->op->ber_decoder(opt_codec_ctx,
418 elements[edx].type,
419 memb_ptr2, ptr, LEFT,
420 elements[edx].tag_mode);
421 }
Lev Walkin24810022017-08-25 12:16:11 -0700422 ASN_DEBUG("In %s SEQUENCE decoded %zu %s of %d "
Lev Walkin5beb7de2004-09-24 20:59:27 +0000423 "in %d bytes rval.code %d, size=%d",
Lev Walkin449f8322004-08-20 13:23:42 +0000424 td->name, edx, elements[edx].type->name,
Lev Walkin5beb7de2004-09-24 20:59:27 +0000425 (int)LEFT, (int)rval.consumed, rval.code, (int)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000426 switch(rval.code) {
427 case RC_OK:
428 break;
429 case RC_WMORE: /* More data expected */
430 if(!SIZE_VIOLATION) {
431 ADVANCE(rval.consumed);
432 RETURN(RC_WMORE);
433 }
Lev Walkin5beb7de2004-09-24 20:59:27 +0000434 ASN_DEBUG("Size violation (c->l=%ld <= s=%ld)",
435 (long)ctx->left, (long)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000436 /* Fall through */
437 case RC_FAIL: /* Fatal error */
438 RETURN(RC_FAIL);
439 } /* switch(rval) */
440
441 ADVANCE(rval.consumed);
442 } /* for(all structure members) */
443
444 phase3:
445 ctx->phase = 3;
Lev Walkin48e82d12017-10-19 03:06:35 -0700446 /* Fall through */
Lev Walkinf15320b2004-06-03 03:38:44 +0000447 case 3: /* 00 and other tags expected */
448 case 4: /* only 00's expected */
449
450 ASN_DEBUG("SEQUENCE %s Leftover: %ld, size = %ld",
Lev Walkin449f8322004-08-20 13:23:42 +0000451 td->name, (long)ctx->left, (long)size);
Lev Walkinf15320b2004-06-03 03:38:44 +0000452
453 /*
454 * Skip everything until the end of the SEQUENCE.
455 */
456 while(ctx->left) {
457 ssize_t tl, ll;
458
459 tl = ber_fetch_tag(ptr, LEFT, &tlv_tag);
460 switch(tl) {
461 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
462 /* Fall through */
463 case -1: RETURN(RC_FAIL);
464 }
465
466 /*
467 * If expected <0><0>...
468 */
469 if(ctx->left < 0
Lev Walkin8c3b8542005-03-10 18:52:02 +0000470 && ((const uint8_t *)ptr)[0] == 0) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000471 if(LEFT < 2) {
472 if(SIZE_VIOLATION)
473 RETURN(RC_FAIL);
474 else
475 RETURN(RC_WMORE);
Lev Walkin8c3b8542005-03-10 18:52:02 +0000476 } else if(((const uint8_t *)ptr)[1] == 0) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000477 /*
478 * Correctly finished with <0><0>.
479 */
480 ADVANCE(2);
481 ctx->left++;
482 ctx->phase = 4;
483 continue;
484 }
485 }
486
Lev Walkin449f8322004-08-20 13:23:42 +0000487 if(!IN_EXTENSION_GROUP(specs, td->elements_count)
Lev Walkinf15320b2004-06-03 03:38:44 +0000488 || ctx->phase == 4) {
489 ASN_DEBUG("Unexpected continuation "
490 "of a non-extensible type "
491 "%s (SEQUENCE): %s",
Lev Walkin449f8322004-08-20 13:23:42 +0000492 td->name,
Lev Walkinf15320b2004-06-03 03:38:44 +0000493 ber_tlv_tag_string(tlv_tag));
494 RETURN(RC_FAIL);
495 }
496
Lev Walkinbaaa24f2004-09-29 14:19:14 +0000497 ll = ber_skip_length(opt_codec_ctx,
Lev Walkinf15320b2004-06-03 03:38:44 +0000498 BER_TLV_CONSTRUCTED(ptr),
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800499 (const char *)ptr + tl, LEFT - tl);
Lev Walkinf15320b2004-06-03 03:38:44 +0000500 switch(ll) {
501 case 0: if(!SIZE_VIOLATION) RETURN(RC_WMORE);
502 /* Fall through */
503 case -1: RETURN(RC_FAIL);
504 }
505
506 ADVANCE(tl + ll);
507 }
508
509 PHASE_OUT(ctx);
510 }
511
512 RETURN(RC_OK);
513}
514
Lev Walkin4c36e302004-06-06 07:20:02 +0000515
Lev Walkinf15320b2004-06-03 03:38:44 +0000516/*
517 * The DER encoder of the SEQUENCE type.
518 */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000519asn_enc_rval_t
Lev Walkin20696a42017-10-17 21:27:33 -0700520SEQUENCE_encode_der(const asn_TYPE_descriptor_t *td, const void *sptr,
521 int tag_mode, ber_tlv_tag_t tag,
522 asn_app_consume_bytes_f *cb, void *app_key) {
523 size_t computed_size = 0;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000524 asn_enc_rval_t erval;
Lev Walkinf15320b2004-06-03 03:38:44 +0000525 ssize_t ret;
Lev Walkin494fb702017-08-07 20:07:00 -0700526 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000527
528 ASN_DEBUG("%s %s as SEQUENCE",
Lev Walkin449f8322004-08-20 13:23:42 +0000529 cb?"Encoding":"Estimating", td->name);
Lev Walkinf15320b2004-06-03 03:38:44 +0000530
531 /*
532 * Gather the length of the underlying members sequence.
533 */
Lev Walkin449f8322004-08-20 13:23:42 +0000534 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000535 asn_TYPE_member_t *elm = &td->elements[edx];
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400536
Lev Walkin20696a42017-10-17 21:27:33 -0700537 const void *memb_ptr; /* Pointer to the member */
538 const void *const *memb_ptr2; /* Pointer to that pointer */
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400539
Lev Walkin20696a42017-10-17 21:27:33 -0700540 if(elm->flags & ATF_POINTER) {
541 memb_ptr2 =
542 (const void *const *)((const char *)sptr + elm->memb_offset);
543 if(!*memb_ptr2) {
Lev Walkin28ba9db2017-08-31 02:06:58 -0700544 ASN_DEBUG("Element %s %zu not present",
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400545 elm->name, edx);
546 if(elm->optional)
547 continue;
Lev Walkinac589332005-08-22 14:19:28 +0000548 /* Mandatory element is missing */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700549 ASN__ENCODE_FAILED;
Lev Walkinac589332005-08-22 14:19:28 +0000550 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000551 } else {
Lev Walkin20696a42017-10-17 21:27:33 -0700552 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
553 memb_ptr2 = &memb_ptr;
Lev Walkinf15320b2004-06-03 03:38:44 +0000554 }
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400555
556 /* Eliminate default values */
Lev Walkin20696a42017-10-17 21:27:33 -0700557 if(elm->default_value_cmp && elm->default_value_cmp(*memb_ptr2) == 0)
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400558 continue;
559
560 erval = elm->type->op->der_encoder(elm->type, *memb_ptr2,
Lev Walkinf15320b2004-06-03 03:38:44 +0000561 elm->tag_mode, elm->tag,
562 0, 0);
563 if(erval.encoded == -1)
564 return erval;
565 computed_size += erval.encoded;
Lev Walkin24810022017-08-25 12:16:11 -0700566 ASN_DEBUG("Member %zu %s estimated %ld bytes",
Lev Walkinf15320b2004-06-03 03:38:44 +0000567 edx, elm->name, (long)erval.encoded);
568 }
569
570 /*
571 * Encode the TLV for the sequence itself.
572 */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000573 ret = der_write_tags(td, computed_size, tag_mode, 1, tag, cb, app_key);
Lev Walkinf15320b2004-06-03 03:38:44 +0000574 ASN_DEBUG("Wrote tags: %ld (+%ld)", (long)ret, (long)computed_size);
Lev Walkinac589332005-08-22 14:19:28 +0000575 if(ret == -1)
Lev Walkin7c1dc052016-03-14 03:08:15 -0700576 ASN__ENCODE_FAILED;
Lev Walkinf15320b2004-06-03 03:38:44 +0000577 erval.encoded = computed_size + ret;
578
Lev Walkin7c1dc052016-03-14 03:08:15 -0700579 if(!cb) ASN__ENCODED_OK(erval);
Lev Walkinf15320b2004-06-03 03:38:44 +0000580
581 /*
582 * Encode all members.
583 */
Lev Walkin449f8322004-08-20 13:23:42 +0000584 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000585 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkina9cc46e2004-09-22 16:06:28 +0000586 asn_enc_rval_t tmperval;
Lev Walkin20696a42017-10-17 21:27:33 -0700587 const void *memb_ptr; /* Pointer to the member */
588 const void *const *memb_ptr2; /* Pointer to that pointer */
Lev Walkinf15320b2004-06-03 03:38:44 +0000589
Lev Walkin20696a42017-10-17 21:27:33 -0700590 if(elm->flags & ATF_POINTER) {
591 memb_ptr2 =
592 (const void *const *)((const char *)sptr + elm->memb_offset);
593 if(!*memb_ptr2) continue;
Lev Walkinf15320b2004-06-03 03:38:44 +0000594 } else {
Lev Walkin20696a42017-10-17 21:27:33 -0700595 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
596 memb_ptr2 = &memb_ptr;
Lev Walkinf15320b2004-06-03 03:38:44 +0000597 }
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400598
599 /* Eliminate default values */
Lev Walkin20696a42017-10-17 21:27:33 -0700600 if(elm->default_value_cmp && elm->default_value_cmp(*memb_ptr2) == 0)
601 continue;
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400602
603 tmperval = elm->type->op->der_encoder(elm->type, *memb_ptr2,
604 elm->tag_mode, elm->tag, cb, app_key);
Lev Walkinf15320b2004-06-03 03:38:44 +0000605 if(tmperval.encoded == -1)
606 return tmperval;
607 computed_size -= tmperval.encoded;
Lev Walkin24810022017-08-25 12:16:11 -0700608 ASN_DEBUG("Member %zu %s of SEQUENCE %s encoded in %ld bytes",
Lev Walkina6a926a2005-03-02 01:54:28 +0000609 edx, elm->name, td->name, (long)tmperval.encoded);
Lev Walkinf15320b2004-06-03 03:38:44 +0000610 }
611
Lev Walkinac589332005-08-22 14:19:28 +0000612 if(computed_size != 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000613 /*
614 * Encoded size is not equal to the computed size.
615 */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700616 ASN__ENCODE_FAILED;
Lev Walkinf15320b2004-06-03 03:38:44 +0000617
Lev Walkin7c1dc052016-03-14 03:08:15 -0700618 ASN__ENCODED_OK(erval);
Lev Walkinf15320b2004-06-03 03:38:44 +0000619}
620
Lev Walkinc61f3862005-02-14 17:21:22 +0000621
Lev Walkin1bbc2002004-10-23 13:27:30 +0000622#undef XER_ADVANCE
Lev Walkinf59dac92017-08-26 21:26:51 -0700623#define XER_ADVANCE(num_bytes) \
624 do { \
625 size_t num = (num_bytes); \
626 ptr = ((const char *)ptr) + num; \
627 size -= num; \
628 consumed_myself += num; \
629 } while(0)
Lev Walkin1bbc2002004-10-23 13:27:30 +0000630
Lev Walkinc61f3862005-02-14 17:21:22 +0000631/*
632 * Decode the XER (XML) data.
633 */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000634asn_dec_rval_t
Lev Walkin20696a42017-10-17 21:27:33 -0700635SEQUENCE_decode_xer(const asn_codec_ctx_t *opt_codec_ctx,
636 const asn_TYPE_descriptor_t *td, void **struct_ptr,
637 const char *opt_mname, const void *ptr, size_t size) {
638 /*
Lev Walkin1bbc2002004-10-23 13:27:30 +0000639 * Bring closer parts of structure description.
640 */
Lev Walkind84f6032017-10-03 16:33:59 -0700641 const asn_SEQUENCE_specifics_t *specs
642 = (const asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000643 asn_TYPE_member_t *elements = td->elements;
644 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
645
646 /*
Lev Walkinc61f3862005-02-14 17:21:22 +0000647 * ... and parts of the structure being constructed.
Lev Walkin1bbc2002004-10-23 13:27:30 +0000648 */
649 void *st = *struct_ptr; /* Target structure. */
650 asn_struct_ctx_t *ctx; /* Decoder context */
651
Lev Walkinc61f3862005-02-14 17:21:22 +0000652 asn_dec_rval_t rval; /* Return value from a decoder */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000653 ssize_t consumed_myself = 0; /* Consumed bytes from ptr */
Lev Walkin494fb702017-08-07 20:07:00 -0700654 size_t edx; /* Element index */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000655
656 /*
657 * Create the target structure if it is not present already.
658 */
659 if(st == 0) {
660 st = *struct_ptr = CALLOC(1, specs->struct_size);
661 if(st == 0) RETURN(RC_FAIL);
662 }
663
664 /*
665 * Restore parsing context.
666 */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800667 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000668
669
670 /*
671 * Phases of XER/XML processing:
672 * Phase 0: Check that the opening tag matches our expectations.
673 * Phase 1: Processing body and reacting on closing tag.
674 * Phase 2: Processing inner type.
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000675 * Phase 3: Skipping unknown extensions.
676 * Phase 4: PHASED OUT
Lev Walkin1bbc2002004-10-23 13:27:30 +0000677 */
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000678 for(edx = ctx->step; ctx->phase <= 3;) {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000679 pxer_chunk_type_e ch_type; /* XER chunk type */
680 ssize_t ch_size; /* Chunk size */
681 xer_check_tag_e tcv; /* Tag check value */
682 asn_TYPE_member_t *elm;
683
684 /*
Lev Walkinc61f3862005-02-14 17:21:22 +0000685 * Go inside the inner member of a sequence.
Lev Walkin1bbc2002004-10-23 13:27:30 +0000686 */
687 if(ctx->phase == 2) {
688 asn_dec_rval_t tmprval;
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400689 void *memb_ptr_dontuse; /* Pointer to the member */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000690 void **memb_ptr2; /* Pointer to that pointer */
691
Lev Walkinabf68892004-10-26 10:12:14 +0000692 elm = &td->elements[edx];
693
Lev Walkin1bbc2002004-10-23 13:27:30 +0000694 if(elm->flags & ATF_POINTER) {
695 /* Member is a pointer to another structure */
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800696 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000697 } else {
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400698 memb_ptr_dontuse = (char *)st + elm->memb_offset;
699 memb_ptr2 = &memb_ptr_dontuse; /* Only use of memb_ptr_dontuse */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000700 }
701
Lev Walkin75b6fe42017-08-27 01:03:22 -0700702 if(elm->flags & ATF_OPEN_TYPE) {
Lev Walkinf59dac92017-08-26 21:26:51 -0700703 tmprval = OPEN_TYPE_xer_get(opt_codec_ctx, td, st, elm, ptr, size);
704 } else {
705 /* Invoke the inner type decoder, m.b. multiple times */
706 tmprval = elm->type->op->xer_decoder(opt_codec_ctx,
707 elm->type, memb_ptr2, elm->name,
708 ptr, size);
709 }
Lev Walkin1bbc2002004-10-23 13:27:30 +0000710 XER_ADVANCE(tmprval.consumed);
711 if(tmprval.code != RC_OK)
712 RETURN(tmprval.code);
Lev Walkinc61f3862005-02-14 17:21:22 +0000713 ctx->phase = 1; /* Back to body processing */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000714 ctx->step = ++edx;
Lev Walkinc61f3862005-02-14 17:21:22 +0000715 ASN_DEBUG("XER/SEQUENCE phase => %d, step => %d",
716 ctx->phase, ctx->step);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000717 /* Fall through */
718 }
719
720 /*
721 * Get the next part of the XML stream.
722 */
Lev Walkinf59dac92017-08-26 21:26:51 -0700723 ch_size = xer_next_token(&ctx->context, ptr, size,
Lev Walkin1e443962005-02-18 18:06:36 +0000724 &ch_type);
Lev Walkin97363482016-01-24 19:23:02 -0800725 if(ch_size == -1) {
726 RETURN(RC_FAIL);
Lev Walkinf59dac92017-08-26 21:26:51 -0700727 } else {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000728 switch(ch_type) {
Lev Walkinf59dac92017-08-26 21:26:51 -0700729 case PXER_WMORE:
730 RETURN(RC_WMORE);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000731 case PXER_COMMENT: /* Got XML comment */
732 case PXER_TEXT: /* Ignore free-standing text */
733 XER_ADVANCE(ch_size); /* Skip silently */
734 continue;
735 case PXER_TAG:
736 break; /* Check the rest down there */
737 }
738 }
739
Lev Walkinf59dac92017-08-26 21:26:51 -0700740 tcv = xer_check_tag(ptr, ch_size, xml_tag);
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000741 ASN_DEBUG("XER/SEQUENCE: tcv = %d, ph=%d [%s]",
742 tcv, ctx->phase, xml_tag);
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000743
744 /* Skip the extensions section */
745 if(ctx->phase == 3) {
746 switch(xer_skip_unknown(tcv, &ctx->left)) {
747 case -1:
748 ctx->phase = 4;
749 RETURN(RC_FAIL);
750 case 0:
751 XER_ADVANCE(ch_size);
752 continue;
753 case 1:
754 XER_ADVANCE(ch_size);
755 ctx->phase = 1;
756 continue;
757 case 2:
758 ctx->phase = 1;
759 break;
760 }
761 }
762
Lev Walkin1bbc2002004-10-23 13:27:30 +0000763 switch(tcv) {
764 case XCT_CLOSING:
765 if(ctx->phase == 0) break;
Lev Walkin1bbc2002004-10-23 13:27:30 +0000766 ctx->phase = 0;
767 /* Fall through */
768 case XCT_BOTH:
769 if(ctx->phase == 0) {
770 if(edx >= td->elements_count
771 ||
772 /* Explicit OPTIONAL specs reaches the end */
773 (edx + elements[edx].optional
774 == td->elements_count)
775 ||
776 /* All extensions are optional */
777 (IN_EXTENSION_GROUP(specs, edx)
778 && specs->ext_before
Lev Walkin494fb702017-08-07 20:07:00 -0700779 > (signed)td->elements_count)
Lev Walkin1bbc2002004-10-23 13:27:30 +0000780 ) {
781 XER_ADVANCE(ch_size);
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000782 ctx->phase = 4; /* Phase out */
Lev Walkinc61f3862005-02-14 17:21:22 +0000783 RETURN(RC_OK);
Lev Walkin1bbc2002004-10-23 13:27:30 +0000784 } else {
785 ASN_DEBUG("Premature end of XER SEQUENCE");
786 RETURN(RC_FAIL);
787 }
788 }
789 /* Fall through */
790 case XCT_OPENING:
791 if(ctx->phase == 0) {
792 XER_ADVANCE(ch_size);
793 ctx->phase = 1; /* Processing body phase */
794 continue;
795 }
Lev Walkinda3ca412004-10-23 14:58:15 +0000796 /* Fall through */
Lev Walkin904e65b2005-02-18 14:23:48 +0000797 case XCT_UNKNOWN_OP:
798 case XCT_UNKNOWN_BO:
Lev Walkin1bbc2002004-10-23 13:27:30 +0000799
Lev Walkin24810022017-08-25 12:16:11 -0700800 ASN_DEBUG("XER/SEQUENCE: tcv=%d, ph=%d, edx=%zu",
Lev Walkin02666192005-07-03 05:31:02 +0000801 tcv, ctx->phase, edx);
802 if(ctx->phase != 1) {
Lev Walkin1bbc2002004-10-23 13:27:30 +0000803 break; /* Really unexpected */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000804 }
Lev Walkin02666192005-07-03 05:31:02 +0000805
806 if(edx < td->elements_count) {
807 /*
808 * Search which member corresponds to this tag.
809 */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800810 size_t n;
811 size_t edx_end = edx + elements[edx].optional + 1;
Lev Walkin02666192005-07-03 05:31:02 +0000812 if(edx_end > td->elements_count)
813 edx_end = td->elements_count;
814 for(n = edx; n < edx_end; n++) {
815 elm = &td->elements[n];
Lev Walkinf59dac92017-08-26 21:26:51 -0700816 tcv = xer_check_tag(ptr, ch_size, elm->name);
Lev Walkin02666192005-07-03 05:31:02 +0000817 switch(tcv) {
818 case XCT_BOTH:
819 case XCT_OPENING:
820 /*
821 * Process this member.
822 */
823 ctx->step = edx = n;
824 ctx->phase = 2;
825 break;
826 case XCT_UNKNOWN_OP:
827 case XCT_UNKNOWN_BO:
828 continue;
829 default:
830 n = edx_end;
831 break; /* Phase out */
832 }
833 break;
834 }
835 if(n != edx_end)
836 continue;
837 } else {
Lev Walkin24810022017-08-25 12:16:11 -0700838 ASN_DEBUG("Out of defined members: %zu/%u",
Lev Walkin02666192005-07-03 05:31:02 +0000839 edx, td->elements_count);
840 }
Lev Walkin904e65b2005-02-18 14:23:48 +0000841
842 /* It is expected extension */
843 if(IN_EXTENSION_GROUP(specs,
Lev Walkin02666192005-07-03 05:31:02 +0000844 edx + (edx < td->elements_count
845 ? elements[edx].optional : 0))) {
Lev Walkin24810022017-08-25 12:16:11 -0700846 ASN_DEBUG("Got anticipated extension at %zu",
Lev Walkin02666192005-07-03 05:31:02 +0000847 edx);
Lev Walkin904e65b2005-02-18 14:23:48 +0000848 /*
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000849 * Check for (XCT_BOTH or XCT_UNKNOWN_BO)
850 * By using a mask. Only record a pure
851 * <opening> tags.
Lev Walkin904e65b2005-02-18 14:23:48 +0000852 */
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000853 if(tcv & XCT_CLOSING) {
854 /* Found </extension> without body */
855 } else {
856 ctx->left = 1;
857 ctx->phase = 3; /* Skip ...'s */
858 }
859 XER_ADVANCE(ch_size);
860 continue;
Lev Walkin904e65b2005-02-18 14:23:48 +0000861 }
862
863 /* Fall through */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000864 default:
865 break;
866 }
867
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000868 ASN_DEBUG("Unexpected XML tag in SEQUENCE [%c%c%c%c%c%c]",
Lev Walkinf59dac92017-08-26 21:26:51 -0700869 size>0?((const char *)ptr)[0]:'.',
870 size>1?((const char *)ptr)[1]:'.',
871 size>2?((const char *)ptr)[2]:'.',
872 size>3?((const char *)ptr)[3]:'.',
873 size>4?((const char *)ptr)[4]:'.',
874 size>5?((const char *)ptr)[5]:'.');
Lev Walkin1bbc2002004-10-23 13:27:30 +0000875 break;
876 }
877
Lev Walkin2eeeedc2005-02-18 16:10:40 +0000878 ctx->phase = 4; /* "Phase out" on hard failure */
Lev Walkin1bbc2002004-10-23 13:27:30 +0000879 RETURN(RC_FAIL);
880}
881
Lev Walkina9cc46e2004-09-22 16:06:28 +0000882asn_enc_rval_t
Lev Walkin20696a42017-10-17 21:27:33 -0700883SEQUENCE_encode_xer(const asn_TYPE_descriptor_t *td, const void *sptr,
884 int ilevel, enum xer_encoder_flags_e flags,
885 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin28ba9db2017-08-31 02:06:58 -0700886 asn_enc_rval_t er;
887 int xcan = (flags & XER_F_CANONICAL);
888 asn_TYPE_descriptor_t *tmp_def_val_td = 0;
889 void *tmp_def_val = 0;
Lev Walkin494fb702017-08-07 20:07:00 -0700890 size_t edx;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000891
Lev Walkin28ba9db2017-08-31 02:06:58 -0700892 if(!sptr) ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000893
Lev Walkin28ba9db2017-08-31 02:06:58 -0700894 er.encoded = 0;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000895
Lev Walkin28ba9db2017-08-31 02:06:58 -0700896 for(edx = 0; edx < td->elements_count; edx++) {
897 asn_enc_rval_t tmper;
898 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkin20696a42017-10-17 21:27:33 -0700899 const void *memb_ptr;
Lev Walkin28ba9db2017-08-31 02:06:58 -0700900 const char *mname = elm->name;
901 unsigned int mlen = strlen(mname);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000902
Lev Walkin28ba9db2017-08-31 02:06:58 -0700903 if(elm->flags & ATF_POINTER) {
Lev Walkin20696a42017-10-17 21:27:33 -0700904 memb_ptr =
905 *(const void *const *)((const char *)sptr + elm->memb_offset);
Lev Walkin28ba9db2017-08-31 02:06:58 -0700906 if(!memb_ptr) {
907 assert(tmp_def_val == 0);
Lev Walkin20696a42017-10-17 21:27:33 -0700908 if(elm->default_value_set) {
909 if(elm->default_value_set(&tmp_def_val)) {
Lev Walkin28ba9db2017-08-31 02:06:58 -0700910 ASN__ENCODE_FAILED;
911 } else {
912 memb_ptr = tmp_def_val;
913 tmp_def_val_td = elm->type;
914 }
915 } else if(elm->optional) {
916 continue;
917 } else {
918 /* Mandatory element is missing */
919 ASN__ENCODE_FAILED;
920 }
921 }
922 } else {
Lev Walkin20696a42017-10-17 21:27:33 -0700923 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
Lev Walkin28ba9db2017-08-31 02:06:58 -0700924 }
Lev Walkina9cc46e2004-09-22 16:06:28 +0000925
Lev Walkin28ba9db2017-08-31 02:06:58 -0700926 if(!xcan) ASN__TEXT_INDENT(1, ilevel);
927 ASN__CALLBACK3("<", 1, mname, mlen, ">", 1);
Ryan Sleeviae8a6e42017-08-16 15:28:58 -0400928
Lev Walkin28ba9db2017-08-31 02:06:58 -0700929 /* Print the member itself */
930 tmper = elm->type->op->xer_encoder(elm->type, memb_ptr, ilevel + 1,
931 flags, cb, app_key);
932 if(tmp_def_val) {
933 ASN_STRUCT_FREE(*tmp_def_val_td, tmp_def_val);
934 tmp_def_val = 0;
935 }
936 if(tmper.encoded == -1) return tmper;
Lev Walkin4fe28822017-09-18 02:57:34 -0700937 er.encoded += tmper.encoded;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000938
Lev Walkin28ba9db2017-08-31 02:06:58 -0700939 ASN__CALLBACK3("</", 2, mname, mlen, ">", 1);
Lev Walkin28ba9db2017-08-31 02:06:58 -0700940 }
Lev Walkina9cc46e2004-09-22 16:06:28 +0000941
Lev Walkin28ba9db2017-08-31 02:06:58 -0700942 if(!xcan) ASN__TEXT_INDENT(1, ilevel - 1);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000943
Lev Walkin28ba9db2017-08-31 02:06:58 -0700944 ASN__ENCODED_OK(er);
Lev Walkin942fd082004-10-03 09:13:02 +0000945cb_failed:
Lev Walkin28ba9db2017-08-31 02:06:58 -0700946 if(tmp_def_val) ASN_STRUCT_FREE(*tmp_def_val_td, tmp_def_val);
947 ASN__ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000948}
949
Lev Walkinf15320b2004-06-03 03:38:44 +0000950int
Lev Walkin20696a42017-10-17 21:27:33 -0700951SEQUENCE_print(const asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
952 asn_app_consume_bytes_f *cb, void *app_key) {
953 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +0000954 int ret;
955
Lev Walkin8e8078a2004-09-26 13:10:40 +0000956 if(!sptr) return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000957
958 /* Dump preamble */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000959 if(cb(td->name, strlen(td->name), app_key) < 0
960 || cb(" ::= {", 6, app_key) < 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000961 return -1;
962
Lev Walkin449f8322004-08-20 13:23:42 +0000963 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +0000964 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +0000965 const void *memb_ptr;
966
Lev Walkincc93b0f2004-09-10 09:18:20 +0000967 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800968 memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +0000969 if(!memb_ptr) {
970 if(elm->optional) continue;
971 /* Print <absent> line */
972 /* Fall through */
973 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000974 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -0800975 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +0000976 }
977
978 /* Indentation */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000979 _i_INDENT(1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000980
981 /* Print the member's name and stuff */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000982 if(cb(elm->name, strlen(elm->name), app_key) < 0
983 || cb(": ", 2, app_key) < 0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000984 return -1;
985
986 /* Print the member itself */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800987 ret = elm->type->op->print_struct(elm->type, memb_ptr, ilevel + 1,
Lev Walkinf15320b2004-06-03 03:38:44 +0000988 cb, app_key);
989 if(ret) return ret;
Lev Walkinf15320b2004-06-03 03:38:44 +0000990 }
991
Lev Walkin8e8078a2004-09-26 13:10:40 +0000992 ilevel--;
993 _i_INDENT(1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000994
Lev Walkin8e8078a2004-09-26 13:10:40 +0000995 return (cb("}", 1, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000996}
997
998void
Lev Walkin8d99d7b2017-08-25 01:06:00 -0700999SEQUENCE_free(const asn_TYPE_descriptor_t *td, void *sptr,
1000 enum asn_struct_free_method method) {
Lev Walkinf6853ce2017-08-11 00:50:27 -07001001 size_t edx;
Vasil Velichkovaead8c52017-10-10 05:34:48 +03001002 const asn_SEQUENCE_specifics_t *specs =
1003 (const asn_SEQUENCE_specifics_t *)td->specifics;
1004 asn_struct_ctx_t *ctx; /* Decoder context */
Lev Walkinf15320b2004-06-03 03:38:44 +00001005
1006 if(!td || !sptr)
1007 return;
1008
1009 ASN_DEBUG("Freeing %s as SEQUENCE", td->name);
1010
Lev Walkin449f8322004-08-20 13:23:42 +00001011 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +00001012 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +00001013 void *memb_ptr;
Lev Walkincc93b0f2004-09-10 09:18:20 +00001014 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001015 memb_ptr = *(void **)((char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +00001016 if(memb_ptr)
Lev Walkinadcb5862006-03-17 02:11:12 +00001017 ASN_STRUCT_FREE(*elm->type, memb_ptr);
Lev Walkinf15320b2004-06-03 03:38:44 +00001018 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001019 memb_ptr = (void *)((char *)sptr + elm->memb_offset);
Lev Walkinadcb5862006-03-17 02:11:12 +00001020 ASN_STRUCT_FREE_CONTENTS_ONLY(*elm->type, memb_ptr);
Lev Walkinf15320b2004-06-03 03:38:44 +00001021 }
1022 }
1023
Vasil Velichkovaead8c52017-10-10 05:34:48 +03001024 /* Clean parsing context */
1025 ctx = (asn_struct_ctx_t *)((char *)sptr + specs->ctx_offset);
1026 FREEMEM(ctx->ptr);
1027
Lev Walkin8d99d7b2017-08-25 01:06:00 -07001028 switch(method) {
1029 case ASFM_FREE_EVERYTHING:
1030 FREEMEM(sptr);
1031 break;
1032 case ASFM_FREE_UNDERLYING:
1033 break;
1034 case ASFM_FREE_UNDERLYING_AND_RESET:
Lev Walkind84f6032017-10-03 16:33:59 -07001035 memset(
1036 sptr, 0,
1037 ((const asn_SEQUENCE_specifics_t *)(td->specifics))->struct_size);
Lev Walkin8d99d7b2017-08-25 01:06:00 -07001038 break;
1039 }
Lev Walkinf15320b2004-06-03 03:38:44 +00001040}
1041
1042int
Lev Walkin20696a42017-10-17 21:27:33 -07001043SEQUENCE_constraint(const asn_TYPE_descriptor_t *td, const void *sptr,
1044 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
1045 size_t edx;
Lev Walkinf15320b2004-06-03 03:38:44 +00001046
1047 if(!sptr) {
Lev Walkin7c1dc052016-03-14 03:08:15 -07001048 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +00001049 "%s: value not given (%s:%d)",
1050 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +00001051 return -1;
1052 }
1053
1054 /*
1055 * Iterate over structure members and check their validity.
1056 */
Lev Walkin449f8322004-08-20 13:23:42 +00001057 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin5e033762004-09-29 13:26:15 +00001058 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkinf15320b2004-06-03 03:38:44 +00001059 const void *memb_ptr;
1060
Lev Walkincc93b0f2004-09-10 09:18:20 +00001061 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001062 memb_ptr = *(const void * const *)((const char *)sptr + elm->memb_offset);
Lev Walkinac589332005-08-22 14:19:28 +00001063 if(!memb_ptr) {
1064 if(elm->optional)
1065 continue;
Lev Walkin7c1dc052016-03-14 03:08:15 -07001066 ASN__CTFAIL(app_key, td, sptr,
Lev Walkinac589332005-08-22 14:19:28 +00001067 "%s: mandatory element %s absent (%s:%d)",
1068 td->name, elm->name, __FILE__, __LINE__);
1069 return -1;
1070 }
Lev Walkinf15320b2004-06-03 03:38:44 +00001071 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001072 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
Lev Walkinf15320b2004-06-03 03:38:44 +00001073 }
1074
Lev Walkina5972be2017-09-29 23:15:58 -07001075 if(elm->encoding_constraints.general_constraints) {
1076 int ret = elm->encoding_constraints.general_constraints(elm->type, memb_ptr,
Lev Walkin1eded352006-07-13 11:19:01 +00001077 ctfailcb, app_key);
Lev Walkin449f8322004-08-20 13:23:42 +00001078 if(ret) return ret;
1079 } else {
Lev Walkina5972be2017-09-29 23:15:58 -07001080 return elm->type->encoding_constraints.general_constraints(elm->type,
Lev Walkin1eded352006-07-13 11:19:01 +00001081 memb_ptr, ctfailcb, app_key);
Lev Walkin449f8322004-08-20 13:23:42 +00001082 }
Lev Walkinf15320b2004-06-03 03:38:44 +00001083 }
1084
1085 return 0;
1086}
Lev Walkin59b176e2005-11-26 11:25:14 +00001087
Lev Walkin24810022017-08-25 12:16:11 -07001088#ifndef ASN_DISABLE_PER_SUPPORT
1089
Lev Walkin59b176e2005-11-26 11:25:14 +00001090asn_dec_rval_t
Lev Walkin20696a42017-10-17 21:27:33 -07001091SEQUENCE_decode_uper(const asn_codec_ctx_t *opt_codec_ctx,
1092 const asn_TYPE_descriptor_t *td,
Lev Walkin494fb702017-08-07 20:07:00 -07001093 const asn_per_constraints_t *constraints, void **sptr,
1094 asn_per_data_t *pd) {
Lev Walkin20696a42017-10-17 21:27:33 -07001095 const asn_SEQUENCE_specifics_t *specs = (const asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin59b176e2005-11-26 11:25:14 +00001096 void *st = *sptr; /* Target structure. */
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001097 int extpresent; /* Extension additions are present */
Lev Walkin59b176e2005-11-26 11:25:14 +00001098 uint8_t *opres; /* Presence of optional root members */
1099 asn_per_data_t opmd;
1100 asn_dec_rval_t rv;
Lev Walkin494fb702017-08-07 20:07:00 -07001101 size_t edx;
Lev Walkin59b176e2005-11-26 11:25:14 +00001102
1103 (void)constraints;
1104
Lev Walkin7c1dc052016-03-14 03:08:15 -07001105 if(ASN__STACK_OVERFLOW_CHECK(opt_codec_ctx))
1106 ASN__DECODE_FAILED;
Lev Walkin1d9e8dd2005-12-07 05:46:03 +00001107
Lev Walkin59b176e2005-11-26 11:25:14 +00001108 if(!st) {
1109 st = *sptr = CALLOC(1, specs->struct_size);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001110 if(!st) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001111 }
1112
1113 ASN_DEBUG("Decoding %s as SEQUENCE (UPER)", td->name);
1114
1115 /* Handle extensions */
1116 if(specs->ext_before >= 0) {
1117 extpresent = per_get_few_bits(pd, 1);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001118 if(extpresent < 0) ASN__DECODE_STARVED;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001119 } else {
1120 extpresent = 0;
Lev Walkin59b176e2005-11-26 11:25:14 +00001121 }
1122
1123 /* Prepare a place and read-in the presence bitmap */
Lev Walkin73a5cc62007-06-24 08:45:31 +00001124 memset(&opmd, 0, sizeof(opmd));
Lev Walkin59b176e2005-11-26 11:25:14 +00001125 if(specs->roms_count) {
1126 opres = (uint8_t *)MALLOC(((specs->roms_count + 7) >> 3) + 1);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001127 if(!opres) ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001128 /* Get the presence map */
1129 if(per_get_many_bits(pd, opres, 0, specs->roms_count)) {
1130 FREEMEM(opres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001131 ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001132 }
1133 opmd.buffer = opres;
Lev Walkin59b176e2005-11-26 11:25:14 +00001134 opmd.nbits = specs->roms_count;
1135 ASN_DEBUG("Read in presence bitmap for %s of %d bits (%x..)",
1136 td->name, specs->roms_count, *opres);
1137 } else {
1138 opres = 0;
Lev Walkin59b176e2005-11-26 11:25:14 +00001139 }
1140
1141 /*
1142 * Get the sequence ROOT elements.
1143 */
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001144 for(edx = 0; edx < td->elements_count; edx++) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001145 asn_TYPE_member_t *elm = &td->elements[edx];
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001146 void *memb_ptr; /* Pointer to the member */
Lev Walkin59b176e2005-11-26 11:25:14 +00001147 void **memb_ptr2; /* Pointer to that pointer */
1148
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001149 if(IN_EXTENSION_GROUP(specs, edx))
1150 continue;
1151
Lev Walkin59b176e2005-11-26 11:25:14 +00001152 /* Fetch the pointer to this member */
1153 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001154 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin59b176e2005-11-26 11:25:14 +00001155 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001156 memb_ptr = (char *)st + elm->memb_offset;
Lev Walkin59b176e2005-11-26 11:25:14 +00001157 memb_ptr2 = &memb_ptr;
1158 }
1159
1160 /* Deal with optionality */
1161 if(elm->optional) {
1162 int present = per_get_few_bits(&opmd, 1);
1163 ASN_DEBUG("Member %s->%s is optional, p=%d (%d->%d)",
1164 td->name, elm->name, present,
1165 (int)opmd.nboff, (int)opmd.nbits);
1166 if(present == 0) {
1167 /* This element is not present */
Lev Walkin20696a42017-10-17 21:27:33 -07001168 if(elm->default_value_set) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001169 /* Fill-in DEFAULT */
Lev Walkin20696a42017-10-17 21:27:33 -07001170 if(elm->default_value_set(memb_ptr2)) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001171 FREEMEM(opres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001172 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001173 }
Lev Walkin8032f7a2007-06-27 01:54:57 +00001174 ASN_DEBUG("Filled-in default");
Lev Walkin59b176e2005-11-26 11:25:14 +00001175 }
1176 /* The member is just not present */
1177 continue;
1178 }
1179 /* Fall through */
1180 }
1181
1182 /* Fetch the member from the stream */
Lev Walkinf6853ce2017-08-11 00:50:27 -07001183 ASN_DEBUG("Decoding member \"%s\" in %s", elm->name, td->name);
Lev Walkin9de6cd82017-08-10 05:47:46 -07001184
Lev Walkin75b6fe42017-08-27 01:03:22 -07001185 if(elm->flags & ATF_OPEN_TYPE) {
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001186 rv = OPEN_TYPE_uper_get(opt_codec_ctx, td, st, elm, pd);
1187 } else {
Lev Walkinf59dac92017-08-26 21:26:51 -07001188 rv = elm->type->op->uper_decoder(opt_codec_ctx, elm->type,
Lev Walkina5972be2017-09-29 23:15:58 -07001189 elm->encoding_constraints.per_constraints, memb_ptr2, pd);
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001190 }
1191 if(rv.code != RC_OK) {
Lev Walkin59b176e2005-11-26 11:25:14 +00001192 ASN_DEBUG("Failed decode %s in %s",
1193 elm->name, td->name);
1194 FREEMEM(opres);
1195 return rv;
1196 }
1197 }
1198
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001199 /* Optionality map is not needed anymore */
1200 FREEMEM(opres);
1201
Lev Walkin59b176e2005-11-26 11:25:14 +00001202 /*
1203 * Deal with extensions.
1204 */
1205 if(extpresent) {
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001206 ssize_t bmlength;
1207 uint8_t *epres; /* Presence of extension members */
1208 asn_per_data_t epmd;
Lev Walkin59b176e2005-11-26 11:25:14 +00001209
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001210 bmlength = uper_get_nslength(pd);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001211 if(bmlength < 0) ASN__DECODE_STARVED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001212
Lev Walkinaaae9bf2010-10-24 16:56:30 -07001213 ASN_DEBUG("Extensions %ld present in %s", (long)bmlength, td->name);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001214
1215 epres = (uint8_t *)MALLOC((bmlength + 15) >> 3);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001216 if(!epres) ASN__DECODE_STARVED;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001217
1218 /* Get the extensions map */
Simo Sorcece71d912015-09-03 16:34:20 -04001219 if(per_get_many_bits(pd, epres, 0, bmlength)) {
1220 FREEMEM(epres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001221 ASN__DECODE_STARVED;
Simo Sorcece71d912015-09-03 16:34:20 -04001222 }
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001223
Lev Walkin73a5cc62007-06-24 08:45:31 +00001224 memset(&epmd, 0, sizeof(epmd));
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001225 epmd.buffer = epres;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001226 epmd.nbits = bmlength;
Lev Walkinaaae9bf2010-10-24 16:56:30 -07001227 ASN_DEBUG("Read in extensions bitmap for %s of %ld bits (%x..)",
1228 td->name, (long)bmlength, *epres);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001229
1230 /* Go over extensions and read them in */
1231 for(edx = specs->ext_after + 1; edx < td->elements_count; edx++) {
1232 asn_TYPE_member_t *elm = &td->elements[edx];
1233 void *memb_ptr; /* Pointer to the member */
1234 void **memb_ptr2; /* Pointer to that pointer */
1235 int present;
1236
1237 if(!IN_EXTENSION_GROUP(specs, edx)) {
Lev Walkin24810022017-08-25 12:16:11 -07001238 ASN_DEBUG("%zu is not an extension", edx);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001239 continue;
1240 }
1241
1242 /* Fetch the pointer to this member */
1243 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001244 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001245 } else {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001246 memb_ptr = (void *)((char *)st + elm->memb_offset);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001247 memb_ptr2 = &memb_ptr;
1248 }
1249
1250 present = per_get_few_bits(&epmd, 1);
1251 if(present <= 0) {
1252 if(present < 0) break; /* No more extensions */
1253 continue;
1254 }
1255
1256 ASN_DEBUG("Decoding member %s in %s %p", elm->name, td->name, *memb_ptr2);
Lev Walkin9218bc12007-06-27 04:09:37 +00001257 rv = uper_open_type_get(opt_codec_ctx, elm->type,
Lev Walkina5972be2017-09-29 23:15:58 -07001258 elm->encoding_constraints.per_constraints, memb_ptr2, pd);
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001259 if(rv.code != RC_OK) {
1260 FREEMEM(epres);
1261 return rv;
1262 }
1263 }
1264
1265 /* Skip over overflow extensions which aren't present
1266 * in this system's version of the protocol */
Lev Walkin06230f72007-06-26 09:52:44 +00001267 for(;;) {
Lev Walkina2987ea2007-06-26 23:56:54 +00001268 ASN_DEBUG("Getting overflow extensions");
Lev Walkin06230f72007-06-26 09:52:44 +00001269 switch(per_get_few_bits(&epmd, 1)) {
1270 case -1: break;
1271 case 0: continue;
1272 default:
Lev Walkin9218bc12007-06-27 04:09:37 +00001273 if(uper_open_type_skip(opt_codec_ctx, pd)) {
Lev Walkin06230f72007-06-26 09:52:44 +00001274 FREEMEM(epres);
Lev Walkin7c1dc052016-03-14 03:08:15 -07001275 ASN__DECODE_STARVED;
Lev Walkin06230f72007-06-26 09:52:44 +00001276 }
Lev Walkin59b176e2005-11-26 11:25:14 +00001277 }
Lev Walkin06230f72007-06-26 09:52:44 +00001278 break;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001279 }
Lev Walkin59b176e2005-11-26 11:25:14 +00001280
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001281 FREEMEM(epres);
1282 }
1283
1284 /* Fill DEFAULT members in extensions */
1285 for(edx = specs->roms_count; edx < specs->roms_count
1286 + specs->aoms_count; edx++) {
1287 asn_TYPE_member_t *elm = &td->elements[edx];
1288 void **memb_ptr2; /* Pointer to member pointer */
1289
Lev Walkin20696a42017-10-17 21:27:33 -07001290 if(!elm->default_value_set) continue;
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001291
1292 /* Fetch the pointer to this member */
1293 if(elm->flags & ATF_POINTER) {
Lev Walkinaa61a0f2014-01-13 23:08:47 -08001294 memb_ptr2 = (void **)((char *)st
Lev Walkin5b78e1c2007-06-24 06:26:47 +00001295 + elm->memb_offset);
1296 if(*memb_ptr2) continue;
1297 } else {
1298 continue; /* Extensions are all optionals */
1299 }
1300
1301 /* Set default value */
Lev Walkin20696a42017-10-17 21:27:33 -07001302 if(elm->default_value_set(memb_ptr2)) {
1303 ASN__DECODE_FAILED;
Lev Walkin59b176e2005-11-26 11:25:14 +00001304 }
1305 }
1306
1307 rv.consumed = 0;
1308 rv.code = RC_OK;
1309 return rv;
1310}
1311
Lev Walkin62258e22007-06-23 23:50:25 +00001312static int
Lev Walkin20696a42017-10-17 21:27:33 -07001313SEQUENCE__handle_extensions(const asn_TYPE_descriptor_t *td, const void *sptr,
1314 asn_per_outp_t *po1, asn_per_outp_t *po2) {
1315 const asn_SEQUENCE_specifics_t *specs
Lev Walkind84f6032017-10-03 16:33:59 -07001316 = (const asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001317 int exts_present = 0;
1318 int exts_count = 0;
Lev Walkin494fb702017-08-07 20:07:00 -07001319 size_t edx;
Lev Walkin62258e22007-06-23 23:50:25 +00001320
1321 if(specs->ext_before < 0)
1322 return 0;
1323
1324 /* Find out which extensions are present */
1325 for(edx = specs->ext_after + 1; edx < td->elements_count; edx++) {
1326 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkin20696a42017-10-17 21:27:33 -07001327 const void *memb_ptr; /* Pointer to the member */
1328 const void *const *memb_ptr2; /* Pointer to that pointer */
1329 int present;
Lev Walkin62258e22007-06-23 23:50:25 +00001330
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001331 if(!IN_EXTENSION_GROUP(specs, edx)) {
Lev Walkin24810022017-08-25 12:16:11 -07001332 ASN_DEBUG("%s (@%zu) is not extension", elm->type->name, edx);
Lev Walkin62258e22007-06-23 23:50:25 +00001333 continue;
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001334 }
Lev Walkin62258e22007-06-23 23:50:25 +00001335
1336 /* Fetch the pointer to this member */
1337 if(elm->flags & ATF_POINTER) {
Lev Walkin20696a42017-10-17 21:27:33 -07001338 memb_ptr2 =
1339 (const void *const *)((const char *)sptr + elm->memb_offset);
1340 present = (*memb_ptr2 != 0);
Lev Walkin62258e22007-06-23 23:50:25 +00001341 } else {
Lev Walkin20696a42017-10-17 21:27:33 -07001342 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
1343 memb_ptr2 = &memb_ptr;
Lev Walkin62258e22007-06-23 23:50:25 +00001344 present = 1;
1345 }
1346
Lev Walkin24810022017-08-25 12:16:11 -07001347 ASN_DEBUG("checking %s (@%zu) present => %d",
Lev Walkin06230f72007-06-26 09:52:44 +00001348 elm->type->name, edx, present);
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001349 exts_count++;
1350 exts_present += present;
Lev Walkin62258e22007-06-23 23:50:25 +00001351
1352 /* Encode as presence marker */
1353 if(po1 && per_put_few_bits(po1, present, 1))
1354 return -1;
1355 /* Encode as open type field */
Lev Walkin9218bc12007-06-27 04:09:37 +00001356 if(po2 && present && uper_open_type_put(elm->type,
Lev Walkina5972be2017-09-29 23:15:58 -07001357 elm->encoding_constraints.per_constraints, *memb_ptr2, po2))
Lev Walkin62258e22007-06-23 23:50:25 +00001358 return -1;
1359
1360 }
1361
Lev Walkinf55a6dd2007-06-24 00:35:51 +00001362 return exts_present ? exts_count : 0;
Lev Walkin62258e22007-06-23 23:50:25 +00001363}
1364
Lev Walkin523de9e2006-08-18 01:34:18 +00001365asn_enc_rval_t
Lev Walkin20696a42017-10-17 21:27:33 -07001366SEQUENCE_encode_uper(const asn_TYPE_descriptor_t *td,
1367 const asn_per_constraints_t *constraints, const void *sptr,
Lev Walkin494fb702017-08-07 20:07:00 -07001368 asn_per_outp_t *po) {
Lev Walkin20696a42017-10-17 21:27:33 -07001369 const asn_SEQUENCE_specifics_t *specs
Lev Walkind84f6032017-10-03 16:33:59 -07001370 = (const asn_SEQUENCE_specifics_t *)td->specifics;
Lev Walkin523de9e2006-08-18 01:34:18 +00001371 asn_enc_rval_t er;
Lev Walkin62258e22007-06-23 23:50:25 +00001372 int n_extensions;
Lev Walkin494fb702017-08-07 20:07:00 -07001373 size_t edx;
1374 size_t i;
Lev Walkin523de9e2006-08-18 01:34:18 +00001375
1376 (void)constraints;
1377
1378 if(!sptr)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001379 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001380
1381 er.encoded = 0;
1382
1383 ASN_DEBUG("Encoding %s as SEQUENCE (UPER)", td->name);
Lev Walkin62258e22007-06-23 23:50:25 +00001384
1385
1386 /*
1387 * X.691#18.1 Whether structure is extensible
1388 * and whether to encode extensions
1389 */
1390 if(specs->ext_before >= 0) {
Lev Walkin20696a42017-10-17 21:27:33 -07001391 n_extensions = SEQUENCE__handle_extensions(td, sptr, 0, 0);
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001392 if(n_extensions < 0)
Lev Walkin494fb702017-08-07 20:07:00 -07001393 ASN__ENCODE_FAILED;
1394 if(per_put_few_bits(po, n_extensions ? 1 : 0, 1))
1395 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001396 } else {
1397 n_extensions = 0; /* There are no extensions to encode */
1398 }
Lev Walkin523de9e2006-08-18 01:34:18 +00001399
1400 /* Encode a presence bitmap */
1401 for(i = 0; i < specs->roms_count; i++) {
Lev Walkinc46b7cb2006-08-18 02:27:55 +00001402 asn_TYPE_member_t *elm;
Lev Walkin20696a42017-10-17 21:27:33 -07001403 const void *memb_ptr; /* Pointer to the member */
1404 const void *const *memb_ptr2; /* Pointer to that pointer */
1405 int present;
Lev Walkin523de9e2006-08-18 01:34:18 +00001406
Lev Walkinc46b7cb2006-08-18 02:27:55 +00001407 edx = specs->oms[i];
1408 elm = &td->elements[edx];
1409
Lev Walkin523de9e2006-08-18 01:34:18 +00001410 /* Fetch the pointer to this member */
1411 if(elm->flags & ATF_POINTER) {
Lev Walkin20696a42017-10-17 21:27:33 -07001412 memb_ptr2 =
1413 (const void *const *)((const char *)sptr + elm->memb_offset);
1414 present = (*memb_ptr2 != 0);
Lev Walkin523de9e2006-08-18 01:34:18 +00001415 } else {
Lev Walkin20696a42017-10-17 21:27:33 -07001416 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
1417 memb_ptr2 = &memb_ptr;
Lev Walkin523de9e2006-08-18 01:34:18 +00001418 present = 1;
1419 }
1420
1421 /* Eliminate default values */
Lev Walkin20696a42017-10-17 21:27:33 -07001422 if(present && elm->default_value_cmp
1423 && elm->default_value_cmp(*memb_ptr2) == 0)
1424 present = 0;
Lev Walkin523de9e2006-08-18 01:34:18 +00001425
1426 ASN_DEBUG("Element %s %s %s->%s is %s",
1427 elm->flags & ATF_POINTER ? "ptr" : "inline",
Lev Walkin20696a42017-10-17 21:27:33 -07001428 elm->default_value_cmp ? "def" : "wtv",
Lev Walkin523de9e2006-08-18 01:34:18 +00001429 td->name, elm->name, present ? "present" : "absent");
1430 if(per_put_few_bits(po, present, 1))
Lev Walkin7c1dc052016-03-14 03:08:15 -07001431 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001432 }
1433
1434 /*
Lev Walkin62258e22007-06-23 23:50:25 +00001435 * Encode the sequence ROOT elements.
Lev Walkin523de9e2006-08-18 01:34:18 +00001436 */
Lev Walkin62258e22007-06-23 23:50:25 +00001437 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 +00001438 for(edx = 0; edx < ((specs->ext_after < 0)
Vasil Velichkovc3e00192017-10-18 21:12:01 +03001439 ? td->elements_count : (size_t)specs->ext_before - 1); edx++) {
Lev Walkin4d22b622007-07-23 09:58:25 +00001440
Lev Walkin523de9e2006-08-18 01:34:18 +00001441 asn_TYPE_member_t *elm = &td->elements[edx];
Lev Walkin20696a42017-10-17 21:27:33 -07001442 const void *memb_ptr; /* Pointer to the member */
1443 const void *const *memb_ptr2; /* Pointer to that pointer */
Lev Walkin523de9e2006-08-18 01:34:18 +00001444
Lev Walkin20696a42017-10-17 21:27:33 -07001445 if(IN_EXTENSION_GROUP(specs, edx))
Lev Walkin4d22b622007-07-23 09:58:25 +00001446 continue;
1447
Lev Walkina2987ea2007-06-26 23:56:54 +00001448 ASN_DEBUG("About to encode %s", elm->type->name);
1449
Lev Walkin523de9e2006-08-18 01:34:18 +00001450 /* Fetch the pointer to this member */
1451 if(elm->flags & ATF_POINTER) {
Lev Walkin20696a42017-10-17 21:27:33 -07001452 memb_ptr2 =
1453 (const void *const *)((const char *)sptr + elm->memb_offset);
1454 if(!*memb_ptr2) {
Lev Walkin24810022017-08-25 12:16:11 -07001455 ASN_DEBUG("Element %s %zu not present",
Lev Walkin523de9e2006-08-18 01:34:18 +00001456 elm->name, edx);
1457 if(elm->optional)
1458 continue;
1459 /* Mandatory element is missing */
Lev Walkin7c1dc052016-03-14 03:08:15 -07001460 ASN__ENCODE_FAILED;
Lev Walkin523de9e2006-08-18 01:34:18 +00001461 }
1462 } else {
Lev Walkin20696a42017-10-17 21:27:33 -07001463 memb_ptr = (const void *)((const char *)sptr + elm->memb_offset);
1464 memb_ptr2 = &memb_ptr;
Lev Walkin523de9e2006-08-18 01:34:18 +00001465 }
1466
1467 /* Eliminate default values */
Lev Walkin20696a42017-10-17 21:27:33 -07001468 if(elm->default_value_cmp && elm->default_value_cmp(*memb_ptr2) == 0)
Lev Walkin523de9e2006-08-18 01:34:18 +00001469 continue;
1470
Lev Walkin4d22b622007-07-23 09:58:25 +00001471 ASN_DEBUG("Encoding %s->%s", td->name, elm->name);
Lev Walkina5972be2017-09-29 23:15:58 -07001472 er = elm->type->op->uper_encoder(elm->type, elm->encoding_constraints.per_constraints,
Lev Walkin523de9e2006-08-18 01:34:18 +00001473 *memb_ptr2, po);
1474 if(er.encoded == -1)
1475 return er;
1476 }
1477
Lev Walkin62258e22007-06-23 23:50:25 +00001478 /* No extensions to encode */
Lev Walkin7c1dc052016-03-14 03:08:15 -07001479 if(!n_extensions) ASN__ENCODED_OK(er);
Lev Walkin62258e22007-06-23 23:50:25 +00001480
1481 ASN_DEBUG("Length of %d bit-map", n_extensions);
1482 /* #18.8. Write down the presence bit-map length. */
1483 if(uper_put_nslength(po, n_extensions))
Lev Walkin7c1dc052016-03-14 03:08:15 -07001484 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001485
1486 ASN_DEBUG("Bit-map of %d elements", n_extensions);
1487 /* #18.7. Encoding the extensions presence bit-map. */
1488 /* TODO: act upon NOTE in #18.7 for canonical PER */
Lev Walkin20696a42017-10-17 21:27:33 -07001489 if(SEQUENCE__handle_extensions(td, sptr, po, 0) != n_extensions)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001490 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001491
1492 ASN_DEBUG("Writing %d extensions", n_extensions);
1493 /* #18.9. Encode extensions as open type fields. */
Lev Walkin20696a42017-10-17 21:27:33 -07001494 if(SEQUENCE__handle_extensions(td, sptr, 0, po) != n_extensions)
Lev Walkin7c1dc052016-03-14 03:08:15 -07001495 ASN__ENCODE_FAILED;
Lev Walkin62258e22007-06-23 23:50:25 +00001496
Lev Walkin7c1dc052016-03-14 03:08:15 -07001497 ASN__ENCODED_OK(er);
Lev Walkin523de9e2006-08-18 01:34:18 +00001498}
1499
Lev Walkin24810022017-08-25 12:16:11 -07001500#endif /* ASN_DISABLE_PER_SUPPORT */
1501
Lev Walkincd2f48e2017-08-10 02:14:59 -07001502int
1503SEQUENCE_compare(const asn_TYPE_descriptor_t *td, const void *aptr,
1504 const void *bptr) {
1505 size_t edx;
1506
1507 for(edx = 0; edx < td->elements_count; edx++) {
1508 asn_TYPE_member_t *elm = &td->elements[edx];
1509 const void *amemb;
1510 const void *bmemb;
1511 int ret;
1512
1513 if(elm->flags & ATF_POINTER) {
1514 amemb =
1515 *(const void *const *)((const char *)aptr + elm->memb_offset);
1516 bmemb =
1517 *(const void *const *)((const char *)bptr + elm->memb_offset);
1518 if(!amemb) {
1519 if(!bmemb) continue;
Lev Walkin42f6c882017-10-20 02:39:08 -07001520 if(elm->default_value_cmp
1521 && elm->default_value_cmp(bmemb) == 0) {
1522 /* A is absent, but B is present and equal to DEFAULT */
1523 continue;
1524 }
Lev Walkincd2f48e2017-08-10 02:14:59 -07001525 return -1;
1526 } else if(!bmemb) {
Lev Walkin42f6c882017-10-20 02:39:08 -07001527 if(elm->default_value_cmp
1528 && elm->default_value_cmp(amemb) == 0) {
1529 /* B is absent, but A is present and equal to DEFAULT */
1530 continue;
1531 }
Lev Walkincd2f48e2017-08-10 02:14:59 -07001532 return 1;
1533 }
1534 } else {
1535 amemb = (const void *)((const char *)aptr + elm->memb_offset);
1536 bmemb = (const void *)((const char *)bptr + elm->memb_offset);
1537 }
1538
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001539 ret = elm->type->op->compare_struct(elm->type, amemb, bmemb);
Lev Walkincd2f48e2017-08-10 02:14:59 -07001540 if(ret != 0) return ret;
1541 }
1542
1543 return 0;
1544}
1545
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001546asn_TYPE_operation_t asn_OP_SEQUENCE = {
1547 SEQUENCE_free,
1548 SEQUENCE_print,
1549 SEQUENCE_compare,
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001550 SEQUENCE_decode_ber,
1551 SEQUENCE_encode_der,
1552 SEQUENCE_decode_xer,
1553 SEQUENCE_encode_xer,
1554#ifdef ASN_DISABLE_OER_SUPPORT
1555 0,
1556 0,
1557#else
1558 SEQUENCE_decode_oer,
1559 SEQUENCE_encode_oer,
1560#endif /* ASN_DISABLE_OER_SUPPORT */
1561#ifdef ASN_DISABLE_PER_SUPPORT
1562 0,
1563 0,
1564#else
1565 SEQUENCE_decode_uper,
1566 SEQUENCE_encode_uper,
1567#endif /* ASN_DISABLE_PER_SUPPORT */
Lev Walkina5972be2017-09-29 23:15:58 -07001568 SEQUENCE_random_fill,
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +08001569 0 /* Use generic outmost tag fetcher */
1570};
1571
Lev Walkina5972be2017-09-29 23:15:58 -07001572
1573asn_random_fill_result_t
1574SEQUENCE_random_fill(const asn_TYPE_descriptor_t *td, void **sptr,
1575 const asn_encoding_constraints_t *constr,
1576 size_t max_length) {
1577 const asn_SEQUENCE_specifics_t *specs =
1578 (const asn_SEQUENCE_specifics_t *)td->specifics;
1579 asn_random_fill_result_t result_ok = {ARFILL_OK, 0};
1580 asn_random_fill_result_t result_failed = {ARFILL_FAILED, 0};
1581 asn_random_fill_result_t result_skipped = {ARFILL_SKIPPED, 0};
1582 void *st = *sptr;
1583 size_t edx;
1584
1585 if(max_length == 0) return result_skipped;
1586
1587 (void)constr;
1588
1589 if(st == NULL) {
1590 st = CALLOC(1, specs->struct_size);
1591 if(st == NULL) {
1592 return result_failed;
1593 }
1594 }
1595
1596 for(edx = 0; edx < td->elements_count; edx++) {
1597 const asn_TYPE_member_t *elm = &td->elements[edx];
1598 void *memb_ptr; /* Pointer to the member */
1599 void **memb_ptr2; /* Pointer to that pointer */
1600 asn_random_fill_result_t tmpres;
1601
1602 if(elm->optional && asn_random_between(0, 4) == 2) {
1603 /* Sometimes decide not to fill the optional value */
1604 continue;
1605 }
1606
1607 if(elm->flags & ATF_POINTER) {
1608 /* Member is a pointer to another structure */
1609 memb_ptr2 = (void **)((char *)st + elm->memb_offset);
1610 } else {
1611 memb_ptr = (char *)st + elm->memb_offset;
1612 memb_ptr2 = &memb_ptr;
1613 }
1614
1615 tmpres = elm->type->op->random_fill(
1616 elm->type, memb_ptr2, &elm->encoding_constraints,
1617 max_length > result_ok.length ? max_length - result_ok.length : 0);
1618 switch(tmpres.code) {
1619 case ARFILL_OK:
1620 result_ok.length += tmpres.length;
1621 continue;
1622 case ARFILL_SKIPPED:
1623 assert(!(elm->flags & ATF_POINTER) || *memb_ptr2 == NULL);
1624 continue;
1625 case ARFILL_FAILED:
1626 if(st == *sptr) {
1627 ASN_STRUCT_RESET(*td, st);
1628 } else {
1629 ASN_STRUCT_FREE(*td, st);
1630 }
1631 return tmpres;
1632 }
1633 }
1634
1635 *sptr = st;
1636
1637 return result_ok;
1638}
1639