blob: 900f41db9ae0f93fe7a6ec0e689ca23ad17c512c [file] [log] [blame]
Lev Walkinf15320b2004-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 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00006#include <BIT_STRING.h>
Lev Walkin8e8078a2004-09-26 13:10:40 +00007#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00008
9/*
10 * BIT STRING basic type description.
11 */
Lev Walkin5e033762004-09-29 13:26:15 +000012static ber_tlv_tag_t asn_DEF_BIT_STRING_tags[] = {
Lev Walkinf15320b2004-06-03 03:38:44 +000013 (ASN_TAG_CLASS_UNIVERSAL | (3 << 2))
14};
Lev Walkinbbd93252004-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};
Lev Walkin5e033762004-09-29 13:26:15 +000020asn_TYPE_descriptor_t asn_DEF_BIT_STRING = {
Lev Walkinf15320b2004-06-03 03:38:44 +000021 "BIT STRING",
Lev Walkindc06f6b2004-10-20 15:50:55 +000022 "BIT_STRING",
Lev Walkina9cc46e2004-09-22 16:06:28 +000023 OCTET_STRING_free, /* Implemented in terms of OCTET STRING */
24 BIT_STRING_print,
Lev Walkinf15320b2004-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 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000028 OCTET_STRING_decode_xer_binary,
Lev Walkina9cc46e2004-09-22 16:06:28 +000029 BIT_STRING_encode_xer,
Lev Walkin59b176e2005-11-26 11:25:14 +000030 OCTET_STRING_decode_uper, /* Unaligned PER decoder */
Lev Walkinf15320b2004-06-03 03:38:44 +000031 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000032 asn_DEF_BIT_STRING_tags,
33 sizeof(asn_DEF_BIT_STRING_tags)
34 / sizeof(asn_DEF_BIT_STRING_tags[0]),
35 asn_DEF_BIT_STRING_tags, /* Same as above */
36 sizeof(asn_DEF_BIT_STRING_tags)
37 / sizeof(asn_DEF_BIT_STRING_tags[0]),
Lev Walkin59b176e2005-11-26 11:25:14 +000038 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000039 0, 0, /* No members */
Lev Walkinbbd93252004-10-12 05:57:23 +000040 &asn_DEF_BIT_STRING_specs
Lev Walkinf15320b2004-06-03 03:38:44 +000041};
42
43/*
44 * BIT STRING generic constraint.
45 */
46int
Lev Walkin5e033762004-09-29 13:26:15 +000047BIT_STRING_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkinf15320b2004-06-03 03:38:44 +000048 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000049 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000050
51 if(st && st->buf) {
Lev Walkinbbd93252004-10-12 05:57:23 +000052 if(st->size == 1 && st->bits_unused) {
Lev Walkinba4e5182004-08-11 09:44:13 +000053 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkinbbd93252004-10-12 05:57:23 +000054 "%s: invalid padding byte (%s:%d)",
Lev Walkin16835b62004-08-22 13:47:59 +000055 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000056 return -1;
57 }
58 } else {
Lev Walkinba4e5182004-08-11 09:44:13 +000059 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000060 "%s: value not given (%s:%d)",
61 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000062 return -1;
63 }
64
65 return 0;
66}
67
Lev Walkina9cc46e2004-09-22 16:06:28 +000068static char *_bit_pattern[16] = {
69 "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
70 "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"
71};
72
73asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +000074BIT_STRING_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +000075 int ilevel, enum xer_encoder_flags_e flags,
76 asn_app_consume_bytes_f *cb, void *app_key) {
77 asn_enc_rval_t er;
78 char scratch[128];
79 char *p = scratch;
80 char *scend = scratch + (sizeof(scratch) - 10);
81 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
Lev Walkincc6a9102004-09-23 22:06:26 +000082 int xcan = (flags & XER_F_CANONICAL);
Lev Walkina9cc46e2004-09-22 16:06:28 +000083 uint8_t *buf;
84 uint8_t *end;
85
86 if(!st || !st->buf)
87 _ASN_ENCODE_FAILED;
88
89 er.encoded = 0;
90
91 buf = st->buf;
92 end = buf + st->size - 1; /* Last byte is special */
93
94 /*
95 * Binary dump
96 */
Lev Walkinbbd93252004-10-12 05:57:23 +000097 for(; buf < end; buf++) {
Lev Walkina9cc46e2004-09-22 16:06:28 +000098 int v = *buf;
Lev Walkinbbd93252004-10-12 05:57:23 +000099 int nline = xcan?0:(((buf - st->buf) % 8) == 0);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000100 if(p >= scend || nline) {
101 er.encoded += p - scratch;
102 _ASN_CALLBACK(scratch, p - scratch);
103 p = scratch;
104 if(nline) _i_ASN_TEXT_INDENT(1, ilevel);
105 }
106 memcpy(p + 0, _bit_pattern[v >> 4], 4);
107 memcpy(p + 4, _bit_pattern[v & 0x0f], 4);
108 p += 8;
109 }
110
Lev Walkinbbd93252004-10-12 05:57:23 +0000111 if(!xcan && ((buf - st->buf) % 8) == 0)
Lev Walkincc6a9102004-09-23 22:06:26 +0000112 _i_ASN_TEXT_INDENT(1, ilevel);
Lev Walkin938c6fe2004-09-24 20:56:25 +0000113 er.encoded += p - scratch;
114 _ASN_CALLBACK(scratch, p - scratch);
115 p = scratch;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000116
Lev Walkin938c6fe2004-09-24 20:56:25 +0000117 if(buf == end) {
Lev Walkina9cc46e2004-09-22 16:06:28 +0000118 int v = *buf;
Lev Walkinbbd93252004-10-12 05:57:23 +0000119 int ubits = st->bits_unused;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000120 int i;
Lev Walkinbbd93252004-10-12 05:57:23 +0000121 for(i = 7; i >= ubits; i--)
Lev Walkin5e033762004-09-29 13:26:15 +0000122 *p++ = (v & (1 << i)) ? 0x31 : 0x30;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000123 er.encoded += p - scratch;
124 _ASN_CALLBACK(scratch, p - scratch);
125 }
126
Lev Walkin938c6fe2004-09-24 20:56:25 +0000127 if(!xcan) _i_ASN_TEXT_INDENT(1, ilevel - 1);
Lev Walkincc6a9102004-09-23 22:06:26 +0000128
Lev Walkin59b176e2005-11-26 11:25:14 +0000129 _ASN_ENCODED_OK(er);
Lev Walkin942fd082004-10-03 09:13:02 +0000130cb_failed:
131 _ASN_ENCODE_FAILED;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000132}
133
134
Lev Walkinf15320b2004-06-03 03:38:44 +0000135/*
136 * BIT STRING specific contents printer.
137 */
138int
Lev Walkin5e033762004-09-29 13:26:15 +0000139BIT_STRING_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000140 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkin4d9528c2004-08-11 08:10:13 +0000141 static const char *h2c = "0123456789ABCDEF";
Lev Walkinf15320b2004-06-03 03:38:44 +0000142 char scratch[64];
Lev Walkinc2346572004-08-11 09:07:36 +0000143 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +0000144 uint8_t *buf;
145 uint8_t *end;
146 char *p = scratch;
147
Lev Walkind9bd7752004-06-05 08:17:50 +0000148 (void)td; /* Unused argument */
149
Lev Walkin8e8078a2004-09-26 13:10:40 +0000150 if(!st || !st->buf)
151 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000152
Lev Walkin8e8078a2004-09-26 13:10:40 +0000153 ilevel++;
Lev Walkinf15320b2004-06-03 03:38:44 +0000154 buf = st->buf;
155 end = buf + st->size;
156
157 /*
158 * Hexadecimal dump.
159 */
Lev Walkinbbd93252004-10-12 05:57:23 +0000160 for(; buf < end; buf++) {
161 if((buf - st->buf) % 16 == 0 && (st->size > 16)
162 && buf != st->buf) {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000163 _i_INDENT(1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000164 /* Dump the string */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000165 if(cb(scratch, p - scratch, app_key) < 0) return -1;
Lev Walkinf15320b2004-06-03 03:38:44 +0000166 p = scratch;
167 }
168 *p++ = h2c[*buf >> 4];
169 *p++ = h2c[*buf & 0x0F];
170 *p++ = 0x20;
171 }
Lev Walkinf15320b2004-06-03 03:38:44 +0000172
Lev Walkincc6a9102004-09-23 22:06:26 +0000173 if(p > scratch) {
174 p--; /* Eat the tailing space */
175
Lev Walkinbbd93252004-10-12 05:57:23 +0000176 if((st->size > 16)) {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000177 _i_INDENT(1);
Lev Walkincc6a9102004-09-23 22:06:26 +0000178 }
179
180 /* Dump the incomplete 16-bytes row */
Lev Walkin8e8078a2004-09-26 13:10:40 +0000181 if(cb(scratch, p - scratch, app_key) < 0)
Lev Walkincc6a9102004-09-23 22:06:26 +0000182 return -1;
183 }
184
185 return 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000186}
187