blob: 20d1b217c193bc37fae075f4b0f52f3828a4549b [file] [log] [blame]
Harald Welte92c45f32010-06-12 18:59:38 +02001/*-
Harald Welteec0e2172010-07-20 00:03:44 +02002 * Copyright (c) 2003, 2006 Lev Walkin <vlm@lionet.info>. All rights reserved.
Harald Welte92c45f32010-06-12 18:59:38 +02003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#include <asn_internal.h>
6#include <VisibleString.h>
7
8/*
9 * VisibleString basic type description.
10 */
Harald Welte41b85d52015-08-31 08:56:53 +020011static const ber_tlv_tag_t asn_DEF_VisibleString_tags[] = {
Harald Welte92c45f32010-06-12 18:59:38 +020012 (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), /* [UNIVERSAL 26] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
14};
Harald Welteec0e2172010-07-20 00:03:44 +020015static 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};
Harald Welte92c45f32010-06-12 18:59:38 +020020asn_TYPE_descriptor_t asn_DEF_VisibleString = {
21 "VisibleString",
22 "VisibleString",
23 OCTET_STRING_free,
24 OCTET_STRING_print_utf8, /* ASCII subset */
25 VisibleString_constraint,
26 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
27 OCTET_STRING_encode_der,
28 OCTET_STRING_decode_xer_utf8,
29 OCTET_STRING_encode_xer_utf8,
Harald Welteec0e2172010-07-20 00:03:44 +020030 OCTET_STRING_decode_uper,
31 OCTET_STRING_encode_uper,
Harald Welte41b85d52015-08-31 08:56:53 +020032 OCTET_STRING_decode_aper,
33 OCTET_STRING_encode_aper,
Harald Welte92c45f32010-06-12 18:59:38 +020034 0, /* Use generic outmost tag fetcher */
35 asn_DEF_VisibleString_tags,
36 sizeof(asn_DEF_VisibleString_tags)
37 / sizeof(asn_DEF_VisibleString_tags[0]) - 1,
38 asn_DEF_VisibleString_tags,
39 sizeof(asn_DEF_VisibleString_tags)
40 / sizeof(asn_DEF_VisibleString_tags[0]),
Harald Welteec0e2172010-07-20 00:03:44 +020041 &asn_DEF_VisibleString_constraints,
Harald Welte92c45f32010-06-12 18:59:38 +020042 0, 0, /* No members */
43 0 /* No specifics */
44};
45
46int
47VisibleString_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
48 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
49 const VisibleString_t *st = (const VisibleString_t *)sptr;
50
51 if(st && st->buf) {
52 uint8_t *buf = st->buf;
53 uint8_t *end = buf + st->size;
54
55 /*
56 * Check the alphabet of the VisibleString.
57 * ISO646, ISOReg#6
58 * The alphabet is a subset of ASCII between the space
59 * and "~" (tilde).
60 */
61 for(; buf < end; buf++) {
62 if(*buf < 0x20 || *buf > 0x7e) {
Harald Welteec0e2172010-07-20 00:03:44 +020063 _ASN_CTFAIL(app_key, td, sptr,
Harald Welte92c45f32010-06-12 18:59:38 +020064 "%s: value byte %ld (%d) "
65 "not in VisibleString alphabet (%s:%d)",
66 td->name,
67 (long)((buf - st->buf) + 1),
68 *buf,
69 __FILE__, __LINE__);
70 return -1;
71 }
72 }
73 } else {
Harald Welteec0e2172010-07-20 00:03:44 +020074 _ASN_CTFAIL(app_key, td, sptr,
Harald Welte92c45f32010-06-12 18:59:38 +020075 "%s: value not given (%s:%d)",
76 td->name, __FILE__, __LINE__);
77 return -1;
78 }
79
80 return 0;
81}