blob: e163791e51dc9f76e45fc925284dd4b0f0de2228 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin725883b2006-10-09 12:07:58 +00002 * Copyright (c) 2003, 2006 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00003 * 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 <VisibleString.h>
7
8/*
9 * VisibleString basic type description.
10 */
Wim Lewis18c2ec92014-07-29 11:30:10 -070011static const ber_tlv_tag_t asn_DEF_VisibleString_tags[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), /* [UNIVERSAL 26] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000014};
Lev Walkin725883b2006-10-09 12:07:58 +000015static asn_per_constraints_t asn_DEF_VisibleString_constraints = {
16 { APC_CONSTRAINED, 7, 7, 0x20, 0x7e }, /* 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_VisibleString = {
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 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000025 OCTET_STRING_encode_der,
26 OCTET_STRING_decode_xer_utf8,
27 OCTET_STRING_encode_xer_utf8,
Lev Walkincc159472017-07-06 08:26:36 -070028#ifdef ASN_DISABLE_OER_SUPPORT
29 0,
30 0,
31#else
Lev Walkin1d76f3c2017-07-25 07:58:05 -070032 OCTET_STRING_decode_oer,
33 OCTET_STRING_encode_oer,
Lev Walkincc159472017-07-06 08:26:36 -070034#endif /* ASN_DISABLE_OER_SUPPORT */
Lev Walkinb33425f2017-07-14 14:59:52 +040035#ifdef ASN_DISABLE_PER_SUPPORT
36 0,
37 0,
38#else
39 OCTET_STRING_decode_uper,
40 OCTET_STRING_encode_uper,
41#endif /* ASN_DISABLE_PER_SUPPORT */
Lev Walkina5972be2017-09-29 23:15:58 -070042 OCTET_STRING_random_fill,
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080043 0 /* Use generic outmost tag fetcher */
44};
45asn_TYPE_descriptor_t asn_DEF_VisibleString = {
46 "VisibleString",
47 "VisibleString",
48 &asn_OP_VisibleString,
Lev Walkin9722a082004-09-29 13:21:39 +000049 asn_DEF_VisibleString_tags,
50 sizeof(asn_DEF_VisibleString_tags)
51 / sizeof(asn_DEF_VisibleString_tags[0]) - 1,
52 asn_DEF_VisibleString_tags,
53 sizeof(asn_DEF_VisibleString_tags)
54 / sizeof(asn_DEF_VisibleString_tags[0]),
Lev Walkina5972be2017-09-29 23:15:58 -070055 { 0, &asn_DEF_VisibleString_constraints, VisibleString_constraint },
Lev Walkin449f8322004-08-20 13:23:42 +000056 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000057 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000058};
59
Lev Walkinf15320b2004-06-03 03:38:44 +000060int
Lev Walkin20696a42017-10-17 21:27:33 -070061VisibleString_constraint(const asn_TYPE_descriptor_t *td, const void *sptr,
62 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
63 const VisibleString_t *st = (const VisibleString_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000064
65 if(st && st->buf) {
66 uint8_t *buf = st->buf;
67 uint8_t *end = buf + st->size;
68
69 /*
70 * Check the alphabet of the VisibleString.
71 * ISO646, ISOReg#6
Lev Walkin9722a082004-09-29 13:21:39 +000072 * The alphabet is a subset of ASCII between the space
73 * and "~" (tilde).
Lev Walkinf15320b2004-06-03 03:38:44 +000074 */
75 for(; buf < end; buf++) {
Lev Walkin9722a082004-09-29 13:21:39 +000076 if(*buf < 0x20 || *buf > 0x7e) {
Lev Walkin7c1dc052016-03-14 03:08:15 -070077 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin426b0982004-10-26 09:59:42 +000078 "%s: value byte %ld (%d) "
Lev Walkin16835b62004-08-22 13:47:59 +000079 "not in VisibleString alphabet (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000080 td->name,
Lev Walkin426b0982004-10-26 09:59:42 +000081 (long)((buf - st->buf) + 1),
Lev Walkin16835b62004-08-22 13:47:59 +000082 *buf,
83 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000084 return -1;
85 }
86 }
87 } else {
Lev Walkin7c1dc052016-03-14 03:08:15 -070088 ASN__CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +000089 "%s: value not given (%s:%d)",
90 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000091 return -1;
92 }
93
94 return 0;
95}