blob: 30f294558fb868a5ecf2cb71b63cd29e13802523 [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 <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 Walkin9722a082004-09-29 13:21:39 +000015asn_TYPE_descriptor_t asn_DEF_VisibleString = {
Lev Walkinf15320b2004-06-03 03:38:44 +000016 "VisibleString",
Lev Walkindc06f6b2004-10-20 15:50:55 +000017 "VisibleString",
Lev Walkina9cc46e2004-09-22 16:06:28 +000018 OCTET_STRING_free,
Lev Walkindc06f6b2004-10-20 15:50:55 +000019 OCTET_STRING_print_utf8, /* ASCII subset */
Lev Walkinf15320b2004-06-03 03:38:44 +000020 VisibleString_constraint,
21 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000022 OCTET_STRING_encode_der,
23 OCTET_STRING_decode_xer_utf8,
24 OCTET_STRING_encode_xer_utf8,
Lev Walkinf15320b2004-06-03 03:38:44 +000025 0, /* Use generic outmost tag fetcher */
Lev Walkin9722a082004-09-29 13:21:39 +000026 asn_DEF_VisibleString_tags,
27 sizeof(asn_DEF_VisibleString_tags)
28 / sizeof(asn_DEF_VisibleString_tags[0]) - 1,
29 asn_DEF_VisibleString_tags,
30 sizeof(asn_DEF_VisibleString_tags)
31 / sizeof(asn_DEF_VisibleString_tags[0]),
Lev Walkin449f8322004-08-20 13:23:42 +000032 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000033 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000034};
35
Lev Walkinf15320b2004-06-03 03:38:44 +000036int
Lev Walkin9722a082004-09-29 13:21:39 +000037VisibleString_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkinf15320b2004-06-03 03:38:44 +000038 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000039 const VisibleString_t *st = (const VisibleString_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000040
41 if(st && st->buf) {
42 uint8_t *buf = st->buf;
43 uint8_t *end = buf + st->size;
44
45 /*
46 * Check the alphabet of the VisibleString.
47 * ISO646, ISOReg#6
Lev Walkin9722a082004-09-29 13:21:39 +000048 * The alphabet is a subset of ASCII between the space
49 * and "~" (tilde).
Lev Walkinf15320b2004-06-03 03:38:44 +000050 */
51 for(; buf < end; buf++) {
Lev Walkin9722a082004-09-29 13:21:39 +000052 if(*buf < 0x20 || *buf > 0x7e) {
Lev Walkinba4e5182004-08-11 09:44:13 +000053 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin426b0982004-10-26 09:59:42 +000054 "%s: value byte %ld (%d) "
Lev Walkin16835b62004-08-22 13:47:59 +000055 "not in VisibleString alphabet (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000056 td->name,
Lev Walkin426b0982004-10-26 09:59:42 +000057 (long)((buf - st->buf) + 1),
Lev Walkin16835b62004-08-22 13:47:59 +000058 *buf,
59 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000060 return -1;
61 }
62 }
63 } else {
Lev Walkinba4e5182004-08-11 09:44:13 +000064 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000065 "%s: value not given (%s:%d)",
66 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000067 return -1;
68 }
69
70 return 0;
71}