blob: 6469d4fd2c8782048e228c19e67950f3b2dc1305 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * 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 <BIT_STRING.h>
vlm6678cb12004-09-26 13:10:40 +00007#include <asn_internal.h>
vlmfa67ddc2004-06-03 03:38:44 +00008
9/*
10 * BIT STRING basic type description.
11 */
vlmef6355b2004-09-29 13:26:15 +000012static ber_tlv_tag_t asn_DEF_BIT_STRING_tags[] = {
vlmfa67ddc2004-06-03 03:38:44 +000013 (ASN_TAG_CLASS_UNIVERSAL | (3 << 2))
14};
vlm0f1ab762004-10-12 05:57:23 +000015static asn_OCTET_STRING_specifics_t asn_DEF_BIT_STRING_specs = {
16 sizeof(BIT_STRING_t),
17 offsetof(BIT_STRING_t, _asn_ctx),
18 1, /* Special indicator that this is a BIT STRING type */
19};
vlmef6355b2004-09-29 13:26:15 +000020asn_TYPE_descriptor_t asn_DEF_BIT_STRING = {
vlmfa67ddc2004-06-03 03:38:44 +000021 "BIT STRING",
vlm9de248e2004-10-20 15:50:55 +000022 "BIT_STRING",
vlm39ba4c42004-09-22 16:06:28 +000023 OCTET_STRING_free, /* Implemented in terms of OCTET STRING */
24 BIT_STRING_print,
vlmfa67ddc2004-06-03 03:38:44 +000025 BIT_STRING_constraint,
26 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
27 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
vlm9de248e2004-10-20 15:50:55 +000028 OCTET_STRING_decode_xer_binary,
vlm39ba4c42004-09-22 16:06:28 +000029 BIT_STRING_encode_xer,
vlm337167e2005-11-26 11:25:14 +000030 OCTET_STRING_decode_uper, /* Unaligned PER decoder */
vlm18dd82c2006-08-18 01:34:18 +000031 OCTET_STRING_encode_uper, /* Unaligned PER encoder */
vlmfa67ddc2004-06-03 03:38:44 +000032 0, /* Use generic outmost tag fetcher */
vlmef6355b2004-09-29 13:26:15 +000033 asn_DEF_BIT_STRING_tags,
34 sizeof(asn_DEF_BIT_STRING_tags)
35 / sizeof(asn_DEF_BIT_STRING_tags[0]),
36 asn_DEF_BIT_STRING_tags, /* Same as above */
37 sizeof(asn_DEF_BIT_STRING_tags)
38 / sizeof(asn_DEF_BIT_STRING_tags[0]),
vlm337167e2005-11-26 11:25:14 +000039 0, /* No PER visible constraints */
vlme413c122004-08-20 13:23:42 +000040 0, 0, /* No members */
vlm0f1ab762004-10-12 05:57:23 +000041 &asn_DEF_BIT_STRING_specs
vlmfa67ddc2004-06-03 03:38:44 +000042};
43
44/*
45 * BIT STRING generic constraint.
46 */
47int
vlmef6355b2004-09-29 13:26:15 +000048BIT_STRING_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
vlmaf68ef52006-07-13 11:19:01 +000049 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
vlmda674682004-08-11 09:07:36 +000050 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +000051
52 if(st && st->buf) {
vlm0f1ab762004-10-12 05:57:23 +000053 if(st->size == 1 && st->bits_unused) {
vlmaf68ef52006-07-13 11:19:01 +000054 _ASN_CTFAIL(app_key, td,
vlm0f1ab762004-10-12 05:57:23 +000055 "%s: invalid padding byte (%s:%d)",
vlm758530a2004-08-22 13:47:59 +000056 td->name, __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000057 return -1;
58 }
59 } else {
vlmaf68ef52006-07-13 11:19:01 +000060 _ASN_CTFAIL(app_key, td,
vlm758530a2004-08-22 13:47:59 +000061 "%s: value not given (%s:%d)",
62 td->name, __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000063 return -1;
64 }
65
66 return 0;
67}
68
vlm39ba4c42004-09-22 16:06:28 +000069static char *_bit_pattern[16] = {
70 "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
71 "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"
72};
73
74asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +000075BIT_STRING_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +000076 int ilevel, enum xer_encoder_flags_e flags,
77 asn_app_consume_bytes_f *cb, void *app_key) {
78 asn_enc_rval_t er;
79 char scratch[128];
80 char *p = scratch;
81 char *scend = scratch + (sizeof(scratch) - 10);
82 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
vlmef1b4c02004-09-23 22:06:26 +000083 int xcan = (flags & XER_F_CANONICAL);
vlm39ba4c42004-09-22 16:06:28 +000084 uint8_t *buf;
85 uint8_t *end;
86
87 if(!st || !st->buf)
88 _ASN_ENCODE_FAILED;
89
90 er.encoded = 0;
91
92 buf = st->buf;
93 end = buf + st->size - 1; /* Last byte is special */
94
95 /*
96 * Binary dump
97 */
vlm0f1ab762004-10-12 05:57:23 +000098 for(; buf < end; buf++) {
vlm39ba4c42004-09-22 16:06:28 +000099 int v = *buf;
vlm0f1ab762004-10-12 05:57:23 +0000100 int nline = xcan?0:(((buf - st->buf) % 8) == 0);
vlm39ba4c42004-09-22 16:06:28 +0000101 if(p >= scend || nline) {
102 er.encoded += p - scratch;
103 _ASN_CALLBACK(scratch, p - scratch);
104 p = scratch;
105 if(nline) _i_ASN_TEXT_INDENT(1, ilevel);
106 }
107 memcpy(p + 0, _bit_pattern[v >> 4], 4);
108 memcpy(p + 4, _bit_pattern[v & 0x0f], 4);
109 p += 8;
110 }
111
vlm0f1ab762004-10-12 05:57:23 +0000112 if(!xcan && ((buf - st->buf) % 8) == 0)
vlmef1b4c02004-09-23 22:06:26 +0000113 _i_ASN_TEXT_INDENT(1, ilevel);
vlm1827a1c2004-09-24 20:56:25 +0000114 er.encoded += p - scratch;
115 _ASN_CALLBACK(scratch, p - scratch);
116 p = scratch;
vlm39ba4c42004-09-22 16:06:28 +0000117
vlm1827a1c2004-09-24 20:56:25 +0000118 if(buf == end) {
vlm39ba4c42004-09-22 16:06:28 +0000119 int v = *buf;
vlm0f1ab762004-10-12 05:57:23 +0000120 int ubits = st->bits_unused;
vlm39ba4c42004-09-22 16:06:28 +0000121 int i;
vlm0f1ab762004-10-12 05:57:23 +0000122 for(i = 7; i >= ubits; i--)
vlmef6355b2004-09-29 13:26:15 +0000123 *p++ = (v & (1 << i)) ? 0x31 : 0x30;
vlm39ba4c42004-09-22 16:06:28 +0000124 er.encoded += p - scratch;
125 _ASN_CALLBACK(scratch, p - scratch);
126 }
127
vlm1827a1c2004-09-24 20:56:25 +0000128 if(!xcan) _i_ASN_TEXT_INDENT(1, ilevel - 1);
vlmef1b4c02004-09-23 22:06:26 +0000129
vlm337167e2005-11-26 11:25:14 +0000130 _ASN_ENCODED_OK(er);
vlm84d551b2004-10-03 09:13:02 +0000131cb_failed:
132 _ASN_ENCODE_FAILED;
vlm39ba4c42004-09-22 16:06:28 +0000133}
134
135
vlmfa67ddc2004-06-03 03:38:44 +0000136/*
137 * BIT STRING specific contents printer.
138 */
139int
vlmef6355b2004-09-29 13:26:15 +0000140BIT_STRING_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
vlmfa67ddc2004-06-03 03:38:44 +0000141 asn_app_consume_bytes_f *cb, void *app_key) {
vlm1ff928d2004-08-11 08:10:13 +0000142 static const char *h2c = "0123456789ABCDEF";
vlmfa67ddc2004-06-03 03:38:44 +0000143 char scratch[64];
vlmda674682004-08-11 09:07:36 +0000144 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +0000145 uint8_t *buf;
146 uint8_t *end;
147 char *p = scratch;
148
vlmb42843a2004-06-05 08:17:50 +0000149 (void)td; /* Unused argument */
150
vlm6678cb12004-09-26 13:10:40 +0000151 if(!st || !st->buf)
152 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +0000153
vlm6678cb12004-09-26 13:10:40 +0000154 ilevel++;
vlmfa67ddc2004-06-03 03:38:44 +0000155 buf = st->buf;
156 end = buf + st->size;
157
158 /*
159 * Hexadecimal dump.
160 */
vlm0f1ab762004-10-12 05:57:23 +0000161 for(; buf < end; buf++) {
162 if((buf - st->buf) % 16 == 0 && (st->size > 16)
163 && buf != st->buf) {
vlm6678cb12004-09-26 13:10:40 +0000164 _i_INDENT(1);
vlmfa67ddc2004-06-03 03:38:44 +0000165 /* Dump the string */
vlm6678cb12004-09-26 13:10:40 +0000166 if(cb(scratch, p - scratch, app_key) < 0) return -1;
vlmfa67ddc2004-06-03 03:38:44 +0000167 p = scratch;
168 }
169 *p++ = h2c[*buf >> 4];
170 *p++ = h2c[*buf & 0x0F];
171 *p++ = 0x20;
172 }
vlmfa67ddc2004-06-03 03:38:44 +0000173
vlmef1b4c02004-09-23 22:06:26 +0000174 if(p > scratch) {
175 p--; /* Eat the tailing space */
176
vlm0f1ab762004-10-12 05:57:23 +0000177 if((st->size > 16)) {
vlm6678cb12004-09-26 13:10:40 +0000178 _i_INDENT(1);
vlmef1b4c02004-09-23 22:06:26 +0000179 }
180
181 /* Dump the incomplete 16-bytes row */
vlm6678cb12004-09-26 13:10:40 +0000182 if(cb(scratch, p - scratch, app_key) < 0)
vlmef1b4c02004-09-23 22:06:26 +0000183 return -1;
184 }
185
186 return 0;
vlmfa67ddc2004-06-03 03:38:44 +0000187}
188