blob: d1b08741fe4ac463f42b67f9f9fa8580b889d1a6 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
vlm72425de2004-09-13 08:31:01 +00002 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
vlmfa67ddc2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
vlm39ba4c42004-09-22 16:06:28 +00005#include <asn_internal.h>
vlmfa67ddc2004-06-03 03:38:44 +00006#include <OCTET_STRING.h>
vlm0f1ab762004-10-12 05:57:23 +00007#include <BIT_STRING.h> /* for .bits_unused member */
vlmfa67ddc2004-06-03 03:38:44 +00008#include <assert.h>
9#include <errno.h>
10
11/*
12 * OCTET STRING basic type description.
13 */
vlm7b75d982004-09-29 13:20:14 +000014static ber_tlv_tag_t asn_DEF_OCTET_STRING_tags[] = {
vlmfa67ddc2004-06-03 03:38:44 +000015 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2))
16};
vlm0f1ab762004-10-12 05:57:23 +000017static asn_OCTET_STRING_specifics_t asn_DEF_OCTET_STRING_specs = {
18 sizeof(OCTET_STRING_t),
19 offsetof(OCTET_STRING_t, _asn_ctx),
20 0
21};
vlm7b75d982004-09-29 13:20:14 +000022asn_TYPE_descriptor_t asn_DEF_OCTET_STRING = {
vlm9de248e2004-10-20 15:50:55 +000023 "OCTET STRING", /* Canonical name */
24 "OCTET_STRING", /* XML tag name */
vlm39ba4c42004-09-22 16:06:28 +000025 OCTET_STRING_free,
26 OCTET_STRING_print, /* non-ascii stuff, generally */
vlmfa67ddc2004-06-03 03:38:44 +000027 asn_generic_no_constraint,
28 OCTET_STRING_decode_ber,
29 OCTET_STRING_encode_der,
vlm9de248e2004-10-20 15:50:55 +000030 OCTET_STRING_decode_xer_hex,
vlm39ba4c42004-09-22 16:06:28 +000031 OCTET_STRING_encode_xer,
vlmfa67ddc2004-06-03 03:38:44 +000032 0, /* Use generic outmost tag fetcher */
vlm7b75d982004-09-29 13:20:14 +000033 asn_DEF_OCTET_STRING_tags,
34 sizeof(asn_DEF_OCTET_STRING_tags)
35 / sizeof(asn_DEF_OCTET_STRING_tags[0]),
36 asn_DEF_OCTET_STRING_tags, /* Same as above */
37 sizeof(asn_DEF_OCTET_STRING_tags)
38 / sizeof(asn_DEF_OCTET_STRING_tags[0]),
vlme413c122004-08-20 13:23:42 +000039 0, 0, /* No members */
vlm0f1ab762004-10-12 05:57:23 +000040 &asn_DEF_OCTET_STRING_specs
vlmfa67ddc2004-06-03 03:38:44 +000041};
42
vlmef1b4c02004-09-23 22:06:26 +000043#undef _CH_PHASE
44#undef NEXT_PHASE
45#undef PREV_PHASE
vlmfa67ddc2004-06-03 03:38:44 +000046#define _CH_PHASE(ctx, inc) do { \
47 if(ctx->phase == 0) \
48 ctx->step = 0; \
49 ctx->phase += inc; \
50 } while(0)
51#define NEXT_PHASE(ctx) _CH_PHASE(ctx, +1)
52#define PREV_PHASE(ctx) _CH_PHASE(ctx, -1)
53
vlmef1b4c02004-09-23 22:06:26 +000054#undef ADVANCE
vlmd86c9252004-08-25 01:34:11 +000055#define ADVANCE(num_bytes) do { \
vlmb33ed682004-09-24 20:57:41 +000056 size_t num = (num_bytes); \
vlmd86c9252004-08-25 01:34:11 +000057 buf_ptr = ((char *)buf_ptr) + num; \
58 size -= num; \
59 consumed_myself += num; \
vlmfa67ddc2004-06-03 03:38:44 +000060 } while(0)
61
vlmef1b4c02004-09-23 22:06:26 +000062#undef RETURN
vlmfa67ddc2004-06-03 03:38:44 +000063#define RETURN(_code) do { \
64 rval.code = _code; \
65 rval.consumed = consumed_myself;\
66 return rval; \
67 } while(0)
68
vlmef1b4c02004-09-23 22:06:26 +000069#undef APPEND
vlmb42843a2004-06-05 08:17:50 +000070#define APPEND(bufptr, bufsize) do { \
vlmcdfdb722004-09-04 04:44:50 +000071 size_t _bs = (bufsize); \
vlmb42843a2004-06-05 08:17:50 +000072 size_t _ns = ctx->step; /* Allocated */ \
vlmcdfdb722004-09-04 04:44:50 +000073 if(_ns <= (size_t)(st->size + _bs)) { \
vlmb42843a2004-06-05 08:17:50 +000074 void *ptr; \
vlm72425de2004-09-13 08:31:01 +000075 /* Be nice and round to the memory allocator */ \
vlmb42843a2004-06-05 08:17:50 +000076 do { _ns = _ns ? _ns<<2 : 16; } \
vlmcdfdb722004-09-04 04:44:50 +000077 while(_ns <= (size_t)(st->size + _bs)); \
vlmb42843a2004-06-05 08:17:50 +000078 ptr = REALLOC(st->buf, _ns); \
79 if(ptr) { \
vlmda674682004-08-11 09:07:36 +000080 st->buf = (uint8_t *)ptr; \
vlmb42843a2004-06-05 08:17:50 +000081 ctx->step = _ns; \
82 } else { \
83 RETURN(RC_FAIL); \
84 } \
85 } \
vlmcdfdb722004-09-04 04:44:50 +000086 memcpy(st->buf + st->size, bufptr, _bs); \
87 st->size += _bs; \
vlmb42843a2004-06-05 08:17:50 +000088 if(st->size < 0) \
89 /* Why even care?.. JIC */ \
90 RETURN(RC_FAIL); \
91 /* Convenient nul-termination */ \
92 st->buf[st->size] = '\0'; \
vlmfa67ddc2004-06-03 03:38:44 +000093 } while(0)
94
95/*
vlm267b7fd2004-10-11 11:43:08 +000096 * Internal variant of the OCTET STRING.
97 */
98typedef enum OS_type {
99 _TT_GENERIC = 0, /* Just a random OCTET STRING */
100 _TT_BIT_STRING = 1, /* BIT STRING type, a special case */
101 _TT_ANY = 2, /* ANY type, a special case too */
102} OS_type_e;
103
104/*
vlmfa67ddc2004-06-03 03:38:44 +0000105 * The main reason why ASN.1 is still alive is that too much time and effort
106 * is necessary for learning it more or less adequately, thus creating a gut
107 * necessity to demonstrate that aquired skill everywhere afterwards.
108 * No, I am not going to explain what the following stuff is.
109 */
110struct _stack_el {
vlmb33ed682004-09-24 20:57:41 +0000111 ber_tlv_len_t left; /* What's left to read (or -1) */
vlmdb6b2902004-09-27 20:54:06 +0000112 ber_tlv_len_t got; /* What was actually processed */
vlm72425de2004-09-13 08:31:01 +0000113 int cont_level; /* Depth of subcontainment */
vlmfa67ddc2004-06-03 03:38:44 +0000114 int want_nulls; /* Want null "end of content" octets? */
115 int bits_chopped; /* Flag in BIT STRING mode */
vlmdb6b2902004-09-27 20:54:06 +0000116 ber_tlv_tag_t tag; /* For debugging purposes */
vlmfa67ddc2004-06-03 03:38:44 +0000117 struct _stack_el *prev;
118 struct _stack_el *next;
119};
120struct _stack {
121 struct _stack_el *tail;
122 struct _stack_el *cur_ptr;
123};
124
125static struct _stack_el *
vlmb33ed682004-09-24 20:57:41 +0000126OS__add_stack_el(struct _stack *st) {
vlmfa67ddc2004-06-03 03:38:44 +0000127 struct _stack_el *nel;
128
vlm72425de2004-09-13 08:31:01 +0000129 /*
130 * Reuse the old stack frame or allocate a new one.
131 */
vlmfa67ddc2004-06-03 03:38:44 +0000132 if(st->cur_ptr && st->cur_ptr->next) {
133 nel = st->cur_ptr->next;
vlmfa67ddc2004-06-03 03:38:44 +0000134 nel->bits_chopped = 0;
vlmdb6b2902004-09-27 20:54:06 +0000135 nel->got = 0;
136 /* Retain the nel->cont_level, it's correct. */
vlmfa67ddc2004-06-03 03:38:44 +0000137 } else {
vlmd3c80792004-12-15 23:23:53 +0000138 nel = (struct _stack_el *)CALLOC(1, sizeof(struct _stack_el));
vlmfa67ddc2004-06-03 03:38:44 +0000139 if(nel == NULL)
140 return NULL;
141
142 if(st->tail) {
vlm72425de2004-09-13 08:31:01 +0000143 /* Increase a subcontainment depth */
144 nel->cont_level = st->tail->cont_level + 1;
vlmfa67ddc2004-06-03 03:38:44 +0000145 st->tail->next = nel;
146 }
147 nel->prev = st->tail;
148 st->tail = nel;
149 }
150
151 st->cur_ptr = nel;
152
153 return nel;
154}
155
156static struct _stack *
157_new_stack() {
vlm0f1ab762004-10-12 05:57:23 +0000158 return (struct _stack *)CALLOC(1, sizeof(struct _stack));
vlmfa67ddc2004-06-03 03:38:44 +0000159}
160
161/*
162 * Decode OCTET STRING type.
163 */
vlm9de248e2004-10-20 15:50:55 +0000164asn_dec_rval_t
vlm7b75d982004-09-29 13:20:14 +0000165OCTET_STRING_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
166 asn_TYPE_descriptor_t *td,
vlmfa67ddc2004-06-03 03:38:44 +0000167 void **os_structure, void *buf_ptr, size_t size, int tag_mode) {
vlm0f1ab762004-10-12 05:57:23 +0000168 asn_OCTET_STRING_specifics_t *specs = td->specifics
vlm9de248e2004-10-20 15:50:55 +0000169 ? (asn_OCTET_STRING_specifics_t *)td->specifics
170 : &asn_DEF_OCTET_STRING_specs;
vlm0f1ab762004-10-12 05:57:23 +0000171 BIT_STRING_t *st = (BIT_STRING_t *)*os_structure;
vlm9de248e2004-10-20 15:50:55 +0000172 asn_dec_rval_t rval;
vlm7b75d982004-09-29 13:20:14 +0000173 asn_struct_ctx_t *ctx;
vlmfa67ddc2004-06-03 03:38:44 +0000174 ssize_t consumed_myself = 0;
vlm0f1ab762004-10-12 05:57:23 +0000175 struct _stack *stck; /* Expectations stack structure */
vlmdb6b2902004-09-27 20:54:06 +0000176 struct _stack_el *sel = 0; /* Stack element */
vlmfa67ddc2004-06-03 03:38:44 +0000177 int tlv_constr;
vlm0f1ab762004-10-12 05:57:23 +0000178 OS_type_e type_variant = (OS_type_e)specs->subvariant;
vlmfa67ddc2004-06-03 03:38:44 +0000179
vlmef1b4c02004-09-23 22:06:26 +0000180 ASN_DEBUG("Decoding %s as %s (frame %ld)",
181 td->name,
vlm0f1ab762004-10-12 05:57:23 +0000182 (type_variant == _TT_GENERIC) ?
183 "OCTET STRING" : "OS-SpecialCase",
vlmef1b4c02004-09-23 22:06:26 +0000184 (long)size);
vlmfa67ddc2004-06-03 03:38:44 +0000185
186 /*
187 * Create the string if does not exist.
188 */
189 if(st == NULL) {
vlmd3c80792004-12-15 23:23:53 +0000190 *os_structure = CALLOC(1, specs->struct_size);
191 st = (BIT_STRING_t *)*os_structure;
vlmfa67ddc2004-06-03 03:38:44 +0000192 if(st == NULL)
193 RETURN(RC_FAIL);
194 }
195
196 /* Restore parsing context */
vlm0f1ab762004-10-12 05:57:23 +0000197 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
vlmfa67ddc2004-06-03 03:38:44 +0000198
199 switch(ctx->phase) {
200 case 0:
201 /*
202 * Check tags.
203 */
vlm7b75d982004-09-29 13:20:14 +0000204 rval = ber_check_tags(opt_codec_ctx, td, ctx,
vlm6678cb12004-09-26 13:10:40 +0000205 buf_ptr, size, tag_mode, -1,
vlmfa67ddc2004-06-03 03:38:44 +0000206 &ctx->left, &tlv_constr);
vlmd7c2ef32004-10-05 06:35:31 +0000207 if(rval.code != RC_OK)
208 return rval;
vlmfa67ddc2004-06-03 03:38:44 +0000209
vlmfa67ddc2004-06-03 03:38:44 +0000210 if(tlv_constr) {
211 /*
212 * Complex operation, requires stack of expectations.
213 */
214 ctx->ptr = _new_stack();
215 if(ctx->ptr) {
vlmd3c80792004-12-15 23:23:53 +0000216 stck = (struct _stack *)ctx->ptr;
vlmfa67ddc2004-06-03 03:38:44 +0000217 } else {
218 RETURN(RC_FAIL);
219 }
220 } else {
221 /*
222 * Jump into stackless primitive decoding.
223 */
224 _CH_PHASE(ctx, 3);
vlm0f1ab762004-10-12 05:57:23 +0000225 if(type_variant == _TT_ANY && tag_mode != 1)
vlm72425de2004-09-13 08:31:01 +0000226 APPEND(buf_ptr, rval.consumed);
vlmfa67ddc2004-06-03 03:38:44 +0000227 ADVANCE(rval.consumed);
228 goto phase3;
229 }
230
vlmfa67ddc2004-06-03 03:38:44 +0000231 NEXT_PHASE(ctx);
232 /* Fall through */
233 case 1:
234 phase1:
235 /*
236 * Fill the stack with expectations.
237 */
vlmd3c80792004-12-15 23:23:53 +0000238 stck = (struct _stack *)ctx->ptr;
vlmfa67ddc2004-06-03 03:38:44 +0000239 sel = stck->cur_ptr;
240 do {
241 ber_tlv_tag_t tlv_tag;
242 ber_tlv_len_t tlv_len;
vlm72425de2004-09-13 08:31:01 +0000243 ber_tlv_tag_t expected_tag;
vlmdb6b2902004-09-27 20:54:06 +0000244 ssize_t tl, ll, tlvl;
vlm6678cb12004-09-26 13:10:40 +0000245 /* This one works even if (sel->left == -1) */
246 ssize_t Left = ((!sel||(size_t)sel->left >= size)
vlmdb6b2902004-09-27 20:54:06 +0000247 ?(ssize_t)size:sel->left);
vlmfa67ddc2004-06-03 03:38:44 +0000248
vlmb33ed682004-09-24 20:57:41 +0000249
vlma351c2b2004-10-26 10:12:14 +0000250 ASN_DEBUG("%p, s->l=%ld, s->wn=%ld, s->g=%ld\n", sel,
vlm13318c12004-10-26 10:56:10 +0000251 (long)(sel?sel->left:0),
252 (long)(sel?sel->want_nulls:0),
253 (long)(sel?sel->got:0)
vlmdb6b2902004-09-27 20:54:06 +0000254 );
255 if(sel && sel->left <= 0 && sel->want_nulls == 0) {
256 if(sel->prev) {
257 struct _stack_el *prev = sel->prev;
258 if(prev->left != -1) {
259 if(prev->left < sel->got)
260 RETURN(RC_FAIL);
261 prev->left -= sel->got;
262 }
263 prev->got += sel->got;
264 sel = stck->cur_ptr = prev;
265 if(!sel) break;
266 tlv_constr = 1;
267 continue;
268 } else {
269 sel = stck->cur_ptr = 0;
270 break; /* Nothing to wait */
271 }
272 }
273
vlmb33ed682004-09-24 20:57:41 +0000274 tl = ber_fetch_tag(buf_ptr, Left, &tlv_tag);
vlma351c2b2004-10-26 10:12:14 +0000275 ASN_DEBUG("fetch tag(size=%ld,L=%ld), %sstack, left=%ld, wn=%ld, tl=%ld",
276 (long)size, (long)Left, sel?"":"!",
vlm13318c12004-10-26 10:56:10 +0000277 (long)(sel?sel->left:0),
278 (long)(sel?sel->want_nulls:0),
vlma351c2b2004-10-26 10:12:14 +0000279 (long)tl);
vlmfa67ddc2004-06-03 03:38:44 +0000280 switch(tl) {
281 case -1: RETURN(RC_FAIL);
282 case 0: RETURN(RC_WMORE);
283 }
284
285 tlv_constr = BER_TLV_CONSTRUCTED(buf_ptr);
286
287 ll = ber_fetch_length(tlv_constr,
vlmb33ed682004-09-24 20:57:41 +0000288 (char *)buf_ptr + tl, Left - tl, &tlv_len);
vlmdb6b2902004-09-27 20:54:06 +0000289 ASN_DEBUG("Got tag=%s, tc=%d, left=%ld, tl=%d, len=%d, ll=%d",
vlmcdfdb722004-09-04 04:44:50 +0000290 ber_tlv_tag_string(tlv_tag), tlv_constr,
vlmdb6b2902004-09-27 20:54:06 +0000291 (long)Left, tl, tlv_len, ll);
vlmfa67ddc2004-06-03 03:38:44 +0000292 switch(ll) {
293 case -1: RETURN(RC_FAIL);
294 case 0: RETURN(RC_WMORE);
295 }
296
vlmcdfdb722004-09-04 04:44:50 +0000297 if(sel && sel->want_nulls
vlmfa67ddc2004-06-03 03:38:44 +0000298 && ((uint8_t *)buf_ptr)[0] == 0
299 && ((uint8_t *)buf_ptr)[1] == 0)
300 {
vlmcdfdb722004-09-04 04:44:50 +0000301
302 ASN_DEBUG("Eat EOC; wn=%d--", sel->want_nulls);
303
vlm0f1ab762004-10-12 05:57:23 +0000304 if(type_variant == _TT_ANY
vlm267b7fd2004-10-11 11:43:08 +0000305 && (tag_mode != 1 || sel->cont_level))
306 APPEND("\0\0", 2);
vlmdb6b2902004-09-27 20:54:06 +0000307
308 ADVANCE(2);
309 sel->got += 2;
310 if(sel->left != -1) {
311 sel->left -= 2; /* assert(sel->left >= 2) */
312 }
313
vlmfa67ddc2004-06-03 03:38:44 +0000314 sel->want_nulls--;
315 if(sel->want_nulls == 0) {
316 /* Move to the next expectation */
vlmdb6b2902004-09-27 20:54:06 +0000317 sel->left = 0;
vlmfa67ddc2004-06-03 03:38:44 +0000318 tlv_constr = 1;
vlmfa67ddc2004-06-03 03:38:44 +0000319 }
vlmcdfdb722004-09-04 04:44:50 +0000320
321 continue;
vlm72425de2004-09-13 08:31:01 +0000322 }
323
324 /*
325 * Set up expected tags,
326 * depending on ASN.1 type being decoded.
327 */
vlm0f1ab762004-10-12 05:57:23 +0000328 switch(type_variant) {
vlm72425de2004-09-13 08:31:01 +0000329 case _TT_BIT_STRING:
330 /* X.690: 8.6.4.1, NOTE 2 */
331 /* Fall through */
332 case _TT_GENERIC:
333 default:
334 if(sel) {
335 int level = sel->cont_level;
336 if(level < td->all_tags_count) {
337 expected_tag = td->all_tags[level];
338 break;
339 } else if(td->all_tags_count) {
340 expected_tag = td->all_tags
341 [td->all_tags_count - 1];
342 break;
343 }
344 /* else, Fall through */
345 }
346 /* Fall through */
347 case _TT_ANY:
348 expected_tag = tlv_tag;
349 break;
350 }
351
352
353 if(tlv_tag != expected_tag) {
vlmfa67ddc2004-06-03 03:38:44 +0000354 char buf[2][32];
355 ber_tlv_tag_snprint(tlv_tag,
356 buf[0], sizeof(buf[0]));
357 ber_tlv_tag_snprint(td->tags[td->tags_count-1],
358 buf[1], sizeof(buf[1]));
359 ASN_DEBUG("Tag does not match expectation: %s != %s",
360 buf[0], buf[1]);
361 RETURN(RC_FAIL);
362 }
363
vlm7b75d982004-09-29 13:20:14 +0000364 tlvl = tl + ll; /* Combined length of T and L encoding */
365 if((tlv_len + tlvl) < 0) {
366 /* tlv_len value is too big */
367 ASN_DEBUG("TLV encoding + length (%ld) is too big",
368 (long)tlv_len);
369 RETURN(RC_FAIL);
370 }
371
vlmfa67ddc2004-06-03 03:38:44 +0000372 /*
373 * Append a new expectation.
374 */
vlmb33ed682004-09-24 20:57:41 +0000375 sel = OS__add_stack_el(stck);
vlmdb6b2902004-09-27 20:54:06 +0000376 if(!sel) RETURN(RC_FAIL);
vlmfa67ddc2004-06-03 03:38:44 +0000377
vlmdb6b2902004-09-27 20:54:06 +0000378 sel->tag = tlv_tag;
379
380 sel->want_nulls = (tlv_len==-1);
381 if(sel->prev && sel->prev->left != -1) {
382 /* Check that the parent frame is big enough */
383 if(sel->prev->left < tlvl + (tlv_len==-1?0:tlv_len))
384 RETURN(RC_FAIL);
385 if(tlv_len == -1)
386 sel->left = sel->prev->left - tlvl;
387 else
388 sel->left = tlv_len;
389 } else {
390 sel->left = tlv_len;
391 }
vlm0f1ab762004-10-12 05:57:23 +0000392 if(type_variant == _TT_ANY
vlm267b7fd2004-10-11 11:43:08 +0000393 && (tag_mode != 1 || sel->cont_level))
394 APPEND(buf_ptr, tlvl);
vlmdb6b2902004-09-27 20:54:06 +0000395 sel->got += tlvl;
396 ADVANCE(tlvl);
397
vlma351c2b2004-10-26 10:12:14 +0000398 ASN_DEBUG("+EXPECT2 got=%ld left=%ld, wn=%d, clvl=%d",
399 (long)sel->got, (long)sel->left,
400 sel->want_nulls, sel->cont_level);
vlmdb6b2902004-09-27 20:54:06 +0000401
vlmfa67ddc2004-06-03 03:38:44 +0000402 } while(tlv_constr);
403 if(sel == NULL) {
404 /* Finished operation, "phase out" */
vlm72425de2004-09-13 08:31:01 +0000405 ASN_DEBUG("Phase out");
vlmfa67ddc2004-06-03 03:38:44 +0000406 _CH_PHASE(ctx, +3);
407 break;
408 }
409
410 NEXT_PHASE(ctx);
411 /* Fall through */
412 case 2:
vlmd3c80792004-12-15 23:23:53 +0000413 stck = (struct _stack *)ctx->ptr;
vlmfa67ddc2004-06-03 03:38:44 +0000414 sel = stck->cur_ptr;
vlmdb6b2902004-09-27 20:54:06 +0000415 ASN_DEBUG("Phase 2: Need %ld bytes, size=%ld, alrg=%ld, wn=%d",
416 (long)sel->left, (long)size, (long)sel->got,
417 sel->want_nulls);
vlmfa67ddc2004-06-03 03:38:44 +0000418 {
419 ber_tlv_len_t len;
420
421 assert(sel->left >= 0);
422
vlmc5190612004-08-18 04:53:32 +0000423 len = ((ber_tlv_len_t)size < sel->left)
424 ? (ber_tlv_len_t)size : sel->left;
vlmfa67ddc2004-06-03 03:38:44 +0000425 if(len > 0) {
vlm0f1ab762004-10-12 05:57:23 +0000426 if(type_variant == _TT_BIT_STRING
vlm72425de2004-09-13 08:31:01 +0000427 && sel->bits_chopped == 0) {
vlm0f1ab762004-10-12 05:57:23 +0000428 /* Put the unused-bits-octet away */
429 st->bits_unused = *(uint8_t *)buf_ptr;
vlm1ff928d2004-08-11 08:10:13 +0000430 APPEND(((char *)buf_ptr+1), (len - 1));
vlmfa67ddc2004-06-03 03:38:44 +0000431 sel->bits_chopped = 1;
432 } else {
433 APPEND(buf_ptr, len);
434 }
435 ADVANCE(len);
436 sel->left -= len;
vlmdb6b2902004-09-27 20:54:06 +0000437 sel->got += len;
vlmfa67ddc2004-06-03 03:38:44 +0000438 }
439
vlmdb6b2902004-09-27 20:54:06 +0000440 if(sel->left) {
441 ASN_DEBUG("OS left %ld, size = %ld, wn=%d\n",
442 (long)sel->left, (long)size, sel->want_nulls);
vlmfa67ddc2004-06-03 03:38:44 +0000443 RETURN(RC_WMORE);
vlmfa67ddc2004-06-03 03:38:44 +0000444 }
vlmdb6b2902004-09-27 20:54:06 +0000445
446 PREV_PHASE(ctx);
447 goto phase1;
vlmfa67ddc2004-06-03 03:38:44 +0000448 }
449 break;
450 case 3:
451 phase3:
452 /*
453 * Primitive form, no stack required.
454 */
vlm0f1ab762004-10-12 05:57:23 +0000455 assert(ctx->left >= 0);
456
vlmb42843a2004-06-05 08:17:50 +0000457 if(size < (size_t)ctx->left) {
vlm0f1ab762004-10-12 05:57:23 +0000458 if(!size) RETURN(RC_WMORE);
459 if(type_variant == _TT_BIT_STRING && ctx->step == 0) {
460 st->bits_unused = *(uint8_t *)buf_ptr;
461 ctx->left--;
462 ADVANCE(1);
463 }
vlmfa67ddc2004-06-03 03:38:44 +0000464 APPEND(buf_ptr, size);
vlm0f1ab762004-10-12 05:57:23 +0000465 assert(ctx->step);
vlmfa67ddc2004-06-03 03:38:44 +0000466 ctx->left -= size;
467 ADVANCE(size);
468 RETURN(RC_WMORE);
469 } else {
vlm0f1ab762004-10-12 05:57:23 +0000470 if(type_variant == _TT_BIT_STRING
471 && ctx->step == 0 && ctx->left) {
472 st->bits_unused = *(uint8_t *)buf_ptr;
473 ctx->left--;
474 ADVANCE(1);
475 }
vlmfa67ddc2004-06-03 03:38:44 +0000476 APPEND(buf_ptr, ctx->left);
477 ADVANCE(ctx->left);
478 ctx->left = 0;
479
480 NEXT_PHASE(ctx);
481 }
482 break;
483 }
484
vlmdb6b2902004-09-27 20:54:06 +0000485 if(sel) {
486 ASN_DEBUG("3sel p=%p, wn=%d, l=%ld, g=%ld, size=%ld",
487 sel->prev, sel->want_nulls,
488 (long)sel->left, (long)sel->got, (long)size);
489 if(sel->prev || sel->want_nulls > 1 || sel->left > 0) {
490 RETURN(RC_WMORE);
491 }
492 }
493
vlmfa67ddc2004-06-03 03:38:44 +0000494 /*
495 * BIT STRING-specific processing.
496 */
vlm0f1ab762004-10-12 05:57:23 +0000497 if(type_variant == _TT_BIT_STRING && st->size) {
vlmfa67ddc2004-06-03 03:38:44 +0000498 /* Finalize BIT STRING: zero out unused bits. */
vlm0f1ab762004-10-12 05:57:23 +0000499 st->buf[st->size-1] &= 0xff << st->bits_unused;
vlmfa67ddc2004-06-03 03:38:44 +0000500 }
501
vlma351c2b2004-10-26 10:12:14 +0000502 ASN_DEBUG("Took %ld bytes to encode %s: [%s]:%ld",
503 (long)consumed_myself, td->name,
vlm0f1ab762004-10-12 05:57:23 +0000504 (type_variant == _TT_GENERIC) ? (char *)st->buf : "<data>",
vlma351c2b2004-10-26 10:12:14 +0000505 (long)st->size);
vlmfa67ddc2004-06-03 03:38:44 +0000506
vlmfa67ddc2004-06-03 03:38:44 +0000507
vlmdb6b2902004-09-27 20:54:06 +0000508 RETURN(RC_OK);
vlmfa67ddc2004-06-03 03:38:44 +0000509}
510
511/*
512 * Encode OCTET STRING type using DER.
513 */
vlm39ba4c42004-09-22 16:06:28 +0000514asn_enc_rval_t
vlm0f1ab762004-10-12 05:57:23 +0000515OCTET_STRING_encode_der(asn_TYPE_descriptor_t *td, void *sptr,
vlmfa67ddc2004-06-03 03:38:44 +0000516 int tag_mode, ber_tlv_tag_t tag,
517 asn_app_consume_bytes_f *cb, void *app_key) {
vlm0f1ab762004-10-12 05:57:23 +0000518 asn_enc_rval_t er;
519 asn_OCTET_STRING_specifics_t *specs = td->specifics
vlm9de248e2004-10-20 15:50:55 +0000520 ? (asn_OCTET_STRING_specifics_t *)td->specifics
521 : &asn_DEF_OCTET_STRING_specs;
vlm0f1ab762004-10-12 05:57:23 +0000522 BIT_STRING_t *st = (BIT_STRING_t *)sptr;
523 OS_type_e type_variant = (OS_type_e)specs->subvariant;
524 int fix_last_byte = 0;
vlmfa67ddc2004-06-03 03:38:44 +0000525
526 ASN_DEBUG("%s %s as OCTET STRING",
vlm3e693022004-09-02 12:57:25 +0000527 cb?"Estimating":"Encoding", td->name);
vlmfa67ddc2004-06-03 03:38:44 +0000528
529 /*
vlm0f1ab762004-10-12 05:57:23 +0000530 * Write tags.
vlmfa67ddc2004-06-03 03:38:44 +0000531 */
vlm0f1ab762004-10-12 05:57:23 +0000532 if(type_variant != _TT_ANY || tag_mode == 1) {
533 er.encoded = der_write_tags(td,
534 (type_variant == _TT_BIT_STRING) + st->size,
535 tag_mode, type_variant == _TT_ANY, tag, cb, app_key);
536 if(er.encoded == -1) {
537 er.failed_type = td;
538 er.structure_ptr = sptr;
539 return er;
vlmfa67ddc2004-06-03 03:38:44 +0000540 }
vlm0f1ab762004-10-12 05:57:23 +0000541 } else {
542 /* Disallow: [<tag>] IMPLICIT ANY */
543 assert(type_variant != _TT_ANY || tag_mode != -1);
544 er.encoded = 0;
545 }
546
547 if(!cb) {
548 er.encoded += (type_variant == _TT_BIT_STRING) + st->size;
549 return er;
vlmfa67ddc2004-06-03 03:38:44 +0000550 }
551
vlm267b7fd2004-10-11 11:43:08 +0000552 /*
vlm0f1ab762004-10-12 05:57:23 +0000553 * Prepare to deal with the last octet of BIT STRING.
vlm267b7fd2004-10-11 11:43:08 +0000554 */
vlm0f1ab762004-10-12 05:57:23 +0000555 if(type_variant == _TT_BIT_STRING) {
556 uint8_t b = st->bits_unused & 0x07;
557 if(b && st->size) fix_last_byte = 1;
558 _ASN_CALLBACK(&b, 1);
559 er.encoded++;
vlmfa67ddc2004-06-03 03:38:44 +0000560 }
561
vlm0f1ab762004-10-12 05:57:23 +0000562 /* Invoke callback for the main part of the buffer */
563 _ASN_CALLBACK(st->buf, st->size - fix_last_byte);
vlmfa67ddc2004-06-03 03:38:44 +0000564
vlm0f1ab762004-10-12 05:57:23 +0000565 /* The last octet should be stripped off the unused bits */
566 if(fix_last_byte) {
567 uint8_t b = st->buf[st->size-1] & (0xff << st->bits_unused);
568 _ASN_CALLBACK(&b, 1);
vlmfa67ddc2004-06-03 03:38:44 +0000569 }
570
vlm0f1ab762004-10-12 05:57:23 +0000571 er.encoded += st->size;
572 return er;
573cb_failed:
574 _ASN_ENCODE_FAILED;
vlmfa67ddc2004-06-03 03:38:44 +0000575}
576
vlm39ba4c42004-09-22 16:06:28 +0000577asn_enc_rval_t
vlm7b75d982004-09-29 13:20:14 +0000578OCTET_STRING_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +0000579 int ilevel, enum xer_encoder_flags_e flags,
580 asn_app_consume_bytes_f *cb, void *app_key) {
581 static const char *h2c = "0123456789ABCDEF";
582 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
583 asn_enc_rval_t er;
584 char scratch[16 * 3 + 4];
585 char *p = scratch;
586 uint8_t *buf;
587 uint8_t *end;
588 size_t i;
589
vlm84d551b2004-10-03 09:13:02 +0000590 if(!st || !st->buf)
591 _ASN_ENCODE_FAILED;
vlm39ba4c42004-09-22 16:06:28 +0000592
593 er.encoded = 0;
594
595 /*
596 * Dump the contents of the buffer in hexadecimal.
597 */
598 buf = st->buf;
599 end = buf + st->size;
600 if(flags & XER_F_CANONICAL) {
601 char *scend = scratch + (sizeof(scratch) - 2);
602 for(; buf < end; buf++) {
603 if(p >= scend) {
604 _ASN_CALLBACK(scratch, p - scratch);
605 er.encoded += p - scratch;
606 p = scratch;
607 }
608 *p++ = h2c[(*buf >> 4) & 0x0F];
609 *p++ = h2c[*buf & 0x0F];
610 }
vlmef1b4c02004-09-23 22:06:26 +0000611
612 _ASN_CALLBACK(scratch, p-scratch); /* Dump the rest */
613 er.encoded += p - scratch;
vlm39ba4c42004-09-22 16:06:28 +0000614 } else {
615 for(i = 0; buf < end; buf++, i++) {
616 if(!(i % 16) && (i || st->size > 16)) {
617 _ASN_CALLBACK(scratch, p-scratch);
618 er.encoded += (p-scratch);
619 p = scratch;
620 _i_ASN_TEXT_INDENT(1, ilevel);
621 }
622 *p++ = h2c[(*buf >> 4) & 0x0F];
623 *p++ = h2c[*buf & 0x0F];
624 *p++ = 0x20;
625 }
vlmef1b4c02004-09-23 22:06:26 +0000626 if(p - scratch) {
627 p--; /* Remove the tail space */
628 _ASN_CALLBACK(scratch, p-scratch); /* Dump the rest */
629 er.encoded += p - scratch;
630 if(st->size > 16)
631 _i_ASN_TEXT_INDENT(1, ilevel-1);
632 }
vlm39ba4c42004-09-22 16:06:28 +0000633 }
634
vlm39ba4c42004-09-22 16:06:28 +0000635 return er;
vlm84d551b2004-10-03 09:13:02 +0000636cb_failed:
637 _ASN_ENCODE_FAILED;
vlm39ba4c42004-09-22 16:06:28 +0000638}
639
vlm393a57a2004-10-03 10:54:25 +0000640static struct OCTET_STRING__xer_escape_table_s {
641 char *string;
642 int size;
643} OCTET_STRING__xer_escape_table[] = {
644#define OSXET(s) { s, sizeof(s) - 1 }
645 OSXET("\074\156\165\154\057\076"), /* <nul/> */
646 OSXET("\074\163\157\150\057\076"), /* <soh/> */
647 OSXET("\074\163\164\170\057\076"), /* <stx/> */
648 OSXET("\074\145\164\170\057\076"), /* <etx/> */
649 OSXET("\074\145\157\164\057\076"), /* <eot/> */
650 OSXET("\074\145\156\161\057\076"), /* <enq/> */
651 OSXET("\074\141\143\153\057\076"), /* <ack/> */
652 OSXET("\074\142\145\154\057\076"), /* <bel/> */
653 OSXET("\074\142\163\057\076"), /* <bs/> */
654 OSXET("\011"), /* \t */
655 OSXET("\012"), /* \n */
656 OSXET("\074\166\164\057\076"), /* <vt/> */
657 OSXET("\074\146\146\057\076"), /* <ff/> */
658 OSXET("\015"), /* \r */
659 OSXET("\074\163\157\057\076"), /* <so/> */
660 OSXET("\074\163\151\057\076"), /* <si/> */
661 OSXET("\074\144\154\145\057\076"), /* <dle/> */
662 OSXET("\074\144\143\061\057\076"), /* <de1/> */
663 OSXET("\074\144\143\062\057\076"), /* <de2/> */
664 OSXET("\074\144\143\063\057\076"), /* <de3/> */
665 OSXET("\074\144\143\064\057\076"), /* <de4/> */
666 OSXET("\074\156\141\153\057\076"), /* <nak/> */
667 OSXET("\074\163\171\156\057\076"), /* <syn/> */
668 OSXET("\074\145\164\142\057\076"), /* <etb/> */
669 OSXET("\074\143\141\156\057\076"), /* <can/> */
670 OSXET("\074\145\155\057\076"), /* <em/> */
671 OSXET("\074\163\165\142\057\076"), /* <sub/> */
672 OSXET("\074\145\163\143\057\076"), /* <esc/> */
673 OSXET("\074\151\163\064\057\076"), /* <is4/> */
674 OSXET("\074\151\163\063\057\076"), /* <is3/> */
675 OSXET("\074\151\163\062\057\076"), /* <is2/> */
676 OSXET("\074\151\163\061\057\076"), /* <is1/> */
677 { 0, 0 }, /* " " */
678 { 0, 0 }, /* ! */
679 { 0, 0 }, /* \" */
680 { 0, 0 }, /* # */
681 { 0, 0 }, /* $ */
682 { 0, 0 }, /* % */
683 OSXET("\046\141\155\160\073"), /* &amp; */
684 { 0, 0 }, /* ' */
685 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, /* ()*+,-./ */
686 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, /* 01234567 */
687 {0,0},{0,0},{0,0},{0,0}, /* 89:; */
688 OSXET("\046\154\164\073"), /* &lt; */
689 { 0, 0 }, /* = */
690 OSXET("\046\147\164\073"), /* &gt; */
691};
692
vlm9de248e2004-10-20 15:50:55 +0000693static int
694OS__check_escaped_control_char(void *buf, int size) {
695 size_t i;
696 /*
697 * Inefficient algorithm which translates the escape sequences
698 * defined above into characters. Returns -1 if not found.
699 * TODO: replace by a faster algorithm (bsearch(), hash or
700 * nested table lookups).
701 */
702 for(i = 0; i < 32 /* Don't spend time on the bottom half */; i++) {
703 struct OCTET_STRING__xer_escape_table_s *el;
704 el = &OCTET_STRING__xer_escape_table[i];
705 if(el->size == size && memcmp(buf, el->string, size) == 0)
706 return i;
707 }
708 return -1;
709}
710
711static int
712OCTET_STRING__handle_control_chars(void *struct_ptr, void *chunk_buf, size_t chunk_size) {
713 /*
714 * This might be one of the escape sequences
715 * for control characters. Check it out.
716 * #11.15.5
717 */
718 int control_char = OS__check_escaped_control_char(chunk_buf,chunk_size);
719 if(control_char >= 0) {
720 OCTET_STRING_t *st = (OCTET_STRING_t *)struct_ptr;
721 void *p = REALLOC(st->buf, st->size + 2);
722 if(p) {
723 st->buf = (uint8_t *)p;
724 st->buf[st->size++] = control_char;
725 st->buf[st->size] = '\0'; /* nul-termination */
726 return 0;
727 }
728 }
729
730 return -1; /* No, it's not */
731}
732
vlm39ba4c42004-09-22 16:06:28 +0000733asn_enc_rval_t
vlm9de248e2004-10-20 15:50:55 +0000734OCTET_STRING_encode_xer_utf8(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +0000735 int ilevel, enum xer_encoder_flags_e flags,
736 asn_app_consume_bytes_f *cb, void *app_key) {
737 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
738 asn_enc_rval_t er;
vlm393a57a2004-10-03 10:54:25 +0000739 uint8_t *buf, *end;
740 uint8_t *ss; /* Sequence start */
741 ssize_t encoded_len = 0;
vlm39ba4c42004-09-22 16:06:28 +0000742
743 (void)ilevel; /* Unused argument */
744 (void)flags; /* Unused argument */
745
746 if(!st || !st->buf)
747 _ASN_ENCODE_FAILED;
748
vlm393a57a2004-10-03 10:54:25 +0000749 buf = st->buf;
750 end = buf + st->size;
751 for(ss = buf; buf < end; buf++) {
vlmd7c2ef32004-10-05 06:35:31 +0000752 unsigned int ch = *buf;
vlm393a57a2004-10-03 10:54:25 +0000753 int s_len; /* Special encoding sequence length */
vlm39ba4c42004-09-22 16:06:28 +0000754
vlm393a57a2004-10-03 10:54:25 +0000755 /*
756 * Escape certain characters: X.680/11.15
757 */
758 if(ch < sizeof(OCTET_STRING__xer_escape_table)
759 /sizeof(OCTET_STRING__xer_escape_table[0])
760 && (s_len = OCTET_STRING__xer_escape_table[ch].size)) {
761 if(((buf - ss) && cb(ss, buf - ss, app_key) < 0)
762 || cb(OCTET_STRING__xer_escape_table[ch].string, s_len,
763 app_key) < 0)
764 _ASN_ENCODE_FAILED;
765 encoded_len += (buf - ss) + s_len;
766 ss = buf + 1;
767 }
768 }
769
770 encoded_len += (buf - ss);
771 if((buf - ss) && cb(ss, buf - ss, app_key) < 0)
772 _ASN_ENCODE_FAILED;
773
774 er.encoded = encoded_len;
vlm39ba4c42004-09-22 16:06:28 +0000775 return er;
776}
777
vlm9de248e2004-10-20 15:50:55 +0000778/*
779 * Convert from hexadecimal format (cstring): "AB CD EF"
780 */
781static ssize_t OCTET_STRING__convert_hexadecimal(void *sptr, void *chunk_buf, size_t chunk_size, int have_more) {
782 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
783 char *chunk_stop = (char *)chunk_buf;
784 char *p = chunk_stop;
785 char *pend = p + chunk_size;
786 unsigned int clv = 0;
787 int half = 0; /* Half bit */
788 uint8_t *buf;
789
790 /* Reallocate buffer according to high cap estimation */
791 ssize_t _ns = st->size + (chunk_size + 1) / 2;
792 void *nptr = REALLOC(st->buf, _ns + 1);
793 if(!nptr) return -1;
794 st->buf = (uint8_t *)nptr;
795 buf = st->buf + st->size;
796
797 /*
798 * If something like " a b c " appears here, the " a b":3 will be
799 * converted, and the rest skipped. That is, unless buf_size is greater
800 * than chunk_size, then it'll be equivalent to "ABC0".
801 */
802 for(; p < pend; p++) {
803 int ch = *(unsigned char *)p;
804 switch(ch) {
805 case 0x09: case 0x0a: case 0x0c: case 0x0d:
806 case 0x20:
807 /* Ignore whitespace */
808 continue;
809 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34: /*01234*/
810 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39: /*56789*/
811 clv = (clv << 4) + (ch - 0x30);
812 break;
813 case 0x41: case 0x42: case 0x43: /* ABC */
814 case 0x44: case 0x45: case 0x46: /* DEF */
815 clv = (clv << 4) + (ch - (0x41 + 10));
816 break;
817 case 0x61: case 0x62: case 0x63: /* abc */
818 case 0x64: case 0x65: case 0x66: /* def */
819 clv = (clv << 4) + (ch - (0x61 + 10));
820 break;
821 default:
822 *buf = 0; /* JIC */
823 return -1;
824 }
825 if(half++) {
826 half = 0;
827 *buf++ = clv;
828 chunk_stop = p + 1;
829 }
830 }
831
832 /*
833 * Check partial decoding.
834 */
835 if(half) {
836 if(have_more) {
837 /*
838 * Partial specification is fine,
839 * because no more more PXER_TEXT data is available.
840 */
841 *buf++ = clv << 4;
842 chunk_stop = p;
843 }
844 } else {
845 chunk_stop = p;
846 }
847
848 st->size = buf - st->buf; /* Adjust the buffer size */
849 assert(st->size <= _ns);
850 st->buf[st->size] = 0; /* Courtesy termination */
851
852 return (chunk_stop - (char *)chunk_buf); /* Converted size */
853}
854
855/*
856 * Convert from binary format: "00101011101"
857 */
858static ssize_t OCTET_STRING__convert_binary(void *sptr, void *chunk_buf, size_t chunk_size, int have_more) {
859 BIT_STRING_t *st = (BIT_STRING_t *)sptr;
860 char *p = (char *)chunk_buf;
861 char *pend = p + chunk_size;
862 int bits_unused = st->bits_unused & 0x7;
863 uint8_t *buf;
864
865 /* Reallocate buffer according to high cap estimation */
866 ssize_t _ns = st->size + (chunk_size + 7) / 8;
867 void *nptr = REALLOC(st->buf, _ns + 1);
868 if(!nptr) return -1;
869 st->buf = (uint8_t *)nptr;
870 buf = st->buf + st->size;
871
872 (void)have_more;
873
874 if(bits_unused == 0)
875 bits_unused = 8;
876 else if(st->size)
877 buf--;
878
879 /*
880 * Convert series of 0 and 1 into the octet string.
881 */
882 for(; p < pend; p++) {
883 int ch = *(unsigned char *)p;
884 switch(ch) {
885 case 0x09: case 0x0a: case 0x0c: case 0x0d:
886 case 0x20:
887 /* Ignore whitespace */
888 break;
889 case 0x30:
890 case 0x31:
891 if(bits_unused-- <= 0) {
892 *++buf = 0; /* Clean the cell */
893 bits_unused = 7;
894 }
895 *buf |= (ch&1) << bits_unused;
896 break;
897 default:
898 st->bits_unused = bits_unused;
899 return -1;
900 }
901 }
902
903 if(bits_unused == 8) {
904 st->size = buf - st->buf;
905 st->bits_unused = 0;
906 } else {
907 st->size = buf - st->buf + 1;
908 st->bits_unused = bits_unused;
909 }
910
911 assert(st->size <= _ns);
912 st->buf[st->size] = 0; /* Courtesy termination */
913
914 return chunk_size; /* Converted in full */
915}
916
917/*
918 * Something like strtod(), but with stricter rules.
919 */
920static int
vlm6c593842004-10-26 09:03:31 +0000921OS__strtoent(int base, char *buf, char *end, int32_t *return_value) {
922 int32_t val = 0;
vlm9de248e2004-10-20 15:50:55 +0000923 char *p;
924
925 for(p = buf; p < end; p++) {
926 int ch = *p;
927 if((val * base + base) < 0) return -1; /* Strange huge value */
928 switch(ch) {
929 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34: /*01234*/
930 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39: /*56789*/
931 val = val * base + (ch - 0x30);
932 break;
933 case 0x41: case 0x42: case 0x43: /* ABC */
934 case 0x44: case 0x45: case 0x46: /* DEF */
935 val = val * base + (ch - (0x41 + 10));
936 break;
937 case 0x61: case 0x62: case 0x63: /* abc */
938 case 0x64: case 0x65: case 0x66: /* def */
939 val = val * base + (ch - (0x61 + 10));
940 break;
941 case 0x3b: /* ';' */
942 *return_value = val;
943 return (p - buf) + 1;
944 default:
945 return -1; /* Character set error */
946 }
947 }
948
949 /* Do not return value. It's an error we're talking about here. */
950 return (p - buf);
951}
952
953/*
954 * Convert from the plain UTF-8 format, expanding entity references: "2 &lt; 3"
955 */
956static ssize_t OCTET_STRING__convert_entrefs(void *sptr, void *chunk_buf, size_t chunk_size, int have_more) {
957 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
958 char *p = (char *)chunk_buf;
959 char *pend = p + chunk_size;
960 uint8_t *buf;
961
962 /* Reallocate buffer */
963 ssize_t _ns = st->size + chunk_size;
964 void *nptr = REALLOC(st->buf, _ns + 1);
965 if(!nptr) return -1;
966 st->buf = (uint8_t *)nptr;
967 buf = st->buf + st->size;
968
969 /*
970 * Convert series of 0 and 1 into the octet string.
971 */
972 for(; p < pend; p++) {
973 int ch = *(unsigned char *)p;
974 int len; /* Length of the rest of the chunk */
975
976 if(ch != 0x26 /* '&' */) {
977 *buf++ = ch;
978 continue; /* That was easy... */
979 }
980
981 /*
982 * Process entity reference.
983 */
984 len = chunk_size - (p - (char *)chunk_buf);
985 if(len == 1 /* "&" */) goto want_more;
986 if(p[1] == 0x23 /* '#' */) {
987 char *pval; /* Pointer to start of digits */
vlm6c593842004-10-26 09:03:31 +0000988 int32_t val; /* Entity reference value */
vlm9de248e2004-10-20 15:50:55 +0000989 int base;
990
991 if(len == 2 /* "&#" */) goto want_more;
992 if(p[2] == 0x78 /* 'x' */)
993 pval = p + 3, base = 16;
994 else
995 pval = p + 2, base = 10;
996 len = OS__strtoent(base, pval, p + len, &val);
997 if(len == -1) {
998 /* Invalid charset. Just copy verbatim. */
999 *buf++ = ch;
1000 continue;
1001 }
1002 if(!len || pval[len-1] != 0x3b) goto want_more;
1003 assert(val > 0);
1004 p += (pval - p) + len - 1; /* Advance past entref */
1005
1006 if(val < 0x80) {
1007 *buf++ = (char)val;
1008 } else if(val < 0x800) {
1009 *buf++ = 0xc0 | ((val >> 6));
1010 *buf++ = 0x80 | ((val & 0x3f));
1011 } else if(val < 0x10000) {
1012 *buf++ = 0xe0 | ((val >> 12));
1013 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1014 *buf++ = 0x80 | ((val & 0x3f));
1015 } else if(val < 0x200000) {
1016 *buf++ = 0xf0 | ((val >> 18));
1017 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1018 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1019 *buf++ = 0x80 | ((val & 0x3f));
1020 } else if(val < 0x4000000) {
1021 *buf++ = 0xf8 | ((val >> 24));
1022 *buf++ = 0x80 | ((val >> 18) & 0x3f);
1023 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1024 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1025 *buf++ = 0x80 | ((val & 0x3f));
1026 } else {
1027 *buf++ = 0xfc | ((val >> 30) & 0x1);
1028 *buf++ = 0x80 | ((val >> 24) & 0x3f);
1029 *buf++ = 0x80 | ((val >> 18) & 0x3f);
1030 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1031 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1032 *buf++ = 0x80 | ((val & 0x3f));
1033 }
1034 } else {
1035 /*
1036 * Ugly, limited parsing of &amp; &gt; &lt;
1037 */
1038 char *sc = (char *)memchr(p, 0x3b, len > 5 ? 5 : len);
1039 if(!sc) goto want_more;
1040 if((sc - p) == 4
1041 && p[1] == 0x61 /* 'a' */
1042 && p[2] == 0x6d /* 'm' */
1043 && p[3] == 0x70 /* 'p' */) {
1044 *buf++ = 0x26;
1045 p = sc;
1046 continue;
1047 }
1048 if((sc - p) == 3) {
1049 if(p[1] == 0x6c) {
1050 *buf = 0x3c; /* '<' */
1051 } else if(p[1] == 0x67) {
1052 *buf = 0x3e; /* '>' */
1053 } else {
1054 /* Unsupported entity reference */
1055 *buf++ = ch;
1056 continue;
1057 }
1058 if(p[2] != 0x74) {
1059 /* Unsupported entity reference */
1060 *buf++ = ch;
1061 continue;
1062 }
1063 buf++;
1064 p = sc;
1065 continue;
1066 }
1067 /* Unsupported entity reference */
1068 *buf++ = ch;
1069 }
1070
1071 continue;
1072 want_more:
1073 if(have_more) {
1074 /*
1075 * We know that no more data (of the same type)
1076 * is coming. Copy the rest verbatim.
1077 */
1078 *buf++ = ch;
1079 continue;
1080 }
1081 *buf = 0; /* JIC */
1082 /* Processing stalled: need more data */
1083 return (p - (char *)chunk_buf);
1084 }
1085
1086 st->size = buf - st->buf;
1087 assert(st->size <= _ns);
1088 st->buf[st->size] = 0; /* Courtesy termination */
1089
1090 return chunk_size; /* Converted in full */
1091}
1092
1093/*
1094 * Decode OCTET STRING from the XML element's body.
1095 */
1096static asn_dec_rval_t
1097OCTET_STRING__decode_xer(asn_codec_ctx_t *opt_codec_ctx,
1098 asn_TYPE_descriptor_t *td, void **sptr,
1099 const char *opt_mname, void *buf_ptr, size_t size,
1100 int (*opt_unexpected_tag_decoder)
1101 (void *struct_ptr, void *chunk_buf, size_t chunk_size),
1102 ssize_t (*body_receiver)
1103 (void *struct_ptr, void *chunk_buf, size_t chunk_size,
1104 int have_more)
1105) {
1106 asn_OCTET_STRING_specifics_t *specs = td->specifics
1107 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1108 : &asn_DEF_OCTET_STRING_specs;
1109 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
1110 asn_struct_ctx_t *ctx; /* Per-structure parser context */
1111
1112 /*
1113 * Create the string if does not exist.
1114 */
1115 if(!*sptr) {
vlma56a9e82004-10-23 10:20:27 +00001116 OCTET_STRING_t *st;
vlm82e317b2004-12-14 13:31:01 +00001117 st = (OCTET_STRING_t *)CALLOC(1, specs->struct_size);
vlma56a9e82004-10-23 10:20:27 +00001118 if(st) st->buf = (uint8_t *)CALLOC(1, 1);
vlm82e317b2004-12-14 13:31:01 +00001119 *sptr = (void *)st;
1120 if(!st || !st->buf) {
vlm9de248e2004-10-20 15:50:55 +00001121 asn_dec_rval_t rval;
vlma56a9e82004-10-23 10:20:27 +00001122 if(*sptr) FREEMEM(*sptr);
vlm9de248e2004-10-20 15:50:55 +00001123 rval.code = RC_FAIL;
1124 rval.consumed = 0;
1125 return rval;
1126 }
1127 }
1128
1129 /* Restore parsing context */
1130 ctx = (asn_struct_ctx_t *)(((char *)*sptr) + specs->ctx_offset);
1131
1132 return xer_decode_general(opt_codec_ctx, ctx, *sptr, xml_tag,
1133 buf_ptr, size, opt_unexpected_tag_decoder, body_receiver);
1134}
1135
1136/*
1137 * Decode OCTET STRING from the hexadecimal data.
1138 */
1139asn_dec_rval_t
1140OCTET_STRING_decode_xer_hex(asn_codec_ctx_t *opt_codec_ctx,
1141 asn_TYPE_descriptor_t *td, void **sptr,
1142 const char *opt_mname, void *buf_ptr, size_t size) {
1143 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1144 buf_ptr, size, 0, OCTET_STRING__convert_hexadecimal);
1145}
1146
1147/*
1148 * Decode OCTET STRING from the binary (0/1) data.
1149 */
1150asn_dec_rval_t
1151OCTET_STRING_decode_xer_binary(asn_codec_ctx_t *opt_codec_ctx,
1152 asn_TYPE_descriptor_t *td, void **sptr,
1153 const char *opt_mname, void *buf_ptr, size_t size) {
1154 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1155 buf_ptr, size, 0, OCTET_STRING__convert_binary);
1156}
1157
1158/*
1159 * Decode OCTET STRING from the string (ASCII/UTF-8) data.
1160 */
1161asn_dec_rval_t
1162OCTET_STRING_decode_xer_utf8(asn_codec_ctx_t *opt_codec_ctx,
1163 asn_TYPE_descriptor_t *td, void **sptr,
1164 const char *opt_mname, void *buf_ptr, size_t size) {
1165 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1166 buf_ptr, size,
1167 OCTET_STRING__handle_control_chars,
1168 OCTET_STRING__convert_entrefs);
1169}
1170
1171
vlmfa67ddc2004-06-03 03:38:44 +00001172int
vlm7b75d982004-09-29 13:20:14 +00001173OCTET_STRING_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
vlmfa67ddc2004-06-03 03:38:44 +00001174 asn_app_consume_bytes_f *cb, void *app_key) {
vlm1ff928d2004-08-11 08:10:13 +00001175 static const char *h2c = "0123456789ABCDEF";
vlmda674682004-08-11 09:07:36 +00001176 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +00001177 char scratch[16 * 3 + 4];
1178 char *p = scratch;
1179 uint8_t *buf;
1180 uint8_t *end;
1181 size_t i;
vlmfa67ddc2004-06-03 03:38:44 +00001182
vlmb42843a2004-06-05 08:17:50 +00001183 (void)td; /* Unused argument */
1184
vlm6678cb12004-09-26 13:10:40 +00001185 if(!st || !st->buf) return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +00001186
1187 /*
1188 * Dump the contents of the buffer in hexadecimal.
1189 */
1190 buf = st->buf;
1191 end = buf + st->size;
1192 for(i = 0; buf < end; buf++, i++) {
1193 if(!(i % 16) && (i || st->size > 16)) {
vlm6678cb12004-09-26 13:10:40 +00001194 if(cb(scratch, p - scratch, app_key) < 0)
vlmfa67ddc2004-06-03 03:38:44 +00001195 return -1;
vlm6678cb12004-09-26 13:10:40 +00001196 _i_INDENT(1);
vlmfa67ddc2004-06-03 03:38:44 +00001197 p = scratch;
1198 }
1199 *p++ = h2c[(*buf >> 4) & 0x0F];
1200 *p++ = h2c[*buf & 0x0F];
vlm39ba4c42004-09-22 16:06:28 +00001201 *p++ = 0x20;
vlmfa67ddc2004-06-03 03:38:44 +00001202 }
1203
vlmef1b4c02004-09-23 22:06:26 +00001204 if(p > scratch) {
1205 p--; /* Remove the tail space */
vlm6678cb12004-09-26 13:10:40 +00001206 if(cb(scratch, p - scratch, app_key) < 0)
vlmef1b4c02004-09-23 22:06:26 +00001207 return -1;
1208 }
1209
1210 return 0;
vlmfa67ddc2004-06-03 03:38:44 +00001211}
1212
1213int
vlm9de248e2004-10-20 15:50:55 +00001214OCTET_STRING_print_utf8(asn_TYPE_descriptor_t *td, const void *sptr,
vlmfa67ddc2004-06-03 03:38:44 +00001215 int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +00001216 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +00001217
vlmb42843a2004-06-05 08:17:50 +00001218 (void)td; /* Unused argument */
1219 (void)ilevel; /* Unused argument */
1220
vlmfa67ddc2004-06-03 03:38:44 +00001221 if(st && st->buf) {
vlm6678cb12004-09-26 13:10:40 +00001222 return (cb(st->buf, st->size, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +00001223 } else {
vlm6678cb12004-09-26 13:10:40 +00001224 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +00001225 }
1226}
1227
1228void
vlm7b75d982004-09-29 13:20:14 +00001229OCTET_STRING_free(asn_TYPE_descriptor_t *td, void *sptr, int contents_only) {
vlmda674682004-08-11 09:07:36 +00001230 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
vlm0f1ab762004-10-12 05:57:23 +00001231 asn_OCTET_STRING_specifics_t *specs = td->specifics
vlm9de248e2004-10-20 15:50:55 +00001232 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1233 : &asn_DEF_OCTET_STRING_specs;
vlm0f1ab762004-10-12 05:57:23 +00001234 asn_struct_ctx_t *ctx = (asn_struct_ctx_t *)
1235 ((char *)st + specs->ctx_offset);
vlme2375902004-11-08 10:47:12 +00001236 struct _stack *stck;
vlmfa67ddc2004-06-03 03:38:44 +00001237
1238 if(!td || !st)
1239 return;
1240
1241 ASN_DEBUG("Freeing %s as OCTET STRING", td->name);
1242
1243 if(st->buf) {
1244 FREEMEM(st->buf);
1245 }
1246
1247 /*
1248 * Remove decode-time stack.
1249 */
vlme2375902004-11-08 10:47:12 +00001250 stck = (struct _stack *)ctx->ptr;
vlmfa67ddc2004-06-03 03:38:44 +00001251 if(stck) {
1252 while(stck->tail) {
1253 struct _stack_el *sel = stck->tail;
1254 stck->tail = sel->prev;
1255 FREEMEM(sel);
1256 }
1257 FREEMEM(stck);
1258 }
1259
1260 if(!contents_only) {
1261 FREEMEM(st);
1262 }
1263}
1264
1265/*
1266 * Conversion routines.
1267 */
1268int
1269OCTET_STRING_fromBuf(OCTET_STRING_t *st, const char *str, int len) {
1270 void *buf;
1271
1272 if(st == 0 || (str == 0 && len)) {
1273 errno = EINVAL;
1274 return -1;
1275 }
1276
1277 /*
1278 * Clear the OCTET STRING.
1279 */
1280 if(str == NULL) {
1281 if(st->buf)
1282 FREEMEM(st->buf);
1283 st->size = 0;
1284 return 0;
1285 }
1286
1287 /* Determine the original string size, if not explicitly given */
1288 if(len < 0)
1289 len = strlen(str);
1290
1291 /* Allocate and fill the memory */
1292 buf = MALLOC(len + 1);
1293 if(buf == NULL) {
1294 return -1;
1295 } else {
vlmda674682004-08-11 09:07:36 +00001296 st->buf = (uint8_t *)buf;
vlmfa67ddc2004-06-03 03:38:44 +00001297 st->size = len;
1298 }
1299
1300 memcpy(buf, str, len);
1301 st->buf[st->size] = '\0'; /* Couldn't use memcpy(len+1)! */
1302
1303 return 0;
1304}
1305
1306OCTET_STRING_t *
vlm0f1ab762004-10-12 05:57:23 +00001307OCTET_STRING_new_fromBuf(asn_TYPE_descriptor_t *td, const char *str, int len) {
1308 asn_OCTET_STRING_specifics_t *specs = td->specifics
vlm9de248e2004-10-20 15:50:55 +00001309 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1310 : &asn_DEF_OCTET_STRING_specs;
vlmfa67ddc2004-06-03 03:38:44 +00001311 OCTET_STRING_t *st;
1312
vlm0f1ab762004-10-12 05:57:23 +00001313 st = (OCTET_STRING_t *)CALLOC(1, specs->struct_size);
vlmfa67ddc2004-06-03 03:38:44 +00001314 if(st && str && OCTET_STRING_fromBuf(st, str, len)) {
1315 free(st);
1316 st = NULL;
1317 }
1318
1319 return st;
1320}
1321