blob: cec61c34b49864e9332e7c770d3a26602cc6cda4 [file] [log] [blame]
Harald Welte92c45f32010-06-12 18:59:38 +02001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#include <asn_internal.h>
6#include <IA5String.h>
7
8/*
9 * IA5String basic type description.
10 */
Harald Welte41b85d52015-08-31 08:56:53 +020011static const ber_tlv_tag_t asn_DEF_IA5String_tags[] = {
Harald Welte92c45f32010-06-12 18:59:38 +020012 (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), /* [UNIVERSAL 22] 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_IA5String_constraints = {
16 { APC_CONSTRAINED, 7, 7, 0, 0x7f }, /* 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_IA5String = {
21 "IA5String",
22 "IA5String",
23 OCTET_STRING_free,
24 OCTET_STRING_print_utf8, /* ASCII subset */
25 IA5String_constraint, /* Constraint on the alphabet */
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_IA5String_tags,
36 sizeof(asn_DEF_IA5String_tags)
37 / sizeof(asn_DEF_IA5String_tags[0]) - 1,
38 asn_DEF_IA5String_tags,
39 sizeof(asn_DEF_IA5String_tags)
40 / sizeof(asn_DEF_IA5String_tags[0]),
Harald Welteec0e2172010-07-20 00:03:44 +020041 &asn_DEF_IA5String_constraints,
Harald Welte92c45f32010-06-12 18:59:38 +020042 0, 0, /* No members */
43 0 /* No specifics */
44};
45
46int
47IA5String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
48 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
49 const IA5String_t *st = (const IA5String_t *)sptr;
50
51 if(st && st->buf) {
52 uint8_t *buf = st->buf;
53 uint8_t *end = buf + st->size;
54 /*
55 * IA5String is generally equivalent to 7bit ASCII.
56 * ISO/ITU-T T.50, 1963.
57 */
58 for(; buf < end; buf++) {
59 if(*buf > 0x7F) {
Harald Welteec0e2172010-07-20 00:03:44 +020060 _ASN_CTFAIL(app_key, td, sptr,
Harald Welte92c45f32010-06-12 18:59:38 +020061 "%s: value byte %ld out of range: "
62 "%d > 127 (%s:%d)",
63 td->name,
64 (long)((buf - st->buf) + 1),
65 *buf,
66 __FILE__, __LINE__);
67 return -1;
68 }
69 }
70 } else {
Harald Welteec0e2172010-07-20 00:03:44 +020071 _ASN_CTFAIL(app_key, td, sptr,
Harald Welte92c45f32010-06-12 18:59:38 +020072 "%s: value not given (%s:%d)",
73 td->name, __FILE__, __LINE__);
74 return -1;
75 }
76
77 return 0;
78}
79