blob: b0b4e0e4603420092260e438561cfc1efa6fdfcc [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin523de9e2006-08-18 01:34:18 +00002 * Copyright (c) 2003, 2004, 2005, 2006 Lev Walkin <vlm@lionet.info>.
Lev Walkin59b176e2005-11-26 11:25:14 +00003 * 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/*
7 * This file contains the declaration structure called "ASN.1 Type Definition",
8 * which holds all information necessary for encoding and decoding routines.
9 * This structure even contains pointer to these encoding and decoding routines
10 * for each defined ASN.1 type.
11 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000012#ifndef _CONSTR_TYPE_H_
13#define _CONSTR_TYPE_H_
Lev Walkinf15320b2004-06-03 03:38:44 +000014
Lev Walkin1cbd2222004-09-29 13:24:10 +000015#include <ber_tlv_length.h>
16#include <ber_tlv_tag.h>
17
Lev Walkin21b41ac2005-07-24 09:03:44 +000018#ifdef __cplusplus
19extern "C" {
20#endif
21
Lev Walkin1cbd2222004-09-29 13:24:10 +000022struct asn_TYPE_descriptor_s; /* Forward declaration */
23struct asn_TYPE_member_s; /* Forward declaration */
24
25/*
26 * This type provides the context information for various ASN.1 routines,
27 * primarily ones doing decoding. A member _asn_ctx of this type must be
28 * included into certain target language's structures, such as compound types.
29 */
30typedef struct asn_struct_ctx_s {
Lev Walkin1e443962005-02-18 18:06:36 +000031 short phase; /* Decoding phase */
32 short step; /* Elementary step of a phase */
33 int context; /* Other context information */
Lev Walkin1cbd2222004-09-29 13:24:10 +000034 void *ptr; /* Decoder-specific stuff (stack elements) */
Lev Walkin1e443962005-02-18 18:06:36 +000035 ber_tlv_len_t left; /* Number of bytes left, -1 for indefinite */
Lev Walkin1cbd2222004-09-29 13:24:10 +000036} asn_struct_ctx_t;
37
Lev Walkindc06f6b2004-10-20 15:50:55 +000038#include <ber_decoder.h> /* Basic Encoding Rules decoder */
39#include <der_encoder.h> /* Distinguished Encoding Rules encoder */
40#include <xer_decoder.h> /* Decoder of XER (XML, text) */
41#include <xer_encoder.h> /* Encoder into XER (XML, text) */
Lev Walkin59b176e2005-11-26 11:25:14 +000042#include <per_decoder.h> /* Packet Encoding Rules decoder */
Lev Walkin523de9e2006-08-18 01:34:18 +000043#include <per_encoder.h> /* Packet Encoding Rules encoder */
Lev Walkin69033802017-08-25 12:15:58 -070044#include <constraints.h> /* Subtype constraints support */
45
46#ifdef ASN_DISABLE_OER_SUPPORT
Lev Walkin049a2d72017-08-27 18:34:02 -070047typedef void (oer_type_decoder_f)();
48typedef void (oer_type_encoder_f)();
Lev Walkin69033802017-08-25 12:15:58 -070049typedef struct{} asn_oer_constraints_t;
50#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 */
99typedef int (asn_struct_print_f)(
Lev Walkin1cbd2222004-09-29 13:24:10 +0000100 struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +0000101 const void *struct_ptr,
102 int level, /* Indentation level */
103 asn_app_consume_bytes_f *callback, void *app_key);
104
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 {
133 struct asn_TYPE_descriptor_s *type_descriptor; /* Type encoded. */
134 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 Walkina9cc46e2004-09-22 16:06:28 +0000145 asn_struct_free_f *free_struct; /* Free the structure */
146 asn_struct_print_f *print_struct; /* Human readable output */
Lev Walkincd2f48e2017-08-10 02:14:59 -0700147 asn_struct_compare_f *compare_struct; /* Compare two structures */
Lev Walkinf15320b2004-06-03 03:38:44 +0000148 asn_constr_check_f *check_constraints; /* Constraints validator */
Lev Walkindc06f6b2004-10-20 15:50:55 +0000149 ber_type_decoder_f *ber_decoder; /* Generic BER decoder */
Lev Walkinf15320b2004-06-03 03:38:44 +0000150 der_type_encoder_f *der_encoder; /* Canonical DER encoder */
Lev Walkindc06f6b2004-10-20 15:50:55 +0000151 xer_type_decoder_f *xer_decoder; /* Generic XER decoder */
Lev Walkina9cc46e2004-09-22 16:06:28 +0000152 xer_type_encoder_f *xer_encoder; /* [Canonical] XER encoder */
Lev Walkincc159472017-07-06 08:26:36 -0700153 oer_type_decoder_f *oer_decoder; /* Generic OER decoder */
154 oer_type_encoder_f *oer_encoder; /* Canonical OER encoder */
Lev Walkinb33425f2017-07-14 14:59:52 +0400155 per_type_decoder_f *uper_decoder; /* Unaligned PER decoder */
156 per_type_encoder_f *uper_encoder; /* Unaligned PER encoder */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800157 asn_outmost_tag_f *outmost_tag; /* <optional, internal> */
158} asn_TYPE_operation_t;
159
160/*
161 * The definitive description of the destination language's structure.
162 */
163typedef struct asn_TYPE_descriptor_s {
164 const char *name; /* A name of the ASN.1 type. "" in some cases. */
165 const char *xml_tag; /* Name used in XML tag */
166
167 /*
168 * Generalized functions for dealing with the specific type.
169 * May be directly invoked by applications.
170 */
171 asn_TYPE_operation_t *op;
172 asn_constr_check_f *check_constraints; /* Constraints validator */
Lev Walkinf15320b2004-06-03 03:38:44 +0000173
Lev Walkinbbd93252004-10-12 05:57:23 +0000174 /***********************************************************************
175 * Internally useful members. Not to be used by applications directly. *
176 **********************************************************************/
Lev Walkinf15320b2004-06-03 03:38:44 +0000177
178 /*
Lev Walkin188ed2c2004-09-13 08:31:01 +0000179 * Tags that are expected to occur.
Lev Walkinf15320b2004-06-03 03:38:44 +0000180 */
Wim Lewisfb6344e2014-07-28 12:16:01 -0700181 const ber_tlv_tag_t *tags; /* Effective tags sequence for this type */
Lev Walkin494fb702017-08-07 20:07:00 -0700182 unsigned tags_count; /* Number of tags which are expected */
Wim Lewisfb6344e2014-07-28 12:16:01 -0700183 const ber_tlv_tag_t *all_tags; /* Every tag for BER/containment */
Lev Walkin494fb702017-08-07 20:07:00 -0700184 unsigned all_tags_count; /* Number of tags */
Lev Walkin188ed2c2004-09-13 08:31:01 +0000185
Lev Walkin76780762017-07-07 10:07:30 -0700186 asn_oer_constraints_t *oer_constraints; /* OER constraints */
187 asn_per_constraints_t *per_constraints; /* PER constraints */
Lev Walkin59b176e2005-11-26 11:25:14 +0000188
Lev Walkinf15320b2004-06-03 03:38:44 +0000189 /*
Lev Walkin449f8322004-08-20 13:23:42 +0000190 * An ASN.1 production type members (members of SEQUENCE, SET, CHOICE).
191 */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000192 struct asn_TYPE_member_s *elements;
Lev Walkin494fb702017-08-07 20:07:00 -0700193 unsigned elements_count;
Lev Walkin449f8322004-08-20 13:23:42 +0000194
195 /*
Lev Walkinf15320b2004-06-03 03:38:44 +0000196 * Additional information describing the type, used by appropriate
197 * functions above.
198 */
Wim Lewisfb6344e2014-07-28 12:16:01 -0700199 const void *specifics;
Lev Walkin1cbd2222004-09-29 13:24:10 +0000200} asn_TYPE_descriptor_t;
Lev Walkinf15320b2004-06-03 03:38:44 +0000201
202/*
Lev Walkin1cbd2222004-09-29 13:24:10 +0000203 * This type describes an element of the constructed type,
204 * i.e. SEQUENCE, SET, CHOICE, etc.
Lev Walkin449f8322004-08-20 13:23:42 +0000205 */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000206 enum asn_TYPE_flags_e {
Lev Walkin14fd3e52017-08-27 01:38:45 -0700207 ATF_NOFLAGS,
208 ATF_POINTER = 0x01, /* Represented by the pointer */
209 ATF_OPEN_TYPE = 0x02, /* Open Type */
210 ATF_ANY_TYPE = 0x04 /* ANY type (deprecated!) */
Lev Walkin188ed2c2004-09-13 08:31:01 +0000211 };
Lev Walkin1cbd2222004-09-29 13:24:10 +0000212typedef struct asn_TYPE_member_s {
Lev Walkin494fb702017-08-07 20:07:00 -0700213 enum asn_TYPE_flags_e flags; /* Element's presentation flags */
214 unsigned optional; /* Following optional members, including current */
215 unsigned memb_offset; /* Offset of the element */
216 ber_tlv_tag_t tag; /* Outmost (most immediate) tag */
217 int tag_mode; /* IMPLICIT/no/EXPLICIT tag at current level */
218 asn_TYPE_descriptor_t *type; /* Member type descriptor */
Lev Walkinf6853ce2017-08-11 00:50:27 -0700219 asn_type_selector_f *type_selector; /* IoS runtime type selector */
Lev Walkin494fb702017-08-07 20:07:00 -0700220 asn_constr_check_f *memb_constraints; /* Constraints validator */
221 asn_oer_constraints_t *oer_constraints; /* OER compiled constraints */
222 asn_per_constraints_t *per_constraints; /* PER compiled constraints */
223 int (*default_value)(int setval, void **sptr); /* DEFAULT <value> */
224 const char *name; /* ASN.1 identifier of the element */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000225} asn_TYPE_member_t;
Lev Walkin449f8322004-08-20 13:23:42 +0000226
227/*
Lev Walkin4c36e302004-06-06 07:20:02 +0000228 * BER tag to element number mapping.
229 */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000230typedef struct asn_TYPE_tag2member_s {
Lev Walkin494fb702017-08-07 20:07:00 -0700231 ber_tlv_tag_t el_tag; /* Outmost tag of the member */
232 unsigned el_no; /* Index of the associated member, base 0 */
Lev Walkind3fbff92017-08-27 12:39:30 -0700233 int toff_first; /* First occurence of the el_tag, relative */
234 int toff_last; /* Last occurence of the el_tag, relative */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000235} asn_TYPE_tag2member_t;
Lev Walkin4c36e302004-06-06 07:20:02 +0000236
Lev Walkin4c36e302004-06-06 07:20:02 +0000237/*
Lev Walkinf15320b2004-06-03 03:38:44 +0000238 * This function is a wrapper around (td)->print_struct, which prints out
239 * the contents of the target language's structure (struct_ptr) into the
240 * file pointer (stream) in human readable form.
241 * RETURN VALUES:
242 * 0: The structure is printed.
243 * -1: Problem dumping the structure.
Lev Walkina9cc46e2004-09-22 16:06:28 +0000244 * (See also xer_fprint() in xer_encoder.h)
Lev Walkinf15320b2004-06-03 03:38:44 +0000245 */
246int asn_fprint(FILE *stream, /* Destination stream descriptor */
Lev Walkin1cbd2222004-09-29 13:24:10 +0000247 asn_TYPE_descriptor_t *td, /* ASN.1 type descriptor */
Lev Walkinf15320b2004-06-03 03:38:44 +0000248 const void *struct_ptr); /* Structure to be printed */
249
Lev Walkin21b41ac2005-07-24 09:03:44 +0000250#ifdef __cplusplus
251}
252#endif
253
Lev Walkinf15320b2004-06-03 03:38:44 +0000254#endif /* _CONSTR_TYPE_H_ */