blob: 3487b6f938556c0d5a0ad62b502f432792aee2a8 [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 */
Lev Walkin9722a082004-09-29 13:21:39 +000011static 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};
Lev Walkin9722a082004-09-29 13:21:39 +000020asn_TYPE_descriptor_t asn_DEF_VisibleString = {
Lev Walkinf15320b2004-06-03 03:38:44 +000021 "VisibleString",
Lev Walkindc06f6b2004-10-20 15:50:55 +000022 "VisibleString",
Lev Walkina9cc46e2004-09-22 16:06:28 +000023 OCTET_STRING_free,
Lev Walkindc06f6b2004-10-20 15:50:55 +000024 OCTET_STRING_print_utf8, /* ASCII subset */
Lev Walkinf15320b2004-06-03 03:38:44 +000025 VisibleString_constraint,
26 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000027 OCTET_STRING_encode_der,
28 OCTET_STRING_decode_xer_utf8,
29 OCTET_STRING_encode_xer_utf8,
Lev Walkin725883b2006-10-09 12:07:58 +000030 OCTET_STRING_decode_uper,
31 OCTET_STRING_encode_uper,
Lev Walkinf15320b2004-06-03 03:38:44 +000032 0, /* Use generic outmost tag fetcher */
Lev Walkin9722a082004-09-29 13:21:39 +000033 asn_DEF_VisibleString_tags,
34 sizeof(asn_DEF_VisibleString_tags)
35 / sizeof(asn_DEF_VisibleString_tags[0]) - 1,
36 asn_DEF_VisibleString_tags,
37 sizeof(asn_DEF_VisibleString_tags)
38 / sizeof(asn_DEF_VisibleString_tags[0]),
Lev Walkin725883b2006-10-09 12:07:58 +000039 &asn_DEF_VisibleString_constraints,
Lev Walkin449f8322004-08-20 13:23:42 +000040 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000041 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000042};
43
Lev Walkinf15320b2004-06-03 03:38:44 +000044int
Lev Walkin9722a082004-09-29 13:21:39 +000045VisibleString_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +000046 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000047 const VisibleString_t *st = (const VisibleString_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000048
49 if(st && st->buf) {
50 uint8_t *buf = st->buf;
51 uint8_t *end = buf + st->size;
52
53 /*
54 * Check the alphabet of the VisibleString.
55 * ISO646, ISOReg#6
Lev Walkin9722a082004-09-29 13:21:39 +000056 * The alphabet is a subset of ASCII between the space
57 * and "~" (tilde).
Lev Walkinf15320b2004-06-03 03:38:44 +000058 */
59 for(; buf < end; buf++) {
Lev Walkin9722a082004-09-29 13:21:39 +000060 if(*buf < 0x20 || *buf > 0x7e) {
Lev Walkined9019a2006-10-16 12:18:41 +000061 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkin426b0982004-10-26 09:59:42 +000062 "%s: value byte %ld (%d) "
Lev Walkin16835b62004-08-22 13:47:59 +000063 "not in VisibleString alphabet (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000064 td->name,
Lev Walkin426b0982004-10-26 09:59:42 +000065 (long)((buf - st->buf) + 1),
Lev Walkin16835b62004-08-22 13:47:59 +000066 *buf,
67 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000068 return -1;
69 }
70 }
71 } else {
Lev Walkined9019a2006-10-16 12:18:41 +000072 _ASN_CTFAIL(app_key, td, sptr,
Lev Walkin16835b62004-08-22 13:47:59 +000073 "%s: value not given (%s:%d)",
74 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000075 return -1;
76 }
77
78 return 0;
79}