2 * Copyright (c) 2003, 2004, 2005, 2006 Lev Walkin <vlm@lionet.info>.
4 * Redistribution and modifications are permitted subject to BSD license.
6 #include <asn_internal.h>
7 #include <OCTET_STRING.h>
8 #include <BIT_STRING.h> /* for .bits_unused member */
12 * OCTET STRING basic type description.
14 static const ber_tlv_tag_t asn_DEF_OCTET_STRING_tags[] = {
15 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2))
17 static const asn_OCTET_STRING_specifics_t asn_DEF_OCTET_STRING_specs = {
18 sizeof(OCTET_STRING_t),
19 offsetof(OCTET_STRING_t, _asn_ctx),
22 static const asn_per_constraints_t asn_DEF_OCTET_STRING_constraints = {
23 { APC_CONSTRAINED, 8, 8, 0, 255 },
24 { APC_SEMI_CONSTRAINED, -1, -1, 0, 0 },
27 asn_TYPE_descriptor_t asn_DEF_OCTET_STRING = {
28 "OCTET STRING", /* Canonical name */
29 "OCTET_STRING", /* XML tag name */
31 OCTET_STRING_print, /* non-ascii stuff, generally */
32 asn_generic_no_constraint,
33 OCTET_STRING_decode_ber,
34 OCTET_STRING_encode_der,
35 OCTET_STRING_decode_xer_hex,
36 OCTET_STRING_encode_xer,
37 OCTET_STRING_decode_uper, /* Unaligned PER decoder */
38 OCTET_STRING_encode_uper, /* Unaligned PER encoder */
39 0, /* Use generic outmost tag fetcher */
40 asn_DEF_OCTET_STRING_tags,
41 sizeof(asn_DEF_OCTET_STRING_tags)
42 / sizeof(asn_DEF_OCTET_STRING_tags[0]),
43 asn_DEF_OCTET_STRING_tags, /* Same as above */
44 sizeof(asn_DEF_OCTET_STRING_tags)
45 / sizeof(asn_DEF_OCTET_STRING_tags[0]),
46 0, /* No PER visible constraints */
47 0, 0, /* No members */
48 &asn_DEF_OCTET_STRING_specs
54 #define _CH_PHASE(ctx, inc) do { \
59 #define NEXT_PHASE(ctx) _CH_PHASE(ctx, +1)
60 #define PREV_PHASE(ctx) _CH_PHASE(ctx, -1)
63 #define ADVANCE(num_bytes) do { \
64 size_t num = (num_bytes); \
65 buf_ptr = ((const char *)buf_ptr) + num; \
67 consumed_myself += num; \
71 #define RETURN(_code) do { \
72 asn_dec_rval_t tmprval; \
73 tmprval.code = _code; \
74 tmprval.consumed = consumed_myself; \
79 #define APPEND(bufptr, bufsize) do { \
80 size_t _bs = (bufsize); /* Append size */ \
81 size_t _ns = ctx->context; /* Allocated now */ \
82 size_t _es = st->size + _bs; /* Expected size */ \
83 /* int is really a typeof(st->size): */ \
84 if((int)_es < 0) RETURN(RC_FAIL); \
87 /* Be nice and round to the memory allocator */ \
88 do { _ns = _ns ? _ns << 1 : 16; } \
90 /* int is really a typeof(st->size): */ \
91 if((int)_ns < 0) RETURN(RC_FAIL); \
92 ptr = REALLOC(st->buf, _ns); \
94 st->buf = (uint8_t *)ptr; \
99 ASN_DEBUG("Reallocating into %ld", (long)_ns); \
101 memcpy(st->buf + st->size, bufptr, _bs); \
102 /* Convenient nul-termination */ \
103 st->buf[_es] = '\0'; \
108 * The main reason why ASN.1 is still alive is that too much time and effort
109 * is necessary for learning it more or less adequately, thus creating a gut
110 * necessity to demonstrate that aquired skill everywhere afterwards.
111 * No, I am not going to explain what the following stuff is.
114 ber_tlv_len_t left; /* What's left to read (or -1) */
115 ber_tlv_len_t got; /* What was actually processed */
116 int cont_level; /* Depth of subcontainment */
117 int want_nulls; /* Want null "end of content" octets? */
118 int bits_chopped; /* Flag in BIT STRING mode */
119 ber_tlv_tag_t tag; /* For debugging purposes */
120 struct _stack_el *prev;
121 struct _stack_el *next;
124 struct _stack_el *tail;
125 struct _stack_el *cur_ptr;
128 static struct _stack_el *
129 OS__add_stack_el(struct _stack *st) {
130 struct _stack_el *nel;
133 * Reuse the old stack frame or allocate a new one.
135 if(st->cur_ptr && st->cur_ptr->next) {
136 nel = st->cur_ptr->next;
137 nel->bits_chopped = 0;
139 /* Retain the nel->cont_level, it's correct. */
141 nel = (struct _stack_el *)CALLOC(1, sizeof(struct _stack_el));
146 /* Increase a subcontainment depth */
147 nel->cont_level = st->tail->cont_level + 1;
148 st->tail->next = nel;
150 nel->prev = st->tail;
159 static struct _stack *
161 return (struct _stack *)CALLOC(1, sizeof(struct _stack));
165 * Decode OCTET STRING type.
168 OCTET_STRING_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
169 asn_TYPE_descriptor_t *td,
170 void **sptr, const void *buf_ptr, size_t size, int tag_mode) {
171 asn_OCTET_STRING_specifics_t *specs = td->specifics
172 ? (asn_OCTET_STRING_specifics_t *)td->specifics
173 : &asn_DEF_OCTET_STRING_specs;
174 BIT_STRING_t *st = (BIT_STRING_t *)*sptr;
176 asn_struct_ctx_t *ctx;
177 ssize_t consumed_myself = 0;
178 struct _stack *stck; /* Expectations stack structure */
179 struct _stack_el *sel = 0; /* Stack element */
181 enum asn_OS_Subvariant type_variant = specs->subvariant;
183 ASN_DEBUG("Decoding %s as %s (frame %ld)",
185 (type_variant == ASN_OSUBV_STR) ?
186 "OCTET STRING" : "OS-SpecialCase",
190 * Create the string if does not exist.
193 st = (BIT_STRING_t *)(*sptr = CALLOC(1, specs->struct_size));
194 if(st == NULL) RETURN(RC_FAIL);
197 /* Restore parsing context */
198 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
205 rval = ber_check_tags(opt_codec_ctx, td, ctx,
206 buf_ptr, size, tag_mode, -1,
207 &ctx->left, &tlv_constr);
208 if(rval.code != RC_OK)
213 * Complex operation, requires stack of expectations.
215 ctx->ptr = _new_stack();
217 stck = (struct _stack *)ctx->ptr;
223 * Jump into stackless primitive decoding.
226 if(type_variant == ASN_OSUBV_ANY && tag_mode != 1)
227 APPEND(buf_ptr, rval.consumed);
228 ADVANCE(rval.consumed);
237 * Fill the stack with expectations.
239 stck = (struct _stack *)ctx->ptr;
242 ber_tlv_tag_t tlv_tag;
243 ber_tlv_len_t tlv_len;
244 ber_tlv_tag_t expected_tag;
245 ssize_t tl, ll, tlvl;
246 /* This one works even if (sel->left == -1) */
247 ssize_t Left = ((!sel||(size_t)sel->left >= size)
248 ?(ssize_t)size:sel->left);
251 ASN_DEBUG("%p, s->l=%ld, s->wn=%ld, s->g=%ld\n", sel,
252 (long)(sel?sel->left:0),
253 (long)(sel?sel->want_nulls:0),
254 (long)(sel?sel->got:0)
256 if(sel && sel->left <= 0 && sel->want_nulls == 0) {
258 struct _stack_el *prev = sel->prev;
259 if(prev->left != -1) {
260 if(prev->left < sel->got)
262 prev->left -= sel->got;
264 prev->got += sel->got;
265 sel = stck->cur_ptr = prev;
270 sel = stck->cur_ptr = 0;
271 break; /* Nothing to wait */
275 tl = ber_fetch_tag(buf_ptr, Left, &tlv_tag);
276 ASN_DEBUG("fetch tag(size=%ld,L=%ld), %sstack, left=%ld, wn=%ld, tl=%ld",
277 (long)size, (long)Left, sel?"":"!",
278 (long)(sel?sel->left:0),
279 (long)(sel?sel->want_nulls:0),
282 case -1: RETURN(RC_FAIL);
283 case 0: RETURN(RC_WMORE);
286 tlv_constr = BER_TLV_CONSTRUCTED(buf_ptr);
288 ll = ber_fetch_length(tlv_constr,
289 (const char *)buf_ptr + tl,Left - tl,&tlv_len);
290 ASN_DEBUG("Got tag=%s, tc=%d, left=%ld, tl=%ld, len=%ld, ll=%ld",
291 ber_tlv_tag_string(tlv_tag), tlv_constr,
292 (long)Left, (long)tl, (long)tlv_len, (long)ll);
294 case -1: RETURN(RC_FAIL);
295 case 0: RETURN(RC_WMORE);
298 if(sel && sel->want_nulls
299 && ((const uint8_t *)buf_ptr)[0] == 0
300 && ((const uint8_t *)buf_ptr)[1] == 0)
303 ASN_DEBUG("Eat EOC; wn=%d--", sel->want_nulls);
305 if(type_variant == ASN_OSUBV_ANY
306 && (tag_mode != 1 || sel->cont_level))
311 if(sel->left != -1) {
312 sel->left -= 2; /* assert(sel->left >= 2) */
316 if(sel->want_nulls == 0) {
317 /* Move to the next expectation */
326 * Set up expected tags,
327 * depending on ASN.1 type being decoded.
329 switch(type_variant) {
331 /* X.690: 8.6.4.1, NOTE 2 */
336 int level = sel->cont_level;
337 if(level < td->all_tags_count) {
338 expected_tag = td->all_tags[level];
340 } else if(td->all_tags_count) {
341 expected_tag = td->all_tags
342 [td->all_tags_count - 1];
345 /* else, Fall through */
349 expected_tag = tlv_tag;
354 if(tlv_tag != expected_tag) {
356 ber_tlv_tag_snprint(tlv_tag,
357 buf[0], sizeof(buf[0]));
358 ber_tlv_tag_snprint(td->tags[td->tags_count-1],
359 buf[1], sizeof(buf[1]));
360 ASN_DEBUG("Tag does not match expectation: %s != %s",
365 tlvl = tl + ll; /* Combined length of T and L encoding */
366 if((tlv_len + tlvl) < 0) {
367 /* tlv_len value is too big */
368 ASN_DEBUG("TLV encoding + length (%ld) is too big",
374 * Append a new expectation.
376 sel = OS__add_stack_el(stck);
377 if(!sel) RETURN(RC_FAIL);
381 sel->want_nulls = (tlv_len==-1);
382 if(sel->prev && sel->prev->left != -1) {
383 /* Check that the parent frame is big enough */
384 if(sel->prev->left < tlvl + (tlv_len==-1?0:tlv_len))
387 sel->left = sel->prev->left - tlvl;
393 if(type_variant == ASN_OSUBV_ANY
394 && (tag_mode != 1 || sel->cont_level))
395 APPEND(buf_ptr, tlvl);
399 ASN_DEBUG("+EXPECT2 got=%ld left=%ld, wn=%d, clvl=%d",
400 (long)sel->got, (long)sel->left,
401 sel->want_nulls, sel->cont_level);
405 /* Finished operation, "phase out" */
406 ASN_DEBUG("Phase out");
414 stck = (struct _stack *)ctx->ptr;
416 ASN_DEBUG("Phase 2: Need %ld bytes, size=%ld, alrg=%ld, wn=%d",
417 (long)sel->left, (long)size, (long)sel->got,
422 assert(sel->left >= 0);
424 len = ((ber_tlv_len_t)size < sel->left)
425 ? (ber_tlv_len_t)size : sel->left;
427 if(type_variant == ASN_OSUBV_BIT
428 && sel->bits_chopped == 0) {
429 /* Put the unused-bits-octet away */
430 st->bits_unused = *(const uint8_t *)buf_ptr;
431 APPEND(((const char *)buf_ptr+1), (len - 1));
432 sel->bits_chopped = 1;
434 APPEND(buf_ptr, len);
442 ASN_DEBUG("OS left %ld, size = %ld, wn=%d\n",
443 (long)sel->left, (long)size, sel->want_nulls);
454 * Primitive form, no stack required.
456 assert(ctx->left >= 0);
458 if(size < (size_t)ctx->left) {
459 if(!size) RETURN(RC_WMORE);
460 if(type_variant == ASN_OSUBV_BIT && !ctx->context) {
461 st->bits_unused = *(const uint8_t *)buf_ptr;
465 APPEND(buf_ptr, size);
466 assert(ctx->context > 0);
471 if(type_variant == ASN_OSUBV_BIT
472 && !ctx->context && ctx->left) {
473 st->bits_unused = *(const uint8_t *)buf_ptr;
477 APPEND(buf_ptr, ctx->left);
487 ASN_DEBUG("3sel p=%p, wn=%d, l=%ld, g=%ld, size=%ld",
488 sel->prev, sel->want_nulls,
489 (long)sel->left, (long)sel->got, (long)size);
490 if(sel->prev || sel->want_nulls > 1 || sel->left > 0) {
496 * BIT STRING-specific processing.
498 if(type_variant == ASN_OSUBV_BIT && st->size) {
499 /* Finalize BIT STRING: zero out unused bits. */
500 st->buf[st->size-1] &= 0xff << st->bits_unused;
503 ASN_DEBUG("Took %ld bytes to encode %s: [%s]:%ld",
504 (long)consumed_myself, td->name,
505 (type_variant == ASN_OSUBV_STR) ? (char *)st->buf : "<data>",
513 * Encode OCTET STRING type using DER.
516 OCTET_STRING_encode_der(asn_TYPE_descriptor_t *td, void *sptr,
517 int tag_mode, ber_tlv_tag_t tag,
518 asn_app_consume_bytes_f *cb, void *app_key) {
520 asn_OCTET_STRING_specifics_t *specs = td->specifics
521 ? (asn_OCTET_STRING_specifics_t *)td->specifics
522 : &asn_DEF_OCTET_STRING_specs;
523 BIT_STRING_t *st = (BIT_STRING_t *)sptr;
524 enum asn_OS_Subvariant type_variant = specs->subvariant;
525 int fix_last_byte = 0;
527 ASN_DEBUG("%s %s as OCTET STRING",
528 cb?"Estimating":"Encoding", td->name);
533 if(type_variant != ASN_OSUBV_ANY || tag_mode == 1) {
534 er.encoded = der_write_tags(td,
535 (type_variant == ASN_OSUBV_BIT) + st->size,
536 tag_mode, type_variant == ASN_OSUBV_ANY, tag,
538 if(er.encoded == -1) {
540 er.structure_ptr = sptr;
544 /* Disallow: [<tag>] IMPLICIT ANY */
545 assert(type_variant != ASN_OSUBV_ANY || tag_mode != -1);
550 er.encoded += (type_variant == ASN_OSUBV_BIT) + st->size;
555 * Prepare to deal with the last octet of BIT STRING.
557 if(type_variant == ASN_OSUBV_BIT) {
558 uint8_t b = st->bits_unused & 0x07;
559 if(b && st->size) fix_last_byte = 1;
560 ASN__CALLBACK(&b, 1);
564 /* Invoke callback for the main part of the buffer */
565 ASN__CALLBACK(st->buf, st->size - fix_last_byte);
567 /* The last octet should be stripped off the unused bits */
569 uint8_t b = st->buf[st->size-1] & (0xff << st->bits_unused);
570 ASN__CALLBACK(&b, 1);
573 er.encoded += st->size;
580 OCTET_STRING_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
581 int ilevel, enum xer_encoder_flags_e flags,
582 asn_app_consume_bytes_f *cb, void *app_key) {
583 const char * const h2c = "0123456789ABCDEF";
584 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
586 char scratch[16 * 3 + 4];
592 if(!st || (!st->buf && st->size))
598 * Dump the contents of the buffer in hexadecimal.
601 end = buf + st->size;
602 if(flags & XER_F_CANONICAL) {
603 char *scend = scratch + (sizeof(scratch) - 2);
604 for(; buf < end; buf++) {
606 ASN__CALLBACK(scratch, p - scratch);
607 er.encoded += p - scratch;
610 *p++ = h2c[(*buf >> 4) & 0x0F];
611 *p++ = h2c[*buf & 0x0F];
614 ASN__CALLBACK(scratch, p-scratch); /* Dump the rest */
615 er.encoded += p - scratch;
617 for(i = 0; buf < end; buf++, i++) {
618 if(!(i % 16) && (i || st->size > 16)) {
619 ASN__CALLBACK(scratch, p-scratch);
620 er.encoded += (p-scratch);
622 ASN__TEXT_INDENT(1, ilevel);
624 *p++ = h2c[(*buf >> 4) & 0x0F];
625 *p++ = h2c[*buf & 0x0F];
629 p--; /* Remove the tail space */
630 ASN__CALLBACK(scratch, p-scratch); /* Dump the rest */
631 er.encoded += p - scratch;
633 ASN__TEXT_INDENT(1, ilevel-1);
642 static const struct OCTET_STRING__xer_escape_table_s {
645 } OCTET_STRING__xer_escape_table[] = {
646 #define OSXET(s) { s, sizeof(s) - 1 }
647 OSXET("\074\156\165\154\057\076"), /* <nul/> */
648 OSXET("\074\163\157\150\057\076"), /* <soh/> */
649 OSXET("\074\163\164\170\057\076"), /* <stx/> */
650 OSXET("\074\145\164\170\057\076"), /* <etx/> */
651 OSXET("\074\145\157\164\057\076"), /* <eot/> */
652 OSXET("\074\145\156\161\057\076"), /* <enq/> */
653 OSXET("\074\141\143\153\057\076"), /* <ack/> */
654 OSXET("\074\142\145\154\057\076"), /* <bel/> */
655 OSXET("\074\142\163\057\076"), /* <bs/> */
656 OSXET("\011"), /* \t */
657 OSXET("\012"), /* \n */
658 OSXET("\074\166\164\057\076"), /* <vt/> */
659 OSXET("\074\146\146\057\076"), /* <ff/> */
660 OSXET("\015"), /* \r */
661 OSXET("\074\163\157\057\076"), /* <so/> */
662 OSXET("\074\163\151\057\076"), /* <si/> */
663 OSXET("\074\144\154\145\057\076"), /* <dle/> */
664 OSXET("\074\144\143\061\057\076"), /* <de1/> */
665 OSXET("\074\144\143\062\057\076"), /* <de2/> */
666 OSXET("\074\144\143\063\057\076"), /* <de3/> */
667 OSXET("\074\144\143\064\057\076"), /* <de4/> */
668 OSXET("\074\156\141\153\057\076"), /* <nak/> */
669 OSXET("\074\163\171\156\057\076"), /* <syn/> */
670 OSXET("\074\145\164\142\057\076"), /* <etb/> */
671 OSXET("\074\143\141\156\057\076"), /* <can/> */
672 OSXET("\074\145\155\057\076"), /* <em/> */
673 OSXET("\074\163\165\142\057\076"), /* <sub/> */
674 OSXET("\074\145\163\143\057\076"), /* <esc/> */
675 OSXET("\074\151\163\064\057\076"), /* <is4/> */
676 OSXET("\074\151\163\063\057\076"), /* <is3/> */
677 OSXET("\074\151\163\062\057\076"), /* <is2/> */
678 OSXET("\074\151\163\061\057\076"), /* <is1/> */
685 OSXET("\046\141\155\160\073"), /* & */
687 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, /* ()*+,-./ */
688 {0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, /* 01234567 */
689 {0,0},{0,0},{0,0},{0,0}, /* 89:; */
690 OSXET("\046\154\164\073"), /* < */
692 OSXET("\046\147\164\073"), /* > */
696 OS__check_escaped_control_char(const void *buf, int size) {
699 * Inefficient algorithm which translates the escape sequences
700 * defined above into characters. Returns -1 if not found.
701 * TODO: replace by a faster algorithm (bsearch(), hash or
702 * nested table lookups).
704 for(i = 0; i < 32 /* Don't spend time on the bottom half */; i++) {
705 const struct OCTET_STRING__xer_escape_table_s *el;
706 el = &OCTET_STRING__xer_escape_table[i];
707 if(el->size == size && memcmp(buf, el->string, size) == 0)
714 OCTET_STRING__handle_control_chars(void *struct_ptr, const void *chunk_buf, size_t chunk_size) {
716 * This might be one of the escape sequences
717 * for control characters. Check it out.
720 int control_char = OS__check_escaped_control_char(chunk_buf,chunk_size);
721 if(control_char >= 0) {
722 OCTET_STRING_t *st = (OCTET_STRING_t *)struct_ptr;
723 void *p = REALLOC(st->buf, st->size + 2);
725 st->buf = (uint8_t *)p;
726 st->buf[st->size++] = control_char;
727 st->buf[st->size] = '\0'; /* nul-termination */
732 return -1; /* No, it's not */
736 OCTET_STRING_encode_xer_utf8(asn_TYPE_descriptor_t *td, void *sptr,
737 int ilevel, enum xer_encoder_flags_e flags,
738 asn_app_consume_bytes_f *cb, void *app_key) {
739 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
742 uint8_t *ss; /* Sequence start */
743 ssize_t encoded_len = 0;
745 (void)ilevel; /* Unused argument */
746 (void)flags; /* Unused argument */
748 if(!st || (!st->buf && st->size))
752 end = buf + st->size;
753 for(ss = buf; buf < end; buf++) {
754 unsigned int ch = *buf;
755 int s_len; /* Special encoding sequence length */
758 * Escape certain characters: X.680/11.15
760 if(ch < sizeof(OCTET_STRING__xer_escape_table)
761 /sizeof(OCTET_STRING__xer_escape_table[0])
762 && (s_len = OCTET_STRING__xer_escape_table[ch].size)) {
763 if(((buf - ss) && cb(ss, buf - ss, app_key) < 0)
764 || cb(OCTET_STRING__xer_escape_table[ch].string, s_len,
767 encoded_len += (buf - ss) + s_len;
772 encoded_len += (buf - ss);
773 if((buf - ss) && cb(ss, buf - ss, app_key) < 0)
776 er.encoded = encoded_len;
781 * Convert from hexadecimal format (cstring): "AB CD EF"
783 static ssize_t OCTET_STRING__convert_hexadecimal(void *sptr, const void *chunk_buf, size_t chunk_size, int have_more) {
784 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
785 const char *chunk_stop = (const char *)chunk_buf;
786 const char *p = chunk_stop;
787 const char *pend = p + chunk_size;
788 unsigned int clv = 0;
789 int half = 0; /* Half bit */
792 /* Reallocate buffer according to high cap estimation */
793 ssize_t _ns = st->size + (chunk_size + 1) / 2;
794 void *nptr = REALLOC(st->buf, _ns + 1);
796 st->buf = (uint8_t *)nptr;
797 buf = st->buf + st->size;
800 * If something like " a b c " appears here, the " a b":3 will be
801 * converted, and the rest skipped. That is, unless buf_size is greater
802 * than chunk_size, then it'll be equivalent to "ABC0".
804 for(; p < pend; p++) {
805 int ch = *(const unsigned char *)p;
807 case 0x09: case 0x0a: case 0x0c: case 0x0d:
809 /* Ignore whitespace */
811 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34: /*01234*/
812 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39: /*56789*/
813 clv = (clv << 4) + (ch - 0x30);
815 case 0x41: case 0x42: case 0x43: /* ABC */
816 case 0x44: case 0x45: case 0x46: /* DEF */
817 clv = (clv << 4) + (ch - 0x41 + 10);
819 case 0x61: case 0x62: case 0x63: /* abc */
820 case 0x64: case 0x65: case 0x66: /* def */
821 clv = (clv << 4) + (ch - 0x61 + 10);
835 * Check partial decoding.
840 * Partial specification is fine,
841 * because no more more PXER_TEXT data is available.
850 st->size = buf - st->buf; /* Adjust the buffer size */
851 assert(st->size <= _ns);
852 st->buf[st->size] = 0; /* Courtesy termination */
854 return (chunk_stop - (const char *)chunk_buf); /* Converted size */
858 * Convert from binary format: "00101011101"
860 static ssize_t OCTET_STRING__convert_binary(void *sptr, const void *chunk_buf, size_t chunk_size, int have_more) {
861 BIT_STRING_t *st = (BIT_STRING_t *)sptr;
862 const char *p = (const char *)chunk_buf;
863 const char *pend = p + chunk_size;
864 int bits_unused = st->bits_unused & 0x7;
867 /* Reallocate buffer according to high cap estimation */
868 ssize_t _ns = st->size + (chunk_size + 7) / 8;
869 void *nptr = REALLOC(st->buf, _ns + 1);
871 st->buf = (uint8_t *)nptr;
872 buf = st->buf + st->size;
882 * Convert series of 0 and 1 into the octet string.
884 for(; p < pend; p++) {
885 int ch = *(const unsigned char *)p;
887 case 0x09: case 0x0a: case 0x0c: case 0x0d:
889 /* Ignore whitespace */
893 if(bits_unused-- <= 0) {
894 *++buf = 0; /* Clean the cell */
897 *buf |= (ch&1) << bits_unused;
900 st->bits_unused = bits_unused;
905 if(bits_unused == 8) {
906 st->size = buf - st->buf;
909 st->size = buf - st->buf + 1;
910 st->bits_unused = bits_unused;
913 assert(st->size <= _ns);
914 st->buf[st->size] = 0; /* Courtesy termination */
916 return chunk_size; /* Converted in full */
920 * Something like strtod(), but with stricter rules.
923 OS__strtoent(int base, const char *buf, const char *end, int32_t *ret_value) {
927 for(p = buf; p < end; p++) {
930 /* Strange huge value */
931 if((val * base + base) < 0)
935 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34: /*01234*/
936 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39: /*56789*/
937 val = val * base + (ch - 0x30);
939 case 0x41: case 0x42: case 0x43: /* ABC */
940 case 0x44: case 0x45: case 0x46: /* DEF */
941 val = val * base + (ch - 0x41 + 10);
943 case 0x61: case 0x62: case 0x63: /* abc */
944 case 0x64: case 0x65: case 0x66: /* def */
945 val = val * base + (ch - 0x61 + 10);
949 return (p - buf) + 1;
951 return -1; /* Character set error */
960 * Convert from the plain UTF-8 format, expanding entity references: "2 < 3"
962 static ssize_t OCTET_STRING__convert_entrefs(void *sptr, const void *chunk_buf, size_t chunk_size, int have_more) {
963 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
964 const char *p = (const char *)chunk_buf;
965 const char *pend = p + chunk_size;
968 /* Reallocate buffer */
969 ssize_t _ns = st->size + chunk_size;
970 void *nptr = REALLOC(st->buf, _ns + 1);
972 st->buf = (uint8_t *)nptr;
973 buf = st->buf + st->size;
976 * Convert series of 0 and 1 into the octet string.
978 for(; p < pend; p++) {
979 int ch = *(const unsigned char *)p;
980 int len; /* Length of the rest of the chunk */
982 if(ch != 0x26 /* '&' */) {
984 continue; /* That was easy... */
988 * Process entity reference.
990 len = chunk_size - (p - (const char *)chunk_buf);
991 if(len == 1 /* "&" */) goto want_more;
992 if(p[1] == 0x23 /* '#' */) {
993 const char *pval; /* Pointer to start of digits */
994 int32_t val = 0; /* Entity reference value */
997 if(len == 2 /* "&#" */) goto want_more;
998 if(p[2] == 0x78 /* 'x' */)
999 pval = p + 3, base = 16;
1001 pval = p + 2, base = 10;
1002 len = OS__strtoent(base, pval, p + len, &val);
1004 /* Invalid charset. Just copy verbatim. */
1008 if(!len || pval[len-1] != 0x3b) goto want_more;
1010 p += (pval - p) + len - 1; /* Advance past entref */
1014 } else if(val < 0x800) {
1015 *buf++ = 0xc0 | ((val >> 6));
1016 *buf++ = 0x80 | ((val & 0x3f));
1017 } else if(val < 0x10000) {
1018 *buf++ = 0xe0 | ((val >> 12));
1019 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1020 *buf++ = 0x80 | ((val & 0x3f));
1021 } else if(val < 0x200000) {
1022 *buf++ = 0xf0 | ((val >> 18));
1023 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1024 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1025 *buf++ = 0x80 | ((val & 0x3f));
1026 } else if(val < 0x4000000) {
1027 *buf++ = 0xf8 | ((val >> 24));
1028 *buf++ = 0x80 | ((val >> 18) & 0x3f);
1029 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1030 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1031 *buf++ = 0x80 | ((val & 0x3f));
1033 *buf++ = 0xfc | ((val >> 30) & 0x1);
1034 *buf++ = 0x80 | ((val >> 24) & 0x3f);
1035 *buf++ = 0x80 | ((val >> 18) & 0x3f);
1036 *buf++ = 0x80 | ((val >> 12) & 0x3f);
1037 *buf++ = 0x80 | ((val >> 6) & 0x3f);
1038 *buf++ = 0x80 | ((val & 0x3f));
1042 * Ugly, limited parsing of & > <
1044 char *sc = (char *)memchr(p, 0x3b, len > 5 ? 5 : len);
1045 if(!sc) goto want_more;
1047 && p[1] == 0x61 /* 'a' */
1048 && p[2] == 0x6d /* 'm' */
1049 && p[3] == 0x70 /* 'p' */) {
1056 *buf = 0x3c; /* '<' */
1057 } else if(p[1] == 0x67) {
1058 *buf = 0x3e; /* '>' */
1060 /* Unsupported entity reference */
1065 /* Unsupported entity reference */
1073 /* Unsupported entity reference */
1081 * We know that no more data (of the same type)
1082 * is coming. Copy the rest verbatim.
1087 chunk_size = (p - (const char *)chunk_buf);
1088 /* Processing stalled: need more data */
1092 st->size = buf - st->buf;
1093 assert(st->size <= _ns);
1094 st->buf[st->size] = 0; /* Courtesy termination */
1096 return chunk_size; /* Converted in full */
1100 * Decode OCTET STRING from the XML element's body.
1102 static asn_dec_rval_t
1103 OCTET_STRING__decode_xer(asn_codec_ctx_t *opt_codec_ctx,
1104 asn_TYPE_descriptor_t *td, void **sptr,
1105 const char *opt_mname, const void *buf_ptr, size_t size,
1106 int (*opt_unexpected_tag_decoder)
1107 (void *struct_ptr, const void *chunk_buf, size_t chunk_size),
1108 ssize_t (*body_receiver)
1109 (void *struct_ptr, const void *chunk_buf, size_t chunk_size,
1112 OCTET_STRING_t *st = (OCTET_STRING_t *)*sptr;
1113 asn_OCTET_STRING_specifics_t *specs = td->specifics
1114 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1115 : &asn_DEF_OCTET_STRING_specs;
1116 const char *xml_tag = opt_mname ? opt_mname : td->xml_tag;
1117 asn_struct_ctx_t *ctx; /* Per-structure parser context */
1118 asn_dec_rval_t rval; /* Return value from the decoder */
1122 * Create the string if does not exist.
1125 st = (OCTET_STRING_t *)CALLOC(1, specs->struct_size);
1127 if(!st) goto sta_failed;
1133 /* This is separate from above section */
1134 st->buf = (uint8_t *)CALLOC(1, 1);
1145 /* Restore parsing context */
1146 ctx = (asn_struct_ctx_t *)(((char *)*sptr) + specs->ctx_offset);
1148 return xer_decode_general(opt_codec_ctx, ctx, *sptr, xml_tag,
1149 buf_ptr, size, opt_unexpected_tag_decoder, body_receiver);
1154 rval.code = RC_FAIL;
1160 * Decode OCTET STRING from the hexadecimal data.
1163 OCTET_STRING_decode_xer_hex(asn_codec_ctx_t *opt_codec_ctx,
1164 asn_TYPE_descriptor_t *td, void **sptr,
1165 const char *opt_mname, const void *buf_ptr, size_t size) {
1166 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1167 buf_ptr, size, 0, OCTET_STRING__convert_hexadecimal);
1171 * Decode OCTET STRING from the binary (0/1) data.
1174 OCTET_STRING_decode_xer_binary(asn_codec_ctx_t *opt_codec_ctx,
1175 asn_TYPE_descriptor_t *td, void **sptr,
1176 const char *opt_mname, const void *buf_ptr, size_t size) {
1177 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1178 buf_ptr, size, 0, OCTET_STRING__convert_binary);
1182 * Decode OCTET STRING from the string (ASCII/UTF-8) data.
1185 OCTET_STRING_decode_xer_utf8(asn_codec_ctx_t *opt_codec_ctx,
1186 asn_TYPE_descriptor_t *td, void **sptr,
1187 const char *opt_mname, const void *buf_ptr, size_t size) {
1188 return OCTET_STRING__decode_xer(opt_codec_ctx, td, sptr, opt_mname,
1190 OCTET_STRING__handle_control_chars,
1191 OCTET_STRING__convert_entrefs);
1195 OCTET_STRING_per_get_characters(asn_per_data_t *po, uint8_t *buf,
1196 size_t units, unsigned int bpc, unsigned int unit_bits,
1197 long lb, long ub, asn_per_constraints_t *pc) {
1198 uint8_t *end = buf + units * bpc;
1200 ASN_DEBUG("Expanding %d characters into (%ld..%ld):%d",
1201 (int)units, lb, ub, unit_bits);
1204 if((unsigned long)ub <= ((unsigned long)2 << (unit_bits - 1))) {
1205 /* Decode without translation */
1207 } else if(pc && pc->code2value) {
1209 return 1; /* FATAL: can't have constrained
1210 * UniversalString with more than
1211 * 16 million code points */
1212 for(; buf < end; buf += bpc) {
1214 int code = per_get_few_bits(po, unit_bits);
1215 if(code < 0) return -1; /* WMORE */
1216 value = pc->code2value(code);
1218 ASN_DEBUG("Code %d (0x%02x) is"
1219 " not in map (%ld..%ld)",
1220 code, code, lb, ub);
1221 return 1; /* FATAL */
1224 case 1: *buf = value; break;
1225 case 2: buf[0] = value >> 8; buf[1] = value; break;
1226 case 4: buf[0] = value >> 24; buf[1] = value >> 16;
1227 buf[2] = value >> 8; buf[3] = value; break;
1233 /* Shortcut the no-op copying to the aligned structure */
1234 if(lb == 0 && (unit_bits == 8 * bpc)) {
1235 return per_get_many_bits(po, buf, 0, unit_bits * units);
1238 for(; buf < end; buf += bpc) {
1239 int code = per_get_few_bits(po, unit_bits);
1241 if(code < 0) return -1; /* WMORE */
1243 ASN_DEBUG("Code %d is out of range (%ld..%ld)",
1245 return 1; /* FATAL */
1248 case 1: *buf = ch; break;
1249 case 2: buf[0] = ch >> 8; buf[1] = ch; break;
1250 case 4: buf[0] = ch >> 24; buf[1] = ch >> 16;
1251 buf[2] = ch >> 8; buf[3] = ch; break;
1259 OCTET_STRING_per_put_characters(asn_per_outp_t *po, const uint8_t *buf,
1260 size_t units, unsigned int bpc, unsigned int unit_bits,
1261 long lb, long ub, asn_per_constraints_t *pc) {
1262 const uint8_t *end = buf + units * bpc;
1264 ASN_DEBUG("Squeezing %d characters into (%ld..%ld):%d (%d bpc)",
1265 (int)units, lb, ub, unit_bits, bpc);
1268 if((unsigned long)ub <= ((unsigned long)2 << (unit_bits - 1))) {
1271 } else if(pc && pc->value2code) {
1272 for(; buf < end; buf += bpc) {
1276 case 1: value = *(const uint8_t *)buf; break;
1277 case 2: value = (buf[0] << 8) | buf[1]; break;
1278 case 4: value = (buf[0] << 24) | (buf[1] << 16)
1279 | (buf[2] << 8) | buf[3]; break;
1282 code = pc->value2code(value);
1284 ASN_DEBUG("Character %d (0x%02x) is"
1285 " not in map (%ld..%ld)",
1286 *buf, *buf, lb, ub);
1289 if(per_put_few_bits(po, code, unit_bits))
1294 /* Shortcut the no-op copying to the aligned structure */
1295 if(lb == 0 && (unit_bits == 8 * bpc)) {
1296 return per_put_many_bits(po, buf, unit_bits * units);
1299 for(ub -= lb; buf < end; buf += bpc) {
1303 case 1: value = *(const uint8_t *)buf; break;
1304 case 2: value = (buf[0] << 8) | buf[1]; break;
1305 case 4: value = (buf[0] << 24) | (buf[1] << 16)
1306 | (buf[2] << 8) | buf[3]; break;
1310 if(ch < 0 || ch > ub) {
1311 ASN_DEBUG("Character %d (0x%02x)"
1312 " is out of range (%ld..%ld)",
1313 *buf, *buf, lb, ub + lb);
1316 if(per_put_few_bits(po, ch, unit_bits))
1324 OCTET_STRING_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
1325 asn_TYPE_descriptor_t *td, asn_per_constraints_t *constraints,
1326 void **sptr, asn_per_data_t *pd) {
1328 asn_OCTET_STRING_specifics_t *specs = td->specifics
1329 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1330 : &asn_DEF_OCTET_STRING_specs;
1331 asn_per_constraints_t *pc = constraints ? constraints
1332 : td->per_constraints;
1333 asn_per_constraint_t *cval;
1334 asn_per_constraint_t *csiz;
1335 asn_dec_rval_t rval = { RC_OK, 0 };
1336 BIT_STRING_t *st = (BIT_STRING_t *)*sptr;
1337 ssize_t consumed_myself = 0;
1344 } bpc; /* Bytes per character */
1345 unsigned int unit_bits;
1346 unsigned int canonical_unit_bits;
1348 (void)opt_codec_ctx;
1354 cval = &asn_DEF_OCTET_STRING_constraints.value;
1355 csiz = &asn_DEF_OCTET_STRING_constraints.size;
1358 switch(specs->subvariant) {
1361 ASN_DEBUG("Unrecognized subvariant %d", specs->subvariant);
1364 canonical_unit_bits = unit_bits = 1;
1368 canonical_unit_bits = unit_bits = 8;
1369 if(cval->flags & APC_CONSTRAINED)
1370 unit_bits = cval->range_bits;
1374 canonical_unit_bits = unit_bits = 16;
1375 if(cval->flags & APC_CONSTRAINED)
1376 unit_bits = cval->range_bits;
1380 canonical_unit_bits = unit_bits = 32;
1381 if(cval->flags & APC_CONSTRAINED)
1382 unit_bits = cval->range_bits;
1388 * Allocate the string.
1391 st = (BIT_STRING_t *)(*sptr = CALLOC(1, specs->struct_size));
1392 if(!st) RETURN(RC_FAIL);
1395 ASN_DEBUG("PER Decoding %s size %ld .. %ld bits %d",
1396 csiz->flags & APC_EXTENSIBLE ? "extensible" : "non-extensible",
1397 csiz->lower_bound, csiz->upper_bound, csiz->effective_bits);
1399 if(csiz->flags & APC_EXTENSIBLE) {
1400 int inext = per_get_few_bits(pd, 1);
1401 if(inext < 0) RETURN(RC_WMORE);
1403 csiz = &asn_DEF_OCTET_STRING_constraints.size;
1404 cval = &asn_DEF_OCTET_STRING_constraints.value;
1405 unit_bits = canonical_unit_bits;
1409 if(csiz->effective_bits >= 0) {
1412 st->size = csiz->upper_bound * bpc;
1414 st->size = (csiz->upper_bound + 7) >> 3;
1416 st->buf = (uint8_t *)MALLOC(st->size + 1);
1417 if(!st->buf) { st->size = 0; RETURN(RC_FAIL); }
1420 /* X.691, #16.5: zero-length encoding */
1421 /* X.691, #16.6: short fixed length encoding (up to 2 octets) */
1422 /* X.691, #16.7: long fixed length encoding (up to 64K octets) */
1423 if(csiz->effective_bits == 0) {
1426 ASN_DEBUG("Encoding OCTET STRING size %ld",
1428 ret = OCTET_STRING_per_get_characters(pd, st->buf,
1429 csiz->upper_bound, bpc, unit_bits,
1430 cval->lower_bound, cval->upper_bound, pc);
1431 if(ret > 0) RETURN(RC_FAIL);
1433 ASN_DEBUG("Encoding BIT STRING size %ld",
1435 ret = per_get_many_bits(pd, st->buf, 0,
1436 unit_bits * csiz->upper_bound);
1438 if(ret < 0) RETURN(RC_WMORE);
1439 consumed_myself += unit_bits * csiz->upper_bound;
1440 st->buf[st->size] = 0;
1442 int ubs = (csiz->upper_bound & 0x7);
1443 st->bits_unused = ubs ? 8 - ubs : 0;
1456 /* Get the PER length */
1457 raw_len = uper_get_length(pd, csiz->effective_bits, &repeat);
1458 if(raw_len < 0) RETURN(RC_WMORE);
1459 raw_len += csiz->lower_bound;
1461 ASN_DEBUG("Got PER length eb %ld, len %ld, %s (%s)",
1462 (long)csiz->effective_bits, (long)raw_len,
1463 repeat ? "repeat" : "once", td->name);
1465 len_bytes = raw_len * bpc;
1466 len_bits = len_bytes * unit_bits;
1469 len_bytes = (len_bits + 7) >> 3;
1471 st->bits_unused = 8 - (len_bits & 0x7);
1472 /* len_bits be multiple of 16K if repeat is set */
1474 p = REALLOC(st->buf, st->size + len_bytes + 1);
1475 if(!p) RETURN(RC_FAIL);
1476 st->buf = (uint8_t *)p;
1479 ret = OCTET_STRING_per_get_characters(pd,
1480 &st->buf[st->size], raw_len, bpc, unit_bits,
1481 cval->lower_bound, cval->upper_bound, pc);
1482 if(ret > 0) RETURN(RC_FAIL);
1484 ret = per_get_many_bits(pd, &st->buf[st->size],
1487 if(ret < 0) RETURN(RC_WMORE);
1488 st->size += len_bytes;
1490 st->buf[st->size] = 0; /* nul-terminate */
1496 OCTET_STRING_encode_uper(asn_TYPE_descriptor_t *td,
1497 asn_per_constraints_t *constraints, void *sptr, asn_per_outp_t *po) {
1499 asn_OCTET_STRING_specifics_t *specs = td->specifics
1500 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1501 : &asn_DEF_OCTET_STRING_specs;
1502 asn_per_constraints_t *pc = constraints ? constraints
1503 : td->per_constraints;
1504 asn_per_constraint_t *cval;
1505 asn_per_constraint_t *csiz;
1506 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
1507 asn_enc_rval_t er = { 0, 0, 0 };
1508 int inext = 0; /* Lies not within extension root */
1509 unsigned int unit_bits;
1510 unsigned int canonical_unit_bits;
1511 unsigned int sizeinunits;
1519 } bpc; /* Bytes per character */
1522 if(!st || (!st->buf && st->size))
1529 cval = &asn_DEF_OCTET_STRING_constraints.value;
1530 csiz = &asn_DEF_OCTET_STRING_constraints.size;
1532 ct_extensible = csiz->flags & APC_EXTENSIBLE;
1534 switch(specs->subvariant) {
1539 canonical_unit_bits = unit_bits = 1;
1541 sizeinunits = st->size * 8 - (st->bits_unused & 0x07);
1542 ASN_DEBUG("BIT STRING of %d bytes, %d bits unused",
1543 sizeinunits, st->bits_unused);
1546 canonical_unit_bits = unit_bits = 8;
1547 if(cval->flags & APC_CONSTRAINED)
1548 unit_bits = cval->range_bits;
1550 sizeinunits = st->size;
1553 canonical_unit_bits = unit_bits = 16;
1554 if(cval->flags & APC_CONSTRAINED)
1555 unit_bits = cval->range_bits;
1557 sizeinunits = st->size / 2;
1560 canonical_unit_bits = unit_bits = 32;
1561 if(cval->flags & APC_CONSTRAINED)
1562 unit_bits = cval->range_bits;
1564 sizeinunits = st->size / 4;
1568 ASN_DEBUG("Encoding %s into %d units of %d bits"
1569 " (%ld..%ld, effective %d)%s",
1570 td->name, sizeinunits, unit_bits,
1571 csiz->lower_bound, csiz->upper_bound,
1572 csiz->effective_bits, ct_extensible ? " EXT" : "");
1574 /* Figure out whether size lies within PER visible constraint */
1576 if(csiz->effective_bits >= 0) {
1577 if((int)sizeinunits < csiz->lower_bound
1578 || (int)sizeinunits > csiz->upper_bound) {
1580 cval = &asn_DEF_OCTET_STRING_constraints.value;
1581 csiz = &asn_DEF_OCTET_STRING_constraints.size;
1582 unit_bits = canonical_unit_bits;
1592 /* Declare whether length is [not] within extension root */
1593 if(per_put_few_bits(po, inext, 1))
1597 /* X.691, #16.5: zero-length encoding */
1598 /* X.691, #16.6: short fixed length encoding (up to 2 octets) */
1599 /* X.691, #16.7: long fixed length encoding (up to 64K octets) */
1600 if(csiz->effective_bits >= 0) {
1601 ASN_DEBUG("Encoding %d bytes (%ld), length in %d bits",
1602 st->size, sizeinunits - csiz->lower_bound,
1603 csiz->effective_bits);
1604 ret = per_put_few_bits(po, sizeinunits - csiz->lower_bound,
1605 csiz->effective_bits);
1606 if(ret) ASN__ENCODE_FAILED;
1608 ret = OCTET_STRING_per_put_characters(po, st->buf,
1609 sizeinunits, bpc, unit_bits,
1610 cval->lower_bound, cval->upper_bound, pc);
1612 ret = per_put_many_bits(po, st->buf,
1613 sizeinunits * unit_bits);
1615 if(ret) ASN__ENCODE_FAILED;
1616 ASN__ENCODED_OK(er);
1619 ASN_DEBUG("Encoding %d bytes", st->size);
1621 if(sizeinunits == 0) {
1622 if(uper_put_length(po, 0))
1624 ASN__ENCODED_OK(er);
1628 while(sizeinunits) {
1629 ssize_t maySave = uper_put_length(po, sizeinunits);
1630 if(maySave < 0) ASN__ENCODE_FAILED;
1632 ASN_DEBUG("Encoding %ld of %ld",
1633 (long)maySave, (long)sizeinunits);
1636 ret = OCTET_STRING_per_put_characters(po, buf,
1637 maySave, bpc, unit_bits,
1638 cval->lower_bound, cval->upper_bound, pc);
1640 ret = per_put_many_bits(po, buf, maySave * unit_bits);
1642 if(ret) ASN__ENCODE_FAILED;
1645 buf += maySave * bpc;
1647 buf += maySave >> 3;
1648 sizeinunits -= maySave;
1649 assert(!(maySave & 0x07) || !sizeinunits);
1652 ASN__ENCODED_OK(er);
1656 OCTET_STRING_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
1657 asn_app_consume_bytes_f *cb, void *app_key) {
1658 const char * const h2c = "0123456789ABCDEF";
1659 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
1660 char scratch[16 * 3 + 4];
1666 (void)td; /* Unused argument */
1668 if(!st || (!st->buf && st->size))
1669 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
1672 * Dump the contents of the buffer in hexadecimal.
1675 end = buf + st->size;
1676 for(i = 0; buf < end; buf++, i++) {
1677 if(!(i % 16) && (i || st->size > 16)) {
1678 if(cb(scratch, p - scratch, app_key) < 0)
1683 *p++ = h2c[(*buf >> 4) & 0x0F];
1684 *p++ = h2c[*buf & 0x0F];
1689 p--; /* Remove the tail space */
1690 if(cb(scratch, p - scratch, app_key) < 0)
1698 OCTET_STRING_print_utf8(asn_TYPE_descriptor_t *td, const void *sptr,
1699 int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
1700 const OCTET_STRING_t *st = (const OCTET_STRING_t *)sptr;
1702 (void)td; /* Unused argument */
1703 (void)ilevel; /* Unused argument */
1705 if(st && (st->buf || !st->size)) {
1706 return (cb(st->buf, st->size, app_key) < 0) ? -1 : 0;
1708 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
1713 OCTET_STRING_free(asn_TYPE_descriptor_t *td, void *sptr, int contents_only) {
1714 OCTET_STRING_t *st = (OCTET_STRING_t *)sptr;
1715 asn_OCTET_STRING_specifics_t *specs;
1716 asn_struct_ctx_t *ctx;
1717 struct _stack *stck;
1722 specs = td->specifics
1723 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1724 : &asn_DEF_OCTET_STRING_specs;
1725 ctx = (asn_struct_ctx_t *)((char *)st + specs->ctx_offset);
1727 ASN_DEBUG("Freeing %s as OCTET STRING", td->name);
1735 * Remove decode-time stack.
1737 stck = (struct _stack *)ctx->ptr;
1740 struct _stack_el *sel = stck->tail;
1741 stck->tail = sel->prev;
1747 if(!contents_only) {
1753 * Conversion routines.
1756 OCTET_STRING_fromBuf(OCTET_STRING_t *st, const char *str, int len) {
1759 if(st == 0 || (str == 0 && len)) {
1765 * Clear the OCTET STRING.
1774 /* Determine the original string size, if not explicitly given */
1778 /* Allocate and fill the memory */
1779 buf = MALLOC(len + 1);
1783 memcpy(buf, str, len);
1784 ((uint8_t *)buf)[len] = '\0'; /* Couldn't use memcpy(len+1)! */
1786 st->buf = (uint8_t *)buf;
1793 OCTET_STRING_new_fromBuf(asn_TYPE_descriptor_t *td, const char *str, int len) {
1794 asn_OCTET_STRING_specifics_t *specs = td->specifics
1795 ? (asn_OCTET_STRING_specifics_t *)td->specifics
1796 : &asn_DEF_OCTET_STRING_specs;
1799 st = (OCTET_STRING_t *)CALLOC(1, specs->struct_size);
1800 if(st && str && OCTET_STRING_fromBuf(st, str, len)) {