blob: 2a88169d20de5c8813e00cea61cbe4c14470119a [file] [log] [blame]
vlmfa67ddc2004-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 */
vlm39ba4c42004-09-22 16:06:28 +00005#include <asn_internal.h>
vlmfa67ddc2004-06-03 03:38:44 +00006#include <VisibleString.h>
7
8/*
9 * VisibleString basic type description.
10 */
vlmd08d6c52004-09-29 13:21:39 +000011static ber_tlv_tag_t asn_DEF_VisibleString_tags[] = {
vlm72425de2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), /* [UNIVERSAL 26] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
vlmfa67ddc2004-06-03 03:38:44 +000014};
vlmd08d6c52004-09-29 13:21:39 +000015asn_TYPE_descriptor_t asn_DEF_VisibleString = {
vlmfa67ddc2004-06-03 03:38:44 +000016 "VisibleString",
vlm9de248e2004-10-20 15:50:55 +000017 "VisibleString",
vlm39ba4c42004-09-22 16:06:28 +000018 OCTET_STRING_free,
vlm9de248e2004-10-20 15:50:55 +000019 OCTET_STRING_print_utf8, /* ASCII subset */
vlmfa67ddc2004-06-03 03:38:44 +000020 VisibleString_constraint,
21 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
vlm9de248e2004-10-20 15:50:55 +000022 OCTET_STRING_encode_der,
23 OCTET_STRING_decode_xer_utf8,
24 OCTET_STRING_encode_xer_utf8,
vlm337167e2005-11-26 11:25:14 +000025 0,
vlmfa67ddc2004-06-03 03:38:44 +000026 0, /* Use generic outmost tag fetcher */
vlmd08d6c52004-09-29 13:21:39 +000027 asn_DEF_VisibleString_tags,
28 sizeof(asn_DEF_VisibleString_tags)
29 / sizeof(asn_DEF_VisibleString_tags[0]) - 1,
30 asn_DEF_VisibleString_tags,
31 sizeof(asn_DEF_VisibleString_tags)
32 / sizeof(asn_DEF_VisibleString_tags[0]),
vlm337167e2005-11-26 11:25:14 +000033 0, /* No PER visible constraints */
vlme413c122004-08-20 13:23:42 +000034 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000035 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000036};
37
vlmfa67ddc2004-06-03 03:38:44 +000038int
vlmd08d6c52004-09-29 13:21:39 +000039VisibleString_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
vlmfa67ddc2004-06-03 03:38:44 +000040 asn_app_consume_bytes_f *app_errlog, void *app_key) {
vlmda674682004-08-11 09:07:36 +000041 const VisibleString_t *st = (const VisibleString_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +000042
43 if(st && st->buf) {
44 uint8_t *buf = st->buf;
45 uint8_t *end = buf + st->size;
46
47 /*
48 * Check the alphabet of the VisibleString.
49 * ISO646, ISOReg#6
vlmd08d6c52004-09-29 13:21:39 +000050 * The alphabet is a subset of ASCII between the space
51 * and "~" (tilde).
vlmfa67ddc2004-06-03 03:38:44 +000052 */
53 for(; buf < end; buf++) {
vlmd08d6c52004-09-29 13:21:39 +000054 if(*buf < 0x20 || *buf > 0x7e) {
vlme3f0f282004-08-11 09:44:13 +000055 _ASN_ERRLOG(app_errlog, app_key,
vlm523def52004-10-26 09:59:42 +000056 "%s: value byte %ld (%d) "
vlm758530a2004-08-22 13:47:59 +000057 "not in VisibleString alphabet (%s:%d)",
vlmfa67ddc2004-06-03 03:38:44 +000058 td->name,
vlm523def52004-10-26 09:59:42 +000059 (long)((buf - st->buf) + 1),
vlm758530a2004-08-22 13:47:59 +000060 *buf,
61 __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000062 return -1;
63 }
64 }
65 } else {
vlme3f0f282004-08-11 09:44:13 +000066 _ASN_ERRLOG(app_errlog, app_key,
vlm758530a2004-08-22 13:47:59 +000067 "%s: value not given (%s:%d)",
68 td->name, __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000069 return -1;
70 }
71
72 return 0;
73}