blob: b418590683638ee26a60fcdfca4255612adbe2fe [file] [log] [blame]
Lev Walkin006de1c2004-08-20 13:37:45 +00001
Lev Walkina00d6b32006-03-21 03:40:38 +00002/*** <<< INCLUDES [SIGNED] >>> ***/
Lev Walkin006de1c2004-08-20 13:37:45 +00003
4#include <OBJECT_IDENTIFIER.h>
5#include <BIT_STRING.h>
6#include <INTEGER.h>
Lev Walkin22b5ed42006-09-13 02:51:20 +00007#include "Name.h"
Lev Walkin006de1c2004-08-20 13:37:45 +00008#include <constr_SEQUENCE.h>
9
Lev Walkina00d6b32006-03-21 03:40:38 +000010/*** <<< TYPE-DECLS [SIGNED] >>> ***/
Lev Walkin006de1c2004-08-20 13:37:45 +000011
Lev Walkina00d6b32006-03-21 03:40:38 +000012typedef struct SIGNED_15P0 {
Lev Walkin006de1c2004-08-20 13:37:45 +000013 struct toBeSigned {
14 INTEGER_t version;
15 OBJECT_IDENTIFIER_t signature;
16 Name_t issuer;
17
18 /* Context for parsing across buffer boundaries */
Lev Walkindfae9752004-09-29 13:19:37 +000019 asn_struct_ctx_t _asn_ctx;
Lev Walkin006de1c2004-08-20 13:37:45 +000020 } toBeSigned;
21 OBJECT_IDENTIFIER_t algorithm;
22 BIT_STRING_t signature;
23
24 /* Context for parsing across buffer boundaries */
Lev Walkindfae9752004-09-29 13:19:37 +000025 asn_struct_ctx_t _asn_ctx;
Lev Walkina00d6b32006-03-21 03:40:38 +000026} SIGNED_15P0_t;
Lev Walkin006de1c2004-08-20 13:37:45 +000027
Lev Walkina00d6b32006-03-21 03:40:38 +000028/*** <<< FUNC-DECLS [SIGNED] >>> ***/
Lev Walkinc8285712005-03-04 22:18:20 +000029
Lev Walkina00d6b32006-03-21 03:40:38 +000030extern asn_TYPE_descriptor_t asn_DEF_SIGNED_15P0;
Lev Walkinc8285712005-03-04 22:18:20 +000031
Lev Walkina00d6b32006-03-21 03:40:38 +000032/*** <<< CODE [SIGNED] >>> ***/
Lev Walkindaa7d2b2004-09-05 10:37:18 +000033
34static int
Lev Walkin59b176e2005-11-26 11:25:14 +000035memb_signature_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +000036 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkin8a7af0e2005-02-15 03:40:07 +000037 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
Lev Walkindaa7d2b2004-09-05 10:37:18 +000038 size_t size;
39
40 if(!sptr) {
Lev Walkin739d9bf2006-07-13 13:28:32 +000041 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkindaa7d2b2004-09-05 10:37:18 +000042 "%s: value not given (%s:%d)",
43 td->name, __FILE__, __LINE__);
44 return -1;
45 }
46
47 if(st->size > 0) {
48 /* Size in bits */
Lev Walkin1b1c5fc2006-09-08 19:38:11 +000049 size = 8 * st->size - (st->bits_unused & 0x07);
Lev Walkindaa7d2b2004-09-05 10:37:18 +000050 } else {
51 size = 0;
52 }
53
54 if((size <= 256)) {
55 /* Constraint check succeeded */
56 return 0;
57 } else {
Lev Walkin739d9bf2006-07-13 13:28:32 +000058 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkindaa7d2b2004-09-05 10:37:18 +000059 "%s: constraint failed (%s:%d)",
60 td->name, __FILE__, __LINE__);
61 return -1;
62 }
63}
64
65
Lev Walkina00d6b32006-03-21 03:40:38 +000066/*** <<< STAT-DEFS [SIGNED] >>> ***/
Lev Walkin006de1c2004-08-20 13:37:45 +000067
Lev Walkine0272aa2005-03-04 11:26:08 +000068static asn_TYPE_member_t asn_MBR_toBeSigned_2[] = {
Lev Walkincc93b0f2004-09-10 09:18:20 +000069 { ATF_NOFLAGS, 0, offsetof(struct toBeSigned, version),
Lev Walkin006de1c2004-08-20 13:37:45 +000070 .tag = (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
71 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +000072 .type = &asn_DEF_INTEGER,
Lev Walkinba58e1b2005-01-17 12:20:19 +000073 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +000074 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
75 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +000076 .name = "version"
77 },
Lev Walkincc93b0f2004-09-10 09:18:20 +000078 { ATF_NOFLAGS, 0, offsetof(struct toBeSigned, signature),
Lev Walkin006de1c2004-08-20 13:37:45 +000079 .tag = (ASN_TAG_CLASS_UNIVERSAL | (6 << 2)),
80 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +000081 .type = &asn_DEF_OBJECT_IDENTIFIER,
Lev Walkinba58e1b2005-01-17 12:20:19 +000082 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +000083 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
84 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +000085 .name = "signature"
86 },
Lev Walkincc93b0f2004-09-10 09:18:20 +000087 { ATF_NOFLAGS, 0, offsetof(struct toBeSigned, issuer),
Lev Walkin006de1c2004-08-20 13:37:45 +000088 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
89 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +000090 .type = &asn_DEF_Name,
Lev Walkinba58e1b2005-01-17 12:20:19 +000091 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +000092 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
93 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +000094 .name = "issuer"
95 },
96};
Lev Walkina7591b52014-10-12 18:37:35 -070097static const ber_tlv_tag_t asn_DEF_toBeSigned_tags_2[] = {
Lev Walkin006de1c2004-08-20 13:37:45 +000098 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
99};
Lev Walkina7591b52014-10-12 18:37:35 -0700100static const asn_TYPE_tag2member_t asn_MAP_toBeSigned_tag2el_2[] = {
Lev Walkin4062b012013-10-11 14:29:38 -0700101 { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* version */
102 { (ASN_TAG_CLASS_UNIVERSAL | (6 << 2)), 1, 0, 0 }, /* signature */
103 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, 0, 0 } /* issuer */
Lev Walkin006de1c2004-08-20 13:37:45 +0000104};
Lev Walkin59b176e2005-11-26 11:25:14 +0000105static asn_SEQUENCE_specifics_t asn_SPC_toBeSigned_specs_2 = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000106 sizeof(struct toBeSigned),
Lev Walkindfae9752004-09-29 13:19:37 +0000107 offsetof(struct toBeSigned, _asn_ctx),
Lev Walkin59b176e2005-11-26 11:25:14 +0000108 asn_MAP_toBeSigned_tag2el_2,
Lev Walkin006de1c2004-08-20 13:37:45 +0000109 3, /* Count of tags in the map */
Lev Walkin59b176e2005-11-26 11:25:14 +0000110 0, 0, 0, /* Optional elements (not needed) */
Lev Walkin006de1c2004-08-20 13:37:45 +0000111 -1, /* Start extensions */
112 -1 /* Stop extensions */
113};
Lev Walkind04430c2004-09-07 06:44:29 +0000114static /* Use -fall-defs-global to expose */
Lev Walkine0272aa2005-03-04 11:26:08 +0000115asn_TYPE_descriptor_t asn_DEF_toBeSigned_2 = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000116 "toBeSigned",
Lev Walkindc06f6b2004-10-20 15:50:55 +0000117 "toBeSigned",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000118 SEQUENCE_free,
119 SEQUENCE_print,
Lev Walkin006de1c2004-08-20 13:37:45 +0000120 SEQUENCE_constraint,
121 SEQUENCE_decode_ber,
122 SEQUENCE_encode_der,
Lev Walkin61b40d82004-10-23 15:07:45 +0000123 SEQUENCE_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000124 SEQUENCE_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000125 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin006de1c2004-08-20 13:37:45 +0000126 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000127 asn_DEF_toBeSigned_tags_2,
128 sizeof(asn_DEF_toBeSigned_tags_2)
129 /sizeof(asn_DEF_toBeSigned_tags_2[0]), /* 1 */
130 asn_DEF_toBeSigned_tags_2, /* Same as above */
131 sizeof(asn_DEF_toBeSigned_tags_2)
132 /sizeof(asn_DEF_toBeSigned_tags_2[0]), /* 1 */
133 0, /* No PER visible constraints */
Lev Walkine0272aa2005-03-04 11:26:08 +0000134 asn_MBR_toBeSigned_2,
Lev Walkin006de1c2004-08-20 13:37:45 +0000135 3, /* Elements count */
Lev Walkin59b176e2005-11-26 11:25:14 +0000136 &asn_SPC_toBeSigned_specs_2 /* Additional specs */
Lev Walkin006de1c2004-08-20 13:37:45 +0000137};
138
Lev Walkina00d6b32006-03-21 03:40:38 +0000139static asn_TYPE_member_t asn_MBR_SIGNED_15P0_1[] = {
140 { ATF_NOFLAGS, 0, offsetof(struct SIGNED_15P0, toBeSigned),
Lev Walkin006de1c2004-08-20 13:37:45 +0000141 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
142 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000143 .type = &asn_DEF_toBeSigned_2,
Lev Walkinba58e1b2005-01-17 12:20:19 +0000144 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +0000145 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
146 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000147 .name = "toBeSigned"
148 },
Lev Walkina00d6b32006-03-21 03:40:38 +0000149 { ATF_NOFLAGS, 0, offsetof(struct SIGNED_15P0, algorithm),
Lev Walkin006de1c2004-08-20 13:37:45 +0000150 .tag = (ASN_TAG_CLASS_UNIVERSAL | (6 << 2)),
151 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000152 .type = &asn_DEF_OBJECT_IDENTIFIER,
Lev Walkinba58e1b2005-01-17 12:20:19 +0000153 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +0000154 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
155 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000156 .name = "algorithm"
157 },
Lev Walkina00d6b32006-03-21 03:40:38 +0000158 { ATF_NOFLAGS, 0, offsetof(struct SIGNED_15P0, signature),
Lev Walkin006de1c2004-08-20 13:37:45 +0000159 .tag = (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)),
160 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000161 .type = &asn_DEF_BIT_STRING,
Lev Walkin59b176e2005-11-26 11:25:14 +0000162 .memb_constraints = memb_signature_constraint_1,
163 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
164 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000165 .name = "signature"
166 },
167};
Lev Walkina7591b52014-10-12 18:37:35 -0700168static const ber_tlv_tag_t asn_DEF_SIGNED_15P0_tags_1[] = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000169 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
170};
Lev Walkina7591b52014-10-12 18:37:35 -0700171static const asn_TYPE_tag2member_t asn_MAP_SIGNED_15P0_tag2el_1[] = {
Lev Walkin4062b012013-10-11 14:29:38 -0700172 { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 2, 0, 0 }, /* signature */
173 { (ASN_TAG_CLASS_UNIVERSAL | (6 << 2)), 1, 0, 0 }, /* algorithm */
174 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* toBeSigned */
Lev Walkin006de1c2004-08-20 13:37:45 +0000175};
Lev Walkina00d6b32006-03-21 03:40:38 +0000176static asn_SEQUENCE_specifics_t asn_SPC_SIGNED_15P0_specs_1 = {
177 sizeof(struct SIGNED_15P0),
178 offsetof(struct SIGNED_15P0, _asn_ctx),
179 asn_MAP_SIGNED_15P0_tag2el_1,
Lev Walkin006de1c2004-08-20 13:37:45 +0000180 3, /* Count of tags in the map */
Lev Walkin59b176e2005-11-26 11:25:14 +0000181 0, 0, 0, /* Optional elements (not needed) */
Lev Walkin006de1c2004-08-20 13:37:45 +0000182 -1, /* Start extensions */
183 -1 /* Stop extensions */
184};
Lev Walkina00d6b32006-03-21 03:40:38 +0000185asn_TYPE_descriptor_t asn_DEF_SIGNED_15P0 = {
186 "SIGNED",
187 "SIGNED",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000188 SEQUENCE_free,
189 SEQUENCE_print,
Lev Walkin006de1c2004-08-20 13:37:45 +0000190 SEQUENCE_constraint,
191 SEQUENCE_decode_ber,
192 SEQUENCE_encode_der,
Lev Walkin61b40d82004-10-23 15:07:45 +0000193 SEQUENCE_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000194 SEQUENCE_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000195 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin006de1c2004-08-20 13:37:45 +0000196 0, /* Use generic outmost tag fetcher */
Lev Walkina00d6b32006-03-21 03:40:38 +0000197 asn_DEF_SIGNED_15P0_tags_1,
198 sizeof(asn_DEF_SIGNED_15P0_tags_1)
199 /sizeof(asn_DEF_SIGNED_15P0_tags_1[0]), /* 1 */
200 asn_DEF_SIGNED_15P0_tags_1, /* Same as above */
201 sizeof(asn_DEF_SIGNED_15P0_tags_1)
202 /sizeof(asn_DEF_SIGNED_15P0_tags_1[0]), /* 1 */
203 0, /* No PER visible constraints */
204 asn_MBR_SIGNED_15P0_1,
205 3, /* Elements count */
206 &asn_SPC_SIGNED_15P0_specs_1 /* Additional specs */
207};
208
209
210/*** <<< INCLUDES [Certificate] >>> ***/
211
Lev Walkin22b5ed42006-09-13 02:51:20 +0000212#include "SIGNED.h"
Lev Walkina00d6b32006-03-21 03:40:38 +0000213
214/*** <<< TYPE-DECLS [Certificate] >>> ***/
215
216typedef SIGNED_15P0_t Certificate_t;
217
218/*** <<< FUNC-DECLS [Certificate] >>> ***/
219
220extern asn_TYPE_descriptor_t asn_DEF_Certificate;
221asn_struct_free_f Certificate_free;
222asn_struct_print_f Certificate_print;
223asn_constr_check_f Certificate_constraint;
224ber_type_decoder_f Certificate_decode_ber;
225der_type_encoder_f Certificate_encode_der;
226xer_type_decoder_f Certificate_decode_xer;
227xer_type_encoder_f Certificate_encode_xer;
228
229/*** <<< CODE [Certificate] >>> ***/
230
231int
232Certificate_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +0000233 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkina00d6b32006-03-21 03:40:38 +0000234 /* Replace with underlying type checker */
235 td->check_constraints = asn_DEF_SIGNED_15P0.check_constraints;
Lev Walkin1eded352006-07-13 11:19:01 +0000236 return td->check_constraints(td, sptr, ctfailcb, app_key);
Lev Walkina00d6b32006-03-21 03:40:38 +0000237}
238
239/*
240 * This type is implemented using SIGNED_15P0,
241 * so here we adjust the DEF accordingly.
242 */
243static void
244Certificate_1_inherit_TYPE_descriptor(asn_TYPE_descriptor_t *td) {
245 td->free_struct = asn_DEF_SIGNED_15P0.free_struct;
246 td->print_struct = asn_DEF_SIGNED_15P0.print_struct;
Lev Walkin6169b8d2013-12-07 11:02:44 -0800247 td->check_constraints = asn_DEF_SIGNED_15P0.check_constraints;
Lev Walkina00d6b32006-03-21 03:40:38 +0000248 td->ber_decoder = asn_DEF_SIGNED_15P0.ber_decoder;
249 td->der_encoder = asn_DEF_SIGNED_15P0.der_encoder;
250 td->xer_decoder = asn_DEF_SIGNED_15P0.xer_decoder;
251 td->xer_encoder = asn_DEF_SIGNED_15P0.xer_encoder;
252 td->uper_decoder = asn_DEF_SIGNED_15P0.uper_decoder;
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000253 td->uper_encoder = asn_DEF_SIGNED_15P0.uper_encoder;
Lev Walkina00d6b32006-03-21 03:40:38 +0000254 if(!td->per_constraints)
255 td->per_constraints = asn_DEF_SIGNED_15P0.per_constraints;
256 td->elements = asn_DEF_SIGNED_15P0.elements;
257 td->elements_count = asn_DEF_SIGNED_15P0.elements_count;
258 td->specifics = asn_DEF_SIGNED_15P0.specifics;
259}
260
261void
262Certificate_free(asn_TYPE_descriptor_t *td,
263 void *struct_ptr, int contents_only) {
264 Certificate_1_inherit_TYPE_descriptor(td);
265 td->free_struct(td, struct_ptr, contents_only);
266}
267
268int
269Certificate_print(asn_TYPE_descriptor_t *td, const void *struct_ptr,
270 int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
271 Certificate_1_inherit_TYPE_descriptor(td);
272 return td->print_struct(td, struct_ptr, ilevel, cb, app_key);
273}
274
275asn_dec_rval_t
276Certificate_decode_ber(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
277 void **structure, const void *bufptr, size_t size, int tag_mode) {
278 Certificate_1_inherit_TYPE_descriptor(td);
279 return td->ber_decoder(opt_codec_ctx, td, structure, bufptr, size, tag_mode);
280}
281
282asn_enc_rval_t
283Certificate_encode_der(asn_TYPE_descriptor_t *td,
284 void *structure, int tag_mode, ber_tlv_tag_t tag,
285 asn_app_consume_bytes_f *cb, void *app_key) {
286 Certificate_1_inherit_TYPE_descriptor(td);
287 return td->der_encoder(td, structure, tag_mode, tag, cb, app_key);
288}
289
290asn_dec_rval_t
291Certificate_decode_xer(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
292 void **structure, const char *opt_mname, const void *bufptr, size_t size) {
293 Certificate_1_inherit_TYPE_descriptor(td);
294 return td->xer_decoder(opt_codec_ctx, td, structure, opt_mname, bufptr, size);
295}
296
297asn_enc_rval_t
298Certificate_encode_xer(asn_TYPE_descriptor_t *td, void *structure,
299 int ilevel, enum xer_encoder_flags_e flags,
300 asn_app_consume_bytes_f *cb, void *app_key) {
301 Certificate_1_inherit_TYPE_descriptor(td);
302 return td->xer_encoder(td, structure, ilevel, flags, cb, app_key);
303}
304
305
306/*** <<< STAT-DEFS [Certificate] >>> ***/
307
Lev Walkina7591b52014-10-12 18:37:35 -0700308static const ber_tlv_tag_t asn_DEF_Certificate_tags_1[] = {
Lev Walkina00d6b32006-03-21 03:40:38 +0000309 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
310};
311asn_TYPE_descriptor_t asn_DEF_Certificate = {
312 "Certificate",
313 "Certificate",
314 Certificate_free,
315 Certificate_print,
316 Certificate_constraint,
317 Certificate_decode_ber,
318 Certificate_encode_der,
319 Certificate_decode_xer,
320 Certificate_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000321 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkina00d6b32006-03-21 03:40:38 +0000322 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000323 asn_DEF_Certificate_tags_1,
324 sizeof(asn_DEF_Certificate_tags_1)
325 /sizeof(asn_DEF_Certificate_tags_1[0]), /* 1 */
326 asn_DEF_Certificate_tags_1, /* Same as above */
327 sizeof(asn_DEF_Certificate_tags_1)
328 /sizeof(asn_DEF_Certificate_tags_1[0]), /* 1 */
329 0, /* No PER visible constraints */
Lev Walkina00d6b32006-03-21 03:40:38 +0000330 0, 0, /* Defined elsewhere */
331 0 /* No specifics */
Lev Walkin006de1c2004-08-20 13:37:45 +0000332};
333
334
335/*** <<< INCLUDES [Name] >>> ***/
336
Lev Walkin006de1c2004-08-20 13:37:45 +0000337#include <asn_SEQUENCE_OF.h>
338#include <constr_SEQUENCE_OF.h>
339
Lev Walkinc8285712005-03-04 22:18:20 +0000340/*** <<< FWD-DECLS [Name] >>> ***/
Lev Walkin006de1c2004-08-20 13:37:45 +0000341
Lev Walkinbf56d542005-03-04 23:50:56 +0000342struct RelativeDistinguishedName;
Lev Walkin006de1c2004-08-20 13:37:45 +0000343
344/*** <<< TYPE-DECLS [Name] >>> ***/
345
Lev Walkin006de1c2004-08-20 13:37:45 +0000346typedef struct Name {
Lev Walkinc8285712005-03-04 22:18:20 +0000347 A_SEQUENCE_OF(struct RelativeDistinguishedName) list;
Lev Walkin006de1c2004-08-20 13:37:45 +0000348
349 /* Context for parsing across buffer boundaries */
Lev Walkindfae9752004-09-29 13:19:37 +0000350 asn_struct_ctx_t _asn_ctx;
Lev Walkin006de1c2004-08-20 13:37:45 +0000351} Name_t;
352
Lev Walkinc8285712005-03-04 22:18:20 +0000353/*** <<< FUNC-DECLS [Name] >>> ***/
354
355extern asn_TYPE_descriptor_t asn_DEF_Name;
356
357/*** <<< POST-INCLUDE [Name] >>> ***/
358
Lev Walkin22b5ed42006-09-13 02:51:20 +0000359#include "RelativeDistinguishedName.h"
Lev Walkinc8285712005-03-04 22:18:20 +0000360
Lev Walkin006de1c2004-08-20 13:37:45 +0000361/*** <<< STAT-DEFS [Name] >>> ***/
362
Lev Walkine0272aa2005-03-04 11:26:08 +0000363static asn_TYPE_member_t asn_MBR_Name_1[] = {
Lev Walkin8eb4b572005-08-16 16:57:17 +0000364 { ATF_POINTER, 0, 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000365 .tag = (ASN_TAG_CLASS_UNIVERSAL | (17 << 2)),
366 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000367 .type = &asn_DEF_RelativeDistinguishedName,
Lev Walkinba58e1b2005-01-17 12:20:19 +0000368 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +0000369 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
370 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000371 .name = ""
372 },
373};
Lev Walkina7591b52014-10-12 18:37:35 -0700374static const ber_tlv_tag_t asn_DEF_Name_tags_1[] = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000375 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
376};
Lev Walkin59b176e2005-11-26 11:25:14 +0000377static asn_SET_OF_specifics_t asn_SPC_Name_specs_1 = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000378 sizeof(struct Name),
Lev Walkindfae9752004-09-29 13:19:37 +0000379 offsetof(struct Name, _asn_ctx),
Lev Walkina9cc46e2004-09-22 16:06:28 +0000380 0, /* XER encoding is XMLDelimitedItemList */
Lev Walkin006de1c2004-08-20 13:37:45 +0000381};
Lev Walkindfae9752004-09-29 13:19:37 +0000382asn_TYPE_descriptor_t asn_DEF_Name = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000383 "Name",
Lev Walkindc06f6b2004-10-20 15:50:55 +0000384 "Name",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000385 SEQUENCE_OF_free,
386 SEQUENCE_OF_print,
Lev Walkin006de1c2004-08-20 13:37:45 +0000387 SEQUENCE_OF_constraint,
388 SEQUENCE_OF_decode_ber,
389 SEQUENCE_OF_encode_der,
Lev Walkinb2230802005-02-14 20:31:31 +0000390 SEQUENCE_OF_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000391 SEQUENCE_OF_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000392 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin006de1c2004-08-20 13:37:45 +0000393 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000394 asn_DEF_Name_tags_1,
395 sizeof(asn_DEF_Name_tags_1)
396 /sizeof(asn_DEF_Name_tags_1[0]), /* 1 */
397 asn_DEF_Name_tags_1, /* Same as above */
398 sizeof(asn_DEF_Name_tags_1)
399 /sizeof(asn_DEF_Name_tags_1[0]), /* 1 */
400 0, /* No PER visible constraints */
Lev Walkine0272aa2005-03-04 11:26:08 +0000401 asn_MBR_Name_1,
Lev Walkin006de1c2004-08-20 13:37:45 +0000402 1, /* Single element */
Lev Walkin59b176e2005-11-26 11:25:14 +0000403 &asn_SPC_Name_specs_1 /* Additional specs */
Lev Walkin006de1c2004-08-20 13:37:45 +0000404};
405
406
407/*** <<< INCLUDES [RelativeDistinguishedName] >>> ***/
408
409#include <IA5String.h>
410#include <asn_SET_OF.h>
411#include <constr_SET_OF.h>
412
Lev Walkin006de1c2004-08-20 13:37:45 +0000413/*** <<< TYPE-DECLS [RelativeDistinguishedName] >>> ***/
414
Lev Walkin006de1c2004-08-20 13:37:45 +0000415typedef struct RelativeDistinguishedName {
416 A_SET_OF(IA5String_t) list;
417
418 /* Context for parsing across buffer boundaries */
Lev Walkindfae9752004-09-29 13:19:37 +0000419 asn_struct_ctx_t _asn_ctx;
Lev Walkin006de1c2004-08-20 13:37:45 +0000420} RelativeDistinguishedName_t;
421
Lev Walkinc8285712005-03-04 22:18:20 +0000422/*** <<< FUNC-DECLS [RelativeDistinguishedName] >>> ***/
423
424extern asn_TYPE_descriptor_t asn_DEF_RelativeDistinguishedName;
425
Lev Walkin006de1c2004-08-20 13:37:45 +0000426/*** <<< CTABLES [RelativeDistinguishedName] >>> ***/
427
Lev Walkina7591b52014-10-12 18:37:35 -0700428static const int permitted_alphabet_table_2[256] = {
Lev Walkin5b62ca82006-09-21 01:52:07 +0000429 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
430 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
431 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, /* ,-. */
432 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, /* 0 9 */
433 0, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20, /* ABCDEFGHIJKLMNO */
43421,22,23,24,25,26,27,28,29,30,31, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ */
435 0,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46, /* abcdefghijklmno */
43647,48,49,50,51,52,53,54,55,56,57, 0, 0, 0, 0, 0, /* pqrstuvwxyz */
Lev Walkin006de1c2004-08-20 13:37:45 +0000437};
438
Lev Walkine8318b82005-03-06 09:29:03 +0000439static int check_permitted_alphabet_2(const void *sptr) {
Lev Walkina7591b52014-10-12 18:37:35 -0700440 const int *table = permitted_alphabet_table_2;
Lev Walkin006de1c2004-08-20 13:37:45 +0000441 /* The underlying type is IA5String */
Lev Walkin8a7af0e2005-02-15 03:40:07 +0000442 const IA5String_t *st = (const IA5String_t *)sptr;
Lev Walkina09e5da2004-08-22 03:19:00 +0000443 const uint8_t *ch = st->buf;
444 const uint8_t *end = ch + st->size;
Lev Walkin006de1c2004-08-20 13:37:45 +0000445
446 for(; ch < end; ch++) {
447 uint8_t cv = *ch;
Lev Walkin775885e2004-08-22 12:47:03 +0000448 if(!table[cv]) return -1;
Lev Walkin006de1c2004-08-20 13:37:45 +0000449 }
Lev Walkin775885e2004-08-22 12:47:03 +0000450 return 0;
Lev Walkin006de1c2004-08-20 13:37:45 +0000451}
452
453
454/*** <<< CODE [RelativeDistinguishedName] >>> ***/
455
456static int
Lev Walkin59b176e2005-11-26 11:25:14 +0000457memb_IA5String_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +0000458 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkin8a7af0e2005-02-15 03:40:07 +0000459 const IA5String_t *st = (const IA5String_t *)sptr;
Lev Walkin006de1c2004-08-20 13:37:45 +0000460
461 if(!sptr) {
Lev Walkin739d9bf2006-07-13 13:28:32 +0000462 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +0000463 "%s: value not given (%s:%d)",
464 td->name, __FILE__, __LINE__);
Lev Walkin006de1c2004-08-20 13:37:45 +0000465 return -1;
466 }
467
468
Lev Walkine8318b82005-03-06 09:29:03 +0000469 if(!check_permitted_alphabet_2(st)) {
Lev Walkin006de1c2004-08-20 13:37:45 +0000470 /* Constraint check succeeded */
Lev Walkin775885e2004-08-22 12:47:03 +0000471 return 0;
Lev Walkin006de1c2004-08-20 13:37:45 +0000472 } else {
Lev Walkin739d9bf2006-07-13 13:28:32 +0000473 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +0000474 "%s: constraint failed (%s:%d)",
475 td->name, __FILE__, __LINE__);
Lev Walkin006de1c2004-08-20 13:37:45 +0000476 return -1;
477 }
478}
479
480
481/*** <<< STAT-DEFS [RelativeDistinguishedName] >>> ***/
482
Lev Walkine0272aa2005-03-04 11:26:08 +0000483static asn_TYPE_member_t asn_MBR_RelativeDistinguishedName_1[] = {
Lev Walkin8eb4b572005-08-16 16:57:17 +0000484 { ATF_POINTER, 0, 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000485 .tag = (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)),
486 .tag_mode = 0,
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000487 .type = &asn_DEF_IA5String,
Lev Walkin59b176e2005-11-26 11:25:14 +0000488 .memb_constraints = memb_IA5String_constraint_1,
489 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
490 .default_value = 0,
Lev Walkin006de1c2004-08-20 13:37:45 +0000491 .name = ""
492 },
493};
Lev Walkina7591b52014-10-12 18:37:35 -0700494static const ber_tlv_tag_t asn_DEF_RelativeDistinguishedName_tags_1[] = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000495 (ASN_TAG_CLASS_UNIVERSAL | (17 << 2))
496};
Lev Walkin59b176e2005-11-26 11:25:14 +0000497static asn_SET_OF_specifics_t asn_SPC_RelativeDistinguishedName_specs_1 = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000498 sizeof(struct RelativeDistinguishedName),
Lev Walkindfae9752004-09-29 13:19:37 +0000499 offsetof(struct RelativeDistinguishedName, _asn_ctx),
Lev Walkina9cc46e2004-09-22 16:06:28 +0000500 0, /* XER encoding is XMLDelimitedItemList */
Lev Walkin006de1c2004-08-20 13:37:45 +0000501};
Lev Walkindfae9752004-09-29 13:19:37 +0000502asn_TYPE_descriptor_t asn_DEF_RelativeDistinguishedName = {
Lev Walkin006de1c2004-08-20 13:37:45 +0000503 "RelativeDistinguishedName",
Lev Walkindc06f6b2004-10-20 15:50:55 +0000504 "RelativeDistinguishedName",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000505 SET_OF_free,
506 SET_OF_print,
Lev Walkin006de1c2004-08-20 13:37:45 +0000507 SET_OF_constraint,
508 SET_OF_decode_ber,
509 SET_OF_encode_der,
Lev Walkinb2230802005-02-14 20:31:31 +0000510 SET_OF_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000511 SET_OF_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000512 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin006de1c2004-08-20 13:37:45 +0000513 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000514 asn_DEF_RelativeDistinguishedName_tags_1,
515 sizeof(asn_DEF_RelativeDistinguishedName_tags_1)
516 /sizeof(asn_DEF_RelativeDistinguishedName_tags_1[0]), /* 1 */
517 asn_DEF_RelativeDistinguishedName_tags_1, /* Same as above */
518 sizeof(asn_DEF_RelativeDistinguishedName_tags_1)
519 /sizeof(asn_DEF_RelativeDistinguishedName_tags_1[0]), /* 1 */
520 0, /* No PER visible constraints */
Lev Walkine0272aa2005-03-04 11:26:08 +0000521 asn_MBR_RelativeDistinguishedName_1,
Lev Walkin006de1c2004-08-20 13:37:45 +0000522 1, /* Single element */
Lev Walkin59b176e2005-11-26 11:25:14 +0000523 &asn_SPC_RelativeDistinguishedName_specs_1 /* Additional specs */
Lev Walkin006de1c2004-08-20 13:37:45 +0000524};
525