blob: 9dbadea650c2b44f172bf25910439a50365413fb [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 */
6#ifndef _OBJECT_IDENTIFIER_H_
7#define _OBJECT_IDENTIFIER_H_
8
Lev Walkin8e8078a2004-09-26 13:10:40 +00009#include <asn_application.h>
Lev Walkin3256d6f2004-10-21 11:22:12 +000010#include <asn_codecs_prim.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000011
Lev Walkin21b41ac2005-07-24 09:03:44 +000012#ifdef __cplusplus
13extern "C" {
14#endif
15
Lev Walkin8e8078a2004-09-26 13:10:40 +000016typedef ASN__PRIMITIVE_TYPE_t OBJECT_IDENTIFIER_t;
Lev Walkinf15320b2004-06-03 03:38:44 +000017
Lev Walkin5e033762004-09-29 13:26:15 +000018extern asn_TYPE_descriptor_t asn_DEF_OBJECT_IDENTIFIER;
Lev Walkinf15320b2004-06-03 03:38:44 +000019
Lev Walkinf15320b2004-06-03 03:38:44 +000020asn_struct_print_f OBJECT_IDENTIFIER_print;
Lev Walkina9cc46e2004-09-22 16:06:28 +000021asn_constr_check_f OBJECT_IDENTIFIER_constraint;
22der_type_encoder_f OBJECT_IDENTIFIER_encode_der;
Lev Walkin92302252004-10-23 10:16:51 +000023xer_type_decoder_f OBJECT_IDENTIFIER_decode_xer;
Lev Walkina9cc46e2004-09-22 16:06:28 +000024xer_type_encoder_f OBJECT_IDENTIFIER_encode_xer;
Lev Walkinf15320b2004-06-03 03:38:44 +000025
Bi-Ruei, Chiu1fa31c92016-05-16 13:50:09 +080026#define OBJECT_IDENTIFIER_free ASN__PRIMITIVE_TYPE_free
27#define OBJECT_IDENTIFIER_decode_ber ber_decode_primitive
28#define OBJECT_IDENTIFIER_encode_der der_encode_primitive
29#define OBJECT_IDENTIFIER_decode_uper OCTET_STRING_decode_uper
30#define OBJECT_IDENTIFIER_encode_uper OCTET_STRING_encode_uper
31
Lev Walkinf15320b2004-06-03 03:38:44 +000032/**********************************
33 * Some handy conversion routines *
34 **********************************/
35
36/*
Lev Walkinf15320b2004-06-03 03:38:44 +000037 * This function fills an (_arcs) array with OBJECT IDENTIFIER arcs
Lev Walkin29a044b2004-06-14 07:24:36 +000038 * up to specified (_arc_slots) elements.
Lev Walkinf15320b2004-06-03 03:38:44 +000039 *
40 * EXAMPLE:
41 * void print_arcs(OBJECT_IDENTIFIER_t *oid) {
42 * unsigned long fixed_arcs[10]; // Try with fixed space first
43 * unsigned long *arcs = fixed_arcs;
Lev Walkin29a044b2004-06-14 07:24:36 +000044 * int arc_type_size = sizeof(fixed_arcs[0]); // sizeof(long)
45 * int arc_slots = sizeof(fixed_arcs)/sizeof(fixed_arcs[0]); // 10
Lev Walkinf15320b2004-06-03 03:38:44 +000046 * int count; // Real number of arcs.
47 * int i;
48 *
Lev Walkin29a044b2004-06-14 07:24:36 +000049 * count = OBJECT_IDENTIFIER_get_arcs(oid, arcs,
50 * arc_type_size, arc_slots);
Lev Walkinf15320b2004-06-03 03:38:44 +000051 * // If necessary, reallocate arcs array and try again.
Lev Walkin29a044b2004-06-14 07:24:36 +000052 * if(count > arc_slots) {
53 * arc_slots = count;
54 * arcs = malloc(arc_type_size * arc_slots);
Lev Walkinf15320b2004-06-03 03:38:44 +000055 * if(!arcs) return;
Lev Walkin29a044b2004-06-14 07:24:36 +000056 * count = OBJECT_IDENTIFIER_get_arcs(oid, arcs,
57 * arc_type_size, arc_slots);
58 * assert(count == arc_slots);
Lev Walkinf15320b2004-06-03 03:38:44 +000059 * }
60 *
61 * // Print the contents of the arcs array.
62 * for(i = 0; i < count; i++)
63 * printf("%d\n", arcs[i]);
64 *
65 * // Avoid memory leak.
66 * if(arcs != fixed_arcs) free(arcs);
67 * }
68 *
69 * RETURN VALUES:
70 * -1/EINVAL: Invalid arguments (oid is missing)
71 * -1/ERANGE: One or more arcs have value out of array cell type range.
72 * >=0: Number of arcs contained in the OBJECT IDENTIFIER
Lev Walkin92302252004-10-23 10:16:51 +000073 *
74 * WARNING: The function always returns the real number of arcs,
75 * even if there is no sufficient (_arc_slots) provided.
Lev Walkinf15320b2004-06-03 03:38:44 +000076 */
Wim Lewis14e6b162014-07-23 16:06:01 -070077int OBJECT_IDENTIFIER_get_arcs(const OBJECT_IDENTIFIER_t *_oid,
Lev Walkin4a4d06e2006-08-10 22:09:41 +000078 void *_arcs, /* e.g., unsigned int arcs[N] */
79 unsigned int _arc_type_size, /* e.g., sizeof(arcs[0]) */
80 unsigned int _arc_slots /* e.g., N */);
Lev Walkinf15320b2004-06-03 03:38:44 +000081
82/*
83 * This functions initializes the OBJECT IDENTIFIER object with
84 * the given set of arcs.
85 * The minimum of two arcs must be present; some restrictions apply.
86 * RETURN VALUES:
87 * -1/EINVAL: Invalid arguments
88 * -1/ERANGE: The first two arcs do not conform to ASN.1 restrictions.
89 * -1/ENOMEM: Memory allocation failed
90 * 0: The object was initialized with new arcs.
91 */
Lev Walkin0787ff02004-06-17 23:43:39 +000092int OBJECT_IDENTIFIER_set_arcs(OBJECT_IDENTIFIER_t *_oid,
Lev Walkin4a4d06e2006-08-10 22:09:41 +000093 const void *_arcs, /* e.g., unsigned int arcs[N] */
94 unsigned int _arc_type_size, /* e.g., sizeof(arcs[0]) */
95 unsigned int _arc_slots /* e.g., N */);
Lev Walkinf15320b2004-06-03 03:38:44 +000096
97/*
Lev Walkin92302252004-10-23 10:16:51 +000098 * Print the specified OBJECT IDENTIFIER arc.
99 */
Wim Lewis14e6b162014-07-23 16:06:01 -0700100int OBJECT_IDENTIFIER_print_arc(const uint8_t *arcbuf, int arclen,
Lev Walkin92302252004-10-23 10:16:51 +0000101 int add, /* Arbitrary offset, required to process the first two arcs */
102 asn_app_consume_bytes_f *cb, void *app_key);
103
104/* Same as above, but returns the number of written digits, instead of 0 */
Wim Lewis14e6b162014-07-23 16:06:01 -0700105ssize_t OBJECT_IDENTIFIER__dump_arc(const uint8_t *arcbuf, int arclen, int add,
Lev Walkin92302252004-10-23 10:16:51 +0000106 asn_app_consume_bytes_f *cb, void *app_key);
107
108/*
109 * Parse the OBJECT IDENTIFIER textual representation ("1.3.6.1.4.1.9363").
110 * No arc can exceed the (0..signed_long_max) range (typically, 0..2G if L32).
111 * This function is not specific to OBJECT IDENTIFIER, it may be used to parse
112 * the RELATIVE-OID data, or any other data consisting of dot-separated
113 * series of numeric values.
114 *
115 * If (oid_txt_length == -1), the strlen() will be invoked to determine the
116 * size of the (oid_text) string.
117 *
Lev Walkin093ba2e2005-04-04 21:10:06 +0000118 * After return, the optional (opt_oid_text_end) is set to the character after
119 * the last parsed one. (opt_oid_text_end) is never less than (oid_text).
Lev Walkin92302252004-10-23 10:16:51 +0000120 *
121 * RETURN VALUES:
122 * -1: Parse error.
123 * >= 0: Number of arcs contained in the OBJECT IDENTIFIER.
124 *
125 * WARNING: The function always returns the real number of arcs,
126 * even if there is no sufficient (_arc_slots) provided.
Lev Walkinb9c91022005-03-10 11:32:57 +0000127 * This is useful for (_arc_slots) value estimation.
Lev Walkin92302252004-10-23 10:16:51 +0000128 */
129int OBJECT_IDENTIFIER_parse_arcs(const char *oid_text, ssize_t oid_txt_length,
Lev Walkin093ba2e2005-04-04 21:10:06 +0000130 long arcs[], unsigned int arcs_slots, const char **opt_oid_text_end);
Lev Walkin92302252004-10-23 10:16:51 +0000131
132/*
Lev Walkinf15320b2004-06-03 03:38:44 +0000133 * Internal functions.
Lev Walkin0787ff02004-06-17 23:43:39 +0000134 * Used by RELATIVE-OID implementation in particular.
Lev Walkinf15320b2004-06-03 03:38:44 +0000135 */
Wim Lewis14e6b162014-07-23 16:06:01 -0700136int OBJECT_IDENTIFIER_get_single_arc(const uint8_t *arcbuf, unsigned int arclen,
Lev Walkin29a044b2004-06-14 07:24:36 +0000137 signed int add, void *value, unsigned int value_size);
Lev Walkin0787ff02004-06-17 23:43:39 +0000138int OBJECT_IDENTIFIER_set_single_arc(uint8_t *arcbuf,
Lev Walkinb1a15552005-12-22 21:39:44 +0000139 const void *arcval, unsigned int arcval_size, int _prepared_order);
Lev Walkinf15320b2004-06-03 03:38:44 +0000140
Lev Walkin21b41ac2005-07-24 09:03:44 +0000141#ifdef __cplusplus
142}
143#endif
144
Lev Walkinf15320b2004-06-03 03:38:44 +0000145#endif /* _OBJECT_IDENTIFIER_H_ */