blob: cda6c16d1e5e04d38921f5c79108a77181692fd8 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin99414dc2004-09-29 13:21:23 +00002 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00006#include <assert.h>
7
Lev Walkincc6a9102004-09-23 22:06:26 +00008#undef ADVANCE
Lev Walkin5ccf1eb2004-09-24 20:58:47 +00009#define ADVANCE(num_bytes) do { \
10 size_t num = num_bytes; \
11 ptr = ((char *)ptr) + num; \
12 size -= num; \
13 consumed_myself += num; \
Lev Walkinf15320b2004-06-03 03:38:44 +000014 } while(0)
Lev Walkincc6a9102004-09-23 22:06:26 +000015#undef RETURN
Lev Walkin5ccf1eb2004-09-24 20:58:47 +000016#define RETURN(_code) do { \
17 ber_dec_rval_t rval; \
18 rval.code = _code; \
19 if(opt_ctx) opt_ctx->step = step; /* Save context */ \
20 if(_code == RC_OK || opt_ctx) \
21 rval.consumed = consumed_myself; \
22 else \
23 rval.consumed = 0; /* Context-free */ \
24 return rval; \
Lev Walkinf15320b2004-06-03 03:38:44 +000025 } while(0)
26
27/*
28 * The BER decoder of any type.
29 */
30ber_dec_rval_t
Lev Walkin99414dc2004-09-29 13:21:23 +000031ber_decode(asn_codec_ctx_t *opt_codec_ctx,
32 asn_TYPE_descriptor_t *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +000033 void **struct_ptr, void *ptr, size_t size) {
Lev Walkin99414dc2004-09-29 13:21:23 +000034 asn_codec_ctx_t s_codec_ctx;
35
36 /*
37 * Satisfy the requirement that the codec context
38 * must be allocated on the stack.
39 */
40 if(opt_codec_ctx && opt_codec_ctx->max_stack_size) {
41 s_codec_ctx = *opt_codec_ctx;
42 opt_codec_ctx = &s_codec_ctx;
43 }
Lev Walkinf15320b2004-06-03 03:38:44 +000044
45 /*
46 * Invoke type-specific decoder.
47 */
Lev Walkin99414dc2004-09-29 13:21:23 +000048 return type_descriptor->ber_decoder(opt_codec_ctx, type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +000049 struct_ptr, /* Pointer to the destination structure */
50 ptr, size, /* Buffer and its size */
51 0 /* Default tag mode is 0 */
52 );
53}
54
55/*
56 * Check the set of <TL<TL<TL...>>> tags matches the definition.
57 */
58ber_dec_rval_t
Lev Walkin99414dc2004-09-29 13:21:23 +000059ber_check_tags(asn_codec_ctx_t *opt_codec_ctx,
60 asn_TYPE_descriptor_t *td, asn_struct_ctx_t *opt_ctx,
Lev Walkin8e8078a2004-09-26 13:10:40 +000061 void *ptr, size_t size, int tag_mode, int last_tag_form,
Lev Walkinf15320b2004-06-03 03:38:44 +000062 ber_tlv_len_t *last_length, int *opt_tlv_form) {
63 ssize_t consumed_myself = 0;
64 ssize_t tag_len;
65 ssize_t len_len;
66 ber_tlv_tag_t tlv_tag;
67 ber_tlv_len_t tlv_len;
68 ber_tlv_len_t limit_len = -1;
69 int expect_00_terminators = 0;
70 int tlv_constr = -1; /* If CHOICE, opt_tlv_form is not given */
Lev Walkin5ccf1eb2004-09-24 20:58:47 +000071 int step = opt_ctx ? opt_ctx->step : 0; /* Where we left previously */
Lev Walkinf15320b2004-06-03 03:38:44 +000072 int tagno;
73
Lev Walkinbaaa24f2004-09-29 14:19:14 +000074 /*
75 * Make sure we didn't exceed the maximum stack size.
76 */
Lev Walkin99414dc2004-09-29 13:21:23 +000077 if(opt_codec_ctx && opt_codec_ctx->max_stack_size) {
78 ptrdiff_t usedstack = ((char *)opt_codec_ctx - (char *)&size);
Lev Walkinbaaa24f2004-09-29 14:19:14 +000079 /* double negative is required to avoid int wrap-around */
Lev Walkin99414dc2004-09-29 13:21:23 +000080 if(usedstack > 0) usedstack = -usedstack;
81 ASN_DEBUG("Current stack size %ld", -(long)usedstack);
82 if(usedstack < -(ptrdiff_t)opt_codec_ctx->max_stack_size) {
83 ASN_DEBUG("Stack limit %ld reached",
84 (long)opt_codec_ctx->max_stack_size);
85 RETURN(RC_FAIL);
86 }
87 }
88
Lev Walkinf15320b2004-06-03 03:38:44 +000089 /*
Lev Walkin906654e2004-09-10 15:49:15 +000090 * So what does all this implicit skip stuff mean?
Lev Walkin26e22222004-06-06 07:59:35 +000091 * Imagine two types,
Lev Walkinf15320b2004-06-03 03:38:44 +000092 * A ::= [5] IMPLICIT T
93 * B ::= [2] EXPLICIT T
94 * Where T is defined as
95 * T ::= [4] IMPLICIT SEQUENCE { ... }
96 *
97 * Let's say, we are starting to decode type A, given the
98 * following TLV stream: <5> <0>. What does this mean?
99 * It means that the type A contains type T which is,
100 * in turn, empty.
101 * Remember though, that we are still in A. We cannot
102 * just pass control to the type T decoder. Why? Because
103 * the type T decoder expects <4> <0>, not <5> <0>.
104 * So, we must make sure we are going to receive <5> while
105 * still in A, then pass control to the T decoder, indicating
106 * that the tag <4> was implicitly skipped. The decoder of T
107 * hence will be prepared to treat <4> as valid tag, and decode
108 * it appropriately.
109 */
110
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000111 tagno = step /* Continuing where left previously */
Lev Walkinf15320b2004-06-03 03:38:44 +0000112 + (tag_mode==1?-1:0)
113 ;
Lev Walkinf7a6c6d2004-07-21 03:55:44 +0000114 ASN_DEBUG("ber_check_tags(%s, size=%ld, tm=%d, step=%d, tagno=%d)",
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000115 td->name, (long)size, tag_mode, step, tagno);
Lev Walkin99414dc2004-09-29 13:21:23 +0000116 /* assert(td->tags_count >= 1) May not be the case for CHOICE or ANY */
Lev Walkin7210fdb2004-09-04 04:44:30 +0000117
Lev Walkin906654e2004-09-10 15:49:15 +0000118 if(tag_mode == 0 && tagno == td->tags_count) {
Lev Walkin7210fdb2004-09-04 04:44:30 +0000119 /*
120 * This must be the _untagged_ ANY type,
121 * which outermost tag isn't known in advance.
122 * Fetch the tag and length separately.
123 */
124 tag_len = ber_fetch_tag(ptr, size, &tlv_tag);
125 switch(tag_len) {
126 case -1: RETURN(RC_FAIL);
127 case 0: RETURN(RC_WMORE);
128 }
129 tlv_constr = BER_TLV_CONSTRUCTED(ptr);
130 len_len = ber_fetch_length(tlv_constr,
131 (char *)ptr + tag_len, size - tag_len, &tlv_len);
132 switch(len_len) {
133 case -1: RETURN(RC_FAIL);
134 case 0: RETURN(RC_WMORE);
135 }
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000136 ASN_DEBUG("Advancing %ld in ANY case",
137 (long)(tag_len + len_len));
Lev Walkincc6a9102004-09-23 22:06:26 +0000138 ADVANCE(tag_len + len_len);
Lev Walkin7210fdb2004-09-04 04:44:30 +0000139 } else {
140 assert(tagno < td->tags_count); /* At least one loop */
141 }
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000142 for((void)tagno; tagno < td->tags_count; tagno++, step++) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000143
144 /*
145 * Fetch and process T from TLV.
146 */
147 tag_len = ber_fetch_tag(ptr, size, &tlv_tag);
Lev Walkin00d36022004-10-05 06:35:43 +0000148 ASN_DEBUG("Fetching tag from {%p,%ld}: "
149 "len %ld, step %d, tagno %d got %s",
Lev Walkinf15320b2004-06-03 03:38:44 +0000150 ptr, (long)size,
Lev Walkin00d36022004-10-05 06:35:43 +0000151 (long)tag_len, step, tagno,
Lev Walkinf15320b2004-06-03 03:38:44 +0000152 ber_tlv_tag_string(tlv_tag));
153 switch(tag_len) {
154 case -1: RETURN(RC_FAIL);
155 case 0: RETURN(RC_WMORE);
156 }
157
158 tlv_constr = BER_TLV_CONSTRUCTED(ptr);
159
160 /*
161 * If {I}, don't check anything.
162 * If {I,B,C}, check B and C unless we're at I.
163 */
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000164 if(tag_mode != 0 && step == 0) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000165 /*
166 * We don't expect tag to match here.
167 * It's just because we don't know how the tag
168 * is supposed to look like.
169 */
170 } else {
171 assert(tagno >= 0); /* Guaranteed by the code above */
Lev Walkinf7a6c6d2004-07-21 03:55:44 +0000172 if(tlv_tag != td->tags[tagno]) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000173 /*
174 * Unexpected tag. Too bad.
175 */
176 ASN_DEBUG("Expected: %s, expectation failed",
Lev Walkinf7a6c6d2004-07-21 03:55:44 +0000177 ber_tlv_tag_string(td->tags[tagno]));
Lev Walkinf15320b2004-06-03 03:38:44 +0000178 RETURN(RC_FAIL);
179 }
180 }
181
182 /*
183 * Attention: if there are more tags expected,
184 * ensure that the current tag is presented
185 * in constructed form (it contains other tags!).
186 * If this one is the last one, check that the tag form
187 * matches the one given in descriptor.
188 */
Lev Walkinf7a6c6d2004-07-21 03:55:44 +0000189 if(tagno < (td->tags_count - 1)) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000190 if(tlv_constr == 0) {
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000191 ASN_DEBUG("tlv_constr = %d, expfail",
192 tlv_constr);
Lev Walkinf15320b2004-06-03 03:38:44 +0000193 RETURN(RC_FAIL);
194 }
195 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000196 if(last_tag_form != tlv_constr
197 && last_tag_form != -1) {
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000198 ASN_DEBUG("last_tag_form %d != %d",
Lev Walkin8e8078a2004-09-26 13:10:40 +0000199 last_tag_form, tlv_constr);
Lev Walkinf15320b2004-06-03 03:38:44 +0000200 RETURN(RC_FAIL);
201 }
202 }
203
204 /*
205 * Fetch and process L from TLV.
206 */
207 len_len = ber_fetch_length(tlv_constr,
Lev Walkin4d9528c2004-08-11 08:10:13 +0000208 (char *)ptr + tag_len, size - tag_len, &tlv_len);
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000209 ASN_DEBUG("Fetchinig len = %ld", (long)len_len);
Lev Walkinf15320b2004-06-03 03:38:44 +0000210 switch(len_len) {
211 case -1: RETURN(RC_FAIL);
212 case 0: RETURN(RC_WMORE);
213 }
214
215 /*
216 * FIXME
217 * As of today, the chain of tags
218 * must either contain several indefinite length TLVs,
219 * or several definite length ones.
220 * No mixing is allowed.
221 */
222 if(tlv_len == -1) {
223 /*
224 * Indefinite length.
225 */
226 if(limit_len == -1) {
227 expect_00_terminators++;
228 } else {
229 ASN_DEBUG("Unexpected indefinite length "
230 "in a chain of definite lengths");
231 RETURN(RC_FAIL);
232 }
233 ADVANCE(tag_len + len_len);
234 continue;
235 } else {
236 if(expect_00_terminators) {
237 ASN_DEBUG("Unexpected definite length "
238 "in a chain of indefinite lengths");
239 RETURN(RC_FAIL);
240 }
241 }
242
243 /*
244 * Check that multiple TLVs specify ever decreasing length,
245 * which is consistent.
246 */
247 if(limit_len == -1) {
248 limit_len = tlv_len + tag_len + len_len;
Lev Walkin99414dc2004-09-29 13:21:23 +0000249 if(limit_len < 0) {
250 /* Too great tlv_len value? */
251 RETURN(RC_FAIL);
252 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000253 } else if(limit_len != tlv_len + tag_len + len_len) {
254 /*
255 * Inner TLV specifies length which is inconsistent
256 * with the outer TLV's length value.
257 */
258 ASN_DEBUG("Outer TLV is %d and inner is %d",
259 limit_len, tlv_len);
260 RETURN(RC_FAIL);
261 }
262
263 ADVANCE(tag_len + len_len);
264
265 limit_len -= (tag_len + len_len);
Lev Walkind9bd7752004-06-05 08:17:50 +0000266 if((ssize_t)size > limit_len) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000267 /*
268 * Make sure that we won't consume more bytes
Lev Walkin5ccf1eb2004-09-24 20:58:47 +0000269 * from the parent frame than the inferred limit.
Lev Walkinf15320b2004-06-03 03:38:44 +0000270 */
271 size = limit_len;
272 }
273 }
274
275 if(opt_tlv_form)
276 *opt_tlv_form = tlv_constr;
277 if(expect_00_terminators)
278 *last_length = -expect_00_terminators;
279 else
280 *last_length = tlv_len;
281
282 RETURN(RC_OK);
283}