blob: 10bb0f36df7c9c0f1855abd37b1b2b62d997cb2f [file] [log] [blame]
Lev Walkin20696a42017-10-17 21:27:33 -07001/*
2 * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005/*
6 * This file contains the declaration structure called "ASN.1 Type Definition",
7 * which holds all information necessary for encoding and decoding routines.
8 * This structure even contains pointer to these encoding and decoding routines
9 * for each defined ASN.1 type.
10 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000011#ifndef _CONSTR_TYPE_H_
12#define _CONSTR_TYPE_H_
Lev Walkinf15320b2004-06-03 03:38:44 +000013
Lev Walkin1cbd2222004-09-29 13:24:10 +000014#include <ber_tlv_length.h>
15#include <ber_tlv_tag.h>
16
Lev Walkin21b41ac2005-07-24 09:03:44 +000017#ifdef __cplusplus
18extern "C" {
19#endif
20
Lev Walkin1cbd2222004-09-29 13:24:10 +000021struct asn_TYPE_descriptor_s; /* Forward declaration */
22struct asn_TYPE_member_s; /* Forward declaration */
23
24/*
25 * This type provides the context information for various ASN.1 routines,
26 * primarily ones doing decoding. A member _asn_ctx of this type must be
27 * included into certain target language's structures, such as compound types.
28 */
29typedef struct asn_struct_ctx_s {
Lev Walkin1e443962005-02-18 18:06:36 +000030 short phase; /* Decoding phase */
31 short step; /* Elementary step of a phase */
32 int context; /* Other context information */
Lev Walkin1cbd2222004-09-29 13:24:10 +000033 void *ptr; /* Decoder-specific stuff (stack elements) */
Lev Walkin1e443962005-02-18 18:06:36 +000034 ber_tlv_len_t left; /* Number of bytes left, -1 for indefinite */
Lev Walkin1cbd2222004-09-29 13:24:10 +000035} asn_struct_ctx_t;
36
Lev Walkindc06f6b2004-10-20 15:50:55 +000037#include <ber_decoder.h> /* Basic Encoding Rules decoder */
38#include <der_encoder.h> /* Distinguished Encoding Rules encoder */
39#include <xer_decoder.h> /* Decoder of XER (XML, text) */
40#include <xer_encoder.h> /* Encoder into XER (XML, text) */
Lev Walkin59b176e2005-11-26 11:25:14 +000041#include <per_decoder.h> /* Packet Encoding Rules decoder */
Lev Walkin523de9e2006-08-18 01:34:18 +000042#include <per_encoder.h> /* Packet Encoding Rules encoder */
Lev Walkin69033802017-08-25 12:15:58 -070043#include <constraints.h> /* Subtype constraints support */
Lev Walkina5972be2017-09-29 23:15:58 -070044#include <asn_random_fill.h> /* Random structures support */
Lev Walkin69033802017-08-25 12:15:58 -070045
46#ifdef ASN_DISABLE_OER_SUPPORT
Bi-Ruei, Chiu2eba1072018-04-13 00:25:44 +080047typedef void (oer_type_decoder_f)(void);
48typedef void (oer_type_encoder_f)(void);
Lev Walkinb5cdc5d2017-09-15 21:57:46 -070049typedef void asn_oer_constraints_t;
Lev Walkin69033802017-08-25 12:15:58 -070050#else
Lev Walkincc159472017-07-06 08:26:36 -070051#include <oer_decoder.h> /* Octet Encoding Rules encoder */
52#include <oer_encoder.h> /* Octet Encoding Rules encoder */
Lev Walkin69033802017-08-25 12:15:58 -070053#endif
Lev Walkinf15320b2004-06-03 03:38:44 +000054
Lev Walkinf15320b2004-06-03 03:38:44 +000055/*
56 * Free the structure according to its specification.
Lev Walkin8d99d7b2017-08-25 01:06:00 -070057 * Use one of ASN_STRUCT_{FREE,RESET,CONTENTS_ONLY} macros instead.
58 * Do not use directly.
Lev Walkinf15320b2004-06-03 03:38:44 +000059 */
Lev Walkin8d99d7b2017-08-25 01:06:00 -070060enum asn_struct_free_method {
61 ASFM_FREE_EVERYTHING, /* free(struct_ptr) and underlying members */
62 ASFM_FREE_UNDERLYING, /* free underlying members */
63 ASFM_FREE_UNDERLYING_AND_RESET /* FREE_UNDERLYING + memset(0) */
64};
Lev Walkinf15320b2004-06-03 03:38:44 +000065typedef void (asn_struct_free_f)(
Lev Walkinf6853ce2017-08-11 00:50:27 -070066 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkin8d99d7b2017-08-25 01:06:00 -070067 void *struct_ptr, enum asn_struct_free_method);
68
69/*
70 * Free the structure including freeing the memory pointed to by ptr itself.
71 */
72#define ASN_STRUCT_FREE(asn_DEF, ptr) \
73 (asn_DEF).op->free_struct(&(asn_DEF), (ptr), ASFM_FREE_EVERYTHING)
74
75/*
76 * Free the memory used by the members of the structure without freeing the
77 * the structure pointer itself.
78 * ZERO-OUT the structure to the safe clean state.
79 * (Retaining the pointer may be useful in case the structure is allocated
80 * statically or arranged on the stack, yet its elements are dynamic.)
81 */
82#define ASN_STRUCT_RESET(asn_DEF, ptr) \
83 (asn_DEF).op->free_struct(&(asn_DEF), (ptr), ASFM_FREE_UNDERLYING_AND_RESET)
84
85/*
86 * Free memory used by the members of the structure without freeing
87 * the structure pointer itself.
88 * (Retaining the pointer may be useful in case the structure is allocated
89 * statically or arranged on the stack, yet its elements are dynamic.)
90 * AVOID using it in the application code;
91 * Use a safer ASN_STRUCT_RESET() instead.
92 */
93#define ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF, ptr) \
94 (asn_DEF).op->free_struct(&(asn_DEF), (ptr), ASFM_FREE_UNDERLYING)
Lev Walkinf15320b2004-06-03 03:38:44 +000095
96/*
97 * Print the structure according to its specification.
98 */
Lev Walkin20696a42017-10-17 21:27:33 -070099typedef int(asn_struct_print_f)(
100 const struct asn_TYPE_descriptor_s *type_descriptor,
101 const void *struct_ptr,
102 int level, /* Indentation level */
103 asn_app_consume_bytes_f *callback, void *app_key);
Lev Walkinf15320b2004-06-03 03:38:44 +0000104
105/*
Lev Walkincd2f48e2017-08-10 02:14:59 -0700106 * Compare two structs between each other.
107 * Returns <0 if struct_A is "smaller" than struct_B, >0 if "greater",
108 * and =0 if "equal to", for some type-specific, stable definition of
109 * "smaller", "greater" and "equal to".
110 */
111typedef int (asn_struct_compare_f)(
112 const struct asn_TYPE_descriptor_s *type_descriptor,
113 const void *struct_A,
114 const void *struct_B);
115
116/*
Lev Walkinf15320b2004-06-03 03:38:44 +0000117 * Return the outmost tag of the type.
118 * If the type is untagged CHOICE, the dynamic operation is performed.
119 * NOTE: This function pointer type is only useful internally.
120 * Do not use it in your application.
121 */
122typedef ber_tlv_tag_t (asn_outmost_tag_f)(
Wim Lewis14e6b162014-07-23 16:06:01 -0700123 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +0000124 const void *struct_ptr, int tag_mode, ber_tlv_tag_t tag);
Lev Walkin449f8322004-08-20 13:23:42 +0000125/* The instance of the above function type; used internally. */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000126asn_outmost_tag_f asn_TYPE_outmost_tag;
Lev Walkinf15320b2004-06-03 03:38:44 +0000127
Lev Walkin9de6cd82017-08-10 05:47:46 -0700128/*
129 * Fetch the desired type of the Open Type based on the
130 * Information Object Set driven constraints.
131 */
Lev Walkinf6853ce2017-08-11 00:50:27 -0700132typedef struct asn_type_selector_result_s {
Lev Walkin20696a42017-10-17 21:27:33 -0700133 const struct asn_TYPE_descriptor_s *type_descriptor; /* Type encoded. */
Lev Walkinf6853ce2017-08-11 00:50:27 -0700134 unsigned presence_index; /* Associated choice variant. */
135} asn_type_selector_result_t;
136typedef asn_type_selector_result_t(asn_type_selector_f)(
Lev Walkin9de6cd82017-08-10 05:47:46 -0700137 const struct asn_TYPE_descriptor_s *parent_type_descriptor,
138 const void *parent_structure_ptr);
139
Lev Walkinf15320b2004-06-03 03:38:44 +0000140/*
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800141 * Generalized functions for dealing with the speciic type.
142 * May be directly invoked by applications.
Lev Walkinf15320b2004-06-03 03:38:44 +0000143 */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800144typedef struct asn_TYPE_operation_s {
Lev Walkina5972be2017-09-29 23:15:58 -0700145 asn_struct_free_f *free_struct; /* Free the structure */
146 asn_struct_print_f *print_struct; /* Human readable output */
147 asn_struct_compare_f *compare_struct; /* Compare two structures */
148 ber_type_decoder_f *ber_decoder; /* Generic BER decoder */
149 der_type_encoder_f *der_encoder; /* Canonical DER encoder */
150 xer_type_decoder_f *xer_decoder; /* Generic XER decoder */
151 xer_type_encoder_f *xer_encoder; /* [Canonical] XER encoder */
152 oer_type_decoder_f *oer_decoder; /* Generic OER decoder */
153 oer_type_encoder_f *oer_encoder; /* Canonical OER encoder */
154 per_type_decoder_f *uper_decoder; /* Unaligned PER decoder */
155 per_type_encoder_f *uper_encoder; /* Unaligned PER encoder */
156 asn_random_fill_f *random_fill; /* Initialize with a random value */
157 asn_outmost_tag_f *outmost_tag; /* <optional, internal> */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800158} asn_TYPE_operation_t;
159
160/*
Lev Walkina5972be2017-09-29 23:15:58 -0700161 * A constraints tuple specifying both the OER and PER constraints.
162 */
163typedef struct asn_encoding_constraints_s {
164 const struct asn_oer_constraints_s *oer_constraints;
165 const struct asn_per_constraints_s *per_constraints;
166 asn_constr_check_f *general_constraints;
167} asn_encoding_constraints_t;
168
169/*
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800170 * The definitive description of the destination language's structure.
171 */
172typedef struct asn_TYPE_descriptor_s {
Lev Walkina5972be2017-09-29 23:15:58 -0700173 const char *name; /* A name of the ASN.1 type. "" in some cases. */
174 const char *xml_tag; /* Name used in XML tag */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800175
Lev Walkina5972be2017-09-29 23:15:58 -0700176 /*
177 * Generalized functions for dealing with the specific type.
178 * May be directly invoked by applications.
179 */
180 asn_TYPE_operation_t *op;
Lev Walkinf15320b2004-06-03 03:38:44 +0000181
Lev Walkina5972be2017-09-29 23:15:58 -0700182 /***********************************************************************
183 * Internally useful members. Not to be used by applications directly. *
184 **********************************************************************/
Lev Walkinf15320b2004-06-03 03:38:44 +0000185
Lev Walkina5972be2017-09-29 23:15:58 -0700186 /*
187 * Tags that are expected to occur.
188 */
189 const ber_tlv_tag_t *tags; /* Effective tags sequence for this type */
190 unsigned tags_count; /* Number of tags which are expected */
191 const ber_tlv_tag_t *all_tags; /* Every tag for BER/containment */
192 unsigned all_tags_count; /* Number of tags */
Lev Walkin188ed2c2004-09-13 08:31:01 +0000193
Lev Walkina5972be2017-09-29 23:15:58 -0700194 /* OER, PER, and general constraints */
195 asn_encoding_constraints_t encoding_constraints;
Lev Walkin59b176e2005-11-26 11:25:14 +0000196
Lev Walkina5972be2017-09-29 23:15:58 -0700197 /*
198 * An ASN.1 production type members (members of SEQUENCE, SET, CHOICE).
199 */
200 struct asn_TYPE_member_s *elements;
201 unsigned elements_count;
Lev Walkin449f8322004-08-20 13:23:42 +0000202
Lev Walkina5972be2017-09-29 23:15:58 -0700203 /*
204 * Additional information describing the type, used by appropriate
205 * functions above.
206 */
207 const void *specifics;
Lev Walkin1cbd2222004-09-29 13:24:10 +0000208} asn_TYPE_descriptor_t;
Lev Walkinf15320b2004-06-03 03:38:44 +0000209
210/*
Lev Walkin1cbd2222004-09-29 13:24:10 +0000211 * This type describes an element of the constructed type,
212 * i.e. SEQUENCE, SET, CHOICE, etc.
Lev Walkin449f8322004-08-20 13:23:42 +0000213 */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000214 enum asn_TYPE_flags_e {
Lev Walkin14fd3e52017-08-27 01:38:45 -0700215 ATF_NOFLAGS,
216 ATF_POINTER = 0x01, /* Represented by the pointer */
217 ATF_OPEN_TYPE = 0x02, /* Open Type */
218 ATF_ANY_TYPE = 0x04 /* ANY type (deprecated!) */
Lev Walkin188ed2c2004-09-13 08:31:01 +0000219 };
Lev Walkin1cbd2222004-09-29 13:24:10 +0000220typedef struct asn_TYPE_member_s {
Lev Walkin494fb702017-08-07 20:07:00 -0700221 enum asn_TYPE_flags_e flags; /* Element's presentation flags */
222 unsigned optional; /* Following optional members, including current */
223 unsigned memb_offset; /* Offset of the element */
224 ber_tlv_tag_t tag; /* Outmost (most immediate) tag */
225 int tag_mode; /* IMPLICIT/no/EXPLICIT tag at current level */
226 asn_TYPE_descriptor_t *type; /* Member type descriptor */
Lev Walkinf6853ce2017-08-11 00:50:27 -0700227 asn_type_selector_f *type_selector; /* IoS runtime type selector */
Lev Walkina5972be2017-09-29 23:15:58 -0700228 asn_encoding_constraints_t encoding_constraints;
Lev Walkin20696a42017-10-17 21:27:33 -0700229 int (*default_value_cmp)(const void *sptr); /* Compare DEFAULT <value> */
Lev Walkin0b56b222017-10-18 00:40:32 -0700230 int (*default_value_set)(void **sptr); /* Set DEFAULT <value> */
Lev Walkin494fb702017-08-07 20:07:00 -0700231 const char *name; /* ASN.1 identifier of the element */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000232} asn_TYPE_member_t;
Lev Walkin449f8322004-08-20 13:23:42 +0000233
234/*
Lev Walkin4c36e302004-06-06 07:20:02 +0000235 * BER tag to element number mapping.
236 */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000237typedef struct asn_TYPE_tag2member_s {
Lev Walkin494fb702017-08-07 20:07:00 -0700238 ber_tlv_tag_t el_tag; /* Outmost tag of the member */
239 unsigned el_no; /* Index of the associated member, base 0 */
Lev Walkind3fbff92017-08-27 12:39:30 -0700240 int toff_first; /* First occurence of the el_tag, relative */
241 int toff_last; /* Last occurence of the el_tag, relative */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000242} asn_TYPE_tag2member_t;
Lev Walkin4c36e302004-06-06 07:20:02 +0000243
Lev Walkin4c36e302004-06-06 07:20:02 +0000244/*
Lev Walkincf573ec2017-11-07 04:20:52 -0800245 * This function prints out the contents of the target language's structure
246 * (struct_ptr) into the file pointer (stream) in human readable form.
Lev Walkinf15320b2004-06-03 03:38:44 +0000247 * RETURN VALUES:
248 * 0: The structure is printed.
249 * -1: Problem dumping the structure.
Lev Walkina9cc46e2004-09-22 16:06:28 +0000250 * (See also xer_fprint() in xer_encoder.h)
Lev Walkinf15320b2004-06-03 03:38:44 +0000251 */
Lev Walkincf573ec2017-11-07 04:20:52 -0800252int asn_fprint(FILE *stream, /* Destination stream descriptor */
253 const asn_TYPE_descriptor_t *td, /* ASN.1 type descriptor */
254 const void *struct_ptr); /* Structure to be printed */
Lev Walkinf15320b2004-06-03 03:38:44 +0000255
Lev Walkin21b41ac2005-07-24 09:03:44 +0000256#ifdef __cplusplus
257}
258#endif
259
Lev Walkinf15320b2004-06-03 03:38:44 +0000260#endif /* _CONSTR_TYPE_H_ */