blob: e65926ab7e90444949d1adcc825a4d63605f6072 [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),
219 asn_MAP_unconstrained_tag2el_2,
220 3, /* Count of tags in the map */
221 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",
229 SEQUENCE_free,
230 SEQUENCE_print,
Lev Walkincd2f48e2017-08-10 02:14:59 -0700231 SEQUENCE_compare,
Lev Walkin69353a32017-07-25 08:10:46 -0700232 SEQUENCE_constraint,
233 SEQUENCE_decode_ber,
234 SEQUENCE_encode_der,
235 SEQUENCE_decode_xer,
236 SEQUENCE_encode_xer,
237 SEQUENCE_decode_oer,
238 SEQUENCE_encode_oer,
239 0, 0, /* No PER support, use "-gen-PER" to enable */
240 0, /* Use generic outmost tag fetcher */
241 asn_DEF_unconstrained_tags_2,
242 sizeof(asn_DEF_unconstrained_tags_2)
243 /sizeof(asn_DEF_unconstrained_tags_2[0]), /* 1 */
244 asn_DEF_unconstrained_tags_2, /* Same as above */
245 sizeof(asn_DEF_unconstrained_tags_2)
246 /sizeof(asn_DEF_unconstrained_tags_2[0]), /* 1 */
247 0, /* No OER visible constraints */
248 0, /* No PER visible constraints */
249 asn_MBR_unconstrained_2,
250 3, /* Elements count */
251 &asn_SPC_unconstrained_specs_2 /* Additional specs */
252};
253
254static asn_TYPE_member_t asn_MBR_constrained_6[] = {
255 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_ia5),
256 .tag = (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)),
257 .tag_mode = 0,
258 .type = &asn_DEF_IA5String,
Lev Walkin67a30122017-08-10 05:48:54 -0700259 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700260 .memb_constraints = memb_con_ia5_constraint_6,
261 .oer_constraints = &asn_OER_memb_con_ia5_constr_7,
262 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
263 .default_value = 0,
264 .name = "con-ia5"
265 },
266 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_utf8),
267 .tag = (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
268 .tag_mode = 0,
269 .type = &asn_DEF_UTF8String,
Lev Walkin67a30122017-08-10 05:48:54 -0700270 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700271 .memb_constraints = memb_con_utf8_constraint_6,
272 .oer_constraints = &asn_OER_memb_con_utf8_constr_8,
273 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
274 .default_value = 0,
275 .name = "con-utf8"
276 },
277 { ATF_NOFLAGS, 0, offsetof(struct constrained, con_universal),
278 .tag = (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)),
279 .tag_mode = 0,
280 .type = &asn_DEF_UniversalString,
Lev Walkin67a30122017-08-10 05:48:54 -0700281 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700282 .memb_constraints = memb_con_universal_constraint_6,
283 .oer_constraints = &asn_OER_memb_con_universal_constr_9,
284 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
285 .default_value = 0,
286 .name = "con-universal"
287 },
288};
289static const ber_tlv_tag_t asn_DEF_constrained_tags_6[] = {
290 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
291};
292static const asn_TYPE_tag2member_t asn_MAP_constrained_tag2el_6[] = {
293 { (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* con-utf8 */
294 { (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), 0, 0, 0 }, /* con-ia5 */
295 { (ASN_TAG_CLASS_UNIVERSAL | (28 << 2)), 2, 0, 0 } /* con-universal */
296};
297static asn_SEQUENCE_specifics_t asn_SPC_constrained_specs_6 = {
298 sizeof(struct constrained),
299 offsetof(struct constrained, _asn_ctx),
300 asn_MAP_constrained_tag2el_6,
301 3, /* Count of tags in the map */
302 0, 0, 0, /* Optional elements (not needed) */
303 -1, /* Start extensions */
304 -1 /* Stop extensions */
305};
306static /* Use -fall-defs-global to expose */
307asn_TYPE_descriptor_t asn_DEF_constrained_6 = {
308 "constrained",
309 "constrained",
310 SEQUENCE_free,
311 SEQUENCE_print,
Lev Walkincd2f48e2017-08-10 02:14:59 -0700312 SEQUENCE_compare,
Lev Walkin69353a32017-07-25 08:10:46 -0700313 SEQUENCE_constraint,
314 SEQUENCE_decode_ber,
315 SEQUENCE_encode_der,
316 SEQUENCE_decode_xer,
317 SEQUENCE_encode_xer,
318 SEQUENCE_decode_oer,
319 SEQUENCE_encode_oer,
320 0, 0, /* No PER support, use "-gen-PER" to enable */
321 0, /* Use generic outmost tag fetcher */
322 asn_DEF_constrained_tags_6,
323 sizeof(asn_DEF_constrained_tags_6)
324 /sizeof(asn_DEF_constrained_tags_6[0]), /* 1 */
325 asn_DEF_constrained_tags_6, /* Same as above */
326 sizeof(asn_DEF_constrained_tags_6)
327 /sizeof(asn_DEF_constrained_tags_6[0]), /* 1 */
328 0, /* No OER visible constraints */
329 0, /* No PER visible constraints */
330 asn_MBR_constrained_6,
331 3, /* Elements count */
332 &asn_SPC_constrained_specs_6 /* Additional specs */
333};
334
335static asn_TYPE_member_t asn_MBR_T_1[] = {
336 { ATF_NOFLAGS, 0, offsetof(struct T, unconstrained),
337 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
338 .tag_mode = 0,
339 .type = &asn_DEF_unconstrained_2,
Lev Walkin67a30122017-08-10 05:48:54 -0700340 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700341 .memb_constraints = 0, /* Defer constraints checking to the member type */
342 .oer_constraints = 0, /* No OER visible constraints */
343 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
344 .default_value = 0,
345 .name = "unconstrained"
346 },
347 { ATF_NOFLAGS, 0, offsetof(struct T, constrained),
348 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
349 .tag_mode = 0,
350 .type = &asn_DEF_constrained_6,
Lev Walkin67a30122017-08-10 05:48:54 -0700351 .type_selector = 0,
Lev Walkin69353a32017-07-25 08:10:46 -0700352 .memb_constraints = 0, /* Defer constraints checking to the member type */
353 .oer_constraints = 0, /* No OER visible constraints */
354 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
355 .default_value = 0,
356 .name = "constrained"
357 },
358};
359static const ber_tlv_tag_t asn_DEF_T_tags_1[] = {
360 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
361};
362static const asn_TYPE_tag2member_t asn_MAP_T_tag2el_1[] = {
363 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 1 }, /* unconstrained */
364 { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 0 } /* constrained */
365};
366static asn_SEQUENCE_specifics_t asn_SPC_T_specs_1 = {
367 sizeof(struct T),
368 offsetof(struct T, _asn_ctx),
369 asn_MAP_T_tag2el_1,
370 2, /* Count of tags in the map */
371 0, 0, 0, /* Optional elements (not needed) */
372 -1, /* Start extensions */
373 -1 /* Stop extensions */
374};
375asn_TYPE_descriptor_t asn_DEF_T = {
376 "T",
377 "T",
378 SEQUENCE_free,
379 SEQUENCE_print,
Lev Walkincd2f48e2017-08-10 02:14:59 -0700380 SEQUENCE_compare,
Lev Walkin69353a32017-07-25 08:10:46 -0700381 SEQUENCE_constraint,
382 SEQUENCE_decode_ber,
383 SEQUENCE_encode_der,
384 SEQUENCE_decode_xer,
385 SEQUENCE_encode_xer,
386 SEQUENCE_decode_oer,
387 SEQUENCE_encode_oer,
388 0, 0, /* No PER support, use "-gen-PER" to enable */
389 0, /* Use generic outmost tag fetcher */
390 asn_DEF_T_tags_1,
391 sizeof(asn_DEF_T_tags_1)
392 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
393 asn_DEF_T_tags_1, /* Same as above */
394 sizeof(asn_DEF_T_tags_1)
395 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
396 0, /* No OER visible constraints */
397 0, /* No PER visible constraints */
398 asn_MBR_T_1,
399 2, /* Elements count */
400 &asn_SPC_T_specs_1 /* Additional specs */
401};
402