blob: 945786914c885dede5d56bc5e45615f9e499ae51 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00006#include <IA5String.h>
7
8/*
9 * IA5String basic type description.
10 */
Wim Lewis18c2ec92014-07-29 11:30:10 -070011static const ber_tlv_tag_t asn_DEF_IA5String_tags[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), /* [UNIVERSAL 22] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000014};
Lev Walkin76780762017-07-07 10:07:30 -070015static asn_per_constraints_t asn_DEF_IA5String_per_constraints = {
Lev Walkin725883b2006-10-09 12:07:58 +000016 { APC_CONSTRAINED, 7, 7, 0, 0x7f }, /* Value */
17 { APC_SEMI_CONSTRAINED, -1, -1, 0, 0 }, /* Size */
18 0, 0
19};
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080020asn_TYPE_operation_t asn_OP_IA5String = {
Lev Walkina9cc46e2004-09-22 16:06:28 +000021 OCTET_STRING_free,
Lev Walkindc06f6b2004-10-20 15:50:55 +000022 OCTET_STRING_print_utf8, /* ASCII subset */
Lev Walkincd2f48e2017-08-10 02:14:59 -070023 OCTET_STRING_compare,
Lev Walkinf15320b2004-06-03 03:38:44 +000024 IA5String_constraint, /* Constraint on the alphabet */
25 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000026 OCTET_STRING_encode_der,
27 OCTET_STRING_decode_xer_utf8,
28 OCTET_STRING_encode_xer_utf8,
Lev Walkincc159472017-07-06 08:26:36 -070029#ifdef ASN_DISABLE_OER_SUPPORT
30 0,
31 0,
32#else
Lev Walkin1d76f3c2017-07-25 07:58:05 -070033 OCTET_STRING_decode_oer,
34 OCTET_STRING_encode_oer,
Lev Walkincc159472017-07-06 08:26:36 -070035#endif /* ASN_DISABLE_OER_SUPPORT */
Lev Walkinb33425f2017-07-14 14:59:52 +040036#ifdef ASN_DISABLE_PER_SUPPORT
37 0,
38 0,
39#else
40 OCTET_STRING_decode_uper,
41 OCTET_STRING_encode_uper,
42#endif /* ASN_DISABLE_PER_SUPPORT */
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080043 0 /* Use generic outmost tag fetcher */
44};
45asn_TYPE_descriptor_t asn_DEF_IA5String = {
46 "IA5String",
47 "IA5String",
48 &asn_OP_IA5String,
49 IA5String_constraint, /* Constraint on the alphabet */
Lev Walkin5e033762004-09-29 13:26:15 +000050 asn_DEF_IA5String_tags,
51 sizeof(asn_DEF_IA5String_tags)
52 / sizeof(asn_DEF_IA5String_tags[0]) - 1,
53 asn_DEF_IA5String_tags,
54 sizeof(asn_DEF_IA5String_tags)
55 / sizeof(asn_DEF_IA5String_tags[0]),
Lev Walkin76780762017-07-07 10:07:30 -070056 0, /* No OER visible constraints */
57 &asn_DEF_IA5String_per_constraints,
Lev Walkin449f8322004-08-20 13:23:42 +000058 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000059 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000060};
61
62int
Lev Walkin5e033762004-09-29 13:26:15 +000063IA5String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +000064 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000065 const IA5String_t *st = (const IA5String_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000066
67 if(st && st->buf) {
68 uint8_t *buf = st->buf;
69 uint8_t *end = buf + st->size;
70 /*
71 * IA5String is generally equivalent to 7bit ASCII.
72 * ISO/ITU-T T.50, 1963.
73 */
74 for(; buf < end; buf++) {
75 if(*buf > 0x7F) {
Lev Walkin7c1dc052016-03-14 03:08:15 -070076 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin426b0982004-10-26 09:59:42 +000077 "%s: value byte %ld out of range: "
Lev Walkin16835b62004-08-22 13:47:59 +000078 "%d > 127 (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000079 td->name,
Lev Walkin426b0982004-10-26 09:59:42 +000080 (long)((buf - st->buf) + 1),
Lev Walkin16835b62004-08-22 13:47:59 +000081 *buf,
82 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000083 return -1;
84 }
85 }
86 } else {
Lev Walkin7c1dc052016-03-14 03:08:15 -070087 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +000088 "%s: value not given (%s:%d)",
89 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000090 return -1;
91 }
92
93 return 0;
94}
Lev Walkina9cc46e2004-09-22 16:06:28 +000095