2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #include <asn_internal.h>
7 #include <OBJECT_IDENTIFIER.h>
8 #include <OCTET_STRING.h>
9 #include <limits.h> /* for CHAR_BIT */
13 * OBJECT IDENTIFIER basic type description.
15 static const ber_tlv_tag_t asn_DEF_OBJECT_IDENTIFIER_tags[] = {
16 (ASN_TAG_CLASS_UNIVERSAL | (6 << 2))
18 asn_TYPE_operation_t asn_OP_OBJECT_IDENTIFIER = {
19 ASN__PRIMITIVE_TYPE_free,
20 OBJECT_IDENTIFIER_print,
21 OCTET_STRING_compare, /* Implemented in terms of a string comparison */
24 OBJECT_IDENTIFIER_decode_xer,
25 OBJECT_IDENTIFIER_encode_xer,
26 #ifdef ASN_DISABLE_OER_SUPPORT
30 OBJECT_IDENTIFIER_decode_oer,
31 OBJECT_IDENTIFIER_encode_oer,
32 #endif /* ASN_DISABLE_OER_SUPPORT */
33 #ifdef ASN_DISABLE_PER_SUPPORT
37 OCTET_STRING_decode_uper,
38 OCTET_STRING_encode_uper,
39 #endif /* ASN_DISABLE_PER_SUPPORT */
40 OBJECT_IDENTIFIER_random_fill,
41 0 /* Use generic outmost tag fetcher */
43 asn_TYPE_descriptor_t asn_DEF_OBJECT_IDENTIFIER = {
46 &asn_OP_OBJECT_IDENTIFIER,
47 asn_DEF_OBJECT_IDENTIFIER_tags,
48 sizeof(asn_DEF_OBJECT_IDENTIFIER_tags)
49 / sizeof(asn_DEF_OBJECT_IDENTIFIER_tags[0]),
50 asn_DEF_OBJECT_IDENTIFIER_tags, /* Same as above */
51 sizeof(asn_DEF_OBJECT_IDENTIFIER_tags)
52 / sizeof(asn_DEF_OBJECT_IDENTIFIER_tags[0]),
53 { 0, 0, OBJECT_IDENTIFIER_constraint },
54 0, 0, /* No members */
59 OBJECT_IDENTIFIER_constraint(const asn_TYPE_descriptor_t *td, const void *sptr,
60 asn_app_constraint_failed_f *ctfailcb,
62 const OBJECT_IDENTIFIER_t *st = (const OBJECT_IDENTIFIER_t *)sptr;
66 ASN__CTFAIL(app_key, td, sptr,
67 "%s: at least one numerical value "
69 td->name, __FILE__, __LINE__);
73 ASN__CTFAIL(app_key, td, sptr,
74 "%s: value not given (%s:%d)",
75 td->name, __FILE__, __LINE__);
83 OBJECT_IDENTIFIER_get_first_arcs(const uint8_t *arcbuf, size_t arcbuf_len,
84 asn_oid_arc_t *arc0, asn_oid_arc_t *arc1) {
87 ssize_t rd = OBJECT_IDENTIFIER_get_single_arc(arcbuf, arcbuf_len, &value);
88 if(rd <= 0) return rd;
93 } else if(value >= 40) {
105 OBJECT_IDENTIFIER_get_single_arc(const uint8_t *arcbuf, size_t arcbuf_len,
106 asn_oid_arc_t *ret_value) {
107 const uint8_t *b = arcbuf;
108 const uint8_t *arcend = arcbuf + arcbuf_len; /* End of arc */
110 if(arcbuf == arcend) {
114 /* Gather all bits into the accumulator */
115 for(accum = 0; b < arcend; b++) {
116 accum = (accum << 7) | (*b & ~0x80);
117 if((*b & 0x80) == 0) {
118 if(accum <= ASN_OID_ARC_MAX) {
120 return 1 + (b - arcbuf);
122 errno = ERANGE; /* Overflow */
134 OBJECT_IDENTIFIER__dump_body(const OBJECT_IDENTIFIER_t *st,
135 asn_app_consume_bytes_f *cb, void *app_key) {
137 asn_oid_arc_t arc0, arc1;
143 rd = OBJECT_IDENTIFIER_get_first_arcs(st->buf, st->size, &arc0, &arc1);
148 ret = snprintf(scratch, sizeof(scratch), "%"PRIu32".%"PRIu32, arc0, arc1);
149 if(ret >= (ssize_t)sizeof(scratch)) {
153 if(cb(scratch, ret, app_key) < 0)
158 rd = OBJECT_IDENTIFIER_get_single_arc(st->buf + off, st->size - off,
167 assert(off <= st->size);
168 ret = snprintf(scratch, sizeof(scratch), ".%" PRIu32, arc);
169 if(ret >= (ssize_t)sizeof(scratch)) {
173 if(cb(scratch, ret, app_key) < 0) return -1;
177 if(off != st->size) {
178 ASN_DEBUG("Could not scan to the end of Object Identifier");
185 static enum xer_pbd_rval
186 OBJECT_IDENTIFIER__xer_body_decode(const asn_TYPE_descriptor_t *td, void *sptr,
187 const void *chunk_buf, size_t chunk_size) {
188 OBJECT_IDENTIFIER_t *st = (OBJECT_IDENTIFIER_t *)sptr;
189 const char *chunk_end = (const char *)chunk_buf + chunk_size;
191 asn_oid_arc_t s_arcs[10];
192 asn_oid_arc_t *arcs = s_arcs;
198 num_arcs = OBJECT_IDENTIFIER_parse_arcs(
199 (const char *)chunk_buf, chunk_size, arcs,
200 sizeof(s_arcs) / sizeof(s_arcs[0]), &endptr);
202 /* Expecting more than zero arcs */
203 return XPBD_BROKEN_ENCODING;
204 } else if(num_arcs == 0) {
205 return XPBD_NOT_BODY_IGNORE;
207 assert(endptr == chunk_end);
209 if((size_t)num_arcs > sizeof(s_arcs)/sizeof(s_arcs[0])) {
210 arcs = (asn_oid_arc_t *)MALLOC(num_arcs * sizeof(asn_oid_arc_t));
211 if(!arcs) return XPBD_SYSTEM_FAILURE;
212 ret = OBJECT_IDENTIFIER_parse_arcs((const char *)chunk_buf, chunk_size,
213 arcs, num_arcs, &endptr);
215 return XPBD_SYSTEM_FAILURE; /* assert?.. */
219 * Convert arcs into BER representation.
221 ret = OBJECT_IDENTIFIER_set_arcs(st, arcs, num_arcs);
222 if(arcs != s_arcs) FREEMEM(arcs);
224 return ret ? XPBD_SYSTEM_FAILURE : XPBD_BODY_CONSUMED;
228 OBJECT_IDENTIFIER_decode_xer(const asn_codec_ctx_t *opt_codec_ctx,
229 const asn_TYPE_descriptor_t *td, void **sptr,
230 const char *opt_mname, const void *buf_ptr,
232 return xer_decode_primitive(opt_codec_ctx, td,
233 sptr, sizeof(OBJECT_IDENTIFIER_t), opt_mname,
234 buf_ptr, size, OBJECT_IDENTIFIER__xer_body_decode);
238 OBJECT_IDENTIFIER_encode_xer(const asn_TYPE_descriptor_t *td, const void *sptr,
239 int ilevel, enum xer_encoder_flags_e flags,
240 asn_app_consume_bytes_f *cb, void *app_key) {
241 const OBJECT_IDENTIFIER_t *st = (const OBJECT_IDENTIFIER_t *)sptr;
247 if(!st || !st->buf) {
251 er.encoded = OBJECT_IDENTIFIER__dump_body(st, cb, app_key);
252 if(er.encoded < 0) ASN__ENCODE_FAILED;
258 OBJECT_IDENTIFIER_print(const asn_TYPE_descriptor_t *td, const void *sptr,
259 int ilevel, asn_app_consume_bytes_f *cb,
261 const OBJECT_IDENTIFIER_t *st = (const OBJECT_IDENTIFIER_t *)sptr;
263 (void)td; /* Unused argument */
264 (void)ilevel; /* Unused argument */
267 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
270 if(cb("{ ", 2, app_key) < 0)
273 if(OBJECT_IDENTIFIER__dump_body(st, cb, app_key) < 0) {
277 return (cb(" }", 2, app_key) < 0) ? -1 : 0;
281 OBJECT_IDENTIFIER_get_arcs(const OBJECT_IDENTIFIER_t *st, asn_oid_arc_t *arcs,
283 asn_oid_arc_t arc0, arc1;
288 if(!st || !st->buf) {
293 rd = OBJECT_IDENTIFIER_get_first_arcs(st->buf, st->size, &arc0, &arc1);
312 rd = OBJECT_IDENTIFIER_get_single_arc(st->buf + off, st->size - off,
321 if(num_arcs < arc_slots) {
322 arcs[num_arcs] = arc;
328 if(off != st->size) {
337 * Save the single value as an object identifier arc.
340 OBJECT_IDENTIFIER_set_single_arc(uint8_t *arcbuf, size_t arcbuf_len,
341 asn_oid_arc_t value) {
343 * The following conditions must hold:
346 uint8_t scratch[((sizeof(value) * CHAR_BIT + 6) / 7)];
347 uint8_t *scratch_end = &scratch[sizeof(scratch)-1];
352 for(b = scratch_end, mask = 0; ; mask = 0x80, b--) {
353 *b = mask | (value & 0x7f);
360 result_len = (scratch_end - b) + 1;
362 if(result_len > arcbuf_len) {
366 memcpy(arcbuf, b, result_len);
372 OBJECT_IDENTIFIER_set_arcs(OBJECT_IDENTIFIER_t *st, const asn_oid_arc_t *arcs,
382 if(!st || !arcs || arc_slots < 2) {
392 /* 8.19.4: At most 39 subsequent values (including 0) */
396 } else if(arc0 == 2) {
397 if(arc1 > ASN_OID_ARC_MAX - 80) {
401 } else if(arc0 > 2) {
402 /* 8.19.4: Only three values are allocated from the root node */
408 * After above tests it is known that the value of arc0 is completely
409 * trustworthy (0..2). However, the arc1's value is still meaningless.
413 * Roughly estimate the maximum size necessary to encode these arcs.
414 * This estimation implicitly takes in account the following facts,
415 * that cancel each other:
416 * * the first two arcs are encoded in a single value.
417 * * the first value may require more space (+1 byte)
418 * * the value of the first arc which is in range (0..2)
420 size = ((sizeof(asn_oid_arc_t) * CHAR_BIT + 6) / 7) * arc_slots;
421 bp = buf = (uint8_t *)MALLOC(size + 1);
427 wrote = OBJECT_IDENTIFIER_set_single_arc(bp, size, arc0 * 40 + arc1);
432 assert((size_t)wrote <= size);
436 for(i = 2; i < arc_slots; i++) {
437 wrote = OBJECT_IDENTIFIER_set_single_arc(bp, size, arcs[i]);
442 assert((size_t)wrote <= size);
453 st->buf[st->size] = '\0';
460 OBJECT_IDENTIFIER_parse_arcs(const char *oid_text, ssize_t oid_txt_length,
461 asn_oid_arc_t *arcs, size_t arcs_count,
462 const char **opt_oid_text_end) {
468 ST_AFTERVALUE, /* Next character ought to be '.' or a space */
469 ST_WAITDIGITS /* Next character is expected to be a digit */
470 } state = ST_LEADSPACE;
472 if(!oid_text || oid_txt_length < -1 || (arcs_count && !arcs)) {
473 if(opt_oid_text_end) *opt_oid_text_end = oid_text;
478 if(oid_txt_length == -1)
479 oid_txt_length = strlen(oid_text);
481 #define _OID_CAPTURE_ARC(oid_text, oid_end) \
483 const char *endp = oid_end; \
484 unsigned long value; \
485 switch(asn_strtoul_lim(oid_text, &endp, &value)) { \
486 case ASN_STRTOX_EXTRA_DATA: \
487 case ASN_STRTOX_OK: \
488 if(value <= ASN_OID_ARC_MAX) { \
489 if(num_arcs < arcs_count) arcs[num_arcs] = value; \
491 oid_text = endp - 1; \
495 case ASN_STRTOX_ERROR_RANGE: \
496 if(opt_oid_text_end) *opt_oid_text_end = oid_text; \
499 case ASN_STRTOX_ERROR_INVAL: \
500 case ASN_STRTOX_EXPECT_MORE: \
501 if(opt_oid_text_end) *opt_oid_text_end = oid_text; \
507 for(oid_end = oid_text + oid_txt_length; oid_text<oid_end; oid_text++) {
509 case 0x09: case 0x0a: case 0x0d: case 0x20: /* whitespace */
515 state = ST_TAILSPACE;
518 break; /* Digits expected after ".", got whitespace */
527 *opt_oid_text_end = oid_text;
528 errno = EINVAL; /* Broken OID */
532 state = ST_WAITDIGITS;
536 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34:
537 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39:
542 *opt_oid_text_end = oid_text;
543 errno = EINVAL; /* "1. 1" => broken OID */
547 _OID_CAPTURE_ARC(oid_text, oid_end);
548 state = ST_AFTERVALUE;
553 /* Unexpected symbols */
554 state = ST_WAITDIGITS;
561 if(opt_oid_text_end) *opt_oid_text_end = oid_text;
563 /* Finalize last arc */
566 return 0; /* No OID found in input data */
568 errno = EINVAL; /* Broken OID */
575 errno = EINVAL; /* Broken OID */
580 * Generate values from the list of interesting values, or just a random
581 * value up to the upper limit.
584 OBJECT_IDENTIFIER__biased_random_arc(asn_oid_arc_t upper_bound) {
585 const asn_oid_arc_t values[] = {0, 1, 127, 128, 129, 254, 255, 256};
588 switch(asn_random_between(0, 2)) {
590 idx = asn_random_between(0, sizeof(values) / sizeof(values[0]) - 1);
591 if(values[idx] < upper_bound) {
596 return asn_random_between(0, upper_bound);
603 asn_random_fill_result_t
604 OBJECT_IDENTIFIER_random_fill(const asn_TYPE_descriptor_t *td, void **sptr,
605 const asn_encoding_constraints_t *constraints,
607 asn_random_fill_result_t result_ok = {ARFILL_OK, 1};
608 asn_random_fill_result_t result_failed = {ARFILL_FAILED, 0};
609 asn_random_fill_result_t result_skipped = {ARFILL_SKIPPED, 0};
610 OBJECT_IDENTIFIER_t *st;
611 asn_oid_arc_t arcs[5];
612 size_t arcs_len = asn_random_between(2, 5);
617 if(max_length < arcs_len) return result_skipped;
622 st = CALLOC(1, sizeof(*st));
625 arcs[0] = asn_random_between(0, 2);
626 arcs[1] = OBJECT_IDENTIFIER__biased_random_arc(
627 arcs[0] <= 1 ? 39 : (ASN_OID_ARC_MAX - 80));
628 for(i = 2; i < arcs_len; i++) {
629 arcs[i] = OBJECT_IDENTIFIER__biased_random_arc(ASN_OID_ARC_MAX);
632 if(OBJECT_IDENTIFIER_set_arcs(st, arcs, arcs_len)) {
634 ASN_STRUCT_FREE(*td, st);
636 return result_failed;
641 result_ok.length = st->size;