blob: d36d1f78b1c79200107f8c5d4d52c62533f8470a [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 <RELATIVE-OID.h>
vlm3b6e1122004-10-21 11:22:12 +00007#include <asn_codecs_prim.h> /* Encoder and decoder of a primitive type */
vlm12557712004-06-17 23:43:39 +00008#include <limits.h> /* for CHAR_BIT */
vlmfa67ddc2004-06-03 03:38:44 +00009#include <assert.h>
10#include <errno.h>
11
12/*
13 * RELATIVE-OID basic type description.
14 */
vlmef6355b2004-09-29 13:26:15 +000015static ber_tlv_tag_t asn_DEF_RELATIVE_OID_tags[] = {
vlmfa67ddc2004-06-03 03:38:44 +000016 (ASN_TAG_CLASS_UNIVERSAL | (13 << 2))
17};
vlmef6355b2004-09-29 13:26:15 +000018asn_TYPE_descriptor_t asn_DEF_RELATIVE_OID = {
vlmfa67ddc2004-06-03 03:38:44 +000019 "RELATIVE-OID",
vlm9de248e2004-10-20 15:50:55 +000020 "RELATIVE_OID",
vlm6678cb12004-09-26 13:10:40 +000021 ASN__PRIMITIVE_TYPE_free,
vlm39ba4c42004-09-22 16:06:28 +000022 RELATIVE_OID_print,
vlmfa67ddc2004-06-03 03:38:44 +000023 asn_generic_no_constraint,
vlm6678cb12004-09-26 13:10:40 +000024 ber_decode_primitive,
25 der_encode_primitive,
vlm1f73df22004-10-23 10:16:51 +000026 RELATIVE_OID_decode_xer,
vlm39ba4c42004-09-22 16:06:28 +000027 RELATIVE_OID_encode_xer,
vlmfa67ddc2004-06-03 03:38:44 +000028 0, /* Use generic outmost tag fetcher */
vlmef6355b2004-09-29 13:26:15 +000029 asn_DEF_RELATIVE_OID_tags,
30 sizeof(asn_DEF_RELATIVE_OID_tags)
31 / sizeof(asn_DEF_RELATIVE_OID_tags[0]),
32 asn_DEF_RELATIVE_OID_tags, /* Same as above */
33 sizeof(asn_DEF_RELATIVE_OID_tags)
34 / sizeof(asn_DEF_RELATIVE_OID_tags[0]),
vlme413c122004-08-20 13:23:42 +000035 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000036 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000037};
38
vlm39ba4c42004-09-22 16:06:28 +000039static ssize_t
40RELATIVE_OID__dump_body(const RELATIVE_OID_t *st, asn_app_consume_bytes_f *cb, void *app_key) {
41 ssize_t wrote = 0;
42 ssize_t ret;
43 int startn;
44 int i;
45
46 for(i = 0, startn = 0; i < st->size; i++) {
47 uint8_t b = st->buf[i];
48 if((b & 0x80)) /* Continuation expected */
49 continue;
50 if(startn) {
51 /* Separate arcs */
52 if(cb(".", 1, app_key) < 0)
53 return -1;
54 wrote++;
55 }
56
57 ret = OBJECT_IDENTIFIER__dump_arc(&st->buf[startn],
58 i - startn + 1, 0, cb, app_key);
59 if(ret < 0) return -1;
60 wrote += ret;
61
62 startn = i + 1;
63 }
64
65 return wrote;
66}
67
vlmfa67ddc2004-06-03 03:38:44 +000068int
vlmef6355b2004-09-29 13:26:15 +000069RELATIVE_OID_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
vlmfa67ddc2004-06-03 03:38:44 +000070 asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +000071 const RELATIVE_OID_t *st = (const RELATIVE_OID_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +000072
vlmb42843a2004-06-05 08:17:50 +000073 (void)td; /* Unused argument */
74 (void)ilevel; /* Unused argument */
75
vlmfa67ddc2004-06-03 03:38:44 +000076 if(!st || !st->buf)
vlm6678cb12004-09-26 13:10:40 +000077 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +000078
79 /* Dump preamble */
vlm6678cb12004-09-26 13:10:40 +000080 if(cb("{ ", 2, app_key) < 0)
vlmfa67ddc2004-06-03 03:38:44 +000081 return -1;
82
vlm39ba4c42004-09-22 16:06:28 +000083 if(RELATIVE_OID__dump_body(st, cb, app_key) < 0)
84 return -1;
vlmfa67ddc2004-06-03 03:38:44 +000085
vlm6678cb12004-09-26 13:10:40 +000086 return (cb(" }", 2, app_key) < 0) ? -1 : 0;
vlmfa67ddc2004-06-03 03:38:44 +000087}
88
vlm1f73df22004-10-23 10:16:51 +000089static ssize_t
90RELATIVE_OID__xer_body_decode(void *sptr, void *chunk_buf, size_t chunk_size) {
91 RELATIVE_OID_t *st = (RELATIVE_OID_t *)sptr;
92 char *endptr;
93 long s_arcs[6];
94 long *arcs = s_arcs;
95 int arcs_count;
96 int ret;
97
98 arcs_count = OBJECT_IDENTIFIER_parse_arcs(
99 (const char *)chunk_buf, chunk_size,
100 arcs, 6, &endptr);
101 if(arcs_count < 0)
102 return -1; /* Expecting at least zero arcs */
103 if(arcs_count > 6) {
104 arcs = (long *)MALLOC(arcs_count * sizeof(long));
105 if(!arcs) return -1;
106 ret = OBJECT_IDENTIFIER_parse_arcs(
107 (const char *)chunk_buf, chunk_size,
108 arcs, arcs_count, &endptr);
109 if(ret != arcs_count)
110 return -1; /* assert?.. */
111 }
112
113 /*
114 * Convert arcs into BER representation.
115 */
116 ret = RELATIVE_OID_set_arcs(st, arcs, sizeof(*arcs), arcs_count);
117 if(ret) return -1;
118 if(arcs != s_arcs) FREEMEM(arcs);
119
120 return endptr - (char *)chunk_buf;
121}
122
123asn_dec_rval_t
124RELATIVE_OID_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
125 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
126 void *buf_ptr, size_t size) {
127
128 return xer_decode_primitive(opt_codec_ctx, td,
129 sptr, sizeof(RELATIVE_OID_t), opt_mname,
130 buf_ptr, size, RELATIVE_OID__xer_body_decode);
131}
132
vlm39ba4c42004-09-22 16:06:28 +0000133asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +0000134RELATIVE_OID_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +0000135 int ilevel, enum xer_encoder_flags_e flags,
136 asn_app_consume_bytes_f *cb, void *app_key) {
137 RELATIVE_OID_t *st = (RELATIVE_OID_t *)sptr;
138 asn_enc_rval_t er;
139
140 (void)ilevel; /* Unused argument */
141 (void)flags; /* Unused argument */
142
143 if(!st || !st->buf)
144 _ASN_ENCODE_FAILED;
145
146 er.encoded = RELATIVE_OID__dump_body(st, cb, app_key);
147 if(er.encoded < 0) _ASN_ENCODE_FAILED;
148
149 return er;
150}
vlmfa67ddc2004-06-03 03:38:44 +0000151
152int
vlm2e3dd3b2004-06-14 07:24:36 +0000153RELATIVE_OID_get_arcs(RELATIVE_OID_t *roid,
154 void *arcs, unsigned int arc_type_size, unsigned int arc_slots) {
vlm1ff928d2004-08-11 08:10:13 +0000155 void *arcs_end = (char *)arcs + (arc_slots * arc_type_size);
vlm2e3dd3b2004-06-14 07:24:36 +0000156 int num_arcs = 0;
vlmfa67ddc2004-06-03 03:38:44 +0000157 int startn = 0;
158 int i;
159
160 if(!roid || !roid->buf) {
161 errno = EINVAL;
162 return -1;
163 }
164
165 for(i = 0; i < roid->size; i++) {
166 uint8_t b = roid->buf[i];
167 if((b & 0x80)) /* Continuation expected */
168 continue;
169
vlm2e3dd3b2004-06-14 07:24:36 +0000170 if(arcs < arcs_end) {
171 if(OBJECT_IDENTIFIER_get_single_arc(
172 &roid->buf[startn],
173 i - startn + 1, 0,
174 arcs, arc_type_size))
vlmfa67ddc2004-06-03 03:38:44 +0000175 return -1;
vlmd86c9252004-08-25 01:34:11 +0000176 arcs = ((char *)arcs) + arc_type_size;
vlm2e3dd3b2004-06-14 07:24:36 +0000177 num_arcs++;
vlmfa67ddc2004-06-03 03:38:44 +0000178 }
179
180 startn = i + 1;
181 }
182
vlm2e3dd3b2004-06-14 07:24:36 +0000183 return num_arcs;
vlmfa67ddc2004-06-03 03:38:44 +0000184}
185
186int
vlm12557712004-06-17 23:43:39 +0000187RELATIVE_OID_set_arcs(RELATIVE_OID_t *roid, void *arcs, unsigned int arc_type_size, unsigned int arcs_slots) {
vlmfa67ddc2004-06-03 03:38:44 +0000188 uint8_t *buf;
189 uint8_t *bp;
vlma63e0292004-06-17 23:46:45 +0000190 unsigned int size;
191 unsigned int i;
vlmfa67ddc2004-06-03 03:38:44 +0000192
vlm12557712004-06-17 23:43:39 +0000193 if(roid == NULL || arcs == NULL || arc_type_size < 1) {
vlmfa67ddc2004-06-03 03:38:44 +0000194 errno = EINVAL;
195 return -1;
196 }
197
198 /*
199 * Roughly estimate the maximum size necessary to encode these arcs.
200 */
vlm12557712004-06-17 23:43:39 +0000201 size = ((arc_type_size * CHAR_BIT + 6) / 7) * arcs_slots;
vlmda674682004-08-11 09:07:36 +0000202 bp = buf = (uint8_t *)MALLOC(size + 1);
vlmfa67ddc2004-06-03 03:38:44 +0000203 if(!buf) {
204 /* ENOMEM */
205 return -1;
206 }
207
208 /*
vlm12557712004-06-17 23:43:39 +0000209 * Encode the arcs.
vlmfa67ddc2004-06-03 03:38:44 +0000210 */
vlmd86c9252004-08-25 01:34:11 +0000211 for(i = 0; i < arcs_slots; i++, arcs = ((char *)arcs) + arc_type_size) {
vlm12557712004-06-17 23:43:39 +0000212 bp += OBJECT_IDENTIFIER_set_single_arc(bp,
213 arcs, arc_type_size, 0);
vlmfa67ddc2004-06-03 03:38:44 +0000214 }
215
vlma63e0292004-06-17 23:46:45 +0000216 assert((unsigned)(bp - buf) <= size);
vlm12557712004-06-17 23:43:39 +0000217
vlmfa67ddc2004-06-03 03:38:44 +0000218 /*
219 * Replace buffer.
220 */
vlm12557712004-06-17 23:43:39 +0000221 roid->size = bp - buf;
vlmfa67ddc2004-06-03 03:38:44 +0000222 bp = roid->buf;
223 roid->buf = buf;
224 if(bp) FREEMEM(bp);
225
226 return 0;
227}
vlm12557712004-06-17 23:43:39 +0000228