blob: 8e3e97f437b95a5003671af206e56386aff2fdb1 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin2c34aad2005-03-10 11:50:24 +00002 * Copyright (c) 2003, 2004, 2005 Lev Walkin <vlm@lionet.info>.
3 * All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00006#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00007#include <RELATIVE-OID.h>
Lev Walkin725883b2006-10-09 12:07:58 +00008#include <OCTET_STRING.h>
Lev Walkin3256d6f2004-10-21 11:22:12 +00009#include <asn_codecs_prim.h> /* Encoder and decoder of a primitive type */
Lev Walkin0787ff02004-06-17 23:43:39 +000010#include <limits.h> /* for CHAR_BIT */
Lev Walkinf15320b2004-06-03 03:38:44 +000011#include <errno.h>
12
13/*
14 * RELATIVE-OID basic type description.
15 */
Wim Lewis18c2ec92014-07-29 11:30:10 -070016static const ber_tlv_tag_t asn_DEF_RELATIVE_OID_tags[] = {
Lev Walkinf15320b2004-06-03 03:38:44 +000017 (ASN_TAG_CLASS_UNIVERSAL | (13 << 2))
18};
Lev Walkin5e033762004-09-29 13:26:15 +000019asn_TYPE_descriptor_t asn_DEF_RELATIVE_OID = {
Lev Walkinf15320b2004-06-03 03:38:44 +000020 "RELATIVE-OID",
Lev Walkindc06f6b2004-10-20 15:50:55 +000021 "RELATIVE_OID",
Lev Walkin8e8078a2004-09-26 13:10:40 +000022 ASN__PRIMITIVE_TYPE_free,
Lev Walkina9cc46e2004-09-22 16:06:28 +000023 RELATIVE_OID_print,
Lev Walkinf15320b2004-06-03 03:38:44 +000024 asn_generic_no_constraint,
Lev Walkin8e8078a2004-09-26 13:10:40 +000025 ber_decode_primitive,
26 der_encode_primitive,
Lev Walkin92302252004-10-23 10:16:51 +000027 RELATIVE_OID_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +000028 RELATIVE_OID_encode_xer,
Lev Walkin725883b2006-10-09 12:07:58 +000029 OCTET_STRING_decode_uper,
30 OCTET_STRING_encode_uper,
Harald Welte498c9712015-08-30 16:33:07 +020031 OCTET_STRING_decode_aper,
32 OCTET_STRING_encode_aper,
Lev Walkinf15320b2004-06-03 03:38:44 +000033 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000034 asn_DEF_RELATIVE_OID_tags,
35 sizeof(asn_DEF_RELATIVE_OID_tags)
36 / sizeof(asn_DEF_RELATIVE_OID_tags[0]),
37 asn_DEF_RELATIVE_OID_tags, /* Same as above */
38 sizeof(asn_DEF_RELATIVE_OID_tags)
39 / sizeof(asn_DEF_RELATIVE_OID_tags[0]),
Lev Walkin59b176e2005-11-26 11:25:14 +000040 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000041 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000042 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000043};
44
Lev Walkina9cc46e2004-09-22 16:06:28 +000045static ssize_t
46RELATIVE_OID__dump_body(const RELATIVE_OID_t *st, asn_app_consume_bytes_f *cb, void *app_key) {
47 ssize_t wrote = 0;
48 ssize_t ret;
49 int startn;
50 int i;
51
52 for(i = 0, startn = 0; i < st->size; i++) {
53 uint8_t b = st->buf[i];
54 if((b & 0x80)) /* Continuation expected */
55 continue;
56 if(startn) {
57 /* Separate arcs */
58 if(cb(".", 1, app_key) < 0)
59 return -1;
60 wrote++;
61 }
62
63 ret = OBJECT_IDENTIFIER__dump_arc(&st->buf[startn],
64 i - startn + 1, 0, cb, app_key);
65 if(ret < 0) return -1;
66 wrote += ret;
67
68 startn = i + 1;
69 }
70
71 return wrote;
72}
73
Lev Walkinf15320b2004-06-03 03:38:44 +000074int
Lev Walkin5e033762004-09-29 13:26:15 +000075RELATIVE_OID_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +000076 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000077 const RELATIVE_OID_t *st = (const RELATIVE_OID_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000078
Lev Walkind9bd7752004-06-05 08:17:50 +000079 (void)td; /* Unused argument */
80 (void)ilevel; /* Unused argument */
81
Lev Walkinf15320b2004-06-03 03:38:44 +000082 if(!st || !st->buf)
Lev Walkin8e8078a2004-09-26 13:10:40 +000083 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +000084
85 /* Dump preamble */
Lev Walkin8e8078a2004-09-26 13:10:40 +000086 if(cb("{ ", 2, app_key) < 0)
Lev Walkinf15320b2004-06-03 03:38:44 +000087 return -1;
88
Lev Walkina9cc46e2004-09-22 16:06:28 +000089 if(RELATIVE_OID__dump_body(st, cb, app_key) < 0)
90 return -1;
Lev Walkinf15320b2004-06-03 03:38:44 +000091
Lev Walkin8e8078a2004-09-26 13:10:40 +000092 return (cb(" }", 2, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +000093}
94
Lev Walkin0fab1a62005-03-09 22:19:25 +000095static enum xer_pbd_rval
96RELATIVE_OID__xer_body_decode(asn_TYPE_descriptor_t *td, void *sptr, const void *chunk_buf, size_t chunk_size) {
Lev Walkin92302252004-10-23 10:16:51 +000097 RELATIVE_OID_t *st = (RELATIVE_OID_t *)sptr;
Lev Walkin2c34aad2005-03-10 11:50:24 +000098 const char *chunk_end = (const char *)chunk_buf + chunk_size;
99 const char *endptr;
Lev Walkin92302252004-10-23 10:16:51 +0000100 long s_arcs[6];
101 long *arcs = s_arcs;
102 int arcs_count;
103 int ret;
104
Lev Walkine0b56e02005-02-25 12:10:27 +0000105 (void)td;
106
Lev Walkin92302252004-10-23 10:16:51 +0000107 arcs_count = OBJECT_IDENTIFIER_parse_arcs(
108 (const char *)chunk_buf, chunk_size,
Lev Walkin0fab1a62005-03-09 22:19:25 +0000109 arcs, sizeof(s_arcs)/sizeof(s_arcs[0]), &endptr);
110 if(arcs_count < 0) {
Lev Walkinaed43c82012-09-04 14:56:27 -0700111 /* Expecting at least one arc arcs */
Lev Walkin0fab1a62005-03-09 22:19:25 +0000112 return XPBD_BROKEN_ENCODING;
Lev Walkinaed43c82012-09-04 14:56:27 -0700113 } else if(arcs_count == 0) {
114 return XPBD_NOT_BODY_IGNORE;
Lev Walkin0fab1a62005-03-09 22:19:25 +0000115 }
Lev Walkinaed43c82012-09-04 14:56:27 -0700116 assert(endptr == chunk_end);
Lev Walkin0fab1a62005-03-09 22:19:25 +0000117
118 if((size_t)arcs_count > sizeof(s_arcs)/sizeof(s_arcs[0])) {
Lev Walkin92302252004-10-23 10:16:51 +0000119 arcs = (long *)MALLOC(arcs_count * sizeof(long));
Lev Walkin0fab1a62005-03-09 22:19:25 +0000120 if(!arcs) return XPBD_SYSTEM_FAILURE;
Lev Walkin92302252004-10-23 10:16:51 +0000121 ret = OBJECT_IDENTIFIER_parse_arcs(
122 (const char *)chunk_buf, chunk_size,
123 arcs, arcs_count, &endptr);
124 if(ret != arcs_count)
Lev Walkin0fab1a62005-03-09 22:19:25 +0000125 return XPBD_SYSTEM_FAILURE; /* assert?.. */
Lev Walkin92302252004-10-23 10:16:51 +0000126 }
127
128 /*
129 * Convert arcs into BER representation.
130 */
131 ret = RELATIVE_OID_set_arcs(st, arcs, sizeof(*arcs), arcs_count);
Lev Walkin92302252004-10-23 10:16:51 +0000132 if(arcs != s_arcs) FREEMEM(arcs);
133
Lev Walkin2c34aad2005-03-10 11:50:24 +0000134 return ret ? XPBD_SYSTEM_FAILURE : XPBD_BODY_CONSUMED;
Lev Walkin92302252004-10-23 10:16:51 +0000135}
136
137asn_dec_rval_t
138RELATIVE_OID_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
139 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
Lev Walkin8c3b8542005-03-10 18:52:02 +0000140 const void *buf_ptr, size_t size) {
Lev Walkin92302252004-10-23 10:16:51 +0000141
142 return xer_decode_primitive(opt_codec_ctx, td,
143 sptr, sizeof(RELATIVE_OID_t), opt_mname,
144 buf_ptr, size, RELATIVE_OID__xer_body_decode);
145}
146
Lev Walkina9cc46e2004-09-22 16:06:28 +0000147asn_enc_rval_t
Lev Walkin5e033762004-09-29 13:26:15 +0000148RELATIVE_OID_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000149 int ilevel, enum xer_encoder_flags_e flags,
150 asn_app_consume_bytes_f *cb, void *app_key) {
151 RELATIVE_OID_t *st = (RELATIVE_OID_t *)sptr;
152 asn_enc_rval_t er;
153
154 (void)ilevel; /* Unused argument */
155 (void)flags; /* Unused argument */
156
157 if(!st || !st->buf)
158 _ASN_ENCODE_FAILED;
159
160 er.encoded = RELATIVE_OID__dump_body(st, cb, app_key);
161 if(er.encoded < 0) _ASN_ENCODE_FAILED;
162
Lev Walkin59b176e2005-11-26 11:25:14 +0000163 _ASN_ENCODED_OK(er);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000164}
Lev Walkinf15320b2004-06-03 03:38:44 +0000165
166int
Wim Lewis14e6b162014-07-23 16:06:01 -0700167RELATIVE_OID_get_arcs(const RELATIVE_OID_t *roid,
Lev Walkin29a044b2004-06-14 07:24:36 +0000168 void *arcs, unsigned int arc_type_size, unsigned int arc_slots) {
Lev Walkin4d9528c2004-08-11 08:10:13 +0000169 void *arcs_end = (char *)arcs + (arc_slots * arc_type_size);
Lev Walkin29a044b2004-06-14 07:24:36 +0000170 int num_arcs = 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000171 int startn = 0;
172 int i;
173
174 if(!roid || !roid->buf) {
175 errno = EINVAL;
176 return -1;
177 }
178
179 for(i = 0; i < roid->size; i++) {
180 uint8_t b = roid->buf[i];
181 if((b & 0x80)) /* Continuation expected */
182 continue;
183
Lev Walkin29a044b2004-06-14 07:24:36 +0000184 if(arcs < arcs_end) {
185 if(OBJECT_IDENTIFIER_get_single_arc(
186 &roid->buf[startn],
187 i - startn + 1, 0,
188 arcs, arc_type_size))
Lev Walkinf15320b2004-06-03 03:38:44 +0000189 return -1;
Lev Walkin4ce78ca2004-08-25 01:34:11 +0000190 arcs = ((char *)arcs) + arc_type_size;
Lev Walkin29a044b2004-06-14 07:24:36 +0000191 num_arcs++;
Lev Walkinf15320b2004-06-03 03:38:44 +0000192 }
193
194 startn = i + 1;
195 }
196
Lev Walkin29a044b2004-06-14 07:24:36 +0000197 return num_arcs;
Lev Walkinf15320b2004-06-03 03:38:44 +0000198}
199
200int
Lev Walkin0787ff02004-06-17 23:43:39 +0000201RELATIVE_OID_set_arcs(RELATIVE_OID_t *roid, void *arcs, unsigned int arc_type_size, unsigned int arcs_slots) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000202 uint8_t *buf;
203 uint8_t *bp;
Lev Walkin34b2a932004-06-17 23:46:45 +0000204 unsigned int size;
205 unsigned int i;
Lev Walkinf15320b2004-06-03 03:38:44 +0000206
Lev Walkin0787ff02004-06-17 23:43:39 +0000207 if(roid == NULL || arcs == NULL || arc_type_size < 1) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000208 errno = EINVAL;
209 return -1;
210 }
211
212 /*
213 * Roughly estimate the maximum size necessary to encode these arcs.
214 */
Lev Walkin0787ff02004-06-17 23:43:39 +0000215 size = ((arc_type_size * CHAR_BIT + 6) / 7) * arcs_slots;
Lev Walkinc2346572004-08-11 09:07:36 +0000216 bp = buf = (uint8_t *)MALLOC(size + 1);
Lev Walkinf15320b2004-06-03 03:38:44 +0000217 if(!buf) {
218 /* ENOMEM */
219 return -1;
220 }
221
222 /*
Lev Walkin0787ff02004-06-17 23:43:39 +0000223 * Encode the arcs.
Lev Walkinf15320b2004-06-03 03:38:44 +0000224 */
Lev Walkin4ce78ca2004-08-25 01:34:11 +0000225 for(i = 0; i < arcs_slots; i++, arcs = ((char *)arcs) + arc_type_size) {
Lev Walkin0787ff02004-06-17 23:43:39 +0000226 bp += OBJECT_IDENTIFIER_set_single_arc(bp,
227 arcs, arc_type_size, 0);
Lev Walkinf15320b2004-06-03 03:38:44 +0000228 }
229
Lev Walkin34b2a932004-06-17 23:46:45 +0000230 assert((unsigned)(bp - buf) <= size);
Lev Walkin0787ff02004-06-17 23:43:39 +0000231
Lev Walkinf15320b2004-06-03 03:38:44 +0000232 /*
233 * Replace buffer.
234 */
Lev Walkin4efbfb72005-02-25 14:20:30 +0000235 roid->size = (int)(bp - buf);
Lev Walkinf15320b2004-06-03 03:38:44 +0000236 bp = roid->buf;
237 roid->buf = buf;
238 if(bp) FREEMEM(bp);
239
240 return 0;
241}
Lev Walkin0787ff02004-06-17 23:43:39 +0000242