blob: 370efeb5fba02ca9722e87716b065dc53dbc0633 [file] [log] [blame]
Lev Walkin69353a32017-07-25 08:10:46 -07001
2/*** <<< INCLUDES [T] >>> ***/
3
4#include <IA5String.h>
5#include <UTF8String.h>
6#include <UniversalString.h>
7#include <constr_SEQUENCE.h>
8
9/*** <<< TYPE-DECLS [T] >>> ***/
10
11typedef struct T {
12 struct unconstrained {
13 IA5String_t unc_ia5;
14 UTF8String_t unc_utf8;
15 UniversalString_t unc_universal;
16
17 /* Context for parsing across buffer boundaries */
18 asn_struct_ctx_t _asn_ctx;
19 } unconstrained;
20 struct constrained {
21 IA5String_t con_ia5;
22 UTF8String_t con_utf8;
23 UniversalString_t con_universal;
24
25 /* Context for parsing across buffer boundaries */
26 asn_struct_ctx_t _asn_ctx;
27 } constrained;
28
29 /* Context for parsing across buffer boundaries */
30 asn_struct_ctx_t _asn_ctx;
31} T_t;
32
33/*** <<< FUNC-DECLS [T] >>> ***/
34
35extern asn_TYPE_descriptor_t asn_DEF_T;
36
37/*** <<< CTABLES [T] >>> ***/
38
39static int check_permitted_alphabet_7(const void *sptr) {
40 /* The underlying type is IA5String */
41 const IA5String_t *st = (const IA5String_t *)sptr;
42 const uint8_t *ch = st->buf;
43 const uint8_t *end = ch + st->size;
44
45 for(; ch < end; ch++) {
46 uint8_t cv = *ch;
47 if(!(cv <= 127)) return -1;
48 }
49 return 0;
50}
51
52static int check_permitted_alphabet_9(const void *sptr) {
53 /* The underlying type is UniversalString */
54 const UniversalString_t *st = (const UniversalString_t *)sptr;
55 const uint8_t *ch = st->buf;
56 const uint8_t *end = ch + st->size;
57
58 if(st->size % 4) return -1; /* (size%4)! */
59 for(; ch < end; ch += 4) {
60 uint32_t cv = (ch[0] << 24)
61 | (ch[1] << 16)
62 | (ch[2] << 8)
63 | ch[3];
64 if(!(1 /* Constraint matches natural range of cv */)) return -1;
65 }
66 return 0;
67}
68
69
70/*** <<< CODE [T] >>> ***/
71
72static int
73memb_con_ia5_constraint_6(asn_TYPE_descriptor_t *td, const void *sptr,
74 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
75 const IA5String_t *st = (const IA5String_t *)sptr;
76 size_t size;
77
78 if(!sptr) {
79 ASN__CTFAIL(app_key, td, sptr,
80 "%s: value not given (%s:%d)",
81 td->name, __FILE__, __LINE__);
82 return -1;
83 }
84
85 size = st->size;
86
87 if((size == 2)
88 && !check_permitted_alphabet_7(st)) {
89 /* Constraint check succeeded */
90 return 0;
91 } else {
92 ASN__CTFAIL(app_key, td, sptr,
93 "%s: constraint failed (%s:%d)",
94 td->name, __FILE__, __LINE__);
95 return -1;
96 }
97}
98
99static int
100memb_con_utf8_constraint_6(asn_TYPE_descriptor_t *td, const void *sptr,
101 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
102 const UTF8String_t *st = (const UTF8String_t *)sptr;
103 size_t size;
104
105 if(!sptr) {
106 ASN__CTFAIL(app_key, td, sptr,
107 "%s: value not given (%s:%d)",
108 td->name, __FILE__, __LINE__);
109 return -1;
110 }
111
112 size = UTF8String_length(st);
113 if((ssize_t)size < 0) {
114 ASN__CTFAIL(app_key, td, sptr,
115 "%s: UTF-8: broken encoding (%s:%d)",
116 td->name, __FILE__, __LINE__);
117 return -1;
118 }
119
120 if((size == 2)) {
121 /* Constraint check succeeded */
122 return 0;
123 } else {
124 ASN__CTFAIL(app_key, td, sptr,
125 "%s: constraint failed (%s:%d)",
126 td->name, __FILE__, __LINE__);
127 return -1;
128 }
129}
130
131static int
132memb_con_universal_constraint_6(asn_TYPE_descriptor_t *td, const void *sptr,
133 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
134 const UniversalString_t *st = (const UniversalString_t *)sptr;
135 size_t size;
136
137 if(!sptr) {
138 ASN__CTFAIL(app_key, td, sptr,
139 "%s: value not given (%s:%d)",
140 td->name, __FILE__, __LINE__);
141 return -1;
142 }
143
144 size = st->size >> 2; /* 4 byte per character */
145
146 if((size == 2)
147 && !check_permitted_alphabet_9(st)) {
148 /* Constraint check succeeded */
149 return 0;
150 } else {
151 ASN__CTFAIL(app_key, td, sptr,
152 "%s: constraint failed (%s:%d)",
153 td->name, __FILE__, __LINE__);
154 return -1;
155 }
156}
157
158
159/*** <<< CTDEFS [T] >>> ***/
160
161static asn_oer_constraints_t asn_OER_memb_con_ia5_constr_7 GCC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700162 { 0, 0 },
163 2 /* (SIZE(2..2)) */};
Lev Walkin69353a32017-07-25 08:10:46 -0700164static asn_oer_constraints_t asn_OER_memb_con_utf8_constr_8 GCC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700165 { 0, 0 },
166 -1 /* (SIZE(0..MAX)) */};
Lev Walkin69353a32017-07-25 08:10:46 -0700167static asn_oer_constraints_t asn_OER_memb_con_universal_constr_9 GCC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700168 { 0, 0 },
169 2 /* (SIZE(2..2)) */};
Lev Walkin69353a32017-07-25 08:10:46 -0700170
171/*** <<< STAT-DEFS [T] >>> ***/
172
173static asn_TYPE_member_t asn_MBR_unconstrained_2[] = {
174 { ATF_NOFLAGS, 0, offsetof(struct unconstrained, unc_ia5),
175 .tag = (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)),
176 .tag_mode = 0,
177 .type = &asn_DEF_IA5String,
Lev Walkin67a30122017-08-10 05:48:54 -0700178 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700179 .memb_constraints = 0, /* Defer constraints checking to the member type */
180 .oer_constraints = 0, /* No OER visible constraints */
181 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
182 .default_value = 0,
183 .name = "unc-ia5"
184 },
185 { ATF_NOFLAGS, 0, offsetof(struct unconstrained, unc_utf8),
186 .tag = (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
187 .tag_mode = 0,
188 .type = &asn_DEF_UTF8String,
Lev Walkin67a30122017-08-10 05:48:54 -0700189 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700190 .memb_constraints = 0, /* Defer constraints checking to the member type */
191 .oer_constraints = 0, /* No OER visible constraints */
192 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
193 .default_value = 0,
194 .name = "unc-utf8"
195 },
196 { ATF_NOFLAGS, 0, offsetof(struct unconstrained, unc_universal),
197 .tag = (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)),
198 .tag_mode = 0,
199 .type = &asn_DEF_UniversalString,
Lev Walkin67a30122017-08-10 05:48:54 -0700200 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700201 .memb_constraints = 0, /* Defer constraints checking to the member type */
202 .oer_constraints = 0, /* No OER visible constraints */
203 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
204 .default_value = 0,
205 .name = "unc-universal"
206 },
207};
208static const ber_tlv_tag_t asn_DEF_unconstrained_tags_2[] = {
209 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
210};
211static const asn_TYPE_tag2member_t asn_MAP_unconstrained_tag2el_2[] = {
212 { (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* unc-utf8 */
213 { (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), 0, 0, 0 }, /* unc-ia5 */
214 { (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)), 2, 0, 0 } /* unc-universal */
215};
216static asn_SEQUENCE_specifics_t asn_SPC_unconstrained_specs_2 = {
217 sizeof(struct unconstrained),
218 offsetof(struct unconstrained, _asn_ctx),
Lev Walkine3917082017-08-23 10:29:38 -0700219 .tag2el = asn_MAP_unconstrained_tag2el_2,
220 .tag2el_count = 3, /* Count of tags in the map */
Lev Walkin69353a32017-07-25 08:10:46 -0700221 0, 0, 0, /* Optional elements (not needed) */
222 -1, /* Start extensions */
223 -1 /* Stop extensions */
224};
225static /* Use -fall-defs-global to expose */
226asn_TYPE_descriptor_t asn_DEF_unconstrained_2 = {
227 "unconstrained",
228 "unconstrained",
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800229 &asn_OP_SEQUENCE,
Lev Walkin69353a32017-07-25 08:10:46 -0700230 SEQUENCE_constraint,
Lev Walkin69353a32017-07-25 08:10:46 -0700231 asn_DEF_unconstrained_tags_2,
232 sizeof(asn_DEF_unconstrained_tags_2)
233 /sizeof(asn_DEF_unconstrained_tags_2[0]), /* 1 */
234 asn_DEF_unconstrained_tags_2, /* Same as above */
235 sizeof(asn_DEF_unconstrained_tags_2)
236 /sizeof(asn_DEF_unconstrained_tags_2[0]), /* 1 */
237 0, /* No OER visible constraints */
238 0, /* No PER visible constraints */
239 asn_MBR_unconstrained_2,
240 3, /* Elements count */
241 &asn_SPC_unconstrained_specs_2 /* Additional specs */
242};
243
244static asn_TYPE_member_t asn_MBR_constrained_6[] = {
245 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_ia5),
246 .tag = (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)),
247 .tag_mode = 0,
248 .type = &asn_DEF_IA5String,
Lev Walkin67a30122017-08-10 05:48:54 -0700249 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700250 .memb_constraints = memb_con_ia5_constraint_6,
251 .oer_constraints = &asn_OER_memb_con_ia5_constr_7,
252 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
253 .default_value = 0,
254 .name = "con-ia5"
255 },
256 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_utf8),
257 .tag = (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
258 .tag_mode = 0,
259 .type = &asn_DEF_UTF8String,
Lev Walkin67a30122017-08-10 05:48:54 -0700260 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700261 .memb_constraints = memb_con_utf8_constraint_6,
262 .oer_constraints = &asn_OER_memb_con_utf8_constr_8,
263 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
264 .default_value = 0,
265 .name = "con-utf8"
266 },
267 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_universal),
268 .tag = (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)),
269 .tag_mode = 0,
270 .type = &asn_DEF_UniversalString,
Lev Walkin67a30122017-08-10 05:48:54 -0700271 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700272 .memb_constraints = memb_con_universal_constraint_6,
273 .oer_constraints = &asn_OER_memb_con_universal_constr_9,
274 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
275 .default_value = 0,
276 .name = "con-universal"
277 },
278};
279static const ber_tlv_tag_t asn_DEF_constrained_tags_6[] = {
280 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
281};
282static const asn_TYPE_tag2member_t asn_MAP_constrained_tag2el_6[] = {
283 { (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* con-utf8 */
284 { (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), 0, 0, 0 }, /* con-ia5 */
285 { (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)), 2, 0, 0 } /* con-universal */
286};
287static asn_SEQUENCE_specifics_t asn_SPC_constrained_specs_6 = {
288 sizeof(struct constrained),
289 offsetof(struct constrained, _asn_ctx),
Lev Walkine3917082017-08-23 10:29:38 -0700290 .tag2el = asn_MAP_constrained_tag2el_6,
291 .tag2el_count = 3, /* Count of tags in the map */
Lev Walkin69353a32017-07-25 08:10:46 -0700292 0, 0, 0, /* Optional elements (not needed) */
293 -1, /* Start extensions */
294 -1 /* Stop extensions */
295};
296static /* Use -fall-defs-global to expose */
297asn_TYPE_descriptor_t asn_DEF_constrained_6 = {
298 "constrained",
299 "constrained",
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800300 &asn_OP_SEQUENCE,
Lev Walkin69353a32017-07-25 08:10:46 -0700301 SEQUENCE_constraint,
Lev Walkin69353a32017-07-25 08:10:46 -0700302 asn_DEF_constrained_tags_6,
303 sizeof(asn_DEF_constrained_tags_6)
304 /sizeof(asn_DEF_constrained_tags_6[0]), /* 1 */
305 asn_DEF_constrained_tags_6, /* Same as above */
306 sizeof(asn_DEF_constrained_tags_6)
307 /sizeof(asn_DEF_constrained_tags_6[0]), /* 1 */
308 0, /* No OER visible constraints */
309 0, /* No PER visible constraints */
310 asn_MBR_constrained_6,
311 3, /* Elements count */
312 &asn_SPC_constrained_specs_6 /* Additional specs */
313};
314
315static asn_TYPE_member_t asn_MBR_T_1[] = {
316 { ATF_NOFLAGS, 0, offsetof(struct T, unconstrained),
317 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
318 .tag_mode = 0,
319 .type = &asn_DEF_unconstrained_2,
Lev Walkin67a30122017-08-10 05:48:54 -0700320 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700321 .memb_constraints = 0, /* Defer constraints checking to the member type */
322 .oer_constraints = 0, /* No OER visible constraints */
323 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
324 .default_value = 0,
325 .name = "unconstrained"
326 },
327 { ATF_NOFLAGS, 0, offsetof(struct T, constrained),
328 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
329 .tag_mode = 0,
330 .type = &asn_DEF_constrained_6,
Lev Walkin67a30122017-08-10 05:48:54 -0700331 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700332 .memb_constraints = 0, /* Defer constraints checking to the member type */
333 .oer_constraints = 0, /* No OER visible constraints */
334 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
335 .default_value = 0,
336 .name = "constrained"
337 },
338};
339static const ber_tlv_tag_t asn_DEF_T_tags_1[] = {
340 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
341};
342static const asn_TYPE_tag2member_t asn_MAP_T_tag2el_1[] = {
343 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 1 }, /* unconstrained */
344 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 0 } /* constrained */
345};
346static asn_SEQUENCE_specifics_t asn_SPC_T_specs_1 = {
347 sizeof(struct T),
348 offsetof(struct T, _asn_ctx),
Lev Walkine3917082017-08-23 10:29:38 -0700349 .tag2el = asn_MAP_T_tag2el_1,
350 .tag2el_count = 2, /* Count of tags in the map */
Lev Walkin69353a32017-07-25 08:10:46 -0700351 0, 0, 0, /* Optional elements (not needed) */
352 -1, /* Start extensions */
353 -1 /* Stop extensions */
354};
355asn_TYPE_descriptor_t asn_DEF_T = {
356 "T",
357 "T",
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800358 &asn_OP_SEQUENCE,
Lev Walkin69353a32017-07-25 08:10:46 -0700359 SEQUENCE_constraint,
Lev Walkin69353a32017-07-25 08:10:46 -0700360 asn_DEF_T_tags_1,
361 sizeof(asn_DEF_T_tags_1)
362 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
363 asn_DEF_T_tags_1, /* Same as above */
364 sizeof(asn_DEF_T_tags_1)
365 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
366 0, /* No OER visible constraints */
367 0, /* No PER visible constraints */
368 asn_MBR_T_1,
369 2, /* Elements count */
370 &asn_SPC_T_specs_1 /* Additional specs */
371};
372