blob: 5c000b03c427577cc6d71b06c725922198b46030 [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 */
11static ber_tlv_tag_t asn_DEF_IA5String_tags[] = {
12 (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), /* [UNIVERSAL 22] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
14};
15asn_TYPE_descriptor_t asn_DEF_IA5String = {
16 "IA5String",
17 "IA5String",
18 OCTET_STRING_free,
19 OCTET_STRING_print_utf8, /* ASCII subset */
20 IA5String_constraint, /* Constraint on the alphabet */
21 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
22 OCTET_STRING_encode_der,
23 OCTET_STRING_decode_xer_utf8,
24 OCTET_STRING_encode_xer_utf8,
25 0, 0,
26 0, /* Use generic outmost tag fetcher */
27 asn_DEF_IA5String_tags,
28 sizeof(asn_DEF_IA5String_tags)
29 / sizeof(asn_DEF_IA5String_tags[0]) - 1,
30 asn_DEF_IA5String_tags,
31 sizeof(asn_DEF_IA5String_tags)
32 / sizeof(asn_DEF_IA5String_tags[0]),
33 0, /* No PER visible constraints */
34 0, 0, /* No members */
35 0 /* No specifics */
36};
37
38int
39IA5String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
40 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
41 const IA5String_t *st = (const IA5String_t *)sptr;
42
43 if(st && st->buf) {
44 uint8_t *buf = st->buf;
45 uint8_t *end = buf + st->size;
46 /*
47 * IA5String is generally equivalent to 7bit ASCII.
48 * ISO/ITU-T T.50, 1963.
49 */
50 for(; buf < end; buf++) {
51 if(*buf > 0x7F) {
52 _ASN_CTFAIL(app_key, td,
53 "%s: value byte %ld out of range: "
54 "%d > 127 (%s:%d)",
55 td->name,
56 (long)((buf - st->buf) + 1),
57 *buf,
58 __FILE__, __LINE__);
59 return -1;
60 }
61 }
62 } else {
63 _ASN_CTFAIL(app_key, td,
64 "%s: value not given (%s:%d)",
65 td->name, __FILE__, __LINE__);
66 return -1;
67 }
68
69 return 0;
70}
71